diff --git a/.gitmodules b/.gitmodules index a099235eca3037995adaf61c8dffeec555e56ae8..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +0,0 @@ -[submodule "ece2cmor3"] - path = ece2cmor3 - url = https://github.com/EC-Earth/ece2cmor3.git diff --git a/README.md b/README.md index 657fb5661ceff6e2fb2354e8c48369fd003d032a..c77faa9b6ca7318db58049ffeedc3afb35dab4d0 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,14 @@ # Auto-wrapped-cmorization +DISCLAIMER: This repo contains code that is hardcoded to the BSC's +infrastructure. + This is Auto-ecEarth3's workflow, stripped of everything but CMOR tasks. It is meant to be a benchmark for in-situ workflow managers. -In order to run it, you should have a produce output data -from ecEarth3. +In order to run it, you should have output data from ecEarth3. # Author diff --git a/ece2cmor/.travis.yml b/ece2cmor/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..7d06befba6e3fc98b345a092cffadd16c3af8829 --- /dev/null +++ b/ece2cmor/.travis.yml @@ -0,0 +1,29 @@ +git: + depth: 1 + lfs_skip_smudge: true +language: python +python: + - '2.7' +install: + - sudo apt-get update + - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then + wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh; + else + wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; + fi + - bash miniconda.sh -b -p $HOME/miniconda + - export PATH="$HOME/miniconda/bin:$PATH" + - hash -r + - conda config --set always_yes yes --set changeps1 no + - conda update -q conda + - conda info -a + - conda env create -f environment.yml + - source activate ece2cmor3 + - which cdo + - cdo -V + - ls -lh test/test_data/ifsdata/6hr +script: +# Automatic "computer says no" to uv-cdat question to stream logging prompt... + - echo "no" | nosetests -v + + diff --git a/ece2cmor/Contributing.md b/ece2cmor/Contributing.md new file mode 100644 index 0000000000000000000000000000000000000000..8a1daa3b1aa91f0a1b6464e971ce34c6cbb2367d --- /dev/null +++ b/ece2cmor/Contributing.md @@ -0,0 +1,92 @@ +# Contributing guidelines + +We welcome any kind of contribution to our software, from simple comment or question to a full fledged +[pull request](https://help.github.com/articles/about-pull-requests/). +Please read and follow our [Code of Conduct](CODE_OF_CONDUCT.md). + +A contribution can be one of the following cases: + +1. you have a question; +1. you think you may have found a bug (including unexpected behavior); +1. you want to make some kind of change to the code base (e.g. to fix a bug, to add a new feature, to update +documentation). + +The sections below outline the steps in each case. + +## You have a question + +1. use the search functionality [here](https://github.com/EC-Earth/ece2cmor3/issues) to see if someone already filed the +same issue; +1. if your issue search did not yield any relevant results, make a new issue; +1. apply the "Question" label; apply other labels when relevant. + +## You think you may have found a bug + +1. use the search functionality [here](https://github.com/EC-Earth/ece2cmor3/issues) to see if someone already filed the +same issue; +1. if your issue search did not yield any relevant results, make a new issue, making sure to provide enough information +to the rest of the community to understand the cause and context of the problem. +Depending on the issue, you may want to include: + - the [SHA hashcode](https://help.github.com/articles/autolinked-references-and-urls/#commit-shas) of the commit + that is causing your problem; + - information about the nature of the EC-Earth output you are working with and possibly the metadata that you are + using; + - information about the HPC platform or OS you are using for your job; +1. apply relevant labels to the newly created issue. + +## You want to make some kind of change to the code base + +1. (**important**) announce your plan to the rest of the community _before you start working_. +This announcement should be in the form of a (new) issue; +1. (**important**) wait until some kind of consensus is reached about your idea being a good idea; +1. if needed, fork the repository to your own Github profile and create your own feature branch off of the latest +master commit. While working on your feature branch, make sure to stay up to date with the master branch by pulling in +changes, possibly from the 'upstream' repository (follow the instructions +[here](https://help.github.com/articles/configuring-a-remote-for-a-fork/) and +[here](https://help.github.com/articles/syncing-a-fork/)); +1. make sure the existing tests still work by running ``nosetests``; +1. add your own tests (if necessary); +1. update or expand the documentation; +1. [push](http://rogerdudler.github.io/git-guide/) your feature branch to the master branch in your fork. +1. create the pull request, e.g. following the instructions [here](https://help.github.com/articles/creating-a-pull-request/). + +In case you feel like you've made a valuable contribution, but you don't know how to write or run tests for it, or how +to generate the documentation: don't let this discourage you from making the pull request, just go +ahead and submit the pull request, but keep in mind that you might be asked to append additional commits to your pull +request. + +### Adding a new component to ece2cmor3 +This are some initial guidelines for people that want to add support for output of other EC-Earth components, such as +TM5, LPJ-GUESS or PISM. In the ece2cmor3/ece2cmor3 directory, type +```bash + grep -iHn NEWCOMPONENT *.py +``` +This gives an idea where some action is needed, as we labeled all points by ``NEWCOMPONENT``. You will need to add an +item to the dictionary ``models`` in the ``components.py``, e.g. +```python +models = {"ifs": {realms: ["atmos", "atmosChem", "land", "landIce"], + table_file: os.path.join(os.path.dirname(__file__), "resources", "ifspar.json"), + script_flags: ("atm", 'a')}, + "nemo": {realms: ["ocean", "ocnBgchem", "seaIce"], + table_file: os.path.join(os.path.dirname(__file__), "resources", "nemopar.json"), + script_flags: ("oce", 'o')}, + "your_model" : {realms: ["your_cmip_realm"], + table_file: os.path.join(os.path.dirname(__file__), "resources", "your_table_file.json")} + } +``` +This registers ``your_model`` as a new component during the loading of the tasks, and it will give preference to your +model if you claim to process data for ``your_cmip_realm`` for such variables. It will look for these variables in the +json-file ``your_table_file.json``, so you will have to create that, please look at e.g. ``nemopar.json`` for the +schema that we expect; you will need to specify a ``source`` attribute for each variable, e.g. +```json +... +{ + "source" : "your_var_name", + "target" : "co2" +}, +... +``` +This entry will create a task with a ``cmor_source`` containing ``your_var_name`` as variable name and ``co2`` as a +target. Upon execution ``ece2cmorlib`` contains a list of tasks, some of which belong to your model component. +From that point, you have to implement the processing of the tasks yourself, although you may want to get inspiration +from e.g. ``nemo2cmor.py``. Moreover you can use some utilities in the code such as the ``cdo`` python wrapper. diff --git a/ece2cmor/LICENSE b/ece2cmor/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..73ae1593eab0eafe2c031aff4e4ec6f210041778 --- /dev/null +++ b/ece2cmor/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2017 EC-Earth Consortium, KNMI + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/ece2cmor/MANIFEST.in b/ece2cmor/MANIFEST.in new file mode 100644 index 0000000000000000000000000000000000000000..e4f5f474a2d7aadf665154418d6d043c2dc56ae1 --- /dev/null +++ b/ece2cmor/MANIFEST.in @@ -0,0 +1,5 @@ +include README.md +include requirements.txt +recursive-include ece2cmor3/resources * +recursive-include ece2cmor3/resources/tables * +prune ece2cmor3/resources/cmip6-cmor-tables diff --git a/ece2cmor/README.md b/ece2cmor/README.md new file mode 100644 index 0000000000000000000000000000000000000000..329453e542bdf8d6de32efe3f41239807ba307e4 --- /dev/null +++ b/ece2cmor/README.md @@ -0,0 +1,129 @@ +[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1051094.svg)](https://doi.org/10.5281/zenodo.1051094) + +ECE2CMOR3 Python code to CMORize and post-process EC-Earth output data. + +## Required python packages: + +* cmor-3.7.1 (see cmor [dependencies](https://anaconda.org/conda-forge/cmor/files)) +* eccodes/gribapi (for filtering IFS output GRIB files) +* dreq (the CMIP6 data request tool drq) +* netCDF4 +* cdo (version 2.1.1; only for atmosphere post-processing) +* pip (for installing python packages) +* f90nml (only for fortran namelist I/O) +* openpyxl (for reading *.xlsx excel sheets) +* XlsxWriter (for writing *.xlsx excel sheets) + +## Installation: + +More extensive installation description can be found [here](https://dev.ec-earth.org/projects/cmip6/wiki/Installation_of_ece2cmor3) at the EC-Earth portal, including the link to an [example of running ece2cmor](https://dev.ec-earth.org/projects/cmip6/wiki/Step-by-step_guide_for_making_CMIP6_experiments#Cmorisation-with-ece2cmor-v120). The basic ece2cmor3 installation description follows below. + +#### Installation & running with Mamba (strongly recommended): +With the `Mamba` package manager all the packages (mostly python in our case) can be installed within one go. For instance, this is certainly beneficial at HPC systems where permissions to install complementary python packages to the default python distribution are lacking. + +##### Define a mambapath & two aliases + +First, define a `mambapath` and two aliases in a `.bashrc` file for later use: + ```shell + mambapath=${HOME}/mamba/ + alias activatemamba='source ${mambapath}/etc/profile.d/conda.sh' + alias activateece2cmor3='activatemamba; conda activate ece2cmor3' + ``` + +##### If Mamba is not yet installed: + +Download [mamba](https://github.com/conda-forge/miniforge/releases/latest/) by using `wget` and install it via the commandline with `bash`: + ```shell + # Check whether mambapath is set: + echo ${mambapath} + # Create a backup of an eventual mamba install (and environments) to prevent an accidental overwrite: + if [ -d ${mambapath} ]; then backup_label=backup-`date +%d-%m-%Y`; mv -f ${mambapath} ${mambapath/mamba/mamba-${backup_label}}; fi + + # Download & install mamba: + mkdir -p ${HOME}/Downloads; cd ${HOME}/Downloads/ + wget "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh" + bash Mambaforge-$(uname)-$(uname -m).sh -b -u -p ${mambapath} + + # Update mamba: + activatemamba + mamba update -y --name base mamba + ``` + + +##### Download ece3cmor3 by a git checkout + +For example we create the directoy `${HOME}/cmorize/` for the ece2cmor tool: + +```shell +cd ${HOME}/cmorize/ +git clone https://github.com/EC-Earth/ece2cmor3.git +cd ece2cmor3 +git submodule update --init --recursive +./download-b2share-dataset.sh ./ece2cmor3/resources/b2share-data +``` +Note that Github depricates the `https` clone method, therefore see how to [migrate from https to ssh](https://github.com/EC-Earth/ece2cmor3/wiki/instruction-how-to-change-from-https-to-ssh). + +##### Creating ece2cmor3 environment via mamba: +In the ece2cmor3 git checkout directory, type +```shell +activatemamba # The mamba-activate alias (as defined above) +cd ${HOME}/cmorize/ece2cmor3 # Navigate to the ece2cmor3 root directory +mamba env create -f environment.yml      # Create the python environment (for linux & mac os) +conda activate ece2cmor3 # Here conda is still used instead of mamba +pip install . # Install the ece2cmor3 package +conda deactivate # Deactivating the active (here ece2cmor3) environment +``` + +##### Running ece2cmor3 from its environment: + +Some basic tests: +```shell + activateece2cmor3 + which mamba # ${mambapath}/condabin/mamba + which conda # ${mambapath}/condabin/conda + which python                             # ${mambapath}/envs/ece2cmor3/bin/python + mamba --version # mamba 1.3.1 & conda 22.11.1 + python --version # Python 3.11.0 + cdo -V # version 2.1.1 + drq -v # version 01.02.00 + ece2cmor -V # ece2cmor v2.1.0 + ece2cmor -h + drq -h + checkvars -h + conda deactivate +``` + +#### Note that the nested CMOR tables require an update once in a while: + +The CMOR tables are maintained via a nested git repository inside the ece2cmor3 git repository. +Once in a while one of the ece2cmor3 developers will update the nested repository of the CMOR tables. +This will be visible from the ece2cmor3 repository by a git status call, it will tell that there are "new updates" in these tables. +In that case one has to repeat the following inside the git checkout directory: +```shell +git submodule update --init --recursive +``` + +#### Note for developers: + +Use the `-e` for the developer mode, i.e. code changes are immediately active: +```shell +activateece2cmor3 +cd ${HOME}/cmorize/ece2cmor3 +pip install -e . +``` + +#### Updating the nested CMOR table repository by maintainers: +Navigate to your git checkout directory and execute +```shell +cd ${HOME}/cmorize/ece2cmor3/ece2cmor3/resources/tables/ +git pull origin master +cd ../; git add cmip6-cmor-tables +git commit cmip6-cmor-tables -m 'Update the nested CMOR tables for their updates' +git push +``` + +## Design: + +The package consists for 2 main modules, ifs2cmor and nemo2cmor. The main api module ece2cmorlib calls initialization and processing functions in these ocean and atmosphere specific codes. The full workload is divided into tasks, which consist of a source (an IFS grib code or NEMO parameter id) and a target (a cmor3 CMIP6 table entry). The tasks are constructed by the Fortran namelist legacy loader (namloader.py) or by the new json-loader (default). The working is similar to the previous ece2cmor tool: the loader reads parameter tables and creates tasks as it receives a dictionary of desired targets from the caller script. + +At execution, the nemo2cmor module searches for the sources in the NEMO output files and streams the data to cmor to rewrite it according to CMIP6 conventions. For the IFS component, the module first performs the necessary post-processing steps, creating a list of intermediate netcdf files that contain time-averaged selections of the data. Special treatment such as unit conversions and post-processing formulas are attached to the tasks as attributes, as well as the file path in which the source data resides. diff --git a/ece2cmor/build.sh b/ece2cmor/build.sh new file mode 100644 index 0000000000000000000000000000000000000000..5a5aeeb48b45e98594be72f62d2b3f8947652f78 --- /dev/null +++ b/ece2cmor/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/ece2cmor/download-b2share-dataset.sh b/ece2cmor/download-b2share-dataset.sh new file mode 100755 index 0000000000000000000000000000000000000000..39937ab92c30702f2884a1de2f99c9f191850413 --- /dev/null +++ b/ece2cmor/download-b2share-dataset.sh @@ -0,0 +1,108 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# Run this script without arguments for examples how to call this script. +# +# This scripts needs two arguments +# first argument is the directory path of the b2share directory for the ece2cmor git repository +# +# This script downloads all files from the b2share ece2cmor3 dataset. This is part of the ece2cmor3 installation. +# + +if [ "$#" -eq 1 ]; then + + b2share_directroy=${1} + + b2share_ece2cmor_dataset_address=https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e + + b2share_file_01=fx-sftlf-EC-Earth3-T159.nc + b2share_file_02=fx-sftlf-EC-Earth3-T255.nc + b2share_file_03=fx-sftlf-EC-Earth3-T511.nc + b2share_file_04=nemo-vertices-ORCA1-t-grid.nc + b2share_file_05=nemo-vertices-ORCA1-u-grid.nc + b2share_file_06=nemo-vertices-ORCA1-v-grid.nc + b2share_file_07=nemo-vertices-ORCA025-t-grid.nc + b2share_file_08=nemo-vertices-ORCA025-u-grid.nc + b2share_file_09=nemo-vertices-ORCA025-v-grid.nc + b2share_file_10=omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-HR.nc + b2share_file_11=omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR.nc + b2share_file_12=omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR-pliocene.nc + b2share_file_13=omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables.nc + + b2share_files=( + fx-sftlf-EC-Earth3-T159.nc + fx-sftlf-EC-Earth3-T255.nc + fx-sftlf-EC-Earth3-T511.nc + nemo-vertices-ORCA1-t-grid.nc + nemo-vertices-ORCA1-u-grid.nc + nemo-vertices-ORCA1-v-grid.nc + nemo-vertices-ORCA025-t-grid.nc + nemo-vertices-ORCA025-u-grid.nc + nemo-vertices-ORCA025-v-grid.nc + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-HR.nc + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR.nc + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR-pliocene.nc + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables.nc + ) + + # Test whether the directroy exists: + if [ ! -d ${b2share_directroy} ]; then + echo; tput setaf 1; + echo ' Error: The directroy' ${b2share_directroy} 'does not exist.' + tput sgr0; echo + exit + fi + + echo + # Check for each of the b2share ece2cmor dataset files whether they are available, if not the file + # will be downloaded with wget: + for b2share_file in "${b2share_files[@]}"; do + if [ ! -f ${b2share_directroy}/${b2share_file} ]; then + tput setaf 1; + echo ' The file' ${b2share_file} 'will be downloaded.' + tput sgr0 + + wget --directory-prefix=${b2share_directroy}/ ${b2share_ece2cmor_dataset_address}/${b2share_file} + else + echo ' The file' ${b2share_file} 'is already available.' + fi + done + echo + + # Checking whether all files are there: + for b2share_file in "${b2share_files[@]}"; do + if [ ! -f ${b2share_directroy}/${b2share_file} ]; then + tput setaf 1; + echo ' Warning: The file' ${b2share_directroy}/${b2share_file} 'it still does not exist after trying to download it.' + tput sgr0 + fi + done + + # Checking the md5 checksums: + cd ${b2share_directroy} + md5sum -c --quiet md5-checksum-b2share-data.md5 + cd - + +else + echo + echo ' Illegal number of arguments: the script requires one argument: The path of the b2share-data directory:' + echo ' ' $0 '${HOME}/cmorize/ece2cmor3/ece2cmor3/resources/b2share-data' + echo ' ' $0 '${PERM}/cmorize/ece2cmor3/ece2cmor3/resources/b2share-data' + echo +fi + + +# https://b2share.eudat.eu/records/f7de9a85cbd443269958f0b80e7bc654 (Latest) Version - June 1, 2021 +# fx-sftlf-EC-Earth3-T159.nc 23.86 KB Checksum: md5:d6234951785381db616d5bd23e44bbf5 PID: 11304/8996528b-ce71-4dd9-9dcd-3d18b60d3ded +# fx-sftlf-EC-Earth3-T255.nc 68.42 KB Checksum: md5:e9a03e54896ed4a8b571a63f51296565 PID: 11304/8c6dd0f7-77ef-4a6a-8628-b3f53c2ef3dc +# fx-sftlf-EC-Earth3-T511.nc 104.35 KB Checksum: md5:67512db1813a44acd7cb7c1ad3e3609e PID: 11304/76160387-7ac2-4aae-8ce8-97961b9bc608 +# nemo-vertices-ORCA025-t-grid.nc 48.47 MB Checksum: md5:1cabb88e00a6ef9822e98c2feaa3bcd5 PID: 11304/2f00cedc-2bd6-469a-aabf-3b19d5195252 +# nemo-vertices-ORCA025-u-grid.nc 48.47 MB Checksum: md5:d89d30dba908802ae07d98a56334d136 PID: 11304/66462784-d8e2-42d5-8ff8-137957da9c97 +# nemo-vertices-ORCA025-v-grid.nc 48.47 MB Checksum: md5:d03b43abab29934eb63ab96b51847da4 PID: 11304/e88fa86d-4861-4bbc-943b-1ab95c55f6cb +# nemo-vertices-ORCA1-t-grid.nc 3.40 MB Checksum: md5:d778dcd3936698fa87eca4fa06b367c0 PID: 11304/43ad2765-6f4d-4ec0-95dc-f12d43257e19 +# nemo-vertices-ORCA1-u-grid.nc 3.40 MB Checksum: md5:146d4dc73fcd637e41f2066e40db8c3d PID: 11304/e63de7f9-aba7-4b3f-9218-85f573bae644 +# nemo-vertices-ORCA1-v-grid.nc 3.40 MB Checksum: md5:33d04501d157c66e8e95be1e9638ebf7 PID: 11304/dd7022b1-8645-4447-87ef-2ca1cf5da9cf +# omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-HR.nc 2.17 MB Checksum: md5:c54131a0136c42ee6dd5dc24fe4f0ca8 PID: 11304/30c24e48-7c46-490a-917c-8db6387b817c +# omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR.nc 232.58 KB Checksum: md5:e54c25a3faf44486719848bfe3726055 PID: 11304/99fbb8ef-cd99-4e88-9075-505ce57be430 +# omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR-pliocene.nc 232.60 KB Checksum: md5:138e5b01f4298dac3a29c387eda30069 PID: 11304/e2872b00-1fcd-470e-8b5b-b1cadf07cf8e +# omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables.nc 558.98 KB Checksum: md5:f6c975573143257c90b4ea4fe4333ab0 PID: 11304/7e3e4fd9-0b2d-443d-8fc4-3eac98b070ee diff --git a/ece2cmor/ece2cmor3/__init__.py b/ece2cmor/ece2cmor3/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..703af267d9eb63ce76c4d4c671384a6ab7ce2f82 --- /dev/null +++ b/ece2cmor/ece2cmor3/__init__.py @@ -0,0 +1 @@ +__all__=['cdoapi', 'cmor_source', 'cmor_target', 'cmor_task', 'cmor_utils', 'ece2cmorlib', 'ece2cmor', 'ifs2cmor', 'jsonloader', 'namloader', 'nemo2cmor', 'postproc'] diff --git a/ece2cmor/ece2cmor3/__load_nemo_vertices__.py b/ece2cmor/ece2cmor3/__load_nemo_vertices__.py new file mode 100644 index 0000000000000000000000000000000000000000..3e2f9758d17592b4c149eaef28a00655cc8285db --- /dev/null +++ b/ece2cmor/ece2cmor3/__load_nemo_vertices__.py @@ -0,0 +1,39 @@ +from functools import lru_cache +import logging +import os + +import netCDF4 +import numpy + +# Logger object +from ece2cmor3 import cmor_utils + +log = logging.getLogger(__name__) + +orca1_grid_shape = (292, 362) +orca025_grid_shape = (1050, 1442) + + +@lru_cache(maxsize=None) +def load_vertices_from_file(gridtype, shape): + gridchar = gridtype + if shape == orca1_grid_shape: + mesh = "ORCA1" + elif shape == orca025_grid_shape: + mesh = "ORCA025" + else: + log.fatal("Unsupported grid resolution for NEMO: %s" % str(shape)) + return None, None + file_name = '-'.join(["nemo", "vertices", mesh, gridchar, "grid"]) + ".nc" + fullpath = os.path.join(os.path.dirname(__file__), "resources", "b2share-data", file_name) + if not os.path.isfile(fullpath): + if not cmor_utils.get_from_b2share(file_name, fullpath): + log.fatal("The file %s could not be downloaded, please install manually at %s" % (file_name, fullpath)) + return None, None + nemo_vertices_file_name = os.path.join("ece2cmor3/resources/b2share-data/", fullpath) + nemo_vertices_netcdf_file = netCDF4.Dataset(nemo_vertices_file_name, 'r') + lon_vertices_raw = numpy.array(nemo_vertices_netcdf_file.variables["vertices_longitude"][...], copy=True) + lat_vertices = numpy.array(nemo_vertices_netcdf_file.variables["vertices_latitude"][...], copy=True) + nemo_vertices_netcdf_file.close() + lon_vertices = numpy.where(lon_vertices_raw < 0, lon_vertices_raw + 360., lon_vertices_raw) + return lon_vertices, lat_vertices diff --git a/ece2cmor/ece2cmor3/__version__.py b/ece2cmor/ece2cmor3/__version__.py new file mode 100644 index 0000000000000000000000000000000000000000..df32b0a0e79fea3cc2f3cef4c8a77ce01f65c5ff --- /dev/null +++ b/ece2cmor/ece2cmor3/__version__.py @@ -0,0 +1 @@ +version = 'v2.1.0' diff --git a/ece2cmor/ece2cmor3/cdoapi.py b/ece2cmor/ece2cmor3/cdoapi.py new file mode 100644 index 0000000000000000000000000000000000000000..412e7ab0396a56810e88c5515705eca517377dee --- /dev/null +++ b/ece2cmor/ece2cmor3/cdoapi.py @@ -0,0 +1,296 @@ +import _thread +import numpy +import logging +import cdo +import os + +# Log object +log = logging.getLogger(__name__) + + +# Class for interfacing with the CDO python wrapper. +class cdo_command: + # CDO operator strings + timselmean_operator = "timselmean" + timselmin_operator = "timselmin" + timselmax_operator = "timselmax" + select_code_operator = "selcode" + select_var_operator = "selvar" + set_code_operator = "setcode" + set_missval_operator = "setmissval" + expression_operator = "expr" + add_expression_operator = "aexpr" + spectral_operator = "sp2gpl" + gridtype_operator = "setgridtype" + area_operator = "gridarea" + select_z_operator = "selzaxis" + select_lev_operator = "sellevel" + select_step_operator = "seltimestep" + shift_time_operator = "shifttime" + ml2pl_operator = "ml2plx" + ml2hl_operator = "ml2hl" + merge_operator = "merge" + set_misstoc_operator = "setmisstoc" + + # CDO operators + min = "min" + max = "max" + mean = "mean" + sum = "sum" + select = "sel" + + # CDO time intervals + hour = "hour" + day = "day" + month = "mon" + year = "year" + + # CDO spatial keywords + zonal = "zon" + meridional = "mer" + field = "fld" + + # CDO level/grid keywords + regular_grid_type = "regular" + regular_grid_type_nn = "regularnn" + height = "height" + pressure = "pressure" + model_level = "hybrid" + surf_level = "surface" + + post_expr_operator = "post_expr" + post_addexpr_operator = "post_aexpr" + + # Optimized operator ordering for CDO: + operator_ordering = [set_code_operator, post_expr_operator, post_addexpr_operator, set_misstoc_operator, year + sum, + year + mean, year + min, year + max, month + sum, month + mean, month + min, month + max, + day + sum, day + mean, day + min, day + max, timselmean_operator, zonal + sum, zonal + mean, + zonal + min, zonal + max, meridional + sum, meridional + mean, meridional + min, meridional + max, + field + sum, field + mean, field + min, field + max, area_operator, gridtype_operator, + ml2pl_operator, ml2hl_operator, set_missval_operator, add_expression_operator, + expression_operator, spectral_operator, select_lev_operator, select_z_operator, select + hour, + select + day, select + month, shift_time_operator, select_step_operator, select_code_operator] + + # Constructor + def __init__(self, code=0): + self.operators = {} + self.app = cdo.Cdo() + if code > 0: + self.add_operator(cdo_command.select_code_operator, code) + + # Adds an operator + def add_operator(self, operator, *args): + global log + if operator in cdo_command.operator_ordering: + if operator not in self.operators: + self.operators[operator] = list(args) + else: + self.operators[operator].extend(list(args)) + else: + log.error("Unknown operator was rejected: ", operator) + + # Creates a command string from the given operator list + def create_command(self): + keys = cdo_command.optimize_order( + sorted(list(self.operators.keys()), key=lambda op: cdo_command.operator_ordering.index(op))) + return " ".join([cdo_command.make_option(k, self.operators[k]) for k in keys]) + + def merge(self, ifiles, ofile): + if isinstance(ifiles, str): + return self.app.merge(input=ifiles, output=ofile) + return self.app.merge(input=' '.join(ifiles), output=ofile) + + def show_code(self, ifile): + return self.app.showcode(input=ifile) + + # Applies the current set of operators to the input file. + def apply(self, ifile, ofile=None, threads=4, grib_first=False): + global log + keys = cdo_command.optimize_order( + sorted(list(self.operators.keys()), key=lambda op: cdo_command.operator_ordering.index(op))) + option_string = "-f nc" if threads < 2 else ("-f nc -P " + str(threads)) + if grib_first: + option_string = "" if threads < 2 else ("-P " + str(threads)) + func = getattr(self.app, keys[0], None) + app_args = None + if func: + app_args = ",".join([str(a) for a in self.operators.get(keys[0], [])]) + input_string = " ".join([cdo_command.make_option(k, self.operators[k]) for k in keys[1:]] + [ifile]) + else: + func = getattr(self.app, "copy") + input_string = " ".join([cdo_command.make_option(k, self.operators[k]) for k in keys] + [ifile]) + output_file = ofile + if ofile and grib_first: + output_file = ofile[:-3] + ".grib" + ntries = 0 + max_tries = int(os.environ.get("ECE2CMOR3_CDO_TRIALS", 4)) + f = None + while ntries < max_tries: + ntries += 1 + try: + if app_args and ofile: + f = func(app_args, input=input_string, output=output_file, options=option_string) + elif app_args: + f = func(app_args, input=input_string, options=option_string) + elif ofile: + f = func(input=input_string, output=output_file, options=option_string) + else: + f = func(input=input_string, options=option_string) + if grib_first: + option_string = "-f nc" + f = self.app.copy(input=output_file, output=ofile, options=option_string) + try: + os.remove(output_file) + except OSError as eos: + log.error(str(eos)) + return f + except cdo.CDOException as e: + if ntries == max_tries: + log.error("Attempt %d/%d to apply cdo %s %s %s failed:" % + (ntries, max_tries, option_string, input_string, output_file)) + log.error(str(e)) + else: + log.warning("Attempt %d/%d to apply cdo %s %s %s failed, retrying..." % + (ntries, max_tries, option_string, input_string, output_file)) + if os.path.isfile(output_file): + try: + os.remove(output_file) + except OSError as eos: + log.error(str(eos)) + if os.path.isfile(ofile): + try: + os.remove(ofile) + except OSError as eos: + log.error(str(eos)) + f = None + return f + + # Applies the current set of operators and returns the netcdf variables in memory: + def apply_cdf(self, ifile, threads=4): + keys = cdo_command.optimize_order( + sorted(list(self.operators.keys()), key=lambda op: cdo_command.operator_ordering.index(op))) + option_string = "" if threads < 2 else ("-P " + str(threads)) + func = getattr(self.app, keys[0], None) + app_args = None + if func: + app_args = ",".join([str(a) for a in self.operators.get(keys[0], [])]) + input_string = " ".join([cdo_command.make_option(k, self.operators[k]) for k in keys[1:]] + [ifile]) + else: + func = getattr(self.app, "copy") + input_string = " ".join([cdo_command.make_option(k, self.operators[k]) for k in keys] + [ifile]) + try: + if app_args: + return func(app_args, input=input_string, options=option_string, returnCdf=True).variables + else: + return func(input=input_string, options=option_string, returnCdf=True).variables + except cdo.CDOException as e: + log.error(str(e)) + return None + + # Grid description method + def get_grid_descr(self, ifile): + global log + int_fields = ["gridsize", "np", "xsize", "ysize"] + real_fields = ["xfirst", "xinc", "yfirst", "yinc"] + array_fields = ["xvals", "yvals"] + infolist = [] + try: + infolist = self.app.griddes(input=ifile) + except cdo.CDOException as e: + log.error(str(e)) + info_dict = {} + prev_key = "" + for info in infolist: + s = str(info) + if len(s) == 0: + continue + if s[0] == '#': + continue + string_list = s.split('=') + if len(string_list) == 0: + continue + elif len(string_list) == 1: + if prev_key in info_dict: + info_dict[prev_key] += (' ' + string_list[0].strip()) + else: + log.error("Could not connect grid description line %s to an " + "existing key-value pair" % string_list[0]) + continue + elif len(string_list) == 2: + key = string_list[0].strip() + info_dict[key] = string_list[1].strip() + prev_key = key + else: + log.error("Could not parse grid description line %s as a key-value pair" % s) + continue + for k, v in info_dict.items(): + if k in int_fields: + info_dict[k] = int(v) + if k in real_fields: + info_dict[k] = float(v) + if k in array_fields: + info_dict[k] = numpy.array([float(x) for x in v.split()]) + return info_dict + + # Returns a list vertical axes corresponding to the input variable + def get_z_axes(self, ifile, var): + if not ifile: + return [] + select_operator = cdo_command.select_code_operator if isinstance(var, int) else cdo_command.select_var_operator + try: + output = self.app.showltype(input=" ".join([cdo_command.make_option(select_operator, [var]), ifile])) + except cdo.CDOException as e: + log.error(str(e)) + return [] + if isinstance(output, list): + output = output[0] + return [] if not output else [int(s) for s in output.split()] + + # Returns a list of levels for a given variable and axis + def get_levels(self, ifile, var, axis): + if not ifile: + return [] + select_operator = cdo_command.select_code_operator if isinstance(var, int) else cdo_command.select_var_operator + selvar_operator = cdo_command.make_option(select_operator, [var]) + selzaxis_operator = cdo_command.make_option(cdo_command.select_z_operator, [axis]) + try: + output = self.app.showlevel(input=" ".join([selzaxis_operator, selvar_operator, ifile])) + except cdo.CDOException as e: + log.error(str(e)) + return [] + if isinstance(output, list): + output = output[0] + return [] if not output else [float(s) for s in output.split()] + + # Option writing utility function + @staticmethod + def make_option(key, args): + option = "-" + key + if key == cdo_command.post_expr_operator: + option = "-" + cdo_command.expression_operator + if key == cdo_command.post_addexpr_operator: + option = "-" + cdo_command.add_expression_operator + if key in [cdo_command.expression_operator, cdo_command.add_expression_operator, cdo_command.post_expr_operator, + cdo_command.post_addexpr_operator]: + return option + ",\'" + ';'.join([str(a) for a in args]) + "\'" + return (option + "," + ",".join([str(a) for a in args])) if any(args) else option + + # Reshuffles operator ordering to increase performance + @staticmethod + def optimize_order(operator_list): + i1 = operator_list.index(cdo_command.spectral_operator) if cdo_command.spectral_operator in operator_list else 0 + i2 = operator_list.index(cdo_command.gridtype_operator) if cdo_command.gridtype_operator in operator_list else 0 + times = [cdo_command.year, cdo_command.month, cdo_command.day] + ops = [cdo_command.mean, cdo_command.min, cdo_command.max, cdo_command.sum] + zones = [cdo_command.zonal, cdo_command.meridional, cdo_command.field] + nonlinear_operators = [t + cdo_command.min for t in times] + [t + cdo_command.max for t in times] + \ + [z + o for o in ops for z in zones] + \ + [cdo_command.expression_operator, cdo_command.add_expression_operator] + \ + [cdo_command.area_operator] + i = i1 + i2 + while i > 0: + if operator_list[i - 1] in nonlinear_operators: + break + operator_list[i - 1], operator_list[i] = operator_list[i], operator_list[i - 1] + i -= 1 + return operator_list diff --git a/ece2cmor/ece2cmor3/cmor_source.py b/ece2cmor/ece2cmor3/cmor_source.py new file mode 100644 index 0000000000000000000000000000000000000000..8b5fdb69514d442c925c4cfa68bb9b26426dfb3b --- /dev/null +++ b/ece2cmor/ece2cmor3/cmor_source.py @@ -0,0 +1,291 @@ +import json +import logging +import os +import re + +from ece2cmor3 import cmor_utils + +# Logger instance. +log = logging.getLogger(__name__) + + +# Base class for cmor source objects, which represent variables produced by a model +class cmor_source(object): + + def __init__(self): + pass + + def variable(self): + pass + + def model_component(self): + pass + + +# Creates an ece2cmor task source from the input dictionary +def create_cmor_source(attributes, component): + result = None + src = attributes.get("source", None) + if component == "ifs": + expr = attributes.get("expr", None) + if src is None and expr is None: + log.error( + "Could not find an IFS source or expression entry within attributes %s" % (str(attributes.__dict__))) + return None + result = ifs_source.read(src, expr, mask_expr=attributes.get(mask_expression_key, None), + expr_order=int(attributes.get("expr_order", "0"))) + if component == "nemo": + if src is None: + log.error("Could not find a NEMO source variable within attributes %s" % (str(attributes.__dict__))) + result = netcdf_source(src, component) + if component == "lpjg": + if src is None: + log.error("Could not find a LPJG source variable within attributes %s" % (str(attributes.__dict__))) + result = lpjg_source(src) + if component == "tm5": + if src is None: + log.error("Could not find a TM5 source variable within attributes %s" % (str(attributes.__dict__))) + result = tm5_source(src) + if component == "co2box": + if src is None: + log.error("Could not find a co2box source variable within attributes %s" % (str(attributes.__dict__))) + result = co2box_source(src) + # if component == NEWCOMPONENT: + # create some source here, if NEWCOMPONENT has nc files as output, the NEMO case can be copied + return result + + +# NetCDF cmor source +class netcdf_source(cmor_source): + + def __init__(self, variable, component): + super(netcdf_source, self).__init__() + self.variable_ = variable + self.component_ = component + + def variable(self): + return self.variable_ + + def model_component(self): + return self.component_ + + +# ECMWF grib code object +class grib_code: + def __init__(self, var_id_, tab_id_=128): + self.var_id = var_id_ + self.tab_id = tab_id_ + + def __eq__(self, other): + return self.var_id == other.var_id and self.tab_id == other.tab_id + + def __str__(self): + return str(self.var_id) + '.' + str(self.tab_id) + + def __hash__(self): + return self.var_id + self.tab_id * 1000 + + @classmethod + def read(cls, istr): + s = istr[3:] if istr.startswith("var") else istr + string_pair = s.split('.') + if len(string_pair) == 1: + code_string = string_pair[0] + if len(code_string) > 3: + vid, tid = int(code_string[3:]), int(code_string[:3]) + else: + vid, tid = int(code_string), 128 + elif len(string_pair) == 2: + vid, tid = int(string_pair[0]), int(string_pair[1]) + else: + raise Exception("Invalid input string for grib code:", istr) + cls = grib_code(vid, tid) + return cls + + @staticmethod + def to_cdo_str(c): + if c.tab_id == 128: + return "var" + str(c.var_id) + return "var" + str(c.__hash__()) + + +# Reads a group of grib codes from a json-file +def read_grib_codes_group(file, key): + s = open(file).read() + data = json.loads(s) + if key in data: + return [grib_code.read(s) for s in data[key]] + else: + return [] + + +ifs_grid = cmor_utils.cmor_enum(["point", "spec"]) +expression_key = "expr" +expression_order_key = "expr_order" +mask_expression_key = "mask_expr" + + +# IFS source subclass, constructed from a given grib code. +class ifs_source(cmor_source): + # Existing grib code lists, read from resources. + grib_codes_file = os.path.join(os.path.dirname(__file__), "resources/grib_codes.json") + grib_codes_3D = read_grib_codes_group(grib_codes_file, "MFP3D") + grib_codes_2D_dyn = read_grib_codes_group(grib_codes_file, "MFP2DF") + grib_codes_2D_phy = read_grib_codes_group(grib_codes_file, "MFPPHY") + grib_codes_extra = read_grib_codes_group(grib_codes_file, "NVEXTRAGB") + grib_codes_sh = read_grib_codes_group(grib_codes_file, "ICMSH") + grib_codes_accum = read_grib_codes_group(grib_codes_file, "ACCUMFLD") + grib_codes_min = read_grib_codes_group(grib_codes_file, "MINFLD") + grib_codes_max = read_grib_codes_group(grib_codes_file, "MAXFLD") + grib_codes_fx = read_grib_codes_group(grib_codes_file, "FXFLD") + grib_codes = grib_codes_3D + grib_codes_2D_dyn + grib_codes_2D_phy + grib_codes_extra + + # Constructor. + def __init__(self, code): + super(ifs_source, self).__init__() + global log + if not code: + self.code_ = None + self.spatial_dims = -1 + self.grid_ = -1 + else: + self.code_ = code + self.spatial_dims = -1 + self.grid_ = ifs_grid.spec if code in ifs_source.grib_codes_sh else ifs_grid.point + self.spatial_dims = 3 if code in (ifs_source.grib_codes_3D + ifs_source.grib_codes_2D_dyn) else 2 + + # Returns the model component. + def model_component(self): + return "ifs" + + def variable(self): + return str(self.code_) + + # Returns the grid. + def grid(self): + return ifs_grid[self.grid_] if self.grid_ >= 0 else None + + # Returns the grid id. + def grid_id(self): + return self.grid_ + + # Returns the grib code. + def get_grib_code(self): + return grib_code(self.code_.var_id, self.code_.tab_id) if self.code_ else None + + # Returns the argument grib codes in case of a post-processing expression variable. + def get_root_codes(self): + if hasattr(self, "root_codes"): + return [grib_code(c.var_id, c.tab_id) for c in getattr(self, "root_codes")] + else: + return [self.get_grib_code()] if self.code_ else [] + + # Creates an instance from the input string s. + @classmethod + def read(cls, s, expr=None, mask_expr=None, expr_order=0): + global log + gc = grib_code.read(s) + cls = ifs_source(gc) + if expr is not None: + if gc in ifs_source.grib_codes: + log.error("Expression %s assigned to reserved existing grib code %s, skipping expression assignment" + % (expr, str(gc))) + else: + # Remove whitespace + expr_string = expr.replace(" ", "") + # Find all variable strings + varstrs = re.findall(r"var[0-9]{1,3}(?![0-9])", expr_string) + re.findall(r"var[0-9]{6}(?![0-9])", + expr_string) + # Split into LHS and RHS + groups = re.search(r"^var([0-9]{1,3}|[0-9]{6})\=(?!\=)", expr_string) + + # Remove LHS if present + if groups is not None: + log.warning("Ignoring left-hand side assignment in expression %s" % expr) + varstrs.remove(groups.group(0)[:-1]) + expr_string = expr_string[len(groups.group(0)):] + + # Remove leading zeros + expr_string = re.sub(r"var[0-9]{6}", lambda o: "var" + o.group(0)[-3:].lstrip('0'), expr_string) + + # Add LHS again + expr_string = '='.join(["var" + str(gc.var_id), expr_string]) + + # Collect root codes + root_codes = [] + for varstr in varstrs: + code = grib_code.read(varstr) + if code not in ifs_source.grib_codes: + log.error("Unknown grib code %s in expression %s found" % (str(code), expr)) + if code not in root_codes: + root_codes.append(code) + + num_sp_codes = len([c for c in root_codes if c in ifs_source.grib_codes_sh]) + if num_sp_codes != 0 and num_sp_codes != len(root_codes): + log.error("Invalid combination of gridpoint and spectral variables in expression %s" % expr) + + cls.grid_ = ifs_grid.spec if all( + [c in ifs_source.grib_codes_sh for c in root_codes]) else ifs_grid.point + cls.spatial_dims = 3 if any([c in ifs_source.grib_codes_3D for c in root_codes]) else 2 + setattr(cls, "root_codes", root_codes) + setattr(cls, expression_key, expr_string) + setattr(cls, expression_order_key, expr_order) + if mask_expr is not None: + setattr(cls, mask_expression_key, mask_expr) + varstrs = re.findall(r"var[0-9]{1,3}(?![0-9])", mask_expr) + re.findall(r"var[0-9]{6}(?![0-9])", mask_expr) + # Collect root codes + root_codes = getattr(cls, "root_codes", [cls.get_grib_code()]) + for varstr in varstrs: + code = grib_code.read(varstr) + if code not in ifs_source.grib_codes: + log.error("Unknown grib code %s in expression %s found" % (str(code), mask_expr)) + if code not in root_codes: + root_codes.append(code) + setattr(cls, "root_codes", root_codes) + return cls + + # Creates in instance from the input codes. + @classmethod + def create(cls, vid, tid=128): + cls = ifs_source(grib_code(vid, tid)) + return cls + + +# LPJ-Guess source subclass +class lpjg_source(cmor_source): + + def __init__(self, colname): + super(lpjg_source, self).__init__() + self.colname_ = colname + + def model_component(self): + return "lpjg" + + def variable(self): + return self.colname_ + + +# LTM5 source subclass +class tm5_source(cmor_source): + + def __init__(self, colname): + super(tm5_source, self).__init__() + self.colname_ = colname + + def model_component(self): + return "tm5" + + def variable(self): + return self.colname_ + +class co2box_source(cmor_source): + + def __init__(self, colname): + super(co2box_source, self).__init__() + self.colname_ = colname + + def model_component(self): + return "co2box" + + def variable(self): + return self.colname_ diff --git a/ece2cmor/ece2cmor3/cmor_target.py b/ece2cmor/ece2cmor3/cmor_target.py new file mode 100644 index 0000000000000000000000000000000000000000..ba6673a220631c67c6eb80bc1a4ffb778a033dd3 --- /dev/null +++ b/ece2cmor/ece2cmor3/cmor_target.py @@ -0,0 +1,280 @@ +import os +import re +import json +import logging + +# Log object. +log = logging.getLogger(__name__) + +# Axes information read from tables. +axes = {} + +# Special files: +coord_file = "coordinate" + +# Json file keys: +head_key = "header" +specs_version_key = "data_specs_version" +cmor_version_key = "cmor_version" +conventions_key = "Conventions" +date_key = "table_date" +axis_key = "axis_entry" +var_key = "variable_entry" +freq_key = "frequency" +realm_key = "modeling_realm" +missval_key = "missing_value" +int_missval_key = "int_missing_value" +dims_key = "dimensions" +levs_key = "generic_levels" +cell_measures_key = "cell_measures" +cell_methods_key = "cell_methods" +valid_min_key = "valid_min" +valid_max_key = "valid_max" +cell_measure_axes = ["time", "area", "volume", "latitude", "longitude", "grid_latitude", "grid_longitude", "depth"] +mask_key = "mask" +xydims = {"latitude", "longitude", "gridlatitude", "gridlongitude", "xgre", "ygre", "xant", "yant"} +extra_dims = {"basin", "spectband", "iceband", "landUse", "vertices", "effectRadLi", "effectRadIc", "tau", + "lambda550nm", "scatratio", "dbze", "soilpools", "sza5", "vegtype", "site", "siline"} + + +# Class for cmor target objects, which represent output variables. +class cmor_target(object): + + def __init__(self, var_id__, tab_id__): + self.variable = var_id__ + self.table = tab_id__ + self.dims = 2 + + def __str__(self): + return self.table + ": " + self.variable + + +# Derives the table id for the given file path +def get_table_id(filepath, prefix): + fname = os.path.basename(filepath) + regex = re.search(r"^" + prefix + r"_.*.json$", fname) + if not regex: + raise Exception("Unable to match file name", fname, "as cmor table json-file with prefix", prefix) + return regex.group()[len(prefix) + 1:len(fname) - 5] + + +def print_drq_version(filepath): + with open(filepath, 'r') as f: + try: + data = json.loads(f.read()) + header = get_lowercase(data, head_key, None) + if header is None: + return False + for key in [specs_version_key, cmor_version_key, conventions_key, date_key]: + log.info("CMOR tables %s : %s" % (key, header.get(key, "unknown"))) + return True + except ValueError as err: + log.warning("Input table %s has been ignored. Reason: %s" % (filepath, format(err))) + return False + + +# Creates cmor-targets from the input json-file +def create_targets_for_file(filepath, prefix): + global log, axes, head_key, freq_key, realm_key, levs_key, axis_key, var_key, dims_key + global cell_methods_key, cell_measures_key, cell_measure_axes + tabid = get_table_id(filepath, prefix) + with open(filepath, 'r') as f: + result = [] + try: + data = json.loads(f.read()) + except ValueError as err: + log.warning("Input table %s has been ignored. Reason: %s" % (filepath, format(err))) + return result + freq = None + realm = None + header = get_lowercase(data, head_key, None) + modlevs = None + missval = None + missvalint = None + if header: + freq = get_lowercase(header, freq_key, None) + realm = get_lowercase(header, realm_key, None) + missval = get_lowercase(header, missval_key, None) + missvalint = get_lowercase(header, int_missval_key, None) + modlevs = get_lowercase(header, levs_key, None) + axes_entries = get_lowercase(data, axis_key, {}) + if modlevs: + for modlev in modlevs.split(): + axes_entries[modlev] = {"requested": "all"} + axes[tabid] = axes_entries + var_entries = get_lowercase(data, var_key, {}) + for k, v in var_entries.items(): + target = cmor_target(k, tabid) + target.frequency = freq + target.realm = realm + if missval: + setattr(target, missval_key, float(missval)) + if missvalint: + setattr(target, int_missval_key, int(missvalint)) + for k2, v2 in v.items(): + key = k2.lower() + setattr(target, key, v2) + if key == dims_key.lower(): + spacedims = list(set([s for s in v2.split() if not (s.lower().startswith("time") or + s.lower().startswith("type"))]) + - extra_dims) + setattr(target, "space_dims", spacedims) + target.dims = len(spacedims) + zdims = list(set(spacedims) - xydims) + if any(zdims): + setattr(target, "z_dims", zdims) + if key in [cell_measures_key.lower(), cell_methods_key.lower()]: + cell_measure_str = re.sub(r"[\(\[].*?[\)\]]", "", v2.strip()) + if cell_measure_str not in ["@OPT", "--OPT", "", None]: + cell_measures = cell_measure_str.split(':') + for i in range(1, len(cell_measures)): + prev_words = cell_measures[i - 1].split() + if len(prev_words) == 0: + log.error("Error parsing cell measures %s for variable %s in table %s" % (v2, k, tabid)) + break + measure_dim = prev_words[-1].strip().lower() + if measure_dim not in cell_measure_axes: + log.error("Error parsing cell measures %s for variable %s in table %s" % (v2, k, tabid)) + break + key = measure_dim + "_operator" + value = cell_measures[i].strip().lower() + if i < len(cell_measures) - 1: + value = ' '.join(value.split(' ')[:-1]) + if hasattr(target, key): + getattr(target, key).append(value) + else: + setattr(target, key, [value]) + if validate_target(target): + result.append(target) + return result + + +# Creates axes info dictionaries for given file +def create_axes_for_file(filepath, prefix): + global log, axes, axis_key + tabid = get_table_id(filepath, prefix) + with open(filepath, 'r') as f: + result = [] + try: + data = json.loads(f.read()) + except ValueError as err: + log.warning("Input table %s has been ignored. Reason: %s" % (filepath, format(err))) + return result + axes[tabid] = get_lowercase(data, axis_key, {}) + + +# Utility function for lower-case dictionary searches +def get_lowercase(dictionary, key, default): + if not isinstance(key, str): + return dictionary.get(key, default) + lowerkey = key.lower() + for k, v in dictionary.items(): + if isinstance(k, str) and k.lower() == lowerkey: + return v + return default + + +# Creates cmor-targets from all json files in the given directory, with argument prefix. +def create_targets(path, prefix): + global coord_file + result = [] + drq_version_printed = False + if os.path.isfile(path): + if os.path.basename(path) not in [prefix + "_CV.json", prefix + "_CV_test.json"]: + print_drq_version(path) + result = result + create_targets_for_file(path, prefix) + elif os.path.isdir(path): + coordfilepath = os.path.join(path, prefix + "_" + coord_file + ".json") + if not drq_version_printed: + drq_version_printed = print_drq_version(coordfilepath) + if os.path.exists(coordfilepath): + create_axes_for_file(coordfilepath, prefix) + expr = re.compile(r"^" + prefix + r"_.*.json$") + paths = [os.path.join(path, f) for f in os.listdir(path) if re.match(expr, f)] + for p in paths: + if os.path.basename(p) not in [prefix + "_CV.json", prefix + "_CV_test.json"]: + if not drq_version_printed: + drq_version_printed = print_drq_version(p) + result = result + create_targets_for_file(p, prefix) + return result + + +# Validates a CMOR target, skipping those that do not make any sense +def validate_target(target): + global log, valid_min_key, valid_max_key + minstr = getattr(target, valid_min_key, "").strip() + maxstr = getattr(target, valid_max_key, "").strip() + minnr = float(minstr) if minstr else -float("inf") + maxnr = float(maxstr) if maxstr else float("inf") + if minnr == maxnr: + log.error("The target variable %s in table %s has invalid bounds..." + "skipping this target" % (target.variable, target.table)) + return False + return True + + +model_axes = ["alevel", "alevhalf", "olevel", "olevhalf"] +pressure_axes = ["air_pressure"] +height_axes = ["height", "altitude"] # TODO: distinguish + + +# Returns the frequency (in hours) of the target variable +def get_freq(target): + freq = getattr(target, freq_key, None) + if freq == "day": + return 24 + if freq in ["6hr", "6hrPt"]: + return 6 + if freq in ["3hr", "3hrPt"]: + return 3 + if freq in ["1hr", "1hrPt"]: + return 1 + if freq in ["subhr", "subhrPt", "fx"]: + return 0 + return -1 + + +def is_instantaneous(target): + time_operator = getattr(target, "time_operator", []) + return len(time_operator) == 0 or time_operator[0] in ["point", "instant"] + + +# Sets the z-axis attributes for the given target +def get_z_axis(target): + global log + result = [] + for axisname in getattr(target, "z_dims", []): + if axisname in model_axes: + result.append((axisname, [-1])) + else: + axisinfo = get_axis_info(target.table).get(axisname, None) + if not axisinfo: + log.warning("Could not retrieve information for axis %s in table %s" % (axisname, target.table)) + continue + zvar = axisinfo.get("standard_name", None) + if zvar in pressure_axes + height_axes: + levels = axisinfo.get("requested", []) + if not any(levels): + val = axisinfo.get("value", None) + if val: + levels = [val] + if not any(levels): + log.warning("Could not retrieve levels for vertical coordinate %s" % axisname) + continue + result.append((zvar, levels)) + if not any(result): + return None, [] + if len(result) > 1: + log.warning("Multiple vertical axes declared for variable %s in table %s:" + "taking first coordinate %s" % target.var_id, target.tab_id, result[0][0]) + return result[0] + + +# Returns the axes defined for the input table. +def get_axis_info(table_id): + global axes, coord_file + result = axes.get(coord_file, {}) + overrides = axes.get(table_id, {}) + for k, v in overrides.items(): + result[k] = v + return result diff --git a/ece2cmor/ece2cmor3/cmor_task.py b/ece2cmor/ece2cmor3/cmor_task.py new file mode 100644 index 0000000000000000000000000000000000000000..ba0794bb7833c53a9c6376ca82bba2b0429537a6 --- /dev/null +++ b/ece2cmor/ece2cmor3/cmor_task.py @@ -0,0 +1,47 @@ +import logging +from ece2cmor3 import cmor_source, cmor_target + +# Logger instance +log = logging.getLogger(__name__) + +conversion_key = "convert" +filter_output_key = "filter_path" +output_path_key = "path" +output_frequency_key = "output_freq" +postproc_script_key = "post-proc" + +status_initialized = 0 +status_postprocessing = 1 +status_postprocessed = 2 +status_cmorizing = 3 +status_cmorized = 4 +status_finished = 5 +status_failed = -1 + + +# Cmorization task class, containing source and targets. +class cmor_task(object): + + def __init__(self, source_, target_): + if not isinstance(source_, cmor_source.cmor_source): + raise Exception("Invalid source argument type for cmor task:", type(source_)) + if not isinstance(target_, cmor_target.cmor_target): + raise Exception("Invalid target argument type for cmor task:", type(target_)) + self.source = source_ + self.target = target_ + self.status = status_initialized + + def next_state(self): + if self.status == status_failed: + log.error("Attempt to increase failed status for task %s in %s ignored" % (self.target.variable, + self.target.table)) + elif self.status == status_finished: + log.warning("Attempt to increase finished status for task %s in %s ignored" % (self.target.variable, + self.target.table)) + else: + self.status += 1 + return self.status + + def set_failed(self): + self.status = status_failed + return self.status diff --git a/ece2cmor/ece2cmor3/cmor_utils.py b/ece2cmor/ece2cmor3/cmor_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..d7d6368648b331915beeb670040e7051dd8a2a1e --- /dev/null +++ b/ece2cmor/ece2cmor3/cmor_utils.py @@ -0,0 +1,541 @@ +import datetime +import math + +import cdo +import cmor +import dateutil.relativedelta +# lpjg related +import gzip +import io +import csv +# lpjg end + +import logging + +import netCDF4 +import numpy +import os +import re +import requests + +# Log object +from ece2cmor3 import components + +log = logging.getLogger(__name__) + + +# Enum utility class +class cmor_enum(tuple): + __getattr__ = tuple.index + + +# Grouping to dictionary utility function +def group(objects, func): + d = {} + for o in objects: + k = func(o) + if k in d: + d[k].append(o) + else: + d[k] = [o] + return d + + +# Gets the git hash +def get_git_hash(): + from ece2cmor3 import __version__ + try: + result = __version__.sha + except AttributeError: + import git + try: + repo = git.Repo(search_parent_directories=True) + sha = str(repo.head.object.hexsha) + if repo.is_dirty(): + sha += "-changes" + result = sha + except git.exc.InvalidGitRepositoryError: + result = "local unknown branch" + return result + + +# Turns a date or datetime into a datetime +# TODO: Shouldn't we use the netcdf utility for this? +def date2num(times, ref_time): + def shift_times(t): + return (t - ref_time).total_seconds() / 3600. + + return numpy.vectorize(shift_times)(times), ' '.join(["hours", "since", str(ref_time)]) + + +# Fix for datetime.strftime("%Y%m%d") for years before 1900 +def date2str(dt): + return dt.isoformat().split('T')[0].replace('-', '') + + +# Shifts the input times to the requested ref_time +def num2num(times, ref_time, units, calendar, shift=datetime.timedelta(0)): + n = units.find(" since") + return times - netCDF4.date2num(ref_time + shift, units, calendar), ' '.join([units[:n], "since", str(ref_time)]) + + +# Creates a time interval from the input string, assuming ec-earth conventions +def make_cmor_frequency(s): + if isinstance(s, dateutil.relativedelta.relativedelta) or isinstance(s, datetime.timedelta): + return s + if isinstance(s, str): + if s in ["yr", "yrPt", "dec"]: + return dateutil.relativedelta.relativedelta(years=1) + if s in ["mon", "monC", "monPt"]: + return dateutil.relativedelta.relativedelta(months=1) + if s in ["day", "dayPt"]: + return dateutil.relativedelta.relativedelta(days=1) + if s in ["6hr", "6hrPt"]: + return dateutil.relativedelta.relativedelta(hours=6) + if s in ["3hr", "3hrPt"]: + return dateutil.relativedelta.relativedelta(hours=3) + raise Exception("Could not convert argument", s, "to a relative time interval") + + +# Creates a time interval from the input string, assuming ec-earth conventions +def get_rounded_time(freq, time, offset=0): + interval = make_cmor_frequency(freq) + if interval == dateutil.relativedelta.relativedelta(days=1): + return datetime.datetime(year=time.year, month=time.month, day=time.day) + offset * interval + if interval == dateutil.relativedelta.relativedelta(months=1): + return datetime.datetime(year=time.year, month=time.month, day=1) + offset * interval + if interval == dateutil.relativedelta.relativedelta(years=1): + return datetime.datetime(year=time.year, month=1, day=1) + offset * interval + return time + offset * interval + + +# Creates time intervals between start and end with length delta. Last interval may be cut to match end-date. +def make_time_intervals(start, end, delta): + global log + if end < start: + log.warning("Start date %s later than end date %s" % (str(start), str(end))) + return [] + if start + delta == start: + log.warning("Cannot partition time interval into zero-length intervals") + return [] + result = list() + istart = start + while (istart + delta) < end: + iend = istart + delta + result.append((istart, iend)) + istart = iend + result.append((istart, end)) + return result + + +# Returns the start date for the given file path +def get_ifs_date(filepath): + global log + fname = os.path.basename(filepath) + regex = re.search(r"\+[0-9]{6}", fname) + if not regex: + log.error("Unable to parse time stamp from ifs file name %s" % fname) + return None + ss = regex.group()[1:] + return datetime.datetime.strptime(ss, "%Y%m").date() + + +# Finds all nemo output in the given directory. If expname is given, matches according output files. +def find_nemo_output(path, expname=None): + subexpr = ".*" + if expname: + subexpr = expname + expr = re.compile(subexpr + r"_.*_[0-9]{8}_[0-9]{8}_.*.nc$") + return [os.path.join(path, f) for f in os.listdir(path) if re.match(expr, f)] + + +# Returns the grid for the given file name. +def get_nemo_grid(filepath): + global log + f = os.path.basename(filepath) + expname = f[:4] + expr = re.compile(r"(?<=^" + expname + r"_.{2}_[0-9]{8}_[0-9]{8}_).*.nc$") + result = re.search(expr, f) + if not result: + log.error("File path %s does not contain a grid string" % filepath) + return None + match = result.group(0) + return match[0:len(match) - 3] + + +# Returns the frequency string for a given nemo output file. +def get_nemo_frequency(filepath, expname): + global log + f = os.path.basename(filepath) + expr = re.compile(r"^" + expname + r".*_[0-9]{8}_[0-9]{8}_.*.nc$") + if not re.match(expr, f): + log.error("File path %s does not correspond to nemo output of experiment %s" % (filepath, expname)) + return None + fstr = f[len(expname) + 1:].split("_")[0] + expr = re.compile(r"^(\d+)([hdmy])") + if not re.match(expr, fstr): + log.error("File path %s does not contain a valid frequency indicator" % filepath) + return None + n = int(fstr[0:len(fstr) - 1]) + if n == 0: + log.error("Invalid frequency 0 parsed from file path %s" % filepath) + return None + return fstr + + +def read_time_stamps(path): + command = cdo.Cdo() + times = command.showtimestamp(input=path)[0].split() + return [datetime.datetime.strptime(s, "%Y-%m-%dT%H:%M:%S") for s in times] + + +def find_tm5_output(path, expname=None, varname=None, freq=None): + """ + Finds TM5 outputfiles, which consist of varname + "_" + "AER"[freq] + * + dates + ".nc" + inputs: + Path (mandatory) + experiment name (optional) + varname (optional) + frequency (optional) + output: + list of full paths to files + """ + subexpr = ".*" + if expname: + subexpr = expname + if varname is None: + # + # select alphanumeric variable name followed by _AER + * + _expname_ + * + dates.nc + # + # matches like this: + # first quotation marks: + # emioa_AER*_ + # subexpr: + # aspi + # second quotation marks: + # _*_185001-185012.nc to _*_185001010000-185012312300 [6-12 numbers in date] + expr = re.compile(r"(([0-9A-Za-z]+)\w_AER.*)_" + subexpr + r"_.*_[0-9]{6,12}-[0-9]{6,12}\.nc$") + elif varname is not None and freq == 'fx': + expr = re.compile(varname + r"_.*" + freq + r".*_" + subexpr + r"_.*.nc$") + else: + expr = re.compile(varname + r"_.*" + freq + r".*_" + subexpr + r"_.*.nc$") + a = [os.path.join(path, f) for f in os.listdir(path) if re.match(expr, f)] + + return [os.path.join(path, f) for f in os.listdir(path) if re.match(expr, f)] + + +def get_tm5_frequency(filepath, expname): + global log + f = os.path.basename(filepath) + expr = re.compile(r".*_[0-9]{6,12}-[0-9]{6,12}.nc$") + if not re.match(expr, f): + log.error("File path %s does not correspond to tm5 output of experiment %s" % (filepath, expname)) + return None + + fstr = f.split("_")[1] + expr = re.compile(r"(AERhr|AER6hr|AERmon|AERday|fx|Ahr|Amon|Aday|Emon|Efx)") + # expr = re.compile(r"(AERhr|AERmon|AERday|Emon|Efx)") + if not re.match(expr, fstr): + log.error("File path %s does not contain a valid frequency indicator" % filepath) + return None + # n = int(fstr[0:len(fstr)) + # if n == 0: + # log.error("Invalid frequency 0 parsed from file path %s" % filepath) + # return None + return fstr + + +# Returns the start and end date corresponding to the given nemo output file. +def get_tm5_interval(filepath): + global log + fname = os.path.basename(filepath) + regex = re.findall(r"[0-9]{6,12}", fname) # mon(6),day(8), hour(10) + start, end = None, None + if not regex or len(regex) != 2: + log.error("Unable to parse dates from tm5 file name %s" % fname) + return start, end + if len(regex[0]) == 8: + start = datetime.datetime.strptime(regex[0][:], "%Y%m%d") + end = datetime.datetime.strptime(regex[1][:], "%Y%m%d") + elif len(regex[0]) == 6: + start = datetime.datetime.strptime(regex[0][:], "%Y%m") + end = datetime.datetime.strptime(regex[1][:], "%Y%m") + elif len(regex[0]) == 10: + start = datetime.datetime.strptime(regex[0][:], "%Y%m%d%H") + end = datetime.datetime.strptime(regex[1][:], "%Y%m%d%H") + elif len(regex[0]) == 12: + start = datetime.datetime.strptime(regex[0][:], "%Y%m%d%H%M") + end = datetime.datetime.strptime(regex[1][:], '%Y%m%d%H%M') + else: + log.error("Date string in filename %s not supported." % fname) + return start, end + +def find_co2box_output(path, expname, varname=None, freq=None): + """ + Finds co2box outputfiles, which consist of varname_freq_expname_date.nc + inputs: + Path (mandatory) + expname (mandatory) + varname (optional) + freq (optional) + output: + list of full paths to files + """ + if expname is None: + expname = "[a-zA-Z0-9]*" + if varname is None: + varname = "[a-zA-Z0-9]*" + if freq is None: + freq = "[a-zA-Z0-9]*" + date = "[0-9]{8}-[0-9]{8}" + rexp = "^%s_%s_%s_%s\.nc$"%(varname,freq,expname,date) + expr = re.compile(rexp) + a = [os.path.join(path, f) for f in os.listdir(path) if re.match(expr, f)] + return [os.path.join(path, f) for f in os.listdir(path) if re.match(expr, f)] + +# Writes the ncvar (numpy array or netcdf variable) to CMOR variable with id varid +def netcdf2cmor(varid, ncvar, timdim=0, factor=1.0, term=0.0, psvarid=None, ncpsvar=None, swaplatlon=False, + fliplat=False, mask=None, missval=1.e+20, time_selection=None, force_fx=False): + global log + ndims = len(ncvar.shape) + if timdim < 0: + ntimes = 1 if time_selection is None else len(time_selection) + else: + ntimes = ncvar.shape[timdim] if time_selection is None else len(time_selection) + size = ncvar.size / ntimes + chunk = int(math.floor(4.0E+9 / (8 * size))) # Use max 4 GB of memory + if time_selection is not None and numpy.any(time_selection < 0): + chunk = 1 + missval_in = getattr(ncvar, "missing_value", None) + for i in range(0, ntimes, chunk): + imax = min(i + chunk, ntimes) + time_slice = slice(i, imax, 1) + if time_selection is not None: + if numpy.array_equal(time_selection[i: imax], numpy.arange(i, imax)): + time_slice = slice(i, imax, 1) + elif numpy.array_equal(time_selection[i: imax], numpy.array([-1])): + time_slice = None + else: + time_slice = time_selection[i: imax] + vals = None + if ndims == 1: + if timdim < 0: + vals = apply_mask(ncvar[:], factor, term, None, missval_in, missval) + elif timdim == 0: + vals = apply_mask(ncvar[time_slice], factor, term, None, missval_in, missval) + elif ndims == 2: + if timdim < 0: + if swaplatlon: + vals = (apply_mask(ncvar[:, :], factor, term, mask, missval_in, missval)).transpose() + else: + vals = apply_mask(ncvar[:, :], factor, term, mask, missval_in, missval) + elif timdim == 0: + if time_slice is None: + vals = numpy.transpose(numpy.full((1,) + ncvar.shape[1:], missval), axes=[1, 0]) + else: + vals = numpy.transpose(apply_mask(ncvar[time_slice, :], factor, term, None, missval_in, + missval), axes=[1, 0]) + elif timdim == 1: + if time_slice is None: + vals = numpy.full(ncvar.shape[:-1] + (1,), missval) + else: + vals = apply_mask(ncvar[:, time_slice], factor, term, None, missval_in, missval) + elif ndims == 3: + if timdim < 0: + vals = numpy.transpose(apply_mask(ncvar[:, :, :], factor, term, mask, missval_in, missval), + axes=[2, 1, 0] if swaplatlon else [1, 2, 0]) + elif timdim == 0: + if time_slice is None: + vals = numpy.transpose(numpy.full((1,) + ncvar.shape[1:], missval), + axes=[2, 1, 0] if swaplatlon else [1, 2, 0]) + else: + vals = numpy.transpose(apply_mask(ncvar[time_slice, :, :], factor, term, mask, + missval_in, missval), + axes=[2, 1, 0] if swaplatlon else [1, 2, 0]) + elif timdim == 2: + if mask is not None: + log.error("Masking column-major stored arrays is not implemented yet...ignoring mask") + if time_slice is None: + vals = numpy.transpose(numpy.full(ncvar.shape[:-1] + (1,), missval), + axes=[1, 0, 2] if swaplatlon else [0, 1, 2]) + else: + vals = numpy.transpose(apply_mask(ncvar[:, :, time_slice], factor, term, None, missval_in, + missval), + axes=[1, 0, 2] if swaplatlon else [0, 1, 2]) + else: + log.error("Unsupported array structure with 3 dimensions and time dimension index 1") + return + elif ndims == 4: + if timdim == 0: + if time_slice is None: + vals = numpy.transpose(numpy.full((1,) + ncvar.shape[1:], missval), + axes=[3, 2, 1, 0] if swaplatlon else [2, 3, 1, 0]) + else: + vals = numpy.transpose(apply_mask(ncvar[time_slice, :, :, :], factor, term, mask, missval_in, + missval), + axes=[3, 2, 1, 0] if swaplatlon else [2, 3, 1, 0]) + elif timdim == 3: + if mask is not None: + log.error("Masking column-major stored arrays is not implemented yet...ignoring mask") + if time_slice is None: + vals = numpy.transpose(numpy.full(ncvar.shape[:-1] + (1,), missval), + axes=[1, 0, 2, 3] if swaplatlon else [0, 1, 2, 3]) + else: + vals = numpy.transpose(apply_mask(ncvar[:, :, :, time_slice], factor, term, mask, missval_in, + missval), + axes=[1, 0, 2, 3] if swaplatlon else [0, 1, 2, 3]) + else: + log.error("Unsupported array structure with 4 dimensions and time dimension index %d" % timdim) + return + elif ndims == 5: + if timdim == 0: + if time_slice is None: + vals = numpy.transpose(numpy.full((1,) + ncvar.shape[1:], missval), + axes=[4, 3, 2, 1, 0] if swaplatlon else [3, 4, 2, 1, 0]) + else: + vals = numpy.transpose(apply_mask(ncvar[time_slice, :, :, :, :], factor, term, mask, missval_in, + missval), + axes=[4, 3, 2, 1, 0] if swaplatlon else [3, 4, 2, 1, 0]) + elif timdim == 4: + if mask is not None: + log.error("Masking column-major stored arrays is not implemented yet...ignoring mask") + if time_slice is None: + vals = numpy.transpose(numpy.full(ncvar.shape[:-1] + (1,), missval), + axes=[1, 0, 2, 3, 4] if swaplatlon else [0, 1, 2, 3, 4]) + else: + vals = numpy.transpose(apply_mask(ncvar[:, :, :, :, time_slice], factor, term, mask, missval_in, + missval), + axes=[1, 0, 2, 3, 4] if swaplatlon else [0, 1, 2, 3, 4]) + else: + log.error("Unsupported array structure with 4 dimensions and time dimension index %d" % timdim) + return + else: + log.error("Cmorizing arrays of rank %d is not supported" % ndims) + return + if fliplat and (ndims > 1 or timdim < 0): + vals = numpy.flipud(vals) + if timdim < 0 and ntimes > 1: + vals = numpy.repeat(vals, repeats=(imax - i), axis=ndims - 1) + ntimes_passed = 0 if ((timdim < 0 and ntimes == 1) or force_fx) else (imax - i) + cmor.write(varid, vals, ntimes_passed=ntimes_passed) + del vals + if psvarid is not None and ncpsvar is not None: + spvals = None + if len(ncpsvar.shape) == 3: + if time_slice is None: + spvals = numpy.transpose(numpy.full((1,) + ncpsvar.shape[1:], missval), + axes=[2, 1, 0] if swaplatlon else [1, 2, 0]) + else: + spvals = numpy.transpose(ncpsvar[time_slice, :, :], axes=[2, 1, 0] if swaplatlon else [1, 2, 0]) + elif len(ncpsvar.shape) == 4: + if time_slice is None: + spvals = numpy.transpose(numpy.full((1,) + ncvar.shape[2:], missval), + axes=[2, 1, 0] if swaplatlon else [2, 1, 0]) + else: + spvals = numpy.transpose(ncpsvar[time_slice, 0, :, :], axes=[2, 1, 0] if swaplatlon else [1, 2, 0]) + if spvals is not None: + if fliplat: + spvals = numpy.flipud(spvals) + cmor.write(psvarid, spvals, ntimes_passed=ntimes_passed, store_with=varid) + del spvals + + +# Replaces missing values and applies the mask to the 2 trailing dimensions of the input array +def apply_mask(array, factor, term, mask, missval_in, missval_out): + new_miss_val = array.dtype.type(missval_out) + if missval_in is not None: + array[array == missval_in] = new_miss_val + if mask is not None: + numpy.putmask(array, numpy.broadcast_to(numpy.logical_not(mask), array.shape), new_miss_val) + if factor != 1.0 or term != 0.0: + numpy.putmask(array, array != new_miss_val, factor * array + term) + return array + + +# Downloads a file from our EC-Earth b2share data stor +def get_from_b2share(fname, fullpath): + site = "https://b2share.eudat.eu/api" + record = "f7de9a85cbd443269958f0b80e7bc654" + resp = requests.get('/'.join([site, "records", record])) + if not resp: + log.error("Problem getting record data from b2share server: %d" % resp.status_code) + return False + d = resp.json() + for f in d["files"]: + if f["key"] == fname: + url = '/'.join([site, "files", f["bucket"], f["key"]]) + log.info("Downloading file %s from b2share archive..." % fname) + fresp = requests.get(url) + if not fresp: + log.error("Problem getting file %s from b2share server: %d" % (fname, resp.status_code)) + return False + with open(fullpath, 'wb') as fd: + fd.write(fresp.content) + log.info("...success, file %s created" % fullpath) + return True + + +class ScriptUtils: + + def __init__(self): + pass + + @staticmethod + def add_model_exclusive_options(parser, scriptname=""): + for model in components.models: + parser.add_argument("--" + model, action="store_true", default=False, + help="Run %s exclusively for %s data" % (scriptname, model)) + + @staticmethod + def add_model_tabfile_options(parser): + model_tabfile_attributes = {} + for c in components.models: + tabfile = components.models[c].get(components.table_file, "") + if tabfile: + option = os.path.basename(tabfile) + model_tabfile_attributes[c] = option + parser.add_argument("--" + option, metavar="FILE.json", type=str, default=tabfile, + help="%s variable table (optional)" % c) + + @staticmethod + def get_active_components(args, conf=None): + result = set() + for model in components.models: + if getattr(args, model, False): + result.add(model) + # Correct for deprecated --atm and --oce flags + if getattr(args, "atm", False): + log.warning("Deprecated flag --atm used, use --ifs instead!") + result.add("ifs") + if getattr(args, "oce", False): + log.warning("Deprecated flag --oce used, use --nemo instead!") + result.add("nemo") + + result = list(result) + # If no flag was found, activate all components in configuration + if len(result) == 0: + return components.ece_configs.get(conf, list(components.models.keys())) + return result + + @staticmethod + def get_drq_vars_options(args): + opts = [] + if getattr(args, "drq", None) is not None: + opts.extend(["--drq", args.drq]) + if getattr(args, "ececonf", None) is not None: + opts.extend(["--ececonf", args.ececonf]) + if getattr(args, "varlist", None) is not None: + opts.extend(["--varlist", args.varlist]) + return " ".join(opts) + + @staticmethod + def set_custom_tabfiles(args): + for c in components.models: + tabfile = components.models[c].get(components.table_file, "") + if tabfile: + option = os.path.basename(tabfile) + value = getattr(args, option, None) + if value is not None: + components.models[c][components.table_file] = value + log.info("Initializing for %s with variables from %s" % + (c, components.models[c][components.table_file])) diff --git a/ece2cmor/ece2cmor3/co2box2cmor.py b/ece2cmor/ece2cmor3/co2box2cmor.py new file mode 100644 index 0000000000000000000000000000000000000000..db844e553808d45252a62027a0d79413c1e0b036 --- /dev/null +++ b/ece2cmor/ece2cmor3/co2box2cmor.py @@ -0,0 +1,439 @@ +import os +import re +import numpy +import datetime +import json +import logging +import netCDF4 +import cmor +import cmor_utils +import cmor_source +import cmor_target +import cmor_task +import cdo +from ece2cmor3 import cdoapi +import Ngl +import warnings +from cdo import * + +# Logger object +log = logging.getLogger(__name__) + +# Experiment name +exp_name_ = None + +# Table root +table_root_ = None + +# Files that are being processed in the current execution loop. +co2box_files_ = [] + +# Dictionary of co2box grid type with cmor grid id. +dim_ids_ = {} + +# Dictionary of output frequencies with cmor time axis id. +time_axes_ = {} + +time_axis_ids = {} + +# Reference date, times will be converted to hours since refdate +ref_date_ = None + +unit_miss_match =[] +failed = [] + +# +#using_grid_=False +path_=None +# Initializes the processing loop. +def initialize(path,expname,tabledir, prefix,refdate): + """initialize the cmorization for CO2BOX + Description: + + Input variables: + path, String: path to CO2BOX files + expname, string: name of the experiment + tabledir, string: path to tables + prefix, string: table prefix + Returns: + boolean: success + """ + global log,co2box_files_,exp_name_,table_root_,ref_date_,path_ + exp_name_ = expname + path_ = path + table_root_ =os.path.join(tabledir, prefix) + # select all CO2BOX files with expname from path + co2box_files_ = cmor_utils.find_co2box_output(path_,exp_name_) + if len(co2box_files_) == 0: + log.error('no CO2BOX varibles found, exiting!') + exit() + cal = None + ref_date_ = refdate + + # read pressure level definitions from CMIP6_coordante file + # and save globally + coordfile = os.path.join(tabledir, prefix + "_coordinate.json") + if os.path.exists(coordfile): + with open(coordfile) as f: + data = json.loads(f.read()) + else: + log.warning('Using default pressure level definitions') + + cmor.load_table(table_root_ + "_grids.json") + return True + + +# Resets the module globals. +def finalize(): + """finalize, clear variables + Args: + none + Retruns: + none + """ + global co2box_files_,dim_ids_,time_axes_ + log.info( 'Unit miss match variables %s '%(unit_miss_match)) + co2box_files_ = [] + dim_ids_ = {} + time_axes_ = {} + +# Executes the processing loop. +def execute(tasks): + """execute the cmorization tasks for CO2BOX + Description: + + Args: + tasks (list): list of tasks + Returns: + boolean: success + """ + global log,time_axes_,table_root_,co2box_files_,using_grid_,path_,exp_name_ + log.info("Executing %d co2box tasks..." % len(tasks)) + log.info("Cmorizing co2box tasks...") + #Assign file to each task + for task in tasks: + setattr(task,cmor_task.output_path_key,None) + if not task.target.frequency in ['day', 'mon']: + task.set_failed() + log.info('Variable %s in table %s has frequency %s and thus not available in CO2BOX.'%(task.target.variable,task.target.table,task.target.frequency)) + continue + + # if the target frequency is monthly, create monthly file from daily output with "cdo monmean" + if task.target.frequency == 'mon': + co2box_files = cmor_utils.find_co2box_output(path_,exp_name_,task.target.variable,"day") + if len(co2box_files) != 1: + log.info('Did not find one file for variable %s in table %s from CO2BOX'%(task.target.variable,task.target.table)) + task.set_failed() + else: + cdo = Cdo() + ifile=co2box_files[0] + ofile=ifile.replace("_day_","_mon_") + log.info('Creating temporary monthly mean file %s'%(ofile)) + cdo.monmean(input=ifile, output=ofile) + + co2box_files = cmor_utils.find_co2box_output(path_,exp_name_,task.target.variable,task.target.frequency) + if len(co2box_files) != 1: + log.info('Did not find one file for variable %s in table %s from CO2BOX'%(task.target.variable,task.target.table)) + task.set_failed() + else: + setattr(task,cmor_task.output_path_key,co2box_files[0]) + + #group the taks according to table + taskdict = cmor_utils.group(tasks,lambda t:t.target.table) + for table,tasklist in taskdict.items(): + try: + log.info("Loading CMOR table %s to process %d variables..." % (table,len(tasklist))) + tab_id = cmor.load_table("_".join([table_root_, table]) + ".json") + cmor.set_table(tab_id) + except Exception as e: + log.error("ERR -6: CMOR failed to load table %s, skipping variables %s. Reason: %s" + % (table, ','.join([tsk.target.variable for tsk in tasklist]), e.message)) + continue + dim_ids_['lat']=create_lat() + dim_ids_['lon']=create_lon() + # create or assign time axes to tasks + log.info("Creating time axes for table %s..." % table) + #create_time_axes(tasklist) + time_axes_=create_time_axes(tasklist)#time_axes + + taskmask = dict([t,False] for t in tasklist) + for task in tasklist: + tmpfile = None + ncf=getattr(task,cmor_task.output_path_key) + tgtdims = getattr(task.target, cmor_target.dims_key).split() + if "latitude" in tgtdims and "longitude" in tgtdims: + setattr(task, 'lon', dim_ids_['lon']) + setattr(task, 'lat', dim_ids_['lat']) + if "site" in tgtdims: + log.critical('Z-dimension site not implemented ') + task.set_failed() + continue + if task.status==cmor_task.status_failed: + continue + if(taskmask[task] ): + log.warning("Ignoring source variable in nc file %s, since it has already been cmorized." % ncf) + else: + if task.status not in [cmor_task.status_failed]: + log.info("Cmorizing source variable %s to target variable %s from file %s." % (task.source.variable(),task.target.variable,ncf)) + execute_netcdf_task(task,tab_id) + if task.status<0: + log.error("ERR -13: Cmorizing failed for %s" % (task.target.variable)) + else: + taskmask[task] = True + # remove temp file + if task.target.frequency == 'mon' and os.path.basename(ncf).endswith('.nc.tmp'): + os.unlink(ncf) + else: + log.info("Skipping variable %s for unknown reason..." % (task.source.variable())) + for task,executed in taskmask.items(): + if(not executed): + log.error("ERR -14: The source variable %s of target %s in table %s failed to cmorize" % (task.source.variable(),task.target.variable,task.target.table)) + failed.append([task.target.variable,task.target.table]) + if len(unit_miss_match)>0: + log.info('Unit problems: %s'% unit_miss_match) + if len(failed)>0: + for ifail in failed: + log.info('Cmorization failed for : %s'%ifail) + +# Performs a single task. +def execute_netcdf_task(task,tableid): + """excute task for netcdf data + Args: + task (cmor.task): task which will be handled + tableid (cmor.table): table which will have this task + Returns: + boolean: success of writing a variable + """ + global log,dim_ids_,time_axes_ + interpolate_to_pressure=False + task.status = cmor_task.status_cmorizing + filepath = getattr(task, cmor_task.output_path_key, None) + + if not filepath: + log.error("ERR -15: Could not find file containing data for variable %s in table %s" % (task.target.variable,task.target.table)) + task.set_failed() + return + + store_var = getattr(task, "store_with", None) + if( task.target.dims >= 3): + if ('lon' in dim_ids_ and 'lat' in dim_ids_): + axes = [dim_ids_['lat'],dim_ids_['lon']] + else: + dim_ids_['lat']=create_lat() + dim_ids_['lon']=create_lon() + axes=[dim_ids_['lat'],dim_ids_['lon']] + log.error('ERR -17: No z_axis_id found.') + elif ( task.target.dims == 2): + if not hasattr(task, "z_axis_id"): + ''' + 2D variables lon+lat + + ''' + if not ('lon' in dim_ids_ and 'lat' in dim_ids_): + dim_ids_['lat']=create_lat() + dim_ids_['lon']=create_lon() + axes=[dim_ids_['lat'],dim_ids_['lon']] + else: + axes = [dim_ids_['lat'],dim_ids_['lon']] + else: + log.error('ERR -18: unsupported 2D dimensions %s'%task.target.dims) + exit('Exiting!') + elif task.target.dims==0: + axes=[] + else: + log.error('ERR -19: unsupported dimensions %s for variable'%(task.target.dims,task.target.variable)) + exit() + time_id = getattr(task, "time_axis", 0) + if time_id != 0: + axes.append(time_id) + try: + dataset = netCDF4.Dataset(filepath, 'r') + except Exception as e: + log.error("ERR -20: Could not read netcdf file %s while cmorizing variable %s in table %s. Cause: %s" % ( + filepath, task.target.variable, task.target.table, e.message)) + return + varid = create_cmor_variable(task,dataset,axes) + if varid <0: + return False + + ncvar = dataset.variables[task.source.variable()] + + #handle normal case - global means + if True:# assumption: data is shape [time,lat,lon] (we need to roll longitude dimension so that + # the data corresponds to the dimension definition of tables (from [-180 , 180] to [0,360] deg).) + # so by half the longitude dimension + missval = getattr(task.target, cmor_target.missval_key, 1.e+20) + # hack for co2s, we need the lowest model-level data only (assuming data is in form [time,level,lat,lon] + if task.target.variable == "co2s" and task.source.variable() == "co2": + vals=numpy.copy(ncvar[:,0,:,:]) + # hack to convert units from mol/mol to ppm, cmor_task.conversion_key doesn't work fos some reason + if getattr(task.target,"units")=="1e-06" and getattr(ncvar,"units",None)=="mole mole-1": + vals=vals*1e6 + else: + vals=numpy.copy(ncvar[:]) + dims = numpy.shape(vals) + nroll=dims[-1]//2 + ncvar = numpy.roll(vals,nroll,len(dims)-1) + vals=numpy.copy(ncvar[:,:,:]) + # Default values + factor = 1.0 + term=0.0 + timdim=0 + #check for missing values + if numpy.isnan(ncvar).any(): + nanmask=~numpy.isnan(ncvar) + else: + nanmask=None + cmor_utils.netcdf2cmor(varid, ncvar, timdim, factor, term, store_var, None, + swaplatlon=False, fliplat=True, mask=nanmask,missval=missval) + cmor.close(varid) + + if store_var: + cmor.close(store_var) + task.status = cmor_task.status_cmorized + + +# Creates a variable in the cmor package +def create_cmor_variable(task,dataset,axes): + """ Create cmor variable object + Args: + task (cmor.task): task for which we are creating a variable object + dataset (netcdf-dataset): netcdf dataset containing the data for CO2BOX for this variable + axes (list): list of axes ids for creation of cmor.variable object + Returns: + cmor.variable object: object identifier of created variable + + """ + srcvar = task.source.variable() + ncvar = dataset.variables[srcvar] + unit = getattr(ncvar,"units",None) + if unit != getattr(task.target,"units"): + if unit=='mole mole-1': + # files have mole mole-1 but should be mol mol-1 + unit = getattr(task.target,"units") + elif srcvar=='toz'or srcvar=='tropoz': + # unit is just different + if unit=='DU': + setattr(task,cmor_task.conversion_key,1e-5) + unit = getattr(task.target,"units") + elif srcvar=='co2mass': + # co2mass gets converted to area sum + unit = getattr(task.target,"units") + else: + unit_miss_match.append(task.target.variable) + log.error("ERR -21: unit miss match, variable %s" % (task.target.variable)) + return task.set_failed() + + if((not unit) or hasattr(task,cmor_task.conversion_key)): # Explicit unit conversion + unit = getattr(task.target,"units") + if(hasattr(task.target,"positive") and len(task.target.positive) != 0): + return cmor.variable(table_entry = str(task.target.variable),units = str(unit),axis_ids = axes,original_name = str(srcvar),positive = "down") + else: + return cmor.variable(table_entry = str(task.target.variable),units = str(unit),axis_ids = axes,original_name = str(srcvar)) + +# Creates time axes in cmor and attach the id's as attributes to the tasks +def create_time_axes(tasks): + """ Create time axes for all tasks + Args: + tasks (list): list of tasks for which time axes need to be created + Returns: + time_axes (dictionary): dictionary of time axes, with table+dimension combination as key + + """ + + global log#,time_axes_ + time_axes = {} + for task in tasks: + freq=task.target.frequency + tgtdims = getattr(task.target, cmor_target.dims_key) + if getattr(task, cmor_task.output_path_key)==None: + continue + for time_dim in [d for d in list(set(tgtdims.split())) if d.startswith("time")]: + key=(task.target.table,time_dim) + if key in time_axes: + tid = time_axes[key] + else: + time_operator = getattr(task.target, "time_operator", ["point"]) + log.info("Creating time axis using variable %s..." % task.target.variable) + tid = create_time_axis(path=getattr(task, cmor_task.output_path_key), + name=time_dim, has_bounds=(time_operator != ["point"])) + time_axes[key] = tid + setattr(task, "time_axis", tid) + break + return time_axes + +# Creates a tie axis for the corresponding table (which is suppoed to be loaded) +def create_time_axis(path,name,has_bounds): + """ creage time axis for a give frequency + Args: + path (string): full path to netcdf file with this freq + name (string): tablename + has_bounds (boolean): true if it has bounds + Returns: + cmor.axis-object: time axis object with given freq + """ + global log,ref_date_ + vals = None + units = None + ds = None + # + ncfile=path + refdate = ref_date_ + try: + ds = netCDF4.Dataset(ncfile) + timvar = ds.variables["time"] + co2boxunit = ds.variables["time"].units + vals = timvar[:] + units = getattr(timvar,"units") + if has_bounds: + bnds = getattr(timvar,"bounds") + bndvar = ds.variables[bnds] + except: + ds.close() + co2boxrefdate=datetime.datetime.strptime(co2boxunit,"days since %Y-%m-%d %H:%M:%S") + # delta days for change of reftime + diff_days= (refdate-co2boxrefdate).total_seconds()/86400 + vals=vals-diff_days + if has_bounds: + bndvar2=numpy.zeros_like(bndvar) + bndvar2[:,0]=bndvar[:,0]-int(diff_days) + bndvar2[:,1]=bndvar[:,1]-int(diff_days) + bndvar=bndvar2 + # hourly bounds can have overlap by -1e-14, which is caught by cmor library as an error + # so just correct it always + for i in range(numpy.shape(bndvar2)[0]-1): + bndvar2[i+1,0]=bndvar2[i,1] + if(len(vals) == 0 or units == None): + log.error("ERR -22: No time values or units could be read from co2box output files %s" % str(path)) + return -1 + units="days since " + str(ref_date_) + #### + if has_bounds: + return cmor.axis(table_entry = str(name), units=units, coord_vals = vals,cell_bounds = bndvar[:,:]) + else: + return cmor.axis(table_entry = str(name), units=units, coord_vals = vals) + + +def create_lat(): + """Create latitude dimension + Args: + none + Returns: + lat_id (cmor.axis): cmor.axis-object + """ + lat_id=cmor.axis(table_entry="latitude", units="degrees_north", + coord_vals=[0.], cell_bounds=[0.,0.]) + return lat_id + +def create_lon(): + """Create longitude dimension + Args: + none + Returns: + lon_id (cmor_axis): cmor.axis-object + """ + lon_id=cmor.axis(table_entry="longitude", units="degrees_east", + coord_vals=[0.], cell_bounds=[0.,0.]) + return lon_id + + diff --git a/ece2cmor/ece2cmor3/components.py b/ece2cmor/ece2cmor3/components.py new file mode 100644 index 0000000000000000000000000000000000000000..1d88e341b7c154721ebaf24f7aba3bc29dc14ee1 --- /dev/null +++ b/ece2cmor/ece2cmor3/components.py @@ -0,0 +1,35 @@ +import os +import logging + +# Logger instance +log = logging.getLogger(__name__) + +table_file = "table_file" +realms = "realms" + +# List of components, used to determine the script arguments and used by task loader. +# Add your NEWCOMPONENT to this dictionary if you want to extend ece2cmor3 to more models. +models = {"ifs": {realms: ["atmos", "atmosChem", "land", "landIce", "ocean", "seaIce"], + table_file: os.path.join(os.path.dirname(__file__), "resources", "ifspar.json")}, + "nemo": {realms: ["ocean", "ocnBgchem", "seaIce"], + table_file: os.path.join(os.path.dirname(__file__), "resources", "nemopar.json")}, + "lpjg": {realms: ["land", "atmos"], + table_file: os.path.join(os.path.dirname(__file__), "resources", "lpjgpar.json")}, + "tm5": {realms: ["aerosol", "atmosChem", "atmos"], + table_file: os.path.join(os.path.dirname(__file__), "resources", "tm5par.json")}, + "co2box": {realms: ["atmosChem"], + table_file: os.path.join(os.path.dirname(__file__), "resources", "co2boxpar.json")} + } + +ece_configs = {'EC-EARTH-AOGCM' : ["ifs", "nemo" ], + 'EC-EARTH-HR' : ["ifs", "nemo" ], + 'EC-EARTH-LR' : ["ifs", "nemo" ], + 'EC-EARTH-CC' : ["ifs", "nemo", "tm5", "lpjg", "co2box"], + 'EC-EARTH-GrisIS' : ["ifs", "nemo" ], # If a PISM component is added to ece2cmor3 it needs here to be added as well. + 'EC-EARTH-AerChem' : ["ifs", "nemo", "tm5" ], + 'EC-EARTH-Veg' : ["ifs", "nemo", "lpjg" ], + 'EC-EARTH-Veg-LR' : ["ifs", "nemo", "lpjg" ]} + +def load_parameter_table(component, filename): + if component in models: + models[component][table_file] = filename diff --git a/ece2cmor/ece2cmor3/ece2cmor.py b/ece2cmor/ece2cmor3/ece2cmor.py new file mode 100755 index 0000000000000000000000000000000000000000..e6c64f21b259b4fcc68e8012ae08ef575cd0375e --- /dev/null +++ b/ece2cmor/ece2cmor3/ece2cmor.py @@ -0,0 +1,159 @@ +#!/usr/bin/env python +import time + +import argparse +import datetime +import dateutil +import logging +import os +import sys + +from ece2cmor3 import ece2cmorlib, taskloader, components, __version__, cmor_target, cmor_utils + +# Logger object +log = logging.getLogger(__name__) + + +def main(args=None): + if args is None: + pass + + formatter = lambda prog: argparse.ArgumentDefaultsHelpFormatter(prog, max_help_position=30) + + parser = argparse.ArgumentParser(description="Post-processing and cmorization of EC-Earth output", + formatter_class=formatter) + required = parser.add_argument_group("required arguments") + + parser.add_argument("datadir", metavar="DIR", type=str, help="EC-Earth data directory, i.e. for a given component, " + "for a given leg") + parser.add_argument("--exp", metavar="EXPID", type=str, default="ECE3", help="Experiment prefix") + varsarg = required.add_mutually_exclusive_group(required=True) + varsarg.add_argument("--varlist", metavar="FILE", type=str, + help="File (json) containing cmor variables grouped per table, grouped per EC-Earth component") + varsarg.add_argument("--drq", metavar="FILE", type=str, + help="File (json|f90 namelist|xlsx) containing cmor variables, grouped per table") + required.add_argument("--meta", metavar="FILE.json", type=str, required=True, help="Input metadata file") + parser.add_argument("--odir", metavar="DIR", type=str, default=None, help="Output directory, by default the " + "metadata \'outpath\' entry") + cmor_utils.ScriptUtils.add_model_exclusive_options(parser, "ece2cmor") + parser.add_argument("--ececonf", metavar='|'.join(list(components.ece_configs.keys())), type=str, + help="EC-Earth configuration (only used with --drq option)") + parser.add_argument("--refd", metavar="YYYY-mm-dd", type=str, default="1850-01-01", + help="Reference date for output time axes") + parser.add_argument("--npp", metavar="N", type=int, default=8, help="Number of parallel tasks (only relevant for " + "IFS cmorization") + parser.add_argument("--log", action="store_true", default=False, help="Write to log file") + parser.add_argument("--flatdir", action="store_true", default=False, help="Do not create sub-directories in " + "output folder") + parser.add_argument("--tabledir", metavar="DIR", type=str, default=ece2cmorlib.table_dir_default, + help="Cmorization table directory") + parser.add_argument("--tableprefix", metavar="PREFIX", type=str, default=ece2cmorlib.prefix_default, + help="Cmorization table prefix string") + parser.add_argument("--tmpdir", metavar="DIR", type=str, default="/tmp/ece2cmor", + help="Temporary working directory") + parser.add_argument("--overwritemode", metavar="MODE", type=str, default="preserve", + help="MODE:preserve|replace|append, CMOR netcdf overwrite mode", + choices=["preserve", "replace", "append"]) + parser.add_argument("--skip_alevel_vars", action="store_true", default=False, help="Prevent loading atmospheric " + "model-level variables") + parser.add_argument("-V", "--version", action="version", + version="%(prog)s {version}".format(version=__version__.version)) + # Deprecated arguments, only for backward compatibility + parser.add_argument("--ncdo", metavar="N", type=int, default=4, help=argparse.SUPPRESS) + parser.add_argument("--nomask", action="store_true", default=False, help=argparse.SUPPRESS) + parser.add_argument("--nofilter", action="store_true", default=False, help=argparse.SUPPRESS) + parser.add_argument("--atm", action="store_true", default=False, help="Deprecated! Use --ifs instead") + parser.add_argument("--oce", action="store_true", default=False, help="Deprecated! Use --nemo instead") + parser.add_argument("--conf", action="store_true", help="Deprecated! Use --meta instead") + parser.add_argument("--vars", action="store_true", help="Deprecated! Use --varlist instead") + cmor_utils.ScriptUtils.add_model_tabfile_options(parser) + + args = parser.parse_args() + + cmor_utils.ScriptUtils.set_custom_tabfiles(args) + + logfile = None + #logformat = "%(asctime)s %(levelname)s:%(name)s: %(message)s" + logformat = "%(levelname)s:%(name)s: %(message)s" + logdateformat = "%Y-%m-%d %H:%M:%S" + if getattr(args, "log", False): + dirs = os.path.abspath(args.datadir).split(os.sep) + fname = '-'.join([args.exp] + dirs[-2:] + [time.strftime("%Y%m%d%H%M%S", time.gmtime())]) + logfile = '.'.join([fname, "log"]) + logging.basicConfig(filename=logfile, level=logging.DEBUG, format=logformat, datefmt=logdateformat) + else: + logging.basicConfig(level=logging.DEBUG, format=logformat, datefmt=logdateformat) + + if not os.path.isdir(args.datadir): + log.fatal("Your data directory argument %s cannot be found." % args.datadir) + sys.exit(' Exiting ece2cmor.') + + if args.varlist is not None and not os.path.isfile(args.varlist): + log.fatal("Your variable list json file %s cannot be found." % args.varlist) + sys.exit(' Exiting ece2cmor.') + + if args.drq is not None and not os.path.isfile(args.drq): + log.fatal("Your data request file %s cannot be found." % args.drq) + sys.exit(' Exiting ece2cmor.') + + if not os.path.isfile(args.meta): + log.fatal("Your metadata file %s cannot be found." % args.meta) + sys.exit(' Exiting ece2cmor.') + + modedict = {"preserve": ece2cmorlib.PRESERVE, "append": ece2cmorlib.APPEND, "replace": ece2cmorlib.REPLACE} + + # Initialize ece2cmor: + ece2cmorlib.initialize(args.meta, mode=modedict[args.overwritemode], tabledir=args.tabledir, + tableprefix=args.tableprefix, outputdir=args.odir, logfile=logfile, + create_subdirs=(not args.flatdir)) + ece2cmorlib.enable_masks = not args.nomask + ece2cmorlib.auto_filter = not args.nofilter + + active_components = cmor_utils.ScriptUtils.get_active_components(args, args.ececonf) + + filters = None + if args.skip_alevel_vars: + def ifs_model_level_variable(target): + zaxis, levs = cmor_target.get_z_axis(target) + return zaxis not in ["alevel", "alevhalf"] + filters = {"model level": ifs_model_level_variable} + try: + if getattr(args, "varlist", None) is not None: + taskloader.load_tasks(args.varlist, active_components=active_components, target_filters=filters, + check_duplicates=True) + else: + taskloader.load_tasks_from_drq(args.drq, active_components=["ifs"], target_filters=filters, + check_prefs=True) + except taskloader.SwapDrqAndVarListException as e: + log.error(e.message) + opt1, opt2 = "vars" if e.reverse else "drq", "drq" if e.reverse else "vars" + log.error("It seems you are using the --%s option where you should use the --%s option for this file" + % (opt1, opt2)) + sys.exit(' Exiting ece2cmor.') + + refdate = datetime.datetime.combine(dateutil.parser.parse(args.refd), datetime.datetime.min.time()) + + if "ifs" in active_components: + ece2cmorlib.perform_ifs_tasks(args.datadir, args.exp, + refdate=refdate, + tempdir=args.tmpdir, + taskthreads=args.npp, + cdothreads=args.ncdo) + if "nemo" in active_components: + ece2cmorlib.perform_nemo_tasks(args.datadir, args.exp, refdate) + + if "lpjg" in active_components: + ece2cmorlib.perform_lpjg_tasks(args.datadir, args.tmpdir, args.exp, refdate) + if "tm5" in active_components: + ece2cmorlib.perform_tm5_tasks(args.datadir, args.tmpdir, args.exp, refdate) + if "co2box" in active_components: + ece2cmorlib.perform_co2box_tasks(args.datadir, args.tmpdir, args.exp, refdate) + +# if procNEWCOMPONENT in active_components: +# ece2cmorlib.perform_NEWCOMPONENT_tasks(args.datadir, args.exp, refdate) + + ece2cmorlib.finalize() + + +if __name__ == "__main__": + main() diff --git a/ece2cmor/ece2cmor3/ece2cmorlib.py b/ece2cmor/ece2cmor3/ece2cmorlib.py new file mode 100644 index 0000000000000000000000000000000000000000..ae81a9bf1b286d6a1e1b7c5d9859dd18b2252d85 --- /dev/null +++ b/ece2cmor/ece2cmor3/ece2cmorlib.py @@ -0,0 +1,291 @@ +import datetime + +import cmor +import json +import logging +import os +#import subprocess +import tempfile +import cdo # Only for version printing +import dreqPy # Only for version printing + +from ece2cmor3 import __version__, cmor_target, cmor_task, nemo2cmor, ifs2cmor, lpjg2cmor, tm52cmor, co2box2cmor, postproc, \ + cmor_utils, cmor_source + +# Logger instance +log = logging.getLogger(__name__) + +# Module configuration defaults +conf_path_default = os.path.join(os.path.dirname(__file__), "resources", "metadata-templates", + "cmip6-CMIP-piControl-metadata-template.json") +cmor_mode_default = cmor.CMOR_PRESERVE +prefix_default = "CMIP6" +table_dir_default = os.path.join(os.path.dirname(__file__), "resources", "tables") + +# ece2cmor master API. +metadata = {} +cmor_mode = cmor_mode_default +prefix = prefix_default +table_dir = table_dir_default +tasks = [] +targets = [] +masks = {} +scripts = {} +enable_masks = True +auto_filter = True + +# CMOR modes +APPEND = cmor.CMOR_APPEND +APPEND_NC3 = cmor.CMOR_APPEND_3 +REPLACE = cmor.CMOR_REPLACE +REPLACE_NC3 = cmor.CMOR_REPLACE_3 +PRESERVE = cmor.CMOR_PRESERVE +PRESERVE_NC3 = cmor.CMOR_PRESERVE_3 + + +# Initialization function without using the cmor library, must be called before starting +def initialize_without_cmor(metadata_path=conf_path_default, mode=cmor_mode_default, tabledir=table_dir_default, + tableprefix=prefix_default): + global prefix, table_dir, targets, metadata, cmor_mode + with open(metadata_path, 'r') as f: + metadata = json.load(f) + log.info('Python {:} {:}'.format(os.sys.version[0:68], os.sys.version[69:80])) + #log.info('Python version info: {:}'.format(os.sys.version_info)) + log.info('cdo {:}'.format(cdo.Cdo().version())) + log.info('CDO_PY_VERSION: {:}'.format(cdo.__version__)) + log.info('CMOR library: CMOR{:}.{:}.{:}'.format(cmor.CMOR_VERSION_MAJOR, cmor.CMOR_VERSION_MINOR, cmor.CMOR_VERSION_PATCH)) + log.info('dreqPy {:} is loaded'.format(dreqPy.version)) + #log.info('{:}'.format(subprocess.getoutput('python --version' ))) # Alternative version logging + #log.info('{:}'.format(subprocess.getoutput('cdo --version | head -1 | sed "s/.https.*$//"'))) # Alternative version logging without loading the package in this module + #log.info('{:}'.format(subprocess.getoutput('drq -v | grep dreqPy.version' ))) # Alternative version logging without loading the package in this module + cmor_mode = mode + table_dir = tabledir + prefix = tableprefix + validate_setup_settings() + targets = cmor_target.create_targets(table_dir, prefix) + + +# Initialization function, must be called before starting +def initialize(metadata_path=conf_path_default, mode=cmor_mode_default, tabledir=table_dir_default, + tableprefix=prefix_default, outputdir=None, logfile=None, create_subdirs=True): + global prefix, table_dir, targets, metadata, cmor_mode + with open(metadata_path, 'r') as f: + metadata = json.load(f) + log.info('Python {:} {:}'.format(os.sys.version[0:68], os.sys.version[69:80])) + #log.info('Python version info: {:}'.format(os.sys.version_info)) + log.info('cdo {:}'.format(cdo.Cdo().version())) + log.info('CDO_PY_VERSION: {:}'.format(cdo.__version__)) + log.info('CMOR library: CMOR{:}.{:}.{:}'.format(cmor.CMOR_VERSION_MAJOR, cmor.CMOR_VERSION_MINOR, cmor.CMOR_VERSION_PATCH)) + log.info('dreqPy {:} is loaded'.format(dreqPy.version)) + #log.info('{:}'.format(subprocess.getoutput('python --version' ))) # Alternative version logging + #log.info('{:}'.format(subprocess.getoutput('cdo --version | head -1 | sed "s/.https.*$//"'))) # Alternative version logging without loading the package in this module + #log.info('{:}'.format(subprocess.getoutput('drq -v | grep dreqPy.version' ))) # Alternative version logging without loading the package in this module + cmor_mode = mode + table_dir = tabledir + prefix = tableprefix + validate_setup_settings() + logname = logfile + if logfile is not None: + logname = '.'.join(logfile.split('.')[:-1] + ["cmor", "log"]) + cmor.setup(table_dir, cmor_mode, logfile=logname, create_subdirectories=(1 if create_subdirs else 0)) + if outputdir is not None: + metadata["outpath"] = outputdir + if "outpath" not in metadata: + metadata["outpath"] = os.path.join(os.getcwd(), "cmor") + hist = metadata.get("history", "") + newline = "processed by ece2cmor {version}, git rev. " \ + "{sha}\n".format(version=__version__.version, sha=cmor_utils.get_git_hash()) + metadata["history"] = newline + hist if len(hist) != 0 else newline + metadata["latest_ece2cmor_version"] = __version__.version + metadata["ece2cmor_git_revision"] = cmor_utils.get_git_hash() + metadata["latest_applied_cmor_fixer_version"] = 'None' + for key, val in list(metadata.items()): + log.info("Metadata attribute %s: %s", key, val) + with tempfile.NamedTemporaryFile("w", suffix=".json", delete=False) as tmp_file: + json.dump(metadata, tmp_file) + cmor.dataset_json(tmp_file.name) + cmor.set_cur_dataset_attribute("calendar", "proleptic_gregorian") + targets = cmor_target.create_targets(table_dir, prefix) + tmp_file.close() + os.remove(tmp_file.name) + + +# Validation of setup configuration +def validate_setup_settings(): + global prefix, table_dir, cmor_mode + if not table_dir or not isinstance(table_dir, str): + log.error("Invalid cmorization table string given...aborting") + raise Exception("Cmorization table directory is empty or not a string") + if not os.path.exists(table_dir): + log.error("Cmorization table directory %s does not exist" % table_dir) + raise Exception("Cmorization table directory does not exist") + if not prefix or not isinstance(prefix, str): + log.error("Cmorization table prefix is empty or not a string") + raise Exception("Cmorization table prefix is empty or not a string") + if cmor_mode not in [APPEND, APPEND_NC3, REPLACE, REPLACE_NC3, PRESERVE, PRESERVE_NC3]: + log.error("Invalid CMOR netcdf file action %s given" % str(cmor_mode)) + raise Exception("Invalid CMOR netcdf file action") + return 0 + + +# Closes cmor +def finalize_without_cmor(): + global tasks, targets, masks + targets = [] + tasks = [] + masks = {} + + +# Closes cmor +def finalize(): + global tasks, targets, masks + cmor.close() + targets = [] + tasks = [] + masks = {} + + +# Returns one or more cmor targets for task creation. +def get_cmor_target(var_id, tab_id=None): + global log, targets + if tab_id is None: + return [t for t in targets if t.variable == var_id] + else: + results = [t for t in targets if t.variable == var_id and t.table == tab_id] + if len(results) == 1: + return results[0] + elif len(results) == 0: + return None + else: + log.error("Table validation error: multiple variables with name %s found in table %s" % (var_id, tab_id)) + + +# Adds a task to the task list. +def add_task(tsk): + global log, tasks, targets + if isinstance(tsk, cmor_task.cmor_task): + if tsk.target not in targets: + log.error("Cannot append tasks with unknown target %s" % str(tsk.target)) + return False + duptasks = [t for t in tasks if t.target is tsk.target] + if len(duptasks) != 0: + log.warning("Replacing task producing %s" % str(tsk.target)) + tasks.remove(duptasks[0]) + tasks.append(tsk) + else: + log.error("Can only append cmor_task to the list, attempt to append %s" % str(tsk)) + return False + return True + + +# Adds a mask +def add_mask(name, src, func, val): + global masks + masks[name] = {"source": src, "operator": func, "rhs": val} + + +# Adds a custom processing script +def add_script(component, name, attributes): + global scripts + scripts[name] = {k: v for k, v in list(attributes.items()) if k != "name"} + scripts[name]["component"] = component + + +# Performs an IFS cmorization processing: +def perform_ifs_tasks(datadir, expname, + refdate=None, + postprocmode=postproc.recreate, + tempdir="/tmp/ece2cmor", + taskthreads=4, + cdothreads=4): + global log, tasks, table_dir, prefix, masks + validate_setup_settings() + validate_run_settings(datadir, expname) + ifs_tasks = [t for t in tasks if t.source.model_component() == "ifs"] + log.info("Selected %d IFS tasks from %d input tasks" % (len(ifs_tasks), len(tasks))) + if len(ifs_tasks) == 0: + return + tableroot = os.path.join(table_dir, prefix) + if enable_masks: + ifs2cmor.masks = {k: masks[k] for k in masks if masks[k]["source"].model_component() == "ifs"} + else: + ifs2cmor.masks = {} + ifs2cmor.scripts = {k: v for k, v in list(scripts.items()) if v["component"] == "ifs"} + if (not ifs2cmor.initialize(datadir, expname, tableroot, refdate if refdate else datetime.datetime(1850, 1, 1), + tempdir=tempdir, autofilter=auto_filter)): + return + postproc.postproc_mode = postprocmode + postproc.cdo_threads = cdothreads + ifs2cmor.execute(ifs_tasks, nthreads=taskthreads) + + +# Performs a NEMO cmorization processing: +def perform_nemo_tasks(datadir, expname, refdate): + global log, tasks, table_dir, prefix + validate_setup_settings() + validate_run_settings(datadir, expname) + nemo_tasks = [t for t in tasks if t.source.model_component() == "nemo"] + log.info("Selected %d NEMO tasks from %d input tasks" % (len(nemo_tasks), len(tasks))) + tableroot = os.path.join(table_dir, prefix) + if not nemo2cmor.initialize(datadir, expname, tableroot, refdate): + return + nemo2cmor.execute(nemo_tasks) + + +# Performs a LPJG cmorization processing: +def perform_lpjg_tasks(datadir, ncdir, expname, refdate): + global log, tasks, table_dir, prefix + validate_setup_settings() + validate_run_settings(datadir, expname) + lpjg_tasks = [t for t in tasks if t.source.model_component() == "lpjg"] + log.info("Selected %d LPJG tasks from %d input tasks" % (len(lpjg_tasks), len(tasks))) + if not lpjg2cmor.initialize(datadir, ncdir, expname, table_dir, prefix, refdate): + return + lpjg2cmor.execute(lpjg_tasks) + + +# Performs a TM5 cmorization processing: +def perform_tm5_tasks(datadir, ncdir, expname, refdate=None): + global log, tasks, table_dir, prefix + validate_setup_settings() + validate_run_settings(datadir, expname) + tm5_tasks = [t for t in tasks if t.source.model_component() == "tm5"] + log.info("Selected %d TM5 tasks from %d input tasks" % (len(tm5_tasks), len(tasks))) + if (not tm52cmor.initialize(datadir, expname, table_dir, prefix, refdate)): + return + tm52cmor.execute(tm5_tasks) + +# Performs a co2box cmorization processing: +def perform_co2box_tasks(datadir, ncdir, expname, refdate=None): + global log, tasks, table_dir, prefix + validate_setup_settings() + validate_run_settings(datadir, expname) + co2box_tasks = [t for t in tasks if t.source.model_component() == "co2box"] + log.info("Selected %d co2box tasks from %d input tasks" % (len(co2box_tasks), len(tasks))) + if (not co2box2cmor.initialize(datadir, expname, table_dir, prefix, refdate)): + return + co2box2cmor.execute(co2box_tasks) + +# def perform_NEWCOMPONENT_tasks(datadir, expname, startdate, interval): +# global log, tasks, table_dir, prefix +# validate_setup_settings() +# validate_run_settings(datadir, expname) +# NEWCOMPONENT_tasks = [t for t in tasks if isinstance(t.source, cmor_source.NEWCOMPONENT_source)] +# log.info("Selected %d NEWCOMPONENT tasks from %d input tasks" % (len(NEWCOMPONENT_tasks), len(tasks))) +# tableroot = os.path.join(table_dir, prefix) +# if not NEWCOMPONENT2cmor.initialize(datadir, expname, tableroot, startdate, interval): +# return +# NEWCOMPONENT2cmor.execute(NEWCOMPONENT_tasks) + + +# Validation of cmor session configuration +def validate_run_settings(datadir, expname): + if not datadir or not isinstance(datadir, str): + log.error("Invalid output data directory string given...aborting") + raise Exception("Output data directory is empty or not a string") + if not os.path.exists(datadir): + log.error("Output data directory %s does not exist" % table_dir) + raise Exception("Output data directory does not exist") + if not expname: + log.error("Invalid empty experiment name given...aborting") + raise Exception("Experiment name is empty string or None") diff --git a/ece2cmor/ece2cmor3/grib_file.py b/ece2cmor/ece2cmor3/grib_file.py new file mode 100644 index 0000000000000000000000000000000000000000..df0be15f33d64442fe9d70ff035c6bb0d6347f29 --- /dev/null +++ b/ece2cmor/ece2cmor3/grib_file.py @@ -0,0 +1,128 @@ +import os +import csv +import subprocess + +import gribapi + +# Vertical axes codes +surface_level_code = 1 +hybrid_level_code = 109 +pressure_level_hPa_code = 100 +pressure_level_Pa_code = 210 +height_level_code = 105 +depth_level_code = 111 +pv_level_code = 117 + +# Key names +date_key = "dataDate" +time_key = "dataTime" +param_key = "indicatorOfParameter" +levtype_key = "indicatorOfTypeOfLevel" +table_key = "table2Version" +level_key = "level" + +test_mode = False + + +# Module initializer function +def initialize(): + if not test_mode: + orig_path = str(subprocess.check_output(["codes_info", "-d"]).decode('UTF-8')) + ece_path = os.path.join(os.path.dirname(__file__), "resources", "grib-table") + prepended_path = ":".join([ece_path, orig_path]) + os.environ["ECCODES_DEFINITION_PATH"] = prepended_path + os.environ["GRIB_API_PYTHON_NO_TYPE_CHECKS"] = "1" + + +# Factory method +def create_grib_file(file_object_): + if test_mode: + return csv_grib_mock(file_object_) + else: + return ecmwf_grib_api(file_object_) + + +# Interface for grib file object +class grib_file(object): + + def __init__(self, file_object_): + self.file_object = file_object_ + + def read_next(self, headers_only=False): + pass + + def write(self, file_object_): + pass + + def set_field(self, name, value): + pass + + def get_field(self, name): + pass + + def release(self): + pass + + def eof(self): + pass + + +# ECMWF grib api implementation of grib file interface +class ecmwf_grib_api(grib_file): + + def __init__(self, file_object_): + super(ecmwf_grib_api, self).__init__(file_object_) + self.record = 0 + + def read_next(self, headers_only=False): + self.record = gribapi.grib_new_from_file(self.file_object, headers_only=headers_only) + return self.record is not None + + def write(self, file_object_): + gribapi.grib_write(self.record, file_object_) + + def set_field(self, name, value): + gribapi.grib_set(self.record, name, value) + + def get_field(self, name): + return gribapi.grib_get_long(self.record, name) + + def release(self): + gribapi.grib_release(self.record) + + def eof(self): + return self.record is None + + +# CSV header-only implementation of grib file interface for testing purposes +class csv_grib_mock(grib_file): + columns = [date_key, time_key, param_key, levtype_key, level_key] + + def __init__(self, file_object_): + super(csv_grib_mock, self).__init__(file_object_) + self.row = [] + self.reader = csv.reader(file_object_, delimiter=',') + + def read_next(self, headers_only=False): + self.row = next(self.reader, []) + return any(self.row) + + def write(self, file_object_): + writer = csv.writer(file_object_) + writer.writerow(self.row) + + def set_field(self, name, value): + if name == table_key: + pass + self.row[csv_grib_mock.columns.index(name)] = value + + def get_field(self, name): + if name == table_key: + return 128 + return int(self.row[csv_grib_mock.columns.index(name)]) + + def release(self): + self.row = [] + + def eof(self): + return self.row is None diff --git a/ece2cmor/ece2cmor3/grib_filter.py b/ece2cmor/ece2cmor3/grib_filter.py new file mode 100644 index 0000000000000000000000000000000000000000..4cc135a040388b0233f5ba9f701addf79800592f --- /dev/null +++ b/ece2cmor/ece2cmor3/grib_filter.py @@ -0,0 +1,669 @@ +import datetime +import json +import logging +import os +import re +import resource +import threading + +import numpy + +from ece2cmor3 import cmor_target, cmor_source, cmor_task, cmor_utils, grib_file, cdoapi + +# Log object. +log = logging.getLogger(__name__) + +gridpoint_files = {} +spectral_files = {} +ini_gridpoint_file = None +ini_spectral_file = None +preceding_files = {} +temp_dir = None +accum_key = "ACCUMFLD" +accum_codes = [] +varsfreq = {} +spvar = None +fxvars = [] +record_keys = {} +starttimes = {} + + +# Initializes the module, looks up previous month files and inspects the first +# day in the input files to set up an administration of the fields. +def initialize(gpfiles, shfiles, ini_gpfile, ini_shfile, prev_files, tmpdir): + global gridpoint_files, spectral_files, ini_gridpoint_file, ini_spectral_file, preceding_files, temp_dir, \ + varsfreq, accum_codes, record_keys + grib_file.initialize() + gridpoint_files = gpfiles + spectral_files = shfiles + ini_gridpoint_file = ini_gpfile + ini_spectral_file = ini_shfile + preceding_files = prev_files + temp_dir = tmpdir + + accum_codes = load_accum_codes( + os.path.join(os.path.dirname(os.path.abspath(__file__)), "resources", "grib_codes.json")) + gpdate = sorted(gridpoint_files.keys())[0] if any(gridpoint_files) else None + shdate = sorted(spectral_files.keys())[0] if any(spectral_files) else None + gpfile = gridpoint_files[gpdate] if any(gridpoint_files) else None + shfile = spectral_files[shdate] if any(spectral_files) else None + if gpfile is not None: + with open(gpfile) as gpf: + freqs, records = inspect_day(grib_file.create_grib_file(gpf), grid=cmor_source.ifs_grid.point) + varsfreq.update(freqs) + record_keys[cmor_source.ifs_grid.point] = records + update_sp_key(gpfile) + if shfile is not None: + with open(shfile) as shf: + freqs, records = inspect_day(grib_file.create_grib_file(shf), grid=cmor_source.ifs_grid.spec) + varsfreq.update(freqs) + record_keys[cmor_source.ifs_grid.spec] = records + update_sp_key(shfile) + if ini_gpfile is not None: + with open(ini_gpfile) as gpf: + fxvars.extend(inspect_hr(grib_file.create_grib_file(gpf), grid=cmor_source.ifs_grid.point)) + if ini_shfile is not None: + with open(ini_shfile) as shf: + fxvars.extend(inspect_hr(grib_file.create_grib_file(shf), grid=cmor_source.ifs_grid.spec)) + + +# Fix for finding the surface pressure, necessary to store 3d model level fields +def update_sp_key(fname): + global spvar + for key in varsfreq: + freq = varsfreq[key] + if key[0] == 154: + if spvar is None or spvar[1] >= freq: + spvar = (154, freq, fname) + if key[0] == 134: + if spvar is None or spvar[1] > freq: + spvar = (134, freq, fname) + + +# Function reading the file with grib-codes of accumulated fields +def load_accum_codes(path): + global accum_key + data = json.loads(open(path).read()) + if accum_key in data: + return list(map(grib_tuple_from_string, data[accum_key])) + else: + return [] + + +# Utility to make grib tuple of codes from string +def grib_tuple_from_string(s): + codes = s.split('.') + return int(codes[0]), 128 if len(codes) < 2 else int(codes[1]) + + +# Utility to make grib tuple of codes from string +def grib_tuple_from_ints(i, j): + if i < 10 ** 3: + return i, j + return i % 10 ** 3, i // 10 ** 3 + + +# Inspects a single time point in the initial file +def inspect_hr(gribfile, grid): + result = [] + while gribfile.read_next(headers_only=True): + result.append(get_record_key(gribfile, grid) + (grid,)) + return result + + +# Inspects the first 24 hours in the input gridpoint and spectral files. +def inspect_day(gribfile, grid): + inidate, initime = -99, -1 + records = {} + keylist = [] + while gribfile.read_next(headers_only=True): + date = gribfile.get_field(grib_file.date_key) + time = gribfile.get_field(grib_file.time_key) // 100 + if date == inidate + 1 and time == initime: + gribfile.release() + break + if inidate < 0: + inidate = date + if initime < 0: + initime = time + short_key = get_record_key(gribfile, grid) + if short_key[1] == 0: + log.error("Invalid key at first day inspection: %s" % str(short_key)) + keylist.append((time,) + short_key) + key = short_key + (grid,) + if key in records: + if time not in records[key]: + records[key].append(time) + else: + records[key] = [time] + gribfile.release() + result = {} + for key, val in records.items(): + hrs = numpy.array(val) + if len(hrs) == 1: + log.warning("Variable %d.%d on level %d of type %d has been detected once in first day " + "of file %s... Assuming daily frequency" % (key[0], key[1], key[3], key[2], + gribfile.file_object.name)) + frqs = numpy.array([24]) + else: + frqs = numpy.mod(hrs[1:] - hrs[:-1], numpy.repeat(24, len(hrs) - 1)) + frq = frqs[0] + if any(frqs != frq): + log.error("Variable %d.%d on level %d of type %d is not output on regular " + "intervals in first day in file %s" % (key[0], key[1], key[3], key[2], gribfile.file_object.name)) + else: + result[key] = frq + return result, keylist + + +# TODO: Merge the 2 functions below into one matching function: + +# Creates a key (code + table + level type + level) for a grib message iterator +def get_record_key(gribfile, gridtype): + codevar, codetab = grib_tuple_from_ints(gribfile.get_field(grib_file.param_key), + gribfile.get_field(grib_file.table_key)) + levtype, level = gribfile.get_field(grib_file.levtype_key), gribfile.get_field(grib_file.level_key) + if levtype == grib_file.pressure_level_hPa_code: + level *= 100 + levtype = grib_file.pressure_level_Pa_code + if levtype == 112 or levtype == grib_file.depth_level_code or \ + (codetab == 128 and codevar in [35, 36, 37, 38, 39, 40, 41, 42, 139, 170, 183, 236]): + level = 0 + levtype = grib_file.depth_level_code + if codetab == 128 and codevar in [49, 165, 166]: + level = 10 + levtype = grib_file.height_level_code + if codevar in [167, 168, 201, 202]: + level = 2 + levtype = grib_file.height_level_code + if codevar == 9: + level = 0 + levtype = grib_file.surface_level_code + if levtype == grib_file.pv_level_code: # Mapping pv-levels to surface: we don't support more than one pv-level + level = 0 + levtype = grib_file.surface_level_code + cosp_levels = {40: 84000, 41: 56000, 42: 22000} + if codetab == 126 and codevar in list(cosp_levels.keys()): + level = cosp_levels[codevar] + levtype = grib_file.pressure_level_Pa_code + # Fix for spectral height level fields in gridpoint file: + if cmor_source.grib_code(codevar) in cmor_source.ifs_source.grib_codes_sh and \ + gridtype != cmor_source.ifs_grid.spec and levtype == grib_file.hybrid_level_code: + levtype = grib_file.height_level_code + return codevar, codetab, levtype, level + + +# Used to distribute keys created above over cmor tasks +def soft_match_key(varid, tabid, levtype, level, gridtype, keys): + if (varid, tabid, levtype, level, gridtype) in keys: + return varid, tabid, levtype, level, gridtype + # Fix for orog and ps: find them in either GG or SH file + if varid in [134, 129] and tabid == 128 and levtype == grib_file.surface_level_code and level == 0: + matches = [k for k in keys if k[0] == varid and k[1] == tabid and k[2] == grib_file.surface_level_code] + if any(matches): + return matches[0] + matches = [k for k in keys if k[0] == varid and k[1] == tabid and k[2] == grib_file.hybrid_level_code and + k[3] == 1] + if any(matches): + return matches[0] + # Fix for depth levels variables + if levtype == grib_file.depth_level_code: + matches = [k for k in keys if k[0] == varid and k[1] == tabid and k[2] in + (grib_file.depth_level_code, grib_file.surface_level_code)] + if any(matches): + return matches[0] + if levtype == grib_file.hybrid_level_code and level == -1: + matches = [k for k in keys if k[0] == varid and k[1] == tabid and k[2] == grib_file.hybrid_level_code and + k[4] == gridtype] + if any(matches): + return matches[0] + # Fix for spectral fields at height levels being written as model level fields in GG file + if levtype == grib_file.height_level_code and gridtype == cmor_source.ifs_grid.spec: + matches = [k for k in keys if k[:4] == (varid, tabid, grib_file.height_level_code, level)] + if any(matches): + return matches[0] + return None + + +# Converts cmor-levels to grib levels code +def get_levels(task, code): + global log + # Special cases + if code.tab_id == 128: + gc = code.var_id + if gc in [9, 134]: + return grib_file.surface_level_code, [0] + if gc in [35, 36, 37, 38, 39, 40, 41, 42, 139, 170, 183, 236]: + return grib_file.depth_level_code, [0] + if gc in [49, 165, 166]: + return grib_file.height_level_code, [10] + if gc in [167, 168, 201, 202]: + return grib_file.height_level_code, [2] + if code.tab_id == 228: + gc = code.var_id + if gc in [246, 247]: + return grib_file.surface_level_code, [0] + # Normal cases + zaxis, levels = cmor_target.get_z_axis(task.target) + if zaxis is None: + return grib_file.surface_level_code, [0] + if zaxis in ["sdepth"]: + return grib_file.depth_level_code, [0] + if zaxis in ["alevel", "alevhalf"]: + return grib_file.hybrid_level_code, [-1] + if zaxis == "air_pressure": + return grib_file.pressure_level_Pa_code, [int(float(level)) for level in levels] + if zaxis in ["height", "altitude"]: + return grib_file.height_level_code, [int(float(level)) for level in levels] # TODO: What about decimal places? + log.error("Could not convert vertical axis type %s to grib vertical coordinate " + "code for %s" % (zaxis, task.target.variable)) + return -1, [] + + +# Splits the grib file for the given set of tasks +def mkfname(key): + return '.'.join([str(key[0]), str(key[1]), str(key[2])]) + + +# Construct files for keys and tasks +def cluster_files(valid_tasks, varstasks): + task2files, task2freqs = {}, {} + varsfx = set() + for task in valid_tasks: + task2files[task] = set() + task2freqs[task] = set() + for key, tsklist in varstasks.items(): + if task in tsklist: + task2files[task].add('.'.join([str(key[0]), str(key[1]), str(key[2])])) + if key[3] == -1: + task2freqs[task].update([varsfreq[k] for k in list(varsfreq.keys()) if + (k[0], k[1], k[2]) == (key[0], key[1], key[2])]) + else: + if key in varsfreq: + task2freqs[task].add(varsfreq[key]) + elif key in fxvars: + varsfx.add(key) + for task, fnames in task2files.items(): + codes = {(int(f.split('.')[0]), int(f.split('.')[1])): f for f in sorted(list(fnames))} + cum_file = '_'.join([codes[k] for k in codes if k in accum_codes]) + inst_file = '_'.join([codes[k] for k in codes if k not in accum_codes]) + task2files[task] = [_f for _f in [cum_file, inst_file] if _f] + for task, freqset in task2freqs.items(): + maxfreq = max(freqset) if len(freqset) > 0 else 0 + if any([f for f in freqset if maxfreq % f != 0]): + log.error("Task depends on input fields with incompatible time steps") + task.status = cmor_task.status_failed + task2files.pop(task, None) + task2freqs[task] = maxfreq + task2files[task] = ['.'.join([p, str(maxfreq)]) for p in task2files[task]] + varsfiles = {key: set() for key in varstasks} + for key in varsfiles: + for t in varstasks[key]: + f = task2files[t][0] + if len(task2files[t]) == 2 and (key[0], key[1]) not in accum_codes: + f = task2files[t][1] + varsfiles[key].add((f, task2freqs[t])) + return task2files, task2freqs, varsfx, varsfiles + + +# Main execution loop +def execute(tasks, filter_files=True, multi_threaded=False): + valid_fx_tasks = execute_tasks([t for t in tasks if cmor_target.get_freq(t.target) == 0], filter_files, + multi_threaded=False, once=True) + valid_other_tasks = execute_tasks([t for t in tasks if cmor_target.get_freq(t.target) != 0], filter_files, + multi_threaded=multi_threaded, once=False) + return valid_fx_tasks + valid_other_tasks + + +def filter_fx_variables(gribfile, keys2files, gridtype, startdate, handles=None): + timestamp = -1 + keys = set() + while gribfile.read_next() and (handles is None or any(handles.keys())): + t = gribfile.get_field(grib_file.time_key) + key = get_record_key(gribfile, gridtype) + if t == timestamp and key in keys: + continue # Prevent double grib messages + if t != timestamp: + keys = set() + timestamp = t +# This file may be processed twice: once for the fx-fields and once for the dynamic fields. +# We add only the written fx-fields to the key set here. + if any([k[0:4] == key for k in list(keys2files.keys())]): + keys.add(key) + write_record(gribfile, key + (gridtype,), keys2files, shift=0, handles=handles, once=True, setdate=startdate) + gribfile.release() + return keys, timestamp + + +def execute_tasks(tasks, filter_files=True, multi_threaded=False, once=False): + valid_tasks, varstasks = validate_tasks(tasks) + if not any(valid_tasks): + return [] + task2files, task2freqs, fxkeys, keys2files = cluster_files(valid_tasks, varstasks) + grids = [cmor_source.ifs_grid.point, cmor_source.ifs_grid.spec] + if filter_files: + keys_gp, timestamp_gp = set(), -1 + keys_sp, timestamp_sp = set(), -1 + filehandles = open_files(keys2files) + fxkeys2files = {k: keys2files[k] for k in fxkeys} + if any(gridpoint_files): + gridpoint_start_date = sorted(gridpoint_files.keys())[0] + first_gridpoint_file = preceding_files[gridpoint_files[gridpoint_start_date]] + if ini_gridpoint_file != first_gridpoint_file and ini_gridpoint_file is not None: + with open(str(ini_gridpoint_file), 'r') as fin: + keys_gp, timestamp_gp = filter_fx_variables(grib_file.create_grib_file(fin), fxkeys2files, grids[0], + gridpoint_start_date, filehandles) + elif ini_gridpoint_file is not None: + with open(str(ini_gridpoint_file), 'r') as fin: + keys_gp, timestamp_gp = filter_fx_variables(grib_file.create_grib_file(fin), fxkeys2files, grids[0], + None, filehandles) + if any(spectral_files): + spectral_start_date = sorted(spectral_files.keys())[0] + first_spectral_file = preceding_files[spectral_files[spectral_start_date]] + if ini_spectral_file != first_spectral_file and ini_spectral_file is not None: + with open(str(ini_spectral_file), 'r') as fin: + keys_sp, timestamp_sp = filter_fx_variables(grib_file.create_grib_file(fin), fxkeys2files, grids[1], + spectral_start_date, filehandles) + elif ini_spectral_file is not None: + with open(str(ini_spectral_file), 'r') as fin: + keys_sp, timestamp_sp = filter_fx_variables(grib_file.create_grib_file(fin), fxkeys2files, grids[1], + None, filehandles) + if multi_threaded: + threads = [] + for file_list, grid, keys, timestamp in zip([gridpoint_files, spectral_files], grids, [keys_gp, keys_sp], + [timestamp_gp, timestamp_sp]): + thread = threading.Thread(target=filter_grib_files, + args=(file_list, keys2files, grid, filehandles, 0, 0, once, keys, timestamp)) + threads.append(thread) + thread.start() + threads[0].join() + threads[1].join() + else: + for file_list, grid, keys, timestamp in zip([gridpoint_files, spectral_files], grids, [keys_gp, keys_sp], [timestamp_gp, timestamp_sp]): + filter_grib_files(file_list, keys2files, grid, filehandles, month=0, year=0, once=once, prev_keys=keys, prev_timestamp=timestamp) + for handle in list(filehandles.values()): + handle.close() + for task in task2files: + if task.status != cmor_task.status_failed: + file_list = task2files[task] + filter_output = os.path.join(temp_dir, file_list[0]) + if len(file_list) > 1: + filter_output = os.path.join(temp_dir, '_'.join(file_list)) + if not os.path.isfile(filter_output): + cdoapi.cdo_command().merge([os.path.join(temp_dir, f) for f in file_list], filter_output) + setattr(task, cmor_task.filter_output_key, [filter_output]) + for task in task2freqs: + if task.status != cmor_task.status_failed: + setattr(task, cmor_task.output_frequency_key, task2freqs[task]) + return valid_tasks + + +# Checks tasks that are compatible with the variables listed in grib_vars and +# returns those that are compatible. +def validate_tasks(tasks): + varstasks = {} + valid_tasks = [] + for task in tasks: + if task.status == cmor_task.status_failed or not isinstance(task.source, cmor_source.ifs_source): + continue + codes = task.source.get_root_codes() + target_freq = cmor_target.get_freq(task.target) + matched_keys = [] + matched_grid = None + for c in codes: + if task.status == cmor_task.status_failed: + break + levtype, levels = get_levels(task, c) + for level in levels: + if task.status == cmor_task.status_failed: + break + match_key = soft_match_key(c.var_id, c.tab_id, levtype, level, task.source.grid_, list(varsfreq.keys())) + if match_key is None: + if 0 != target_freq and c in cmor_source.ifs_source.grib_codes_fx: + match_key = soft_match_key(c.var_id, c.tab_id, levtype, level, task.source.grid_, fxvars) + if match_key is None: + log.error("Field missing in the initial state files: " + "code %d.%d, level type %d, level %d. Dismissing task %s in table %s" % + (c.var_id, c.tab_id, levtype, level, task.target.variable, task.target.table)) + else: + log.error("Field missing in the first day of file: " + "code %d.%d, level type %d, level %d. Dismissing task %s in table %s" % + (c.var_id, c.tab_id, levtype, level, task.target.variable, task.target.table)) + elif 0 < target_freq < varsfreq[match_key]: + log.error("Field has too low frequency for target %s: " + "code %d.%d, level type %d, level %d. Dismissing task %s in table %s" % + (task.target.variable, c.var_id, c.tab_id, levtype, level, task.target.variable, + task.target.table)) + task.set_failed() + break + if match_key is None: + task.set_failed() + break + if matched_grid is None: + matched_grid = match_key[4] + else: + if match_key[4] != matched_grid: + log.warning("Task %s in table %s depends on both gridpoint and spectral fields" % + (task.target.variable, task.target.table)) + if match_key[2] == grib_file.hybrid_level_code: + matched_keys.append((match_key[0], match_key[1], match_key[2], -1, match_key[4])) + else: + matched_keys.append(match_key) + if task.status != cmor_task.status_failed: + # Fix for zg and ps on gridpoints and spectral fields on height levels: + task.source.grid_ = matched_grid + for key in matched_keys: + if key in varstasks: + varstasks[key].append(task) + else: + varstasks[key] = [task] + valid_tasks.append(task) + return valid_tasks, varstasks + + +def open_files(vars2files): + files = set() + for fileset in list(vars2files.values()): + files.update(set([t[0] for t in fileset])) + numreq = len(files) + softlim = resource.getrlimit(resource.RLIMIT_NOFILE)[0] + if numreq > softlim + 1: + try: + resource.setrlimit(resource.RLIMIT_NOFILE, (numreq + 1, -1)) + except ValueError: + return {} + byte_mode = 'w' if grib_file.test_mode else 'wb' + return {f: open(os.path.join(temp_dir, f), byte_mode) for f in files} + + +def build_fast_forward_cache(keys2files, grid): + result = {} + i = 0 + prev_key = (-1, -1, -1, -1, -1) + if grid not in record_keys: + return {} + for key in record_keys[grid]: + if key[:4] != prev_key[:4]: # flush + if i > 1: + result[prev_key] = i + prev_key = key + i = 0 + if key[3] == grib_file.hybrid_level_code: + comp_key = key[1:4] + (-1, grid,) + if comp_key not in keys2files: + i += 1 + else: + i = 0 + else: + i = 0 + return result + + +# Processes month of grib data, including 0-hour fields in the previous month file. +def filter_grib_files(file_list, keys2files, grid, handles=None, month=0, year=0, once=False, prev_keys=(), + prev_timestamp=-1): + dates = sorted(file_list.keys()) + cache = None if once else build_fast_forward_cache(keys2files, grid) + keys, timestamp = prev_keys, prev_timestamp + for i in range(len(dates)): + date = dates[i] + if month != 0 and year != 0 and (date.month, date.year) != (month, year): + continue + cur_grib_file = file_list[date] + prev_grib_file = preceding_files[cur_grib_file] + prev_chained = i > 0 and (os.path.realpath(prev_grib_file) == os.path.realpath(file_list[dates[i - 1]][1])) + if prev_grib_file is not None and not prev_chained: + with open(prev_grib_file, 'r') as fin: + log.info("Filtering grib file %s..." % os.path.abspath(prev_grib_file)) + keys, timestamp = proc_initial_month(date.month, grib_file.create_grib_file(fin), keys2files, + grid, handles, keys, timestamp, once) + next_chained = i < len(dates) - 1 and (os.path.realpath(cur_grib_file) == + os.path.realpath(file_list[dates[i + 1]][0])) + with open(cur_grib_file, 'r') as fin: + log.info("Filtering grib file %s..." % os.path.abspath(cur_grib_file)) + if next_chained: + keys, timestamp = proc_grib_file(grib_file.create_grib_file(fin), keys2files, grid, handles, keys, + timestamp, once, cache) + else: + proc_final_month(date.month, grib_file.create_grib_file(fin), keys2files, grid, handles, keys, + timestamp, once, cache) + + +# Function writing data from previous monthly file, writing the 0-hour fields +def proc_initial_month(month, gribfile, keys2files, gridtype, handles, prev_keys=(), prev_timestamp=-1, once=False, + ff_cache=None): + timestamp = prev_timestamp + keys = prev_keys + fast_forward_count = 0 + while gribfile.read_next(headers_only=(fast_forward_count > 0)) and (handles is None or any(handles.keys())): + key, fast_forward_count, cycle, timestamp = next_record(gribfile, fast_forward_count, timestamp, gridtype, + ff_cache, keys) + if cycle: + gribfile.release() + continue + date = gribfile.get_field(grib_file.date_key) + if (date % 10 ** 4) // 10 ** 2 == month: + if (key[0], key[1]) not in accum_codes: + write_record(gribfile, key + (gridtype,), keys2files, handles=handles, once=once, setdate=None) + gribfile.release() + return keys, timestamp + + +# Function writing data from previous monthly file, writing the 0-hour fields +def proc_grib_file(gribfile, keys2files, gridtype, handles, prev_keys=(), prev_timestamp=-1, once=False, ff_cache=None): + timestamp = prev_timestamp + keys = prev_keys + fast_forward_count = 0 + while gribfile.read_next(headers_only=(fast_forward_count > 0)) and (handles is None or any(handles.keys())): + key, fast_forward_count, cycle, timestamp = next_record(gribfile, fast_forward_count, timestamp, gridtype, + ff_cache, keys) + if cycle: + gribfile.release() + continue + write_record(gribfile, key + (gridtype,), keys2files, shift=-1 if (key[0], key[1]) in accum_codes else 0, + handles=handles, once=once, setdate=None) + gribfile.release() + return keys, timestamp + + +# Function writing data from previous monthly file, writing the 0-hour fields +def proc_final_month(month, gribfile, keys2files, gridtype, handles, prev_keys=(), prev_timestamp=-1, once=False, + ff_cache=None): + timestamp = prev_timestamp + keys = prev_keys + fast_forward_count = 0 + while gribfile.read_next(headers_only=(fast_forward_count > 0)) and (handles is None or any(handles.keys())): + key, fast_forward_count, cycle, timestamp = next_record(gribfile, fast_forward_count, timestamp, gridtype, + ff_cache, keys) + if cycle: + gribfile.release() + continue + date = gribfile.get_field(grib_file.date_key) + mon = (date % 10 ** 4) // 10 ** 2 + if mon == month: + write_record(gribfile, key + (gridtype,), keys2files, shift=-1 if (key[0], key[1]) in accum_codes else 0, + handles=handles, once=once, setdate=None) + elif mon == month % 12 + 1: + if (key[0], key[1]) in accum_codes: + write_record(gribfile, key + (gridtype,), keys2files, shift=-1, handles=handles, once=once, + setdate=None) + gribfile.release() + return keys, timestamp + + +def next_record(gribfile, ffwd_count, prev_time, gridtype, ffwd_cache, keys_cache): + if ffwd_count > 0: + return None, ffwd_count - 1, True, -1 + key = get_record_key(gribfile, gridtype) + t = gribfile.get_field(grib_file.time_key) + new_ffwd_count = ffwd_cache.get((t,) + key, 0) if ffwd_cache is not None else 0 + if new_ffwd_count > 0: + return key, new_ffwd_count - 1, True, t + if t == prev_time and key in keys_cache: + return key, new_ffwd_count, True, t + if t != prev_time: + keys_cache.clear() + keys_cache.add(key) + return key, new_ffwd_count, False, t + + +# Writes the grib messages +def write_record(gribfile, key, keys2files, shift=0, handles=None, once=False, setdate=None): + global starttimes + var_infos = set() + if key[2] == grib_file.hybrid_level_code: + for k, v in list(keys2files.items()): + if k[:3] == key[:3]: + var_infos.update(v) + else: + f = keys2files.get(key, None) + if f is not None: + var_infos.update(f) + if not any(var_infos): + return + if setdate is not None: + gribfile.set_field(grib_file.date_key, int(cmor_utils.date2str(setdate))) + gribfile.set_field(grib_file.time_key, 0) + timestamp = gribfile.get_field(grib_file.time_key) + if shift != 0 and setdate is None: + freq = varsfreq.get(key, 0) + shifttime = timestamp + shift * freq * 100 + if shifttime < 0 or shifttime >= 2400: + newdate, hours = fix_date_time(gribfile.get_field(grib_file.date_key), shifttime // 100) + gribfile.set_field(grib_file.date_key, newdate) + shifttime = 100 * hours + timestamp = int(shifttime) + gribfile.set_field(grib_file.time_key, timestamp) + if key[1] == 126 and key[0] in [40, 41, 42]: + gribfile.set_field(grib_file.levtype_key, grib_file.pressure_level_hPa_code) + gribfile.set_field(grib_file.level_key, key[3]//100) + elif gribfile.get_field(grib_file.levtype_key) == grib_file.pressure_level_Pa_code: + gribfile.set_field(grib_file.levtype_key, 99) + if gribfile not in starttimes: + starttimes[gribfile] = timestamp + for var_info in var_infos: + if var_info[1] < 24 and timestamp // 100 % var_info[1] != 0: + # Note this can result in a massive number of warnings in log file: + #log.warning("Skipping irregular GRIB record for %s with frequency %s at timestamp %s" % + # (str(var_info[0]), str(var_info[1]), str(timestamp))) + continue + handle = handles.get(var_info[0], None) if handles else None + if handle: + gribfile.write(handle) + if once and handles is not None and timestamp != starttimes[gribfile]: + handle.close() + del handles[var_info[0]] + else: + if handles is None: + with open(os.path.join(temp_dir, var_info[0]), 'a') as ofile: + gribfile.write(ofile) + else: + if not once: + log.error("Unexpected missing file handle encountered for code %s" % str(var_info[0])) + + +# Converts 24 hours into extra days +def fix_date_time(date, time): + timestamp = datetime.datetime(year=date // 10 ** 4, month=(date % 10 ** 4) // 10 ** 2, + day=date % 10 ** 2) + datetime.timedelta(hours=int(time)) + return timestamp.year * 10 ** 4 + timestamp.month * 10 ** 2 + timestamp.day, timestamp.hour diff --git a/ece2cmor/ece2cmor3/ifs2cmor.py b/ece2cmor/ece2cmor3/ifs2cmor.py new file mode 100644 index 0000000000000000000000000000000000000000..fe1fbf8497199d4d582f6ef24117084077ea9568 --- /dev/null +++ b/ece2cmor/ece2cmor3/ifs2cmor.py @@ -0,0 +1,1071 @@ +import cmor +import glob +import logging +import multiprocessing +import subprocess +import netCDF4 +import numpy +import os + +from datetime import datetime, timedelta +from ece2cmor3 import grib_filter, grib_file, cdoapi, cmor_source, cmor_target, cmor_task, cmor_utils, postproc + +timeshift = timedelta(0) +# Apply timeshift for instance in case you want manually to add a shift for the piControl: +# timeshift = datetime(2260, 1, 1) - datetime(1850, 1, 1) + +# Logger construction +log = logging.getLogger(__name__) + +# Experiment name +exp_name_ = None + +# Table root +table_root_ = None + +# Files that are being processed in the current execution loop. +ifs_gridpoint_files_ = None +ifs_spectral_files_ = None +ifs_init_gridpoint_file_ = None +ifs_init_spectral_file_ = None +ifs_preceding_files_ = None + +# IFS surface pressure grib codes +surface_pressure = cmor_source.grib_code(134) +ln_surface_pressure = cmor_source.grib_code(152) + +# Start date of the processed data +start_date_ = None + +# Fast storage temporary path +temp_dir_ = None + +# Reference date, times will be converted to hours since refdate +ref_date_ = None + +# Autofilter option +auto_filter_ = True + +# Available geospatial masks, assigned by ece2cmorlib +masks = {} + +# Custom scripts +scripts = {} + + +# Controls whether we enter filtering+post-processing stage +def do_post_process(): + return str(os.environ.get("ECE2CMOR3_IFS_POSTPROC", "True")).lower() != "false" + + +# Controls whether we use 2d grid for IFS, or just lat/lon axes +def use_2d_grid(): + return str(os.environ.get("ECE2CMOR3_IFS_GRID_2D", "False")).lower() == "true" + + +# Controls whether to clean up the IFS temporary data +def cleanup_tmpdir(): + return str(os.environ.get("ECE2CMOR3_IFS_CLEANUP", "True")).lower() != "false" + + +# Guesses the IFS output frequency +def get_output_freq(task): + # If the environment variable is set, we take that as our guess + env_val = os.environ.get("ECE2CMOR3_IFS_NFRPOS", -1) + try: + env_val = int(env_val) + except ValueError: + log.error("Could not interpret environment variable ECE2CMOR3_IFS_NFRPOS with value %s as integer" % + str(env_val)) + env_val = -1 + if env_val >= 0: + return env_val + # If the output frequency was set (auto-filtering), take that one + if hasattr(task, cmor_task.output_frequency_key): + return getattr(task, cmor_task.output_frequency_key) + # Try to read from the raw model output + if hasattr(task, cmor_task.filter_output_key): + raise Exception("Cannot determine post-processing frequency for %s, please provide it by setting the " + "ECE2CMOR3_IFS_NFRPOS environment variable to the output frequency (in hours)" % + task.target.variable) +# return grib_filter.read_source_frequency(getattr(task, cmor_task.filter_output_key)) + + +# Initializes the processing loop. +def initialize(path, expname, tableroot, refdate, tempdir=None, autofilter=True): + global log, exp_name_, table_root_, ifs_gridpoint_files_, ifs_spectral_files_, ifs_init_spectral_file_, \ + ifs_init_gridpoint_file_, temp_dir_, ref_date_, start_date_, auto_filter_ + + exp_name_ = expname + table_root_ = tableroot + ref_date_ = refdate + auto_filter_ = autofilter + find_grib_files(expname, path) + tmpdir_parent = os.getcwd() if tempdir is None else tempdir + # Apply timeshift + start_date_ = datetime.combine(min(ifs_gridpoint_files_.keys()), datetime.min.time()) - timeshift + dirname = '-'.join([exp_name_, "ifs", start_date_.isoformat().split('-')[0]]) + temp_dir_ = os.path.join(tmpdir_parent, dirname) + if not os.path.exists(temp_dir_): + os.makedirs(temp_dir_) + if auto_filter_: + ini_gpf = None if ifs_init_gridpoint_file_ == list(ifs_gridpoint_files_.values())[0] else ifs_init_gridpoint_file_ + grib_filter.initialize(ifs_gridpoint_files_, ifs_spectral_files_, ini_gpf, ifs_init_spectral_file_, + ifs_preceding_files_, temp_dir_) + return True + + +def find_grib_files(expname, path): + global ifs_init_spectral_file_, ifs_init_gridpoint_file_, ifs_gridpoint_files_, ifs_spectral_files_ + global ifs_preceding_files_ + + ifs_init_spectral_file_, ifs_init_gridpoint_file_ = find_init_files(path, expname) + file_pattern = f'{expname}+[0-9][0-9][0-9][0-9][0-9][0-9]' + gpfiles = {cmor_utils.get_ifs_date(f): f for f in glob.glob(f'{path}/ICMGG{file_pattern}') + if not f.endswith("+000000")} + shfiles = {cmor_utils.get_ifs_date(f): f for f in glob.glob(f'{path}/ICMSH{file_pattern}') + if not f.endswith("+000000")} + if any(shfiles) and any(gpfiles) and set(shfiles.keys()) != set(gpfiles.keys()): + intersection = set(gpfiles.keys()).intersection(set(shfiles.keys())) + if not any(intersection): + log.error("Gridpoint files %s and spectral files %s correspond to different months, no overlap found..." % + (str(list(gpfiles.values())), str(list(shfiles.values())))) + ifs_gridpoint_files_ = {} + ifs_spectral_files_ = {} + return False + else: + ifs_gridpoint_files_ = {date: gpfiles[date] for date in intersection} + ifs_spectral_files_ = {date: shfiles[date] for date in intersection} + log.warning("Gridpoint files %s and spectral files %s correspond to different months, found overlapping " + "dates %s" % (str(list(gpfiles.values())), str(list(shfiles.values())), str(intersection))) + else: + ifs_gridpoint_files_, ifs_spectral_files_ = gpfiles, shfiles + if ifs_init_gridpoint_file_ is None: + if any(ifs_gridpoint_files_.values()): + ifs_init_gridpoint_file_ = list(ifs_gridpoint_files_.values())[0] + else: + log.error("No gridpoint files found for experiment %s in directory %s, exiting initialization" % + (exp_name_, path)) + return False + ifs_preceding_files_ = {} + for file_pattern, file_dict, init_file in zip(["ICMGG", "ICMSH"], + [ifs_gridpoint_files_, ifs_spectral_files_], + [ifs_init_gridpoint_file_, ifs_init_spectral_file_]): + for date, filepath in file_dict.items(): + preceding_timestamp = f'{date.year}{(date.month - 1):02}' if date.month > 1 else f'{date.year - 1}12' + fname = f'{file_pattern}{expname}+{preceding_timestamp}' + fpath = f'{path}/{fname}' + if fpath in file_dict.values() or glob.glob(fpath): + ifs_preceding_files_[filepath] = fpath + else: + pathdirs = path.split('/') + leg = pathdirs[-1] + residue = '/'.join(pathdirs[0:-1]) + nchars = len(leg) + preceding_leg_file = None + try: + preceding_leg_file = f'{residue}/{int(leg) - 1:0{nchars}}/{fname}' + except ValueError: + log.info(f'IFS output path {path} does not seem to contain a leg directory, assuming the preceding ' + f'time stamp is the initial state...') + ifs_preceding_files_[filepath] = init_file + if glob.glob(preceding_leg_file): + ifs_preceding_files_[filepath] = preceding_leg_file + else: + ifs_preceding_files_[filepath] = init_file + return True + + +def find_init_files(path, exp): + def find_file(f): + local_matches = glob.glob(os.path.join(f)) + if any(local_matches): + return local_matches[0] + parent_matches = glob.glob(os.path.abspath(os.path.join(path,'..',f))) + if any(parent_matches): + return parent_matches[0] + pathdirs = path.split('/') + leg = pathdirs[-1] + residue = '/'.join(pathdirs[0:-1]) + nchars = len(leg) + first_leg_matches = glob.glob(os.path.join(residue, f'{1:0{nchars}}', f)) + if any(first_leg_matches): + return first_leg_matches[0] + zero_leg_matches = glob.glob(os.path.join(residue, '0' * nchars, f)) + if any(zero_leg_matches): + return zero_leg_matches[0] + try: + preceding_leg_file = os.path.join(residue, f'{int(leg) - 1:0{nchars}}', f) + preceding_leg_matches = glob.glob(preceding_leg_file) + if any(preceding_leg_matches): + return preceding_leg_matches[0] + except ValueError: + pass + log.warning(f'Initial state file {f} could not be found, this may result in errors upon cmorization') + return None + return find_file("ICMSH" + exp + "+000000"), find_file("ICMGG" + exp + "+000000") + + +def validate_script_task(task): + script = getattr(task, cmor_task.postproc_script_key, None) + if script is None: + return None + if script not in scripts: + log.error("Could not find post-processing script %s in ifspar.json, dismissing variable %s in table %s " + % (script, task.target.variable, task.target.table)) + task.set_failed() + return None + if scripts[script].get("src", None) is None: + log.error("Script source for %s has not been given, dismissing variable %s in table %s" + % (script, task.target.variable, task.target.table)) + return None + return scripts[script].get("filter", "true").lower() + + +def execute(tasks, nthreads=1): + global log, start_date_, auto_filter_ + + supported_tasks = [t for t in filter_tasks(tasks) if t.status == cmor_task.status_initialized] + log.info("Executing %d IFS tasks..." % len(supported_tasks)) + mask_tasks = get_mask_tasks(supported_tasks) + fx_tasks = [t for t in supported_tasks if cmor_target.get_freq(t.target) == 0] + regular_tasks = [t for t in supported_tasks if cmor_target.get_freq(t.target) != 0] + script_tasks = [t for t in supported_tasks if validate_script_task(t) is not None] + # Scripts in charge of their own filtering, can create a group of variables at once + script_tasks_no_filter = [t for t in script_tasks if validate_script_task(t) == "false"] + # Scripts creating single variable, filtering done by ece2cmor3 + script_tasks_filter = list(set(script_tasks) - set(script_tasks_no_filter)) + req_ps_tasks, extra_ps_tasks = get_sp_tasks(supported_tasks) + + # No fx filtering needed, cdo can handle this file + if ifs_init_gridpoint_file_.endswith("+000000"): + tasks_to_filter = extra_ps_tasks + regular_tasks + script_tasks_filter + tasks_no_filter = fx_tasks + mask_tasks + for task in tasks_no_filter: + # dirty hack for orography being in ICMGG+000000 file... + if task.target.variable in ["orog", "areacella"]: + task.source.grid_ = cmor_source.ifs_grid.point + if task.source.grid_id() == cmor_source.ifs_grid.spec: + setattr(task, cmor_task.filter_output_key, [ifs_init_spectral_file_]) + else: + setattr(task, cmor_task.filter_output_key, [ifs_init_gridpoint_file_]) + setattr(task, cmor_task.output_frequency_key, 0) + else: + tasks_to_filter = mask_tasks + fx_tasks + extra_ps_tasks + regular_tasks + script_tasks_filter + tasks_no_filter = [] + np = nthreads + # Launch no-filter scripts + jobs = [] + tasks_per_script = cmor_utils.group(script_tasks_no_filter, lambda tsk: getattr(tsk, cmor_task.postproc_script_key)) + for s, tasklist in list(tasks_per_script.items()): + log.info("Launching script %s to process variables %s" % + (s, ','.join([t.target.variable + " in " + t.target.table for t in tasklist]))) + script_args = (s, str(scripts[s]["src"]), tasklist) + if np == 1: + script_worker(*script_args) + else: + p = multiprocessing.Process(name=s, target=script_worker, args=script_args) + p.start() + jobs.append(p) + np -= 1 + + # Do filtering + if auto_filter_: + tasks_todo = tasks_no_filter + grib_filter.execute(tasks_to_filter, filter_files=do_post_process(), + multi_threaded=(nthreads > 1)) + else: + tasks_todo = tasks_no_filter + for task in tasks_to_filter: + if task.source.grid_id() == cmor_source.ifs_grid.point: + setattr(task, cmor_task.filter_output_key, list(ifs_gridpoint_files_.values())) + tasks_todo.append(task) + elif task.source.grid_id() == cmor_source.ifs_grid.spec: + setattr(task, cmor_task.filter_output_key, list(ifs_spectral_files_.values())) + tasks_todo.append(task) + else: + log.error("Task ifs source has unknown grid for %s in table %s" % (task.target.variable, + task.target.table)) + task.set_failed() + + for task in tasks_todo: + setattr(task, cmor_task.output_frequency_key, get_output_freq(task)) + + # First post-process surface pressure and mask tasks + for task in list(set(tasks_todo).intersection(mask_tasks + req_ps_tasks + extra_ps_tasks)): + postproc.post_process(task, temp_dir_, do_post_process()) + for task in list(set(tasks_todo).intersection(mask_tasks)): + read_mask(task.target.variable, getattr(task, cmor_task.output_path_key)) + proctasks = list(set(tasks_todo).intersection(regular_tasks + fx_tasks)) + if np == 1: + for task in proctasks: + cmor_worker(task) + else: + pool = multiprocessing.Pool(processes=np) + pool.map(cmor_worker, proctasks) + for task in proctasks: + setattr(task, cmor_task.output_path_key, postproc.get_output_path(task, temp_dir_)) + for job in jobs: + job.join() + if cleanup_tmpdir(): + clean_tmp_data(tasks_todo) + + +# Worker function for parallel cmorization +def cmor_worker(task): + if task.status in [cmor_task.status_failed, cmor_task.status_cmorized, cmor_task.status_finished]: + return + if validate_script_task(task) is not None: + script = scripts[getattr(task, cmor_task.postproc_script_key)]["src"] + log.info("Post-processing variable %s for target variable %s using %s..." % (task.source.get_grib_code().var_id, + task.target.variable, script)) + subprocess.check_call([script, task.target.variable, task.target.table, + getattr(task, cmor_task.filter_output_key)], cwd=temp_dir_) + ncfile = os.path.join(temp_dir_, task.target.variable + '_' + task.target.table + ".nc") + if os.path.isfile(ncfile): + setattr(task, cmor_task.output_path_key, ncfile) + else: + log.error("Output file %s of script %s could not be found... skipping cmorization of task") + task.set_failed() + return + elif task.target.variable == "sftlf": + ncfile = download_sftlf(task) + setattr(task, cmor_task.output_path_key, ncfile) + setattr(task, "download", ncfile) + setattr(task, cmor_task.conversion_key, None) + else: + log.info("Post-processing variable %s for target variable %s..." % (task.source.get_grib_code().var_id, + task.target.variable)) + if task.status not in [cmor_task.status_postprocessing, cmor_task.status_postprocessed]: + postproc.post_process(task, temp_dir_, do_post_process()) + if task.status == cmor_task.status_failed: + return + + log.info("Cmorizing source variable %s to target variable %s..." % (task.source.get_grib_code().var_id, task.target.variable)) + define_cmor_axes(task) + if task.status in [cmor_task.status_failed, cmor_task.status_cmorized, cmor_task.status_finished]: + return + execute_netcdf_task(task) + + +# Worker function invoking external script +def script_worker(name, src, tasks): + tmpdir = os.path.join(temp_dir_, name + "-work") + if not os.path.isdir(tmpdir): + os.makedirs(tmpdir) + gpfile = list(ifs_gridpoint_files_.values())[0] + year = os.path.basename(gpfile)[-6:-2] + odir = os.path.abspath(os.path.dirname(gpfile)) + try: + out = subprocess.check_output(args=[src, odir, exp_name_, year] + + [str(t.target.variable + '_' + t.target.table) for t in tasks], + cwd=tmpdir, shell=False, stderr=subprocess.STDOUT) + except subprocess.CalledProcessError as e: + log.error("Error in calling script %s: %s" % (src, str(e.output))) + log.error("The exit code of %s was %s" % (src, str(out))) + else: + log.info("The exit code of %s was %s" % (src, str(out))) + for task in tasks: + ncfile = os.path.join(tmpdir, task.target.variable + '_' + task.target.table + ".nc") + if os.path.isfile(ncfile): + setattr(task, cmor_task.output_path_key, ncfile) + else: + log.error("Output file %s of script %s could not be found... skipping cmorization of task" % (ncfile, src)) + task.set_failed() + continue + log.info("Cmorizing source variable %s to target variable %s..." % (task.source.get_grib_code().var_id, + task.target.variable)) + define_cmor_axes(task) + if task.status == cmor_task.status_failed: + return + execute_netcdf_task(task) + + +# Converts the masks that are needed into a set of tasks +def get_mask_tasks(tasks): + global log, masks + selected_masks = [] + for task in tasks: + msk = getattr(task.target, cmor_target.mask_key, None) + if msk: + if msk not in masks: + log.warning("Mask %s is not supported as an IFS mask, skipping masking" % msk) + delattr(task.target, cmor_target.mask_key) + else: + selected_masks.append(msk) + continue + for area_operator in getattr(task.target, "area_operator", []): + words = area_operator.split() + if len(words) == 3 and words[1] == "where": + mask_name = words[2] + if mask_name not in masks: + log.warning("Mask %s is not supported as an IFS mask, skipping masking" % mask_name) + else: + selected_masks.append(mask_name) + setattr(task.target, cmor_target.mask_key, mask_name) + result = [] + for m in set(selected_masks): + target = cmor_target.cmor_target(m, "fx") + setattr(target, cmor_target.freq_key, "fx") + setattr(target, "time_operator", ["point"]) + setattr(target, cmor_target.dims_key, "latitude longitude") + result_task = cmor_task.cmor_task(masks[m]["source"], target) + result.append(result_task) + return result + + +# Reads the post-processed mask variable and converts it into a boolean array +def read_mask(name, filepath): + global masks + try: + dataset = netCDF4.Dataset(filepath, 'r') + except Exception as e: + log.error("Could not read netcdf file %s while reading mask %s, reason: %s" % (filepath, name, e.message)) + return + try: + ncvars = dataset.variables + codestr = str(masks[name]["source"].get_grib_code().var_id) + varlist = [v for v in ncvars if str(getattr(ncvars[v], "code", None)) == codestr] + if len(varlist) == 0: + varlist = [v for v in ncvars if str(v) == "var" + codestr] + if len(varlist) > 1: + log.warning( + "CDO variable retrieval resulted in multiple (%d) netcdf variables; will take first" % len(varlist)) + ncvar = ncvars[varlist[0]] + if len(ncvar.shape) == 2: + var = ncvar[:, :] + elif len(ncvar.shape) == 3 and ncvar.shape[0] == 1: + var = ncvar[0, :, :] + elif len(ncvar.shape) == 4 and ncvar.shape[0] == 1 and ncvar.shape[1] == 1: + var = ncvar[0, 0, :, :] + else: + log.error( + "After processing, the shape of the mask variable is %s which cannot be applied to time slices" % str( + ncvar.shape)) + return + f, v = masks[name]["operator"], masks[name]["rhs"] + func = numpy.vectorize(lambda x: f(x, v)) + masks[name]["array"] = func(var[:, :]) + finally: + dataset.close() + + +# Deletes all temporary paths and removes temp directory +def clean_tmp_data(tasks): + global temp_dir_, ifs_gridpoint_files_, ifs_spectral_files_ + tmp_files = [str(os.path.join(temp_dir_, f)) for f in os.listdir(temp_dir_)] + for task in tasks: + for key in [cmor_task.filter_output_key, cmor_task.output_path_key]: + data_path = getattr(task, key, None) + if data_path is None: + continue + if isinstance(data_path, list): + data_paths = data_path + else: + data_paths = [data_path] + for dpath in data_paths: + dp = str(dpath) + if dp not in list(ifs_spectral_files_.values()) + list(ifs_gridpoint_files_.values()) and dp in tmp_files: + try: + os.remove(dp) + except OSError: + pass + if not any(os.listdir(temp_dir_)): + os.rmdir(temp_dir_) + temp_dir_ = os.getcwd() + else: + log.warning("Skipped removal of nonempty work directory %s" % temp_dir_) + + +# Creates a sub-list of tasks that we believe we can successfully process +def filter_tasks(tasks): + global log + log.info("Inspecting %d tasks." % len(tasks)) + result = [] + for task in tasks: + tgtdims = getattr(task.target, cmor_target.dims_key, "").split() + haslat = "latitude" in tgtdims + haslon = "longitude" in tgtdims + # 2D horizontal variables, zonal means and global means + if (haslat and haslon) or (haslat and not haslon) or (not haslat and not haslon): + result.append(task) + else: + # TODO: Support zonal variables + log.error("Variable %s has unsupported combination of dimensions %s and will be skipped." % ( + task.target.variable, tgtdims)) + log.info("Validated %d tasks for processing." % len(result)) + return result + + +# Creates extra tasks for surface pressure +def get_sp_tasks(tasks): + tasks_by_freq = cmor_utils.group(tasks, lambda task: (task.target.frequency, + '_'.join(getattr(task.target, "time_operator", ["mean"])))) + existing, new = [], [] + for freq, task_group in tasks_by_freq.items(): + tasks3d = [t for t in task_group if "alevel" in getattr(t.target, cmor_target.dims_key).split()] + if not any(tasks3d): + continue + surf_pressure_tasks = [t for t in task_group if t.source.get_grib_code() == surface_pressure] + existing.extend(surf_pressure_tasks) + if any(surf_pressure_tasks): + surf_pressure_task = surf_pressure_tasks[0] + else: + source = cmor_source.ifs_source(surface_pressure) + surf_pressure_task = cmor_task.cmor_task(source, cmor_target.cmor_target("ps", tasks3d[0].target.table)) + setattr(surf_pressure_task.target, cmor_target.freq_key, freq[0]) + setattr(surf_pressure_task.target, "time_operator", freq[1].split('_')) + setattr(surf_pressure_task.target, cmor_target.dims_key, "latitude longitude") + find_sp_variable(surf_pressure_task) + new.append(surf_pressure_task) + for task3d in tasks3d: + setattr(task3d, "sp_task", surf_pressure_task) + return existing, new + + +# Finds the surface pressure data source: gives priority to SH file. +def find_sp_variable(task): + global ifs_gridpoint_files_, ifs_spectral_files_, surface_pressure, ln_surface_pressure, auto_filter_ + ifs_ps_source = cmor_source.ifs_source.create(134) + setattr(ifs_ps_source, cmor_source.expression_key, "var134=exp(var152)") + setattr(ifs_ps_source, "root_codes", [cmor_source.grib_code(134)]) + if auto_filter_: + if grib_filter.spvar is None: + log.error("Could not find surface pressure in model output...") + return + log.info("Found surface pressure in file %s" % grib_filter.spvar[2]) + setattr(task, cmor_task.filter_output_key, [grib_filter.spvar[2]]) + if grib_filter.spvar[0] == 152: + task.source = ifs_ps_source + task.source.grid_ = 1 if grib_filter.spvar[2] == ifs_spectral_files_ else 0 + return + log.info("Looking for surface pressure variable in input files...") + command = cdoapi.cdo_command() + code_string = command.show_code(list(ifs_spectral_files_.values())[0]) + codes = [cmor_source.grib_code(int(c)) for c in code_string[0].split()] + if surface_pressure in codes: + log.info("Found surface pressure in spectral files") + setattr(task, cmor_task.filter_output_key, list(ifs_spectral_files_.values())) + task.source.grid_ = 1 + return + if ln_surface_pressure in codes: + log.info("Found lnsp in spectral file") + setattr(task, cmor_task.filter_output_key, list(ifs_spectral_files_.values())) + task.source = ifs_ps_source + return + log.info("Did not find sp or lnsp in spectral file: assuming gridpoint file contains sp") + setattr(task, cmor_task.filter_output_key, list(ifs_gridpoint_files_.values())) + task.source.grid_ = 0 + + +global_grid_id = -1 +local_grid_ids = {} +time_axis_ids = {} +time_axis_bnds = {} +depth_axis_ids = {} + + +def define_cmor_axes(task): + global global_grid_id, local_grid_ids + tgtdims = getattr(task.target, cmor_target.dims_key).split() + grid_id = -1 + has_lats, has_lons = "latitude" in tgtdims, "longitude" in tgtdims + if use_2d_grid() and has_lats and has_lons: + if global_grid_id == -1: + cmor.load_table(table_root_ + "_grids.json") + global_grid_id = create_grid_from_file(getattr(task, cmor_task.output_path_key)) + grid_id = global_grid_id + else: + grid_ids = local_grid_ids.get(task.target.table, None) + if grid_ids is None or (has_lons and grid_ids[0] is None) or (has_lats and grid_ids[1] is None): + cmor.load_table("_".join([table_root_, task.target.table]) + ".json") + downloaded_file = getattr(task, "download", None) + if downloaded_file is not None: + grid_ids = copy_grid_from_file(downloaded_file) + else: + grid_ids = create_grid_from_file(getattr(task, cmor_task.output_path_key)) + local_grid_ids[task.target.table] = grid_ids + if has_lons: + if has_lats: + grid_id = grid_ids + else: + grid_id = grid_ids[1] + else: + if has_lats: + grid_id = grid_ids[0] + setattr(task, "grid_id", grid_id) + log.info("Loading CMOR table %s..." % task.target.table) + try: + tab_id = cmor.load_table("_".join([table_root_, task.target.table]) + ".json") + cmor.set_table(tab_id) + except Exception as e: + log.error("CMOR failed to load table %s, the following variable will be skipped: %s. Reason: %s" % ( + task.target.table, task.target.variable, e.message)) + task.set_failed() + return + create_time_axes(task) + if task.status == cmor_task.status_failed: + return + create_depth_axes(task) + + +# Executes a single task +def execute_netcdf_task(task): + global log + task.next_state() + filepath = getattr(task, cmor_task.output_path_key, None) + if not filepath: + log.error( + "Could not find file containing data for variable %s in table %s" % (task.target.variable, + task.target.table)) + return + store_var = getattr(task, "store_with", None) + surf_pressure_task = getattr(task, "sp_task", None) + surf_pressure_path = getattr(surf_pressure_task, "path", None) if surf_pressure_task else None + if store_var and not surf_pressure_path: + log.error( + "Could not find file containing surface pressure for model level variable...skipping variable %s in table " + "%s" % (task.target.variable, task.target.table)) + return + axes = [] + t_bnds = [] + if hasattr(task, "grid_id"): + task_grid_id = getattr(task, "grid_id") + if isinstance(task_grid_id, tuple): + axes.extend([a for a in task_grid_id if a is not None]) + else: + axes.append(task_grid_id) + if hasattr(task, "z_axis_id"): + axes.append(getattr(task, "z_axis_id")) + if hasattr(task, "t_axis_id"): + axes.append(getattr(task, "t_axis_id")) + t_bnds = time_axis_bnds.get(getattr(task, "t_axis_id"), []) + try: + dataset = netCDF4.Dataset(filepath, 'r') + except Exception as e: + log.error("Could not read netcdf file %s while cmorizing variable %s in table %s. Cause: %s" % ( + filepath, task.target.variable, task.target.table, e.message)) + return + try: + ncvars = dataset.variables + dataset.set_auto_mask(False) + codestr = str(task.source.get_grib_code().var_id) + varlist = [v for v in ncvars if str(getattr(ncvars[v], "code", None)) == codestr] + if len(varlist) == 0: + varlist = [v for v in ncvars if str(v) == "var" + codestr] + if len(varlist) == 0: + varlist = [v for v in ncvars if str(v).lower() == task.target.variable] + if task.target.variable == "areacella": + varlist = ["cell_area"] + if len(varlist) == 0: + log.error("No suitable variable found in cdo-produced file %s fro cmorizing variable %s in table %s... " + "dismissing task" % (filepath, task.target.variable, task.target.table)) + task.set_failed() + return + if len(varlist) > 1: + log.warning( + "CDO variable retrieval resulted in multiple (%d) netcdf variables; will take first" % len(varlist)) + ncvar = ncvars[varlist[0]] + unit = getattr(ncvar, "units", None) + if (not unit) or hasattr(task, cmor_task.conversion_key): + unit = getattr(task.target, "units") + if len(getattr(task.target, "positive", "")) > 0: + var_id = cmor.variable(table_entry=str(task.target.variable), units=str(unit), axis_ids=axes, + positive="up" if getattr(task, cmor_task.conversion_key, + None) == "vol2fluxup" else "down") + else: + var_id = cmor.variable(table_entry=str(task.target.variable), units=str(unit), axis_ids=axes) + flip_sign = (getattr(task.target, "positive", None) == "up") + factor, term = get_conversion_constants(getattr(task, cmor_task.conversion_key, None), + getattr(task, cmor_task.output_frequency_key, None)) + time_dim, index = -1, 0 + for d in ncvar.dimensions: + if d.startswith("time"): + time_dim = index + break + index += 1 + + time_selection = None + if "fx" not in filepath: + time_stamps = cmor_utils.read_time_stamps(filepath) + if any(time_stamps) and len(t_bnds) > 0: + time_slice_map = [] + for bnd in t_bnds: + candidates = [t for t in time_stamps if bnd[0] <= t <= bnd[1]] + if any(candidates): + time_slice_map.append(time_stamps.index(candidates[0])) + else: + log.warning("For variable %s in table %s, no valid time point could be found at %s...inserting " + "missing values" % (task.target.variable, task.target.table, str(bnd[0]))) + time_slice_map.append(-1) + time_selection = numpy.array(time_slice_map) + + #mask = getattr(task.target, cmor_target.mask_key, None) + mask = None + mask_array = masks[mask].get("array", None) if mask in masks else None + missval = getattr(task.target, cmor_target.missval_key, 1.e+20) + if flip_sign: + missval = -missval + cmor_utils.netcdf2cmor(var_id, ncvar, time_dim, factor, term, store_var, get_sp_var(surf_pressure_path), + swaplatlon=False, fliplat=(not hasattr(task, "download")), mask=mask_array, missval=missval, + time_selection=time_selection, force_fx=(cmor_target.get_freq(task.target) == 0)) + cmor.close(var_id) + task.next_state() + if store_var: + cmor.close(store_var) + finally: + dataset.close() + + +# Returns the constants A,B for unit conversions of type y = A*x + B +def get_conversion_constants(conversion, output_frequency): + global log + if not conversion: + return 1.0, 0.0 + if conversion == "cum2inst": + return 1.0 / (3600 * output_frequency), 0.0 + if conversion == "inst2cum": + return 3600 * output_frequency, 0.0 + if conversion == "pot2alt": + return 1.0 / 9.81, 0.0 + if conversion == "alt2pot": + return 9.807, 0.0 + if conversion == "vol2flux": + return 1000.0 / (3600 * output_frequency), 0.0 + if conversion == "vol2fluxup": + return - 1000.0 / (3600 * output_frequency), 0.0 + if conversion == "vol2massl": + return 1000.0, 0.0 + if conversion == "frac2percent": + return 100.0, 0.0 + if conversion == "percent2frac": + return 0.01, 0.0 + if conversion == "K2degC": + return 1.0, -273.15 + if conversion == "degC2K": + return 1.0, 273.15 + if conversion == "micron2m": + return 1.0e-6, 0.0 + log.error("Unknown explicit unit conversion: %s" % conversion) + return 1.0, 0.0 + + +# Creates time axes in cmor and attach the id's as attributes to the tasks +def create_time_axes(task): + global log, time_axis_ids, time_axis_bnds + tgtdims = getattr(task.target, cmor_target.dims_key) + # TODO: better to check in the table axes if the standard name of the dimension equals "time" + time_dims = [d for d in list(set(tgtdims.split())) if d.startswith("time")] + if not any(time_dims): + return + if len(time_dims) > 1: + log.error("Skipping variable %s in table %s with dimensions %s with multiple time dimensions." % ( + task.target.variable, task.target.table, tgtdims)) + task.set_failed() + return + time_dim = str(time_dims[0]) + key = (task.target.table, time_dim) + if key in time_axis_ids: + tid = time_axis_ids[key] + else: + time_operator = getattr(task.target, "time_operator", ["mean"]) + log.info("Creating time axis using variable %s..." % task.target.variable) + tid, tlow, tup = create_time_axis(freq=task.target.frequency, path=getattr(task, cmor_task.output_path_key), + name=time_dim, has_bounds=(time_operator != ["point"])) + time_axis_ids[key] = tid + time_axis_bnds[tid] = list(zip(tlow, tup)) + setattr(task, "t_axis_id", tid) + + +# Creates depth axes in cmor and attach the id's as attributes to the tasks +def create_depth_axes(task): + global log, depth_axis_ids + tgtdims = getattr(task.target, cmor_target.dims_key) + z_dims = getattr(task.target, "z_dims", []) + if not any(z_dims): + return + if len(z_dims) > 1: + log.error("Skipping variable %s in table %s with dimensions %s with multiple z-directions." % ( + task.target.variable, task.target.table, tgtdims)) + task.set_failed() + return + z_dim = str(z_dims[0]) + key = (task.target.table, z_dim) + if key in depth_axis_ids: + if z_dim == "alevel": + setattr(task, "z_axis_id", depth_axis_ids[key][0]) + setattr(task, "store_with", depth_axis_ids[key][1]) + else: + setattr(task, "z_axis_id", depth_axis_ids[key]) + return + elif z_dim == "alevel": + log.info("Creating model level axis using variable %s..." % task.target.variable) + axisid, psid = create_hybrid_level_axis(task) + depth_axis_ids[key] = (axisid, psid) + setattr(task, "z_axis_id", axisid) + setattr(task, "store_with", psid) + return + elif z_dim == "sdepth": + log.info("Creating soil depth axis using variable %s..." % task.target.variable) + axisid = create_soil_depth_axis(z_dim) + depth_axis_ids[key] = axisid + setattr(task, "z_axis_id", axisid) + elif z_dim == "sdepth1": + log.info("Creating soil depth axis 1 using variable %s..." % task.target.variable) + axisid = create_soil_depth_axis(z_dim) + depth_axis_ids[key] = axisid + setattr(task, "z_axis_id", axisid) + elif z_dim in cmor_target.get_axis_info(task.target.table): + axis = cmor_target.get_axis_info(task.target.table)[z_dim] + levels = axis.get("requested", []) + if levels == "": + levels = [] + value = axis.get("value", None) + if value: + levels.append(value) + unit = axis.get("units", None) + if len(levels) == 0: + log.warning("Skipping axis %s in table %s with no levels" % (z_dim, task.target.table)) + return + else: + values = [float(l) for l in levels] + if axis.get("must_have_bounds", "no") == "yes": + bounds_list, n = axis.get("requested_bounds", []), len(values) + if not bounds_list: + bounds_list = [float(x) for x in axis.get("bounds_values", []).split()] + if len(bounds_list) == 2 * n: + bounds_array = numpy.empty([n, 2]) + for i in range(n): + bounds_array[i, 0], bounds_array[i, 1] = bounds_list[2 * i], bounds_list[2 * i + 1] + axisid = cmor.axis(table_entry=str(z_dim), coord_vals=values, units=unit, + cell_bounds=bounds_array) + else: + log.error("Failed to retrieve bounds for vertical axis %s" % str(z_dim)) + axisid = cmor.axis(table_entry=str(z_dim), coord_vals=values, units=unit) + else: + axisid = cmor.axis(table_entry=str(z_dim), coord_vals=values, units=unit) + depth_axis_ids[key] = axisid + setattr(task, "z_axis_id", axisid) + else: + log.error("Vertical dimension %s for variable %s not found in header of table %s" % ( + z_dim, task.target.variable, task.target.table)) + + +# Creates the hybrid model vertical axis in cmor. +def create_hybrid_level_axis(task): + pref = 80000 # TODO: Move reference pressure level to model config + path = getattr(task, cmor_task.output_path_key) + ds = None + try: + ds = netCDF4.Dataset(path) + am = ds.variables["hyam"] + aunit = getattr(am, "units") + bm = ds.variables["hybm"] + bunit = getattr(bm, "units") + hcm = am[:] / pref + bm[:] + n = hcm.shape[0] + ai = ds.variables["hyai"] + abnds = numpy.empty([n, 2]) + abnds[:, 0] = ai[0:n] + abnds[:, 1] = ai[1:n + 1] + bi = ds.variables["hybi"] + bbnds = numpy.empty([n, 2]) + bbnds[:, 0] = bi[0:n] + bbnds[:, 1] = bi[1:n + 1] + hcbnds = abnds / pref + bbnds + axisid = cmor.axis(table_entry="alternate_hybrid_sigma", coord_vals=hcm, cell_bounds=hcbnds, units="1") + cmor.zfactor(zaxis_id=axisid, zfactor_name="ap", units=str(aunit), axis_ids=[axisid], zfactor_values=am[:], + zfactor_bounds=abnds) + cmor.zfactor(zaxis_id=axisid, zfactor_name="b", units=str(bunit), axis_ids=[axisid], zfactor_values=bm[:], + zfactor_bounds=bbnds) + axes = [] + if hasattr(task, "grid_id"): + task_grid_id = getattr(task, "grid_id") + if isinstance(task_grid_id, tuple): + axes.extend(task_grid_id) + else: + axes.append(task_grid_id) + axes.append(getattr(task, "t_axis_id")) + zfactor_name = "ps" + if "time1" in getattr(task.target, cmor_target.dims_key, []): + zfactor_name = "ps1" + elif "time2" in getattr(task.target, cmor_target.dims_key, []): + zfactor_name = "ps2" + storewith = cmor.zfactor(zaxis_id=axisid, zfactor_name=zfactor_name, axis_ids=axes, units="Pa") + return axisid, storewith + finally: + if ds is not None: + ds.close() + + +# Creates a soil depth axis. +def create_soil_depth_axis(name): + global log + if name == "sdepth1": + return cmor.axis(table_entry=name, coord_vals=[0.05], cell_bounds=[0.0, 0.1], units="m") + # Hard-coded because cdo fails to pass soil depths correctly: + bndcm = numpy.array([0, 7, 28, 100, 289]) + values = 0.5 * (bndcm[:4] + bndcm[1:]) + bounds = numpy.transpose(numpy.stack([bndcm[:4], bndcm[1:]])) + return cmor.axis(table_entry=name, coord_vals=values, cell_bounds=bounds, units="cm") + + +# Makes a time axis for the given table +def create_time_axis(freq, path, name, has_bounds): + global log, start_date_, ref_date_ + date_times = cmor_utils.read_time_stamps(path) + if len(date_times) == 0: + log.error("Empty time step list encountered at time axis creation for files %s" % str(path)) + return 0, [], [] + if has_bounds: + bounds = numpy.empty([len(date_times), 2]) + rounded_times = [(cmor_utils.get_rounded_time(freq, time)) for time in date_times] + dt_low = rounded_times + dt_up = rounded_times[1:] + [cmor_utils.get_rounded_time(freq, date_times[-1], 1)] + bounds[:, 0], units = cmor_utils.date2num([t - timeshift for t in dt_low], ref_date_) + bounds[:, 1], units = cmor_utils.date2num([t - timeshift for t in dt_up], ref_date_) + times = bounds[:, 0] + (bounds[:, 1] - bounds[:, 0]) / 2 + return cmor.axis(table_entry=str(name), units=units, coord_vals=times, cell_bounds=bounds), dt_low, dt_up + step = cmor_utils.make_cmor_frequency(freq) + if date_times[0] >= start_date_ + step: + date = date_times[0] + extra_dates = [] + while date > start_date_: + date = date - step + extra_dates.append(date) + log.warning("The file %s seems to be missing %d time stamps at the beginning, these will be added" % + (path, len(extra_dates))) + date_times = extra_dates[::-1] + date_times + if date_times[0] < start_date_: + date_times = [t for t in date_times if t >= start_date_] + log.warning("The file %s seems to be containing %d too many time stamps at the beginning, these will be " + "removed" % (path, len([t for t in date_times if t >= start_date_]))) + times, units = cmor_utils.date2num([t - timeshift for t in date_times], ref_date_) + return cmor.axis(table_entry=str(name), units=units, coord_vals=times), date_times, date_times + + +# Surface pressure variable lookup utility +def get_sp_var(ncpath): + if not ncpath: + return None + if not os.path.exists(ncpath): + return None + try: + ds = netCDF4.Dataset(ncpath) + if "var134" in ds.variables: + return ds.variables["var134"] + for v in ds.variables: + if getattr(v, "code", 0) == 134: + return v + return None + except Exception as e: + log.error("Could not read netcdf file %s for surface pressure, reason: %s" % (ncpath, e.message)) + return None + + +# Creates the regular gaussian grids from the postprocessed file argument. +def create_grid_from_file(filepath): + global log + command = cdoapi.cdo_command() + grid_descr = command.get_grid_descr(filepath) + gridtype = grid_descr.get("gridtype", "unknown") + if gridtype != "gaussian": + log.error("Cannot read other grids then regular gaussian grids, current grid type read from file %s was % s" % ( + filepath, gridtype)) + return None + xvals = read_coordinate_vals(grid_descr, 'x', 360) + yvals = read_coordinate_vals(grid_descr, 'y', 180) + return create_gauss_grid(xvals, yvals) + + +# Creates the regular gaussian grids from the postprocessed file argument. +def copy_grid_from_file(filepath): + ds = netCDF4.Dataset(filepath, 'r') + lats = cmor.axis(table_entry="latitude", coord_vals=ds.variables["lat"][...], cell_bounds=ds.variables["lat_bnds"][...], + units="degrees_north") + lons = cmor.axis(table_entry="longitude", coord_vals=ds.variables["lon"][...], cell_bounds=ds.variables["lon_bnds"][...], + units="degrees_east") + ds.close() + return lats, lons + + + +# Reads x or y coordinate values from grid description. Returns empty array if not found +def read_coordinate_vals(grid_descr, xydir, ndegrees): + att_vals = xydir + "vals" + if att_vals in grid_descr: + return grid_descr[att_vals] + att_first, att_size = xydir + "first", xydir + "size" + if att_first in grid_descr and att_first in grid_descr: + x0, n = float(grid_descr[att_first]), int(grid_descr[att_size]) + dx = float(ndegrees) / n + return numpy.array([x0 + i * dx for i in range(n)]) + return numpy.array([]) + + +# Creates the regular gaussian grid from its arguments. +def create_gauss_grid(xvals, yvals): + nx, ny = len(xvals), len(yvals) + if use_2d_grid() and nx > 1 and ny > 1: + lon_mids, lat_mids = get_lon_mids(xvals), get_lat_mids(yvals) + vert_lats = numpy.empty([ny, nx, 4]) + vert_lats[:, :, 0] = numpy.tile(lat_mids[0:ny], (nx, 1)).transpose() + vert_lats[:, :, 1] = vert_lats[:, :, 0] + vert_lats[:, :, 2] = numpy.tile(lat_mids[1:ny + 1], (nx, 1)).transpose() + vert_lats[:, :, 3] = vert_lats[:, :, 2] + vert_lons = numpy.empty([ny, nx, 4]) + vert_lons[:, :, 0] = numpy.tile(lon_mids[0:nx], (ny, 1)) + vert_lons[:, :, 3] = vert_lons[:, :, 0] + vert_lons[:, :, 1] = numpy.tile(lon_mids[1:nx + 1], (ny, 1)) + vert_lons[:, :, 2] = vert_lons[:, :, 1] + i_index_id = cmor.axis(table_entry="i_index", units="1", coord_vals=numpy.array(list(range(1, nx + 1)))) + j_index_id = cmor.axis(table_entry="j_index", units="1", coord_vals=numpy.array(list(range(1, ny + 1)))) + lon_arr = numpy.tile(xvals, (ny, 1)) + lat_arr = numpy.tile(yvals[::-1], (nx, 1)).transpose() + return cmor.grid(axis_ids=[j_index_id, i_index_id], latitude=lat_arr, longitude=lon_arr, + latitude_vertices=vert_lats, longitude_vertices=vert_lons) + else: + lats = cmor.axis(table_entry="latitude", coord_vals=yvals[::-1], cell_bounds=get_lat_mids(yvals)[::-1], + units="degrees_north") if (ny > 1) else None + lons = cmor.axis(table_entry="longitude", coord_vals=xvals, cell_bounds=get_lon_mids(xvals), + units="degrees_east") if (nx > 1) else None + return lats, lons + + +def get_lon_mids(xvals): + nx = len(xvals) + if nx < 2: + return None + lon_mids = numpy.empty([nx + 1]) + lon_mids[0] = xvals[0] - 0.5 * (xvals[1] - xvals[0]) + lon_mids[1:nx] = 0.5 * (xvals[0:nx - 1] + xvals[1:nx]) + lon_mids[nx] = lon_mids[0] % 360. + return lon_mids + + +def get_lat_mids(yvals): + ny = len(yvals) + if ny < 2: + return None + lat_mids = numpy.empty([ny + 1]) + lat_mids[0] = 90. + lat_mids[1:ny] = 0.5 * (yvals[0:ny - 1] + yvals[1:ny]) + lat_mids[ny] = -90. + return lat_mids + + +# Helper function top download correct land-sea mask without lakes from b2share +def download_sftlf(task): + filtered_grib = getattr(task, cmor_task.filter_output_key)[0] + Nj = 0 + with open(filtered_grib, 'r') as gfile: + grib = grib_file.create_grib_file(gfile) + while Nj == 0: + grib.read_next(headers_only=True) + Nj = int(grib.get_field("Nj")) + fname = "fx-sftlf-EC-Earth3-T" + str(Nj - 1) + ".nc" + fullpath = os.path.join(os.path.dirname(__file__), "resources", "b2share-data", fname) + if not os.path.isfile(fullpath): + if not cmor_utils.get_from_b2share(fname, fullpath): + log.fatal("The file %s could not be downloaded, please install manually at %s" % (fname, fullpath)) + return None + return fullpath diff --git a/ece2cmor/ece2cmor3/lpjg2cmor.py b/ece2cmor/ece2cmor3/lpjg2cmor.py new file mode 100644 index 0000000000000000000000000000000000000000..c691e434b1f9ba18e3be49e4e77b0b52aeadcdfc --- /dev/null +++ b/ece2cmor/ece2cmor3/lpjg2cmor.py @@ -0,0 +1,883 @@ +import json +import logging +from datetime import date + +import os +import cmor +import netCDF4 +import numpy as np +import pandas as pd +from cdo import * + +# for compressed files +import gzip +import shutil + +from ece2cmor3 import cmor_utils, cmor_target, cmor_task + +# from cmor.Test.test_python_open_close_cmor_multiple import path + +# Logger object +log = logging.getLogger(__name__) + +# Experiment name +exp_name_ = None + +# Table root +table_root_ = None + +# Reference date i.e. the start date given by user as a command line parameter +ref_date_ = None + +# lpjg_path_ is the directory where the data files (LPJG .out-files) are located +lpjg_path_ = None + +# ncpath_ is the tmp directory where the temporary netcdf files will be placed +ncpath_ = None +ncpath_created_ = False + +target_grid_ = "T255" +gridfile_ = os.path.join(os.path.dirname(__file__), "resources/lpjg-grid-content", "ingrid_T255_unstructured.txt") + +# list of requested entries for the land use axis +landuse_requested_ = [] + +# the cmor prefix (e.g. CMIP6) is currently needed to treat the possible requests for land use types, but might be +# unnecessary in the future depending on how much of the request will be handled in already when writing the model +# output +cmor_prefix_ = None + +_months = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'] + +# various things extracted from Michael.Mischurow out2nc tool: ec_earth.py +grids = { + 80: [18, 25, 36, 40, 45, 54, 60, 64, 72, 72, 80, 90, 96, 100, 108, 120, 120, 128, 135, 144, 144, 150, 160, 160, 180, + 180, 180, 192, 192, 200, 200, 216, 216, 216, 225, 225, 240, 240, 240, 256, 256, 256, 256, 288, 288, 288, 288, + 288, 288, 288, 288, 288, 300, 300, 300, 300, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, + 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320], + 128: [18, 25, 36, 40, 45, 50, 60, 64, 72, 72, 80, 90, 90, 100, 108, 120, 120, 125, 128, 144, 144, 150, 160, 160, + 180, 180, 180, 192, 192, 200, 216, 216, 216, 225, 240, 240, 240, 250, 250, 256, 270, 270, 288, 288, 288, 300, + 300, 320, 320, 320, 320, 324, 360, 360, 360, 360, 360, 360, 360, 375, 375, 375, 375, 384, 384, 400, 400, 400, + 400, 405, 432, 432, 432, 432, 432, 432, 432, 450, 450, 450, 450, 450, 480, 480, 480, 480, 480, 480, 480, 480, + 480, 480, 486, 486, 486, 500, 500, 500, 500, 500, 500, 500, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, + 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512], +} +grids = {i: j + j[::-1] for i, j in list(grids.items())} + + +def rnd(x, digits=3): + return round(x, digits) + + +def coords(df, root, meta): + global gridfile_, target_grid_ + # deg is 128 in N128 + # common deg: 32, 48, 80, 128, 160, 200, 256, 320, 400, 512, 640 + # correspondence to spectral truncation: + # t159 = n80; t255 = n128; t319 = n160; t639 = n320; t1279 = n640 + # i.e. t(2*X -1) = nX + # number of longitudes in the regular grid: deg * 4 + # At deg >= 319 polar correction might have to be applied (see Courtier and Naughton, 1994) + deg = 128 + grid_size = len(df) + if grid_size == 10407: + target_grid_ = "T159" + deg = 80 + gridfile_ = os.path.join(os.path.dirname(__file__), "resources/lpjg-grid-content", "ingrid_T159_unstructured.txt") + elif grid_size != 25799: + log.error("Current grid with %i cells is not supported!", grid_size) + exit(-1) + + lons = [lon for num in grids[deg] for lon in np.linspace(0, 360, num, False)] + x, w = np.polynomial.legendre.leggauss(deg * 2) + lats = np.arcsin(x) * 180 / -np.pi + lats = [lats[i] for i, n in enumerate(grids[deg]) for _ in range(n)] + + if 'i' not in root.dimensions: + root.createDimension('i', len(lons)) + root.createDimension('j', 1) + + latitude = root.createVariable('lat', 'f4', ('j', 'i')) + latitude.standard_name = 'latitude' + latitude.long_name = 'latitude coordinate' + latitude.units = 'degrees_north' + # latitude.bounds = 'lat_vertices' + latitude[:] = lats + + longitude = root.createVariable('lon', 'f4', ('j', 'i')) + longitude.standard_name = 'longitude' + longitude.long_name = 'longitude coordinate' + longitude.units = 'degrees_east' + # longitude.bounds = 'lon_vertices' + longitude[:] = lons + + run_lons = [rnd(i) for i in (df.index.levels[0].values + 360.0) % 360.0] + run_lats = [rnd(i) for i in df.index.levels[1]] + + df.index = df.index.set_levels([run_lons[:], run_lats[:]]) + df = df.reindex([(rnd(i), rnd(j)) for i, j in zip(lons, lats)], fill_value=meta['missing']) + + return df, ('j', 'i') + + +# TODO: if LPJG data that has been run on the regular grid is also used, the corresponding coords function +# from Michael Mischurow's regular.py should be added here (possibly with some modifications) + +# Initialization before the processing of the LPJ-Guess tasks +def initialize(path, ncpath, expname, tabledir, prefix, refdate): + global log, exp_name_, table_root_, ref_date_ + global lpjg_path_, ncpath_, ncpath_created_, landuse_requested_, cmor_prefix_ + exp_name_ = expname + table_root_ = os.path.join(tabledir, prefix) + lpjg_path_ = path + ref_date_ = refdate + cmor_prefix_ = prefix + if not ncpath.startswith("/"): + ncpath_ = os.path.join(lpjg_path_, ncpath) + else: + ncpath_ = ncpath + if not os.path.exists(ncpath_) and not ncpath_created_: + os.makedirs(ncpath_) + ncpath_created_ = True + cmor.load_table(table_root_ + "_grids.json") + + coordfile = os.path.join(tabledir, prefix + "_coordinate.json") + if os.path.exists(coordfile): + with open(coordfile) as f: + data = json.loads(f.read()) + axis_entries = data.get("axis_entry", {}) + axis_entries = {k.lower(): v for k, v in axis_entries.items()} + if axis_entries['landuse']['requested']: + landuse_requested_ = [entry for entry in axis_entries['landuse']['requested']] + + return True + + +# Executes the processing loop. +# used the nemo2cmor.py execute as template +def get_lpj_freq(frequency): + if frequency == "yr" or frequency == "yrPt": + return "yearly" + if frequency == "mon": + return "monthly" + if frequency == "day": + return "daily" + return None + + +def execute(tasks): + global log, table_root_ + global lpjg_path_, ncpath_ + log.info("Executing %d lpjg tasks..." % len(tasks)) + log.info("Cmorizing lpjg tasks...") + taskdict = cmor_utils.group(tasks, lambda t: t.target.table) + for table, tasklist in taskdict.items(): + try: + tab_id = cmor.load_table("_".join([table_root_, table]) + ".json") + cmor.set_table(tab_id) + except Exception as e: + log.error("CMOR failed to load table %s, skipping variables %s. Reason: %s" + % (table, ','.join([tsk.target.variable for tsk in tasklist]), e.message)) + continue + + lon_id = None + lat_id = None + for task in tasklist: + freq = task.target.frequency + freqstr = get_lpj_freq(task.target.frequency) + if freqstr is None: + log.error("The frequency %s for variable %s in table %s is not supported by lpj2cmor" % + (task.target.frequency, task.target.variable, task.target.table)) + task.set_failed() + continue + + # if compressed file .out.gz file exists, uncompress it to temporary .out file + gzfile = os.path.join(lpjg_path_, task.source.variable() + "_" + freqstr + ".out.gz") + if os.path.exists(gzfile): + lpjgfile = os.path.join(ncpath_, task.source.variable() + "_" + freqstr + ".out") + log.info("Uncompressing file "+gzfile+" to temporary file "+lpjgfile) + with gzip.open(gzfile, 'rb') as f_in, open(lpjgfile, 'wb') as f_out: + shutil.copyfileobj(f_in, f_out) + else: + lpjgfile = os.path.join(lpjg_path_, task.source.variable() + "_" + freqstr + ".out") + + if not os.path.exists(lpjgfile): + log.error("The file %s does not exist. Skipping CMORization of variable %s." + % (lpjgfile, task.source.variable())) + task.set_failed() + continue + if not check_time_resolution(lpjgfile, freq): + log.error("The data in the file %s did not match the expected frequency (time resolution). " + "Skipping CMORization of variable %s." % (lpjgfile, task.source.variable())) + task.set_failed() + continue + log.info("Processing file "+lpjgfile) + setattr(task, cmor_task.output_path_key, task.source.variable() + ".out") + outname = task.target.out_name + outdims = task.target.dimensions + + # find first and last year in the .out-file + firstyear, lastyear = find_timespan(lpjgfile) + # check if user given reference year is after the first year in data file: this is not allowed + if int(ref_date_.year) > firstyear: + log.error("The reference date given is after the first year in the data (%s) for variable %s " + "in file %s. Skipping CMORization." % (firstyear, task.source.variable(), lpjgfile)) + task.set_failed() + continue + + # divide the data in the .out-file by year to temporary files + yearly_files = divide_years(lpjgfile, firstyear, lastyear, outname) + + for yearfile in yearly_files: + + # Read data from the .out-file and generate the netCDF file including remapping + ncfile = create_lpjg_netcdf(freq, yearfile, outname, outdims) + + if ncfile is None: + if "landUse" in outdims.split(): + log.error("Land use columns in file %s do not contain all of the requested land use types. " + "Skipping CMORization of variable %s" % ( + getattr(task, cmor_task.output_path_key), task.source.variable())) + else: + log.error( + "Unexpected subtype in file %s: either no type axis has been requested for variable %s " + "or explicit treatment for the axis has not yet been implemented. Skipping CMORization." + % (getattr(task, cmor_task.output_path_key), task.source.variable())) + break + + # Special treatment of Amon fco2nat (only when delivered by the EC-Earth3-CC configuration). + # Adding (subtract) NEMO Omon fgco2 to the LPJG Amon fco2nat part: Amon fco2nat=Amon fco2nat_lpjg + Omon fgco2_nemo: + if outname=="fco2nat" and freq=="mon" and table=="Amon" and (cmor.get_cur_dataset_attribute("source_id") == "EC-Earth3-CC"): + if not add_nemo_variable(task, ncfile, "fgco2", "1m"): + log.error("There was a problem adding nemo variable %s to %s in table %s... " + "exiting ece2cmor3" % ("fgco2", task.target.variable, task.target.table)) + exit(-1) + + dataset = netCDF4.Dataset(ncfile, 'r') + # Create the grid, need to do only once as all LPJG variables will be on same grid + # Currently create_grid just creates latitude and longitude axis since that should be all that is needed + if lon_id is None and lat_id is None: + lon_id, lat_id = create_grid(dataset, task) + setattr(task, "longitude_axis", lon_id) + setattr(task, "latitude_axis", lat_id) + + # Create cmor time axis for current variable + create_time_axis(dataset, task) + + # if this is a land use variable create cmor land use axis + if "landUse" in outdims.split(): + create_landuse_axis(task, lpjgfile, freq) + + # if this is a pft variable (e.g. landCoverFrac) create cmor vegtype axis + if "vegtype" in outdims.split(): + create_vegtype_axis(task, lpjgfile, freq) + + # if this variable has the soil depth dimension sdepth + # (NB! not sdepth1 or sdepth10) create cmor sdepth axis + if "sdepth" in outdims.split(): + create_sdepth_axis(task, lpjgfile, freq) + + # if this variable has one or more "singleton axes" (i.e. axes + # of length 1) which can be those dimensions + # named "type*", these will be created here + for lpjgcol in outdims.split(): + if lpjgcol.startswith("type"): + # THIS SHOULD BE LINKED TO CIP6_coordinate.json! + if lpjgcol == "typenwd": + singleton_value = "herbaceous_vegetation" + elif lpjgcol == "typepasture": + singleton_value = "pastures" + else: + continue + create_singleton_axis(task, lpjgfile, str(lpjgcol), singleton_value) + + # cmorize the current task (variable) + execute_single_task(dataset, task) + dataset.close() + + # remove the regular (non-cmorized) netCDF file and the temporary .out file for current year + os.remove(ncfile) + os.remove(yearfile) + + # end yearfile loop + + # if compressed file .out.gz file exists, remove temporary .out file + if os.path.exists(gzfile): + os.remove(lpjgfile) + + return + + +# checks that the time resolution in the .out data file matches the requested frequency +def check_time_resolution(lpjgfile, freq): + with open(lpjgfile) as f: + header = next(f).lower().split() + if freq == "mon": + return 'mth' in header or header[-12:] == _months + elif freq == "day": + return 'day' in header + elif freq == "yr" or freq == "yrPt": + # to find out if it is yearly data have to check that it is neither monthly nor daily + if 'mth' in header or header[-12:] == _months or 'day' in header: + return False + else: + return True + else: + return False # LPJ-Guess only supports yearly, monthly or daily time resolutions + + +# Returns first and last year present in the .out data file +def find_timespan(lpjgfile): + df = pd.read_csv(lpjgfile, sep='\s+', usecols=['Year'], dtype=np.int32) + + firstyr = df['Year'].min() + lastyr = df['Year'].max() + + return firstyr, lastyr + + +# Divides the .out file by year to a set of temporary files This approach was chosen to avoid problems with trying to +# keep huge amounts of data in the memory as the original .out-files can have even >100 years worth of daily data +def divide_years(lpjgfile, firstyr, lastyr, outname): + files = {} + filenames = [] + with open(lpjgfile) as f: + header = next(f) + # create the yearly files and write header to each + for yr in range(firstyr, lastyr + 1): + fname = os.path.join(ncpath_, outname + "_" + str(yr) + ".out") + filenames.append(fname) + files[yr] = open(fname, 'w') + files[yr].write(header) + + # assign the data lines in the .out-file to correct yearly file + for line in f: + yr = int(line.split()[2]) + if yr < firstyr: + continue + files[yr].write(line) + + for yr in files: + files[yr].close() + + return filenames + + +# this function builds upon a combination of _get and save_nc functions from the out2nc.py tool originally by Michael +# Mischurow +def create_lpjg_netcdf(freq, inputfile, outname, outdims): + global ncpath_, gridfile_ + + # checks for additional dimensions besides lon,lat&time (for those dimensions where the dimension actually exists + # in lpjg data) + is_land_use = "landUse" in outdims.split() + is_veg_type = "vegtype" in outdims.split() + is_sdepth = "sdepth" in outdims.split() + + # assigns a flag to handle two different possible monthly LPJ-Guess formats + months_as_cols = False + if freq == "mon": + with open(inputfile) as f: + header = next(f).lower().split() + months_as_cols = header[-12:] == _months + + if freq == "mon" and not months_as_cols: + idx_col = [0, 1, 2, 3] + elif freq == "day": + idx_col = [0, 1] + else: + idx_col = [0, 1, 2] + + df = pd.read_csv(inputfile, sep='\s+', index_col=idx_col, dtype=np.float64, compression='infer') + df.rename(columns=lambda x: x.lower(), inplace=True) + + if is_land_use: + # NOTE: The following treatment of landuse types is likely to change depending on how the lut data requests + # will be treated when creating the .out-files + if not landuse_requested_: # no specific request for land use types, pick all types present in the .out-file + landuse_types = list(df.columns.values) + elif cmor_prefix_ == "CMIP6": + # NOTE: the land use files in the .out-files should match the CMIP6 requested ones (in content if not in + # name) for future CMIP6 runs this is just a temporary placeholder solution for testing purposes! + landuse_types = ['psl', 'pst', 'crp', 'urb'] + else: + # for now skip the variable entirely if there is not exact matches in the .out-file for all the requested + # landuse types (except for CMIP6-case of course) + colnames = list(df.columns.values) + for lut in landuse_requested_: + if lut not in colnames: + return None + landuse_types = landuse_requested_ + + df_list = [] + for lut in range(len(landuse_types)): + colname = landuse_types[lut] + df_list.append(get_lpjg_datacolumn(df, freq, colname, months_as_cols)) + + elif is_veg_type: + pfts = list(df.columns.values) + df_list = [] + for p in range(len(pfts)): + df_list.append(get_lpjg_datacolumn(df, freq, pfts[p], months_as_cols)) + + elif is_sdepth: + depths = list(df.columns.values) + if "year" in depths: + if freq == "mon" or freq == "day": + depths = list(depths[2:]) + else: + depths = list(depths[1:]) + df_list = [] + for sd in range(len(depths)): + df_list.append(get_lpjg_datacolumn(df, freq, depths[sd], months_as_cols)) + + else: # regular variable + colname = "" + if not months_as_cols: + if "total" not in list(df.columns.values): + return None + else: + colname = "total" + df = get_lpjg_datacolumn(df, freq, colname, months_as_cols) + df_list = [df] + + if freq.startswith("yr"): + str_year=str(int(df_list[0].columns[0])) + else: + str_year=str(int(df_list[0].columns[0][1])) + + log.info( "Creating lpjg netcdf file for variable " + outname + " for year " + str_year ) + + ncfile = os.path.join(ncpath_, outname + "_" + freq + "_" + str_year + ".nc") + # Note that ncfile could be named anything, it will be deleted later and the cmorization takes care of proper + # naming conventions for the final file + + # temporary netcdf file name (will be removed after remapping is done) + temp_ncfile = os.path.join(ncpath_, 'LPJGtemp.nc') + root = netCDF4.Dataset(temp_ncfile, 'w') # now format is NETCDF4 + + root.createDimension('time', None) + timev = root.createVariable('time', 'f4', ('time',)) + refyear = int(ref_date_.year) + if freq == "mon": + curyear, tres = int(df_list[0].columns[0][1]), 'month' + t_since_fyear = (curyear - refyear) * 12 + elif freq == "day": + curyear, tres = int(df_list[0].columns[0][1]), 'day' + t_since_fyear = (date(curyear, 1, 1) - date(refyear, 1, 1)).days + else: + curyear, tres = int(df_list[0].columns[0]), 'year' + t_since_fyear = curyear - refyear + timev[:] = np.arange(t_since_fyear, t_since_fyear + df_list[0].shape[1]) + timev.units = '{}s since {}-01-01'.format(tres, refyear) + timev.calendar = "proleptic_gregorian" + + meta = {"missing": 1.e+20} # the missing/fill value could/should be taken from the target header info if available + # and does not need to be in a meta dict since coords only needs the fillvalue anyway, but do it like this (i.e. + # out2nc-style) for now + + N_dfs = len(df_list) + df_normalised = [] + dimensions = [] + + for l in range(N_dfs): + # TODO: if different LPJG grids possible you need an if-check here to choose which function is called + df_out, dimensions = coords(df_list[l], root, meta) + df_normalised.append(df_out) + + if N_dfs == 1: + dimensions = 'time', dimensions[0], dimensions[1] + + variable = root.createVariable(outname, 'f4', dimensions, zlib=True, + shuffle=False, complevel=5, fill_value=meta['missing']) + if outname == "tsl": + variable[:] = df_normalised[0].values.T # TODO: see out2nc for what to do here if you have the LPJG regular grid + else: + # For fluxes the missing values are replaced by zero before the remapping: + dumvar = df_normalised[0].values.T + variable[:] = np.where(dumvar < 1.e+20, dumvar, 0.) # TODO: see out2nc for what to do here if you have the LPJG regular grid + + else: + root.createDimension('fourthdim', N_dfs) + + dimensions = 'time', 'fourthdim', dimensions[0], dimensions[1] + variable = root.createVariable(outname, 'f4', dimensions, zlib=True, + shuffle=False, complevel=5, fill_value=meta['missing']) + for l in range(N_dfs): + if outname == "tsl": + variable[:, l, :, :] = df_normalised[l].values.T # TODO: see out2nc for what to do here if you have the LPJG regular grid + else: + # For fluxes the missing values are replaced by zero before the remapping: + dumvar = df_normalised[l].values.T + variable[:, l, :, :] = np.where(dumvar < 1.e+20, dumvar, 0.) # TODO: see out2nc for what to do here if you have the LPJG regular grid + + root.sync() + root.close() + + # do the remapping + cdo = Cdo() + + if target_grid_ == "T159": + cdo.remapycon('n80', input="-setvrange,-1e16,1e16 -setgrid," + gridfile_ + " " + temp_ncfile, + output=ncfile) + else: + cdo.remapycon('n128',input="-setvrange,-1e16,1e16 -setgrid," + gridfile_ + " " + temp_ncfile, + output=ncfile) # TODO: add remapping for possible other grids + + os.remove(temp_ncfile) + + return ncfile + + +# This function is only used for getting monthly fgco2 from NEMO for Amon fco2nat (see https://github.com/EC-Earth/ece2cmor3/issues/798#issuecomment-1941233077): +def add_nemo_variable(task, ncfile, nemo_var_name, nemo_var_freq): + # find nemo raw output file + nemo_ifile = find_nemo_file(nemo_var_name, nemo_var_freq) + if nemo_ifile == "": + log.error("NEMO variable %s needed for target %s in table %s was not found in nemo output... " + % (nemo_var_name, task.target.variable, task.target.table)) + return False + + # make sure timestamps are similar (which does not happen if starting in the middle of the year) + nemo_ts = cmor_utils.read_time_stamps(nemo_ifile) + lpjg_ts = cmor_utils.read_time_stamps(ncfile) + if len(nemo_ts) != len(lpjg_ts): + log.error("LPJ-GUESS and NEMO output files, required for NEMO variable %s needed for target %s in table %s do not have same length... " + % (nemo_var_name, task.target.variable, task.target.table)) + return False + + if nemo_var_freq == "1m": + for i in range(len(nemo_ts)): + if nemo_ts[i].year != lpjg_ts[i].year and nemo_ts[i].month != lpjg_ts[i].month: + log.error("LPJ-GUESS and NEMO output files, required for NEMO variable %s needed for target %s in table %s do not have same months... " + % (nemo_var_name, task.target.variable, task.target.table)) + return False + + # define auxiliary and temp. files + nemo_maskfile = os.path.join(os.path.dirname(__file__), "resources", "nemo-mask-ece.nc") + nemo_ofile = os.path.join(ncpath_, "tmp_nemo.nc") + interm_file = os.path.join(ncpath_, "intermediate.nc") + if os.path.exists(nemo_ofile): + os.remove(nemo_ofile) + if os.path.exists(interm_file): + os.remove(interm_file) + + # make sure the mask and input file have same dimensions + ds_maskfile = netCDF4.Dataset(nemo_maskfile, 'r') + ds_ifile = netCDF4.Dataset(nemo_ifile, 'r') + dims_maskfile = ds_maskfile.dimensions + dims_ofile = ds_ifile.dimensions + if dims_maskfile['x'].size != dims_ofile['x'].size or dims_maskfile['y'].size != dims_ofile['y'].size: + log.error("NEMO mask and output file, required for NEMO variable %s needed for target %s in table %s do not have same dimensions... " + % (nemo_var_name, task.target.variable, task.target.table)) + return False + ds_maskfile.close() + ds_ifile.close() + + # perform the conservative remapping using cdo + # cdo -L selvar,${varname} ${ifile} tmp1.nc + # CDO_REMAP_NORM=destarea cdo -L invertlat -setmisstoc,0 -remapycon,n128 -selindexbox,2,361,2,292 -mul tmp1.nc $mask $ofile + log.info("Using the following cdo version for conservative remapping") + os.system("cdo -V") + os.system("cdo -L selvar,"+nemo_var_name+" "+nemo_ifile+" "+interm_file) + if target_grid_ == "T159": + remap_grid='n80' + elif target_grid_ == "T255": + remap_grid='n128' + else: + log.error("WRONG GRID %s in function add_nemo_variable in lpjg2cmor.py!" % target_grid_) + exit(-1) + #os.system("CDO_REMAP_NORM=destarea cdo -L invertlat -setmisstoc,0 -remapycon,"+remap_grid+" -selindexbox,2,361,2,292 -mul "+interm_file+" "+nemo_maskfile+" "+nemo_ofile) + os.system("CDO_REMAP_NORM=destarea cdo -L -setmisstoc,0 -remapycon,"+remap_grid+" -selindexbox,2,361,2,292 -mul "+interm_file+" "+nemo_maskfile+" "+nemo_ofile) + + if not os.path.exists(nemo_ofile): + log.error("There was a problem remapping %s variable in nemo output file %s needed for %s in table %s... " + % (nemo_var_name, nemo_ifile, task.target.variable, task.target.table)) + return False + + # add the nemo output to the lpjg output + if os.path.exists(interm_file): + os.remove(interm_file) + os.system("cdo -L add -selvar,"+task.target.variable+" "+ncfile+" -mulc,-1. "+nemo_ofile+" "+interm_file) + if not os.path.exists(interm_file): + log.error("There was a problem adding remapped %s variable from nemo output file %s to %s in table %s... " + % (nemo_var_name, nemo_ifile, task.target.variable, task.target.table)) + return False + + # overwrite final ncfile and cleanup + os.remove(nemo_ofile) + shutil.move(interm_file, ncfile) + + return True + + +# This function is only used for getting monthly fgco2 from NEMO for Amon fco2nat (see https://github.com/EC-Earth/ece2cmor3/issues/798#issuecomment-1941233077): +def find_nemo_file(varname, nemo_freq): + # Find the nemo output folder (containing the varname at nemo_freq)for this leg (assumes it is in the runtime/output/nemo/??? folder) + path_parts = splitpath(lpjg_path_) + leg_str = path_parts[-1] + nemo_path = path_parts[0] + for d in range(1,len(path_parts)-2): + nemo_path = os.path.join(nemo_path,path_parts[d]) + nemo_path = os.path.join(nemo_path,"nemo",leg_str) + + # get the file which contains fgco2 + try: + nemo_files = cmor_utils.find_nemo_output(nemo_path, exp_name_) + except OSError: + log.error("Cannot find any nemo output files in %s" + % (nemo_path)) + return "" + print((str(nemo_files))) + file_candidates = [f for f in nemo_files if cmor_utils.get_nemo_frequency(f, exp_name_) == nemo_freq] + results = [] + for ncfile in file_candidates: + ds = netCDF4.Dataset(ncfile) + if varname in ds.variables: + results.append(ncfile) + ds.close() + # simplified error reporting + if len(results) !=1: + log.error("Cannot find any suitable nemo output files in %s" + % (nemo_path)) + return "" + return results[0] + + +# This function is only used for getting monthly fgco2 from NEMO for Amon fco2nat (see https://github.com/EC-Earth/ece2cmor3/issues/798#issuecomment-1941233077): +def splitpath(path): + # Split an absolute path into all of its components. + allparts = [] + if path[-1] == "/": + path = path[:-1] # Make sure there is no trailing slash + while 1: + parts = os.path.split(path) + if parts[0] == path: # sentinel for absolute paths + allparts.insert(0, parts[0]) + break + elif parts[1] == path: # sentinel for relative paths + allparts.insert(0, parts[1]) + break + else: + path = parts[0] + allparts.insert(0, parts[1]) + return allparts + + +# Extracts single column from the .out-file +def get_lpjg_datacolumn(df, freq, colname, months_as_cols): + if freq == "day": + # create a single time column so that extra days won't be added to + # the time axis (if there are both leap and non-leap years) + # Time axis needs to be modified on first call + if "year" in list(df.columns.values): + df['timecolumn'] = df['year'] + 0.001 * df['day'] + df.drop(columns=['year', 'day'], inplace=True) + df.set_index('timecolumn', append=True, inplace=True) + df = df[[colname]] + df = df.unstack() + + elif freq.startswith("yr"): + df = df.pop(colname) + df = df.unstack() + elif freq == "mon": + if months_as_cols: + df = df.unstack() + df = df.reindex(sorted(df.columns, key=(lambda x: (x[1], _months.index(x[0])))), + axis=1, copy=False) + else: + df = df.pop(colname) + df = df.unstack().unstack() + df = df.reindex(sorted(df.columns, key=(lambda x: (x[1], x[0]))), + axis=1, copy=False) + return df + + +# Performs CMORization of a single task/year +def execute_single_task(dataset, task): + global log + task.status = cmor_task.status_cmorizing + lon_axis = [] if not hasattr(task, "longitude_axis") else [getattr(task, "longitude_axis")] + lat_axis = [] if not hasattr(task, "latitude_axis") else [getattr(task, "latitude_axis")] + t_axis = [] if not hasattr(task, "time_axis") else [getattr(task, "time_axis")] + lu_axis = [] if not hasattr(task, "landUse_axis") else [getattr(task, "landUse_axis")] + veg_axis = [] if not hasattr(task, "vegtype_axis") else [getattr(task, "vegtype_axis")] + sdep_axis = [] if not hasattr(task, "sdepth_axis") else [getattr(task, "sdepth_axis")] + + # loop over potential singleton axes + singleton_axis = [] + for ax in dir(task): + if ax.startswith("singleton_"): + singleton_axis += [getattr(task, ax)] + + axes = lon_axis + lat_axis + lu_axis + veg_axis + sdep_axis + t_axis + singleton_axis + varid = create_cmor_variable(task, dataset, axes) + + ncvar = dataset.variables[task.target.out_name] + missval = getattr(ncvar, "missing_value", getattr(ncvar, "fill_value", np.nan)) + + factor = get_conversion_factor(getattr(task, cmor_task.conversion_key, None)) + log.info("CMORizing variable %s in table %s from %s in " + "file %s..." % (task.target.out_name, task.target.table, task.source.variable(), + getattr(task, cmor_task.output_path_key))) + cmor_utils.netcdf2cmor(varid, ncvar, 0, factor, missval=getattr(task.target, cmor_target.missval_key, missval), + swaplatlon=True) + closed_file = cmor.close(varid, file_name=True) + log.info("CMOR closed file %s" % closed_file) + task.status = cmor_task.status_cmorized + + +# Creates cmor time axis for the variable +# The axis is created separately for each variable and each year +def create_time_axis(ds, task): + # finding the time dimension name: adapted from nemo2cmor, presumably there is always only one time dimension and + # the length of the time_dim list will be 1 + tgtdims = getattr(task.target, cmor_target.dims_key) + time_dim = [d for d in list(set(tgtdims.split())) if d.startswith("time")] + + timevals = ds.variables["time"][:] # time variable in the netcdf-file from create_lpjg_netcdf is "time" + # time requires bounds as well, the following should simply set them to be from start to end of each + # year/month/day (as appropriate for current data) + f = np.vectorize(lambda x: x + 1) + time_bnd = np.stack((timevals, f(timevals)), axis=-1) + + tid = cmor.axis(table_entry=str(time_dim[0]), units=getattr(ds.variables["time"], "units"), + coord_vals=timevals, cell_bounds=time_bnd) + setattr(task, "time_axis", tid) + + return + + +# Creates longitude and latitude cmor-axes for LPJ-Guess variables Seems this is enough for cmor according to the +# cmor documentation, and there is indeed no problem at least when passing the data through the CMORization functions +def create_grid(ds, task): + lons = ds.variables["lon"][:] + lats = ds.variables["lat"][:] + + # create the cell bounds since they are required: we have a 512x256 grid with longitude from 0 to 360 and + # latitude from -90 to 90, i.e. resolution ~0.7 longitude values start from 0 so the cell lower bounds are the + # same as lons (have to be: cmor requires monotonically increasing values so 359.X to 0.X is not allowed) + lon_half_dists = np.insert(0.5 * (lons[1:] - lons[:-1]), 0, [0.5 * (lons[1] - lons[0])]) + lon_bnd = np.stack((lons[:] - lon_half_dists, lons[:] + lon_half_dists), axis=-1) + + # creating latitude bounds so that latitude values are the (approximate) mid-points of the cell lower and upper + # bounds + if target_grid_ == "T159": + lat_bnd_lower = np.array([-90.0, -88.47338107]) + nsteps = 159 + step_length = 1.11991622 + elif target_grid_ == "T255": + lat_bnd_lower = np.array([-90.0, -89.12264116]) + nsteps = 255 + step_length = 0.70175308 + for i in range(1, nsteps): + lat_bnd_lower = np.append(lat_bnd_lower, lat_bnd_lower[i] + step_length) + lat_bnd_upper = np.append(lat_bnd_lower[1:], 90.0) + lat_bnd = np.stack((lat_bnd_lower, lat_bnd_upper), axis=-1) + + lon_id = cmor.axis(table_entry="longitude", units=getattr(ds.variables["lon"], "units"), + coord_vals=lons, cell_bounds=lon_bnd) + lat_id = cmor.axis(table_entry="latitude", units=getattr(ds.variables["lat"], "units"), + coord_vals=lats, cell_bounds=lat_bnd) + + return lon_id, lat_id + + +# Unit conversion utility method (not really needed but carried over from nemo2cmor anyway) +def get_conversion_factor(conversion): + global log + if not conversion: + return 1.0 + # if conversion == "tossqfix": + # return 1.0 + if conversion == "frac2percent": + return 100.0 + if conversion == "percent2frac": + return 0.01 + log.error("Unknown explicit unit conversion %s will be ignored" % conversion) + return 1.0 + + +# Creates a variable in the cmor package +def create_cmor_variable(task, dataset, axes): + srcvar = task.source.variable() + unit = getattr(task.target, "units") + if hasattr(task.target, "positive") and len(task.target.positive) != 0: + return cmor.variable(table_entry=str(task.target.out_name), units=str(unit), axis_ids=axes, + original_name=str(srcvar), positive=task.target.positive) + else: + return cmor.variable(table_entry=str(task.target.out_name), units=str(unit), axis_ids=axes, + original_name=str(srcvar)) + +# Creates a cmor landUse axis +def create_landuse_axis(task, lpjgfile, freq): + if landuse_requested_: + landusevals = landuse_requested_ + else: + with open(lpjgfile) as f: + header = next(f).split() + if freq.startswith("yr"): + landusevals = header[3:] + else: + landusevals = header[4:] + + LU_id = cmor.axis(table_entry="landUse", units='none', coord_vals=landusevals) + + setattr(task, "landUse_axis", LU_id) + return + + +# Creates a cmor vegtype axis +def create_vegtype_axis(task, lpjgfile, freq): + with open(lpjgfile) as f: + header = next(f).split() + if freq.startswith("yr"): + pfts = header[3:] + else: + pfts = header[4:] + vegtypevals = pfts + + veg_id = cmor.axis(table_entry="vegtype", units='none', coord_vals=vegtypevals) + + setattr(task, "vegtype_axis", veg_id) + return + + +# Creates a cmor sdepth axis +def create_sdepth_axis(task, lpjgfile, freq): + log.info("Creating depth axis using file %s..." % lpjgfile) + with open(lpjgfile) as f: + header = next(f).split() + if freq.startswith("yr"): + depths = header[3:] + else: + depths = header[4:] + + #ensure downward compatibility after output-headers from LPJG changed + pretxt = "Depth" + try: + depths[0].index(pretxt) + shift=len(pretxt) + except ValueError: + shift = 0 + + sdepthvals = np.array([float(d[shift:]) for d in depths]) + + sdepth_bnd_lower = np.append(0, sdepthvals[:-1]) + sdepth_bnd = np.stack((sdepth_bnd_lower, sdepthvals), axis=-1) + + sdep_id = cmor.axis(table_entry="sdepth", units='m', coord_vals=sdepthvals, + cell_bounds=sdepth_bnd) + + setattr(task, "sdepth_axis", sdep_id) + return + +# Creates a cmor singleton depth axis +def create_singleton_axis(task, lpjgfile, lpjgcol, singleton_value): + log.info("Creating singleton axis for %s using file %s..." % (lpjgcol,lpjgfile)) + + axis_name = "singleton_"+lpjgcol+"_axis" + single_id = cmor.axis(table_entry=lpjgcol, units='none', coord_vals=[singleton_value]) + + setattr(task, axis_name, single_id) + return \ No newline at end of file diff --git a/ece2cmor/ece2cmor3/nemo2cmor.py b/ece2cmor/ece2cmor3/nemo2cmor.py new file mode 100644 index 0000000000000000000000000000000000000000..de303f2c20670cf70ce7d6551327a09ac70dc092 --- /dev/null +++ b/ece2cmor/ece2cmor3/nemo2cmor.py @@ -0,0 +1,741 @@ +import cmor +import logging +import netCDF4 +import numpy +import os +import re + +from . import cmor_target +from . import cmor_task +from . import cmor_utils + +from datetime import datetime, timedelta +from .__load_nemo_vertices__ import load_vertices_from_file + +timeshift = timedelta(0) +# Apply timeshift for instance in case you want manually to add a shift for the piControl: +# timeshift = datetime(2260,1,1) - datetime(1850,1,1) + +# Logger object +log = logging.getLogger(__name__) + +# Test mode: accept oddly-sized test grids etc. +test_mode_ = False + +extra_axes = {"basin": {"ncdim": "3basin", + "ncvals": ["global_ocean", "atlantic_arctic_ocean", "indian_pacific_ocean"]}, + "typesi": {"ncdim": "ncatice"}, + "iceband": {"ncdim": "ncatice", + "ncunits": "m", + "ncvals": [0.277, 0.7915, 1.635, 2.906, 3.671], + "ncbnds": [0., 0.454, 1.129, 2.141, 3.671, 99.0]}} + +# Experiment name +exp_name_ = None + +# Reference date +ref_date_ = None + +# Table root +table_root_ = None + +# Files that are being processed in the current execution loop. +nemo_files_ = [] + +# Nemo bathymetry file +bathy_file_ = None + +# Nemo bathymetry grid +bathy_grid_ = "opa_grid_T_2D" + +# Nemo basin file +basin_file_ = None + +# Nemo subbasin grid +basin_grid_ = "opa_grid_T_2D" + +# Dictionary of NEMO grid type with cmor grid id. +grid_ids_ = {} + +# List of depth axis ids with cmor grid id. +depth_axes_ = {} + +# Dictionary of output frequencies with cmor time axis id. +time_axes_ = {} + +# Dictionary of sea-ice output types, 1 by default. +type_axes_ = {} + +# Dictionary of latitude axes ids for meridional variables. +lat_axes_ = {} + +# Dictionary of masks +nemo_masks_ = {} + + +# Initializes the processing loop. +def initialize(path, expname, tableroot, refdate, testmode=False): + global log, nemo_files_, bathy_file_, basin_file_, exp_name_, table_root_, ref_date_, test_mode_ + exp_name_ = expname + table_root_ = tableroot + ref_date_ = refdate + test_mode_ = testmode + nemo_files_ = cmor_utils.find_nemo_output(path, expname) + expdir = os.path.abspath(os.path.join(os.path.realpath(path), "..", "..", "..")) + ofxdir = os.path.abspath(os.path.join(os.path.realpath(path), "..", "ofx-data")) + bathy_file_ = os.path.join(ofxdir, "bathy_meter.nc") + if not os.path.isfile(bathy_file_): + # Look in env or ec-earth run directory + bathy_file_ = os.environ.get("ECE2CMOR3_NEMO_BATHY_METER", os.path.join(expdir, "bathy_meter.nc")) + if not os.path.isfile(bathy_file_): + log.warning("Nemo bathymetry file %s does not exist...variable deptho in Ofx will be dismissed " + "whenever encountered" % bathy_file_) + bathy_file_ = None + basin_file_ = os.path.join(ofxdir, "subbasins.nc") + if not os.path.isfile(basin_file_): + # Look in env or ec-earth run directory + basin_file_ = os.environ.get("ECE2CMOR3_NEMO_SUBBASINS", os.path.join(expdir, "subbasins.nc")) + if not os.path.isfile(basin_file_): + log.warning("Nemo subbasin file %s does not exist...variable basin in Ofx will be dismissed " + "whenever encountered" % basin_file_) + basin_file_ = None + return True + + +# Resets the module globals. +def finalize(): + global nemo_files_, grid_ids_, depth_axes_, time_axes_ + nemo_files_ = [] + grid_ids_ = {} + depth_axes_ = {} + time_axes_ = {} + + +# Executes the processing loop. +def execute(tasks): + global log, time_axes_, depth_axes_, table_root_ + log.info("Looking up variables in files...") + tasks = lookup_variables(tasks) + log.info("Creating NEMO grids in CMOR...") + create_grids(tasks) + log.info("Creating NEMO masks...") + create_masks(tasks) + log.info("Executing %d NEMO tasks..." % len(tasks)) + log.info("Cmorizing NEMO tasks...") + task_groups = cmor_utils.group(tasks, lambda tsk1: getattr(tsk1, cmor_task.output_path_key, None)) + for filename, task_group in task_groups.items(): + dataset = netCDF4.Dataset(filename, 'r') + task_sub_groups = cmor_utils.group(task_group, lambda tsk2: tsk2.target.table) + for table, task_list in task_sub_groups.items(): + log.info("Start cmorization of %s in table %s" % (','.join([t.target.variable for t in task_list]), table)) + try: + tab_id = cmor.load_table("_".join([table_root_, table]) + ".json") + cmor.set_table(tab_id) + except Exception as e: + log.error("CMOR failed to load table %s, skipping variables %s. Reason: %s" + % (table, ','.join([tsk3.target.variable for tsk3 in task_list]), e.message)) + continue + if table not in time_axes_: + log.info("Creating time axes for table %s from data in %s..." % (table, filename)) + create_time_axes(dataset, task_list, table) + if table not in depth_axes_: + log.info("Creating depth axes for table %s from data in %s ..." % (table, filename)) + create_depth_axes(dataset, task_list, table) + if table not in type_axes_: + log.info("Creating extra axes for table %s from data in %s ..." % (table, filename)) + create_type_axes(dataset, task_list, table) + for task in task_list: + execute_netcdf_task(dataset, task) + dataset.close() + + +def lookup_variables(tasks): + valid_tasks = [] + for task in tasks: + if (task.target.table, task.target.variable) == ("Ofx", "deptho"): + if bathy_file_ is None: + log.error("Could not use bathymetry file for variable deptho in table Ofx: task skipped.") + task.set_failed() + else: + setattr(task, cmor_task.output_path_key, bathy_file_) + valid_tasks.append(task) + continue + if (task.target.table, task.target.variable) == ("Ofx", "basin"): + if basin_file_ is None: + log.error("Could not use subbasin file for variable basin in table Ofx: task skipped.") + task.set_failed() + else: + setattr(task, cmor_task.output_path_key, basin_file_) + valid_tasks.append(task) + continue + file_candidates = select_freq_files(task.target.frequency, task.target.variable) + results = [] + for ncfile in file_candidates: + ds = netCDF4.Dataset(ncfile) + if task.source.variable() in ds.variables: + results.append(ncfile) + ds.close() + if len(results) == 0: + log.error('Variable {:20} in table {:10} was not found in the NEMO output files: task skipped.' + .format(task.source.variable(), task.target.table)) + task.set_failed() + continue + if len(results) > 1: + log.error("Variable %s needed for %s in table %s was found in multiple NEMO output files %s... " + "dismissing task" % (task.source.variable(), task.target.variable, task.target.table, + ','.join(results))) + task.set_failed() + continue + setattr(task, cmor_task.output_path_key, results[0]) + valid_tasks.append(task) + return valid_tasks + + +def create_basins(target, dataset): + meanings = {"pacmsk": "pacific_ocean", "indmsk": "indian_ocean", "atlmsk": "atlantic_ocean"} + flagvals = [int(s) for s in getattr(target, "flag_values", "").split()] + basins = getattr(target, "flag_meanings", "").split() + data = numpy.copy(dataset.variables["glomsk"][...]) + missval = int(getattr(target, cmor_target.int_missval_key)) + data[data > 0] = missval + for var, basin in meanings.items(): + if var in list(dataset.variables.keys()) and basin in basins: + flagval = flagvals[basins.index(basin)] + arr = dataset.variables[var][...] + data[arr > 0] = flagval + return data, dataset.variables["glomsk"].dimensions, missval + + +# Performs a single task. +def execute_netcdf_task(dataset, task): + global log + task.status = cmor_task.status_cmorizing + grid_axes = [] if not hasattr(task, "grid_id") else [getattr(task, "grid_id")] + z_axes = getattr(task, "z_axes", []) + t_axes = [] if not hasattr(task, "time_axis") else [getattr(task, "time_axis")] + type_axes = [getattr(task, dim + "_axis") for dim in list(type_axes_.get(task.target.table, {}).keys()) if + hasattr(task, dim + "_axis")] + # TODO: Read axes order from netcdf file! + axes = grid_axes + z_axes + type_axes + t_axes + srcvar = task.source.variable() + if task.target.variable == "basin": + ncvar, dimensions, missval = create_basins(task.target, dataset) + else: + ncvar = dataset.variables[srcvar] + dimensions = ncvar.dimensions + missval = getattr(ncvar, "missing_value", getattr(ncvar, "_FillValue", numpy.nan)) + varid = create_cmor_variable(task, srcvar, ncvar, axes) + time_dim, index, time_sel = -1, 0, None + for d in dimensions: + if d.startswith("time"): + time_dim = index + break + index += 1 + time_sel = None + if len(t_axes) > 0 > time_dim: + for d in dataset.dimensions: + if d.startswith("time"): + time_sel = list(range(len(d))) # ensure copying of constant fields + break + if len(grid_axes) == 0: # Fix for global averages/sums + vals = numpy.ma.masked_equal(ncvar[...], missval) + ncvar = numpy.mean(vals, axis=(1, 2)) + factor, term = get_conversion_constants(getattr(task, cmor_task.conversion_key, None)) + log.info('Cmorizing variable {:20} in table {:7} in file {}' + .format(srcvar, task.target.table, getattr(task, cmor_task.output_path_key))) + mask = getattr(task.target, cmor_target.mask_key, None) + if mask is not None: + mask = nemo_masks_.get(mask, None) + cmor_utils.netcdf2cmor(varid, ncvar, time_dim, factor, term, + missval=getattr(task.target, cmor_target.missval_key, missval), + time_selection=time_sel, + mask=mask) + cmor.close(varid, file_name=True) + task.status = cmor_task.status_cmorized + + +# Returns the constants A,B for unit conversions of type y = A*x + B +def get_conversion_constants(conversion): + global log + if not conversion: + return 1.0, 0.0 + if conversion == "tossqfix": + return 1.0, 0.0 + if conversion == "frac2percent": + return 100.0, 0.0 + if conversion == "percent2frac": + return 0.01, 0.0 + if conversion == "K2degC": + return 1.0, -273.15 + if conversion == "degC2K": + return 1.0, 273.15 + if conversion == "sv2kgps": + return 1.e+9, 0. + log.error("Unknown explicit unit conversion %s will be ignored" % conversion) + return 1.0, 0.0 + + +# Creates a variable in the cmor package +def create_cmor_variable(task, srcvar, ncvar, axes): + unit = getattr(ncvar, "units", None) + if (not unit) or hasattr(task, cmor_task.conversion_key): # Explicit unit conversion + unit = getattr(task.target, "units") + if hasattr(task.target, "positive") and len(task.target.positive) != 0: + return cmor.variable(table_entry=str(task.target.variable), units=str(unit), axis_ids=axes, + original_name=str(srcvar), positive=getattr(task.target, "positive")) + else: + return cmor.variable(table_entry=str(task.target.variable), units=str(unit), axis_ids=axes, + original_name=str(srcvar)) + + +# Creates all depth axes for the given table from the given files +def create_depth_axes(ds, tasks, table): + global depth_axes_ + if table not in depth_axes_: + depth_axes_[table] = {} + log.info("Creating depth axes for table %s using file %s..." % (table, ds.filepath())) + table_depth_axes = depth_axes_[table] + other_nc_axes = ["time_counter", "x", "y"] + [extra_axes[k]["ncdim"] for k in list(extra_axes.keys())] + for task in tasks: + z_axes = [] + if task.source.variable() in ds.variables: + z_axes = [d for d in ds.variables[task.source.variable()].dimensions if d not in other_nc_axes] + z_axis_ids = [] + for z_axis in z_axes: + if z_axis not in ds.variables: + log.error("Cannot find variable %s in %s for vertical axis construction" % (z_axis, ds.filepath())) + continue + zvar = ds.variables[z_axis] + axis_type = "half" if cmor_target.get_z_axis(task.target)[0] == "olevhalf" else "full" + key = "-".join([getattr(zvar, "long_name"), axis_type]) + if key in table_depth_axes: + z_axis_ids.append(table_depth_axes[key]) + else: + depth_bounds = ds.variables[getattr(zvar, "bounds", None)] + if depth_bounds is None: + log.warning("No depth bounds found in file %s, taking midpoints" % (ds.filepath())) + depth_bounds = numpy.zeros((len(zvar[:]), 2), dtype=numpy.float64) + depth_bounds[1:, 0] = 0.5 * (zvar[0:-1] + zvar[1:]) + depth_bounds[0:-1, 1] = depth_bounds[1:, 0] + depth_bounds[0, 0] = zvar[0] + depth_bounds[-1, 1] = zvar[-1] + entry = "depth_coord_half" if cmor_target.get_z_axis(task.target)[0] == "olevhalf" else "depth_coord" + units = getattr(zvar, "units", "") + if len(units) == 0: + log.warning("Assigning unit meters to depth coordinate %s without units" % entry) + units = "m" + b = depth_bounds[:, :] + b[b < 0] = 0 + z_axis_id = cmor.axis(table_entry=entry, units=units, coord_vals=zvar[:], cell_bounds=b) + z_axis_ids.append(z_axis_id) + table_depth_axes[key] = z_axis_id + setattr(task, "z_axes", z_axis_ids) + + +def create_time_axes(ds, tasks, table): + global time_axes_ + if table == "Ofx": + return + if table not in time_axes_: + time_axes_[table] = {} + log.info("Creating time axis for table %s using file %s..." % (table, ds.filepath())) + table_time_axes = time_axes_[table] + for task in tasks: + tgtdims = getattr(task.target, cmor_target.dims_key) + for time_dim in [d for d in list(set(tgtdims.split())) if d.startswith("time")]: + if time_dim in table_time_axes: + time_operator = getattr(task.target, "time_operator", ["point"]) + nc_operator = getattr(ds.variables[task.source.variable()], "online_operation", "instant") + if time_operator[0] in ["point", "instant"] and nc_operator != "instant": + log.warning("Cmorizing variable %s with online operation attribute %s in %s to %s with time " + "operation %s" % (task.source.variable(), nc_operator, ds.filepath(), str(task.target), + time_operator[0])) + if time_operator[0] in ["mean", "average"] and nc_operator != "average": + log.warning("Cmorizing variable %s with online operation attribute %s in %s to %s with time " + "operation %s" % (task.source.variable(), nc_operator, ds.filepath(), str(task.target), + time_operator[0])) + tid = table_time_axes[time_dim] + else: + times, time_bounds, units, calendar = read_times(ds, task) + if times is None: + log.error("Failed to read time axis information from file %s, skipping variable %s in table %s" % + (ds.filepath(), task.target.variable, task.target.table)) + task.set_failed() + continue + tstamps, tunits = cmor_utils.num2num(times, ref_date_, units, calendar, timeshift) + if calendar != "proleptic_gregorian": + cmor.set_cur_dataset_attribute("calendar", calendar) + if time_bounds is None: + tid = cmor.axis(table_entry=str(time_dim), units=tunits, coord_vals=tstamps) + else: + tbounds, tbndunits = cmor_utils.num2num(time_bounds, ref_date_, units, calendar, timeshift) + tid = cmor.axis(table_entry=str(time_dim), units=tunits, coord_vals=tstamps, + cell_bounds=tbounds) + table_time_axes[time_dim] = tid + setattr(task, "time_axis", tid) + return table_time_axes + + +# Creates a time axis for the currently loaded table +def read_times(ds, task): + def get_time_bounds(v): + bnd = getattr(v, "bounds", None) + if bnd in ds.variables: + res = ds.variables[bnd][:, :] + else: + res = numpy.empty([len(v[:]), 2]) + res[1:, 0] = 0.5 * (v[0:-1] + v[1:]) + res[:-1, 1] = res[1:, 0] + res[0, 0] = 1.5 * v[0] - 0.5 * v[1] + res[-1, 1] = 1.5 * v[-1] - 0.5 * v[-2] + return res + + vals, bndvals, units, calendar = None, None, None, None + if cmor_target.is_instantaneous(task.target): + ncvar = ds.variables.get("time_instant", None) + if ncvar is not None: + vals, units, calendar = ncvar[:], getattr(ncvar, "units", None), getattr(ncvar, "calendar", None) + else: + log.warning("Could not find time_instant variable in %s, looking for generic time..." % ds.filepath()) + for varname, ncvar in list(ds.variables.items()): + if getattr(ncvar, "standard_name", "").lower() == "time": + log.warning("Found variable %s for instant time variable in file %s" % (varname, ds.filepath())) + vals, units, calendar = ncvar[:], getattr(ncvar, "units", None), getattr(ncvar, "calendar", None) + break + if vals is None: + log.error("Could not find time variable in %s for %s... giving up" % (ds.filepath(), str(task.target))) + else: + ncvar = ds.variables.get("time_centered", None) + if ncvar is not None: + vals, bndvals, units, calendar = ncvar[:], get_time_bounds(ncvar), getattr(ncvar, "units", None), \ + getattr(ncvar, "calendar", None) + else: + log.warning("Could not find time_centered variable in %s, looking for generic time..." % ds.filepath()) + for varname, ncvar in list(ds.variables.items()): + if getattr(ncvar, "standard_name", "").lower() == "time": + log.warning("Found variable %s for instant time variable in file %s" % (varname, ds.filepath())) + vals, bndvals, units, calendar = ncvar[:], get_time_bounds(ncvar), getattr(ncvar, "units", None), \ + getattr(ncvar, "calendar", None) + break + if vals is None: + log.error("Could not find time variable in %s for %s... giving up" % (ds.filepath(), str(task.target))) + # Fix for proleptic gregorian in XIOS output as gregorian + if calendar is None or calendar == "gregorian": + calendar = "proleptic_gregorian" + return vals, bndvals, units, calendar + + +def create_type_axes(ds, tasks, table): + global type_axes_ + if table not in type_axes_: + type_axes_[table] = {} + log.info("Creating extra axes for table %s using file %s..." % (table, ds.filepath())) + table_type_axes = type_axes_[table] + for task in tasks: + tgtdims = set(getattr(task.target, cmor_target.dims_key).split()).intersection(list(extra_axes.keys())) + for dim in tgtdims: + if dim in table_type_axes: + axis_id = table_type_axes[dim] + else: + axisinfo = extra_axes[dim] + nc_dim_name = axisinfo["ncdim"] + if nc_dim_name in ds.dimensions: + ncdim, ncvals = ds.dimensions[nc_dim_name], axisinfo.get("ncvals", []) + if len(ncdim) == len(ncvals): + axis_values, axis_unit = ncvals, axisinfo.get("ncunits", "1") + else: + if any(ncvals): + log.error("Ece2cmor values for extra axis %s, %s, do not match dimension %s length %d found" + " in file %s, taking values found in file" % (dim, str(ncvals), nc_dim_name, + len(ncdim), ds.filepath())) + ncvars = [v for v in ds.variables if list(ds.variables[v].dimensions) == [ncdim]] + axis_values, axis_unit = list(range(len(ncdim))), "1" + if any(ncvars): + if len(ncvars) > 1: + log.warning("Multiple axis variables found for dimension %s in file %s, choosing %s" % + (nc_dim_name, ds.filepath(), ncvars[0])) + axis_values, axis_unit = list(ncvars[0][:]), getattr(ncvars[0], "units", None) + else: + log.error("Dimension %s could not be found in file %s, inserting using length-one dimension " + "instead" % (nc_dim_name, ds.filepath())) + axis_values, axis_unit = [1], "1" + if "ncbnds" in axisinfo: + bndlist = axisinfo["ncbnds"] + if len(bndlist) - 1 != len(axis_values): + log.error("Length of axis bounds %d does not correspond to axis coordinates %s" % + (len(bndlist) - 1, str(axis_values))) + bnds = numpy.zeros((len(axis_values), 2)) + bnds[:, 0] = bndlist[:-1] + bnds[:, 1] = bndlist[1:] + axis_id = cmor.axis(table_entry=dim, coord_vals=axis_values, units=axis_unit, cell_bounds=bnds) + else: + axis_id = cmor.axis(table_entry=dim, coord_vals=axis_values, units=axis_unit) + table_type_axes[dim] = axis_id + setattr(task, dim + "_axis", axis_id) + return table_type_axes + + +# Selects files with data with the given frequency +def select_freq_files(freq, varname): + global exp_name_, nemo_files_ + if freq == "fx": + nemo_freq = "1y" + elif freq in ["yr", "yrPt"]: + nemo_freq = "1y" + elif freq == "monPt": + nemo_freq = "1m" + # TODO: Support climatological variables + # elif freq == "monC": + # nemo_freq = "1m" # check + elif freq.endswith("mon"): + n = 1 if freq == "mon" else int(freq[:-3]) + nemo_freq = str(n) + "m" + elif freq.endswith("day"): + n = 1 if freq == "day" else int(freq[:-3]) + nemo_freq = str(n) + "d" + elif freq.endswith("hr"): + n = 1 if freq == "hr" else int(freq[:-2]) + nemo_freq = str(n) + "h" + elif freq.endswith("hrPt"): + n = 1 if freq == "hrPt" else int(freq[:-4]) + nemo_freq = str(n) + "h" + else: + log.error('Could not associate cmor frequency {:7} with a ' + 'nemo output frequency for variable {}'.format(freq, varname)) + return [] + return [f for f in nemo_files_ if cmor_utils.get_nemo_frequency(f, exp_name_) == nemo_freq] + + +def create_masks(tasks): + global nemo_masks_ + for task in tasks: + mask = getattr(task.target, cmor_target.mask_key, None) + if mask is not None and mask not in list(nemo_masks_.keys()): + for nemo_file in nemo_files_: + ds = netCDF4.Dataset(nemo_file, 'r') + maskvar = ds.variables.get(mask, None) + if maskvar is not None: + dims = maskvar.dimensions + if len(dims) == 2: + nemo_masks_[mask] = numpy.logical_not(numpy.ma.getmask(maskvar[...])) + elif len(dims) == 3: + nemo_masks_[mask] = numpy.logical_not(numpy.ma.getmask(maskvar[0, ...])) + else: + log.error("Could not create mask %s from nc variable with %d dimensions" % (mask, len(dims))) + + +# Reads all the NEMO grid data from the input files. +def create_grids(tasks): + task_by_file = cmor_utils.group(tasks, lambda tsk: getattr(tsk, cmor_task.output_path_key, None)) + + def get_nemo_grid(f): + if f == bathy_file_: + return bathy_grid_ + if f == basin_file_: + return basin_grid_ + return cmor_utils.get_nemo_grid(f) + + file_by_grid = cmor_utils.group(list(task_by_file.keys()), get_nemo_grid) + for grid_name, file_paths in file_by_grid.items(): + output_files = set(file_paths) - {bathy_file_, basin_file_, None} + if any(output_files): + filename = list(output_files)[0] + else: + filename = file_paths[0] + log.warning("Using the file %s of EC-Earth to build %s due to lack of other output" % (filename, grid_name)) + grid = read_grid(filename) + write_grid(grid, [t for fname in file_paths for t in task_by_file[fname]]) + + +# Reads a particular NEMO grid from the given input file. +def read_grid(ncfile): + ds = None + try: + ds = netCDF4.Dataset(ncfile, 'r') + name = getattr(ds.variables["nav_lon"], "nav_model", cmor_utils.get_nemo_grid(ncfile)) + if name == "scalar": + return None + lons = ds.variables["nav_lon"][:, :] if "nav_lon" in ds.variables else [] + lats = ds.variables["nav_lat"][:, :] if "nav_lat" in ds.variables else [] + if len(lons) == 0 and len(lats) == 0: + return None + return nemo_grid(name, lons, lats) + finally: + if ds is not None: + ds.close() + + +# Transfers the grid to cmor. +def write_grid(grid, tasks): + global grid_ids_, lat_axes_ + nx = grid.lons.shape[0] + ny = grid.lons.shape[1] + if ny == 1: + if nx == 1: + log.error("The grid %s consists of a single point which is not supported, dismissing variables %s" % + (grid.name, ','.join([t.target.variable + " in " + t.target.table for t in tasks]))) + return + for task in tasks: + dims = getattr(task.target, "space_dims", "") + if "longitude" in dims: + log.error("Variable %s in %s has longitude dimension, but this is absent in the ocean output file of " + "grid %s" % (task.target.variable, task.target.table, grid.name)) + task.set_failed() + continue + latnames = {"latitude", "gridlatitude"} + latvars = list(set(dims).intersection(set(latnames))) + if not any(latvars): + log.error("Variable %s in %s has no (grid-)latitude defined where its output grid %s does, dismissing " + "it" % (task.target.variable, task.target.table, grid.name)) + task.set_failed() + continue + if len(latvars) > 1: + log.error("Variable %s in %s with double-latitude dimensions %s is not supported" % + (task.target.variable, task.target.table, str(dims))) + task.set_failed() + continue + key = (task.target.table, grid.name, latvars[0]) + if key not in list(lat_axes_.keys()): + cmor.load_table(table_root_ + "_" + task.target.table + ".json") + lat_axis_id = cmor.axis(table_entry=latvars[0], coord_vals=grid.lats[:, 0], units="degrees_north", + cell_bounds=grid.vertex_lats) + lat_axes_[key] = lat_axis_id + else: + lat_axis_id = lat_axes_[key] + setattr(task, "grid_id", lat_axis_id) + else: + if grid.name not in grid_ids_: + cmor.load_table(table_root_ + "_grids.json") + i_index_id = cmor.axis(table_entry="j_index", units="1", coord_vals=numpy.array(list(range(1, nx + 1)))) + j_index_id = cmor.axis(table_entry="i_index", units="1", coord_vals=numpy.array(list(range(1, ny + 1)))) + grid_id = cmor.grid(axis_ids=[i_index_id, j_index_id], + latitude=grid.lats, + longitude=grid.lons, + latitude_vertices=grid.vertex_lats, + longitude_vertices=grid.vertex_lons) + grid_ids_[grid.name] = grid_id + else: + grid_id = grid_ids_[grid.name] + for task in tasks: + dims = getattr(task.target, "space_dims", []) + if "latitude" in dims and "longitude" in dims: + setattr(task, "grid_id", grid_id) + else: + log.error("Variable %s in %s has output on a 2d horizontal grid, but its requested dimensions are %s" % + (task.target.variable, task.target.table, str(dims))) + task.set_failed() + + +# Get the NEMO grid type utility: +def get_grid_type(grid_name): + if grid_name == "icemod": + return 't' + expr = re.compile(r"(?i)(zoom|vert)?_sum$") + result = re.search(expr, grid_name) + if result is not None: + return 't' + expr = re.compile(r"(?i)grid_((T|U|V|W)_(2|3)D)|((T|U|V|W)$)") + result = re.search(expr, grid_name) + if not result: + return None + match = result.group(1) + if match is None: + match = result.group(0) + result = match[0].lower() + return 't' if result == 'w' else result + + +# Class holding a NEMO grid, including bounds arrays +class nemo_grid(object): + + def __init__(self, name_, lons_, lats_): + self.name = name_ + flon = numpy.vectorize(lambda x: x % 360) + flat = numpy.vectorize(lambda x: (x + 90) % 180 - 90) + self.lons = flon(nemo_grid.smoothen(lons_)) + input_lats = lats_ + # Dirty hack for XIOS bug in zonal grid, yielding incorrect last latitude (see issue #669) + if input_lats.shape[1] == 1: + if input_lats.shape[0] > 2 and input_lats[-1, 0] <= input_lats[-2, 0]: + input_lats[-1, 0] = input_lats[-2, 0] + (input_lats[-2, 0] - input_lats[-3, 0]) + self.lats = flat(input_lats) + gridtype = get_grid_type(name_) + if input_lats.shape[0] == 1 or input_lats.shape[1] == 1 or gridtype is None: + # In the case of 1D horizontal case we keep the old method: + log.info("Using fallback to the old midpoint calculation method for grid %s with shape %s" % + (self.name, input_lats.shape)) + self.vertex_lons = nemo_grid.create_vertex_lons(lons_) + self.vertex_lats = nemo_grid.create_vertex_lats(input_lats) + else: + self.vertex_lons, self.vertex_lats = load_vertices_from_file(gridtype, input_lats.shape) + if self.vertex_lons is None or self.vertex_lats is None: + if test_mode_: + log.info("Using fallback to the old midpoint calculation method for grid %s with shape %s" % + (self.name, input_lats.shape)) + self.vertex_lons = nemo_grid.create_vertex_lons(lons_) + self.vertex_lats = nemo_grid.create_vertex_lats(input_lats) + else: + raise Exception("Vertices could not be loaded from ece2cmor3 nc files") + + @staticmethod + def create_vertex_lons(a): + ny = a.shape[0] + nx = a.shape[1] + f = numpy.vectorize(lambda x: x % 360) + if nx == 1: # Longitudes were integrated out + if ny == 1: + return f(numpy.array([a[0, 0]])) + return numpy.zeros([ny, 2]) + b = numpy.zeros([ny, nx, 4]) + b[:, 1:nx, 0] = f(0.5 * (a[:, 0:nx - 1] + a[:, 1:nx])) + b[:, 0, 0] = f(1.5 * a[:, 0] - 0.5 * a[:, 1]) + b[:, 0:nx - 1, 1] = b[:, 1:nx, 0] + b[:, nx - 1, 1] = f(1.5 * a[:, nx - 1] - 0.5 * a[:, nx - 2]) + b[:, :, 2] = b[:, :, 1] + b[:, :, 3] = b[:, :, 0] + return b + + @staticmethod + def create_vertex_lats(a): + ny = a.shape[0] + nx = a.shape[1] + f = numpy.vectorize(lambda x: (x + 90) % 180 - 90) + if nx == 1: # Longitudes were integrated out + if ny == 1: + return f(numpy.array([a[0, 0]])) + b = numpy.zeros([ny, 2]) + b[1:ny, 0] = f(0.5 * (a[0:ny - 1, 0] + a[1:ny, 0])) + b[0, 0] = f(2 * a[0, 0] - b[1, 0]) + b[0:ny - 1, 1] = b[1:ny, 0] + b[ny - 1, 1] = f(1.5 * a[ny - 1, 0] - 0.5 * a[ny - 2, 0]) + return b + b = numpy.zeros([ny, nx, 4]) + b[1:ny, :, 0] = f(0.5 * (a[0:ny - 1, :] + a[1:ny, :])) + b[0, :, 0] = f(2 * a[0, :] - b[1, :, 0]) + b[:, :, 1] = b[:, :, 0] + b[0:ny - 1, :, 2] = b[1:ny, :, 0] + b[ny - 1, :, 2] = f(1.5 * a[ny - 1, :] - 0.5 * a[ny - 2, :]) + b[:, :, 3] = b[:, :, 2] + return b + + @staticmethod + def modlon2(x, a): + if x < a: + return x + 360.0 + else: + return x + + @staticmethod + def smoothen(a): + nx = a.shape[0] + ny = a.shape[1] + if ny == 1: + return a + mod = numpy.vectorize(nemo_grid.modlon2) + b = numpy.empty([nx, ny]) + for i in range(0, nx): + x = a[i, 1] + b[i, 0] = a[i, 0] + b[i, 1] = x + b[i, 2:] = mod(a[i, 2:], x) + return b diff --git a/ece2cmor/ece2cmor3/postproc.py b/ece2cmor/ece2cmor3/postproc.py new file mode 100644 index 0000000000000000000000000000000000000000..46ef1514f66e89ed54dc744c0abb2e8684bf9bd1 --- /dev/null +++ b/ece2cmor/ece2cmor3/postproc.py @@ -0,0 +1,419 @@ +import logging +import threading +import re +import queue +import os + +from ece2cmor3 import cmor_task + +from . import grib_file +from . import cdoapi +from . import cmor_source +from . import cmor_target + +# Log object +log = logging.getLogger(__name__) + +# Threading parameters +cdo_threads = 4 + +# Flags to control whether to execute cdo. +skip = 1 +append = 2 +recreate = 3 +modes = [skip, append, recreate] + +# Mode for post-processing +mode = 3 + + +# Post-processes a task +def post_process(task, path, do_postprocess): + command = create_command(task) + output_path = get_output_path(task, path) + if do_postprocess: + if task.status != cmor_task.status_failed: + filepath = apply_command(command, task, output_path) + else: + filepath = None + else: + filepath = 1 + if filepath is not None and task.status != cmor_task.status_failed: + setattr(task, cmor_task.output_path_key, output_path) + + +def get_output_path(task, tmp_path): + return os.path.join(tmp_path, task.target.variable + "_" + task.target.table + ".nc") if tmp_path else None + + +# Checks whether the task grouping makes sense: only tasks for the same variable and frequency can be safely grouped. +def validate_task_list(tasks): + global log + freqset = set([cmor_target.get_freq(t.target) for t in tasks]) + if len(freqset) != 1: + log.error("Multiple target variables joined to single cdo command: %s" % str(freqset)) + return False + return True + + +# Creates a cdo postprocessing command for the given IFS task. +def create_command(task): + if not isinstance(task.source, cmor_source.ifs_source): + raise Exception("This function can only be used to create cdo commands for IFS tasks") + if hasattr(task, "paths") and len(getattr(task, "paths")) > 1: + raise Exception("Multiple merged cdo commands are not supported yet") + result = cdoapi.cdo_command() if hasattr(task.source, cmor_source.expression_key) else cdoapi.cdo_command( + code=task.source.get_grib_code().var_id) + add_grid_operators(result, task) + add_expr_operators(result, task) + add_time_operators(result, task) + add_level_operators(result, task) + return result + + +# Executes the command and replaces the path attribute for all tasks in the tasklist +# to the output of cdo. This path is constructed from the basepath and the first task. +def apply_command(command, task, output_path=None): + global log, cdo_threads, skip, append, recreate, mode + if output_path is None and mode in [skip, append]: + log.warning( + "Executing post-processing in skip/append mode without path given: this will skip the entire task.") + input_files = getattr(task, cmor_task.filter_output_key, []) + if not any(input_files): + log.error("Cannot execute cdo command %s for given task because it has no model " + "output attribute" % command.create_command()) + return None + if len(input_files) > 1: + log.warning("Task %s in table %s appears to have multiple filtered output files, taking first file %s" % + (task.target.variable, task.target.table, input_files[0])) + input_file = input_files[0] + comm_string = command.create_command() + log.info("Post-processing target %s in table %s from file %s with cdo command %s" % ( + task.target.variable, task.target.table, input_file, comm_string)) + setattr(task, "cdo_command", comm_string) + task.next_state() + result = None + if mode != skip: + if mode == recreate or (mode == append and not os.path.exists(output_path)): + merge_expr = (cdoapi.cdo_command.set_code_operator in command.operators) + result = command.apply(input_file, output_path, cdo_threads, grib_first=merge_expr) + if not result: + task.set_failed() + else: + if os.path.exists(output_path): + result = output_path + if result is not None: + task.next_state() + return result + + +def mask_rhs(rhs, mask): + return rhs if mask is None else '(' + rhs + ")/(" + mask + ')' + + +# Checks whether the string expression denotes height level merging +def add_expr_operators(cdo, task): + missval = getattr(task, "missval", None) + if missval is not None: + cdo.add_operator(cdoapi.cdo_command.set_misstoc_operator, missval) + fillval = getattr(task, "fillval", None) + if fillval is not None: + cdo.add_operator(cdoapi.cdo_command.set_missval_operator, fillval) + input_expr = getattr(task.source, cmor_source.expression_key, None) + mask = getattr(task.source, cmor_source.mask_expression_key, None) + if input_expr is None: + if mask is None: + return + expr = '='.join([cmor_source.grib_code.to_cdo_str(task.source.get_grib_code())] * 2) + else: + expr = input_expr + groups = re.search(r"^var([0-9]{1,3})\=", expr.replace(" ", "")) + if groups is None: + lhs = cmor_source.grib_code.to_cdo_str(task.source.get_grib_code()) + rhs = expr.replace(" ", "") + else: + lhs = groups.group(0)[:-1] + rhs = expr.replace(" ", "")[len(lhs) + 1:] + new_code = int(lhs[3:]) + order = getattr(task.source, cmor_source.expression_order_key, 0) + expr_operator = cdoapi.cdo_command.post_expr_operator if order == 1 else cdoapi.cdo_command.expression_operator + if rhs.startswith("merge(") and rhs.endswith(")"): + arg = rhs[6:-1] + sub_expr_list = arg.split(',') + if not any(getattr(task.target, "z_dims", [])): + log.warning("Encountered 3d expression for variable with no z-axis: taking first field") + sub_expr = mask_rhs(sub_expr_list[0].strip(), mask) + if not re.match(r"var[0-9]{1,3}", sub_expr): + cdo.add_operator(expr_operator, "var" + str(new_code) + "=" + sub_expr) + else: + task.source = cmor_source.ifs_source.read(sub_expr, mask_expr=mask) + root_codes = [int(s.strip()[3:]) for s in re.findall(r"var[0-9]{1,3}", sub_expr)] + cdo.add_operator(cdoapi.cdo_command.select_code_operator, *root_codes) + return + else: + i = 0 + for sub_expr in sub_expr_list: + i += 1 + cdo.add_operator(expr_operator, "var" + str(i) + "=" + mask_rhs(sub_expr, mask)) + cdo.add_operator(cdoapi.cdo_command.set_code_operator, new_code) + else: + mask_interp_expr = '='.join([lhs, mask_rhs(rhs, mask)]) + cdo.add_operator(expr_operator, mask_interp_expr) + cdo.add_operator(cdoapi.cdo_command.select_code_operator, *[c.var_id for c in task.source.get_root_codes()]) + + +operator_mapping = {"mean": cdoapi.cdo_command.mean, "maximum": cdoapi.cdo_command.max, + "minimum": cdoapi.cdo_command.min, "sum": cdoapi.cdo_command.sum} + + +# Adds grid remapping operators to the cdo commands for the given task +def add_grid_operators(cdo, task): + if task.target.variable.startswith("areacell"): + cdo.add_operator(cdoapi.cdo_command.area_operator) + grid = task.source.grid_id() + if grid == cmor_source.ifs_grid.spec: + cdo.add_operator(cdoapi.cdo_command.spectral_operator) + else: + grid_type = cdoapi.cdo_command.regular_grid_type + if getattr(task, "interpolate", "linear") == "nn": + grid_type = cdoapi.cdo_command.regular_grid_type_nn + cdo.add_operator(cdoapi.cdo_command.gridtype_operator, grid_type) + tgtdims = getattr(task.target, cmor_target.dims_key, "").split() + if "longitude" not in tgtdims: + operators = [str(o) for o in getattr(task.target, "longitude_operator", [])] + if len(operators) == 1 and operators[0] in list(operator_mapping.keys()): + cdo.add_operator(cdoapi.cdo_command.zonal + operator_mapping[operators[0]]) + else: + log.error("Longitude reduction operator for task %s in table %s is not supported" % (task.target.variable, + task.target.table)) + task.set_failed() + if "latitude" not in tgtdims: + operators = [str(o) for o in getattr(task.target, "latitude_operator", [])] + if len(operators) == 1 and operators[0] in list(operator_mapping.keys()): + cdo.add_operator(cdoapi.cdo_command.meridional + operator_mapping[operators[0]]) + else: + log.error("Latitude reduction operator for task %s in table %s is not supported" % (task.target.variable, + task.target.table)) + task.set_failed() + + +# Adds time averaging operators to the cdo command for the given task +def add_time_operators(cdo, task): + freq = str(getattr(task.target, cmor_target.freq_key, None)) + operators = [str(o) for o in getattr(task.target, "time_operator", ["point"])] + for i in range(len(operators)): + operator_words = operators[i].split(" ") + if len(operator_words) > 2 and operator_words[1] == "where": + operators[i] = operator_words[0] + if freq == "yr": + if operators == ["mean"]: + cdo.add_operator(cdoapi.cdo_command.year + cdoapi.cdo_command.mean) + elif operators == ["maximum"]: + cdo.add_operator(cdoapi.cdo_command.year + cdoapi.cdo_command.max) + elif operators == ["minimum"]: + cdo.add_operator(cdoapi.cdo_command.year + cdoapi.cdo_command.min) + elif operators == ["sum"]: + cdo.add_operator(cdoapi.cdo_command.year + cdoapi.cdo_command.sum) + elif operators == ["maximum within months", "mean over months"]: + cdo.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.max) + cdo.add_operator(cdoapi.cdo_command.year + cdoapi.cdo_command.mean) + elif operators == ["minimum within months", "mean over months"]: + cdo.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.min) + cdo.add_operator(cdoapi.cdo_command.year + cdoapi.cdo_command.mean) + elif operators == ["maximum within days", "mean over days"]: + cdo.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.max) + cdo.add_operator(cdoapi.cdo_command.year + cdoapi.cdo_command.mean) + elif operators == ["minimum within days", "mean over days"]: + cdo.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.min) + cdo.add_operator(cdoapi.cdo_command.year + cdoapi.cdo_command.mean) + else: + log.error( + "Unsupported combination of frequency %s with time operators %s encountered for variable %s in table %s" + % (freq, str(operators), task.target.variable, task.target.table)) + task.set_failed() + elif freq == "yrPt": + # End-of-year values: + if operators == ["point"]: + cdo.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.month, 12) + cdo.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.day, 31) + cdo.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.hour, 21) + else: + log.error( + "Unsupported combination of frequency %s with time operators %s encountered for variable %s in table %s" + % (freq, str(operators), task.target.variable, task.target.table)) + task.set_failed() + elif freq == "mon": + if operators == ["point"]: + cdo.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.day, 15) + cdo.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.hour, 12) + elif operators == ["mean"]: + cdo.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.mean) + elif operators == ["maximum"]: + cdo.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.max) + elif operators == ["minimum"]: + cdo.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.min) + elif operators == ["sum"]: + cdo.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.sum) + elif operators == ["maximum within days", "mean over days"]: + cdo.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.max) + cdo.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.mean) + elif operators == ["minimum within days", "mean over days"]: + cdo.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.min) + cdo.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.mean) + else: + log.error( + "Unsupported combination of frequency %s with time operators %s encountered for variable %s in table %s" + % (freq, str(operators), task.target.variable, task.target.table)) + task.set_failed() + elif freq == "monPt": + if operators == ["point"]: + cdo.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.day, 15) + cdo.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.hour, 12) + else: + log.error( + "Unsupported combination of frequency %s with time operators %s encountered for variable %s in table %s" + % (freq, str(operators), task.target.variable, task.target.table)) + task.set_failed() + elif freq == "day": + if operators == ["point"]: + cdo.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.hour, 12) + elif operators == ["mean"]: + cdo.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.mean) + elif operators == ["maximum"]: + cdo.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.max) + elif operators == ["minimum"]: + cdo.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.min) + elif operators == ["sum"]: + cdo.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.sum) + else: + log.error( + "Unsupported combination of frequency %s with time operators %s encountered for variable %s in table %s" + % (freq, str(operators), task.target.variable, task.target.table)) + task.set_failed() + elif freq in ["6hr", "6hrPt"] and len(operators) == 1: + add_high_freq_operator(cdo, 6, operators[0], task) + elif freq in ["3hr", "3hrPt"] and len(operators) == 1: + add_high_freq_operator(cdo, 3, operators[0], task) + elif freq == "fx" and operators == ["point"] or operators == ["mean"]: + cdo.add_operator(cdoapi.cdo_command.select_step_operator, 1) + else: + log.error( + "Unsupported combination of frequency %s with time operators %s encountered for variable %s in table %s" + % (freq, str(operators), task.target.variable, task.target.table)) + task.set_failed() + + +def add_high_freq_operator(cdo_command, target_freq, operator, task): + timestamps = [i * target_freq for i in range(24 // target_freq)] + aggregators = {"mean": (cmor_source.ifs_source.grib_codes_accum, cdoapi.cdo_command.timselmean_operator), + "minimum": (cmor_source.ifs_source.grib_codes_min, cdoapi.cdo_command.timselmin_operator), + "maximum": (cmor_source.ifs_source.grib_codes_max, cdoapi.cdo_command.timselmax_operator)} + if operator == "point": + if any([c for c in task.source.get_root_codes() if c in cmor_source.ifs_source.grib_codes_accum]): + log.warning("Sampling values of accumulated model output for variable %s in " + "table %s" % (task.target.variable, task.target.table)) + if any([c for c in task.source.get_root_codes() if c in cmor_source.ifs_source.grib_codes_min]): + log.warning("Sampling values of minimum model output for variable %s in " + "table %s" % (task.target.variable, task.target.table)) + if any([c for c in task.source.get_root_codes() if c in cmor_source.ifs_source.grib_codes_max]): + log.warning("Sampling values of maximum model output for variable %s in " + "table %s" % (task.target.variable, task.target.table)) + cdo_command.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.hour, *timestamps) + elif operator in aggregators: + if not all([c for c in task.source.get_root_codes() if c in aggregators[operator][0]]): + source_freq = getattr(task, cmor_task.output_frequency_key) + steps = target_freq // source_freq + if steps == 0: + log.error("Requested %s at %d-hourly frequency cannot be computed for variable %s in table %s " + "because its output frequency is only %d" % (operator, target_freq, task.target.variable, + task.target.table, source_freq)) + task.set_failed() + else: + log.warning("Computing inaccurate mean value over %d time steps for variable " + "%s in table %s" % (target_freq // source_freq, task.target.variable, task.target.table)) + if steps == 1: + cdo_command.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.hour, *timestamps) + else: + cdo_command.add_operator(aggregators[operator][1], steps) + else: + cdo_command.add_operator(cdoapi.cdo_command.select + cdoapi.cdo_command.hour, *timestamps) + else: + log.error("The operator %s is not supported by this post-processing software" % operator) + task.set_failed() + return cdo_command + + +# Translates the cmor vertical level post-processing operation to a cdo command-line option +def add_level_operators(cdo, task): + global log + if task.source.spatial_dims == 2: + return + zdims = getattr(task.target, "z_dims", []) + if len(zdims) == 0: + return + if len(zdims) > 1: + log.error("Multiple level dimensions in table %s are not supported by this post-processing software", + task.target.table) + task.set_failed() + return + axisname = zdims[0] + if axisname == "alevel": + cdo.add_operator(cdoapi.cdo_command.select_z_operator, cdoapi.cdo_command.model_level) + if axisname == "alevhalf": + log.error("Vertical half-levels in table %s are not supported by this post-processing software", + task.target.table) + task.set_failed() + return + axis_infos = cmor_target.get_axis_info(task.target.table) + axisinfo = axis_infos.get(axisname, None) + if not axisinfo: + log.error("Could not retrieve information for axis %s in table %s" % (axisname, task.target.table)) + task.set_failed() + return + levels = axisinfo.get("requested", []) + if len(levels) == 0: + val = axisinfo.get("value", None) + if val: + levels = [val] + level_types = [grib_file.hybrid_level_code, grib_file.pressure_level_hPa_code, grib_file.height_level_code] + input_files = getattr(task, cmor_task.filter_output_key, []) + if any(input_files): + level_types = cdo.get_z_axes(input_files[0], task.source.get_root_codes()[0].var_id) + name = axisinfo.get("standard_name", None) + if name == "air_pressure": + add_zaxis_operators(cdo, task, level_types, levels, cdoapi.cdo_command.pressure, + grib_file.pressure_level_hPa_code) + elif name in ["height", "altitude"]: + add_zaxis_operators(cdo, task, level_types, levels, cdoapi.cdo_command.height, grib_file.height_level_code) + elif axisname not in ["alevel", "alevhalf"]: + log.error("Could not convert vertical axis type %s to CDO axis selection operator" % name) + task.set_failed() + + +# Helper function for setting the vertical axis and levels selection +def add_zaxis_operators(cdo, task, lev_types, req_levs, axis_type, axis_code): + if axis_code not in lev_types and grib_file.hybrid_level_code in lev_types: + log.warning( + "Could not find %s levels for %s, will interpolate from model levels" % (axis_type, task.target.variable)) + cdo.add_operator(cdoapi.cdo_command.select_code_operator, *[134]) + cdo.add_operator(cdoapi.cdo_command.select_z_operator, + *[cdoapi.cdo_command.model_level, cdoapi.cdo_command.surf_level]) + if isinstance(req_levs, list) and any(req_levs): + cdo.add_operator(cdoapi.cdo_command.ml2pl_operator, *req_levs) + elif axis_code in lev_types: + if isinstance(req_levs, list) and any(req_levs): + levels = [float(s) for s in req_levs] + input_files = getattr(task, cmor_task.filter_output_key, []) + if any(input_files): + levels = cdo.get_levels(input_files[0], task.source.get_root_codes()[0].var_id, axis_type) + if set([float(s) for s in req_levs]) <= set(levels): + cdo.add_operator(cdoapi.cdo_command.select_z_operator, axis_type) + cdo.add_operator(cdoapi.cdo_command.select_lev_operator, *req_levs) + else: + log.error("Could not retrieve %s levels %s from levels %s in file for variable %s" + % (axis_type, req_levs, levels, task.target.variable)) + task.set_failed() + else: + log.error( + "Could not retrieve %s levels for %s with axes %s" % (axis_type, task.target.variable, str(lev_types))) + task.set_failed() diff --git a/ece2cmor/ece2cmor3/resources/__init__.py b/ece2cmor/ece2cmor3/resources/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/ece2cmor3/resources/b2share-data/md5-checksum-b2share-data.md5 b/ece2cmor/ece2cmor3/resources/b2share-data/md5-checksum-b2share-data.md5 new file mode 100644 index 0000000000000000000000000000000000000000..6542ec87e85eff5b2f5b4cfa0ba911a95cd8cc31 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/b2share-data/md5-checksum-b2share-data.md5 @@ -0,0 +1,13 @@ +d6234951785381db616d5bd23e44bbf5 fx-sftlf-EC-Earth3-T159.nc +e9a03e54896ed4a8b571a63f51296565 fx-sftlf-EC-Earth3-T255.nc +67512db1813a44acd7cb7c1ad3e3609e fx-sftlf-EC-Earth3-T511.nc +1cabb88e00a6ef9822e98c2feaa3bcd5 nemo-vertices-ORCA025-t-grid.nc +d89d30dba908802ae07d98a56334d136 nemo-vertices-ORCA025-u-grid.nc +d03b43abab29934eb63ab96b51847da4 nemo-vertices-ORCA025-v-grid.nc +d778dcd3936698fa87eca4fa06b367c0 nemo-vertices-ORCA1-t-grid.nc +146d4dc73fcd637e41f2066e40db8c3d nemo-vertices-ORCA1-u-grid.nc +33d04501d157c66e8e95be1e9638ebf7 nemo-vertices-ORCA1-v-grid.nc +c54131a0136c42ee6dd5dc24fe4f0ca8 omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-HR.nc +e54c25a3faf44486719848bfe3726055 omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR.nc +138e5b01f4298dac3a29c387eda30069 omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR-pliocene.nc +f6c975573143257c90b4ea4fe4333ab0 omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables.nc diff --git a/ece2cmor/ece2cmor3/resources/b2share-data/this-directory.txt b/ece2cmor/ece2cmor3/resources/b2share-data/this-directory.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3532698e6c3e78c25f048063678f6d26366ccb8 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/b2share-data/this-directory.txt @@ -0,0 +1,54 @@ +This directory need to contain the following files: + + fx-sftlf-EC-Earth3-T159.nc 23.86 KB + fx-sftlf-EC-Earth3-T255.nc 68.42 KB + fx-sftlf-EC-Earth3-T511.nc 104.35 KB + nemo-vertices-ORCA025-t-grid.nc 48.47 MB + nemo-vertices-ORCA025-u-grid.nc 48.47 MB + nemo-vertices-ORCA025-v-grid.nc 48.47 MB + nemo-vertices-ORCA1-t-grid.nc 3.40 MB + nemo-vertices-ORCA1-u-grid.nc 3.40 MB + nemo-vertices-ORCA1-v-grid.nc 3.40 MB + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-HR.nc 2.17 MB + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR.nc 232.58 KB + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR-pliocene.nc 232.60 KB + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables.nc 558.98 KB + +The most convenient way to download these files is using the download-b2share-dataset.sh script which +is located in the ece2cmor3 root directory and has to be called from that directory like: + + ./download-b2share-dataset.sh ${HOME}/cmorize/ece2cmor3/ece2cmor3/resources/b2share-data + +Else, one can as well manually download all the files by calling wget directly from the b2share-data +directory directly using: + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/fx-sftlf-EC-Earth3-T159.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/fx-sftlf-EC-Earth3-T255.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/fx-sftlf-EC-Earth3-T511.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/nemo-vertices-ORCA1-t-grid.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/nemo-vertices-ORCA1-u-grid.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/nemo-vertices-ORCA1-v-grid.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/nemo-vertices-ORCA025-t-grid.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/nemo-vertices-ORCA025-u-grid.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/nemo-vertices-ORCA025-v-grid.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-HR.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR-pliocene.nc + wget https://b2share.eudat.eu/api/files/359aeba7-9416-4896-bf34-6905eb21302e/omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables.nc + + +This data is archived on b2share: + https://b2share.eudat.eu/records/f7de9a85cbd443269958f0b80e7bc654 (Latest) Version - June 1, 2021 +and its full overview is: + fx-sftlf-EC-Earth3-T159.nc 23.86 KB Checksum: md5:d6234951785381db616d5bd23e44bbf5 PID: 11304/8996528b-ce71-4dd9-9dcd-3d18b60d3ded + fx-sftlf-EC-Earth3-T255.nc 68.42 KB Checksum: md5:e9a03e54896ed4a8b571a63f51296565 PID: 11304/8c6dd0f7-77ef-4a6a-8628-b3f53c2ef3dc + fx-sftlf-EC-Earth3-T511.nc 104.35 KB Checksum: md5:67512db1813a44acd7cb7c1ad3e3609e PID: 11304/76160387-7ac2-4aae-8ce8-97961b9bc608 + nemo-vertices-ORCA025-t-grid.nc 48.47 MB Checksum: md5:1cabb88e00a6ef9822e98c2feaa3bcd5 PID: 11304/2f00cedc-2bd6-469a-aabf-3b19d5195252 + nemo-vertices-ORCA025-u-grid.nc 48.47 MB Checksum: md5:d89d30dba908802ae07d98a56334d136 PID: 11304/66462784-d8e2-42d5-8ff8-137957da9c97 + nemo-vertices-ORCA025-v-grid.nc 48.47 MB Checksum: md5:d03b43abab29934eb63ab96b51847da4 PID: 11304/e88fa86d-4861-4bbc-943b-1ab95c55f6cb + nemo-vertices-ORCA1-t-grid.nc 3.40 MB Checksum: md5:d778dcd3936698fa87eca4fa06b367c0 PID: 11304/43ad2765-6f4d-4ec0-95dc-f12d43257e19 + nemo-vertices-ORCA1-u-grid.nc 3.40 MB Checksum: md5:146d4dc73fcd637e41f2066e40db8c3d PID: 11304/e63de7f9-aba7-4b3f-9218-85f573bae644 + nemo-vertices-ORCA1-v-grid.nc 3.40 MB Checksum: md5:33d04501d157c66e8e95be1e9638ebf7 PID: 11304/dd7022b1-8645-4447-87ef-2ca1cf5da9cf + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-HR.nc 2.17 MB Checksum: md5:c54131a0136c42ee6dd5dc24fe4f0ca8 PID: 11304/30c24e48-7c46-490a-917c-8db6387b817c + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR.nc 232.58 KB Checksum: md5:e54c25a3faf44486719848bfe3726055 PID: 11304/99fbb8ef-cd99-4e88-9075-505ce57be430 + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR-pliocene.nc 232.60 KB Checksum: md5:138e5b01f4298dac3a29c387eda30069 PID: 11304/e2872b00-1fcd-470e-8b5b-b1cadf07cf8e + omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables.nc 558.98 KB Checksum: md5:f6c975573143257c90b4ea4fe4333ab0 PID: 11304/7e3e4fd9-0b2d-443d-8fc4-3eac98b070ee diff --git a/ece2cmor/ece2cmor3/resources/co2boxpar.json b/ece2cmor/ece2cmor3/resources/co2boxpar.json new file mode 100644 index 0000000000000000000000000000000000000000..741c4e1e9e7b0ad22e5a71ce6b4c7b3c6f6e33eb --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/co2boxpar.json @@ -0,0 +1,14 @@ +[ + { + "source": "co2s", + "target": "co2s" + }, + { + "source": "co2", + "target": "co2s" + }, + { + "source": "co2mass", + "target": "co2mass" + } +] diff --git a/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/cfName.def b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/cfName.def new file mode 100644 index 0000000000000000000000000000000000000000..1a35e08073b0b7b5d5af8ccf3f1f0165fc658d8a --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/cfName.def @@ -0,0 +1,196 @@ +# Automatically generated by ./create_param.pl from database param@balthasar, do not edit +#Geopotential +'geopotential' = { + indicatorOfParameter = 129 ; + table2Version = 128 ; + } +#Temperature +'air_temperature' = { + indicatorOfParameter = 130 ; + table2Version = 128 ; + } +#u-component of wind +'eastward_wind' = { + indicatorOfParameter = 131 ; + table2Version = 128 ; + } +#v-component of wind +'northward_wind' = { + indicatorOfParameter = 132 ; + table2Version = 128 ; + } +#Specific humidity +'specific_humidity' = { + indicatorOfParameter = 133 ; + table2Version = 128 ; + } +#Surface pressure +'surface_air_pressure' = { + indicatorOfParameter = 134 ; + table2Version = 128 ; + } +#Vertical velocity (geometric) +'lagrangian_tendency_of_air_pressure' = { + indicatorOfParameter = 135 ; + table2Version = 128 ; + } +#Total column water vapour +'lwe_thickness_of_atmosphere_water_vapor_content' = { + indicatorOfParameter = 137 ; + table2Version = 128 ; + } +#Relative vorticity +'atmosphere_relative_vorticity' = { + indicatorOfParameter = 138 ; + table2Version = 128 ; + } +#Soil temperature level 1 +'surface_temperature' = { + indicatorOfParameter = 139 ; + table2Version = 128 ; + } +#Soil wetness level 1 +'lwe_thickness_of_soil_moisture_content' = { + indicatorOfParameter = 140 ; + table2Version = 128 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + indicatorOfParameter = 141 ; + table2Version = 128 ; + } +#Stratiform precipitation (Large-scale precipitation) +'lwe_thickness_of_large_scale_precipitation_amount' = { + indicatorOfParameter = 142 ; + table2Version = 128 ; + } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + indicatorOfParameter = 143 ; + table2Version = 128 ; + } +#Snowfall +'lwe_thickness_of_snowfall_amount' = { + indicatorOfParameter = 144 ; + table2Version = 128 ; + } +#Boundary layer dissipation +'dissipation_in_atmosphere_boundary_layer' = { + indicatorOfParameter = 145 ; + table2Version = 128 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + indicatorOfParameter = 146 ; + table2Version = 128 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + indicatorOfParameter = 147 ; + table2Version = 128 ; + } +#Mean sea level pressure +'air_pressure_at_sea_level' = { + indicatorOfParameter = 151 ; + table2Version = 128 ; + } +#Relative divergence +'divergence_of_wind' = { + indicatorOfParameter = 155 ; + table2Version = 128 ; + } +#Geopotential height +'geopotential_height' = { + indicatorOfParameter = 156 ; + table2Version = 128 ; + } +#Relative humidity +'relative_humidity' = { + indicatorOfParameter = 157 ; + table2Version = 128 ; + } +#Tendency of surface pressure +'tendency_of_surface_air_pressure' = { + indicatorOfParameter = 158 ; + table2Version = 128 ; + } +#Total cloud cover +'cloud_area_fraction' = { + indicatorOfParameter = 164 ; + table2Version = 128 ; + } +#Surface solar radiation downwards +'surface_downwelling_shortwave_flux_in_air' = { + indicatorOfParameter = 169 ; + table2Version = 128 ; + } +#Land-sea mask +'land_binary_mask' = { + indicatorOfParameter = 172 ; + table2Version = 128 ; + } +#Surface roughness +'surface_roughness_length' = { + indicatorOfParameter = 173 ; + table2Version = 128 ; + } +#Albedo +'surface_albedo' = { + indicatorOfParameter = 174 ; + table2Version = 128 ; + } +#Surface solar radiation +'surface_net_upward_longwave_flux' = { + indicatorOfParameter = 176 ; + table2Version = 128 ; + } +#Surface thermal radiation +'surface_net_upward_shortwave_flux' = { + indicatorOfParameter = 177 ; + table2Version = 128 ; + } +#Top solar radiation +'toa_net_upward_shortwave_flux' = { + indicatorOfParameter = 178 ; + table2Version = 128 ; + } +#Top thermal radiation +'toa_outgoing_longwave_flux' = { + indicatorOfParameter = 179 ; + table2Version = 128 ; + } +#East-West surface stress +'surface_downward_eastward_stress' = { + indicatorOfParameter = 180 ; + table2Version = 128 ; + } +#North-South surface stress +'surface_downward_northward_stress' = { + indicatorOfParameter = 181 ; + table2Version = 128 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + indicatorOfParameter = 182 ; + table2Version = 128 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + indicatorOfParameter = 185 ; + table2Version = 128 ; + } +#Surface net solar radiation, clear sky +'surface_net_downward_shortwave_flux_assuming_clear_sky' = { + indicatorOfParameter = 210 ; + table2Version = 128 ; + } +#Surface net thermal radiation, clear sky +'surface_net_downward_longwave_flux_assuming_clear_sky' = { + indicatorOfParameter = 211 ; + table2Version = 128 ; + } +#Temperature of snow layer +'snow_temperature' = { + indicatorOfParameter = 238 ; + table2Version = 128 ; +} diff --git a/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/cfVarName.def b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/cfVarName.def new file mode 100644 index 0000000000000000000000000000000000000000..181191db4419823f3d5ad7531b0c06ce7435a555 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/cfVarName.def @@ -0,0 +1,18181 @@ +# Automatically generated by ./create_def.pl from database param@wrep-db-misc-prod, do not edit +#Total precipitation of at least 1 mm +'tpg1' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'tpg5' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'tpg10' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'tpg20' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'tpg40' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'tpg60' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'tpg80' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'tpg150' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'tpg200' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'tpg300' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'strf' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'vp' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'pt' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'eqpt' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'sept' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'ssfr' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'scfr' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'sro' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'ssro' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'ws' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'udvw' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'vdvw' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'urtw' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'vrtw' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'aluvp' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'aluvd' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'alnip' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'alnid' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'uvcs' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'parcs' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'uctp' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'ucdv' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'p24.128' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'p25.128' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'cl' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'cvl' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'cvh' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'tvl' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'tvh' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover +'ci' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'asn' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'rsn' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'sst' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'istl1' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'istl2' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'istl3' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'istl4' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'swvl1' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'swvl2' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'swvl3' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'swvl4' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'slt' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'es' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'smlt' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'sdur' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'dsrp' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress +'magss' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'fg10' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'lspf' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'mx2t24' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'mn2t24' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'mont' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'pres' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'mean2t24' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'mn2d24' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'uvb' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'par' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'cape' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'pv' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'obct' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'stsktd' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'ftsktd' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'sktd' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'lai_lv' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'lai_hv' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'msr_lv' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'msr_hv' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'bc_lv' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'bc_hv' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'issrd' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'istrd' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'sdfor' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'crwc' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'cswc' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'etadot' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column liquid water +'tclw' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'tciw' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.128' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.128' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.128' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.128' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.128' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.128' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.128' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.128' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.128' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.128' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.128' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.128' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.128' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.128' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.128' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.128' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.128' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.128' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.128' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.128' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.128' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.128' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.128' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.128' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.128' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.128' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.128' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.128' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.128' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.128' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.128' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.128' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.128' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.128' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.128' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.128' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.128' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.128' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.128' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.128' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.128' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'p10fg6' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'emis' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'vite' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.128' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'at' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'at' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'bv' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'bv' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'z' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'t' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'u' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'v' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'q' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'sp' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'sp' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'w' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'w' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'tcw' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'tcw' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'swl1' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'swl1' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'sd' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'sd' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'sd' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cp' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'cp' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'cp' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'sf' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'sf' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'chnk' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'snr' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'tnr' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'lnsp' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'lnsp' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'swhr' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'lwhr' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'d' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'gh' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'r' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'r' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'r' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'tsp' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'tsp' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'blh' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'sdor' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'anor' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'slor' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'tcc' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'u10' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'u10' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'u10' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'u10' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'v10' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'v10' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'v10' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'v10' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'t2m' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'t2m' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'t2m' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'t2m' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'ssrd' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'ssrd' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'stl2' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'stl2' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'swl2' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'lsm' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'sr' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'sr' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'al' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'al' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'al' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'strd' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'strd' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'e' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'stl3' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'stl3' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'swl3' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'swl3' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'lcc' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'lcc' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'hcc' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'hcc' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'sund' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'btmp' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'lgws' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'lgws' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'mgws' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'mgws' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'gwd' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'gwd' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'src' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'veg' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'vso' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'vso' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'o3' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'paw' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'paw' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'ro' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'ro' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'tco3' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'si10' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'tsrc' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'ttrc' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'ssrc' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'strc' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'tisr' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'vimd' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'dhlc' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'ewgd' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'nsgd' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'ctzw' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'ctzw' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'ctmw' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'ctmw' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'vdh' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'tp' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'ishf' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'ie' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'ie' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'asq' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'asq' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'skt' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'skt' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'stl4' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'stl4' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'swl4' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'swl4' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'tsn' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'tsn' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'csf' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'lsf' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'acf' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'alw' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'fal' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'fsr' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'fsr' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'clwc' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'ciwc' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Cloud cover +'cc' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'aiw' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'ice' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'atte' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'athe' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'atze' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'atmw' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'strfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'vpotdiff' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'ptdiff' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'eqptdiff' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'septdiff' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'udvwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'vdvwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'urtwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'vrtwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'uctpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'uclndiff' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'ucdvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'p24.200' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'p25.200' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'cldiff' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'cvldiff' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'cvhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'tvldiff' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'tvhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'sicdiff' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'asndiff' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'rsndiff' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'sstdiff' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'istl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'istl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'istl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'istl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'swvl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'swvl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'swvl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'swvl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'sltdiff' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'esdiff' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'smltdiff' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'sdurdiff' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'dsrpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress difference +'magssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'fgdiff10' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'lspfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'mx2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'mn2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'montdiff' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'presdiff' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'mean2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'mn2d24diff' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'uvbdiff' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'pardiff' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'capediff' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'pvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'tpodiff' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'obctdiff' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'p63.200' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'p64.200' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'p65.200' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'p66.200' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'p67.200' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'p68.200' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'p69.200' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'p70.200' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'p71.200' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'p78.200' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'p79.200' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.200' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.200' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.200' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.200' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.200' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.200' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.200' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.200' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.200' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.200' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.200' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.200' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.200' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.200' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.200' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.200' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.200' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.200' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.200' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.200' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.200' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.200' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.200' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.200' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.200' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.200' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.200' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.200' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.200' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.200' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.200' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.200' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.200' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.200' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.200' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.200' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.200' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.200' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.200' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.200' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.200' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'mx2t6diff' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'mn2t6diff' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'fg6diff10' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'p125.200' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.200' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'atdiff' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'bvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'zdiff' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'udiff' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'vdiff' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'qdiff' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'spdiff' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'wdiff' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'tcwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'tcwvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'vodiff' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'stl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'swl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'sddiff' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'lspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'cpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'sfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'blddiff' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'sshfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'slhfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'chnkdiff' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'snrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'tnrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'msldiff' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'lnspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'swhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'lwhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'ddiff' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'ghdiff' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'rdiff' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'tspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'blhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'sdordiff' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'isordiff' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'anordiff' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'slordiff' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'tccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'udiff10' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'vdiff10' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'difft2' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'ssrddiff' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'stl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'swl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'lsmdiff' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'srdiff' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'aldiff' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'strddiff' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'ssrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'strdiff' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'tsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'ttrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'ewssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'nsssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'ediff' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'stl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'swl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'cccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'lccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'mccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'hccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'sunddiff' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'ewovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'nsovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'nwovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'neovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'btmpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'lgwsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'mgwsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'gwddiff' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'srcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'vegdiff' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'vsodiff' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'mx2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'mn2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'o3diff' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'pawdiff' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'rodiff' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'tco3diff' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'sidiff10' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'tsrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'ttrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'ssrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'strcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'tisrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'dhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'dhvddiff' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'dhccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'dhlcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'vdzwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'vdmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'ewgddiff' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'nsgddiff' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'ctzwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'ctmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'vdhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'htccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'htlcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'crnhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'tpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'iewsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'inssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'ishfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'iediff' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'asqdiff' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'lsrhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'sktdiff' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'stl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'swl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'tsndiff' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'csfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'lsfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'acfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'alwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'faldiff' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'fsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'flsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'clwcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'ciwcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'ccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'aiwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'icediff' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'attediff' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'athediff' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'atzediff' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'atmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.200' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'p131089' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'p131090' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'p131091' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'p131092' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'p131093' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'p131094' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'p131095' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'p131096' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'p131097' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Maximum of significant wave height index +'maxswhi' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'p140080' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'p140081' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'p140082' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'p140083' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'p140084' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Significant wave height of first swell partition +'p140121' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'p140122' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'p140123' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'p140124' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'p140125' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'p140126' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'p140127' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'p140128' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'p140129' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'wss' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'p140208' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'p140209' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'p140210' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'phiaw' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'phioc' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'tla' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'tauoc' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'p193.151' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Vertical integral of divergence of cloud liquid water flux +'p79.162' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'p80.162' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'p88.162' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'p89.162' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'p90.162' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'p91.162' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'p92.162' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'utendd' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'vtendd' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'ttendd' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'qtendd' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'ttendr' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'utendts' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'vtendts' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'ttendts' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'qtendt' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'utends' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'vtends' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'ttends' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'utendcds' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'vtendcds' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'ttendcds' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'qtendcds' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'lpc' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'ipc' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'ttendcs' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'qtendcs' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'qltendcs' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'qitendcs' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'lpcs' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'ipcs' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'utendcs' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'vtendcs' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'ttendsc' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'qtendsc' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#100 metre U wind component anomaly +'ua100' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'va100' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'mx2t6a' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'mn2t6a' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Clear-sky (II) down surface sw flux +'p174010' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'p174013' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'p174025' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'p174050' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'p174051' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'p174052' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#Short wave radiation flux at surface +'p174116' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'p174117' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'p174137' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'p174142' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'p174143' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'p174186' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'p174239' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'p174240' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'p174248' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'p174249' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'aermr13' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'aermr14' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'aermr15' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'emdms' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'p55.210' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'p56.210' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'ocnuc' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'monot' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'soapr' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Particulate matter d < 1 um +'pm1' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'pm2p5' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'pm10' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'p210079' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'ale' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'apt' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'aluvpi' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'aluvpv' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'aluvpg' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'alnipi' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'alnipv' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'alnipg' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'aluvdi' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'aluvdv' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'aluvdg' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'alnidi' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'alnidv' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'alnidg' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'aod340' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'aod355' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'aod380' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'aod400' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'aod440' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'aod500' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'aod532' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'aod645' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'aod800' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'aod858' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'aod1020' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'aod1064' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'aod1640' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'aod2130' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'c7h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'c6h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'c8h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'c4h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'c5h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'c6h12fire' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'c8h16fire' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'c4h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'c5h12fire' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'c6h14fire' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'c7h16fire' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'apb' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'vsuaod550' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'vashaod550' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'taedec550' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'taedab550' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Aerosol type 13 mass mixing ratio +'aermr13diff' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'aermr14diff' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'p211015' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03diff' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01diff' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02diff' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'emdmsdiff' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03diff' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04diff' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'p55.211' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'p56.211' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6firediff' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'alediff' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'aptdiff' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'p1.212' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'p2.212' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'p3.212' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'p4.212' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'p5.212' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'p6.212' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'p7.212' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'p8.212' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'p9.212' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'p10.212' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'p11.212' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'p12.212' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'p13.212' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'p14.212' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'p15.212' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'p16.212' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'p17.212' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'p18.212' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'p19.212' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'p20.212' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'p21.212' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'p22.212' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'p23.212' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'p24.212' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'p25.212' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'p26.212' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'p27.212' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'p28.212' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'p29.212' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'p30.212' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'p31.212' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'p32.212' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'p33.212' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'p34.212' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'p35.212' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'p36.212' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'p37.212' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'p38.212' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'p39.212' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'p40.212' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'p41.212' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'p42.212' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'p43.212' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'p44.212' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'p45.212' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'p46.212' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'p47.212' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'p48.212' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'p49.212' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'p50.212' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'p51.212' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'p52.212' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'p53.212' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'p54.212' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'p55.212' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'p56.212' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'p57.212' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'p58.212' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'p59.212' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'p60.212' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'p61.212' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'p62.212' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'p63.212' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'p64.212' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'p65.212' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'p66.212' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'p67.212' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'p68.212' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'p69.212' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'p70.212' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'p71.212' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'p72.212' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'p73.212' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'p74.212' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'p75.212' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'p76.212' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'p77.212' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'p78.212' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'p79.212' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.212' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.212' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.212' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.212' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.212' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.212' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.212' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.212' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.212' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.212' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.212' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.212' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.212' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.212' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.212' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.212' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.212' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.212' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.212' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.212' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.212' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.212' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.212' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.212' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.212' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.212' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.212' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.212' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.212' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.212' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.212' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.212' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.212' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.212' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.212' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.212' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.212' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.212' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.212' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.212' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.212' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'p121.212' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'p122.212' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'p123.212' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'p124.212' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'p125.212' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'p126.212' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'p127.212' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'p128.212' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'p129.212' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'p130.212' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'p131.212' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'p132.212' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'p133.212' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'p134.212' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'p135.212' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'p136.212' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'p137.212' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'p138.212' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'p139.212' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'p140.212' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'p141.212' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'p142.212' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'p143.212' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'p144.212' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'p145.212' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'p146.212' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'p147.212' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'p148.212' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'p149.212' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'p150.212' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'p151.212' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'p152.212' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'p153.212' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'p154.212' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'p155.212' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'p156.212' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'p157.212' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'p158.212' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'p159.212' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'p160.212' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'p161.212' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'p162.212' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'p163.212' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'p164.212' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'p165.212' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'p166.212' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'p167.212' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'p168.212' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'p169.212' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'p170.212' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'p171.212' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'p172.212' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'p173.212' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'p174.212' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'p175.212' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'p176.212' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'p177.212' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'p178.212' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'p179.212' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'p180.212' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'p181.212' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'p182.212' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'p183.212' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'p184.212' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'p185.212' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'p186.212' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'p187.212' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'p188.212' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'p189.212' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'p190.212' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'p191.212' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'p192.212' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'p193.212' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'p194.212' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'p195.212' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'p196.212' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'p197.212' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'p198.212' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'p199.212' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'p200.212' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'p201.212' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'p202.212' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'p203.212' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'p204.212' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'p205.212' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'p206.212' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'p207.212' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'p208.212' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'p209.212' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'p210.212' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'p211.212' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'p212.212' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'p213.212' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'p214.212' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'p215.212' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'p216.212' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'p217.212' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'p218.212' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'p219.212' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'p220.212' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'p221.212' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'p222.212' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'p223.212' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'p224.212' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'p225.212' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'p226.212' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'p227.212' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'p228.212' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'p229.212' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'p230.212' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'p231.212' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'p232.212' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'p233.212' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'p234.212' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'p235.212' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'p236.212' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'p237.212' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'p238.212' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'p239.212' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'p240.212' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'p241.212' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'p242.212' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'p243.212' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'p244.212' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'p245.212' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'p246.212' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'p247.212' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'p248.212' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'p249.212' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'p250.212' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'p251.212' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'p252.212' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'p253.212' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'p254.212' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'p255.212' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'sppt1' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'sppt2' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'sppt3' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'sppt4' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'sppt5' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +# Cosine of solar zenith angle +'uvcossza' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +# UV biologically effective dose +'uvbed' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +# UV biologically effective dose clear-sky +'uvbedcs' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +'uvsflxt280285' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +'uvsflxt285290' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +'uvsflxt290295' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +'uvsflxt295300' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +'uvsflxt300305' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +'uvsflxt305310' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +'uvsflxt310315' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +'uvsflxt315320' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +'uvsflxt320325' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +'uvsflxt325330' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +'uvsflxt330335' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +'uvsflxt335340' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +'uvsflxt340345' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +'uvsflxt345350' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +'uvsflxt350355' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +'uvsflxt355360' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +'uvsflxt360365' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +'uvsflxt365370' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +'uvsflxt370375' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +'uvsflxt375380' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +'uvsflxt380385' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +'uvsflxt385390' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +'uvsflxt390395' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +'uvsflxt395400' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +'uvsflxcs280285' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +'uvsflxcs285290' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +'uvsflxcs290295' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +'uvsflxcs295300' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +'uvsflxcs300305' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +'uvsflxcs305310' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +'uvsflxcs310315' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +'uvsflxcs315320' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +'uvsflxcs320325' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +'uvsflxcs325330' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +'uvsflxcs330335' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +'uvsflxcs335340' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +'uvsflxcs340345' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +'uvsflxcs345350' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +'uvsflxcs350355' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +'uvsflxcs355360' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +'uvsflxcs360365' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +'uvsflxcs365370' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +'uvsflxcs370375' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +'uvsflxcs375380' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +'uvsflxcs380385' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +'uvsflxcs385390' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +'uvsflxcs390395' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +'uvsflxcs395400' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +# Profile of optical thickness at 340 nm +'aot340' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +'aersrcsss' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +'aersrcssm' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +'aersrcssl' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'aerddpsss' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +'aerddpssm' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +'aerddpssl' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'aersdmsss' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +'aersdmssm' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +'aersdmssl' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'aerwdlssss' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'aerwdlsssm' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'aerwdlsssl' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'aerwdccsss' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'aerwdccssm' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'aerwdccssl' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'aerngtsss' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +'aerngtssm' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +'aerngtssl' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'aermsssss' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'aermssssm' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +'aermssssl' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +'aerodsss' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +'aerodssm' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +'aerodssl' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +'aersrcdus' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +'aersrcdum' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +'aersrcdul' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +'aerddpdus' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +'aerddpdum' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +'aerddpdul' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +'aersdmdus' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +'aersdmdum' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +'aersdmdul' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'aerwdlsdus' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'aerwdlsdum' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'aerwdlsdul' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'aerwdccdus' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'aerwdccdum' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'aerwdccdul' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +'aerngtdus' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +'aerngtdum' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +'aerngtdul' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'aermssdus' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +'aermssdum' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +'aermssdul' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +'aeroddus' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +'aeroddum' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +'aeroddul' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +'aersrcomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +'aersrcomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +'aerddpomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +'aerddpomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +'aersdmomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +'aersdmomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'aerwdlsomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'aerwdlsomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'aerwdccomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'aerwdccomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +'aerngtomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +'aerngtomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +'aermssomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +'aermssomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +'aerodomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +'aerodomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +'aersrcbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +'aersrcbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +'aerddpbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +'aerddpbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +'aersdmbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +'aersdmbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'aerwdlsbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'aerwdlsbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'aerwdccbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'aerwdccbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +'aerngtbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +'aerngtbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +'aermssbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +'aermssbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +'aerodbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +'aerodbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +# Source/gain of sulphate aerosol +'aersrcsu' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +# Dry deposition of sulphate aerosol +'aerddpsu' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +# Sedimentation of sulphate aerosol +'aersdmsu' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +'aerwdlssu' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +'aerwdccsu' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +# Negative fixer of sulphate aerosol +'aerngtsu' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +# Vertically integrated mass of sulphate aerosol +'aermsssu' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +# Sulphate aerosol optical depth +'aerodsu' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'accaod550' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'aluvpsn' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'aerdep10si' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'aerdep10fg' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Profile of total aerosol optical depth at 532 nm +'paod532' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Profile of natural (sea-salt and dust) aerosol optical depth at 532 nm +'pnaod532' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Profile of antropogenic (black carbon, organic matter, sulphate) aerosol optical depth at 532 nm +'paaod532' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'aodabs340' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'aodabs355' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'aodabs380' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'aodabs400' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'aodabs440' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'aodabs469' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'aodabs500' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'aodabs532' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'aodabs550' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'aodabs645' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'aodabs670' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'aodabs800' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'aodabs858' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'aodabs865' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'aodabs1020' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'aodabs1064' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'aodabs1240' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'aodabs1640' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'aodfm340' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'aodfm355' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'aodfm380' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'aodfm400' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'aodfm440' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'aodfm469' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'aodfm500' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'aodfm532' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'aodfm550' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'aodfm645' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'aodfm670' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'aodfm800' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'aodfm858' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'aodfm865' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'aodfm1020' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'aodfm1064' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'aodfm1240' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'aodfm1640' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'ssa340' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'ssa355' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'ssa380' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'ssa400' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'ssa440' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'ssa469' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'ssa500' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'ssa532' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'ssa550' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'ssa645' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'ssa670' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'ssa800' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'ssa858' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'ssa865' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'ssa1020' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'ssa1064' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'ssa1240' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'ssa1640' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Assimetry factor at 340 nm +'assimetry340' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Assimetry factor at 355 nm +'assimetry355' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Assimetry factor at 380 nm +'assimetry380' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Assimetry factor at 400 nm +'assimetry400' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Assimetry factor at 440 nm +'assimetry440' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Assimetry factor at 469 nm +'assimetry469' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Assimetry factor at 500 nm +'assimetry500' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Assimetry factor at 532 nm +'assimetry532' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Assimetry factor at 550 nm +'assimetry550' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Assimetry factor at 645 nm +'assimetry645' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Assimetry factor at 670 nm +'assimetry670' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Assimetry factor at 800 nm +'assimetry800' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Assimetry factor at 858 nm +'assimetry858' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Assimetry factor at 865 nm +'assimetry865' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Assimetry factor at 1020 nm +'assimetry1020' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Assimetry factor at 1064 nm +'assimetry1064' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Assimetry factor at 1240 nm +'assimetry1240' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Assimetry factor at 1640 nm +'assimetry1640' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'aersrcso2' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'aerddpso2' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'aersdmso2' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'aerwdlsso2' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'aerwdccso2' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'aerngtso2' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'aermssso2' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'aerodso2' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'aodabs2130' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'aodfm2130' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'ssa2130' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Assimetry factor at 2130 nm +'assimetry2130' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'p1.216' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'p2.216' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'p3.216' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'p4.216' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'p5.216' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'p6.216' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'p7.216' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'p8.216' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'p9.216' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'p10.216' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'p11.216' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'p12.216' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'p13.216' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'p14.216' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'p15.216' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'p16.216' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'p17.216' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'p18.216' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'p19.216' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'p20.216' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'p21.216' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'p22.216' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'p23.216' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'p24.216' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'p25.216' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'p26.216' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'p27.216' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'p28.216' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'p29.216' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'p30.216' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'p31.216' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'p32.216' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'p33.216' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'p34.216' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'p35.216' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'p36.216' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'p37.216' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'p38.216' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'p39.216' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'p40.216' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'p41.216' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'p42.216' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'p43.216' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'p44.216' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'p45.216' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'p46.216' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'p47.216' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'p48.216' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'p49.216' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'p50.216' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'p51.216' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'p52.216' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'p53.216' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'p54.216' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'p55.216' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'p56.216' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'p57.216' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'p58.216' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'p59.216' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'p60.216' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'p61.216' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'p62.216' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'p63.216' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'p64.216' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'p65.216' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'p66.216' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'p67.216' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'p68.216' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'p69.216' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'p70.216' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'p71.216' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'p72.216' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'p73.216' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'p74.216' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'p75.216' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'p76.216' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'p77.216' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'p78.216' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'p79.216' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.216' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.216' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.216' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.216' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.216' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.216' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.216' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.216' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.216' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.216' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.216' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.216' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.216' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.216' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.216' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.216' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.216' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.216' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.216' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.216' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.216' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.216' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.216' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.216' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.216' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.216' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.216' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.216' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.216' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.216' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.216' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.216' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.216' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.216' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.216' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.216' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.216' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.216' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.216' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.216' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.216' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'p121.216' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'p122.216' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'p123.216' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'p124.216' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'p125.216' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'p126.216' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'p127.216' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'p128.216' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'p129.216' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'p130.216' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'p131.216' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'p132.216' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'p133.216' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'p134.216' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'p135.216' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'p136.216' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'p137.216' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'p138.216' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'p139.216' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'p140.216' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'p141.216' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'p142.216' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'p143.216' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'p144.216' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'p145.216' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'p146.216' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'p147.216' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'p148.216' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'p149.216' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'p150.216' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'p151.216' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'p152.216' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'p153.216' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'p154.216' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'p155.216' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'p156.216' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'p157.216' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'p158.216' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'p159.216' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'p160.216' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'p161.216' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'p162.216' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'p163.216' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'p164.216' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'p165.216' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'p166.216' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'p167.216' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'p168.216' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'p169.216' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'p170.216' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'p171.216' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'p172.216' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'p173.216' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'p174.216' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'p175.216' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'p176.216' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'p177.216' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'p178.216' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'p179.216' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'p180.216' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'p181.216' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'p182.216' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'p183.216' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'p184.216' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'p185.216' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'p186.216' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'p187.216' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'p188.216' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'p189.216' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'p190.216' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'p191.216' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'p192.216' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'p193.216' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'p194.216' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'p195.216' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'p196.216' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'p197.216' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'p198.216' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'p199.216' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'p200.216' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'p201.216' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'p202.216' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'p203.216' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'p204.216' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'p205.216' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'p206.216' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'p207.216' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'p208.216' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'p209.216' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'p210.216' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'p211.216' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'p212.216' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'p213.216' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'p214.216' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'p215.216' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'p216.216' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'p217.216' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'p218.216' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'p219.216' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'p220.216' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'p221.216' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'p222.216' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'p223.216' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'p224.216' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'p225.216' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'p226.216' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'p227.216' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'p228.216' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'p229.216' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'p230.216' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'p231.216' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'p232.216' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'p233.216' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'p234.216' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'p235.216' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'p236.216' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'p237.216' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'p238.216' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'p239.216' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'p240.216' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'p241.216' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'p242.216' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'p243.216' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'p244.216' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'p245.216' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'p246.216' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'p247.216' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'p248.216' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'p249.216' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'p250.216' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'p251.216' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'p252.216' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'p253.216' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'p254.216' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'p255.216' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'h2o2' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane +'ch4' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'hno3' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'ch3ooh' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'par' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'c2h4' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'ole' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'ald2' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'pan' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'rooh' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'onit' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'c5h8' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'dms' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'nh3' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'so4' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'nh4' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'msa' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'ch3cocho' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'o3s' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'pb' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'no' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'ho2' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'ch3o2' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'oh' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'no3' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'n2o5' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'ho2no2' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'c2o3' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'ror' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'rxpar' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'xo2' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'xo2n' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'nh2' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'psc' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'ch3oh' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'hcooh' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'mcooh' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'c2h6' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'c2h5oh' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'c3h8' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'c3h6' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'c10h16' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'ispd' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'no3_a' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'ch3coch3' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'aco2' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'ic3h7o2' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'hypropo2' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'noxa' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'tc_h2o2' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'tc_ch4' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'tc_hno3' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'tc_ch3ooh' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'tc_par' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'tc_c2h4' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'tc_ole' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'tc_ald2' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'tc_pan' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'tc_rooh' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'tc_onit' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'tc_c5h8' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'tc_dms' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'tc_nh3' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'tc_so4' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'tc_nh4' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'tc_msa' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'tc_ch3cocho' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'tc_o3s' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'tc_pb' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'tc_no' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'tc_ho2' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'tc_ch3o2' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'tc_oh' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'tc_no3' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'tc_n2o5' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'tc_ho2no2' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'tc_c2o3' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'tc_ror' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'tc_rxpar' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'tc_xo2' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'tc_xo2n' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'tc_nh2' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'tc_psc' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'tc_ch3oh' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'tc_hcooh' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'tc_mcooh' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'tc_c2h6' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'tc_c2h5oh' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'tc_c3h8' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'tc_c3h6' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'tc_c10h16' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'tc_ispd' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'tc_no3_a' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'tc_ch3coch3' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'tc_aco2' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'tc_ic3h7o2' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'tc_hypropo2' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'tc_noxa' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'e_go3' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'e_nox' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'e_h2o2' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'e_ch4' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'e_co' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'e_hno3' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'e_ch3ooh' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'e_hcho' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'e_par' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'e_c2h4' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'e_ole' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'e_ald2' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'e_pan' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'e_rooh' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'e_onit' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'e_c5h8' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'e_so2' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'e_dms' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'e_nh3' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'e_so4' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'e_nh4' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'e_msa' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'e_ch3cocho' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'e_o3s' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'e_ra' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'e_pb' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'e_no' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'e_ho2' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'e_ch3o2' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'e_oh' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'e_no2' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'e_no3' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'e_n2o5' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'e_ho2no2' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'e_c2o3' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'e_ror' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'e_rxpar' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'e_xo2' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'e_xo2n' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'e_nh2' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'e_psc' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'e_ch3oh' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'e_hcooh' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'e_mcooh' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'e_c2h6' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'e_c2h5oh' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'e_c3h8' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'e_c3h6' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'e_c10h16' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'e_ispd' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'e_no3_a' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'e_ch3coch3' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'e_aco2' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'e_ic3h7o2' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'e_hypropo2' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'e_noxa' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'dv_go3' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'dv_nox' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'dv_h2o2' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'dv_ch4' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'dv_co' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'dv_hno3' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'dv_ch3ooh' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'dv_hcho' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'dv_par' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'dv_c2h4' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'dv_ole' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'dv_ald2' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'dv_pan' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'dv_rooh' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'dv_onit' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'dv_c5h8' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'dv_so2' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'dv_dms' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'dv_nh3' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'dv_so4' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'dv_nh4' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'dv_msa' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'dv_ch3cocho' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'dv_o3s' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'dv_ra' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'dv_pb' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'dv_no' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'dv_ho2' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'dv_ch3o2' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'dv_oh' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'dv_no2' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'dv_no3' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'dv_n2o5' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'dv_ho2no2' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'dv_c2o3' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'dv_ror' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'dv_rxpar' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'dv_xo2' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'dv_xo2n' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'dv_nh2' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'dv_psc' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'dv_ch3oh' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'dv_hcooh' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'dv_mcooh' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'dv_c2h6' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'dv_c2h5oh' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'dv_c3h8' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'dv_c3h6' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'dv_c10h16' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'dv_ispd' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'dv_no3_a' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'dv_ch3coch3' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'dv_aco2' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'dv_ic3h7o2' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'dv_hypropo2' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'dv_noxa' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#Total sky direct solar radiation at surface +'fdir' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'cdir' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'cbh' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#Zero degree level +'deg0l' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'hvis' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'mx2t3' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'mn2t3' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'fg310' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'i10fg' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#Soil wetness index in layer 1 +'swi1' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'swi2' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'swi3' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'swi4' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'aco2nee' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'aco2gpp' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'aco2rec' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'fco2nee' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'fco2gpp' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'fco2rec' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'tcslw' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'tcrw' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'tcsw' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'ccf' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'stf' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'swv' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'ist' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'ssrdc' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'strdc' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Instantaneous large-scale surface precipitation fraction +'ilspf' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'crr' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'lsrr' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'csfr' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'lssfr' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'mxtpr3' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'mntpr3' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'mxtpr6' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'mntpr6' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'mxtpr' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'mntpr' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'p228229' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'p228230' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#Surface solar radiation diffuse total sky +'fdif' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'cdif' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'aldr' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'aldf' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'si100' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'irrfr' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'pev' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'irr' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'srovar' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'ssrovar' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'parcsvar' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'p230021' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'p230022' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Large-scale precipitation fraction (variable resolution) +'lspfvar' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'aco2neevar' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'aco2gppvar' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'aco2recvar' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'ssrdcvar' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'strdcvar' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'alvar' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'vimdvar' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Total precipitation (variable resolution) +'tpvar' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'csfvar' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'lsfvar' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'pevvar' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#K index +'kx' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'totalx' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'strfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'vpotgrd' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'ptgrd' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'eqptgrd' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'septgrd' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'udvwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'vdvwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'urtwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'vrtwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'uctpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'uclngrd' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'ucdvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'p24.129' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'p25.129' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'clgrd' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'cvlgrd' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'cvhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'tvlgrd' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'tvhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'sicgrd' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'asngrd' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'rsngrd' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'sstkgrd' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'istl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'istl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'istl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'istl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'swvl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'swvl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'swvl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'swvl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'sltgrd' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'esgrd' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'smltgrd' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'sdurgrd' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'dsrpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress gradient +'magssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'fggrd10' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'lspfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'mx2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'mn2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'montgrd' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'presgrd' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'mean2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'mn2d24grd' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'uvbgrd' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'pargrd' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'capegrd' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'pvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'tpogrd' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'obctgrd' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'p63.129' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'p64.129' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'p65.129' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'p66.129' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'p67.129' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'p68.129' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'p69.129' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'p70.129' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'p71.129' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'p78.129' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'p79.129' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.129' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.129' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.129' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.129' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.129' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.129' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.129' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.129' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.129' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.129' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.129' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.129' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.129' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.129' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.129' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.129' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.129' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.129' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.129' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.129' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.129' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.129' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.129' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.129' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.129' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.129' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.129' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.129' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.129' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.129' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.129' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.129' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.129' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.129' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.129' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.129' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.129' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.129' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.129' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.129' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.129' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'mx2t6grd' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'mn2t6grd' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'fg6grd10' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'p125.129' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.129' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'atgrd' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'bvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'zgrd' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'ugrd' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'vgrd' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'qgrd' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'spgrd' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'wgrd' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'tcwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'tcwvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'vogrd' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'stl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'swl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'sdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'lspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'cpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'sfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'bldgrd' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'sshfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'slhfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'chnkgrd' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'snrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'tnrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'mslgrd' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'lnspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'swhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'lwhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'dgrd' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'ghgrd' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'rgrd' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'tspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'blhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'sdorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'isorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'anorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'slorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'tccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'ugrd10' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'vgrd10' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'grd2t' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'grd2d' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'ssrdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'stl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'swl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'lsmgrd' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'srgrd' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'algrd' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'strdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'ssrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'strgrd' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'tsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'ttrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'ewssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'nsssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'egrd' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'stl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'swl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'cccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'lccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'mccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'hccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'sundgrd' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'ewovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'nsovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'nwovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'neovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'btmpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'lgwsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'mgwsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'gwdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'srcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'veggrd' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'vsogrd' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'mx2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'mn2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'o3grd' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'pawgrd' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'rogrd' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'tco3grd' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'sigrd10' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'tsrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'ttrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'ssrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'strcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'tisrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'dhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'dhvdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'dhccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'dhlcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'vdzwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'vdmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'ewgdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'nsgdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'ctzwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'ctmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'vdhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'htccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'htlcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'crnhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'tpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'iewsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'inssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'ishfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'iegrd' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'asqgrd' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'lsrhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'sktgrd' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'stl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'swl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'tsngrd' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'csfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'lsfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'acfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'alwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'falgrd' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'fsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'flsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'clwcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'ciwcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'ccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'aiwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'icegrd' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'attegrd' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'athegrd' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'atzegrd' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'atmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.129' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'tsru' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'ttru' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'tsuc' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'ttuc' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'clw' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'cf' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'dhlc' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'ewgd' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'nsgd' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'vdh' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'att' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'ath' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'atzw' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'atmwax' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'mvv' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'t2ag2' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'t2ag1' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'t2ag0' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'t2alm1' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'t2alm2' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'tpag20' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'tpag10' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'tpag0' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'stag0' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'mslag0' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'h0dip' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'hslp' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'saip' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'whip' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'talm2' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'tag2' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'talm8' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'talm4' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'tag4' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'tag8' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'g10p' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'capep' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'tpl01' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'tprl1' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'tprg3' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'tprg5' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'sp10g10' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'sp10g15' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre Wind gust of at least 15 m/s +'fg10g15' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre Wind gust of at least 20 m/s +'fg10g20' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre Wind gust of at least 25 m/s +'fg10g25' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'t2l273' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'swhg2' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'swhg4' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'swhg6' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'swhg8' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'mwpg8' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'mwpg10' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'mwpg12' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'mwpg15' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'zp' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'tap' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#2 metre temperature probability +'t2p' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'sfp' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Total precipitation probability +'tpp' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'tccp' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'sp10' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'t2p' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'mx2tp' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'mn2tp' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'tpp' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'swhp' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'mwpp' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'p255.131' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'fg10i' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'sfi' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'ws10i' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'t2i' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'mx2ti' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'mn2ti' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'tpi' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'t2plm10' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'t2plm5' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'t2pl0' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'t2pl5' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'t2pl10' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'t2pg25' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'t2pg30' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'t2pg35' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'t2pg40' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'t2pg45' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'mn2tplm10' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'mn2tplm5' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'mn2tpl0' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'mn2tpl5' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'mn2tpl10' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'mx2tpg25' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'mx2tpg30' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'mx2tpg35' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'mx2tpg40' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'mx2tpg45' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'sp10g10' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'sp10g15' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'sp10g20' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'sp10g35' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'sp10g50' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'gp10g20' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'gp10g35' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'gp10g50' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'gp10g75' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'gp10g100' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'tppg1' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'tppg5' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'tppg10' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'tppg20' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'tppg40' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'tppg60' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'tppg80' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'tppg100' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'tppg150' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'tppg200' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'tppg300' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'sfpg1' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'sfpg5' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'sfpg10' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'sfpg20' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'sfpg40' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'sfpg60' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'sfpg80' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'sfpg100' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'sfpg150' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'sfpg200' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'sfpg300' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'tccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'tccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'tccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'tccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'tccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'tccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'tccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'tccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'tccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'tccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'hccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'hccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'hccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'hccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'hccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'hccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'hccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'hccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'hccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'hccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'mccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'mccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'mccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'mccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'mccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'mccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'mccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'mccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'mccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'mccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'lccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'lccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'lccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'lccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'lccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'lccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'lccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'lccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'lccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'lccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'maxswh' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'tmax' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'hmax' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'wmb' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'mp1' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean wave period based on second moment +'mp2' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'wdw' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'p1ww' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'p2ww' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'dwww' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'p1ps' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'p2ps' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'dwps' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'swh' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'mwd' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak period of 1D spectra +'pp1d' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'mwp' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'cdww' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'shts' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'mdts' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'mpts' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'sdhs' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'mu10' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'mdwi' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'sdu' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'msqs' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'wind' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'awh' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'acwh' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'arrc' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'dwi' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'d2sp' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'d2fd' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'wsk' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'bfi' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'wsp' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.140' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'ocpt' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'ocs' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'ocpd' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'ocu' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'ocv' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'ocw' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'rn' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'uv' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'ut' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'vt' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'uu' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'vv' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'p144.150' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'p145.150' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'p146.150' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'p147.150' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'p148.150' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'sl' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'p153.150' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'mld' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'p155.150' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'p168.150' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'p169.150' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'p170.150' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'nsf' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'p172.150' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'p173.150' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'p180.150' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'p181.150' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'p182.150' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'p183.150' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'p255.150' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'p128.151' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Ocean potential temperature +'ocpt' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Salinity +'s' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Ocean current zonal component +'ocu' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Ocean current meridional component +'ocv' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Ocean current vertical component +'ocw' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'mst' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'vvs' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'vdf' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'dep' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sigma-theta +'sth' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'rn' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'uv' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'ut' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'vt' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'uu' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'vv' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea level +'sl' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'sl_1' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Barotropic stream function +'bsf' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'mld' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'btp' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'sh' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'crl' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'p152.151' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#U stress +'tax' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#V stress +'tay' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'tki' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'nsf' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'asr' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'pme' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'sst' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'shf' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'dte' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'hfc' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#20 degrees isotherm depth +'d20' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'tav300' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'uba1' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'vba1' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'ztr' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'mtr' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'zht' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'mht' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'umax' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'dumax' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'smax' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'dsmax' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'sav300' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'ldp' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'ldu' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'pti' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'ptae' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'bpt' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'apt' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'ptbe' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'as' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'sali' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'ebt' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'ebs' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'uvi' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'vvi' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'subi' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'sale' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'bsal' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'salbe' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'ebta' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'ebsa' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'lti' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'lsi' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'bzpga' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'bmpga' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'ebtl' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'ebsl' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'fgbt' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'fgbs' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'bpa' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'fgbp' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'pta' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'psa' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'p255.151' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'fgrea10' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'wrea' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'pwcrea' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'swl1rea' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'sdrea' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lsprea' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cprea' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'sfrea' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'ghrea' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'rrea' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'swl2rea' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'ewssrea' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'nsssrea' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'erea' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'swl3rea' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'srcrea' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'mx2trea' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'mn2trea' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'rorea' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'zzrea' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'tzrea' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'ttrea' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'qzrea' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'qtrea' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'qqrea' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'uzrea' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'utrea' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'uqrea' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'uurea' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'vzrea' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'vtrea' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'vqrea' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'vurea' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'vvrea' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'wzrea' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'wtrea' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'wqrea' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'wurea' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'wvrea' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'wwrea' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'ishfrea' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'csfrea' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'lsfrea' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'clwcerrea' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'ccrea' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'falrea' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'wsrea10' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'moflrea' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'p249.160' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'hsdrea' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'p51.162' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'p53.162' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'p54.162' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'p55.162' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'p56.162' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'p57.162' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'p58.162' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'p59.162' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'p60.162' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'p61.162' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'p62.162' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'p63.162' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'p64.162' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'p65.162' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'p66.162' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'p67.162' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'p68.162' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'p69.162' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'p70.162' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'p71.162' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'p72.162' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'p73.162' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'p74.162' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'p75.162' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'p76.162' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'p77.162' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'p78.162' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'p81.162' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'p82.162' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'p83.162' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'p84.162' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'p85.162' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'p86.162' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'p87.162' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'p100.162' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'p101.162' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'p102.162' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'p103.162' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'p104.162' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'p105.162' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'p106.162' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'p107.162' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'p108.162' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'p109.162' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'p110.162' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'p111.162' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'p112.162' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'p113.162' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'p206.162' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'p207.162' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'p208.162' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'p209.162' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'p210.162' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'p211.162' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'p212.162' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'p213.162' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'p214.162' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'p215.162' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'p216.162' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'p217.162' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'p218.162' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'p219.162' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'p220.162' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'p221.162' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'p222.162' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'p223.162' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'p224.162' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'p225.162' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'p226.162' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'p227.162' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'p229.162' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'p230.162' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'p231.162' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'p232.162' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'p233.162' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'p255.162' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'tsw' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'swl2' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'strfa' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'vpota' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'pta' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'epta' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'septa' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'udwa' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'vdwa' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'urwa' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'vrwa' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'uctpa' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'uclna' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'ucdva' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'cla' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'cvla' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'cvha' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'tvla' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'tvha' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'sica' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'asna' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'rsna' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'ssta' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'istal1' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'istal2' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'istal3' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'istal4' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'swval1' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'swval2' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'swval3' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'swval4' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'slta' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'esa' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'smlta' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'sdura' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'dsrpa' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress anomaly +'magssa' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'fga10' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'lspfa' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'mx2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'monta' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'pa' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'mn2d24a' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'uvba' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'para' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'capea' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'pva' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'tpoa' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'obcta' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'stsktda' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'ftsktda' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'sktda' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'tclwa' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'tciwa' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'vitea' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.171' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'ata' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'bva' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'za' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'ta' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'ua' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'va' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'qa' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'spa' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'wa' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'tcwa' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'tcwva' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'voa' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'stal1' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'swal1' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'sda' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'lspa' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'cpa' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'sfa' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'blda' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'sshfa' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'slhfa' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'chnka' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'snra' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'tnra' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'msla' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'lspa' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'swhra' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'lwhra' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'da' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'gha' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'ra' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'tspa' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'blha' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'sdora' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'isora' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'anora' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'slora' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'tcca' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'ua10' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'va10' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'t2a' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'d2a' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'ssrda' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'slal2' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'swal2' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'sra' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'ala' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'strda' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'ssra' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'stra' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'tsra' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'ttra' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'eqssa' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'nsssa' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'ea' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'stal3' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'swal3' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'ccca' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'lcca' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'mcca' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'hcca' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'sunda' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'ewova' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'nsova' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'nwova' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'neova' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'btmpa' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'lgwsa' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'mgwsa' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'gwda' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'srca' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'vfa' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'vsoa' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'mx2ta' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'mn2ta' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'o3a' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'pawa' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'roa' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'tco3a' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'ua10' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'tsrca' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'ttrca' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'ssrca' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'strca' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'sia' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'dhra' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'dhvda' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'dhcca' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'dhlca' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'vdzwa' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'vdmwa' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'ewgda' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'nsgda' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'ctzwa' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'ctmwa' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'vdha' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'htcca' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'htlca' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'crnha' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'tpa' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'iewsa' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'inssa' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'ishfa' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'iea' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'asqa' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'lsrha' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'skta' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'stal4' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'swal4' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'tsna' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'csfa' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'lsfa' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'acfa' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'alwa' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'fala' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'fsra' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'flsra' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'clwca' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'ciwca' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'cca' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'aiwa' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'iaa' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'attea' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'athea' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'atzea' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'atmwa' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.171' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'esrate' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'p45.172' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress +'p48.172' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction +'p50.172' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'p142.172' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cprate' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) +'p144.172' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'bldrate' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'p146.172' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'p147.172' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation +'p149.172' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate +'p153.172' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'p154.172' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards +'p169.172' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards +'p175.172' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation +'p176.172' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation +'p177.172' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation +'p178.172' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation +'p179.172' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress +'p180.172' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'p181.172' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'erate' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration +'p189.172' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'p195.172' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'p196.172' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'gwdrate' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Runoff +'p205.172' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'p208.172' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'p209.172' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'p210.172' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'p211.172' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation +'p212.172' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Total precipitation +'tprate' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'p239.172' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'p240.172' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'p255.172' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'p44.173' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'p45.173' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress anomaly +'p48.173' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'p50.173' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'p142.173' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'p143.173' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'sfara' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'p145.173' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'p146.173' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'p147.173' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'p149.173' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'p153.173' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'p154.173' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomaly +'p169.173' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomaly +'p175.173' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomaly +'p176.173' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomaly +'p177.173' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomaly +'p178.173' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomaly +'p179.173' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'p180.173' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'p181.173' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'p182.173' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'sundara' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'p195.173' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'p196.173' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'p197.173' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomaly +'p205.173' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'p208.173' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'p209.173' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'p210.173' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'p211.173' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'p212.173' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'tpara' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'p239.173' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'p240.173' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'p255.173' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'p6.174' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'sro' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'ssro' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'p31.174' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'p34.174' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'p39.174' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'p40.174' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'p41.174' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'p42.174' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'p49.174' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'p55.174' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'p83.174' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'p85.174' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'p86.174' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'p87.174' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'p88.174' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'p89.174' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'p90.174' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'p94.174' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'p95.174' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'p98.174' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'p99.174' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'p110.174' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'p111.174' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'p139.174' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'p164.174' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'p167.174' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'p168.174' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'p170.174' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'p175.174' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'p183.174' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'p201.174' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'p202.174' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'p236.174' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'p255.174' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'p6.175' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'p31.175' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'p34.175' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'p39.175' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'p40.175' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'p41.175' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'p42.175' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'p49.175' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'p55.175' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'p83.175' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'p85.175' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'p86.175' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'p87.175' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'p88.175' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'p89.175' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'p90.175' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'p110.175' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'p111.175' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'p139.175' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'p164.175' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'p167.175' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'p168.175' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'p170.175' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'p175.175' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'p183.175' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'p201.175' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'p202.175' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'p236.175' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'p255.175' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'tsw' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'sdsien' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'cap' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'wiltsien' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'sr' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'tsm' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'ddiff2' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'p1.201' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'p2.201' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'p3.201' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'p4.201' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'apab_s' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'p6.201' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'p7.201' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'p8.201' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'p9.201' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'p10.201' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'p11.201' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'p12.201' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'sohr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'thhr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'p15.201' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'p16.201' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'p17.201' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'clc' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'p30.201' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'qc' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'p32.201' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'qi' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'p34.201' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'p35.201' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'p36.201' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'p37.201' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'p38.201' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'twater' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'p42.201' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'ch_cm_cl' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'p51.201' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'p52.201' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'p53.201' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'p54.201' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'p55.201' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'p56.201' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'p60.201' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'p61.201' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'p62.201' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'p63.201' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'p64.201' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'p65.201' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'p66.201' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'p67.201' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'hbas_con' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'htop_con' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'p70.201' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'p71.201' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'bas_con' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'top_con' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'dt_con' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'dqv_con' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'p76.201' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'p77.201' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'du_con' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'dv_con' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'p80.201' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'p81.201' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'htop_dc' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'p83.201' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'hzerocl' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'snowlmt' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'qrs_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'prr_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'prs_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'rain_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'prr_con' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'prs_con' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'rain_con' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'pp' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'p150.201' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'vmax_10m' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'w_i' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'t_snow' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'t_ice' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'cape_con' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'p255.201' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr07' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr08' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr09' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr10' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'aermr12' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'aerpr' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'aersm' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'aerlg' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'aodpr' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'aodsm' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'aodlg' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'aerdep' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'aerlts' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'aerscc' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'co2' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'ch4' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'n2o' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'tcco2' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'tcch4' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'tcn2o' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2of' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbf' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apf' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'ch4f' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2fire' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofire' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'ch4fire' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfire' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'h2fire' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfire' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofire' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5fire' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfire' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfire' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfire' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'bcfire' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfire' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffire' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'vegfire' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'ccfire' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfire' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'bffire' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'oafire' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'frpfire' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'crfire' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'no2' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'so2' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'co' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'hcho' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'tcno2' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'tcso2' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'tcco' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'tchcho' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'nox' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'tcnox' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'sfnox' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'sfco2' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'sfhcho' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'ra' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'sf6' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'tcra' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apf' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'go3' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'gtco3' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01diff' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02diff' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03diff' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04diff' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05diff' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06diff' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr07diff' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr08diff' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr09diff' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr10diff' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11diff' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'aermr12diff' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01diff' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02diff' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03diff' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04diff' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05diff' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06diff' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07diff' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08diff' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09diff' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10diff' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11diff' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12diff' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01diff' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02diff' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03diff' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04diff' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05diff' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06diff' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07diff' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08diff' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09diff' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10diff' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11diff' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12diff' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'aerprdiff' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'aersmdiff' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'aerlgdiff' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'aodprdiff' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'aodsmdiff' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'aodlgdiff' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'aerdepdiff' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'aerltsdiff' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'aersccdiff' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'co2diff' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'ch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'n2odiff' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'tcco2diff' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'tcch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'tcn2odiff' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2ofdiff' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'ch4fdiff' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'ch4firediff' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'h2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5firediff' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'bcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffirediff' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'vegfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'ccfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'bffirediff' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'oafirediff' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'frpfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'crfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'no2diff' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'so2diff' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'codiff' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'hchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'tcno2diff' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'tcso2diff' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'tccodiff' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'tchchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'noxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'tcnoxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1diff' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1diff' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2diff' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2diff' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3diff' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3diff' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4diff' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4diff' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5diff' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5diff' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6diff' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6diff' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7diff' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7diff' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8diff' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8diff' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9diff' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9diff' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10diff' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10diff' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'sfnoxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2diff' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2diff' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'sfco2diff' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'sfhchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3diff' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1diff' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2diff' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3diff' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4diff' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5diff' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6diff' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7diff' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8diff' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9diff' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10diff' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'radiff' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'sf6diff' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'tcradiff' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6diff' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'go3diff' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'gtco3diff' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469diff' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670diff' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865diff' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240diff' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'tpoc' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'cin' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'orog' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'zust' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'mean2t' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'mean10ws' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'meantcc' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'dl' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'lmlt' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'lmld' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'lblt' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'ltlt' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'lshf' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'lict' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'licd' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'dndzn' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'dndza' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'dctb' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'tplb' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'tplt' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'sm' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'u10n' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'v10n' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'st' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'sd' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'cap' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'wilt' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'tp' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'esvar' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'smltvar' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'sdurvar' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'uvbvar' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'parvar' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'lspvar' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'cpvar' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'sfvar' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'bldvar' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'sshfvar' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'slhfvar' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'ssrdvar' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'strdvar' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'ssrvar' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'strvar' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'tsrvar' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'ttrvar' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'ewssvar' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'nsssvar' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'evar' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'sundvar' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'lgwsvar' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'mgwsvar' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'gwdvar' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'srcvar' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'rovar' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'tsrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'ttrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'ssrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'strcvar' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'tisrvar' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'sts' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'msls' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'t2s' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'tps' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'ust' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'vst' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'maxfrpfire' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2fire' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfire' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfire' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4fire' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfire' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefire' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfire' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfire' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofire' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofire' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofire' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3fire' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfire' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'maxfrpfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8firediff' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4firediff' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6firediff' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8firediff' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefirediff' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3firediff' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'vtnowd' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'utnowd' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'u100' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'v100' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'ascat_sm_cdfa' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ascat_sm_cdfb' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} + +# EC-Earth product 1 +'ece1.126' = { + table2Version = 126 ; + indicatorOfParameter = 1 ; + } + +# EC-Earth product 2 +'ece2.126' = { + table2Version = 126 ; + indicatorOfParameter = 2 ; + } + +# EC-Earth product 3 +'ece3.126' = { + table2Version = 126 ; + indicatorOfParameter = 3 ; + } + +# EC-Earth product 4 +'ece4.126' = { + table2Version = 126 ; + indicatorOfParameter = 4 ; + } + +# EC-Earth product 5 +'ece5.126' = { + table2Version = 126 ; + indicatorOfParameter = 5 ; + } + +# EC-Earth product 6 +'ece6.126' = { + table2Version = 126 ; + indicatorOfParameter = 6 ; + } + +# EC-Earth product 7 +'ece7.126' = { + table2Version = 126 ; + indicatorOfParameter = 7 ; + } + +# EC-Earth product 8 +'ece8.126' = { + table2Version = 126 ; + indicatorOfParameter = 8 ; + } + +# EC-Earth product 9 +'ece9.126' = { + table2Version = 126 ; + indicatorOfParameter = 9 ; + } + +# EC-Earth product 10 +'ece10.126' = { + table2Version = 126 ; + indicatorOfParameter = 10 ; + } + +# EC-Earth product 11 +'ece11.126' = { + table2Version = 126 ; + indicatorOfParameter = 11 ; + } + +# EC-Earth product 12 +'ece12.126' = { + table2Version = 126 ; + indicatorOfParameter = 12 ; + } + +# EC-Earth product 13 +'ece13.126' = { + table2Version = 126 ; + indicatorOfParameter = 13 ; + } + +# EC-Earth product 14 +'ece14.126' = { + table2Version = 126 ; + indicatorOfParameter = 14 ; + } + +# EC-Earth product 15 +'ece15.126' = { + table2Version = 126 ; + indicatorOfParameter = 15 ; + } + +# EC-Earth product 16 +'ece16.126' = { + table2Version = 126 ; + indicatorOfParameter = 16 ; + } + +# EC-Earth product 17 +'ece17.126' = { + table2Version = 126 ; + indicatorOfParameter = 17 ; + } + +# EC-Earth product 18 +'ece18.126' = { + table2Version = 126 ; + indicatorOfParameter = 18 ; + } + +# EC-Earth product 19 +'ece19.126' = { + table2Version = 126 ; + indicatorOfParameter = 19 ; + } + +# EC-Earth product 20 +'ece20.126' = { + table2Version = 126 ; + indicatorOfParameter = 20 ; + } + +# EC-Earth product 21 +'ece21.126' = { + table2Version = 126 ; + indicatorOfParameter = 21 ; + } + +# EC-Earth product 22 +'ece22.126' = { + table2Version = 126 ; + indicatorOfParameter = 22 ; + } + +# EC-Earth product 23 +'ece23.126' = { + table2Version = 126 ; + indicatorOfParameter = 23 ; + } + +# EC-Earth product 24 +'ece24.126' = { + table2Version = 126 ; + indicatorOfParameter = 24 ; + } + +# EC-Earth product 25 +'ece25.126' = { + table2Version = 126 ; + indicatorOfParameter = 25 ; + } + +# EC-Earth product 26 +'ece26.126' = { + table2Version = 126 ; + indicatorOfParameter = 26 ; + } + +# EC-Earth product 27 +'ece27.126' = { + table2Version = 126 ; + indicatorOfParameter = 27 ; + } + +# EC-Earth product 28 +'ece28.126' = { + table2Version = 126 ; + indicatorOfParameter = 28 ; + } + +# EC-Earth product 29 +'ece29.126' = { + table2Version = 126 ; + indicatorOfParameter = 29 ; + } + +# EC-Earth product 30 +'ece30.126' = { + table2Version = 126 ; + indicatorOfParameter = 30 ; + } + +# EC-Earth product 31 +'ece31.126' = { + table2Version = 126 ; + indicatorOfParameter = 31 ; + } + +# EC-Earth product 32 +'ece32.126' = { + table2Version = 126 ; + indicatorOfParameter = 32 ; + } + +# EC-Earth product 33 +'ece33.126' = { + table2Version = 126 ; + indicatorOfParameter = 33 ; + } + +# EC-Earth product 34 +'ece34.126' = { + table2Version = 126 ; + indicatorOfParameter = 34 ; + } + +# EC-Earth product 35 +'ece35.126' = { + table2Version = 126 ; + indicatorOfParameter = 35 ; + } + +# EC-Earth product 36 +'ece36.126' = { + table2Version = 126 ; + indicatorOfParameter = 36 ; + } + +# EC-Earth product 37 +'ece37.126' = { + table2Version = 126 ; + indicatorOfParameter = 37 ; + } + +# EC-Earth product 38 +'ece38.126' = { + table2Version = 126 ; + indicatorOfParameter = 38 ; + } + +# EC-Earth product 39 +'ece39.126' = { + table2Version = 126 ; + indicatorOfParameter = 39 ; + } + +# EC-Earth product 40 +'ece40.126' = { + table2Version = 126 ; + indicatorOfParameter = 40 ; + } + +# EC-Earth product 41 +'ece41.126' = { + table2Version = 126 ; + indicatorOfParameter = 41 ; + } + +# EC-Earth product 42 +'ece42.126' = { + table2Version = 126 ; + indicatorOfParameter = 42 ; + } + +# EC-Earth product 43 +'ece43.126' = { + table2Version = 126 ; + indicatorOfParameter = 43 ; + } + +# EC-Earth product 44 +'ece44.126' = { + table2Version = 126 ; + indicatorOfParameter = 44 ; + } + +# EC-Earth product 45 +'ece45.126' = { + table2Version = 126 ; + indicatorOfParameter = 45 ; + } + +# EC-Earth product 46 +'ece46.126' = { + table2Version = 126 ; + indicatorOfParameter = 46 ; + } + +# EC-Earth product 47 +'ece47.126' = { + table2Version = 126 ; + indicatorOfParameter = 47 ; + } + +# EC-Earth product 48 +'ece48.126' = { + table2Version = 126 ; + indicatorOfParameter = 48 ; + } + +# EC-Earth product 49 +'ece49.126' = { + table2Version = 126 ; + indicatorOfParameter = 49 ; + } + +# EC-Earth product 50 +'ece50.126' = { + table2Version = 126 ; + indicatorOfParameter = 50 ; + } + +# EC-Earth product 51 +'ece51.126' = { + table2Version = 126 ; + indicatorOfParameter = 51 ; + } + +# EC-Earth product 52 +'ece52.126' = { + table2Version = 126 ; + indicatorOfParameter = 52 ; + } + +# EC-Earth product 53 +'ece53.126' = { + table2Version = 126 ; + indicatorOfParameter = 53 ; + } + +# EC-Earth product 54 +'ece54.126' = { + table2Version = 126 ; + indicatorOfParameter = 54 ; + } + +# EC-Earth product 55 +'ece55.126' = { + table2Version = 126 ; + indicatorOfParameter = 55 ; + } + +# EC-Earth product 56 +'ece56.126' = { + table2Version = 126 ; + indicatorOfParameter = 56 ; + } + +# EC-Earth product 57 +'ece57.126' = { + table2Version = 126 ; + indicatorOfParameter = 57 ; + } + +# EC-Earth product 58 +'ece58.126' = { + table2Version = 126 ; + indicatorOfParameter = 58 ; + } + +# EC-Earth product 59 +'ece59.126' = { + table2Version = 126 ; + indicatorOfParameter = 59 ; + } + +# EC-Earth product 60 +'ece60.126' = { + table2Version = 126 ; + indicatorOfParameter = 60 ; + } + +# EC-Earth product 61 +'ece61.126' = { + table2Version = 126 ; + indicatorOfParameter = 61 ; + } + +# EC-Earth product 62 +'ece62.126' = { + table2Version = 126 ; + indicatorOfParameter = 62 ; + } + +# EC-Earth product 63 +'ece63.126' = { + table2Version = 126 ; + indicatorOfParameter = 63 ; + } + +# EC-Earth product 64 +'ece64.126' = { + table2Version = 126 ; + indicatorOfParameter = 64 ; + } + +# EC-Earth product 65 +'ece65.126' = { + table2Version = 126 ; + indicatorOfParameter = 65 ; + } + +# EC-Earth product 66 +'ece66.126' = { + table2Version = 126 ; + indicatorOfParameter = 66 ; + } + +# EC-Earth product 67 +'ece67.126' = { + table2Version = 126 ; + indicatorOfParameter = 67 ; + } + +# EC-Earth product 68 +'ece68.126' = { + table2Version = 126 ; + indicatorOfParameter = 68 ; + } + +# EC-Earth product 69 +'ece69.126' = { + table2Version = 126 ; + indicatorOfParameter = 69 ; + } + +# EC-Earth product 70 +'ece70.126' = { + table2Version = 126 ; + indicatorOfParameter = 70 ; + } + +# EC-Earth product 71 +'ece71.126' = { + table2Version = 126 ; + indicatorOfParameter = 71 ; + } + +# EC-Earth product 72 +'ece72.126' = { + table2Version = 126 ; + indicatorOfParameter = 72 ; + } + +# EC-Earth product 73 +'ece73.126' = { + table2Version = 126 ; + indicatorOfParameter = 73 ; + } + +# EC-Earth product 74 +'ece74.126' = { + table2Version = 126 ; + indicatorOfParameter = 74 ; + } + +# EC-Earth product 75 +'ece75.126' = { + table2Version = 126 ; + indicatorOfParameter = 75 ; + } + +# EC-Earth product 76 +'ece76.126' = { + table2Version = 126 ; + indicatorOfParameter = 76 ; + } + +# EC-Earth product 77 +'ece77.126' = { + table2Version = 126 ; + indicatorOfParameter = 77 ; + } + +# EC-Earth product 78 +'ece78.126' = { + table2Version = 126 ; + indicatorOfParameter = 78 ; + } + +# EC-Earth product 79 +'ece79.126' = { + table2Version = 126 ; + indicatorOfParameter = 79 ; + } + +# EC-Earth product 80 +'ece80.126' = { + table2Version = 126 ; + indicatorOfParameter = 80 ; + } + +# EC-Earth product 81 +'ece81.126' = { + table2Version = 126 ; + indicatorOfParameter = 81 ; + } + +# EC-Earth product 82 +'ece82.126' = { + table2Version = 126 ; + indicatorOfParameter = 82 ; + } + +# EC-Earth product 83 +'ece83.126' = { + table2Version = 126 ; + indicatorOfParameter = 83 ; + } + +# EC-Earth product 84 +'ece84.126' = { + table2Version = 126 ; + indicatorOfParameter = 84 ; + } + +# EC-Earth product 85 +'ece85.126' = { + table2Version = 126 ; + indicatorOfParameter = 85 ; + } + +# EC-Earth product 86 +'ece86.126' = { + table2Version = 126 ; + indicatorOfParameter = 86 ; + } + +# EC-Earth product 87 +'ece87.126' = { + table2Version = 126 ; + indicatorOfParameter = 87 ; + } + +# EC-Earth product 88 +'ece88.126' = { + table2Version = 126 ; + indicatorOfParameter = 88 ; + } + +# EC-Earth product 89 +'ece89.126' = { + table2Version = 126 ; + indicatorOfParameter = 89 ; + } + +# EC-Earth product 90 +'ece90.126' = { + table2Version = 126 ; + indicatorOfParameter = 90 ; + } + +# EC-Earth product 91 +'ece91.126' = { + table2Version = 126 ; + indicatorOfParameter = 91 ; + } + +# EC-Earth product 92 +'ece92.126' = { + table2Version = 126 ; + indicatorOfParameter = 92 ; + } + +# EC-Earth product 93 +'ece93.126' = { + table2Version = 126 ; + indicatorOfParameter = 93 ; + } + +# EC-Earth product 94 +'ece94.126' = { + table2Version = 126 ; + indicatorOfParameter = 94 ; + } + +# EC-Earth product 95 +'ece95.126' = { + table2Version = 126 ; + indicatorOfParameter = 95 ; + } + +# EC-Earth product 96 +'ece96.126' = { + table2Version = 126 ; + indicatorOfParameter = 96 ; + } + +# EC-Earth product 97 +'ece97.126' = { + table2Version = 126 ; + indicatorOfParameter = 97 ; + } + +# EC-Earth product 98 +'ece98.126' = { + table2Version = 126 ; + indicatorOfParameter = 98 ; + } + +# EC-Earth product 99 +'ece99.126' = { + table2Version = 126 ; + indicatorOfParameter = 99 ; + } + +# EC-Earth product 100 +'ece100.126' = { + table2Version = 126 ; + indicatorOfParameter = 100 ; + } + +# EC-Earth product 101 +'ece101.126' = { + table2Version = 126 ; + indicatorOfParameter = 101 ; + } + +# EC-Earth product 102 +'ece102.126' = { + table2Version = 126 ; + indicatorOfParameter = 102 ; + } + +# EC-Earth product 103 +'ece103.126' = { + table2Version = 126 ; + indicatorOfParameter = 103 ; + } + +# EC-Earth product 104 +'ece104.126' = { + table2Version = 126 ; + indicatorOfParameter = 104 ; + } + +# EC-Earth product 105 +'ece105.126' = { + table2Version = 126 ; + indicatorOfParameter = 105 ; + } + +# EC-Earth product 106 +'ece106.126' = { + table2Version = 126 ; + indicatorOfParameter = 106 ; + } + +# EC-Earth product 107 +'ece107.126' = { + table2Version = 126 ; + indicatorOfParameter = 107 ; + } + +# EC-Earth product 108 +'ece108.126' = { + table2Version = 126 ; + indicatorOfParameter = 108 ; + } + +# EC-Earth product 109 +'ece109.126' = { + table2Version = 126 ; + indicatorOfParameter = 109 ; + } + +# EC-Earth product 110 +'ece110.126' = { + table2Version = 126 ; + indicatorOfParameter = 110 ; + } + +# EC-Earth product 111 +'ece111.126' = { + table2Version = 126 ; + indicatorOfParameter = 111 ; + } + +# EC-Earth product 112 +'ece112.126' = { + table2Version = 126 ; + indicatorOfParameter = 112 ; + } + +# EC-Earth product 113 +'ece113.126' = { + table2Version = 126 ; + indicatorOfParameter = 113 ; + } + +# EC-Earth product 114 +'ece114.126' = { + table2Version = 126 ; + indicatorOfParameter = 114 ; + } + +# EC-Earth product 115 +'ece115.126' = { + table2Version = 126 ; + indicatorOfParameter = 115 ; + } + +# EC-Earth product 116 +'ece116.126' = { + table2Version = 126 ; + indicatorOfParameter = 116 ; + } + +# EC-Earth product 117 +'ece117.126' = { + table2Version = 126 ; + indicatorOfParameter = 117 ; + } + +# EC-Earth product 118 +'ece118.126' = { + table2Version = 126 ; + indicatorOfParameter = 118 ; + } + +# EC-Earth product 119 +'ece119.126' = { + table2Version = 126 ; + indicatorOfParameter = 119 ; + } + +# EC-Earth product 120 +'ece120.126' = { + table2Version = 126 ; + indicatorOfParameter = 120 ; + } + +# EC-Earth product 121 +'ece121.126' = { + table2Version = 126 ; + indicatorOfParameter = 121 ; + } + +# EC-Earth product 122 +'ece122.126' = { + table2Version = 126 ; + indicatorOfParameter = 122 ; + } + +# EC-Earth product 123 +'ece123.126' = { + table2Version = 126 ; + indicatorOfParameter = 123 ; + } + +# EC-Earth product 124 +'ece124.126' = { + table2Version = 126 ; + indicatorOfParameter = 124 ; + } + +# EC-Earth product 125 +'ece125.126' = { + table2Version = 126 ; + indicatorOfParameter = 125 ; + } + +# EC-Earth product 126 +'ece126.126' = { + table2Version = 126 ; + indicatorOfParameter = 126 ; + } + +# EC-Earth product 127 +'ece127.126' = { + table2Version = 126 ; + indicatorOfParameter = 127 ; + } + +# EC-Earth product 128 +'ece128.126' = { + table2Version = 126 ; + indicatorOfParameter = 128 ; + } + +# EC-Earth product 129 +'ece129.126' = { + table2Version = 126 ; + indicatorOfParameter = 129 ; + } + +# EC-Earth product 130 +'ece130.126' = { + table2Version = 126 ; + indicatorOfParameter = 130 ; + } + +# EC-Earth product 131 +'ece131.126' = { + table2Version = 126 ; + indicatorOfParameter = 131 ; + } + +# EC-Earth product 132 +'ece132.126' = { + table2Version = 126 ; + indicatorOfParameter = 132 ; + } + +# EC-Earth product 133 +'ece133.126' = { + table2Version = 126 ; + indicatorOfParameter = 133 ; + } + +# EC-Earth product 134 +'ece134.126' = { + table2Version = 126 ; + indicatorOfParameter = 134 ; + } + +# EC-Earth product 135 +'ece135.126' = { + table2Version = 126 ; + indicatorOfParameter = 135 ; + } + +# EC-Earth product 136 +'ece136.126' = { + table2Version = 126 ; + indicatorOfParameter = 136 ; + } + +# EC-Earth product 137 +'ece137.126' = { + table2Version = 126 ; + indicatorOfParameter = 137 ; + } + +# EC-Earth product 138 +'ece138.126' = { + table2Version = 126 ; + indicatorOfParameter = 138 ; + } + +# EC-Earth product 139 +'ece139.126' = { + table2Version = 126 ; + indicatorOfParameter = 139 ; + } + +# EC-Earth product 140 +'ece140.126' = { + table2Version = 126 ; + indicatorOfParameter = 140 ; + } + +# EC-Earth product 141 +'ece141.126' = { + table2Version = 126 ; + indicatorOfParameter = 141 ; + } + +# EC-Earth product 142 +'ece142.126' = { + table2Version = 126 ; + indicatorOfParameter = 142 ; + } + +# EC-Earth product 143 +'ece143.126' = { + table2Version = 126 ; + indicatorOfParameter = 143 ; + } + +# EC-Earth product 144 +'ece144.126' = { + table2Version = 126 ; + indicatorOfParameter = 144 ; + } + +# EC-Earth product 145 +'ece145.126' = { + table2Version = 126 ; + indicatorOfParameter = 145 ; + } + +# EC-Earth product 146 +'ece146.126' = { + table2Version = 126 ; + indicatorOfParameter = 146 ; + } + +# EC-Earth product 147 +'ece147.126' = { + table2Version = 126 ; + indicatorOfParameter = 147 ; + } + +# EC-Earth product 148 +'ece148.126' = { + table2Version = 126 ; + indicatorOfParameter = 148 ; + } + +# EC-Earth product 149 +'ece149.126' = { + table2Version = 126 ; + indicatorOfParameter = 149 ; + } + +# EC-Earth product 150 +'ece150.126' = { + table2Version = 126 ; + indicatorOfParameter = 150 ; + } + +# EC-Earth product 151 +'ece151.126' = { + table2Version = 126 ; + indicatorOfParameter = 151 ; + } + +# EC-Earth product 152 +'ece152.126' = { + table2Version = 126 ; + indicatorOfParameter = 152 ; + } + +# EC-Earth product 153 +'ece153.126' = { + table2Version = 126 ; + indicatorOfParameter = 153 ; + } + +# EC-Earth product 154 +'ece154.126' = { + table2Version = 126 ; + indicatorOfParameter = 154 ; + } + +# EC-Earth product 155 +'ece155.126' = { + table2Version = 126 ; + indicatorOfParameter = 155 ; + } + +# EC-Earth product 156 +'ece156.126' = { + table2Version = 126 ; + indicatorOfParameter = 156 ; + } + +# EC-Earth product 157 +'ece157.126' = { + table2Version = 126 ; + indicatorOfParameter = 157 ; + } + +# EC-Earth product 158 +'ece158.126' = { + table2Version = 126 ; + indicatorOfParameter = 158 ; + } + +# EC-Earth product 159 +'ece159.126' = { + table2Version = 126 ; + indicatorOfParameter = 159 ; + } + +# EC-Earth product 160 +'ece160.126' = { + table2Version = 126 ; + indicatorOfParameter = 160 ; + } + +# EC-Earth product 161 +'ece161.126' = { + table2Version = 126 ; + indicatorOfParameter = 161 ; + } + +# EC-Earth product 162 +'ece162.126' = { + table2Version = 126 ; + indicatorOfParameter = 162 ; + } + +# EC-Earth product 163 +'ece163.126' = { + table2Version = 126 ; + indicatorOfParameter = 163 ; + } + +# EC-Earth product 164 +'ece164.126' = { + table2Version = 126 ; + indicatorOfParameter = 164 ; + } + +# EC-Earth product 165 +'ece165.126' = { + table2Version = 126 ; + indicatorOfParameter = 165 ; + } + +# EC-Earth product 166 +'ece166.126' = { + table2Version = 126 ; + indicatorOfParameter = 166 ; + } + +# EC-Earth product 167 +'ece167.126' = { + table2Version = 126 ; + indicatorOfParameter = 167 ; + } + +# EC-Earth product 168 +'ece168.126' = { + table2Version = 126 ; + indicatorOfParameter = 168 ; + } + +# EC-Earth product 169 +'ece169.126' = { + table2Version = 126 ; + indicatorOfParameter = 169 ; + } + +# EC-Earth product 170 +'ece170.126' = { + table2Version = 126 ; + indicatorOfParameter = 170 ; + } + +# EC-Earth product 171 +'ece171.126' = { + table2Version = 126 ; + indicatorOfParameter = 171 ; + } + +# EC-Earth product 172 +'ece172.126' = { + table2Version = 126 ; + indicatorOfParameter = 172 ; + } + +# EC-Earth product 173 +'ece173.126' = { + table2Version = 126 ; + indicatorOfParameter = 173 ; + } + +# EC-Earth product 174 +'ece174.126' = { + table2Version = 126 ; + indicatorOfParameter = 174 ; + } + +# EC-Earth product 175 +'ece175.126' = { + table2Version = 126 ; + indicatorOfParameter = 175 ; + } + +# EC-Earth product 176 +'ece176.126' = { + table2Version = 126 ; + indicatorOfParameter = 176 ; + } + +# EC-Earth product 177 +'ece177.126' = { + table2Version = 126 ; + indicatorOfParameter = 177 ; + } + +# EC-Earth product 178 +'ece178.126' = { + table2Version = 126 ; + indicatorOfParameter = 178 ; + } + +# EC-Earth product 179 +'ece179.126' = { + table2Version = 126 ; + indicatorOfParameter = 179 ; + } + +# EC-Earth product 180 +'ece180.126' = { + table2Version = 126 ; + indicatorOfParameter = 180 ; + } + +# EC-Earth product 181 +'ece181.126' = { + table2Version = 126 ; + indicatorOfParameter = 181 ; + } + +# EC-Earth product 182 +'ece182.126' = { + table2Version = 126 ; + indicatorOfParameter = 182 ; + } + +# EC-Earth product 183 +'ece183.126' = { + table2Version = 126 ; + indicatorOfParameter = 183 ; + } + +# EC-Earth product 184 +'ece184.126' = { + table2Version = 126 ; + indicatorOfParameter = 184 ; + } + +# EC-Earth product 185 +'ece185.126' = { + table2Version = 126 ; + indicatorOfParameter = 185 ; + } + +# EC-Earth product 186 +'ece186.126' = { + table2Version = 126 ; + indicatorOfParameter = 186 ; + } + +# EC-Earth product 187 +'ece187.126' = { + table2Version = 126 ; + indicatorOfParameter = 187 ; + } + +# EC-Earth product 188 +'ece188.126' = { + table2Version = 126 ; + indicatorOfParameter = 188 ; + } + +# EC-Earth product 189 +'ece189.126' = { + table2Version = 126 ; + indicatorOfParameter = 189 ; + } + +# EC-Earth product 190 +'ece190.126' = { + table2Version = 126 ; + indicatorOfParameter = 190 ; + } + +# EC-Earth product 191 +'ece191.126' = { + table2Version = 126 ; + indicatorOfParameter = 191 ; + } + +# EC-Earth product 192 +'ece192.126' = { + table2Version = 126 ; + indicatorOfParameter = 192 ; + } + +# EC-Earth product 193 +'ece193.126' = { + table2Version = 126 ; + indicatorOfParameter = 193 ; + } + +# EC-Earth product 194 +'ece194.126' = { + table2Version = 126 ; + indicatorOfParameter = 194 ; + } + +# EC-Earth product 195 +'ece195.126' = { + table2Version = 126 ; + indicatorOfParameter = 195 ; + } + +# EC-Earth product 196 +'ece196.126' = { + table2Version = 126 ; + indicatorOfParameter = 196 ; + } + +# EC-Earth product 197 +'ece197.126' = { + table2Version = 126 ; + indicatorOfParameter = 197 ; + } + +# EC-Earth product 198 +'ece198.126' = { + table2Version = 126 ; + indicatorOfParameter = 198 ; + } + +# EC-Earth product 199 +'ece199.126' = { + table2Version = 126 ; + indicatorOfParameter = 199 ; + } + +# EC-Earth product 200 +'ece200.126' = { + table2Version = 126 ; + indicatorOfParameter = 200 ; + } + +# EC-Earth product 201 +'ece201.126' = { + table2Version = 126 ; + indicatorOfParameter = 201 ; + } + +# EC-Earth product 202 +'ece202.126' = { + table2Version = 126 ; + indicatorOfParameter = 202 ; + } + +# EC-Earth product 203 +'ece203.126' = { + table2Version = 126 ; + indicatorOfParameter = 203 ; + } + +# EC-Earth product 204 +'ece204.126' = { + table2Version = 126 ; + indicatorOfParameter = 204 ; + } + +# EC-Earth product 205 +'ece205.126' = { + table2Version = 126 ; + indicatorOfParameter = 205 ; + } + +# EC-Earth product 206 +'ece206.126' = { + table2Version = 126 ; + indicatorOfParameter = 206 ; + } + +# EC-Earth product 207 +'ece207.126' = { + table2Version = 126 ; + indicatorOfParameter = 207 ; + } + +# EC-Earth product 208 +'ece208.126' = { + table2Version = 126 ; + indicatorOfParameter = 208 ; + } + +# EC-Earth product 209 +'ece209.126' = { + table2Version = 126 ; + indicatorOfParameter = 209 ; + } + +# EC-Earth product 210 +'ece210.126' = { + table2Version = 126 ; + indicatorOfParameter = 210 ; + } + +# EC-Earth product 211 +'ece211.126' = { + table2Version = 126 ; + indicatorOfParameter = 211 ; + } + +# EC-Earth product 212 +'ece212.126' = { + table2Version = 126 ; + indicatorOfParameter = 212 ; + } + +# EC-Earth product 213 +'ece213.126' = { + table2Version = 126 ; + indicatorOfParameter = 213 ; + } + +# EC-Earth product 214 +'ece214.126' = { + table2Version = 126 ; + indicatorOfParameter = 214 ; + } + +# EC-Earth product 215 +'ece215.126' = { + table2Version = 126 ; + indicatorOfParameter = 215 ; + } + +# EC-Earth product 216 +'ece216.126' = { + table2Version = 126 ; + indicatorOfParameter = 216 ; + } + +# EC-Earth product 217 +'ece217.126' = { + table2Version = 126 ; + indicatorOfParameter = 217 ; + } + +# EC-Earth product 218 +'ece218.126' = { + table2Version = 126 ; + indicatorOfParameter = 218 ; + } + +# EC-Earth product 219 +'ece219.126' = { + table2Version = 126 ; + indicatorOfParameter = 219 ; + } + +# EC-Earth product 220 +'ece220.126' = { + table2Version = 126 ; + indicatorOfParameter = 220 ; + } + +# EC-Earth product 221 +'ece221.126' = { + table2Version = 126 ; + indicatorOfParameter = 221 ; + } + +# EC-Earth product 222 +'ece222.126' = { + table2Version = 126 ; + indicatorOfParameter = 222 ; + } + +# EC-Earth product 223 +'ece223.126' = { + table2Version = 126 ; + indicatorOfParameter = 223 ; + } + +# EC-Earth product 224 +'ece224.126' = { + table2Version = 126 ; + indicatorOfParameter = 224 ; + } + +# EC-Earth product 225 +'ece225.126' = { + table2Version = 126 ; + indicatorOfParameter = 225 ; + } + +# EC-Earth product 226 +'ece226.126' = { + table2Version = 126 ; + indicatorOfParameter = 226 ; + } + +# EC-Earth product 227 +'ece227.126' = { + table2Version = 126 ; + indicatorOfParameter = 227 ; + } + +# EC-Earth product 228 +'ece228.126' = { + table2Version = 126 ; + indicatorOfParameter = 228 ; + } + +# EC-Earth product 229 +'ece229.126' = { + table2Version = 126 ; + indicatorOfParameter = 229 ; + } + +# EC-Earth product 230 +'ece230.126' = { + table2Version = 126 ; + indicatorOfParameter = 230 ; + } + +# EC-Earth product 231 +'ece231.126' = { + table2Version = 126 ; + indicatorOfParameter = 231 ; + } + +# EC-Earth product 232 +'ece232.126' = { + table2Version = 126 ; + indicatorOfParameter = 232 ; + } + +# EC-Earth product 233 +'ece233.126' = { + table2Version = 126 ; + indicatorOfParameter = 233 ; + } + +# EC-Earth product 234 +'ece234.126' = { + table2Version = 126 ; + indicatorOfParameter = 234 ; + } + +# EC-Earth product 235 +'ece235.126' = { + table2Version = 126 ; + indicatorOfParameter = 235 ; + } + +# EC-Earth product 236 +'ece236.126' = { + table2Version = 126 ; + indicatorOfParameter = 236 ; + } + +# EC-Earth product 237 +'ece237.126' = { + table2Version = 126 ; + indicatorOfParameter = 237 ; + } + +# EC-Earth product 238 +'ece238.126' = { + table2Version = 126 ; + indicatorOfParameter = 238 ; + } + +# EC-Earth product 239 +'ece239.126' = { + table2Version = 126 ; + indicatorOfParameter = 239 ; + } + +# EC-Earth product 240 +'ece240.126' = { + table2Version = 126 ; + indicatorOfParameter = 240 ; + } + +# EC-Earth product 241 +'ece241.126' = { + table2Version = 126 ; + indicatorOfParameter = 241 ; + } + +# EC-Earth product 242 +'ece242.126' = { + table2Version = 126 ; + indicatorOfParameter = 242 ; + } + +# EC-Earth product 243 +'ece243.126' = { + table2Version = 126 ; + indicatorOfParameter = 243 ; + } + +# EC-Earth product 244 +'ece244.126' = { + table2Version = 126 ; + indicatorOfParameter = 244 ; + } + +# EC-Earth product 245 +'ece245.126' = { + table2Version = 126 ; + indicatorOfParameter = 245 ; + } + +# EC-Earth product 246 +'ece246.126' = { + table2Version = 126 ; + indicatorOfParameter = 246 ; + } + +# EC-Earth product 247 +'ece247.126' = { + table2Version = 126 ; + indicatorOfParameter = 247 ; + } + +# EC-Earth product 248 +'ece248.126' = { + table2Version = 126 ; + indicatorOfParameter = 248 ; + } + +# EC-Earth product 249 +'ece249.126' = { + table2Version = 126 ; + indicatorOfParameter = 249 ; + } + +# EC-Earth product 250 +'ece250.126' = { + table2Version = 126 ; + indicatorOfParameter = 250 ; + } + +# EC-Earth product 251 +'ece251.126' = { + table2Version = 126 ; + indicatorOfParameter = 251 ; + } + +# EC-Earth product 252 +'ece252.126' = { + table2Version = 126 ; + indicatorOfParameter = 252 ; + } + +# EC-Earth product 253 +'ece253.126' = { + table2Version = 126 ; + indicatorOfParameter = 253 ; + } + +# EC-Earth product 254 +'ece254.126' = { + table2Version = 126 ; + indicatorOfParameter = 254 ; + } + +# EC-Earth product 255 +'ece255.126' = { + table2Version = 126 ; + indicatorOfParameter = 255 ; + } diff --git a/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/name.def b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/name.def new file mode 100644 index 0000000000000000000000000000000000000000..3a909469e80ed1c3ea4b23d2615efb42ead145d6 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/name.def @@ -0,0 +1,18181 @@ +# Automatically generated by ./create_def.pl from database param@wrep-db-misc-prod, do not edit +#Total precipitation of at least 1 mm +'Total precipitation of at least 1 mm' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'Total precipitation of at least 5 mm' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'Total precipitation of at least 10 mm' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'Total precipitation of at least 20 mm' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'Total precipitation of at least 40 mm' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'Total precipitation of at least 60 mm' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'Total precipitation of at least 80 mm' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'Total precipitation of at least 100 mm' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'Total precipitation of at least 150 mm' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'Total precipitation of at least 200 mm' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'Total precipitation of at least 300 mm' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'Stream function' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'Equivalent potential temperature' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'Saturated equivalent potential temperature' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'Soil sand fraction' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'Soil clay fraction' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'Surface runoff' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'Sub-surface runoff' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'Wind speed' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'U component of divergent wind' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'V component of divergent wind' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'U component of rotational wind' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'V component of rotational wind' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'UV visible albedo for direct radiation' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'UV visible albedo for diffuse radiation' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'Near IR albedo for direct radiation' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'Near IR albedo for diffuse radiation' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'Clear sky surface UV' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'Clear sky surface photosynthetically active radiation' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'Unbalanced component of temperature' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'Unbalanced component of logarithm of surface pressure' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'Unbalanced component of divergence' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'Lake cover' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'Low vegetation cover' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'High vegetation cover' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'Type of low vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'Type of high vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover +'Sea-ice cover' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'Snow albedo' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'Snow density' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'Sea surface temperature' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'Ice temperature layer 1' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'Ice temperature layer 2' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'Ice temperature layer 3' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'Ice temperature layer 4' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'Soil type' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'Snow evaporation' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'Snowmelt' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'Solar duration' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'Direct solar radiation' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress +'Magnitude of surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'10 metre wind gust since previous post-processing' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'Large-scale precipitation fraction' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'Maximum temperature at 2 metres in the last 24 hours' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'Minimum temperature at 2 metres in the last 24 hours' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'Montgomery potential' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'Pressure' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'Mean temperature at 2 metres in the last 24 hours' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'Mean 2 metre dewpoint temperature in the last 24 hours' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'Downward UV radiation at the surface' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'Photosynthetically active radiation at the surface' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'Convective available potential energy' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'Observation count' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'Instantaneous surface solar radiation downwards' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'Instantaneous surface thermal radiation downwards' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'Standard deviation of filtered subgrid orography' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'Specific rain water content' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'Specific snow water content' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'Eta-coordinate vertical velocity' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column liquid water +'Total column liquid water' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'Total column ice water' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'Maximum temperature at 2 metres in the last 6 hours' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'Minimum temperature at 2 metres in the last 6 hours' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'10 metre wind gust in the last 6 hours' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'Surface emissivity' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'Atmospheric tide' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'Atmospheric tide' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'Budget values' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'Budget values' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'Geopotential' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'Geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'Geopotential' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'Geopotential' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'Geopotential' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'Temperature' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'Temperature' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'Temperature' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'Temperature' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'Temperature' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'U component of wind' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'U component of wind' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'U component of wind' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'U component of wind' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'U component of wind' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'V component of wind' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'V component of wind' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'V component of wind' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'V component of wind' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'V component of wind' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'Total column water' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'Total column water' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'Total column water vapour' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'Total column water vapour' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'Snow depth' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'Snow depth' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'Snow depth' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'Snowfall' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'Snowfall' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'Charnock' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'Surface net radiation' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'Top net radiation' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'Logarithm of surface pressure' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'Logarithm of surface pressure' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'Short-wave heating rate' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'Long-wave heating rate' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'Divergence' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'Divergence' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'Divergence' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'Divergence' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'Divergence' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'Geopotential Height' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'Tendency of surface pressure' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'Tendency of surface pressure' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'Boundary layer height' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'Standard deviation of orography' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'Surface solar radiation downwards' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'Surface solar radiation downwards' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'Soil temperature level 2' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'Soil temperature level 2' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'Albedo' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'Albedo' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'Albedo' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'Surface thermal radiation downwards' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'Surface thermal radiation downwards' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'Top net solar radiation' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'Top net solar radiation' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'Top net solar radiation' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'Eastward turbulent surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'Eastward turbulent surface stress' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'Eastward turbulent surface stress' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'Northward turbulent surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'Northward turbulent surface stress' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'Northward turbulent surface stress' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'Evaporation' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'Evaporation' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'Evaporation' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'Evaporation' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'Soil temperature level 3' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'Soil temperature level 3' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'Sunshine duration' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'East-West component of sub-gridscale orographic variance' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'East-West component of sub-gridscale orographic variance' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'North-South component of sub-gridscale orographic variance' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'North-South component of sub-gridscale orographic variance' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'North-West/South-East component of sub-gridscale orographic variance' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'North-West/South-East component of sub-gridscale orographic variance' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'North-East/South-West component of sub-gridscale orographic variance' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'North-East/South-West component of sub-gridscale orographic variance' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'Eastward gravity wave surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'Eastward gravity wave surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'Northward gravity wave surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'Northward gravity wave surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'Skin reservoir content' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'Vegetation fraction' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'Variance of sub-gridscale orography' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'Variance of sub-gridscale orography' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'Ozone mass mixing ratio' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'Precipitation analysis weights' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'Precipitation analysis weights' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'Runoff' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'Runoff' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'Total column ozone' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'10 metre wind speed' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'Top net solar radiation, clear sky' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'Top net thermal radiation, clear sky' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'TOA incident solar radiation' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'Vertically integrated moisture divergence' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'Diabatic heating by radiation' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'Diabatic heating by vertical diffusion' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'Diabatic heating by cumulus convection' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'Diabatic heating large-scale condensation' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'Vertical diffusion of zonal wind' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'Vertical diffusion of meridional wind' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'East-West gravity wave drag tendency' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'North-South gravity wave drag tendency' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'Convective tendency of zonal wind' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'Convective tendency of zonal wind' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'Convective tendency of meridional wind' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'Convective tendency of meridional wind' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'Vertical diffusion of humidity' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'Humidity tendency by cumulus convection' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'Humidity tendency by large-scale condensation' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'Tendency due to removal of negative humidity' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'Tendency due to removal of negative humidity' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'Instantaneous eastward turbulent surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'Instantaneous eastward turbulent surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'Instantaneous northward turbulent surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'Instantaneous northward turbulent surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'Instantaneous surface sensible heat flux' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'Instantaneous moisture flux' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'Instantaneous moisture flux' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'Apparent surface humidity' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'Apparent surface humidity' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'Logarithm of surface roughness length for heat' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'Logarithm of surface roughness length for heat' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'Skin temperature' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'Skin temperature' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'Soil temperature level 4' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'Soil temperature level 4' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'Soil wetness level 4' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'Soil wetness level 4' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'Temperature of snow layer' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'Temperature of snow layer' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'Convective snowfall' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'Large-scale snowfall' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'Accumulated cloud fraction tendency' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'Accumulated liquid water tendency' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'Forecast albedo' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'Forecast surface roughness' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'Forecast surface roughness' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'Forecast logarithm of surface roughness for heat' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'Forecast logarithm of surface roughness for heat' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'Specific cloud liquid water content' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'Specific cloud ice water content' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Cloud cover +'Cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'Accumulated ice water tendency' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'Ice age' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'Adiabatic tendency of temperature' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'Adiabatic tendency of humidity' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'Adiabatic tendency of zonal wind' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'Adiabatic tendency of meridional wind' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'Stream function difference' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'Velocity potential difference' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'Potential temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'Equivalent potential temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'Saturated equivalent potential temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'U component of divergent wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'V component of divergent wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'U component of rotational wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'V component of rotational wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'Unbalanced component of temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'Unbalanced component of logarithm of surface pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'Unbalanced component of divergence difference' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'Lake cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'Low vegetation cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'High vegetation cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'Type of low vegetation difference' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'Type of high vegetation difference' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'Sea-ice cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'Snow albedo difference' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'Snow density difference' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'Sea surface temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'Ice surface temperature layer 1 difference' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'Ice surface temperature layer 2 difference' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'Ice surface temperature layer 3 difference' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'Ice surface temperature layer 4 difference' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'Volumetric soil water layer 1 difference' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'Volumetric soil water layer 2 difference' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'Volumetric soil water layer 3 difference' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'Volumetric soil water layer 4 difference' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'Soil type difference' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'Snow evaporation difference' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'Snowmelt difference' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'Solar duration difference' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'Direct solar radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress difference +'Magnitude of surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'10 metre wind gust difference' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'Large-scale precipitation fraction difference' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'Maximum 2 metre temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'Minimum 2 metre temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'Montgomery potential difference' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'Pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'Mean 2 metre temperature in the last 24 hours difference' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'Mean 2 metre dewpoint temperature in the last 24 hours difference' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'Downward UV radiation at the surface difference' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'Photosynthetically active radiation at the surface difference' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'Convective available potential energy difference' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'Potential vorticity difference' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'Total precipitation from observations difference' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'Observation count difference' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'Total column liquid water' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'Total column ice water' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'Maximum temperature at 2 metres difference' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'Minimum temperature at 2 metres difference' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'10 metre wind gust in the last 6 hours difference' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'Atmospheric tide difference' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'Budget values difference' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'Geopotential difference' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'Temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'U component of wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'V component of wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'Specific humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'Surface pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'Vertical velocity (pressure) difference' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'Total column water difference' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'Total column water vapour difference' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'Vorticity (relative) difference' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'Soil temperature level 1 difference' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'Soil wetness level 1 difference' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'Snow depth difference' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'Stratiform precipitation (Large-scale precipitation) difference' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'Convective precipitation difference' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'Snowfall (convective + stratiform) difference' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'Boundary layer dissipation difference' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'Surface sensible heat flux difference' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'Surface latent heat flux difference' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'Charnock difference' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'Surface net radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'Top net radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'Mean sea level pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'Logarithm of surface pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'Short-wave heating rate difference' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'Long-wave heating rate difference' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'Divergence difference' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'Height difference' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'Relative humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'Tendency of surface pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'Boundary layer height difference' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'Standard deviation of orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'Anisotropy of sub-gridscale orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'Angle of sub-gridscale orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'Slope of sub-gridscale orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'Total cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'10 metre U wind component difference' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'10 metre V wind component difference' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'2 metre temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'Surface solar radiation downwards difference' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'Soil temperature level 2 difference' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'Soil wetness level 2 difference' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'Land-sea mask difference' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'Surface roughness difference' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'Albedo difference' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'Surface thermal radiation downwards difference' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'Surface net solar radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'Surface net thermal radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'Top net solar radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'Top net thermal radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'East-West surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'North-South surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'Evaporation difference' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'Soil temperature level 3 difference' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'Soil wetness level 3 difference' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'Convective cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'Low cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'Medium cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'High cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'Sunshine duration difference' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'East-West component of sub-gridscale orographic variance difference' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'North-South component of sub-gridscale orographic variance difference' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'North-West/South-East component of sub-gridscale orographic variance difference' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'North-East/South-West component of sub-gridscale orographic variance difference' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'Brightness temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'Longitudinal component of gravity wave stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'Meridional component of gravity wave stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'Gravity wave dissipation difference' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'Skin reservoir content difference' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'Vegetation fraction difference' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'Variance of sub-gridscale orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'Maximum temperature at 2 metres since previous post-processing difference' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'Minimum temperature at 2 metres since previous post-processing difference' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'Ozone mass mixing ratio difference' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'Precipitation analysis weights difference' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'Runoff difference' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'Total column ozone difference' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'10 metre wind speed difference' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'Top net solar radiation, clear sky difference' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'Top net thermal radiation, clear sky difference' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'Surface net solar radiation, clear sky difference' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'Surface net thermal radiation, clear sky difference' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'TOA incident solar radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'Diabatic heating by radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'Diabatic heating by vertical diffusion difference' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'Diabatic heating by cumulus convection difference' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'Diabatic heating large-scale condensation difference' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'Vertical diffusion of zonal wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'Vertical diffusion of meridional wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'East-West gravity wave drag tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'North-South gravity wave drag tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'Convective tendency of zonal wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'Convective tendency of meridional wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'Vertical diffusion of humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'Humidity tendency by cumulus convection difference' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'Humidity tendency by large-scale condensation difference' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'Change from removal of negative humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'Total precipitation difference' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'Instantaneous X surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'Instantaneous Y surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'Instantaneous surface heat flux difference' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'Instantaneous moisture flux difference' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'Apparent surface humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'Logarithm of surface roughness length for heat difference' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'Skin temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'Soil temperature level 4 difference' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'Soil wetness level 4 difference' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'Temperature of snow layer difference' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'Convective snowfall difference' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'Large scale snowfall difference' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'Accumulated cloud fraction tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'Accumulated liquid water tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'Forecast albedo difference' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'Forecast surface roughness difference' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'Forecast logarithm of surface roughness for heat difference' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'Specific cloud liquid water content difference' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'Specific cloud ice water content difference' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'Cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'Accumulated ice water tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'Ice age difference' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'Adiabatic tendency of temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'Adiabatic tendency of humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'Adiabatic tendency of zonal wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'Adiabatic tendency of meridional wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'Probability of a tropical storm' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'Probability of a hurricane' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'Probability of a tropical depression' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'Climatological probability of a tropical storm' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'Climatological probability of a hurricane' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'Climatological probability of a tropical depression' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'Probability anomaly of a tropical storm' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'Probability anomaly of a hurricane' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'Probability anomaly of a tropical depression' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Maximum of significant wave height index +'Maximum of significant wave height index' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'Wave experimental parameter 1' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'Wave experimental parameter 2' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'Wave experimental parameter 3' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'Wave experimental parameter 4' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'Wave experimental parameter 5' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Significant wave height of first swell partition +'Significant wave height of first swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'Mean wave direction of first swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'Mean wave period of first swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'Significant wave height of second swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'Mean wave direction of second swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'Mean wave period of second swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'Significant wave height of third swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'Mean wave direction of third swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'Mean wave period of third swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'Wave Spectral Skewness' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'Free convective velocity over the oceans' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'Air density over the oceans' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'Mean square wave strain in sea ice' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'Normalized energy flux into waves' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'Normalized energy flux into ocean' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'Turbulent Langmuir number' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'Normalized stress into ocean' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'Reserved' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Vertical integral of divergence of cloud liquid water flux +'Vertical integral of divergence of cloud liquid water flux' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'Vertical integral of divergence of cloud frozen water flux' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'Vertical integral of eastward cloud liquid water flux' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'Vertical integral of northward cloud liquid water flux' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'Vertical integral of eastward cloud frozen water flux' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'Vertical integral of northward cloud frozen water flux ' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'Vertical integral of mass tendency' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'U-tendency from dynamics' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'V-tendency from dynamics' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'T-tendency from dynamics' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'q-tendency from dynamics' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'T-tendency from radiation' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'U-tendency from turbulent diffusion + subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'V-tendency from turbulent diffusion + subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'T-tendency from turbulent diffusion + subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'q-tendency from turbulent diffusion' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'U-tendency from subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'V-tendency from subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'T-tendency from subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'U-tendency from convection (deep+shallow)' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'V-tendency from convection (deep+shallow)' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'T-tendency from convection (deep+shallow)' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'q-tendency from convection (deep+shallow)' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'Liquid Precipitation flux from convection' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'Ice Precipitation flux from convection' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'T-tendency from cloud scheme' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'q-tendency from cloud scheme' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'ql-tendency from cloud scheme' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'qi-tendency from cloud scheme' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'Liquid Precip flux from cloud scheme (stratiform)' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'Ice Precip flux from cloud scheme (stratiform)' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'U-tendency from shallow convection' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'V-tendency from shallow convection' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'T-tendency from shallow convection' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'q-tendency from shallow convection' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#100 metre U wind component anomaly +'100 metre U wind component anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'100 metre V wind component anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'Maximum temperature at 2 metres in the last 6 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'Minimum temperature at 2 metres in the last 6 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Clear-sky (II) down surface sw flux +'Clear-sky (II) down surface sw flux' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'Clear-sky (II) up surface sw flux' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'Visibility at 1.5m' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'Minimum temperature at 1.5m since previous post-processing' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'Maximum temperature at 1.5m since previous post-processing' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'Relative humidity at 1.5m' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#Short wave radiation flux at surface +'Short wave radiation flux at surface' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'Short wave radiation flux at top of atmosphere' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'Total column water vapour' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'Large scale rainfall rate' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'Convective rainfall rate' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'Very low cloud amount' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'Convective snowfall rate' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'Large scale snowfall rate' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'Total cloud amount - random overlap' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'Total cloud amount in lw radiation' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'Volcanic ash aerosol mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'Volcanic sulphate aerosol mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'Volcanic SO2 precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'SO4 aerosol precursor mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'DMS surface emission' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'Experimental product' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'Experimental product' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'Mixing ration of organic carbon aerosol, nucleation mode' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'Monoterpene precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'Secondary organic precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Particulate matter d < 1 um +'Particulate matter d < 1 um' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'Particulate matter d < 2.5 um' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'Particulate matter d < 10 um' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'Wildfire viewing angle of observation' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'Wildfire Flux of Ethane (C2H6)' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'Mean altitude of maximum injection' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'Altitude of plume top' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'UV visible albedo for direct radiation, isotropic component ' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'UV visible albedo for direct radiation, volumetric component ' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'UV visible albedo for direct radiation, geometric component ' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'Near IR albedo for direct radiation, isotropic component ' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'Near IR albedo for direct radiation, volumetric component' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'Near IR albedo for direct radiation, geometric component ' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'UV visible albedo for diffuse radiation, isotropic component ' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'UV visible albedo for diffuse radiation, volumetric component ' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'UV visible albedo for diffuse radiation, geometric component ' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'Near IR albedo for diffuse radiation, isotropic component ' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'Near IR albedo for diffuse radiation, volumetric component ' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'Near IR albedo for diffuse radiation, geometric component ' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'Total aerosol optical depth at 340 nm' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'Total aerosol optical depth at 355 nm' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'Total aerosol optical depth at 380 nm' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'Total aerosol optical depth at 400 nm' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'Total aerosol optical depth at 440 nm' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'Total aerosol optical depth at 500 nm' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'Total aerosol optical depth at 532 nm' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'Total aerosol optical depth at 645 nm' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'Total aerosol optical depth at 800 nm' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'Total aerosol optical depth at 858 nm' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'Total aerosol optical depth at 1020 nm' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'Total aerosol optical depth at 1064 nm' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'Total aerosol optical depth at 1640 nm' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'Total aerosol optical depth at 2130 nm' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'Wildfire Flux of Toluene (C7H8)' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'Wildfire Flux of Benzene (C6H6)' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'Wildfire Flux of Xylene (C8H10)' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'Wildfire Flux of Butenes (C4H8)' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'Wildfire Flux of Pentenes (C5H10)' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'Wildfire Flux of Hexene (C6H12)' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'Wildfire Flux of Octene (C8H16)' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'Wildfire Flux of Butanes (C4H10)' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'Wildfire Flux of Pentanes (C5H12)' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'Wildfire Flux of Hexanes (C6H14)' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'Wildfire Flux of Heptane (C7H16)' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'Altitude of plume bottom' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'Volcanic sulphate aerosol optical depth at 550 nm' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'Volcanic ash optical depth at 550 nm' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'Profile of total aerosol dry extinction coefficient' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'Profile of total aerosol dry absorption coefficient' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Aerosol type 13 mass mixing ratio +'Aerosol type 13 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'Aerosol type 14 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'Aerosol type 15 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'SO4 aerosol precursor mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'DMS surface emission' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'Experimental product' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'Experimental product' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'Wildfire Flux of Ethane (C2H6)' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'Altitude of emitter' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'Altitude of plume top' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'Random pattern 1 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'Random pattern 2 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'Random pattern 3 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'Random pattern 4 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'Random pattern 5 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +# Cosine of solar zenith angle +' Cosine of solar zenith angle' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +# UV biologically effective dose +' UV biologically effective dose' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +# UV biologically effective dose clear-sky +' UV biologically effective dose clear-sky' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +' Total surface UV spectral flux (280-285 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +' Total surface UV spectral flux (285-290 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +' Total surface UV spectral flux (290-295 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +' Total surface UV spectral flux (295-300 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +' Total surface UV spectral flux (300-305 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +' Total surface UV spectral flux (305-310 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +' Total surface UV spectral flux (310-315 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +' Total surface UV spectral flux (315-320 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +' Total surface UV spectral flux (320-325 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +' Total surface UV spectral flux (325-330 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +' Total surface UV spectral flux (330-335 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +' Total surface UV spectral flux (335-340 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +' Total surface UV spectral flux (340-345 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +' Total surface UV spectral flux (345-350 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +' Total surface UV spectral flux (350-355 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +' Total surface UV spectral flux (355-360 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +' Total surface UV spectral flux (360-365 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +' Total surface UV spectral flux (365-370 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +' Total surface UV spectral flux (370-375 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +' Total surface UV spectral flux (375-380 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +' Total surface UV spectral flux (380-385 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +' Total surface UV spectral flux (385-390 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +' Total surface UV spectral flux (390-395 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +' Total surface UV spectral flux (395-400 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +' Clear-sky surface UV spectral flux (280-285 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +' Clear-sky surface UV spectral flux (285-290 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +' Clear-sky surface UV spectral flux (290-295 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +' Clear-sky surface UV spectral flux (295-300 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +' Clear-sky surface UV spectral flux (300-305 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +' Clear-sky surface UV spectral flux (305-310 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +' Clear-sky surface UV spectral flux (310-315 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +' Clear-sky surface UV spectral flux (315-320 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +' Clear-sky surface UV spectral flux (320-325 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +' Clear-sky surface UV spectral flux (325-330 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +' Clear-sky surface UV spectral flux (330-335 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +' Clear-sky surface UV spectral flux (335-340 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +' Clear-sky surface UV spectral flux (340-345 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +' Clear-sky surface UV spectral flux (345-350 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +' Clear-sky surface UV spectral flux (350-355 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +' Clear-sky surface UV spectral flux (355-360 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +' Clear-sky surface UV spectral flux (360-365 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +' Clear-sky surface UV spectral flux (365-370 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +' Clear-sky surface UV spectral flux (370-375 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +' Clear-sky surface UV spectral flux (375-380 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +' Clear-sky surface UV spectral flux (380-385 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +' Clear-sky surface UV spectral flux (385-390 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +' Clear-sky surface UV spectral flux (390-395 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +' Clear-sky surface UV spectral flux (395-400 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +# Profile of optical thickness at 340 nm +' Profile of optical thickness at 340 nm' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +' Source/gain of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +' Source/gain of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +' Source/gain of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +' Dry deposition of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +' Dry deposition of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +' Dry deposition of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +' Sedimentation of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +' Sedimentation of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +' Sedimentation of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +' Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +' Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +' Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +' Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +' Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +' Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +' Negative fixer of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +' Negative fixer of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +' Negative fixer of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +' Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +' Vertically integrated mass of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +' Vertically integrated mass of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +' Sea salt aerosol (0.03 - 0.5 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +' Sea salt aerosol (0.5 - 5 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +' Sea salt aerosol (5 - 20 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +' Source/gain of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +' Source/gain of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +' Source/gain of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +' Dry deposition of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +' Dry deposition of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +' Dry deposition of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +' Sedimentation of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +' Sedimentation of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +' Sedimentation of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +' Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +' Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +' Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +' Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +' Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +' Wet deposition of dust aerosol (9 - 20 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +' Negative fixer of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +' Negative fixer of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +' Negative fixer of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +' Vertically integrated mass of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +' Vertically integrated mass of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +' Vertically integrated mass of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +' Dust aerosol (0.03 - 0.55 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +' Dust aerosol (0.55 - 9 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +' Dust aerosol (9 - 20 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +' Source/gain of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +' Source/gain of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +' Dry deposition of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +' Dry deposition of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +' Sedimentation of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +' Sedimentation of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +' Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +' Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +' Wet deposition of hydrophobic organic matter aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +' Wet deposition of hydrophilic organic matter aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +' Negative fixer of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +' Negative fixer of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +' Vertically integrated mass of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +' Vertically integrated mass of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +' Hydrophobic organic matter aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +' Hydrophilic organic matter aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +' Source/gain of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +' Source/gain of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +' Dry deposition of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +' Dry deposition of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +' Sedimentation of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +' Sedimentation of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +' Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +' Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +' Wet deposition of hydrophobic black carbon aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +' Wet deposition of hydrophilic black carbon aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +' Negative fixer of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +' Negative fixer of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +' Vertically integrated mass of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +' Vertically integrated mass of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +' Hydrophobic black carbon aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +' Hydrophilic black carbon aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +# Source/gain of sulphate aerosol +' Source/gain of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +# Dry deposition of sulphate aerosol +' Dry deposition of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +# Sedimentation of sulphate aerosol +' Sedimentation of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +' Wet deposition of sulphate aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +' Wet deposition of sulphate aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +# Negative fixer of sulphate aerosol +' Negative fixer of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +# Vertically integrated mass of sulphate aerosol +' Vertically integrated mass of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +# Sulphate aerosol optical depth +' Sulphate aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'Accumulated total aerosol optical depth at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'Effective (snow effect included) UV visible albedo for direct radiation' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'10 metre wind speed dust emission potential' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'10 metre wind gustiness dust emission potential' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Profile of total aerosol optical depth at 532 nm +'Profile of total aerosol optical depth at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Profile of natural (sea-salt and dust) aerosol optical depth at 532 nm +'Profile of natural (sea-salt and dust) aerosol optical depth at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Profile of antropogenic (black carbon, organic matter, sulphate) aerosol optical depth at 532 nm +'Profile of antropogenic (black carbon, organic matter, sulphate) aerosol optical depth at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'Total absorption aerosol optical depth at 340 nm' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'Total absorption aerosol optical depth at 355 nm' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'Total absorption aerosol optical depth at 380 nm' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'Total absorption aerosol optical depth at 400 nm' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'Total absorption aerosol optical depth at 440 nm' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'Total absorption aerosol optical depth at 469 nm' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'Total absorption aerosol optical depth at 500 nm' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'Total absorption aerosol optical depth at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'Total absorption aerosol optical depth at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'Total absorption aerosol optical depth at 645 nm' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'Total absorption aerosol optical depth at 670 nm' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'Total absorption aerosol optical depth at 800 nm' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'Total absorption aerosol optical depth at 858 nm' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'Total absorption aerosol optical depth at 865 nm' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'Total absorption aerosol optical depth at 1020 nm' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'Total absorption aerosol optical depth at 1064 nm' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'Total absorption aerosol optical depth at 1240 nm' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'Total absorption aerosol optical depth at 1640 nm' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'Single scattering albedo at 340 nm' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'Single scattering albedo at 355 nm' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'Single scattering albedo at 380 nm' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'Single scattering albedo at 400 nm' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'Single scattering albedo at 440 nm' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'Single scattering albedo at 469 nm' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'Single scattering albedo at 500 nm' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'Single scattering albedo at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'Single scattering albedo at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'Single scattering albedo at 645 nm' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'Single scattering albedo at 670 nm' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'Single scattering albedo at 800 nm' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'Single scattering albedo at 858 nm' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'Single scattering albedo at 865 nm' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'Single scattering albedo at 1020 nm' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'Single scattering albedo at 1064 nm' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'Single scattering albedo at 1240 nm' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'Single scattering albedo at 1640 nm' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Assimetry factor at 340 nm +'Assimetry factor at 340 nm' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Assimetry factor at 355 nm +'Assimetry factor at 355 nm' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Assimetry factor at 380 nm +'Assimetry factor at 380 nm' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Assimetry factor at 400 nm +'Assimetry factor at 400 nm' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Assimetry factor at 440 nm +'Assimetry factor at 440 nm' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Assimetry factor at 469 nm +'Assimetry factor at 469 nm' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Assimetry factor at 500 nm +'Assimetry factor at 500 nm' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Assimetry factor at 532 nm +'Assimetry factor at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Assimetry factor at 550 nm +'Assimetry factor at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Assimetry factor at 645 nm +'Assimetry factor at 645 nm' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Assimetry factor at 670 nm +'Assimetry factor at 670 nm' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Assimetry factor at 800 nm +'Assimetry factor at 800 nm' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Assimetry factor at 858 nm +'Assimetry factor at 858 nm' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Assimetry factor at 865 nm +'Assimetry factor at 865 nm' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Assimetry factor at 1020 nm +'Assimetry factor at 1020 nm' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Assimetry factor at 1064 nm +'Assimetry factor at 1064 nm' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Assimetry factor at 1240 nm +'Assimetry factor at 1240 nm' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Assimetry factor at 1640 nm +'Assimetry factor at 1640 nm' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'Source/gain of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'Dry deposition of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'Sedimentation of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'Wet deposition of sulphur dioxide by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'Wet deposition of sulphur dioxide by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'Negative fixer of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'Vertically integrated mass of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'Sulphur dioxide optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'Total absorption aerosol optical depth at 2130 nm' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'Single scattering albedo at 2130 nm' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Assimetry factor at 2130 nm +'Assimetry factor at 2130 nm' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'Hydrogen peroxide' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane +'Methane' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'Nitric acid' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'Methyl peroxide' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'Paraffins' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'Ethene' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'Olefins' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'Aldehydes' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'Peroxyacetyl nitrate' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'Peroxides' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'Organic nitrates' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'Isoprene' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'Dimethyl sulfide' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'Ammonia' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'Sulfate' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'Ammonium' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'Methane sulfonic acid' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'Methyl glyoxal' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'Stratospheric ozone' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'Lead' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'Nitrogen monoxide' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'Hydroperoxy radical' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'Methylperoxy radical' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'Hydroxyl radical' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'Nitrate radical' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'Dinitrogen pentoxide' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'Pernitric acid' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'Peroxy acetyl radical' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'Organic ethers' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'PAR budget corrector' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'NO to NO2 operator' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'NO to alkyl nitrate operator' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'Amine' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'Polar stratospheric cloud' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'Methanol' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'Formic acid' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'Methacrylic acid' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'Ethane' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'Ethanol' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'Propane' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'Propene' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'Terpenes' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'Methacrolein MVK' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'Nitrate' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'Acetone' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'Acetone product' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'IC3H7O2' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'HYPROPO2' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'Nitrogen oxides Transp' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'Total column hydrogen peroxide' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'Total column methane' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'Total column nitric acid' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'Total column methyl peroxide' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'Total column paraffins' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'Total column ethene' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'Total column olefins' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'Total column aldehydes' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'Total column peroxyacetyl nitrate' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'Total column peroxides' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'Total column organic nitrates' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'Total column isoprene' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'Total column dimethyl sulfide' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'Total column ammonia' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'Total column sulfate' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'Total column ammonium' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'Total column methane sulfonic acid' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'Total column methyl glyoxal' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'Total column stratospheric ozone' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'Total column lead' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'Total column nitrogen monoxide' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'Total column hydroperoxy radical' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'Total column methylperoxy radical' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'Total column hydroxyl radical' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'Total column nitrate radical' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'Total column dinitrogen pentoxide' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'Total column pernitric acid' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'Total column peroxy acetyl radical' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'Total column organic ethers' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'Total column PAR budget corrector' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'Total column NO to NO2 operator' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'Total column NO to alkyl nitrate operator' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'Total column amine' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'Total column polar stratospheric cloud' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'Total column methanol' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'Total column formic acid' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'Total column methacrylic acid' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'Total column ethane' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'Total column ethanol' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'Total column propane' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'Total column propene' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'Total column terpenes' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'Total column methacrolein MVK' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'Total column nitrate' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'Total column acetone' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'Total column acetone product' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'Total column IC3H7O2' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'Total column HYPROPO2' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'Total column nitrogen oxides Transp' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'Ozone emissions' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'Nitrogen oxides emissions' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'Hydrogen peroxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'Methane emissions' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'Carbon monoxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'Nitric acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'Methyl peroxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'Formaldehyde emissions' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'Paraffins emissions' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'Ethene emissions' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'Olefins emissions' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'Aldehydes emissions' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'Peroxyacetyl nitrate emissions' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'Peroxides emissions' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'Organic nitrates emissions' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'Isoprene emissions' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'Sulfur dioxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'Dimethyl sulfide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'Ammonia emissions' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'Sulfate emissions' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'Ammonium emissions' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'Methane sulfonic acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'Methyl glyoxal emissions' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'Stratospheric ozone emissions' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'Radon emissions' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'Lead emissions' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'Nitrogen monoxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'Hydroperoxy radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'Methylperoxy radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'Hydroxyl radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'Nitrogen dioxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'Nitrate radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'Dinitrogen pentoxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'Pernitric acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'Peroxy acetyl radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'Organic ethers emissions' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'PAR budget corrector emissions' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'NO to NO2 operator emissions' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'NO to alkyl nitrate operator emissions' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'Amine emissions' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'Polar stratospheric cloud emissions' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'Methanol emissions' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'Formic acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'Methacrylic acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'Ethane emissions' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'Ethanol emissions' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'Propane emissions' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'Propene emissions' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'Terpenes emissions' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'Methacrolein MVK emissions' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'Nitrate emissions' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'Acetone emissions' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'Acetone product emissions' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'IC3H7O2 emissions' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'HYPROPO2 emissions' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'Nitrogen oxides Transp emissions' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'Ozone deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'Nitrogen oxides deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'Hydrogen peroxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'Methane deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'Carbon monoxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'Nitric acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'Methyl peroxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'Formaldehyde deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'Paraffins deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'Ethene deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'Olefins deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'Aldehydes deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'Peroxyacetyl nitrate deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'Peroxides deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'Organic nitrates deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'Isoprene deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'Sulfur dioxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'Dimethyl sulfide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'Ammonia deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'Sulfate deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'Ammonium deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'Methane sulfonic acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'Methyl glyoxal deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'Stratospheric ozone deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'Radon deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'Lead deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'Nitrogen monoxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'Hydroperoxy radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'Methylperoxy radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'Hydroxyl radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'Nitrogen dioxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'Nitrate radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'Dinitrogen pentoxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'Pernitric acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'Peroxy acetyl radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'Organic ethers deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'PAR budget corrector deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'NO to NO2 operator deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'NO to alkyl nitrate operator deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'Amine deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'Polar stratospheric cloud deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'Methanol deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'Formic acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'Methacrylic acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'Ethane deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'Ethanol deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'Propane deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'Propene deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'Terpenes deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'Methacrolein MVK deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'Nitrate deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'Acetone deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'Acetone product deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'IC3H7O2 deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'HYPROPO2 deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'Nitrogen oxides Transp deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#Total sky direct solar radiation at surface +'Total sky direct solar radiation at surface' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'Clear-sky direct solar radiation at surface' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'Cloud base height' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#Zero degree level +'Zero degree level' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'Horizontal visibility' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'Maximum temperature at 2 metres in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'Minimum temperature at 2 metres in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'10 metre wind gust in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'Instantaneous 10 metre wind gust' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#Soil wetness index in layer 1 +'Soil wetness index in layer 1' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'Soil wetness index in layer 2' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'Soil wetness index in layer 3' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'Soil wetness index in layer 4' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'Accumulated Carbon Dioxide Net Ecosystem Exchange' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'Accumulated Carbon Dioxide Gross Primary Production' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'Accumulated Carbon Dioxide Ecosystem Respiration' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'Flux of Carbon Dioxide Net Ecosystem Exchange' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'Flux of Carbon Dioxide Gross Primary Production' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'Flux of Carbon Dioxide Ecosystem Respiration' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'Total column supercooled liquid water' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'Total column rain water' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'Total column snow water' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'Canopy cover fraction' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'Soil texture fraction' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'Volumetric soil moisture' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'Ice temperature' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'Surface solar radiation downward clear-sky' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'Surface thermal radiation downward clear-sky' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Instantaneous large-scale surface precipitation fraction +'Instantaneous large-scale surface precipitation fraction' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'Convective rain rate' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'Large scale rain rate' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'Maximum total precipitation rate in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'Minimum total precipitation rate in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'Maximum total precipitation rate in the last 6 hours' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'Minimum total precipitation rate in the last 6 hours' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'Maximum total precipitation rate since previous post-processing' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'Minimum total precipitation rate since previous post-processing' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'SMOS first Brightness Temperature Bias Correction parameter' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'SMOS second Brightness Temperature Bias Correction parameter' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#Surface solar radiation diffuse total sky +'Surface solar radiation diffuse total sky' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'Surface solar radiation diffuse clear-sky' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'Surface albedo of direct radiation' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'Surface albedo of diffuse radiation' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'100 metre wind speed' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'Irrigation fraction' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'Potential evaporation' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'Irrigation' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'Surface runoff (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'Sub-surface runoff (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'Clear sky surface photosynthetically active radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'Total sky direct solar radiation at surface (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'Clear-sky direct solar radiation at surface (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Large-scale precipitation fraction (variable resolution) +'Large-scale precipitation fraction (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'Accumulated Carbon Dioxide Gross Primary Production (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'Surface solar radiation downward clear-sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'Surface thermal radiation downward clear-sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'Albedo (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'Vertically integrated moisture divergence (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Total precipitation (variable resolution) +'Total precipitation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'Convective snowfall (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'Large-scale snowfall (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'Potential evaporation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#K index +'K index' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'Total totals index' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'Stream function gradient' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'Velocity potential gradient' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'Potential temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'Equivalent potential temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'Saturated equivalent potential temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'U component of divergent wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'V component of divergent wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'U component of rotational wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'V component of rotational wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'Unbalanced component of temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'Unbalanced component of logarithm of surface pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'Unbalanced component of divergence gradient' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'Lake cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'Low vegetation cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'High vegetation cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'Type of low vegetation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'Type of high vegetation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'Sea-ice cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'Snow albedo gradient' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'Snow density gradient' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'Sea surface temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'Ice surface temperature layer 1 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'Ice surface temperature layer 2 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'Ice surface temperature layer 3 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'Ice surface temperature layer 4 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'Volumetric soil water layer 1 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'Volumetric soil water layer 2 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'Volumetric soil water layer 3 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'Volumetric soil water layer 4 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'Soil type gradient' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'Snow evaporation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'Snowmelt gradient' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'Solar duration gradient' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'Direct solar radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress gradient +'Magnitude of surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'10 metre wind gust gradient' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'Large-scale precipitation fraction gradient' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'Maximum 2 metre temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'Minimum 2 metre temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'Montgomery potential gradient' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'Pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'Mean 2 metre temperature in the last 24 hours gradient' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'Mean 2 metre dewpoint temperature in the last 24 hours gradient' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'Downward UV radiation at the surface gradient' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'Photosynthetically active radiation at the surface gradient' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'Convective available potential energy gradient' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'Potential vorticity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'Total precipitation from observations gradient' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'Observation count gradient' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'Total column liquid water' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'Total column ice water' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'Maximum temperature at 2 metres gradient' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'Minimum temperature at 2 metres gradient' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'10 metre wind gust in the last 6 hours gradient' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'Atmospheric tide gradient' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'Budget values gradient' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'Geopotential gradient' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'Temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'U component of wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'V component of wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'Specific humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'Surface pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'vertical velocity (pressure) gradient' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'Total column water gradient' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'Total column water vapour gradient' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'Vorticity (relative) gradient' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'Soil temperature level 1 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'Soil wetness level 1 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'Snow depth gradient' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'Stratiform precipitation (Large-scale precipitation) gradient' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'Convective precipitation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'Snowfall (convective + stratiform) gradient' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'Boundary layer dissipation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'Surface sensible heat flux gradient' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'Surface latent heat flux gradient' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'Charnock gradient' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'Surface net radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'Top net radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'Mean sea level pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'Logarithm of surface pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'Short-wave heating rate gradient' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'Long-wave heating rate gradient' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'Divergence gradient' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'Height gradient' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'Relative humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'Tendency of surface pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'Boundary layer height gradient' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'Standard deviation of orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'Anisotropy of sub-gridscale orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'Angle of sub-gridscale orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'Slope of sub-gridscale orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'Total cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'10 metre U wind component gradient' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'10 metre V wind component gradient' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'2 metre temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'2 metre dewpoint temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'Surface solar radiation downwards gradient' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'Soil temperature level 2 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'Soil wetness level 2 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'Land-sea mask gradient' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'Surface roughness gradient' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'Albedo gradient' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'Surface thermal radiation downwards gradient' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'Surface net solar radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'Surface net thermal radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'Top net solar radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'Top net thermal radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'East-West surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'North-South surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'Evaporation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'Soil temperature level 3 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'Soil wetness level 3 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'Convective cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'Low cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'Medium cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'High cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'Sunshine duration gradient' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'East-West component of sub-gridscale orographic variance gradient' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'North-South component of sub-gridscale orographic variance gradient' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'North-West/South-East component of sub-gridscale orographic variance gradient' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'North-East/South-West component of sub-gridscale orographic variance gradient' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'Brightness temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'Longitudinal component of gravity wave stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'Meridional component of gravity wave stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'Gravity wave dissipation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'Skin reservoir content gradient' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'Vegetation fraction gradient' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'Variance of sub-gridscale orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'Maximum temperature at 2 metres since previous post-processing gradient' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'Minimum temperature at 2 metres since previous post-processing gradient' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'Ozone mass mixing ratio gradient' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'Precipitation analysis weights gradient' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'Runoff gradient' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'Total column ozone gradient' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'10 metre wind speed gradient' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'Top net solar radiation, clear sky gradient' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'Top net thermal radiation, clear sky gradient' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'Surface net solar radiation, clear sky gradient' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'Surface net thermal radiation, clear sky gradient' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'TOA incident solar radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'Diabatic heating by radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'Diabatic heating by vertical diffusion gradient' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'Diabatic heating by cumulus convection gradient' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'Diabatic heating large-scale condensation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'Vertical diffusion of zonal wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'Vertical diffusion of meridional wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'East-West gravity wave drag tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'North-South gravity wave drag tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'Convective tendency of zonal wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'Convective tendency of meridional wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'Vertical diffusion of humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'Humidity tendency by cumulus convection gradient' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'Humidity tendency by large-scale condensation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'Change from removal of negative humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'Total precipitation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'Instantaneous X surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'Instantaneous Y surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'Instantaneous surface heat flux gradient' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'Instantaneous moisture flux gradient' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'Apparent surface humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'Logarithm of surface roughness length for heat gradient' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'Skin temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'Soil temperature level 4 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'Soil wetness level 4 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'Temperature of snow layer gradient' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'Convective snowfall gradient' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'Large scale snowfall gradient' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'Accumulated cloud fraction tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'Accumulated liquid water tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'Forecast albedo gradient' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'Forecast surface roughness gradient' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'Forecast logarithm of surface roughness for heat gradient' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'Specific cloud liquid water content gradient' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'Specific cloud ice water content gradient' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'Cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'Accumulated ice water tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'Ice age gradient' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'Adiabatic tendency of temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'Adiabatic tendency of humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'Adiabatic tendency of zonal wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'Adiabatic tendency of meridional wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'Top solar radiation upward' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'Top thermal radiation upward' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'Top solar radiation upward, clear sky' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'Top thermal radiation upward, clear sky' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'Cloud liquid water' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'Cloud fraction' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'Diabatic heating by radiation' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'Diabatic heating by vertical diffusion' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'Diabatic heating by cumulus convection' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'Diabatic heating by large-scale condensation' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'Vertical diffusion of zonal wind' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'Vertical diffusion of meridional wind' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'East-West gravity wave drag' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'North-South gravity wave drag' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'Vertical diffusion of humidity' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'Humidity tendency by cumulus convection' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'Humidity tendency by large-scale condensation' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'Adiabatic tendency of temperature' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'Adiabatic tendency of humidity' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'Adiabatic tendency of zonal wind' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'Adiabatic tendency of meridional wind' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'Mean vertical velocity' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'2m temperature anomaly of at least +2K' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'2m temperature anomaly of at least +1K' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'2m temperature anomaly of at least 0K' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'2m temperature anomaly of at most -1K' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'2m temperature anomaly of at most -2K' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'Total precipitation anomaly of at least 20 mm' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'Total precipitation anomaly of at least 10 mm' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'Total precipitation anomaly of at least 0 mm' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'Surface temperature anomaly of at least 0K' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'Mean sea level pressure anomaly of at least 0 Pa' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'Height of 0 degree isotherm probability' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'Height of snowfall limit probability' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'Showalter index probability' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'Whiting index probability' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'Temperature anomaly less than -2 K' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'Temperature anomaly of at least +2 K' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'Temperature anomaly less than -8 K' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'Temperature anomaly less than -4 K' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'Temperature anomaly greater than +4 K' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'Temperature anomaly greater than +8 K' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'10 metre wind gust probability' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'Convective available potential energy probability' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'Total precipitation less than 0.1 mm' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'Total precipitation rate less than 1 mm/day' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'Total precipitation rate of at least 3 mm/day' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'Total precipitation rate of at least 5 mm/day' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'10 metre Wind speed of at least 10 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'10 metre Wind speed of at least 15 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre Wind gust of at least 15 m/s +'10 metre Wind gust of at least 15 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre Wind gust of at least 20 m/s +'10 metre Wind gust of at least 20 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre Wind gust of at least 25 m/s +'10 metre Wind gust of at least 25 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'2 metre temperature less than 273.15 K' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'Significant wave height of at least 2 m' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'Significant wave height of at least 4 m' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'Significant wave height of at least 6 m' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'Significant wave height of at least 8 m' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'Mean wave period of at least 8 s' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'Mean wave period of at least 10 s' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'Mean wave period of at least 12 s' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'Mean wave period of at least 15 s' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'Geopotential probability' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'Temperature anomaly probability' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#2 metre temperature probability +'2 metre temperature probability' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'Snowfall (convective + stratiform) probability' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Total precipitation probability +'Total precipitation probability' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'Total cloud cover probability' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'10 metre speed probability' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'2 metre temperature probability' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'Maximum 2 metre temperature probability' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'Minimum 2 metre temperature probability' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'Total precipitation probability' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'Significant wave height probability' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'Mean wave period probability' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'10 metre wind gust index' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'Snowfall index' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'10 metre speed index' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'2 metre temperature index' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'Maximum temperature at 2 metres index' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'Minimum temperature at 2 metres index' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'Total precipitation index' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'2m temperature probability less than -10 C' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'2m temperature probability less than -5 C' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'2m temperature probability less than 0 C' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'2m temperature probability less than 5 C' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'2m temperature probability less than 10 C' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'2m temperature probability greater than 25 C' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'2m temperature probability greater than 30 C' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'2m temperature probability greater than 35 C' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'2m temperature probability greater than 40 C' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'2m temperature probability greater than 45 C' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'Minimum 2 metre temperature probability less than -10 C' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'Minimum 2 metre temperature probability less than -5 C' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'Minimum 2 metre temperature probability less than 0 C' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'Minimum 2 metre temperature probability less than 5 C' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'Minimum 2 metre temperature probability less than 10 C' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'Maximum 2 metre temperature probability greater than 25 C' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'Maximum 2 metre temperature probability greater than 30 C' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'Maximum 2 metre temperature probability greater than 35 C' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'Maximum 2 metre temperature probability greater than 40 C' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'Maximum 2 metre temperature probability greater than 45 C' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'10 metre wind speed probability of at least 10 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'10 metre wind speed probability of at least 15 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'10 metre wind speed probability of at least 20 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'10 metre wind speed probability of at least 35 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'10 metre wind speed probability of at least 50 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'10 metre wind gust probability of at least 20 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'10 metre wind gust probability of at least 35 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'10 metre wind gust probability of at least 50 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'10 metre wind gust probability of at least 75 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'10 metre wind gust probability of at least 100 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'Total precipitation probability of at least 1 mm' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'Total precipitation probability of at least 5 mm' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'Total precipitation probability of at least 10 mm' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'Total precipitation probability of at least 20 mm' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'Total precipitation probability of at least 40 mm' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'Total precipitation probability of at least 60 mm' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'Total precipitation probability of at least 80 mm' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'Total precipitation probability of at least 100 mm' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'Total precipitation probability of at least 150 mm' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'Total precipitation probability of at least 200 mm' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'Total precipitation probability of at least 300 mm' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'Snowfall probability of at least 1 mm' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'Snowfall probability of at least 5 mm' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'Snowfall probability of at least 10 mm' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'Snowfall probability of at least 20 mm' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'Snowfall probability of at least 40 mm' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'Snowfall probability of at least 60 mm' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'Snowfall probability of at least 80 mm' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'Snowfall probability of at least 100 mm' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'Snowfall probability of at least 150 mm' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'Snowfall probability of at least 200 mm' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'Snowfall probability of at least 300 mm' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'Total Cloud Cover probability greater than 10%' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'Total Cloud Cover probability greater than 20%' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'Total Cloud Cover probability greater than 30%' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'Total Cloud Cover probability greater than 40%' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'Total Cloud Cover probability greater than 50%' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'Total Cloud Cover probability greater than 60%' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'Total Cloud Cover probability greater than 70%' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'Total Cloud Cover probability greater than 80%' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'Total Cloud Cover probability greater than 90%' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'Total Cloud Cover probability greater than 99%' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'High Cloud Cover probability greater than 10%' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'High Cloud Cover probability greater than 20%' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'High Cloud Cover probability greater than 30%' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'High Cloud Cover probability greater than 40%' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'High Cloud Cover probability greater than 50%' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'High Cloud Cover probability greater than 60%' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'High Cloud Cover probability greater than 70%' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'High Cloud Cover probability greater than 80%' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'High Cloud Cover probability greater than 90%' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'High Cloud Cover probability greater than 99%' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'Medium Cloud Cover probability greater than 10%' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'Medium Cloud Cover probability greater than 20%' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'Medium Cloud Cover probability greater than 30%' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'Medium Cloud Cover probability greater than 40%' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'Medium Cloud Cover probability greater than 50%' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'Medium Cloud Cover probability greater than 60%' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'Medium Cloud Cover probability greater than 70%' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'Medium Cloud Cover probability greater than 80%' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'Medium Cloud Cover probability greater than 90%' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'Medium Cloud Cover probability greater than 99%' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'Low Cloud Cover probability greater than 10%' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'Low Cloud Cover probability greater than 20%' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'Low Cloud Cover probability greater than 30%' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'Low Cloud Cover probability greater than 40%' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'Low Cloud Cover probability greater than 50%' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'Low Cloud Cover probability greater than 60%' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'Low Cloud Cover probability greater than 70%' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'Low Cloud Cover probability greater than 80%' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'Low Cloud Cover probability greater than 90%' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'Low Cloud Cover probability greater than 99%' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'Maximum of significant wave height' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'Period corresponding to maximum individual wave height' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'Maximum individual wave height' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'Model bathymetry' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'Mean wave period based on first moment' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean wave period based on second moment +'Mean wave period based on second moment' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'Wave spectral directional width' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'Mean wave period based on first moment for wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'Mean wave period based on second moment for wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'Wave spectral directional width for wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'Mean wave period based on first moment for swell' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'Mean wave period based on second moment for swell' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'Wave spectral directional width for swell' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'Mean wave direction' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak period of 1D spectra +'Peak period of 1D spectra' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'Mean wave period' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'Coefficient of drag with waves' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'Significant height of total swell' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'Mean direction of total swell' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'Mean period of total swell' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'Standard deviation wave height' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'Mean of 10 metre wind speed' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'Mean wind direction' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'Standard deviation of 10 metre wind speed' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'Mean square slope of waves' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'10 metre wind speed' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'Altimeter wave height' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'Altimeter corrected wave height' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'Altimeter range relative correction' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'10 metre wind direction' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'2D wave spectra (multiple)' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'2D wave spectra (single)' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'Wave spectral kurtosis' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'Benjamin-Feir index' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'Wave spectral peakedness' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'Ocean potential temperature' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'Ocean salinity' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'Ocean potential density' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'Ocean U wind component' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'Ocean V wind component' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'Ocean W wind component' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'Richardson number' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'U*V product' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'U*T product' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'V*T product' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'U*U product' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'V*V product' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'UV - U~V~' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'UT - U~T~' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'VT - V~T~' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'UU - U~U~' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'VV - V~V~' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'Sea level' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'Barotropic stream function' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'Depth' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'U stress' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'V stress' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'Turbulent kinetic energy input' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'Net surface heat flux' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'Surface solar radiation' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'P-E' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'Diagnosed sea surface temperature error' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'Heat flux correction' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'Observed sea surface temperature' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'Observed heat flux' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'In situ Temperature' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Ocean potential temperature +'Ocean potential temperature' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Salinity +'Salinity' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Ocean current zonal component +'Ocean current zonal component' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Ocean current meridional component +'Ocean current meridional component' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Ocean current vertical component +'Ocean current vertical component' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'Modulus of strain rate tensor' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'Vertical viscosity' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'Vertical diffusivity' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'Bottom level Depth' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sigma-theta +'Sigma-theta' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'Richardson number' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'UV product' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'UT product' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'VT product' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'UU product' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'VV product' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea level +'Sea level' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'Sea level previous timestep' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Barotropic stream function +'Barotropic stream function' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'Bottom Pressure (equivalent height)' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'Steric height' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'Curl of Wind Stress' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'Divergence of wind stress' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#U stress +'U stress' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#V stress +'V stress' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'Turbulent kinetic energy input' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'Net surface heat flux' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'Absorbed solar radiation' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'Precipitation - evaporation' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'Specified sea surface temperature' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'Specified surface heat flux' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'Diagnosed sea surface temperature error' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'Heat flux correction' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#20 degrees isotherm depth +'20 degrees isotherm depth' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'Average potential temperature in the upper 300m' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'Vertically integrated zonal velocity (previous time step)' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'Vertically Integrated meridional velocity (previous time step)' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'Vertically integrated zonal volume transport' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'Vertically integrated meridional volume transport' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'Vertically integrated zonal heat transport' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'Vertically integrated meridional heat transport' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'U velocity maximum' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'Depth of the velocity maximum' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'Salinity maximum' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'Depth of salinity maximum' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'Average salinity in the upper 300m' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'Layer Thickness at scalar points' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'Layer Thickness at vector points' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'Potential temperature increment' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'Potential temperature analysis error' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'Background potential temperature' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'Analysed potential temperature' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'Potential temperature background error' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'Analysed salinity' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'Salinity increment' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'Estimated Bias in Temperature' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'Estimated Bias in Salinity' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'Zonal Velocity increment (from balance operator)' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'Meridional Velocity increment (from balance operator)' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'Salinity increment (from salinity data)' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'Salinity analysis error' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'Background Salinity' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'Salinity background error' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'Estimated temperature bias from assimilation' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'Estimated salinity bias from assimilation' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'Temperature increment from relaxation term' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'Salinity increment from relaxation term' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'Bias in the zonal pressure gradient (applied)' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'Bias in the meridional pressure gradient (applied)' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'Estimated temperature bias from relaxation' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'Estimated salinity bias from relaxation' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'First guess bias in temperature' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'First guess bias in salinity' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'Applied bias in pressure' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'FG bias in pressure' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'Bias in temperature(applied)' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'Bias in salinity (applied)' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'10 metre wind gust during averaging time' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'vertical velocity (pressure)' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'Precipitable water content' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'Snow depth' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'Snowfall' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'Height' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'East-West surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'North-South surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'Evaporation' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'Skin reservoir content' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'Percentage of vegetation' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'Maximum temperature at 2 metres during averaging time' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'Minimum temperature at 2 metres during averaging time' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'Runoff' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'Standard deviation of geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'Covariance of temperature and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'Standard deviation of temperature' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'Covariance of specific humidity and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'Covariance of specific humidity and temperature' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'Standard deviation of specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'Covariance of U component and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'Covariance of U component and temperature' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'Covariance of U component and specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'Standard deviation of U velocity' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'Covariance of V component and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'Covariance of V component and temperature' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'Covariance of V component and specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'Covariance of V component and U component' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'Standard deviation of V component' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'Covariance of W component and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'Covariance of W component and temperature' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'Covariance of W component and specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'Covariance of W component and U component' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'Covariance of W component and V component' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'Standard deviation of vertical velocity' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'Instantaneous surface heat flux' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'Convective snowfall' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'Large scale snowfall' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'Cloud liquid water content' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'Cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'Forecast albedo' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'10 metre wind speed' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'Momentum flux' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'Gravity wave dissipation flux' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'Heaviside beta function' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'Surface geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'Vertical integral of mass of atmosphere' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'Vertical integral of temperature' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'Vertical integral of water vapour' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'Vertical integral of cloud liquid water' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'Vertical integral of cloud frozen water' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'Vertical integral of ozone' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'Vertical integral of kinetic energy' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'Vertical integral of thermal energy' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'Vertical integral of potential+internal energy' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'Vertical integral of potential+internal+latent energy' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'Vertical integral of total energy' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'Vertical integral of energy conversion' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'Vertical integral of eastward mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'Vertical integral of northward mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'Vertical integral of eastward kinetic energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'Vertical integral of northward kinetic energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'Vertical integral of eastward heat flux' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'Vertical integral of northward heat flux' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'Vertical integral of eastward water vapour flux' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'Vertical integral of northward water vapour flux' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'Vertical integral of eastward geopotential flux' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'Vertical integral of northward geopotential flux' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'Vertical integral of eastward total energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'Vertical integral of northward total energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'Vertical integral of eastward ozone flux' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'Vertical integral of northward ozone flux' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'Vertical integral of divergence of mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'Vertical integral of divergence of kinetic energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'Vertical integral of divergence of thermal energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'Vertical integral of divergence of moisture flux' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'Vertical integral of divergence of geopotential flux' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'Vertical integral of divergence of total energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'Vertical integral of divergence of ozone flux' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'Tendency of short wave radiation' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'Tendency of long wave radiation' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'Tendency of clear sky short wave radiation' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'Tendency of clear sky long wave radiation' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'Updraught mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'Downdraught mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'Updraught detrainment rate' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'Downdraught detrainment rate' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'Total precipitation flux' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'Turbulent diffusion coefficient for heat' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'Tendency of temperature due to physics' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'Tendency of specific humidity due to physics' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'Tendency of u component due to physics' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'Tendency of v component due to physics' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'Variance of geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'Covariance of geopotential/temperature' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'Variance of temperature' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'Covariance of geopotential/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'Covariance of temperature/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'Variance of specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'Covariance of u component/geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'Covariance of u component/temperature' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'Covariance of u component/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'Variance of u component' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'Covariance of v component/geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'Covariance of v component/temperature' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'Covariance of v component/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'Covariance of v component/u component' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'Variance of v component' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'Covariance of omega/geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'Covariance of omega/temperature' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'Covariance of omega/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'Covariance of omega/u component' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'Covariance of omega/v component' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'Variance of omega' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'Variance of surface pressure' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'Variance of relative humidity' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'Covariance of u component/ozone' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'Covariance of v component/ozone' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'Covariance of omega/ozone' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'Variance of ozone' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'Stream function anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'Velocity potential anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'Potential temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'Equivalent potential temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'Saturated equivalent potential temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'U component of divergent wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'V component of divergent wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'U component of rotational wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'V component of rotational wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'Unbalanced component of temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'Unbalanced component of logarithm of surface pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'Unbalanced component of divergence anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'Lake cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'Low vegetation cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'High vegetation cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'Type of low vegetation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'Type of high vegetation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'Sea-ice cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'Snow albedo anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'Snow density anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'Sea surface temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'Ice surface temperature anomaly layer 1' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'Ice surface temperature anomaly layer 2' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'Ice surface temperature anomaly layer 3' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'Ice surface temperature anomaly layer 4' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'Volumetric soil water anomaly layer 1' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'Volumetric soil water anomaly layer 2' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'Volumetric soil water anomaly layer 3' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'Volumetric soil water anomaly layer 4' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'Soil type anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'Snow evaporation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'Snowmelt anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'Solar duration anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'Direct solar radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress anomaly +'Magnitude of surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'10 metre wind gust anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'Large-scale precipitation fraction anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'Maximum 2 metre temperature in the last 24 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'Minimum 2 metre temperature in the last 24 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'Montgomery potential anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'Mean 2 metre temperature in the last 24 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'Mean 2 metre dewpoint temperature in the last 24 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'Downward UV radiation at the surface anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'Photosynthetically active radiation at the surface anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'Convective available potential energy anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'Potential vorticity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'Total precipitation from observations anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'Observation count anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'Start time for skin temperature difference anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'Finish time for skin temperature difference anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'Skin temperature difference anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'Total column liquid water anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'Total column ice water anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'Vertically integrated total energy anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'Atmospheric tide anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'Budget values anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'Geopotential anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'U component of wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'V component of wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'Specific humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'Surface pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'Vertical velocity (pressure) anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'Total column water anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'Total column water vapour anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'Relative vorticity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'Soil temperature anomaly level 1' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'Soil wetness anomaly level 1' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'Snow depth anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'Stratiform precipitation (Large-scale precipitation) anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'Convective precipitation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'Snowfall (convective + stratiform) anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'Boundary layer dissipation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'Surface sensible heat flux anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'Surface latent heat flux anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'Charnock anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'Surface net radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'Top net radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'Mean sea level pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'Logarithm of surface pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'Short-wave heating rate anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'Long-wave heating rate anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'Relative divergence anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'Height anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'Relative humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'Tendency of surface pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'Boundary layer height anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'Standard deviation of orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'Anisotropy of sub-gridscale orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'Angle of sub-gridscale orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'Slope of sub-gridscale orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'Total cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'10 metre U wind component anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'10 metre V wind component anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'2 metre temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'2 metre dewpoint temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'Surface solar radiation downwards anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'Soil temperature anomaly level 2' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'Soil wetness anomaly level 2' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'Surface roughness anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'Albedo anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'Surface thermal radiation downwards anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'Surface net solar radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'Surface net thermal radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'Top net solar radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'Top net thermal radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'East-West surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'North-South surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'Evaporation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'Soil temperature anomaly level 3' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'Soil wetness anomaly level 3' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'Convective cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'Low cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'Medium cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'High cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'Sunshine duration anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'East-West component of sub-gridscale orographic variance anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'North-South component of sub-gridscale orographic variance anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'North-West/South-East component of sub-gridscale orographic variance anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'North-East/South-West component of sub-gridscale orographic variance anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'Brightness temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'Longitudinal component of gravity wave stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'Meridional component of gravity wave stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'Gravity wave dissipation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'Skin reservoir content anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'Vegetation fraction anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'Variance of sub-gridscale orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'Maximum temperature at 2 metres anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'Minimum temperature at 2 metres anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'Ozone mass mixing ratio anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'Precipitation analysis weights anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'Runoff anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'Total column ozone anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'10 metre wind speed anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'Top net solar radiation clear sky anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'Top net thermal radiation clear sky anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'Surface net solar radiation clear sky anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'Surface net thermal radiation, clear sky anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'Solar insolation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'Diabatic heating by radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'Diabatic heating by vertical diffusion anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'Diabatic heating by cumulus convection anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'Diabatic heating by large-scale condensation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'Vertical diffusion of zonal wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'Vertical diffusion of meridional wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'East-West gravity wave drag tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'North-South gravity wave drag tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'Convective tendency of zonal wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'Convective tendency of meridional wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'Vertical diffusion of humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'Humidity tendency by cumulus convection anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'Humidity tendency by large-scale condensation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'Change from removal of negative humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'Total precipitation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'Instantaneous X surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'Instantaneous Y surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'Instantaneous surface heat flux anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'Instantaneous moisture flux anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'Apparent surface humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'Logarithm of surface roughness length for heat anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'Skin temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'Soil temperature level 4 anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'Soil wetness level 4 anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'Temperature of snow layer anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'Convective snowfall anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'Large scale snowfall anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'Accumulated cloud fraction tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'Accumulated liquid water tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'Forecast albedo anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'Forecast surface roughness anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'Forecast logarithm of surface roughness for heat anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'Cloud liquid water content anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'Cloud ice water content anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'Cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'Accumulated ice water tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'Ice age anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'Adiabatic tendency of temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'Adiabatic tendency of humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'Adiabatic tendency of zonal wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'Adiabatic tendency of meridional wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'Snow evaporation' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'Snowmelt' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress +'Magnitude of surface stress' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction +'Large-scale precipitation fraction' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'Stratiform precipitation (Large-scale precipitation)' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) +'Snowfall (convective + stratiform)' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation +'Surface net radiation' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate +'Short-wave heating rate' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'Long-wave heating rate' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards +'Surface solar radiation downwards' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards +'Surface thermal radiation downwards' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation +'Surface solar radiation' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation +'Surface thermal radiation' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation +'Top solar radiation' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation +'Top thermal radiation' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress +'East-West surface stress' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'North-South surface stress' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'Evaporation' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration +'Sunshine duration' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'Longitudinal component of gravity wave stress' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'Meridional component of gravity wave stress' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Runoff +'Runoff' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'Top net solar radiation, clear sky' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'Top net thermal radiation, clear sky' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation +'Solar insolation' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'Convective snowfall' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'Large scale snowfall' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'Snow evaporation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'Snowmelt anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress anomaly +'Magnitude of surface stress anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'Large-scale precipitation fraction anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'Stratiform precipitation (Large-scale precipitation) anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'Convective precipitation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'Snowfall (convective + stratiform) anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'Boundary layer dissipation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'Surface sensible heat flux anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'Surface latent heat flux anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'Surface net radiation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'Short-wave heating rate anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'Long-wave heating rate anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomaly +'Surface solar radiation downwards anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomaly +'Surface thermal radiation downwards anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomaly +'Surface solar radiation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomaly +'Surface thermal radiation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomaly +'Top solar radiation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomaly +'Top thermal radiation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'East-West surface stress anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'North-South surface stress anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'Evaporation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'Sunshine duration anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'Longitudinal component of gravity wave stress anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'Meridional component of gravity wave stress anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'Gravity wave dissipation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomaly +'Runoff anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'Top net solar radiation, clear sky anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'Top net thermal radiation, clear sky anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'Surface net solar radiation, clear sky anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'Surface net thermal radiation, clear sky anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'Solar insolation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'Total precipitation anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'Convective snowfall anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'Large scale snowfall anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'Surface runoff' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'Sub-surface runoff' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'Fraction of sea-ice in sea' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'Open-sea surface temperature' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'10 metre wind gust in the last 24 hours' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'1.5m temperature - mean in the last 24 hours' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'Net primary productivity' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'10m U wind over land' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'10m V wind over land' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'1.5m temperature over land' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'1.5m dewpoint temperature over land' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'Top incoming solar radiation' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'Top outgoing solar radiation' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'Mean sea surface temperature' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'1.5m specific humidity' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'Sea-ice thickness' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'Liquid water potential temperature' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'Ocean ice concentration' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'Ocean mean ice depth' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'Soil temperature layer 1' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'Average potential temperature in upper 293.4m' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'1.5m temperature' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'1.5m dewpoint temperature' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'Soil temperature layer 2' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'Average salinity in upper 293.4m' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'Soil temperature layer 3' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'1.5m temperature - maximum in the last 24 hours' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'1.5m temperature - minimum in the last 24 hours' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'Soil temperature layer 4' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'Fraction of sea-ice in sea' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'Open-sea surface temperature' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'10m wind gust in the last 24 hours' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'1.5m temperature - mean in the last 24 hours' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'Net primary productivity' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'10m U wind over land' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'10m V wind over land' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'1.5m temperature over land' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'1.5m dewpoint temperature over land' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'Top incoming solar radiation' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'Top outgoing solar radiation' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'Ocean ice concentration' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'Ocean mean ice depth' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'Soil temperature layer 1' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'Average potential temperature in upper 293.4m' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'1.5m temperature' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'1.5m dewpoint temperature' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'Soil temperature layer 2' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'Average salinity in upper 293.4m' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'Soil temperature layer 3' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'1.5m temperature - maximum in the last 24 hours' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'1.5m temperature - minimum in the last 24 hours' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'Soil temperature layer 4' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'Total soil wetness' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'Top net solar radiation' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'Snow depth' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'Field capacity' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'Wilting point' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'Roughness length' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'Total soil moisture' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'2 metre dewpoint temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'downward shortwave radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'upward shortwave radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'downward longwave radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'upward longwave radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'downwd photosynthetic active radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'net shortwave flux' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'net longwave flux' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'total net radiative flux density' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'downw shortw radiant flux density, cloudfree part' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'upw shortw radiant flux density, cloudy part' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'downw longw radiant flux density, cloudfree part' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'upw longw radiant flux density, cloudy part' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'shortwave radiative heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'longwave radiative heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'total radiative heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'soil heat flux, surface' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'soil heat flux, bottom of layer' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'fractional cloud cover' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'cloud cover, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'specific cloud water content' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'cloud water content, grid scale, vert integrated' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'specific cloud ice content, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'cloud ice content, grid scale, vert integrated' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'specific rainwater content, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'specific snow content, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'specific rainwater content, gs, vert. integrated' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'specific snow content, gs, vert. integrated' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'total column water' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'vert. integral of divergence of tot. water content' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'cloud covers CH_CM_CL (000...888)' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'cloud cover CH (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'cloud cover CM (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'cloud cover CL (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'total cloud cover (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'fog (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'fog' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'cloud cover, convective cirrus' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'specific cloud water content, convective clouds' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'cloud water content, conv clouds, vert integrated' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'specific cloud ice content, convective clouds' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'cloud ice content, conv clouds, vert integrated' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'convective mass flux' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'Updraft velocity, convection' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'entrainment parameter, convection' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'cloud base, convective clouds (above msl)' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'cloud top, convective clouds (above msl)' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'convective layers (00...77) (BKE)' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'KO-index' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'convection base index' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'convection top index' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'convective temperature tendency' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'convective tendency of specific humidity' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'convective tendency of total heat' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'convective tendency of total water' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'convective momentum tendency (X-component)' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'convective momentum tendency (Y-component)' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'convective vorticity tendency' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'convective divergence tendency' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'top of dry convection (above msl)' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'dry convection top index' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'height of 0 degree Celsius isotherm above msl' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'height of snow-fall limit' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'spec. content of precip. particles' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'surface precipitation rate, rain, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'surface precipitation rate, snow, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'surface precipitation amount, rain, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'surface precipitation rate, rain, convective' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'surface precipitation rate, snow, convective' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'surface precipitation amount, rain, convective' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'deviation of pressure from reference value' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'coefficient of horizontal diffusion' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'Maximum wind velocity' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'water content of interception store' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'snow temperature' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'ice surface temperature' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'convective available potential energy' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'Sulphate Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'SO2 precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'Aerosol type 1 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'Aerosol type 2 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'Aerosol type 3 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'Aerosol type 4 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'Aerosol type 5 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'Aerosol type 6 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'Aerosol type 7 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'Aerosol type 8 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'Aerosol type 9 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'Aerosol type 10 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'Aerosol type 11 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'Aerosol type 12 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'Aerosol type 1 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'Aerosol type 2 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'Aerosol type 3 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'Aerosol type 4 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'Aerosol type 5 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'Aerosol type 6 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'Aerosol type 7 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'Aerosol type 8 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'Aerosol type 9 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'Aerosol type 10 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'Aerosol type 11 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'Aerosol type 12 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'Aerosol precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'Aerosol small mode mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'Aerosol large mode mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'Aerosol precursor optical depth' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'Aerosol small mode optical depth' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'Aerosol large mode optical depth' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'Dust emission potential' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'Lifting threshold speed' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'Soil clay content' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'Methane' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'Nitrous oxide' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'Total column Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'Total column Methane' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'Total column Nitrous oxide' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'Ocean flux of Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'Natural biosphere flux of Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'Anthropogenic emissions of Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'Methane Surface Fluxes' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'Methane loss rate due to radical hydroxyl (OH)' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'Wildfire flux of Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'Wildfire flux of Carbon Monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'Wildfire flux of Methane' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'Wildfire flux of Non-Methane Hydro-Carbons' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'Wildfire flux of Hydrogen' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'Wildfire flux of Nitrogen Oxides NOx' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'Wildfire flux of Nitrous Oxide' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'Wildfire flux of Particulate Matter PM2.5' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'Wildfire flux of Total Particulate Matter' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'Wildfire flux of Total Carbon in Aerosols' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'Wildfire flux of Organic Carbon' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'Wildfire flux of Black Carbon' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'Wildfire overall flux of burnt Carbon' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'Wildfire fraction of C4 plants' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'Wildfire vegetation map index' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'Wildfire Combustion Completeness' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'Wildfire Fuel Load: Carbon per unit area' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'Wildfire fraction of area observed' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'Number of positive FRP pixels per grid cell' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'Wildfire radiative power' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'Wildfire combustion rate' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'Nitrogen dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'Carbon monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'Formaldehyde' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'Total column Nitrogen dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'Total column Sulphur dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'Total column Carbon monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'Total column Formaldehyde' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'Nitrogen Oxides' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'Total Column Nitrogen Oxides' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'Reactive tracer 1 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'Total column GRG tracer 1' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'Reactive tracer 2 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'Total column GRG tracer 2' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'Reactive tracer 3 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'Total column GRG tracer 3' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'Reactive tracer 4 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'Total column GRG tracer 4' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'Reactive tracer 5 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'Total column GRG tracer 5' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'Reactive tracer 6 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'Total column GRG tracer 6' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'Reactive tracer 7 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'Total column GRG tracer 7' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'Reactive tracer 8 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'Total column GRG tracer 8' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'Reactive tracer 9 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'Total column GRG tracer 9' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'Reactive tracer 10 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'Total column GRG tracer 10' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'Surface flux Nitrogen oxides' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'Surface flux Nitrogen dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'Surface flux Sulphur dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'Surface flux Carbon monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'Surface flux Formaldehyde' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'Surface flux GEMS Ozone' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'Surface flux reactive tracer 1' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'Surface flux reactive tracer 2' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'Surface flux reactive tracer 3' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'Surface flux reactive tracer 4' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'Surface flux reactive tracer 5' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'Surface flux reactive tracer 6' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'Surface flux reactive tracer 7' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'Surface flux reactive tracer 8' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'Surface flux reactive tracer 9' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'Surface flux reactive tracer 10' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'Radon' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'Sulphur Hexafluoride' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'Total column Radon' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'Total column Sulphur Hexafluoride' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'Anthropogenic Emissions of Sulphur Hexafluoride' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'GEMS Ozone' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'GEMS Total column ozone' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'Total Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'Sea Salt Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'Dust Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'Organic Matter Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'Black Carbon Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'Sulphate Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'Total Aerosol Optical Depth at 469nm' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'Total Aerosol Optical Depth at 670nm' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'Total Aerosol Optical Depth at 865nm' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'Total Aerosol Optical Depth at 1240nm' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'Sulphate Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'Aerosol type 12 mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'Aerosol type 1 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'Aerosol type 2 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'Aerosol type 3 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'Aerosol type 4 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'Aerosol type 5 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'Aerosol type 6 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'Aerosol type 7 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'Aerosol type 8 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'Aerosol type 9 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'Aerosol type 10 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'Aerosol type 11 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'Aerosol type 12 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'Aerosol type 1 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'Aerosol type 2 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'Aerosol type 3 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'Aerosol type 4 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'Aerosol type 5 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'Aerosol type 6 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'Aerosol type 7 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'Aerosol type 8 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'Aerosol type 9 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'Aerosol type 10 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'Aerosol type 11 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'Aerosol type 12 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'Aerosol precursor mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'Aerosol small mode mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'Aerosol large mode mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'Aerosol precursor optical depth' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'Aerosol small mode optical depth' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'Aerosol large mode optical depth' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'Dust emission potential' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'Lifting threshold speed' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'Soil clay content' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'Methane' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'Nitrous oxide' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'Total column Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'Total column Methane' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'Total column Nitrous oxide' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'Ocean flux of Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'Natural biosphere flux of Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'Anthropogenic emissions of Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'Methane Surface Fluxes' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'Methane loss rate due to radical hydroxyl (OH)' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'Wildfire flux of Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'Wildfire flux of Carbon Monoxide' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'Wildfire flux of Methane' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'Wildfire flux of Non-Methane Hydro-Carbons' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'Wildfire flux of Hydrogen' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'Wildfire flux of Nitrogen Oxides NOx' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'Wildfire flux of Nitrous Oxide' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'Wildfire flux of Particulate Matter PM2.5' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'Wildfire flux of Total Particulate Matter' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'Wildfire flux of Total Carbon in Aerosols' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'Wildfire flux of Organic Carbon' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'Wildfire flux of Black Carbon' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'Wildfire overall flux of burnt Carbon' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'Wildfire fraction of C4 plants' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'Wildfire vegetation map index' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'Wildfire Combustion Completeness' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'Wildfire Fuel Load: Carbon per unit area' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'Wildfire fraction of area observed' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'Wildfire observed area' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'Wildfire radiative power' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'Wildfire combustion rate' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'Nitrogen dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'Carbon monoxide' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'Formaldehyde' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'Total column Nitrogen dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'Total column Sulphur dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'Total column Carbon monoxide' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'Total column Formaldehyde' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'Nitrogen Oxides' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'Total Column Nitrogen Oxides' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'Reactive tracer 1 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'Total column GRG tracer 1' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'Reactive tracer 2 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'Total column GRG tracer 2' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'Reactive tracer 3 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'Total column GRG tracer 3' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'Reactive tracer 4 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'Total column GRG tracer 4' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'Reactive tracer 5 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'Total column GRG tracer 5' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'Reactive tracer 6 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'Total column GRG tracer 6' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'Reactive tracer 7 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'Total column GRG tracer 7' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'Reactive tracer 8 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'Total column GRG tracer 8' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'Reactive tracer 9 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'Total column GRG tracer 9' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'Reactive tracer 10 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'Total column GRG tracer 10' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'Surface flux Nitrogen oxides' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'Surface flux Nitrogen dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'Surface flux Sulphur dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'Surface flux Carbon monoxide' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'Surface flux Formaldehyde' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'Surface flux GEMS Ozone' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'Surface flux reactive tracer 1' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'Surface flux reactive tracer 2' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'Surface flux reactive tracer 3' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'Surface flux reactive tracer 4' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'Surface flux reactive tracer 5' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'Surface flux reactive tracer 6' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'Surface flux reactive tracer 7' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'Surface flux reactive tracer 8' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'Surface flux reactive tracer 9' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'Surface flux reactive tracer 10' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'Radon' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'Sulphur Hexafluoride' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'Total column Radon' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'Total column Sulphur Hexafluoride' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'Anthropogenic Emissions of Sulphur Hexafluoride' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'GEMS Ozone' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'GEMS Total column ozone' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'Total Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'Sea Salt Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'Dust Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'Organic Matter Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'Black Carbon Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'Sulphate Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'Total Aerosol Optical Depth at 469nm' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'Total Aerosol Optical Depth at 670nm' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'Total Aerosol Optical Depth at 865nm' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'Total Aerosol Optical Depth at 1240nm' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'Total precipitation observation count' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'Convective inhibition' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'Orography' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'Friction velocity' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'Mean temperature at 2 metres' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'Mean of 10 metre wind speed' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'Mean total cloud cover' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'Lake depth' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'Lake mix-layer temperature' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'Lake mix-layer depth' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'Lake bottom temperature' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'Lake total layer temperature' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'Lake shape factor' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'Lake ice temperature' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'Lake ice depth' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'Minimum vertical gradient of refractivity inside trapping layer' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'Mean vertical gradient of refractivity inside trapping layer' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'Duct base height' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'Trapping layer base height' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'Trapping layer top height' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'Soil Moisture' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'Neutral wind at 10 m u-component' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'Neutral wind at 10 m v-component' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'Soil Temperature' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'Snow Fall water equivalent' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'Field capacity' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'Wilting point' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'Total Precipitation' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'Snow evaporation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'Snowmelt (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'Solar duration (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'Downward UV radiation at the surface (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'Photosynthetically active radiation at the surface (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'Stratiform precipitation (Large-scale precipitation) (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'Convective precipitation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'Snowfall (convective + stratiform) (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'Boundary layer dissipation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'Surface sensible heat flux (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'Surface latent heat flux (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'Surface solar radiation downwards (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'Surface thermal radiation downwards (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'Surface net solar radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'Surface net thermal radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'Top net solar radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'Top net thermal radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'East-West surface stress (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'North-South surface stress (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'Evaporation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'Sunshine duration (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'Longitudinal component of gravity wave stress (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'Meridional component of gravity wave stress (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'Gravity wave dissipation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'Skin reservoir content (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'Runoff (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'Top net solar radiation, clear sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'Top net thermal radiation, clear sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'Surface net solar radiation, clear sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'Surface net thermal radiation, clear sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'TOA incident solar radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'Surface temperature significance' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'Mean sea level pressure significance' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'2 metre temperature significance' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'Total precipitation significance' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'U-component stokes drift' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'V-component stokes drift' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'Wildfire radiative power maximum' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'Wildfire flux of Sulfur Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'Wildfire Flux of Methanol (CH3OH)' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'Wildfire Flux of Ethanol (C2H5OH)' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'Wildfire Flux of Propane (C3H8)' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'Wildfire Flux of Ethene (C2H4)' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'Wildfire Flux of Propene (C3H6)' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'Wildfire Flux of Isoprene (C5H8)' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'Wildfire Flux of Terpenes (C5H8)n' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'Wildfire Flux of Higher Alkenes (CnH2n, C>=4)' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4)' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'Wildfire Flux of Formaldehyde (CH2O)' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'Wildfire Flux of Acetaldehyde (C2H4O)' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'Wildfire Flux of Acetone (C3H6O)' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'Wildfire Flux of Ammonia (NH3)' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S)' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'Wildfire radiative power maximum' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'Wildfire flux of Sulfur Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'Wildfire Flux of Methanol (CH3OH)' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'Wildfire Flux of Ethanol (C2H5OH)' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'Wildfire Flux of Propane (C3H8)' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'Wildfire Flux of Ethene (C2H4)' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'Wildfire Flux of Propene (C3H6)' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'Wildfire Flux of Isoprene (C5H8)' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'Wildfire Flux of Terpenes (C5H8)n' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'Wildfire Flux of Higher Alkenes (CnH2n, C>=4)' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4)' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'Wildfire Flux of Formaldehyde (CH2O)' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'Wildfire Flux of Acetaldehyde (C2H4O)' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'Wildfire Flux of Acetone (C3H6O)' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'Wildfire Flux of Ammonia (NH3)' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S)' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'V-tendency from non-orographic wave drag' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'U-tendency from non-orographic wave drag' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'100 metre U wind component' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'100 metre V wind component' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'ASCAT first soil moisture CDF matching parameter' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ASCAT second soil moisture CDF matching parameter' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} + +# EC-Earth product 1 +'EC-Earth product 1' = { + table2Version = 126 ; + indicatorOfParameter = 1 ; + } + +# EC-Earth product 2 +'EC-Earth product 2' = { + table2Version = 126 ; + indicatorOfParameter = 2 ; + } + +# EC-Earth product 3 +'EC-Earth product 3' = { + table2Version = 126 ; + indicatorOfParameter = 3 ; + } + +# EC-Earth product 4 +'EC-Earth product 4' = { + table2Version = 126 ; + indicatorOfParameter = 4 ; + } + +# EC-Earth product 5 +'EC-Earth product 5' = { + table2Version = 126 ; + indicatorOfParameter = 5 ; + } + +# EC-Earth product 6 +'EC-Earth product 6' = { + table2Version = 126 ; + indicatorOfParameter = 6 ; + } + +# EC-Earth product 7 +'EC-Earth product 7' = { + table2Version = 126 ; + indicatorOfParameter = 7 ; + } + +# EC-Earth product 8 +'EC-Earth product 8' = { + table2Version = 126 ; + indicatorOfParameter = 8 ; + } + +# EC-Earth product 9 +'EC-Earth product 9' = { + table2Version = 126 ; + indicatorOfParameter = 9 ; + } + +# EC-Earth product 10 +'EC-Earth product 10' = { + table2Version = 126 ; + indicatorOfParameter = 10 ; + } + +# EC-Earth product 11 +'EC-Earth product 11' = { + table2Version = 126 ; + indicatorOfParameter = 11 ; + } + +# EC-Earth product 12 +'EC-Earth product 12' = { + table2Version = 126 ; + indicatorOfParameter = 12 ; + } + +# EC-Earth product 13 +'EC-Earth product 13' = { + table2Version = 126 ; + indicatorOfParameter = 13 ; + } + +# EC-Earth product 14 +'EC-Earth product 14' = { + table2Version = 126 ; + indicatorOfParameter = 14 ; + } + +# EC-Earth product 15 +'EC-Earth product 15' = { + table2Version = 126 ; + indicatorOfParameter = 15 ; + } + +# EC-Earth product 16 +'EC-Earth product 16' = { + table2Version = 126 ; + indicatorOfParameter = 16 ; + } + +# EC-Earth product 17 +'EC-Earth product 17' = { + table2Version = 126 ; + indicatorOfParameter = 17 ; + } + +# EC-Earth product 18 +'EC-Earth product 18' = { + table2Version = 126 ; + indicatorOfParameter = 18 ; + } + +# EC-Earth product 19 +'EC-Earth product 19' = { + table2Version = 126 ; + indicatorOfParameter = 19 ; + } + +# EC-Earth product 20 +'EC-Earth product 20' = { + table2Version = 126 ; + indicatorOfParameter = 20 ; + } + +# EC-Earth product 21 +'EC-Earth product 21' = { + table2Version = 126 ; + indicatorOfParameter = 21 ; + } + +# EC-Earth product 22 +'EC-Earth product 22' = { + table2Version = 126 ; + indicatorOfParameter = 22 ; + } + +# EC-Earth product 23 +'EC-Earth product 23' = { + table2Version = 126 ; + indicatorOfParameter = 23 ; + } + +# EC-Earth product 24 +'EC-Earth product 24' = { + table2Version = 126 ; + indicatorOfParameter = 24 ; + } + +# EC-Earth product 25 +'EC-Earth product 25' = { + table2Version = 126 ; + indicatorOfParameter = 25 ; + } + +# EC-Earth product 26 +'EC-Earth product 26' = { + table2Version = 126 ; + indicatorOfParameter = 26 ; + } + +# EC-Earth product 27 +'EC-Earth product 27' = { + table2Version = 126 ; + indicatorOfParameter = 27 ; + } + +# EC-Earth product 28 +'EC-Earth product 28' = { + table2Version = 126 ; + indicatorOfParameter = 28 ; + } + +# EC-Earth product 29 +'EC-Earth product 29' = { + table2Version = 126 ; + indicatorOfParameter = 29 ; + } + +# EC-Earth product 30 +'EC-Earth product 30' = { + table2Version = 126 ; + indicatorOfParameter = 30 ; + } + +# EC-Earth product 31 +'EC-Earth product 31' = { + table2Version = 126 ; + indicatorOfParameter = 31 ; + } + +# EC-Earth product 32 +'EC-Earth product 32' = { + table2Version = 126 ; + indicatorOfParameter = 32 ; + } + +# EC-Earth product 33 +'EC-Earth product 33' = { + table2Version = 126 ; + indicatorOfParameter = 33 ; + } + +# EC-Earth product 34 +'EC-Earth product 34' = { + table2Version = 126 ; + indicatorOfParameter = 34 ; + } + +# EC-Earth product 35 +'EC-Earth product 35' = { + table2Version = 126 ; + indicatorOfParameter = 35 ; + } + +# EC-Earth product 36 +'EC-Earth product 36' = { + table2Version = 126 ; + indicatorOfParameter = 36 ; + } + +# EC-Earth product 37 +'EC-Earth product 37' = { + table2Version = 126 ; + indicatorOfParameter = 37 ; + } + +# EC-Earth product 38 +'EC-Earth product 38' = { + table2Version = 126 ; + indicatorOfParameter = 38 ; + } + +# EC-Earth product 39 +'EC-Earth product 39' = { + table2Version = 126 ; + indicatorOfParameter = 39 ; + } + +# EC-Earth product 40 +'EC-Earth product 40' = { + table2Version = 126 ; + indicatorOfParameter = 40 ; + } + +# EC-Earth product 41 +'EC-Earth product 41' = { + table2Version = 126 ; + indicatorOfParameter = 41 ; + } + +# EC-Earth product 42 +'EC-Earth product 42' = { + table2Version = 126 ; + indicatorOfParameter = 42 ; + } + +# EC-Earth product 43 +'EC-Earth product 43' = { + table2Version = 126 ; + indicatorOfParameter = 43 ; + } + +# EC-Earth product 44 +'EC-Earth product 44' = { + table2Version = 126 ; + indicatorOfParameter = 44 ; + } + +# EC-Earth product 45 +'EC-Earth product 45' = { + table2Version = 126 ; + indicatorOfParameter = 45 ; + } + +# EC-Earth product 46 +'EC-Earth product 46' = { + table2Version = 126 ; + indicatorOfParameter = 46 ; + } + +# EC-Earth product 47 +'EC-Earth product 47' = { + table2Version = 126 ; + indicatorOfParameter = 47 ; + } + +# EC-Earth product 48 +'EC-Earth product 48' = { + table2Version = 126 ; + indicatorOfParameter = 48 ; + } + +# EC-Earth product 49 +'EC-Earth product 49' = { + table2Version = 126 ; + indicatorOfParameter = 49 ; + } + +# EC-Earth product 50 +'EC-Earth product 50' = { + table2Version = 126 ; + indicatorOfParameter = 50 ; + } + +# EC-Earth product 51 +'EC-Earth product 51' = { + table2Version = 126 ; + indicatorOfParameter = 51 ; + } + +# EC-Earth product 52 +'EC-Earth product 52' = { + table2Version = 126 ; + indicatorOfParameter = 52 ; + } + +# EC-Earth product 53 +'EC-Earth product 53' = { + table2Version = 126 ; + indicatorOfParameter = 53 ; + } + +# EC-Earth product 54 +'EC-Earth product 54' = { + table2Version = 126 ; + indicatorOfParameter = 54 ; + } + +# EC-Earth product 55 +'EC-Earth product 55' = { + table2Version = 126 ; + indicatorOfParameter = 55 ; + } + +# EC-Earth product 56 +'EC-Earth product 56' = { + table2Version = 126 ; + indicatorOfParameter = 56 ; + } + +# EC-Earth product 57 +'EC-Earth product 57' = { + table2Version = 126 ; + indicatorOfParameter = 57 ; + } + +# EC-Earth product 58 +'EC-Earth product 58' = { + table2Version = 126 ; + indicatorOfParameter = 58 ; + } + +# EC-Earth product 59 +'EC-Earth product 59' = { + table2Version = 126 ; + indicatorOfParameter = 59 ; + } + +# EC-Earth product 60 +'EC-Earth product 60' = { + table2Version = 126 ; + indicatorOfParameter = 60 ; + } + +# EC-Earth product 61 +'EC-Earth product 61' = { + table2Version = 126 ; + indicatorOfParameter = 61 ; + } + +# EC-Earth product 62 +'EC-Earth product 62' = { + table2Version = 126 ; + indicatorOfParameter = 62 ; + } + +# EC-Earth product 63 +'EC-Earth product 63' = { + table2Version = 126 ; + indicatorOfParameter = 63 ; + } + +# EC-Earth product 64 +'EC-Earth product 64' = { + table2Version = 126 ; + indicatorOfParameter = 64 ; + } + +# EC-Earth product 65 +'EC-Earth product 65' = { + table2Version = 126 ; + indicatorOfParameter = 65 ; + } + +# EC-Earth product 66 +'EC-Earth product 66' = { + table2Version = 126 ; + indicatorOfParameter = 66 ; + } + +# EC-Earth product 67 +'EC-Earth product 67' = { + table2Version = 126 ; + indicatorOfParameter = 67 ; + } + +# EC-Earth product 68 +'EC-Earth product 68' = { + table2Version = 126 ; + indicatorOfParameter = 68 ; + } + +# EC-Earth product 69 +'EC-Earth product 69' = { + table2Version = 126 ; + indicatorOfParameter = 69 ; + } + +# EC-Earth product 70 +'EC-Earth product 70' = { + table2Version = 126 ; + indicatorOfParameter = 70 ; + } + +# EC-Earth product 71 +'EC-Earth product 71' = { + table2Version = 126 ; + indicatorOfParameter = 71 ; + } + +# EC-Earth product 72 +'EC-Earth product 72' = { + table2Version = 126 ; + indicatorOfParameter = 72 ; + } + +# EC-Earth product 73 +'EC-Earth product 73' = { + table2Version = 126 ; + indicatorOfParameter = 73 ; + } + +# EC-Earth product 74 +'EC-Earth product 74' = { + table2Version = 126 ; + indicatorOfParameter = 74 ; + } + +# EC-Earth product 75 +'EC-Earth product 75' = { + table2Version = 126 ; + indicatorOfParameter = 75 ; + } + +# EC-Earth product 76 +'EC-Earth product 76' = { + table2Version = 126 ; + indicatorOfParameter = 76 ; + } + +# EC-Earth product 77 +'EC-Earth product 77' = { + table2Version = 126 ; + indicatorOfParameter = 77 ; + } + +# EC-Earth product 78 +'EC-Earth product 78' = { + table2Version = 126 ; + indicatorOfParameter = 78 ; + } + +# EC-Earth product 79 +'EC-Earth product 79' = { + table2Version = 126 ; + indicatorOfParameter = 79 ; + } + +# EC-Earth product 80 +'EC-Earth product 80' = { + table2Version = 126 ; + indicatorOfParameter = 80 ; + } + +# EC-Earth product 81 +'EC-Earth product 81' = { + table2Version = 126 ; + indicatorOfParameter = 81 ; + } + +# EC-Earth product 82 +'EC-Earth product 82' = { + table2Version = 126 ; + indicatorOfParameter = 82 ; + } + +# EC-Earth product 83 +'EC-Earth product 83' = { + table2Version = 126 ; + indicatorOfParameter = 83 ; + } + +# EC-Earth product 84 +'EC-Earth product 84' = { + table2Version = 126 ; + indicatorOfParameter = 84 ; + } + +# EC-Earth product 85 +'EC-Earth product 85' = { + table2Version = 126 ; + indicatorOfParameter = 85 ; + } + +# EC-Earth product 86 +'EC-Earth product 86' = { + table2Version = 126 ; + indicatorOfParameter = 86 ; + } + +# EC-Earth product 87 +'EC-Earth product 87' = { + table2Version = 126 ; + indicatorOfParameter = 87 ; + } + +# EC-Earth product 88 +'EC-Earth product 88' = { + table2Version = 126 ; + indicatorOfParameter = 88 ; + } + +# EC-Earth product 89 +'EC-Earth product 89' = { + table2Version = 126 ; + indicatorOfParameter = 89 ; + } + +# EC-Earth product 90 +'EC-Earth product 90' = { + table2Version = 126 ; + indicatorOfParameter = 90 ; + } + +# EC-Earth product 91 +'EC-Earth product 91' = { + table2Version = 126 ; + indicatorOfParameter = 91 ; + } + +# EC-Earth product 92 +'EC-Earth product 92' = { + table2Version = 126 ; + indicatorOfParameter = 92 ; + } + +# EC-Earth product 93 +'EC-Earth product 93' = { + table2Version = 126 ; + indicatorOfParameter = 93 ; + } + +# EC-Earth product 94 +'EC-Earth product 94' = { + table2Version = 126 ; + indicatorOfParameter = 94 ; + } + +# EC-Earth product 95 +'EC-Earth product 95' = { + table2Version = 126 ; + indicatorOfParameter = 95 ; + } + +# EC-Earth product 96 +'EC-Earth product 96' = { + table2Version = 126 ; + indicatorOfParameter = 96 ; + } + +# EC-Earth product 97 +'EC-Earth product 97' = { + table2Version = 126 ; + indicatorOfParameter = 97 ; + } + +# EC-Earth product 98 +'EC-Earth product 98' = { + table2Version = 126 ; + indicatorOfParameter = 98 ; + } + +# EC-Earth product 99 +'EC-Earth product 99' = { + table2Version = 126 ; + indicatorOfParameter = 99 ; + } + +# EC-Earth product 100 +'EC-Earth product 100' = { + table2Version = 126 ; + indicatorOfParameter = 100 ; + } + +# EC-Earth product 101 +'EC-Earth product 101' = { + table2Version = 126 ; + indicatorOfParameter = 101 ; + } + +# EC-Earth product 102 +'EC-Earth product 102' = { + table2Version = 126 ; + indicatorOfParameter = 102 ; + } + +# EC-Earth product 103 +'EC-Earth product 103' = { + table2Version = 126 ; + indicatorOfParameter = 103 ; + } + +# EC-Earth product 104 +'EC-Earth product 104' = { + table2Version = 126 ; + indicatorOfParameter = 104 ; + } + +# EC-Earth product 105 +'EC-Earth product 105' = { + table2Version = 126 ; + indicatorOfParameter = 105 ; + } + +# EC-Earth product 106 +'EC-Earth product 106' = { + table2Version = 126 ; + indicatorOfParameter = 106 ; + } + +# EC-Earth product 107 +'EC-Earth product 107' = { + table2Version = 126 ; + indicatorOfParameter = 107 ; + } + +# EC-Earth product 108 +'EC-Earth product 108' = { + table2Version = 126 ; + indicatorOfParameter = 108 ; + } + +# EC-Earth product 109 +'EC-Earth product 109' = { + table2Version = 126 ; + indicatorOfParameter = 109 ; + } + +# EC-Earth product 110 +'EC-Earth product 110' = { + table2Version = 126 ; + indicatorOfParameter = 110 ; + } + +# EC-Earth product 111 +'EC-Earth product 111' = { + table2Version = 126 ; + indicatorOfParameter = 111 ; + } + +# EC-Earth product 112 +'EC-Earth product 112' = { + table2Version = 126 ; + indicatorOfParameter = 112 ; + } + +# EC-Earth product 113 +'EC-Earth product 113' = { + table2Version = 126 ; + indicatorOfParameter = 113 ; + } + +# EC-Earth product 114 +'EC-Earth product 114' = { + table2Version = 126 ; + indicatorOfParameter = 114 ; + } + +# EC-Earth product 115 +'EC-Earth product 115' = { + table2Version = 126 ; + indicatorOfParameter = 115 ; + } + +# EC-Earth product 116 +'EC-Earth product 116' = { + table2Version = 126 ; + indicatorOfParameter = 116 ; + } + +# EC-Earth product 117 +'EC-Earth product 117' = { + table2Version = 126 ; + indicatorOfParameter = 117 ; + } + +# EC-Earth product 118 +'EC-Earth product 118' = { + table2Version = 126 ; + indicatorOfParameter = 118 ; + } + +# EC-Earth product 119 +'EC-Earth product 119' = { + table2Version = 126 ; + indicatorOfParameter = 119 ; + } + +# EC-Earth product 120 +'EC-Earth product 120' = { + table2Version = 126 ; + indicatorOfParameter = 120 ; + } + +# EC-Earth product 121 +'EC-Earth product 121' = { + table2Version = 126 ; + indicatorOfParameter = 121 ; + } + +# EC-Earth product 122 +'EC-Earth product 122' = { + table2Version = 126 ; + indicatorOfParameter = 122 ; + } + +# EC-Earth product 123 +'EC-Earth product 123' = { + table2Version = 126 ; + indicatorOfParameter = 123 ; + } + +# EC-Earth product 124 +'EC-Earth product 124' = { + table2Version = 126 ; + indicatorOfParameter = 124 ; + } + +# EC-Earth product 125 +'EC-Earth product 125' = { + table2Version = 126 ; + indicatorOfParameter = 125 ; + } + +# EC-Earth product 126 +'EC-Earth product 126' = { + table2Version = 126 ; + indicatorOfParameter = 126 ; + } + +# EC-Earth product 127 +'EC-Earth product 127' = { + table2Version = 126 ; + indicatorOfParameter = 127 ; + } + +# EC-Earth product 128 +'EC-Earth product 128' = { + table2Version = 126 ; + indicatorOfParameter = 128 ; + } + +# EC-Earth product 129 +'EC-Earth product 129' = { + table2Version = 126 ; + indicatorOfParameter = 129 ; + } + +# EC-Earth product 130 +'EC-Earth product 130' = { + table2Version = 126 ; + indicatorOfParameter = 130 ; + } + +# EC-Earth product 131 +'EC-Earth product 131' = { + table2Version = 126 ; + indicatorOfParameter = 131 ; + } + +# EC-Earth product 132 +'EC-Earth product 132' = { + table2Version = 126 ; + indicatorOfParameter = 132 ; + } + +# EC-Earth product 133 +'EC-Earth product 133' = { + table2Version = 126 ; + indicatorOfParameter = 133 ; + } + +# EC-Earth product 134 +'EC-Earth product 134' = { + table2Version = 126 ; + indicatorOfParameter = 134 ; + } + +# EC-Earth product 135 +'EC-Earth product 135' = { + table2Version = 126 ; + indicatorOfParameter = 135 ; + } + +# EC-Earth product 136 +'EC-Earth product 136' = { + table2Version = 126 ; + indicatorOfParameter = 136 ; + } + +# EC-Earth product 137 +'EC-Earth product 137' = { + table2Version = 126 ; + indicatorOfParameter = 137 ; + } + +# EC-Earth product 138 +'EC-Earth product 138' = { + table2Version = 126 ; + indicatorOfParameter = 138 ; + } + +# EC-Earth product 139 +'EC-Earth product 139' = { + table2Version = 126 ; + indicatorOfParameter = 139 ; + } + +# EC-Earth product 140 +'EC-Earth product 140' = { + table2Version = 126 ; + indicatorOfParameter = 140 ; + } + +# EC-Earth product 141 +'EC-Earth product 141' = { + table2Version = 126 ; + indicatorOfParameter = 141 ; + } + +# EC-Earth product 142 +'EC-Earth product 142' = { + table2Version = 126 ; + indicatorOfParameter = 142 ; + } + +# EC-Earth product 143 +'EC-Earth product 143' = { + table2Version = 126 ; + indicatorOfParameter = 143 ; + } + +# EC-Earth product 144 +'EC-Earth product 144' = { + table2Version = 126 ; + indicatorOfParameter = 144 ; + } + +# EC-Earth product 145 +'EC-Earth product 145' = { + table2Version = 126 ; + indicatorOfParameter = 145 ; + } + +# EC-Earth product 146 +'EC-Earth product 146' = { + table2Version = 126 ; + indicatorOfParameter = 146 ; + } + +# EC-Earth product 147 +'EC-Earth product 147' = { + table2Version = 126 ; + indicatorOfParameter = 147 ; + } + +# EC-Earth product 148 +'EC-Earth product 148' = { + table2Version = 126 ; + indicatorOfParameter = 148 ; + } + +# EC-Earth product 149 +'EC-Earth product 149' = { + table2Version = 126 ; + indicatorOfParameter = 149 ; + } + +# EC-Earth product 150 +'EC-Earth product 150' = { + table2Version = 126 ; + indicatorOfParameter = 150 ; + } + +# EC-Earth product 151 +'EC-Earth product 151' = { + table2Version = 126 ; + indicatorOfParameter = 151 ; + } + +# EC-Earth product 152 +'EC-Earth product 152' = { + table2Version = 126 ; + indicatorOfParameter = 152 ; + } + +# EC-Earth product 153 +'EC-Earth product 153' = { + table2Version = 126 ; + indicatorOfParameter = 153 ; + } + +# EC-Earth product 154 +'EC-Earth product 154' = { + table2Version = 126 ; + indicatorOfParameter = 154 ; + } + +# EC-Earth product 155 +'EC-Earth product 155' = { + table2Version = 126 ; + indicatorOfParameter = 155 ; + } + +# EC-Earth product 156 +'EC-Earth product 156' = { + table2Version = 126 ; + indicatorOfParameter = 156 ; + } + +# EC-Earth product 157 +'EC-Earth product 157' = { + table2Version = 126 ; + indicatorOfParameter = 157 ; + } + +# EC-Earth product 158 +'EC-Earth product 158' = { + table2Version = 126 ; + indicatorOfParameter = 158 ; + } + +# EC-Earth product 159 +'EC-Earth product 159' = { + table2Version = 126 ; + indicatorOfParameter = 159 ; + } + +# EC-Earth product 160 +'EC-Earth product 160' = { + table2Version = 126 ; + indicatorOfParameter = 160 ; + } + +# EC-Earth product 161 +'EC-Earth product 161' = { + table2Version = 126 ; + indicatorOfParameter = 161 ; + } + +# EC-Earth product 162 +'EC-Earth product 162' = { + table2Version = 126 ; + indicatorOfParameter = 162 ; + } + +# EC-Earth product 163 +'EC-Earth product 163' = { + table2Version = 126 ; + indicatorOfParameter = 163 ; + } + +# EC-Earth product 164 +'EC-Earth product 164' = { + table2Version = 126 ; + indicatorOfParameter = 164 ; + } + +# EC-Earth product 165 +'EC-Earth product 165' = { + table2Version = 126 ; + indicatorOfParameter = 165 ; + } + +# EC-Earth product 166 +'EC-Earth product 166' = { + table2Version = 126 ; + indicatorOfParameter = 166 ; + } + +# EC-Earth product 167 +'EC-Earth product 167' = { + table2Version = 126 ; + indicatorOfParameter = 167 ; + } + +# EC-Earth product 168 +'EC-Earth product 168' = { + table2Version = 126 ; + indicatorOfParameter = 168 ; + } + +# EC-Earth product 169 +'EC-Earth product 169' = { + table2Version = 126 ; + indicatorOfParameter = 169 ; + } + +# EC-Earth product 170 +'EC-Earth product 170' = { + table2Version = 126 ; + indicatorOfParameter = 170 ; + } + +# EC-Earth product 171 +'EC-Earth product 171' = { + table2Version = 126 ; + indicatorOfParameter = 171 ; + } + +# EC-Earth product 172 +'EC-Earth product 172' = { + table2Version = 126 ; + indicatorOfParameter = 172 ; + } + +# EC-Earth product 173 +'EC-Earth product 173' = { + table2Version = 126 ; + indicatorOfParameter = 173 ; + } + +# EC-Earth product 174 +'EC-Earth product 174' = { + table2Version = 126 ; + indicatorOfParameter = 174 ; + } + +# EC-Earth product 175 +'EC-Earth product 175' = { + table2Version = 126 ; + indicatorOfParameter = 175 ; + } + +# EC-Earth product 176 +'EC-Earth product 176' = { + table2Version = 126 ; + indicatorOfParameter = 176 ; + } + +# EC-Earth product 177 +'EC-Earth product 177' = { + table2Version = 126 ; + indicatorOfParameter = 177 ; + } + +# EC-Earth product 178 +'EC-Earth product 178' = { + table2Version = 126 ; + indicatorOfParameter = 178 ; + } + +# EC-Earth product 179 +'EC-Earth product 179' = { + table2Version = 126 ; + indicatorOfParameter = 179 ; + } + +# EC-Earth product 180 +'EC-Earth product 180' = { + table2Version = 126 ; + indicatorOfParameter = 180 ; + } + +# EC-Earth product 181 +'EC-Earth product 181' = { + table2Version = 126 ; + indicatorOfParameter = 181 ; + } + +# EC-Earth product 182 +'EC-Earth product 182' = { + table2Version = 126 ; + indicatorOfParameter = 182 ; + } + +# EC-Earth product 183 +'EC-Earth product 183' = { + table2Version = 126 ; + indicatorOfParameter = 183 ; + } + +# EC-Earth product 184 +'EC-Earth product 184' = { + table2Version = 126 ; + indicatorOfParameter = 184 ; + } + +# EC-Earth product 185 +'EC-Earth product 185' = { + table2Version = 126 ; + indicatorOfParameter = 185 ; + } + +# EC-Earth product 186 +'EC-Earth product 186' = { + table2Version = 126 ; + indicatorOfParameter = 186 ; + } + +# EC-Earth product 187 +'EC-Earth product 187' = { + table2Version = 126 ; + indicatorOfParameter = 187 ; + } + +# EC-Earth product 188 +'EC-Earth product 188' = { + table2Version = 126 ; + indicatorOfParameter = 188 ; + } + +# EC-Earth product 189 +'EC-Earth product 189' = { + table2Version = 126 ; + indicatorOfParameter = 189 ; + } + +# EC-Earth product 190 +'EC-Earth product 190' = { + table2Version = 126 ; + indicatorOfParameter = 190 ; + } + +# EC-Earth product 191 +'EC-Earth product 191' = { + table2Version = 126 ; + indicatorOfParameter = 191 ; + } + +# EC-Earth product 192 +'EC-Earth product 192' = { + table2Version = 126 ; + indicatorOfParameter = 192 ; + } + +# EC-Earth product 193 +'EC-Earth product 193' = { + table2Version = 126 ; + indicatorOfParameter = 193 ; + } + +# EC-Earth product 194 +'EC-Earth product 194' = { + table2Version = 126 ; + indicatorOfParameter = 194 ; + } + +# EC-Earth product 195 +'EC-Earth product 195' = { + table2Version = 126 ; + indicatorOfParameter = 195 ; + } + +# EC-Earth product 196 +'EC-Earth product 196' = { + table2Version = 126 ; + indicatorOfParameter = 196 ; + } + +# EC-Earth product 197 +'EC-Earth product 197' = { + table2Version = 126 ; + indicatorOfParameter = 197 ; + } + +# EC-Earth product 198 +'EC-Earth product 198' = { + table2Version = 126 ; + indicatorOfParameter = 198 ; + } + +# EC-Earth product 199 +'EC-Earth product 199' = { + table2Version = 126 ; + indicatorOfParameter = 199 ; + } + +# EC-Earth product 200 +'EC-Earth product 200' = { + table2Version = 126 ; + indicatorOfParameter = 200 ; + } + +# EC-Earth product 201 +'EC-Earth product 201' = { + table2Version = 126 ; + indicatorOfParameter = 201 ; + } + +# EC-Earth product 202 +'EC-Earth product 202' = { + table2Version = 126 ; + indicatorOfParameter = 202 ; + } + +# EC-Earth product 203 +'EC-Earth product 203' = { + table2Version = 126 ; + indicatorOfParameter = 203 ; + } + +# EC-Earth product 204 +'EC-Earth product 204' = { + table2Version = 126 ; + indicatorOfParameter = 204 ; + } + +# EC-Earth product 205 +'EC-Earth product 205' = { + table2Version = 126 ; + indicatorOfParameter = 205 ; + } + +# EC-Earth product 206 +'EC-Earth product 206' = { + table2Version = 126 ; + indicatorOfParameter = 206 ; + } + +# EC-Earth product 207 +'EC-Earth product 207' = { + table2Version = 126 ; + indicatorOfParameter = 207 ; + } + +# EC-Earth product 208 +'EC-Earth product 208' = { + table2Version = 126 ; + indicatorOfParameter = 208 ; + } + +# EC-Earth product 209 +'EC-Earth product 209' = { + table2Version = 126 ; + indicatorOfParameter = 209 ; + } + +# EC-Earth product 210 +'EC-Earth product 210' = { + table2Version = 126 ; + indicatorOfParameter = 210 ; + } + +# EC-Earth product 211 +'EC-Earth product 211' = { + table2Version = 126 ; + indicatorOfParameter = 211 ; + } + +# EC-Earth product 212 +'EC-Earth product 212' = { + table2Version = 126 ; + indicatorOfParameter = 212 ; + } + +# EC-Earth product 213 +'EC-Earth product 213' = { + table2Version = 126 ; + indicatorOfParameter = 213 ; + } + +# EC-Earth product 214 +'EC-Earth product 214' = { + table2Version = 126 ; + indicatorOfParameter = 214 ; + } + +# EC-Earth product 215 +'EC-Earth product 215' = { + table2Version = 126 ; + indicatorOfParameter = 215 ; + } + +# EC-Earth product 216 +'EC-Earth product 216' = { + table2Version = 126 ; + indicatorOfParameter = 216 ; + } + +# EC-Earth product 217 +'EC-Earth product 217' = { + table2Version = 126 ; + indicatorOfParameter = 217 ; + } + +# EC-Earth product 218 +'EC-Earth product 218' = { + table2Version = 126 ; + indicatorOfParameter = 218 ; + } + +# EC-Earth product 219 +'EC-Earth product 219' = { + table2Version = 126 ; + indicatorOfParameter = 219 ; + } + +# EC-Earth product 220 +'EC-Earth product 220' = { + table2Version = 126 ; + indicatorOfParameter = 220 ; + } + +# EC-Earth product 221 +'EC-Earth product 221' = { + table2Version = 126 ; + indicatorOfParameter = 221 ; + } + +# EC-Earth product 222 +'EC-Earth product 222' = { + table2Version = 126 ; + indicatorOfParameter = 222 ; + } + +# EC-Earth product 223 +'EC-Earth product 223' = { + table2Version = 126 ; + indicatorOfParameter = 223 ; + } + +# EC-Earth product 224 +'EC-Earth product 224' = { + table2Version = 126 ; + indicatorOfParameter = 224 ; + } + +# EC-Earth product 225 +'EC-Earth product 225' = { + table2Version = 126 ; + indicatorOfParameter = 225 ; + } + +# EC-Earth product 226 +'EC-Earth product 226' = { + table2Version = 126 ; + indicatorOfParameter = 226 ; + } + +# EC-Earth product 227 +'EC-Earth product 227' = { + table2Version = 126 ; + indicatorOfParameter = 227 ; + } + +# EC-Earth product 228 +'EC-Earth product 228' = { + table2Version = 126 ; + indicatorOfParameter = 228 ; + } + +# EC-Earth product 229 +'EC-Earth product 229' = { + table2Version = 126 ; + indicatorOfParameter = 229 ; + } + +# EC-Earth product 230 +'EC-Earth product 230' = { + table2Version = 126 ; + indicatorOfParameter = 230 ; + } + +# EC-Earth product 231 +'EC-Earth product 231' = { + table2Version = 126 ; + indicatorOfParameter = 231 ; + } + +# EC-Earth product 232 +'EC-Earth product 232' = { + table2Version = 126 ; + indicatorOfParameter = 232 ; + } + +# EC-Earth product 233 +'EC-Earth product 233' = { + table2Version = 126 ; + indicatorOfParameter = 233 ; + } + +# EC-Earth product 234 +'EC-Earth product 234' = { + table2Version = 126 ; + indicatorOfParameter = 234 ; + } + +# EC-Earth product 235 +'EC-Earth product 235' = { + table2Version = 126 ; + indicatorOfParameter = 235 ; + } + +# EC-Earth product 236 +'EC-Earth product 236' = { + table2Version = 126 ; + indicatorOfParameter = 236 ; + } + +# EC-Earth product 237 +'EC-Earth product 237' = { + table2Version = 126 ; + indicatorOfParameter = 237 ; + } + +# EC-Earth product 238 +'EC-Earth product 238' = { + table2Version = 126 ; + indicatorOfParameter = 238 ; + } + +# EC-Earth product 239 +'EC-Earth product 239' = { + table2Version = 126 ; + indicatorOfParameter = 239 ; + } + +# EC-Earth product 240 +'EC-Earth product 240' = { + table2Version = 126 ; + indicatorOfParameter = 240 ; + } + +# EC-Earth product 241 +'EC-Earth product 241' = { + table2Version = 126 ; + indicatorOfParameter = 241 ; + } + +# EC-Earth product 242 +'EC-Earth product 242' = { + table2Version = 126 ; + indicatorOfParameter = 242 ; + } + +# EC-Earth product 243 +'EC-Earth product 243' = { + table2Version = 126 ; + indicatorOfParameter = 243 ; + } + +# EC-Earth product 244 +'EC-Earth product 244' = { + table2Version = 126 ; + indicatorOfParameter = 244 ; + } + +# EC-Earth product 245 +'EC-Earth product 245' = { + table2Version = 126 ; + indicatorOfParameter = 245 ; + } + +# EC-Earth product 246 +'EC-Earth product 246' = { + table2Version = 126 ; + indicatorOfParameter = 246 ; + } + +# EC-Earth product 247 +'EC-Earth product 247' = { + table2Version = 126 ; + indicatorOfParameter = 247 ; + } + +# EC-Earth product 248 +'EC-Earth product 248' = { + table2Version = 126 ; + indicatorOfParameter = 248 ; + } + +# EC-Earth product 249 +'EC-Earth product 249' = { + table2Version = 126 ; + indicatorOfParameter = 249 ; + } + +# EC-Earth product 250 +'EC-Earth product 250' = { + table2Version = 126 ; + indicatorOfParameter = 250 ; + } + +# EC-Earth product 251 +'EC-Earth product 251' = { + table2Version = 126 ; + indicatorOfParameter = 251 ; + } + +# EC-Earth product 252 +'EC-Earth product 252' = { + table2Version = 126 ; + indicatorOfParameter = 252 ; + } + +# EC-Earth product 253 +'EC-Earth product 253' = { + table2Version = 126 ; + indicatorOfParameter = 253 ; + } + +# EC-Earth product 254 +'EC-Earth product 254' = { + table2Version = 126 ; + indicatorOfParameter = 254 ; + } + +# EC-Earth product 255 +'EC-Earth product 255' = { + table2Version = 126 ; + indicatorOfParameter = 255 ; + } diff --git a/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/paramId.def b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/paramId.def new file mode 100644 index 0000000000000000000000000000000000000000..f1862125e1263edfbce657959047f77fd2c9a4d0 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/paramId.def @@ -0,0 +1,18181 @@ +# Automatically generated by ./create_def.pl from database param@wrep-db-misc-prod, do not edit +#Total precipitation of at least 1 mm +'131060' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'131061' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'131062' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'131063' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'131082' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'131083' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'131084' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'131085' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'131086' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'131087' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'131088' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'1' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'2' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'3' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'4' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'5' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'6' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'7' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'8' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'9' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'10' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'11' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'12' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'13' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'14' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'15' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'16' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'17' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'18' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'19' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'20' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'21' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'22' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'23' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'24' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'25' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'26' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'27' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'28' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'29' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'30' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover +'31' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'32' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'33' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'34' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'35' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'36' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'37' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'38' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'39' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'40' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'41' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'42' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'43' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'44' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'45' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'46' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'47' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress +'48' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'49' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'50' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'51' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'52' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'53' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'54' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'55' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'56' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'57' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'58' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'59' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'60' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'62' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'63' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'64' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'65' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'66' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'67' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'68' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'69' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'70' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'71' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'72' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'73' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'74' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'75' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'76' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'77' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column liquid water +'78' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'79' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'80' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'81' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'82' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'83' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'84' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'85' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'86' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'87' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'88' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'89' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'90' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'91' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'92' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'93' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'94' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'95' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'96' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'97' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'98' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'99' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'100' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'101' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'102' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'103' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'104' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'105' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'106' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'107' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'108' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'109' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'110' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'111' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'112' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'113' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'114' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'115' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'116' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'117' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'118' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'119' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'120' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'121' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'122' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'123' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'124' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'125' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'126' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'127' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'127' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'128' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'128' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'129' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'129' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'129' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'129' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'129' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'130' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'130' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'130' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'130' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'130' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'131' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'131' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'131' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'131' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'131' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'132' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'132' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'132' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'132' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'132' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'133' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'133' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'133' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'133' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'133' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'134' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'134' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'134' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'134' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'134' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'135' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'135' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'136' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'136' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'137' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'137' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'138' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'138' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'138' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'138' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'138' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'139' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'139' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'139' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'139' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'140' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'140' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'141' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'141' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'141' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'142' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'142' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'142' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'143' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'143' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'143' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'144' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'144' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'145' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'145' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'147' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'147' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'147' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'147' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'147' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'148' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'149' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'150' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'151' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'151' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'151' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'151' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'151' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'152' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'152' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'153' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'154' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'155' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'155' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'155' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'155' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'155' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'156' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'157' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'157' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'157' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'158' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'158' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'159' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'160' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'161' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'162' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'163' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'164' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'164' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'164' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'164' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'164' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'165' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'165' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'165' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'165' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'166' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'166' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'166' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'166' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'167' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'167' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'167' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'167' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'169' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'169' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'170' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'170' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'171' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'172' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'173' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'173' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'174' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'174' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'174' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'175' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'175' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'176' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'176' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'176' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'176' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'177' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'177' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'177' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'177' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'178' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'178' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'178' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'179' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'179' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'179' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'180' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'180' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'180' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'181' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'181' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'181' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'182' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'182' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'182' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'182' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'183' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'183' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'184' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'184' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'185' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'185' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'185' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'186' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'186' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'187' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'187' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'188' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'188' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'189' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'190' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'190' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'191' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'191' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'192' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'192' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'193' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'193' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'194' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'195' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'195' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'196' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'196' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'197' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'197' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'198' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'199' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'200' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'200' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'203' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'204' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'204' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'205' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'205' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'206' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'207' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'208' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'209' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'210' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'211' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'212' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'213' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'214' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'215' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'216' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'217' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'218' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'219' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'220' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'221' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'222' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'222' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'223' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'223' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'224' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'225' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'226' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'227' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'227' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'228' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'228' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'228' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'228' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'229' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'229' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'230' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'230' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'231' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'232' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'232' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'233' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'233' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'234' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'234' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'235' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'235' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'236' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'236' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'237' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'237' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'238' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'238' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'239' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'240' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'241' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'242' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'243' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'244' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'244' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'245' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'245' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'246' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'247' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Cloud cover +'248' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'249' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'250' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'251' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'252' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'253' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'254' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'255' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'200001' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'200002' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'200003' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'200004' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'200005' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'200011' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'200012' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'200013' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'200014' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'200021' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'200022' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'200023' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'200024' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'200025' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'200026' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'200027' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'200028' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'200029' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'200030' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'200031' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'200032' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'200033' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'200034' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'200035' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'200036' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'200037' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'200038' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'200039' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'200040' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'200041' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'200042' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'200043' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'200044' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'200045' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'200046' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'200047' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress difference +'200048' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'200049' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'200050' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'200051' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'200052' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'200053' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'200054' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'200055' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'200056' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'200057' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'200058' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'200059' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'200060' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'200061' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'200062' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'200063' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'200064' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'200065' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'200066' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'200067' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'200068' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'200069' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'200070' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'200071' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'200078' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'200079' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'200080' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'200081' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'200082' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'200083' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'200084' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'200085' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'200086' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'200087' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'200088' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'200089' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'200090' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'200091' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'200092' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'200093' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'200094' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'200095' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'200096' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'200097' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'200098' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'200099' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'200100' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'200101' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'200102' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'200103' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'200104' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'200105' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'200106' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'200107' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'200108' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'200109' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'200110' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'200111' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'200112' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'200113' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'200114' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'200115' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'200116' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'200117' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'200118' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'200119' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'200120' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'200121' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'200122' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'200123' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'200125' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'200126' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'200127' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'200128' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'200129' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'200130' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'200131' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'200132' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'200133' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'200134' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'200135' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'200136' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'200137' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'200138' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'200139' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'200140' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'200141' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'200142' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'200143' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'200144' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'200145' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'200146' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'200147' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'200148' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'200149' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'200150' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'200151' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'200152' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'200153' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'200154' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'200155' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'200156' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'200157' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'200158' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'200159' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'200160' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'200161' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'200162' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'200163' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'200164' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'200165' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'200166' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'200167' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'200169' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'200170' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'200171' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'200172' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'200173' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'200174' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'200175' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'200176' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'200177' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'200178' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'200179' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'200180' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'200181' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'200182' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'200183' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'200184' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'200185' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'200186' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'200187' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'200188' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'200189' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'200190' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'200191' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'200192' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'200193' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'200194' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'200195' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'200196' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'200197' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'200198' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'200199' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'200200' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'200201' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'200202' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'200203' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'200204' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'200205' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'200206' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'200207' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'200208' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'200209' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'200210' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'200211' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'200212' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'200214' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'200215' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'200216' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'200217' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'200218' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'200219' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'200220' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'200221' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'200222' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'200223' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'200224' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'200225' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'200226' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'200227' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'200228' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'200229' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'200230' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'200231' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'200232' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'200233' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'200234' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'200235' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'200236' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'200237' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'200238' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'200239' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'200240' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'200241' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'200242' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'200243' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'200244' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'200245' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'200246' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'200247' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'200248' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'200249' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'200250' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'200251' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'200252' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'200253' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'200254' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'200255' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'131089' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'131090' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'131091' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'131092' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'131093' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'131094' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'131095' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'131096' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'131097' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Maximum of significant wave height index +'132216' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'140080' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'140081' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'140082' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'140083' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'140084' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Significant wave height of first swell partition +'140121' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'140122' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'140123' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'140124' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'140125' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'140126' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'140127' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'140128' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'140129' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'140207' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'140208' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'140209' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'140210' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'140211' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'140212' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'140213' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'140214' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'151193' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Vertical integral of divergence of cloud liquid water flux +'162079' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'162080' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'162088' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'162089' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'162090' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'162091' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'162092' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'162114' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'162115' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'162116' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'162117' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'162118' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'162119' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'162120' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'162121' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'162122' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'162123' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'162124' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'162125' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'162126' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'162127' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'162128' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'162129' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'162130' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'162131' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'162132' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'162133' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'162134' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'162135' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'162136' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'162137' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'162138' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'162139' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'162140' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'162141' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#100 metre U wind component anomaly +'171006' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'171007' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'171121' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'171122' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Clear-sky (II) down surface sw flux +'174010' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'174013' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'174025' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'174050' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'174051' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'174052' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#Short wave radiation flux at surface +'174116' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'174117' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'174137' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'174142' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'174143' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'174186' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'174239' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'174240' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'174248' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'174249' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'210013' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'210014' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'210015' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'210028' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'210029' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'210030' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'210043' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'210044' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'210045' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'210055' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'210056' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'210057' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'210058' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'210059' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Particulate matter d < 1 um +'210072' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'210073' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'210074' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'210079' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'210118' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'210119' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'210120' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'210186' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'210187' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'210188' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'210189' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'210190' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'210191' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'210192' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'210193' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'210194' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'210195' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'210196' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'210197' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'210217' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'210218' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'210219' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'210220' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'210221' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'210222' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'210223' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'210224' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'210225' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'210226' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'210227' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'210228' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'210229' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'210230' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'210231' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'210232' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'210233' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'210234' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'210235' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'210236' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'210237' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'210238' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'210239' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'210240' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'210241' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'210242' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'210243' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'210244' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'210245' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'210246' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Aerosol type 13 mass mixing ratio +'211013' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'211014' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'211015' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'211028' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'211029' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'211030' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'211043' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'211044' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'211045' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'211055' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'211056' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'211118' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'211119' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'211120' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'212001' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'212002' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'212003' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'212004' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'212005' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'212006' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'212007' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'212008' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'212009' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'212010' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'212011' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'212012' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'212013' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'212014' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'212015' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'212016' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'212017' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'212018' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'212019' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'212020' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'212021' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'212022' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'212023' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'212024' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'212025' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'212026' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'212027' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'212028' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'212029' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'212030' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'212031' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'212032' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'212033' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'212034' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'212035' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'212036' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'212037' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'212038' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'212039' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'212040' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'212041' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'212042' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'212043' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'212044' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'212045' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'212046' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'212047' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'212048' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'212049' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'212050' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'212051' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'212052' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'212053' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'212054' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'212055' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'212056' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'212057' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'212058' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'212059' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'212060' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'212061' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'212062' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'212063' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'212064' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'212065' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'212066' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'212067' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'212068' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'212069' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'212070' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'212071' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'212072' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'212073' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'212074' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'212075' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'212076' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'212077' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'212078' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'212079' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'212080' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'212081' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'212082' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'212083' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'212084' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'212085' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'212086' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'212087' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'212088' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'212089' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'212090' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'212091' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'212092' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'212093' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'212094' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'212095' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'212096' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'212097' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'212098' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'212099' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'212100' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'212101' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'212102' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'212103' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'212104' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'212105' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'212106' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'212107' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'212108' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'212109' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'212110' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'212111' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'212112' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'212113' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'212114' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'212115' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'212116' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'212117' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'212118' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'212119' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'212120' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'212121' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'212122' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'212123' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'212124' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'212125' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'212126' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'212127' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'212128' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'212129' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'212130' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'212131' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'212132' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'212133' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'212134' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'212135' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'212136' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'212137' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'212138' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'212139' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'212140' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'212141' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'212142' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'212143' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'212144' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'212145' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'212146' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'212147' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'212148' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'212149' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'212150' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'212151' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'212152' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'212153' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'212154' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'212155' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'212156' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'212157' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'212158' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'212159' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'212160' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'212161' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'212162' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'212163' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'212164' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'212165' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'212166' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'212167' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'212168' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'212169' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'212170' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'212171' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'212172' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'212173' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'212174' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'212175' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'212176' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'212177' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'212178' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'212179' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'212180' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'212181' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'212182' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'212183' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'212184' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'212185' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'212186' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'212187' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'212188' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'212189' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'212190' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'212191' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'212192' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'212193' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'212194' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'212195' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'212196' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'212197' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'212198' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'212199' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'212200' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'212201' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'212202' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'212203' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'212204' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'212205' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'212206' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'212207' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'212208' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'212209' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'212210' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'212211' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'212212' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'212213' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'212214' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'212215' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'212216' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'212217' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'212218' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'212219' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'212220' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'212221' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'212222' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'212223' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'212224' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'212225' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'212226' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'212227' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'212228' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'212229' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'212230' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'212231' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'212232' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'212233' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'212234' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'212235' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'212236' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'212237' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'212238' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'212239' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'212240' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'212241' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'212242' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'212243' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'212244' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'212245' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'212246' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'212247' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'212248' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'212249' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'212250' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'212251' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'212252' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'212253' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'212254' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'212255' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'213001' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'213002' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'213003' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'213004' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'213005' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +# Cosine of solar zenith angle +'214001' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +# UV biologically effective dose +'214002' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +# UV biologically effective dose clear-sky +'214003' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +'214004' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +'214005' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +'214006' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +'214007' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +'214008' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +'214009' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +'214010' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +'214011' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +'214012' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +'214013' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +'214014' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +'214015' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +'214016' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +'214017' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +'214018' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +'214019' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +'214020' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +'214021' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +'214022' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +'214023' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +'214024' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +'214025' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +'214026' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +'214027' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +'214028' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +'214029' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +'214030' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +'214031' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +'214032' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +'214033' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +'214034' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +'214035' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +'214036' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +'214037' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +'214038' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +'214039' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +'214040' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +'214041' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +'214042' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +'214043' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +'214044' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +'214045' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +'214046' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +'214047' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +'214048' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +'214049' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +'214050' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +'214051' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +# Profile of optical thickness at 340 nm +'214052' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +'215001' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +'215002' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +'215003' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'215004' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +'215005' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +'215006' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'215007' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +'215008' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +'215009' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'215010' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'215011' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'215012' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'215013' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'215014' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'215015' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'215016' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +'215017' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +'215018' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'215019' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'215020' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +'215021' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +'215022' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +'215023' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +'215024' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +'215025' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +'215026' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +'215027' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +'215028' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +'215029' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +'215030' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +'215031' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +'215032' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +'215033' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'215034' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'215035' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'215036' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'215037' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'215038' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'215039' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +'215040' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +'215041' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +'215042' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'215043' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +'215044' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +'215045' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +'215046' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +'215047' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +'215048' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +'215049' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +'215050' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +'215051' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +'215052' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +'215053' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +'215054' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'215055' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'215056' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'215057' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'215058' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +'215059' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +'215060' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +'215061' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +'215062' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +'215063' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +'215064' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +'215065' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +'215066' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +'215067' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +'215068' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +'215069' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +'215070' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'215071' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'215072' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'215073' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'215074' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +'215075' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +'215076' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +'215077' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +'215078' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +'215079' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +'215080' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +# Source/gain of sulphate aerosol +'215081' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +# Dry deposition of sulphate aerosol +'215082' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +# Sedimentation of sulphate aerosol +'215083' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +'215084' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +'215085' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +# Negative fixer of sulphate aerosol +'215086' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +# Vertically integrated mass of sulphate aerosol +'215087' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +# Sulphate aerosol optical depth +'215088' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'215089' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'215090' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'215091' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'215092' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Profile of total aerosol optical depth at 532 nm +'215093' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Profile of natural (sea-salt and dust) aerosol optical depth at 532 nm +'215094' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Profile of antropogenic (black carbon, organic matter, sulphate) aerosol optical depth at 532 nm +'215095' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'215096' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'215097' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'215098' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'215099' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'215100' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'215101' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'215102' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'215103' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'215104' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'215105' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'215106' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'215107' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'215108' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'215109' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'215110' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'215111' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'215112' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'215113' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'215114' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'215115' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'215116' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'215117' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'215118' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'215119' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'215120' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'215121' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'215122' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'215123' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'215124' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'215125' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'215126' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'215127' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'215128' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'215129' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'215130' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'215131' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'215132' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'215133' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'215134' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'215135' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'215136' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'215137' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'215138' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'215139' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'215140' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'215141' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'215142' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'215143' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'215144' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'215145' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'215146' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'215147' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'215148' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'215149' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Assimetry factor at 340 nm +'215150' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Assimetry factor at 355 nm +'215151' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Assimetry factor at 380 nm +'215152' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Assimetry factor at 400 nm +'215153' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Assimetry factor at 440 nm +'215154' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Assimetry factor at 469 nm +'215155' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Assimetry factor at 500 nm +'215156' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Assimetry factor at 532 nm +'215157' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Assimetry factor at 550 nm +'215158' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Assimetry factor at 645 nm +'215159' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Assimetry factor at 670 nm +'215160' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Assimetry factor at 800 nm +'215161' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Assimetry factor at 858 nm +'215162' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Assimetry factor at 865 nm +'215163' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Assimetry factor at 1020 nm +'215164' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Assimetry factor at 1064 nm +'215165' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Assimetry factor at 1240 nm +'215166' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Assimetry factor at 1640 nm +'215167' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'215168' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'215169' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'215170' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'215171' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'215172' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'215173' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'215174' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'215175' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'215176' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'215177' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'215178' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Assimetry factor at 2130 nm +'215179' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'216001' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'216002' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'216003' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'216004' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'216005' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'216006' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'216007' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'216008' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'216009' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'216010' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'216011' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'216012' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'216013' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'216014' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'216015' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'216016' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'216017' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'216018' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'216019' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'216020' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'216021' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'216022' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'216023' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'216024' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'216025' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'216026' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'216027' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'216028' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'216029' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'216030' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'216031' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'216032' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'216033' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'216034' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'216035' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'216036' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'216037' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'216038' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'216039' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'216040' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'216041' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'216042' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'216043' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'216044' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'216045' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'216046' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'216047' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'216048' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'216049' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'216050' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'216051' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'216052' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'216053' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'216054' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'216055' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'216056' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'216057' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'216058' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'216059' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'216060' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'216061' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'216062' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'216063' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'216064' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'216065' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'216066' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'216067' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'216068' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'216069' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'216070' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'216071' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'216072' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'216073' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'216074' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'216075' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'216076' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'216077' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'216078' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'216079' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'216080' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'216081' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'216082' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'216083' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'216084' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'216085' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'216086' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'216087' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'216088' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'216089' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'216090' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'216091' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'216092' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'216093' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'216094' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'216095' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'216096' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'216097' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'216098' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'216099' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'216100' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'216101' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'216102' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'216103' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'216104' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'216105' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'216106' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'216107' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'216108' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'216109' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'216110' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'216111' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'216112' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'216113' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'216114' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'216115' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'216116' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'216117' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'216118' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'216119' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'216120' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'216121' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'216122' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'216123' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'216124' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'216125' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'216126' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'216127' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'216128' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'216129' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'216130' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'216131' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'216132' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'216133' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'216134' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'216135' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'216136' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'216137' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'216138' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'216139' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'216140' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'216141' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'216142' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'216143' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'216144' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'216145' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'216146' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'216147' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'216148' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'216149' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'216150' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'216151' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'216152' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'216153' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'216154' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'216155' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'216156' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'216157' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'216158' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'216159' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'216160' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'216161' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'216162' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'216163' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'216164' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'216165' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'216166' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'216167' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'216168' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'216169' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'216170' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'216171' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'216172' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'216173' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'216174' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'216175' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'216176' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'216177' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'216178' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'216179' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'216180' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'216181' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'216182' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'216183' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'216184' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'216185' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'216186' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'216187' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'216188' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'216189' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'216190' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'216191' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'216192' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'216193' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'216194' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'216195' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'216196' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'216197' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'216198' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'216199' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'216200' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'216201' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'216202' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'216203' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'216204' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'216205' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'216206' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'216207' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'216208' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'216209' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'216210' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'216211' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'216212' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'216213' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'216214' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'216215' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'216216' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'216217' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'216218' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'216219' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'216220' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'216221' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'216222' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'216223' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'216224' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'216225' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'216226' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'216227' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'216228' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'216229' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'216230' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'216231' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'216232' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'216233' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'216234' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'216235' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'216236' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'216237' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'216238' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'216239' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'216240' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'216241' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'216242' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'216243' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'216244' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'216245' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'216246' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'216247' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'216248' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'216249' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'216250' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'216251' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'216252' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'216253' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'216254' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'216255' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'217003' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane +'217004' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'217006' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'217007' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'217009' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'217010' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'217011' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'217012' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'217013' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'217014' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'217015' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'217016' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'217018' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'217019' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'217020' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'217021' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'217022' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'217023' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'217024' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'217026' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'217027' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'217028' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'217029' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'217030' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'217032' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'217033' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'217034' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'217035' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'217036' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'217037' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'217038' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'217039' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'217040' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'217041' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'217042' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'217043' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'217044' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'217045' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'217046' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'217047' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'217048' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'217049' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'217050' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'217051' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'217052' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'217053' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'217054' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'217055' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'217056' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'218003' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'218004' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'218006' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'218007' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'218009' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'218010' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'218011' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'218012' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'218013' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'218014' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'218015' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'218016' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'218018' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'218019' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'218020' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'218021' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'218022' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'218023' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'218024' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'218026' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'218027' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'218028' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'218029' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'218030' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'218032' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'218033' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'218034' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'218035' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'218036' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'218037' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'218038' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'218039' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'218040' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'218041' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'218042' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'218043' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'218044' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'218045' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'218046' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'218047' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'218048' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'218049' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'218050' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'218051' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'218052' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'218053' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'218054' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'218055' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'218056' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'219001' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'219002' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'219003' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'219004' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'219005' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'219006' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'219007' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'219008' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'219009' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'219010' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'219011' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'219012' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'219013' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'219014' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'219015' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'219016' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'219017' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'219018' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'219019' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'219020' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'219021' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'219022' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'219023' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'219024' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'219025' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'219026' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'219027' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'219028' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'219029' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'219030' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'219031' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'219032' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'219033' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'219034' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'219035' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'219036' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'219037' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'219038' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'219039' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'219040' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'219041' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'219042' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'219043' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'219044' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'219045' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'219046' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'219047' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'219048' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'219049' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'219050' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'219051' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'219052' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'219053' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'219054' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'219055' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'219056' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'221001' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'221002' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'221003' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'221004' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'221005' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'221006' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'221007' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'221008' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'221009' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'221010' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'221011' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'221012' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'221013' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'221014' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'221015' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'221016' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'221017' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'221018' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'221019' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'221020' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'221021' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'221022' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'221023' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'221024' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'221025' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'221026' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'221027' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'221028' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'221029' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'221030' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'221031' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'221032' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'221033' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'221034' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'221035' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'221036' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'221037' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'221038' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'221039' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'221040' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'221041' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'221042' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'221043' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'221044' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'221045' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'221046' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'221047' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'221048' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'221049' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'221050' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'221051' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'221052' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'221053' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'221054' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'221055' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'221056' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#Total sky direct solar radiation at surface +'228021' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'228022' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'228023' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#Zero degree level +'228024' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'228025' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'228026' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'228027' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'228028' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'228029' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#Soil wetness index in layer 1 +'228040' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'228041' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'228042' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'228043' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'228080' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'228081' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'228082' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'228083' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'228084' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'228085' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'228088' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'228089' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'228090' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'228091' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'228092' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'228093' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'228094' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'228129' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'228130' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Instantaneous large-scale surface precipitation fraction +'228217' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'228218' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'228219' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'228220' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'228221' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'228222' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'228223' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'228224' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'228225' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'228226' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'228227' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'228229' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'228230' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#Surface solar radiation diffuse total sky +'228242' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'228243' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'228244' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'228245' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'228249' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'228250' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'228251' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'228252' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'230008' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'230009' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'230020' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'230021' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'230022' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Large-scale precipitation fraction (variable resolution) +'230050' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'230080' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'230081' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'230082' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'230129' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'230130' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'230174' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'230213' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Total precipitation (variable resolution) +'230228' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'230239' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'230240' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'230251' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#K index +'260121' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'260123' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'129001' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'129002' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'129003' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'129004' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'129005' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'129011' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'129012' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'129013' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'129014' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'129021' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'129022' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'129023' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'129024' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'129025' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'129026' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'129027' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'129028' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'129029' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'129030' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'129031' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'129032' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'129033' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'129034' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'129035' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'129036' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'129037' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'129038' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'129039' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'129040' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'129041' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'129042' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'129043' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'129044' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'129045' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'129046' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'129047' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress gradient +'129048' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'129049' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'129050' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'129051' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'129052' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'129053' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'129054' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'129055' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'129056' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'129057' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'129058' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'129059' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'129060' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'129061' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'129062' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'129063' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'129064' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'129065' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'129066' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'129067' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'129068' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'129069' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'129070' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'129071' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'129078' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'129079' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'129080' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'129081' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'129082' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'129083' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'129084' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'129085' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'129086' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'129087' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'129088' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'129089' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'129090' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'129091' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'129092' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'129093' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'129094' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'129095' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'129096' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'129097' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'129098' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'129099' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'129100' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'129101' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'129102' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'129103' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'129104' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'129105' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'129106' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'129107' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'129108' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'129109' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'129110' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'129111' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'129112' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'129113' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'129114' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'129115' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'129116' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'129117' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'129118' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'129119' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'129120' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'129121' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'129122' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'129123' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'129125' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'129126' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'129127' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'129128' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'129129' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'129130' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'129131' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'129132' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'129133' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'129134' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'129135' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'129136' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'129137' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'129138' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'129139' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'129140' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'129141' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'129142' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'129143' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'129144' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'129145' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'129146' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'129147' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'129148' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'129149' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'129150' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'129151' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'129152' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'129153' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'129154' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'129155' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'129156' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'129157' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'129158' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'129159' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'129160' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'129161' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'129162' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'129163' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'129164' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'129165' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'129166' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'129167' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'129168' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'129169' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'129170' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'129171' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'129172' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'129173' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'129174' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'129175' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'129176' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'129177' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'129178' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'129179' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'129180' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'129181' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'129182' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'129183' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'129184' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'129185' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'129186' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'129187' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'129188' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'129189' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'129190' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'129191' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'129192' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'129193' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'129194' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'129195' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'129196' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'129197' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'129198' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'129199' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'129200' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'129201' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'129202' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'129203' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'129204' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'129205' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'129206' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'129207' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'129208' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'129209' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'129210' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'129211' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'129212' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'129214' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'129215' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'129216' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'129217' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'129218' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'129219' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'129220' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'129221' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'129222' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'129223' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'129224' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'129225' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'129226' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'129227' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'129228' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'129229' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'129230' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'129231' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'129232' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'129233' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'129234' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'129235' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'129236' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'129237' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'129238' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'129239' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'129240' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'129241' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'129242' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'129243' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'129244' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'129245' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'129246' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'129247' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'129248' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'129249' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'129250' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'129251' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'129252' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'129253' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'129254' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'129255' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'130208' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'130209' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'130210' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'130211' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'130212' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'130213' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'130214' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'130215' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'130216' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'130217' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'130218' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'130219' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'130220' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'130221' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'130224' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'130225' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'130226' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'130228' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'130229' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'130230' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'130231' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'130232' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'131001' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'131002' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'131003' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'131004' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'131005' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'131006' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'131007' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'131008' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'131009' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'131010' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'131015' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'131016' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'131017' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'131018' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'131020' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'131021' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'131022' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'131023' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'131024' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'131025' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'131049' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'131059' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'131064' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'131065' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'131066' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'131067' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'131068' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'131069' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre Wind gust of at least 15 m/s +'131070' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre Wind gust of at least 20 m/s +'131071' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre Wind gust of at least 25 m/s +'131072' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'131073' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'131074' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'131075' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'131076' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'131077' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'131078' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'131079' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'131080' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'131081' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'131129' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'131130' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#2 metre temperature probability +'131139' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'131144' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Total precipitation probability +'131151' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'131164' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'131165' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'131167' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'131201' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'131202' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'131228' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'131229' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'131232' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'131255' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'132049' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'132144' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'132165' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'132167' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'132201' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'132202' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'132228' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'133001' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'133002' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'133003' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'133004' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'133005' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'133006' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'133007' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'133008' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'133009' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'133010' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'133011' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'133012' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'133013' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'133014' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'133015' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'133016' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'133017' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'133018' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'133019' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'133020' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'133021' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'133022' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'133023' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'133024' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'133025' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'133026' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'133027' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'133028' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'133029' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'133030' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'133031' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'133032' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'133033' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'133034' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'133035' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'133036' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'133037' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'133038' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'133039' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'133040' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'133041' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'133042' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'133043' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'133044' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'133045' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'133046' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'133047' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'133048' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'133049' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'133050' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'133051' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'133052' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'133053' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'133054' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'133055' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'133056' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'133057' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'133058' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'133059' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'133060' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'133061' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'133062' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'133063' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'133064' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'133065' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'133066' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'133067' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'133068' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'133069' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'133070' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'133071' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'133072' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'133073' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'133074' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'133075' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'133076' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'133077' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'133078' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'133079' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'133080' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'133081' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'133082' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'133083' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'133084' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'133085' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'133086' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'133087' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'133088' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'133089' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'133090' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'133091' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'133092' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'140200' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'140217' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'140218' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'140219' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'140220' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean wave period based on second moment +'140221' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'140222' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'140223' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'140224' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'140225' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'140226' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'140227' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'140228' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'140229' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'140230' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak period of 1D spectra +'140231' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'140232' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'140233' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'140234' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'140235' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'140236' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'140237' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'140238' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'140239' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'140240' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'140241' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'140242' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'140243' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'140244' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'140245' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'140246' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'140247' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'140248' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'140249' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'140250' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'140251' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'140252' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'140253' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'140254' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'140255' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'150129' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'150130' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'150131' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'150133' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'150134' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'150135' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'150137' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'150139' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'150140' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'150141' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'150142' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'150143' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'150144' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'150145' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'150146' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'150147' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'150148' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'150152' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'150153' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'150154' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'150155' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'150168' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'150169' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'150170' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'150171' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'150172' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'150173' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'150180' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'150181' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'150182' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'150183' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'150255' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'151128' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Ocean potential temperature +'151129' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Salinity +'151130' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Ocean current zonal component +'151131' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Ocean current meridional component +'151132' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Ocean current vertical component +'151133' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'151134' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'151135' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'151136' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'151137' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sigma-theta +'151138' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'151139' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'151140' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'151141' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'151142' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'151143' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'151144' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea level +'151145' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'151146' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Barotropic stream function +'151147' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'151148' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'151149' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'151150' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'151151' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'151152' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#U stress +'151153' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#V stress +'151154' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'151155' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'151156' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'151157' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'151158' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'151159' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'151160' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'151161' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'151162' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#20 degrees isotherm depth +'151163' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'151164' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'151165' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'151166' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'151167' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'151168' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'151169' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'151170' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'151171' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'151172' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'151173' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'151174' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'151175' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'151176' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'151177' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'151178' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'151179' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'151180' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'151181' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'151182' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'151183' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'151184' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'151185' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'151186' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'151187' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'151188' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'151190' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'151191' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'151192' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'151194' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'151199' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'151200' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'151201' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'151202' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'151203' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'151204' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'151205' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'151206' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'151207' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'151208' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'151209' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'151210' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'151211' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'151212' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'151255' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'160049' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'160135' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'160137' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'160140' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'160141' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'160142' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'160143' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'160144' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'160156' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'160157' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'160171' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'160180' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'160181' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'160182' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'160184' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'160198' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'160199' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'160201' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'160202' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'160205' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'160206' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'160207' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'160208' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'160209' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'160210' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'160211' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'160212' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'160213' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'160214' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'160215' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'160216' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'160217' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'160218' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'160219' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'160220' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'160221' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'160222' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'160223' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'160224' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'160225' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'160226' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'160231' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'160239' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'160240' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'160241' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'160242' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'160243' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'160246' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'160247' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'160249' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'160254' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'162051' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'162053' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'162054' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'162055' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'162056' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'162057' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'162058' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'162059' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'162060' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'162061' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'162062' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'162063' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'162064' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'162065' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'162066' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'162067' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'162068' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'162069' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'162070' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'162071' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'162072' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'162073' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'162074' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'162075' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'162076' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'162077' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'162078' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'162081' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'162082' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'162083' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'162084' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'162085' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'162086' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'162087' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'162100' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'162101' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'162102' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'162103' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'162104' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'162105' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'162106' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'162107' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'162108' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'162109' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'162110' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'162111' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'162112' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'162113' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'162206' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'162207' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'162208' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'162209' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'162210' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'162211' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'162212' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'162213' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'162214' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'162215' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'162216' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'162217' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'162218' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'162219' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'162220' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'162221' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'162222' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'162223' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'162224' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'162225' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'162226' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'162227' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'162229' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'162230' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'162231' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'162232' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'162233' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'162255' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'170149' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'170171' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'170179' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'171001' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'171002' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'171003' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'171004' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'171005' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'171011' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'171012' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'171013' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'171014' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'171021' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'171022' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'171023' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'171026' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'171027' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'171028' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'171029' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'171030' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'171031' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'171032' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'171033' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'171034' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'171035' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'171036' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'171037' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'171038' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'171039' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'171040' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'171041' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'171042' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'171043' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'171044' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'171045' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'171046' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'171047' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress anomaly +'171048' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'171049' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'171050' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'171051' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'171052' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'171053' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'171054' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'171055' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'171056' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'171057' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'171058' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'171059' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'171060' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'171061' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'171062' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'171063' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'171064' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'171065' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'171078' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'171079' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'171125' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'171126' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'171127' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'171128' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'171129' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'171130' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'171131' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'171132' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'171133' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'171134' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'171135' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'171136' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'171137' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'171138' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'171139' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'171140' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'171141' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'171142' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'171143' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'171144' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'171145' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'171146' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'171147' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'171148' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'171149' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'171150' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'171151' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'171152' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'171153' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'171154' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'171155' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'171156' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'171157' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'171158' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'171159' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'171160' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'171161' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'171162' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'171163' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'171164' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'171165' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'171166' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'171167' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'171168' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'171169' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'171170' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'171171' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'171173' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'171174' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'171175' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'171176' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'171177' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'171178' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'171179' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'171180' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'171181' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'171182' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'171183' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'171184' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'171185' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'171186' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'171187' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'171188' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'171189' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'171190' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'171191' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'171192' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'171193' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'171194' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'171195' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'171196' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'171197' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'171198' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'171199' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'171200' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'171201' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'171202' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'171203' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'171204' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'171205' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'171206' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'171207' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'171208' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'171209' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'171210' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'171211' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'171212' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'171214' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'171215' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'171216' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'171217' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'171218' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'171219' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'171220' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'171221' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'171222' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'171223' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'171224' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'171225' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'171226' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'171227' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'171228' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'171229' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'171230' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'171231' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'171232' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'171233' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'171234' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'171235' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'171236' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'171237' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'171238' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'171239' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'171240' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'171241' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'171242' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'171243' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'171244' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'171245' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'171246' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'171247' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'171248' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'171249' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'171250' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'171251' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'171252' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'171253' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'171254' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'171255' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'172044' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'172045' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress +'172048' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction +'172050' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'172142' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'172143' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) +'172144' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'172145' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'172146' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'172147' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation +'172149' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate +'172153' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'172154' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards +'172169' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards +'172175' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation +'172176' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation +'172177' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation +'172178' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation +'172179' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress +'172180' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'172181' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'172182' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration +'172189' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'172195' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'172196' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'172197' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Runoff +'172205' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'172208' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'172209' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'172210' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'172211' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation +'172212' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Total precipitation +'172228' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'172239' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'172240' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'172255' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'173044' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'173045' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress anomaly +'173048' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'173050' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'173142' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'173143' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'173144' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'173145' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'173146' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'173147' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'173149' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'173153' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'173154' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomaly +'173169' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomaly +'173175' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomaly +'173176' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomaly +'173177' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomaly +'173178' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomaly +'173179' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'173180' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'173181' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'173182' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'173189' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'173195' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'173196' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'173197' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomaly +'173205' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'173208' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'173209' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'173210' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'173211' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'173212' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'173228' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'173239' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'173240' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'173255' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'174006' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'174008' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'174009' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'174031' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'174034' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'174039' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'174040' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'174041' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'174042' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'174049' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'174055' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'174083' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'174085' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'174086' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'174087' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'174088' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'174089' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'174090' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'174094' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'174095' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'174098' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'174099' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'174110' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'174111' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'174139' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'174164' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'174167' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'174168' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'174170' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'174175' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'174183' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'174201' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'174202' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'174236' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'174255' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'175006' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'175031' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'175034' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'175039' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'175040' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'175041' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'175042' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'175049' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'175055' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'175083' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'175085' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'175086' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'175087' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'175088' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'175089' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'175090' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'175110' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'175111' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'175139' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'175164' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'175167' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'175168' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'175170' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'175175' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'175183' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'175201' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'175202' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'175236' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'175255' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'180149' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'180176' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'180177' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'180178' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'180179' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'190141' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'190170' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'190171' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'190173' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'190229' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'200168' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'201001' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'201002' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'201003' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'201004' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'201005' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'201006' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'201007' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'201008' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'201009' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'201010' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'201011' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'201012' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'201013' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'201014' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'201015' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'201016' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'201017' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'201029' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'201030' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'201031' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'201032' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'201033' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'201034' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'201035' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'201036' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'201037' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'201038' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'201041' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'201042' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'201050' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'201051' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'201052' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'201053' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'201054' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'201055' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'201056' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'201060' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'201061' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'201062' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'201063' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'201064' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'201065' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'201066' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'201067' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'201068' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'201069' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'201070' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'201071' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'201072' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'201073' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'201074' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'201075' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'201076' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'201077' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'201078' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'201079' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'201080' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'201081' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'201082' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'201083' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'201084' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'201085' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'201099' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'201100' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'201101' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'201102' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'201111' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'201112' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'201113' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'201139' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'201150' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'201187' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'201200' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'201203' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'201215' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'201241' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'201255' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'210001' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'210002' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'210003' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'210004' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'210005' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'210006' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'210007' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'210008' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'210009' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'210010' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'210011' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'210012' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'210016' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'210017' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'210018' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'210019' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'210020' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'210021' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'210022' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'210023' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'210024' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'210025' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'210026' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'210027' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'210031' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'210032' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'210033' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'210034' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'210035' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'210036' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'210037' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'210038' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'210039' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'210040' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'210041' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'210042' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'210046' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'210047' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'210048' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'210049' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'210050' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'210051' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'210052' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'210053' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'210054' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'210061' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'210062' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'210063' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'210064' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'210065' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'210066' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'210067' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'210068' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'210069' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'210070' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'210071' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'210080' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'210081' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'210082' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'210083' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'210084' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'210085' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'210086' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'210087' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'210088' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'210089' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'210090' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'210091' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'210092' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'210093' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'210094' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'210095' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'210096' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'210097' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'210098' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'210099' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'210100' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'210121' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'210122' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'210123' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'210124' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'210125' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'210126' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'210127' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'210128' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'210129' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'210130' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'210131' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'210132' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'210133' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'210134' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'210135' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'210136' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'210137' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'210138' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'210139' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'210140' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'210141' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'210142' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'210143' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'210144' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'210145' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'210146' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'210147' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'210148' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'210149' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'210150' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'210151' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'210152' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'210153' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'210154' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'210155' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'210156' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'210157' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'210158' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'210159' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'210160' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'210161' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'210162' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'210163' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'210164' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'210165' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'210166' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'210181' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'210182' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'210183' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'210184' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'210185' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'210203' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'210206' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'210207' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'210208' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'210209' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'210210' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'210211' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'210212' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'210213' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'210214' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'210215' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'210216' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'211001' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'211002' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'211003' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'211004' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'211005' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'211006' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'211007' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'211008' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'211009' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'211010' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'211011' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'211012' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'211016' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'211017' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'211018' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'211019' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'211020' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'211021' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'211022' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'211023' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'211024' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'211025' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'211026' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'211027' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'211031' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'211032' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'211033' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'211034' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'211035' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'211036' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'211037' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'211038' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'211039' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'211040' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'211041' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'211042' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'211046' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'211047' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'211048' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'211049' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'211050' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'211051' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'211052' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'211053' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'211054' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'211061' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'211062' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'211063' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'211064' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'211065' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'211066' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'211067' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'211068' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'211069' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'211070' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'211071' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'211080' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'211081' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'211082' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'211083' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'211084' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'211085' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'211086' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'211087' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'211088' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'211089' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'211090' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'211091' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'211092' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'211093' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'211094' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'211095' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'211096' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'211097' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'211098' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'211099' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'211100' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'211121' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'211122' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'211123' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'211124' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'211125' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'211126' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'211127' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'211128' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'211129' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'211130' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'211131' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'211132' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'211133' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'211134' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'211135' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'211136' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'211137' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'211138' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'211139' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'211140' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'211141' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'211142' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'211143' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'211144' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'211145' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'211146' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'211147' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'211148' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'211149' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'211150' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'211151' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'211152' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'211153' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'211154' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'211155' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'211156' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'211157' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'211158' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'211159' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'211160' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'211161' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'211162' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'211163' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'211164' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'211165' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'211166' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'211181' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'211182' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'211183' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'211184' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'211185' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'211203' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'211206' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'211207' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'211208' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'211209' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'211210' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'211211' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'211212' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'211213' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'211214' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'211215' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'211216' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'220228' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'228001' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'228002' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'228003' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'228004' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'228005' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'228006' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'228007' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'228008' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'228009' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'228010' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'228011' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'228012' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'228013' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'228014' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'228015' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'228016' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'228017' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'228018' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'228019' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'228039' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'228131' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'228132' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'228139' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'228141' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'228144' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'228164' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'228170' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'228171' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'228228' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'230044' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'230045' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'230046' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'230057' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'230058' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'230142' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'230143' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'230144' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'230145' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'230146' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'230147' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'230169' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'230175' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'230176' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'230177' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'230178' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'230179' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'230180' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'230181' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'230182' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'230189' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'230195' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'230196' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'230197' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'230198' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'230205' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'230208' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'230209' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'230210' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'230211' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'230212' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'234139' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'234151' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'234167' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'234228' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'140215' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'140216' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'210101' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'210102' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'210103' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'210104' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'210105' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'210106' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'210107' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'210108' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'210109' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'210110' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'210111' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'210112' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'210113' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'210114' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'210115' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'210116' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'210117' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'211101' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'211102' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'211103' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'211104' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'211105' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'211106' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'211107' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'211108' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'211109' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'211110' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'211111' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'211112' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'211113' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'211114' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'211115' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'211116' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'211117' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'228134' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'228136' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'228246' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'228247' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'228253' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'228254' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} + +# EC-Earth product 1 +'126001' = { + table2Version = 126 ; + indicatorOfParameter = 1 ; + } + +# EC-Earth product 2 +'126002' = { + table2Version = 126 ; + indicatorOfParameter = 2 ; + } + +# EC-Earth product 3 +'126003' = { + table2Version = 126 ; + indicatorOfParameter = 3 ; + } + +# EC-Earth product 4 +'126004' = { + table2Version = 126 ; + indicatorOfParameter = 4 ; + } + +# EC-Earth product 5 +'126005' = { + table2Version = 126 ; + indicatorOfParameter = 5 ; + } + +# EC-Earth product 6 +'126006' = { + table2Version = 126 ; + indicatorOfParameter = 6 ; + } + +# EC-Earth product 7 +'126007' = { + table2Version = 126 ; + indicatorOfParameter = 7 ; + } + +# EC-Earth product 8 +'126008' = { + table2Version = 126 ; + indicatorOfParameter = 8 ; + } + +# EC-Earth product 9 +'126009' = { + table2Version = 126 ; + indicatorOfParameter = 9 ; + } + +# EC-Earth product 10 +'126010' = { + table2Version = 126 ; + indicatorOfParameter = 10 ; + } + +# EC-Earth product 11 +'126011' = { + table2Version = 126 ; + indicatorOfParameter = 11 ; + } + +# EC-Earth product 12 +'126012' = { + table2Version = 126 ; + indicatorOfParameter = 12 ; + } + +# EC-Earth product 13 +'126013' = { + table2Version = 126 ; + indicatorOfParameter = 13 ; + } + +# EC-Earth product 14 +'126014' = { + table2Version = 126 ; + indicatorOfParameter = 14 ; + } + +# EC-Earth product 15 +'126015' = { + table2Version = 126 ; + indicatorOfParameter = 15 ; + } + +# EC-Earth product 16 +'126016' = { + table2Version = 126 ; + indicatorOfParameter = 16 ; + } + +# EC-Earth product 17 +'126017' = { + table2Version = 126 ; + indicatorOfParameter = 17 ; + } + +# EC-Earth product 18 +'126018' = { + table2Version = 126 ; + indicatorOfParameter = 18 ; + } + +# EC-Earth product 19 +'126019' = { + table2Version = 126 ; + indicatorOfParameter = 19 ; + } + +# EC-Earth product 20 +'126020' = { + table2Version = 126 ; + indicatorOfParameter = 20 ; + } + +# EC-Earth product 21 +'126021' = { + table2Version = 126 ; + indicatorOfParameter = 21 ; + } + +# EC-Earth product 22 +'126022' = { + table2Version = 126 ; + indicatorOfParameter = 22 ; + } + +# EC-Earth product 23 +'126023' = { + table2Version = 126 ; + indicatorOfParameter = 23 ; + } + +# EC-Earth product 24 +'126024' = { + table2Version = 126 ; + indicatorOfParameter = 24 ; + } + +# EC-Earth product 25 +'126025' = { + table2Version = 126 ; + indicatorOfParameter = 25 ; + } + +# EC-Earth product 26 +'126026' = { + table2Version = 126 ; + indicatorOfParameter = 26 ; + } + +# EC-Earth product 27 +'126027' = { + table2Version = 126 ; + indicatorOfParameter = 27 ; + } + +# EC-Earth product 28 +'126028' = { + table2Version = 126 ; + indicatorOfParameter = 28 ; + } + +# EC-Earth product 29 +'126029' = { + table2Version = 126 ; + indicatorOfParameter = 29 ; + } + +# EC-Earth product 30 +'126030' = { + table2Version = 126 ; + indicatorOfParameter = 30 ; + } + +# EC-Earth product 31 +'126031' = { + table2Version = 126 ; + indicatorOfParameter = 31 ; + } + +# EC-Earth product 32 +'126032' = { + table2Version = 126 ; + indicatorOfParameter = 32 ; + } + +# EC-Earth product 33 +'126033' = { + table2Version = 126 ; + indicatorOfParameter = 33 ; + } + +# EC-Earth product 34 +'126034' = { + table2Version = 126 ; + indicatorOfParameter = 34 ; + } + +# EC-Earth product 35 +'126035' = { + table2Version = 126 ; + indicatorOfParameter = 35 ; + } + +# EC-Earth product 36 +'126036' = { + table2Version = 126 ; + indicatorOfParameter = 36 ; + } + +# EC-Earth product 37 +'126037' = { + table2Version = 126 ; + indicatorOfParameter = 37 ; + } + +# EC-Earth product 38 +'126038' = { + table2Version = 126 ; + indicatorOfParameter = 38 ; + } + +# EC-Earth product 39 +'126039' = { + table2Version = 126 ; + indicatorOfParameter = 39 ; + } + +# EC-Earth product 40 +'126040' = { + table2Version = 126 ; + indicatorOfParameter = 40 ; + } + +# EC-Earth product 41 +'126041' = { + table2Version = 126 ; + indicatorOfParameter = 41 ; + } + +# EC-Earth product 42 +'126042' = { + table2Version = 126 ; + indicatorOfParameter = 42 ; + } + +# EC-Earth product 43 +'126043' = { + table2Version = 126 ; + indicatorOfParameter = 43 ; + } + +# EC-Earth product 44 +'126044' = { + table2Version = 126 ; + indicatorOfParameter = 44 ; + } + +# EC-Earth product 45 +'126045' = { + table2Version = 126 ; + indicatorOfParameter = 45 ; + } + +# EC-Earth product 46 +'126046' = { + table2Version = 126 ; + indicatorOfParameter = 46 ; + } + +# EC-Earth product 47 +'126047' = { + table2Version = 126 ; + indicatorOfParameter = 47 ; + } + +# EC-Earth product 48 +'126048' = { + table2Version = 126 ; + indicatorOfParameter = 48 ; + } + +# EC-Earth product 49 +'126049' = { + table2Version = 126 ; + indicatorOfParameter = 49 ; + } + +# EC-Earth product 50 +'126050' = { + table2Version = 126 ; + indicatorOfParameter = 50 ; + } + +# EC-Earth product 51 +'126051' = { + table2Version = 126 ; + indicatorOfParameter = 51 ; + } + +# EC-Earth product 52 +'126052' = { + table2Version = 126 ; + indicatorOfParameter = 52 ; + } + +# EC-Earth product 53 +'126053' = { + table2Version = 126 ; + indicatorOfParameter = 53 ; + } + +# EC-Earth product 54 +'126054' = { + table2Version = 126 ; + indicatorOfParameter = 54 ; + } + +# EC-Earth product 55 +'126055' = { + table2Version = 126 ; + indicatorOfParameter = 55 ; + } + +# EC-Earth product 56 +'126056' = { + table2Version = 126 ; + indicatorOfParameter = 56 ; + } + +# EC-Earth product 57 +'126057' = { + table2Version = 126 ; + indicatorOfParameter = 57 ; + } + +# EC-Earth product 58 +'126058' = { + table2Version = 126 ; + indicatorOfParameter = 58 ; + } + +# EC-Earth product 59 +'126059' = { + table2Version = 126 ; + indicatorOfParameter = 59 ; + } + +# EC-Earth product 60 +'126060' = { + table2Version = 126 ; + indicatorOfParameter = 60 ; + } + +# EC-Earth product 61 +'126061' = { + table2Version = 126 ; + indicatorOfParameter = 61 ; + } + +# EC-Earth product 62 +'126062' = { + table2Version = 126 ; + indicatorOfParameter = 62 ; + } + +# EC-Earth product 63 +'126063' = { + table2Version = 126 ; + indicatorOfParameter = 63 ; + } + +# EC-Earth product 64 +'126064' = { + table2Version = 126 ; + indicatorOfParameter = 64 ; + } + +# EC-Earth product 65 +'126065' = { + table2Version = 126 ; + indicatorOfParameter = 65 ; + } + +# EC-Earth product 66 +'126066' = { + table2Version = 126 ; + indicatorOfParameter = 66 ; + } + +# EC-Earth product 67 +'126067' = { + table2Version = 126 ; + indicatorOfParameter = 67 ; + } + +# EC-Earth product 68 +'126068' = { + table2Version = 126 ; + indicatorOfParameter = 68 ; + } + +# EC-Earth product 69 +'126069' = { + table2Version = 126 ; + indicatorOfParameter = 69 ; + } + +# EC-Earth product 70 +'126070' = { + table2Version = 126 ; + indicatorOfParameter = 70 ; + } + +# EC-Earth product 71 +'126071' = { + table2Version = 126 ; + indicatorOfParameter = 71 ; + } + +# EC-Earth product 72 +'126072' = { + table2Version = 126 ; + indicatorOfParameter = 72 ; + } + +# EC-Earth product 73 +'126073' = { + table2Version = 126 ; + indicatorOfParameter = 73 ; + } + +# EC-Earth product 74 +'126074' = { + table2Version = 126 ; + indicatorOfParameter = 74 ; + } + +# EC-Earth product 75 +'126075' = { + table2Version = 126 ; + indicatorOfParameter = 75 ; + } + +# EC-Earth product 76 +'126076' = { + table2Version = 126 ; + indicatorOfParameter = 76 ; + } + +# EC-Earth product 77 +'126077' = { + table2Version = 126 ; + indicatorOfParameter = 77 ; + } + +# EC-Earth product 78 +'126078' = { + table2Version = 126 ; + indicatorOfParameter = 78 ; + } + +# EC-Earth product 79 +'126079' = { + table2Version = 126 ; + indicatorOfParameter = 79 ; + } + +# EC-Earth product 80 +'126080' = { + table2Version = 126 ; + indicatorOfParameter = 80 ; + } + +# EC-Earth product 81 +'126081' = { + table2Version = 126 ; + indicatorOfParameter = 81 ; + } + +# EC-Earth product 82 +'126082' = { + table2Version = 126 ; + indicatorOfParameter = 82 ; + } + +# EC-Earth product 83 +'126083' = { + table2Version = 126 ; + indicatorOfParameter = 83 ; + } + +# EC-Earth product 84 +'126084' = { + table2Version = 126 ; + indicatorOfParameter = 84 ; + } + +# EC-Earth product 85 +'126085' = { + table2Version = 126 ; + indicatorOfParameter = 85 ; + } + +# EC-Earth product 86 +'126086' = { + table2Version = 126 ; + indicatorOfParameter = 86 ; + } + +# EC-Earth product 87 +'126087' = { + table2Version = 126 ; + indicatorOfParameter = 87 ; + } + +# EC-Earth product 88 +'126088' = { + table2Version = 126 ; + indicatorOfParameter = 88 ; + } + +# EC-Earth product 89 +'126089' = { + table2Version = 126 ; + indicatorOfParameter = 89 ; + } + +# EC-Earth product 90 +'126090' = { + table2Version = 126 ; + indicatorOfParameter = 90 ; + } + +# EC-Earth product 91 +'126091' = { + table2Version = 126 ; + indicatorOfParameter = 91 ; + } + +# EC-Earth product 92 +'126092' = { + table2Version = 126 ; + indicatorOfParameter = 92 ; + } + +# EC-Earth product 93 +'126093' = { + table2Version = 126 ; + indicatorOfParameter = 93 ; + } + +# EC-Earth product 94 +'126094' = { + table2Version = 126 ; + indicatorOfParameter = 94 ; + } + +# EC-Earth product 95 +'126095' = { + table2Version = 126 ; + indicatorOfParameter = 95 ; + } + +# EC-Earth product 96 +'126096' = { + table2Version = 126 ; + indicatorOfParameter = 96 ; + } + +# EC-Earth product 97 +'126097' = { + table2Version = 126 ; + indicatorOfParameter = 97 ; + } + +# EC-Earth product 98 +'126098' = { + table2Version = 126 ; + indicatorOfParameter = 98 ; + } + +# EC-Earth product 99 +'126099' = { + table2Version = 126 ; + indicatorOfParameter = 99 ; + } + +# EC-Earth product 100 +'126100' = { + table2Version = 126 ; + indicatorOfParameter = 100 ; + } + +# EC-Earth product 101 +'126101' = { + table2Version = 126 ; + indicatorOfParameter = 101 ; + } + +# EC-Earth product 102 +'126102' = { + table2Version = 126 ; + indicatorOfParameter = 102 ; + } + +# EC-Earth product 103 +'126103' = { + table2Version = 126 ; + indicatorOfParameter = 103 ; + } + +# EC-Earth product 104 +'126104' = { + table2Version = 126 ; + indicatorOfParameter = 104 ; + } + +# EC-Earth product 105 +'126105' = { + table2Version = 126 ; + indicatorOfParameter = 105 ; + } + +# EC-Earth product 106 +'126106' = { + table2Version = 126 ; + indicatorOfParameter = 106 ; + } + +# EC-Earth product 107 +'126107' = { + table2Version = 126 ; + indicatorOfParameter = 107 ; + } + +# EC-Earth product 108 +'126108' = { + table2Version = 126 ; + indicatorOfParameter = 108 ; + } + +# EC-Earth product 109 +'126109' = { + table2Version = 126 ; + indicatorOfParameter = 109 ; + } + +# EC-Earth product 110 +'126110' = { + table2Version = 126 ; + indicatorOfParameter = 110 ; + } + +# EC-Earth product 111 +'126111' = { + table2Version = 126 ; + indicatorOfParameter = 111 ; + } + +# EC-Earth product 112 +'126112' = { + table2Version = 126 ; + indicatorOfParameter = 112 ; + } + +# EC-Earth product 113 +'126113' = { + table2Version = 126 ; + indicatorOfParameter = 113 ; + } + +# EC-Earth product 114 +'126114' = { + table2Version = 126 ; + indicatorOfParameter = 114 ; + } + +# EC-Earth product 115 +'126115' = { + table2Version = 126 ; + indicatorOfParameter = 115 ; + } + +# EC-Earth product 116 +'126116' = { + table2Version = 126 ; + indicatorOfParameter = 116 ; + } + +# EC-Earth product 117 +'126117' = { + table2Version = 126 ; + indicatorOfParameter = 117 ; + } + +# EC-Earth product 118 +'126118' = { + table2Version = 126 ; + indicatorOfParameter = 118 ; + } + +# EC-Earth product 119 +'126119' = { + table2Version = 126 ; + indicatorOfParameter = 119 ; + } + +# EC-Earth product 120 +'126120' = { + table2Version = 126 ; + indicatorOfParameter = 120 ; + } + +# EC-Earth product 121 +'126121' = { + table2Version = 126 ; + indicatorOfParameter = 121 ; + } + +# EC-Earth product 122 +'126122' = { + table2Version = 126 ; + indicatorOfParameter = 122 ; + } + +# EC-Earth product 123 +'126123' = { + table2Version = 126 ; + indicatorOfParameter = 123 ; + } + +# EC-Earth product 124 +'126124' = { + table2Version = 126 ; + indicatorOfParameter = 124 ; + } + +# EC-Earth product 125 +'126125' = { + table2Version = 126 ; + indicatorOfParameter = 125 ; + } + +# EC-Earth product 126 +'126126' = { + table2Version = 126 ; + indicatorOfParameter = 126 ; + } + +# EC-Earth product 127 +'126127' = { + table2Version = 126 ; + indicatorOfParameter = 127 ; + } + +# EC-Earth product 128 +'126128' = { + table2Version = 126 ; + indicatorOfParameter = 128 ; + } + +# EC-Earth product 129 +'126129' = { + table2Version = 126 ; + indicatorOfParameter = 129 ; + } + +# EC-Earth product 130 +'126130' = { + table2Version = 126 ; + indicatorOfParameter = 130 ; + } + +# EC-Earth product 131 +'126131' = { + table2Version = 126 ; + indicatorOfParameter = 131 ; + } + +# EC-Earth product 132 +'126132' = { + table2Version = 126 ; + indicatorOfParameter = 132 ; + } + +# EC-Earth product 133 +'126133' = { + table2Version = 126 ; + indicatorOfParameter = 133 ; + } + +# EC-Earth product 134 +'126134' = { + table2Version = 126 ; + indicatorOfParameter = 134 ; + } + +# EC-Earth product 135 +'126135' = { + table2Version = 126 ; + indicatorOfParameter = 135 ; + } + +# EC-Earth product 136 +'126136' = { + table2Version = 126 ; + indicatorOfParameter = 136 ; + } + +# EC-Earth product 137 +'126137' = { + table2Version = 126 ; + indicatorOfParameter = 137 ; + } + +# EC-Earth product 138 +'126138' = { + table2Version = 126 ; + indicatorOfParameter = 138 ; + } + +# EC-Earth product 139 +'126139' = { + table2Version = 126 ; + indicatorOfParameter = 139 ; + } + +# EC-Earth product 140 +'126140' = { + table2Version = 126 ; + indicatorOfParameter = 140 ; + } + +# EC-Earth product 141 +'126141' = { + table2Version = 126 ; + indicatorOfParameter = 141 ; + } + +# EC-Earth product 142 +'126142' = { + table2Version = 126 ; + indicatorOfParameter = 142 ; + } + +# EC-Earth product 143 +'126143' = { + table2Version = 126 ; + indicatorOfParameter = 143 ; + } + +# EC-Earth product 144 +'126144' = { + table2Version = 126 ; + indicatorOfParameter = 144 ; + } + +# EC-Earth product 145 +'126145' = { + table2Version = 126 ; + indicatorOfParameter = 145 ; + } + +# EC-Earth product 146 +'126146' = { + table2Version = 126 ; + indicatorOfParameter = 146 ; + } + +# EC-Earth product 147 +'126147' = { + table2Version = 126 ; + indicatorOfParameter = 147 ; + } + +# EC-Earth product 148 +'126148' = { + table2Version = 126 ; + indicatorOfParameter = 148 ; + } + +# EC-Earth product 149 +'126149' = { + table2Version = 126 ; + indicatorOfParameter = 149 ; + } + +# EC-Earth product 150 +'126150' = { + table2Version = 126 ; + indicatorOfParameter = 150 ; + } + +# EC-Earth product 151 +'126151' = { + table2Version = 126 ; + indicatorOfParameter = 151 ; + } + +# EC-Earth product 152 +'126152' = { + table2Version = 126 ; + indicatorOfParameter = 152 ; + } + +# EC-Earth product 153 +'126153' = { + table2Version = 126 ; + indicatorOfParameter = 153 ; + } + +# EC-Earth product 154 +'126154' = { + table2Version = 126 ; + indicatorOfParameter = 154 ; + } + +# EC-Earth product 155 +'126155' = { + table2Version = 126 ; + indicatorOfParameter = 155 ; + } + +# EC-Earth product 156 +'126156' = { + table2Version = 126 ; + indicatorOfParameter = 156 ; + } + +# EC-Earth product 157 +'126157' = { + table2Version = 126 ; + indicatorOfParameter = 157 ; + } + +# EC-Earth product 158 +'126158' = { + table2Version = 126 ; + indicatorOfParameter = 158 ; + } + +# EC-Earth product 159 +'126159' = { + table2Version = 126 ; + indicatorOfParameter = 159 ; + } + +# EC-Earth product 160 +'126160' = { + table2Version = 126 ; + indicatorOfParameter = 160 ; + } + +# EC-Earth product 161 +'126161' = { + table2Version = 126 ; + indicatorOfParameter = 161 ; + } + +# EC-Earth product 162 +'126162' = { + table2Version = 126 ; + indicatorOfParameter = 162 ; + } + +# EC-Earth product 163 +'126163' = { + table2Version = 126 ; + indicatorOfParameter = 163 ; + } + +# EC-Earth product 164 +'126164' = { + table2Version = 126 ; + indicatorOfParameter = 164 ; + } + +# EC-Earth product 165 +'126165' = { + table2Version = 126 ; + indicatorOfParameter = 165 ; + } + +# EC-Earth product 166 +'126166' = { + table2Version = 126 ; + indicatorOfParameter = 166 ; + } + +# EC-Earth product 167 +'126167' = { + table2Version = 126 ; + indicatorOfParameter = 167 ; + } + +# EC-Earth product 168 +'126168' = { + table2Version = 126 ; + indicatorOfParameter = 168 ; + } + +# EC-Earth product 169 +'126169' = { + table2Version = 126 ; + indicatorOfParameter = 169 ; + } + +# EC-Earth product 170 +'126170' = { + table2Version = 126 ; + indicatorOfParameter = 170 ; + } + +# EC-Earth product 171 +'126171' = { + table2Version = 126 ; + indicatorOfParameter = 171 ; + } + +# EC-Earth product 172 +'126172' = { + table2Version = 126 ; + indicatorOfParameter = 172 ; + } + +# EC-Earth product 173 +'126173' = { + table2Version = 126 ; + indicatorOfParameter = 173 ; + } + +# EC-Earth product 174 +'126174' = { + table2Version = 126 ; + indicatorOfParameter = 174 ; + } + +# EC-Earth product 175 +'126175' = { + table2Version = 126 ; + indicatorOfParameter = 175 ; + } + +# EC-Earth product 176 +'126176' = { + table2Version = 126 ; + indicatorOfParameter = 176 ; + } + +# EC-Earth product 177 +'126177' = { + table2Version = 126 ; + indicatorOfParameter = 177 ; + } + +# EC-Earth product 178 +'126178' = { + table2Version = 126 ; + indicatorOfParameter = 178 ; + } + +# EC-Earth product 179 +'126179' = { + table2Version = 126 ; + indicatorOfParameter = 179 ; + } + +# EC-Earth product 180 +'126180' = { + table2Version = 126 ; + indicatorOfParameter = 180 ; + } + +# EC-Earth product 181 +'126181' = { + table2Version = 126 ; + indicatorOfParameter = 181 ; + } + +# EC-Earth product 182 +'126182' = { + table2Version = 126 ; + indicatorOfParameter = 182 ; + } + +# EC-Earth product 183 +'126183' = { + table2Version = 126 ; + indicatorOfParameter = 183 ; + } + +# EC-Earth product 184 +'126184' = { + table2Version = 126 ; + indicatorOfParameter = 184 ; + } + +# EC-Earth product 185 +'126185' = { + table2Version = 126 ; + indicatorOfParameter = 185 ; + } + +# EC-Earth product 186 +'126186' = { + table2Version = 126 ; + indicatorOfParameter = 186 ; + } + +# EC-Earth product 187 +'126187' = { + table2Version = 126 ; + indicatorOfParameter = 187 ; + } + +# EC-Earth product 188 +'126188' = { + table2Version = 126 ; + indicatorOfParameter = 188 ; + } + +# EC-Earth product 189 +'126189' = { + table2Version = 126 ; + indicatorOfParameter = 189 ; + } + +# EC-Earth product 190 +'126190' = { + table2Version = 126 ; + indicatorOfParameter = 190 ; + } + +# EC-Earth product 191 +'126191' = { + table2Version = 126 ; + indicatorOfParameter = 191 ; + } + +# EC-Earth product 192 +'126192' = { + table2Version = 126 ; + indicatorOfParameter = 192 ; + } + +# EC-Earth product 193 +'126193' = { + table2Version = 126 ; + indicatorOfParameter = 193 ; + } + +# EC-Earth product 194 +'126194' = { + table2Version = 126 ; + indicatorOfParameter = 194 ; + } + +# EC-Earth product 195 +'126195' = { + table2Version = 126 ; + indicatorOfParameter = 195 ; + } + +# EC-Earth product 196 +'126196' = { + table2Version = 126 ; + indicatorOfParameter = 196 ; + } + +# EC-Earth product 197 +'126197' = { + table2Version = 126 ; + indicatorOfParameter = 197 ; + } + +# EC-Earth product 198 +'126198' = { + table2Version = 126 ; + indicatorOfParameter = 198 ; + } + +# EC-Earth product 199 +'126199' = { + table2Version = 126 ; + indicatorOfParameter = 199 ; + } + +# EC-Earth product 200 +'126200' = { + table2Version = 126 ; + indicatorOfParameter = 200 ; + } + +# EC-Earth product 201 +'126201' = { + table2Version = 126 ; + indicatorOfParameter = 201 ; + } + +# EC-Earth product 202 +'126202' = { + table2Version = 126 ; + indicatorOfParameter = 202 ; + } + +# EC-Earth product 203 +'126203' = { + table2Version = 126 ; + indicatorOfParameter = 203 ; + } + +# EC-Earth product 204 +'126204' = { + table2Version = 126 ; + indicatorOfParameter = 204 ; + } + +# EC-Earth product 205 +'126205' = { + table2Version = 126 ; + indicatorOfParameter = 205 ; + } + +# EC-Earth product 206 +'126206' = { + table2Version = 126 ; + indicatorOfParameter = 206 ; + } + +# EC-Earth product 207 +'126207' = { + table2Version = 126 ; + indicatorOfParameter = 207 ; + } + +# EC-Earth product 208 +'126208' = { + table2Version = 126 ; + indicatorOfParameter = 208 ; + } + +# EC-Earth product 209 +'126209' = { + table2Version = 126 ; + indicatorOfParameter = 209 ; + } + +# EC-Earth product 210 +'126210' = { + table2Version = 126 ; + indicatorOfParameter = 210 ; + } + +# EC-Earth product 211 +'126211' = { + table2Version = 126 ; + indicatorOfParameter = 211 ; + } + +# EC-Earth product 212 +'126212' = { + table2Version = 126 ; + indicatorOfParameter = 212 ; + } + +# EC-Earth product 213 +'126213' = { + table2Version = 126 ; + indicatorOfParameter = 213 ; + } + +# EC-Earth product 214 +'126214' = { + table2Version = 126 ; + indicatorOfParameter = 214 ; + } + +# EC-Earth product 215 +'126215' = { + table2Version = 126 ; + indicatorOfParameter = 215 ; + } + +# EC-Earth product 216 +'126216' = { + table2Version = 126 ; + indicatorOfParameter = 216 ; + } + +# EC-Earth product 217 +'126217' = { + table2Version = 126 ; + indicatorOfParameter = 217 ; + } + +# EC-Earth product 218 +'126218' = { + table2Version = 126 ; + indicatorOfParameter = 218 ; + } + +# EC-Earth product 219 +'126219' = { + table2Version = 126 ; + indicatorOfParameter = 219 ; + } + +# EC-Earth product 220 +'126220' = { + table2Version = 126 ; + indicatorOfParameter = 220 ; + } + +# EC-Earth product 221 +'126221' = { + table2Version = 126 ; + indicatorOfParameter = 221 ; + } + +# EC-Earth product 222 +'126222' = { + table2Version = 126 ; + indicatorOfParameter = 222 ; + } + +# EC-Earth product 223 +'126223' = { + table2Version = 126 ; + indicatorOfParameter = 223 ; + } + +# EC-Earth product 224 +'126224' = { + table2Version = 126 ; + indicatorOfParameter = 224 ; + } + +# EC-Earth product 225 +'126225' = { + table2Version = 126 ; + indicatorOfParameter = 225 ; + } + +# EC-Earth product 226 +'126226' = { + table2Version = 126 ; + indicatorOfParameter = 226 ; + } + +# EC-Earth product 227 +'126227' = { + table2Version = 126 ; + indicatorOfParameter = 227 ; + } + +# EC-Earth product 228 +'126228' = { + table2Version = 126 ; + indicatorOfParameter = 228 ; + } + +# EC-Earth product 229 +'126229' = { + table2Version = 126 ; + indicatorOfParameter = 229 ; + } + +# EC-Earth product 230 +'126230' = { + table2Version = 126 ; + indicatorOfParameter = 230 ; + } + +# EC-Earth product 231 +'126231' = { + table2Version = 126 ; + indicatorOfParameter = 231 ; + } + +# EC-Earth product 232 +'126232' = { + table2Version = 126 ; + indicatorOfParameter = 232 ; + } + +# EC-Earth product 233 +'126233' = { + table2Version = 126 ; + indicatorOfParameter = 233 ; + } + +# EC-Earth product 234 +'126234' = { + table2Version = 126 ; + indicatorOfParameter = 234 ; + } + +# EC-Earth product 235 +'126235' = { + table2Version = 126 ; + indicatorOfParameter = 235 ; + } + +# EC-Earth product 236 +'126236' = { + table2Version = 126 ; + indicatorOfParameter = 236 ; + } + +# EC-Earth product 237 +'126237' = { + table2Version = 126 ; + indicatorOfParameter = 237 ; + } + +# EC-Earth product 238 +'126238' = { + table2Version = 126 ; + indicatorOfParameter = 238 ; + } + +# EC-Earth product 239 +'126239' = { + table2Version = 126 ; + indicatorOfParameter = 239 ; + } + +# EC-Earth product 240 +'126240' = { + table2Version = 126 ; + indicatorOfParameter = 240 ; + } + +# EC-Earth product 241 +'126241' = { + table2Version = 126 ; + indicatorOfParameter = 241 ; + } + +# EC-Earth product 242 +'126242' = { + table2Version = 126 ; + indicatorOfParameter = 242 ; + } + +# EC-Earth product 243 +'126243' = { + table2Version = 126 ; + indicatorOfParameter = 243 ; + } + +# EC-Earth product 244 +'126244' = { + table2Version = 126 ; + indicatorOfParameter = 244 ; + } + +# EC-Earth product 245 +'126245' = { + table2Version = 126 ; + indicatorOfParameter = 245 ; + } + +# EC-Earth product 246 +'126246' = { + table2Version = 126 ; + indicatorOfParameter = 246 ; + } + +# EC-Earth product 247 +'126247' = { + table2Version = 126 ; + indicatorOfParameter = 247 ; + } + +# EC-Earth product 248 +'126248' = { + table2Version = 126 ; + indicatorOfParameter = 248 ; + } + +# EC-Earth product 249 +'126249' = { + table2Version = 126 ; + indicatorOfParameter = 249 ; + } + +# EC-Earth product 250 +'126250' = { + table2Version = 126 ; + indicatorOfParameter = 250 ; + } + +# EC-Earth product 251 +'126251' = { + table2Version = 126 ; + indicatorOfParameter = 251 ; + } + +# EC-Earth product 252 +'126252' = { + table2Version = 126 ; + indicatorOfParameter = 252 ; + } + +# EC-Earth product 253 +'126253' = { + table2Version = 126 ; + indicatorOfParameter = 253 ; + } + +# EC-Earth product 254 +'126254' = { + table2Version = 126 ; + indicatorOfParameter = 254 ; + } + +# EC-Earth product 255 +'126255' = { + table2Version = 126 ; + indicatorOfParameter = 255 ; + } diff --git a/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/shortName.def b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/shortName.def new file mode 100644 index 0000000000000000000000000000000000000000..1bd44a4f39cf3ff23b80b9fe713bc25f09cbe850 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/shortName.def @@ -0,0 +1,18181 @@ +# Automatically generated by ./create_def.pl from database param@wrep-db-misc-prod, do not edit +#Total precipitation of at least 1 mm +'tpg1' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'tpg5' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'tpg10' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'tpg20' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'tpg40' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'tpg60' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'tpg80' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'tpg150' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'tpg200' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'tpg300' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'strf' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'vp' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'pt' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'eqpt' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'sept' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'ssfr' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'scfr' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'sro' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'ssro' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'ws' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'udvw' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'vdvw' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'urtw' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'vrtw' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'aluvp' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'aluvd' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'alnip' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'alnid' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'uvcs' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'parcs' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'uctp' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'ucdv' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'cl' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'cvl' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'cvh' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'tvl' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'tvh' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover +'ci' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'asn' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'rsn' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'sst' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'istl1' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'istl2' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'istl3' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'istl4' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'swvl1' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'swvl2' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'swvl3' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'swvl4' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'slt' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'es' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'smlt' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'sdur' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'dsrp' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress +'magss' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'10fg' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'lspf' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'mx2t24' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'mn2t24' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'mont' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'pres' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'mean2t24' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'mn2d24' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'uvb' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'par' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'cape' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'pv' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'obct' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'stsktd' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'ftsktd' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'sktd' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'lai_lv' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'lai_hv' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'msr_lv' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'msr_hv' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'bc_lv' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'bc_hv' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'issrd' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'istrd' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'sdfor' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'crwc' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'cswc' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'etadot' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column liquid water +'tclw' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'tciw' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'10fg6' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'emis' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'vite' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'at' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'at' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'bv' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'bv' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'z' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'t' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'u' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'v' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'q' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'sp' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'sp' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'w' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'w' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'tcw' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'tcw' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'swl1' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'swl1' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'sd' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'sd' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'sd' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cp' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'cp' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'cp' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'sf' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'sf' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'chnk' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'snr' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'tnr' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'lnsp' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'lnsp' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'swhr' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'lwhr' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'d' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'gh' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'r' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'r' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'r' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'tsp' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'tsp' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'blh' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'sdor' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'anor' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'slor' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'tcc' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'10u' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10u' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10u' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10u' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'10v' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10v' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10v' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10v' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'2t' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2t' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2t' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2t' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'ssrd' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'ssrd' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'stl2' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'stl2' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'swl2' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'lsm' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'sr' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'sr' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'al' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'al' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'al' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'strd' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'strd' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'e' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'stl3' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'stl3' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'swl3' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'swl3' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'lcc' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'lcc' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'hcc' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'hcc' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'sund' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'btmp' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'lgws' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'lgws' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'mgws' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'mgws' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'gwd' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'gwd' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'src' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'veg' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'vso' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'vso' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'o3' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'paw' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'paw' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'ro' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'ro' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'tco3' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'10si' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'tsrc' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'ttrc' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'ssrc' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'strc' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'tisr' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'vimd' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'dhlc' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'ewgd' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'nsgd' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'ctzw' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'ctzw' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'ctmw' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'ctmw' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'vdh' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'tp' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'ishf' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'ie' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'ie' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'asq' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'asq' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'skt' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'skt' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'stl4' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'stl4' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'swl4' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'swl4' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'tsn' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'tsn' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'csf' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'lsf' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'acf' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'alw' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'fal' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'fsr' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'fsr' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'clwc' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'ciwc' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Cloud cover +'cc' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'aiw' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'ice' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'atte' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'athe' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'atze' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'atmw' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'strfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'vpotdiff' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'ptdiff' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'eqptdiff' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'septdiff' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'udvwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'vdvwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'urtwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'vrtwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'uctpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'uclndiff' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'ucdvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'cldiff' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'cvldiff' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'cvhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'tvldiff' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'tvhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'sicdiff' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'asndiff' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'rsndiff' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'sstdiff' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'istl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'istl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'istl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'istl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'swvl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'swvl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'swvl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'swvl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'sltdiff' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'esdiff' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'smltdiff' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'sdurdiff' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'dsrpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress difference +'magssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'10fgdiff' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'lspfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'mx2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'mn2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'montdiff' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'presdiff' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'mean2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'mn2d24diff' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'uvbdiff' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'pardiff' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'capediff' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'pvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'tpodiff' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'obctdiff' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'~' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'~' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'mx2t6diff' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'mn2t6diff' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'10fg6diff' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'~' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'atdiff' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'bvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'zdiff' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'udiff' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'vdiff' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'qdiff' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'spdiff' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'wdiff' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'tcwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'tcwvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'vodiff' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'stl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'swl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'sddiff' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'lspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'cpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'sfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'blddiff' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'sshfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'slhfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'chnkdiff' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'snrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'tnrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'msldiff' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'lnspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'swhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'lwhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'ddiff' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'ghdiff' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'rdiff' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'tspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'blhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'sdordiff' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'isordiff' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'anordiff' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'slordiff' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'tccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'10udiff' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'10vdiff' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'ssrddiff' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'stl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'swl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'lsmdiff' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'srdiff' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'aldiff' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'strddiff' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'ssrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'strdiff' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'tsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'ttrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'ewssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'nsssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'ediff' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'stl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'swl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'cccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'lccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'mccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'hccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'sunddiff' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'ewovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'nsovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'nwovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'neovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'btmpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'lgwsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'mgwsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'gwddiff' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'srcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'vegdiff' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'vsodiff' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'mx2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'mn2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'o3diff' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'pawdiff' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'rodiff' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'tco3diff' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'10sidiff' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'tsrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'ttrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'ssrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'strcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'tisrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'dhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'dhvddiff' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'dhccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'dhlcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'vdzwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'vdmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'ewgddiff' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'nsgddiff' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'ctzwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'ctmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'vdhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'htccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'htlcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'crnhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'tpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'iewsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'inssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'ishfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'iediff' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'asqdiff' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'lsrhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'sktdiff' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'stl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'swl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'tsndiff' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'csfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'lsfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'acfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'alwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'faldiff' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'fsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'flsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'clwcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'ciwcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'ccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'aiwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'icediff' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'attediff' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'athediff' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'atzediff' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'atmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'pts' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'ph' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'ptd' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'cpts' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'cph' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'cptd' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'pats' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'pah' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'patd' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Maximum of significant wave height index +'maxswhi' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'wx1' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'wx2' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'wx3' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'wx4' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'wx5' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Significant wave height of first swell partition +'swh1' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'mwd1' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'mwp1' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'swh2' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'mwd2' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'mwp2' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'swh3' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'mwd3' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'mwp3' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'wss' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'wstar' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'rhoao' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'mswsi' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'phiaw' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'phioc' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'tla' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'tauoc' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'~' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Vertical integral of divergence of cloud liquid water flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'~' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'utendd' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'vtendd' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'ttendd' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'qtendd' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'ttendr' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'utendts' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'vtendts' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'ttendts' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'qtendt' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'utends' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'vtends' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'ttends' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'utendcds' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'vtendcds' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'ttendcds' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'qtendcds' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'lpc' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'ipc' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'ttendcs' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'qtendcs' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'qltendcs' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'qitendcs' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'lpcs' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'ipcs' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'utendcs' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'vtendcs' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'ttendsc' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'qtendsc' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#100 metre U wind component anomaly +'100ua' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'100va' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'mx2t6a' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'mn2t6a' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Clear-sky (II) down surface sw flux +'sswcsdown' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'sswcsup' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'vis15' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'mn15t' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'mx15t' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'rhum' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#Short wave radiation flux at surface +'swrsurf' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'swrtop' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'tcwvap' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'lsrrate' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'crfrate' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'vlca' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'csfrate' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'lsfrate' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'tccro' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'tcclwr' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'aermr13' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'aermr14' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'aermr15' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'emdms' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'ocnuc' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'monot' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'soapr' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Particulate matter d < 1 um +'pm1' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'pm2p5' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'pm10' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'vafire' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'mami' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'apt' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'aluvpi' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'aluvpv' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'aluvpg' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'alnipi' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'alnipv' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'alnipg' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'aluvdi' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'aluvdv' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'aluvdg' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'alnidi' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'alnidv' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'alnidg' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'aod340' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'aod355' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'aod380' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'aod400' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'aod440' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'aod500' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'aod532' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'aod645' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'aod800' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'aod858' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'aod1020' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'aod1064' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'aod1640' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'aod2130' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'c7h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'c6h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'c8h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'c4h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'c5h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'c6h12fire' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'c8h16fire' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'c4h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'c5h12fire' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'c6h14fire' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'c7h16fire' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'apb' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'vsuaod550' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'vashaod550' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'taedec550' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'taedab550' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Aerosol type 13 mass mixing ratio +'aermr13diff' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'aermr14diff' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'aermr15diff' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03diff' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01diff' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02diff' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'emdmsdiff' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03diff' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04diff' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6firediff' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'alediff' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'aptdiff' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'sppt1' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'sppt2' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'sppt3' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'sppt4' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'sppt5' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +# Cosine of solar zenith angle +'uvcossza' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +# UV biologically effective dose +'uvbed' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +# UV biologically effective dose clear-sky +'uvbedcs' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +'uvsflxt280285' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +'uvsflxt285290' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +'uvsflxt290295' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +'uvsflxt295300' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +'uvsflxt300305' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +'uvsflxt305310' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +'uvsflxt310315' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +'uvsflxt315320' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +'uvsflxt320325' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +'uvsflxt325330' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +'uvsflxt330335' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +'uvsflxt335340' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +'uvsflxt340345' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +'uvsflxt345350' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +'uvsflxt350355' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +'uvsflxt355360' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +'uvsflxt360365' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +'uvsflxt365370' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +'uvsflxt370375' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +'uvsflxt375380' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +'uvsflxt380385' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +'uvsflxt385390' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +'uvsflxt390395' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +'uvsflxt395400' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +'uvsflxcs280285' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +'uvsflxcs285290' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +'uvsflxcs290295' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +'uvsflxcs295300' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +'uvsflxcs300305' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +'uvsflxcs305310' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +'uvsflxcs310315' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +'uvsflxcs315320' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +'uvsflxcs320325' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +'uvsflxcs325330' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +'uvsflxcs330335' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +'uvsflxcs335340' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +'uvsflxcs340345' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +'uvsflxcs345350' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +'uvsflxcs350355' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +'uvsflxcs355360' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +'uvsflxcs360365' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +'uvsflxcs365370' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +'uvsflxcs370375' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +'uvsflxcs375380' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +'uvsflxcs380385' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +'uvsflxcs385390' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +'uvsflxcs390395' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +'uvsflxcs395400' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +# Profile of optical thickness at 340 nm +'aot340' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +'aersrcsss' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +'aersrcssm' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +'aersrcssl' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'aerddpsss' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +'aerddpssm' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +'aerddpssl' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'aersdmsss' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +'aersdmssm' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +'aersdmssl' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'aerwdlssss' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'aerwdlsssm' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'aerwdlsssl' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'aerwdccsss' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'aerwdccssm' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'aerwdccssl' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'aerngtsss' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +'aerngtssm' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +'aerngtssl' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'aermsssss' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'aermssssm' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +'aermssssl' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +'aerodsss' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +'aerodssm' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +'aerodssl' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +'aersrcdus' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +'aersrcdum' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +'aersrcdul' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +'aerddpdus' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +'aerddpdum' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +'aerddpdul' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +'aersdmdus' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +'aersdmdum' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +'aersdmdul' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'aerwdlsdus' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'aerwdlsdum' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'aerwdlsdul' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'aerwdccdus' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'aerwdccdum' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'aerwdccdul' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +'aerngtdus' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +'aerngtdum' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +'aerngtdul' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'aermssdus' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +'aermssdum' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +'aermssdul' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +'aeroddus' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +'aeroddum' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +'aeroddul' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +'aersrcomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +'aersrcomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +'aerddpomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +'aerddpomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +'aersdmomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +'aersdmomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'aerwdlsomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'aerwdlsomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'aerwdccomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'aerwdccomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +'aerngtomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +'aerngtomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +'aermssomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +'aermssomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +'aerodomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +'aerodomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +'aersrcbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +'aersrcbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +'aerddpbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +'aerddpbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +'aersdmbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +'aersdmbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'aerwdlsbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'aerwdlsbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'aerwdccbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'aerwdccbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +'aerngtbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +'aerngtbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +'aermssbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +'aermssbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +'aerodbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +'aerodbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +# Source/gain of sulphate aerosol +'aersrcsu' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +# Dry deposition of sulphate aerosol +'aerddpsu' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +# Sedimentation of sulphate aerosol +'aersdmsu' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +'aerwdlssu' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +'aerwdccsu' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +# Negative fixer of sulphate aerosol +'aerngtsu' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +# Vertically integrated mass of sulphate aerosol +'aermsssu' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +# Sulphate aerosol optical depth +'aerodsu' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'accaod550' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'aluvpsn' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'aerdep10si' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'aerdep10fg' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Profile of total aerosol optical depth at 532 nm +'paod532' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Profile of natural (sea-salt and dust) aerosol optical depth at 532 nm +'pnaod532' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Profile of antropogenic (black carbon, organic matter, sulphate) aerosol optical depth at 532 nm +'paaod532' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'aodabs340' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'aodabs355' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'aodabs380' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'aodabs400' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'aodabs440' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'aodabs469' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'aodabs500' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'aodabs532' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'aodabs550' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'aodabs645' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'aodabs670' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'aodabs800' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'aodabs858' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'aodabs865' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'aodabs1020' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'aodabs1064' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'aodabs1240' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'aodabs1640' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'aodfm340' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'aodfm355' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'aodfm380' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'aodfm400' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'aodfm440' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'aodfm469' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'aodfm500' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'aodfm532' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'aodfm550' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'aodfm645' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'aodfm670' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'aodfm800' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'aodfm858' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'aodfm865' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'aodfm1020' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'aodfm1064' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'aodfm1240' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'aodfm1640' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'ssa340' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'ssa355' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'ssa380' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'ssa400' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'ssa440' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'ssa469' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'ssa500' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'ssa532' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'ssa550' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'ssa645' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'ssa670' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'ssa800' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'ssa858' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'ssa865' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'ssa1020' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'ssa1064' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'ssa1240' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'ssa1640' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Assimetry factor at 340 nm +'assimetry340' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Assimetry factor at 355 nm +'assimetry355' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Assimetry factor at 380 nm +'assimetry380' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Assimetry factor at 400 nm +'assimetry400' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Assimetry factor at 440 nm +'assimetry440' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Assimetry factor at 469 nm +'assimetry469' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Assimetry factor at 500 nm +'assimetry500' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Assimetry factor at 532 nm +'assimetry532' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Assimetry factor at 550 nm +'assimetry550' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Assimetry factor at 645 nm +'assimetry645' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Assimetry factor at 670 nm +'assimetry670' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Assimetry factor at 800 nm +'assimetry800' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Assimetry factor at 858 nm +'assimetry858' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Assimetry factor at 865 nm +'assimetry865' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Assimetry factor at 1020 nm +'assimetry1020' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Assimetry factor at 1064 nm +'assimetry1064' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Assimetry factor at 1240 nm +'assimetry1240' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Assimetry factor at 1640 nm +'assimetry1640' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'aersrcso2' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'aerddpso2' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'aersdmso2' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'aerwdlsso2' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'aerwdccso2' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'aerngtso2' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'aermssso2' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'aerodso2' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'aodabs2130' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'aodfm2130' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'ssa2130' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Assimetry factor at 2130 nm +'assimetry2130' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'h2o2' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane +'ch4' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'hno3' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'ch3ooh' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'par' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'c2h4' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'ole' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'ald2' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'pan' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'rooh' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'onit' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'c5h8' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'dms' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'nh3' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'so4' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'nh4' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'msa' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'ch3cocho' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'o3s' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'pb' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'no' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'ho2' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'ch3o2' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'oh' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'no3' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'n2o5' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'ho2no2' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'c2o3' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'ror' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'rxpar' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'xo2' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'xo2n' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'nh2' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'psc' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'ch3oh' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'hcooh' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'mcooh' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'c2h6' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'c2h5oh' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'c3h8' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'c3h6' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'c10h16' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'ispd' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'no3_a' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'ch3coch3' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'aco2' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'ic3h7o2' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'hypropo2' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'noxa' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'tc_h2o2' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'tc_ch4' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'tc_hno3' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'tc_ch3ooh' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'tc_par' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'tc_c2h4' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'tc_ole' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'tc_ald2' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'tc_pan' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'tc_rooh' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'tc_onit' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'tc_c5h8' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'tc_dms' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'tc_nh3' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'tc_so4' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'tc_nh4' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'tc_msa' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'tc_ch3cocho' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'tc_o3s' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'tc_pb' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'tc_no' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'tc_ho2' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'tc_ch3o2' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'tc_oh' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'tc_no3' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'tc_n2o5' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'tc_ho2no2' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'tc_c2o3' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'tc_ror' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'tc_rxpar' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'tc_xo2' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'tc_xo2n' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'tc_nh2' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'tc_psc' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'tc_ch3oh' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'tc_hcooh' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'tc_mcooh' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'tc_c2h6' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'tc_c2h5oh' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'tc_c3h8' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'tc_c3h6' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'tc_c10h16' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'tc_ispd' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'tc_no3_a' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'tc_ch3coch3' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'tc_aco2' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'tc_ic3h7o2' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'tc_hypropo2' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'tc_noxa' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'e_go3' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'e_nox' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'e_h2o2' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'e_ch4' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'e_co' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'e_hno3' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'e_ch3ooh' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'e_hcho' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'e_par' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'e_c2h4' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'e_ole' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'e_ald2' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'e_pan' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'e_rooh' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'e_onit' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'e_c5h8' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'e_so2' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'e_dms' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'e_nh3' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'e_so4' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'e_nh4' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'e_msa' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'e_ch3cocho' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'e_o3s' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'e_ra' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'e_pb' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'e_no' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'e_ho2' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'e_ch3o2' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'e_oh' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'e_no2' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'e_no3' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'e_n2o5' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'e_ho2no2' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'e_c2o3' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'e_ror' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'e_rxpar' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'e_xo2' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'e_xo2n' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'e_nh2' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'e_psc' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'e_ch3oh' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'e_hcooh' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'e_mcooh' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'e_c2h6' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'e_c2h5oh' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'e_c3h8' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'e_c3h6' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'e_c10h16' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'e_ispd' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'e_no3_a' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'e_ch3coch3' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'e_aco2' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'e_ic3h7o2' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'e_hypropo2' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'e_noxa' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'dv_go3' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'dv_nox' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'dv_h2o2' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'dv_ch4' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'dv_co' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'dv_hno3' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'dv_ch3ooh' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'dv_hcho' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'dv_par' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'dv_c2h4' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'dv_ole' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'dv_ald2' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'dv_pan' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'dv_rooh' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'dv_onit' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'dv_c5h8' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'dv_so2' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'dv_dms' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'dv_nh3' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'dv_so4' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'dv_nh4' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'dv_msa' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'dv_ch3cocho' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'dv_o3s' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'dv_ra' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'dv_pb' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'dv_no' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'dv_ho2' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'dv_ch3o2' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'dv_oh' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'dv_no2' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'dv_no3' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'dv_n2o5' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'dv_ho2no2' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'dv_c2o3' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'dv_ror' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'dv_rxpar' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'dv_xo2' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'dv_xo2n' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'dv_nh2' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'dv_psc' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'dv_ch3oh' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'dv_hcooh' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'dv_mcooh' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'dv_c2h6' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'dv_c2h5oh' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'dv_c3h8' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'dv_c3h6' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'dv_c10h16' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'dv_ispd' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'dv_no3_a' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'dv_ch3coch3' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'dv_aco2' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'dv_ic3h7o2' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'dv_hypropo2' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'dv_noxa' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#Total sky direct solar radiation at surface +'fdir' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'cdir' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'cbh' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#Zero degree level +'deg0l' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'hvis' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'mx2t3' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'mn2t3' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'10fg3' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'i10fg' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#Soil wetness index in layer 1 +'swi1' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'swi2' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'swi3' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'swi4' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'aco2nee' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'aco2gpp' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'aco2rec' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'fco2nee' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'fco2gpp' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'fco2rec' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'tcslw' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'tcrw' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'tcsw' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'ccf' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'stf' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'swv' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'ist' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'ssrdc' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'strdc' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Instantaneous large-scale surface precipitation fraction +'ilspf' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'crr' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'lsrr' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'csfr' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'lssfr' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'mxtpr3' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'mntpr3' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'mxtpr6' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'mntpr6' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'mxtpr' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'mntpr' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'smos_tb_cdfa' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'smos_tb_cdfb' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#Surface solar radiation diffuse total sky +'fdif' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'cdif' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'aldr' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'aldf' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'100si' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'irrfr' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'pev' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'irr' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'srovar' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'ssrovar' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'parcsvar' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'fdirvar' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'cdirvar' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Large-scale precipitation fraction (variable resolution) +'lspfvar' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'aco2neevar' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'aco2gppvar' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'aco2recvar' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'ssrdcvar' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'strdcvar' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'alvar' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'vimdvar' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Total precipitation (variable resolution) +'tpvar' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'csfvar' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'lsfvar' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'pevvar' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#K index +'kx' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'totalx' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'strfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'vpotgrd' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'ptgrd' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'eqptgrd' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'septgrd' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'udvwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'vdvwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'urtwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'vrtwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'uctpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'uclngrd' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'ucdvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'clgrd' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'cvlgrd' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'cvhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'tvlgrd' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'tvhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'sicgrd' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'asngrd' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'rsngrd' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'sstkgrd' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'istl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'istl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'istl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'istl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'swvl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'swvl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'swvl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'swvl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'sltgrd' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'esgrd' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'smltgrd' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'sdurgrd' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'dsrpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress gradient +'magssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'10fggrd' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'lspfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'mx2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'mn2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'montgrd' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'presgrd' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'mean2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'mn2d24grd' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'uvbgrd' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'pargrd' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'capegrd' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'pvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'tpogrd' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'obctgrd' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'~' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'~' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'~' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'~' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'~' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'mx2t6grd' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'mn2t6grd' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'10fg6grd' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'~' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'atgrd' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'bvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'zgrd' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'ugrd' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'vgrd' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'qgrd' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'spgrd' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'wgrd' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'tcwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'tcwvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'vogrd' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'stl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'swl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'sdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'lspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'cpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'sfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'bldgrd' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'sshfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'slhfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'chnkgrd' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'snrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'tnrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'mslgrd' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'lnspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'swhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'lwhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'dgrd' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'ghgrd' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'rgrd' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'tspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'blhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'sdorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'isorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'anorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'slorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'tccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'10ugrd' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'10vgrd' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'2dgrd' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'ssrdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'stl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'swl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'lsmgrd' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'srgrd' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'algrd' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'strdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'ssrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'strgrd' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'tsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'ttrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'ewssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'nsssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'egrd' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'stl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'swl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'cccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'lccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'mccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'hccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'sundgrd' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'ewovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'nsovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'nwovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'neovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'btmpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'lgwsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'mgwsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'gwdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'srcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'veggrd' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'vsogrd' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'mx2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'mn2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'o3grd' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'pawgrd' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'rogrd' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'tco3grd' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'10sigrd' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'tsrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'ttrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'ssrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'strcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'tisrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'dhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'dhvdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'dhccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'dhlcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'vdzwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'vdmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'ewgdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'nsgdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'ctzwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'ctmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'vdhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'htccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'htlcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'crnhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'tpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'iewsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'inssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'ishfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'iegrd' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'asqgrd' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'lsrhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'sktgrd' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'stl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'swl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'tsngrd' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'csfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'lsfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'acfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'alwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'falgrd' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'fsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'flsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'clwcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'ciwcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'ccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'aiwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'icegrd' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'attegrd' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'athegrd' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'atzegrd' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'atmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'tsru' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'ttru' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'tsuc' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'ttuc' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'clw' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'cf' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'dhlc' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'ewgd' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'nsgd' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'vdh' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'att' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'ath' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'atzw' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'atmwax' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'mvv' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'2tag2' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'2tag1' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'2tag0' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'2talm1' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'2talm2' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'tpag20' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'tpag10' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'tpag0' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'stag0' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'mslag0' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'h0dip' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'hslp' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'saip' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'whip' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'talm2' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'tag2' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'talm8' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'talm4' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'tag4' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'tag8' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'10gp' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'capep' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'tpl01' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'tprl1' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'tprg3' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'tprg5' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'10spg10' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'10spg15' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre Wind gust of at least 15 m/s +'10fgg15' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre Wind gust of at least 20 m/s +'10fgg20' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre Wind gust of at least 25 m/s +'10fgg25' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'2tl273' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'swhg2' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'swhg4' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'swhg6' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'swhg8' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'mwpg8' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'mwpg10' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'mwpg12' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'mwpg15' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'zp' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'tap' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#2 metre temperature probability +'2tp' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'sfp' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Total precipitation probability +'tpp' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'tccp' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'10sp' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'2tp' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'mx2tp' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'mn2tp' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'tpp' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'swhp' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'mwpp' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'~' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'10fgi' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'sfi' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'10wsi' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'2ti' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'mx2ti' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'mn2ti' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'tpi' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'2tplm10' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'2tplm5' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'2tpl0' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'2tpl5' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'2tpl10' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'2tpg25' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'2tpg30' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'2tpg35' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'2tpg40' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'2tpg45' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'mn2tplm10' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'mn2tplm5' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'mn2tpl0' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'mn2tpl5' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'mn2tpl10' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'mx2tpg25' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'mx2tpg30' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'mx2tpg35' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'mx2tpg40' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'mx2tpg45' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'10spg10' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'10spg15' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'10spg20' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'10spg35' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'10spg50' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'10gpg20' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'10gpg35' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'10gpg50' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'10gpg75' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'10gpg100' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'tppg1' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'tppg5' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'tppg10' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'tppg20' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'tppg40' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'tppg60' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'tppg80' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'tppg100' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'tppg150' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'tppg200' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'tppg300' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'sfpg1' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'sfpg5' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'sfpg10' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'sfpg20' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'sfpg40' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'sfpg60' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'sfpg80' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'sfpg100' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'sfpg150' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'sfpg200' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'sfpg300' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'tccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'tccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'tccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'tccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'tccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'tccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'tccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'tccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'tccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'tccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'hccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'hccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'hccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'hccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'hccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'hccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'hccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'hccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'hccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'hccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'mccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'mccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'mccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'mccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'mccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'mccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'mccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'mccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'mccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'mccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'lccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'lccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'lccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'lccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'lccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'lccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'lccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'lccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'lccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'lccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'maxswh' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'tmax' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'hmax' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'wmb' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'mp1' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean wave period based on second moment +'mp2' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'wdw' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'p1ww' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'p2ww' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'dwww' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'p1ps' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'p2ps' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'dwps' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'swh' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'mwd' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak period of 1D spectra +'pp1d' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'mwp' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'cdww' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'shts' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'mdts' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'mpts' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'sdhs' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'mu10' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'mdwi' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'sdu' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'msqs' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'wind' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'awh' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'acwh' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'arrc' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'dwi' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'2dsp' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'2dfd' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'wsk' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'bfi' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'wsp' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'ocpt' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'ocs' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'ocpd' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'ocu' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'ocv' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'ocw' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'rn' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'uv' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'ut' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'vt' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'uu' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'vv' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'sl' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'~' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'mld' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'~' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'~' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'~' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'~' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'nsf' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'~' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'~' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'~' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'~' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'~' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'~' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'~' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'~' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Ocean potential temperature +'ocpt' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Salinity +'s' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Ocean current zonal component +'ocu' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Ocean current meridional component +'ocv' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Ocean current vertical component +'ocw' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'mst' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'vvs' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'vdf' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'dep' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sigma-theta +'sth' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'rn' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'uv' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'ut' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'vt' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'uu' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'vv' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea level +'sl' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'sl_1' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Barotropic stream function +'bsf' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'mld' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'btp' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'sh' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'crl' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'~' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#U stress +'tax' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#V stress +'tay' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'tki' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'nsf' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'asr' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'pme' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'sst' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'shf' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'dte' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'hfc' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#20 degrees isotherm depth +'20d' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'tav300' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'uba1' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'vba1' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'ztr' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'mtr' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'zht' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'mht' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'umax' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'dumax' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'smax' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'dsmax' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'sav300' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'ldp' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'ldu' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'pti' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'ptae' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'bpt' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'apt' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'ptbe' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'as' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'sali' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'ebt' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'ebs' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'uvi' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'vvi' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'subi' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'sale' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'bsal' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'salbe' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'ebta' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'ebsa' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'lti' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'lsi' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'bzpga' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'bmpga' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'ebtl' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'ebsl' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'fgbt' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'fgbs' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'bpa' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'fgbp' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'pta' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'psa' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'~' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'10fgrea' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'wrea' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'pwcrea' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'swl1rea' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'sdrea' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lsprea' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cprea' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'sfrea' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'ghrea' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'rrea' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'swl2rea' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'ewssrea' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'nsssrea' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'erea' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'swl3rea' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'srcrea' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'mx2trea' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'mn2trea' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'rorea' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'zzrea' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'tzrea' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'ttrea' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'qzrea' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'qtrea' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'qqrea' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'uzrea' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'utrea' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'uqrea' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'uurea' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'vzrea' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'vtrea' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'vqrea' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'vurea' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'vvrea' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'wzrea' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'wtrea' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'wqrea' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'wurea' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'wvrea' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'wwrea' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'ishfrea' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'csfrea' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'lsfrea' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'clwcerrea' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'ccrea' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'falrea' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'10wsrea' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'moflrea' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'~' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'hsdrea' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'~' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'~' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'~' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'~' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'~' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'~' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'~' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'~' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'~' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'~' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'~' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'~' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'~' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'~' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'~' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'~' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'~' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'~' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'~' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'~' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'~' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'~' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'~' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'~' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'~' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'~' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'~' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'~' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'~' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'~' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'tsw' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'swl2' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'strfa' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'vpota' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'pta' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'epta' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'septa' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'udwa' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'vdwa' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'urwa' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'vrwa' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'uctpa' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'uclna' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'ucdva' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'cla' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'cvla' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'cvha' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'tvla' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'tvha' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'sica' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'asna' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'rsna' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'ssta' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'istal1' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'istal2' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'istal3' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'istal4' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'swval1' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'swval2' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'swval3' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'swval4' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'slta' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'esa' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'smlta' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'sdura' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'dsrpa' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress anomaly +'magssa' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'10fga' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'lspfa' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'mx2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'monta' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'pa' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'mn2d24a' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'uvba' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'para' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'capea' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'pva' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'tpoa' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'obcta' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'stsktda' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'ftsktda' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'sktda' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'tclwa' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'tciwa' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'vitea' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'ata' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'bva' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'za' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'ta' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'ua' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'va' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'qa' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'spa' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'wa' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'tcwa' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'tcwva' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'voa' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'stal1' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'swal1' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'sda' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'lspa' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'cpa' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'sfa' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'blda' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'sshfa' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'slhfa' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'chnka' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'snra' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'tnra' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'msla' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'lspa' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'swhra' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'lwhra' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'da' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'gha' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'ra' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'tspa' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'blha' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'sdora' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'isora' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'anora' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'slora' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'tcca' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'10ua' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'10va' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'2ta' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'2da' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'ssrda' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'slal2' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'swal2' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'sra' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'ala' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'strda' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'ssra' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'stra' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'tsra' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'ttra' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'eqssa' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'nsssa' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'ea' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'stal3' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'swal3' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'ccca' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'lcca' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'mcca' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'hcca' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'sunda' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'ewova' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'nsova' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'nwova' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'neova' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'btmpa' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'lgwsa' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'mgwsa' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'gwda' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'srca' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'vfa' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'vsoa' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'mx2ta' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'mn2ta' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'o3a' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'pawa' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'roa' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'tco3a' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'10ua' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'tsrca' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'ttrca' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'ssrca' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'strca' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'sia' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'dhra' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'dhvda' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'dhcca' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'dhlca' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'vdzwa' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'vdmwa' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'ewgda' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'nsgda' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'ctzwa' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'ctmwa' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'vdha' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'htcca' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'htlca' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'crnha' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'tpa' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'iewsa' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'inssa' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'ishfa' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'iea' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'asqa' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'lsrha' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'skta' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'stal4' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'swal4' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'tsna' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'csfa' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'lsfa' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'acfa' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'alwa' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'fala' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'fsra' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'flsra' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'clwca' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'ciwca' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'cca' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'aiwa' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'iaa' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'attea' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'athea' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'atzea' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'atmwa' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'esrate' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'~' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress +'~' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction +'~' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'~' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cprate' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) +'~' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'bldrate' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'~' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'~' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation +'~' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate +'~' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'~' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards +'~' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards +'~' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation +'~' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation +'~' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation +'~' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation +'~' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress +'~' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'~' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'erate' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration +'~' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'~' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'~' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'gwdrate' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Runoff +'~' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'~' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'~' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'~' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'~' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation +'~' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Total precipitation +'tprate' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'~' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'~' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'~' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'sfara' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'sundara' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'tpara' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'~' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'~' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'sro' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'ssro' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'~' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'~' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'~' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'~' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'~' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'~' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'~' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'~' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'~' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'~' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'~' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'~' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'~' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'~' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'~' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'~' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'~' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'~' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'~' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'~' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'~' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'~' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'~' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'~' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'~' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'~' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'~' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'~' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'~' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'~' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'~' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'~' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'~' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'~' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'~' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'~' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'~' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'~' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'~' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'~' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'tsw' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'sdsien' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'cap' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'wiltsien' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'sr' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'tsm' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'2ddiff' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'apab_s' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'~' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'~' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'~' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'~' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'~' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'~' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'sohr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'thhr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'~' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'~' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'~' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'clc' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'~' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'qc' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'qi' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'~' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'~' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'twater' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'~' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'ch_cm_cl' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'~' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'~' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'~' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'~' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'~' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'~' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'~' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'hbas_con' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'htop_con' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'~' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'bas_con' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'top_con' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'dt_con' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'dqv_con' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'~' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'~' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'du_con' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'dv_con' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'~' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'~' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'htop_dc' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'~' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'hzerocl' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'snowlmt' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'qrs_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'prr_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'prs_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'rain_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'prr_con' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'prs_con' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'rain_con' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'pp' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'~' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'vmax_10m' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'w_i' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'t_snow' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'t_ice' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'cape_con' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'~' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr07' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr08' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr09' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr10' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'aermr12' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'aerpr' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'aersm' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'aerlg' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'aodpr' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'aodsm' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'aodlg' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'aerdep' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'aerlts' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'aerscc' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'co2' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'ch4' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'n2o' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'tcco2' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'tcch4' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'tcn2o' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2of' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbf' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apf' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'ch4f' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2fire' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofire' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'ch4fire' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfire' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'h2fire' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfire' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofire' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5fire' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfire' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfire' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfire' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'bcfire' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfire' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffire' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'vegfire' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'ccfire' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfire' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'offire' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'nofrp' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'frpfire' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'crfire' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'no2' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'so2' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'co' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'hcho' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'tcno2' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'tcso2' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'tcco' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'tchcho' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'nox' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'tcnox' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'sfnox' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'sfco2' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'sfhcho' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'ra' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'sf6' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'tcra' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apf' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'go3' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'gtco3' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01diff' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02diff' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03diff' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04diff' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05diff' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06diff' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr07diff' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr08diff' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr09diff' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr10diff' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11diff' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'aermr12diff' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01diff' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02diff' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03diff' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04diff' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05diff' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06diff' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07diff' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08diff' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09diff' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10diff' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11diff' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12diff' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01diff' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02diff' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03diff' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04diff' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05diff' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06diff' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07diff' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08diff' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09diff' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10diff' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11diff' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12diff' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'aerprdiff' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'aersmdiff' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'aerlgdiff' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'aodprdiff' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'aodsmdiff' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'aodlgdiff' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'aerdepdiff' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'aerltsdiff' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'aersccdiff' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'co2diff' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'ch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'n2odiff' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'tcco2diff' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'tcch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'tcn2odiff' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2ofdiff' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'ch4fdiff' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'ch4firediff' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'h2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5firediff' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'bcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffirediff' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'vegfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'ccfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'offirediff' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'oafirediff' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'frpfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'crfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'no2diff' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'so2diff' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'codiff' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'hchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'tcno2diff' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'tcso2diff' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'tccodiff' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'tchchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'noxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'tcnoxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1diff' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1diff' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2diff' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2diff' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3diff' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3diff' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4diff' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4diff' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5diff' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5diff' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6diff' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6diff' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7diff' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7diff' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8diff' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8diff' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9diff' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9diff' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10diff' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10diff' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'sfnoxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2diff' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2diff' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'sfco2diff' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'sfhchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3diff' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1diff' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2diff' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3diff' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4diff' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5diff' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6diff' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7diff' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8diff' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9diff' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10diff' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'radiff' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'sf6diff' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'tcradiff' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6diff' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'go3diff' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'gtco3diff' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469diff' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670diff' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865diff' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240diff' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'tpoc' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'cin' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'orog' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'zust' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'mean2t' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'mean10ws' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'meantcc' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'dl' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'lmlt' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'lmld' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'lblt' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'ltlt' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'lshf' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'lict' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'licd' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'dndzn' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'dndza' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'dctb' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'tplb' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'tplt' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'sm' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'u10n' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'v10n' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'st' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'sd' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'cap' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'wilt' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'tp' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'esvar' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'smltvar' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'sdurvar' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'uvbvar' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'parvar' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'lspvar' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'cpvar' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'sfvar' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'bldvar' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'sshfvar' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'slhfvar' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'ssrdvar' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'strdvar' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'ssrvar' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'strvar' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'tsrvar' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'ttrvar' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'ewssvar' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'nsssvar' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'evar' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'sundvar' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'lgwsvar' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'mgwsvar' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'gwdvar' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'srcvar' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'rovar' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'tsrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'ttrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'ssrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'strcvar' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'tisrvar' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'sts' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'msls' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'2ts' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'tps' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'ust' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'vst' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'maxfrpfire' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2fire' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfire' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfire' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4fire' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfire' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefire' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfire' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfire' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofire' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofire' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofire' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3fire' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfire' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'maxfrpfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8firediff' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4firediff' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6firediff' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8firediff' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefirediff' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3firediff' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'vtnowd' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'utnowd' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'100u' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'100v' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'ascat_sm_cdfa' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ascat_sm_cdfb' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} + +# EC-Earth product 1 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 1 ; + } + +# EC-Earth product 2 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 2 ; + } + +# EC-Earth product 3 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 3 ; + } + +# EC-Earth product 4 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 4 ; + } + +# EC-Earth product 5 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 5 ; + } + +# EC-Earth product 6 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 6 ; + } + +# EC-Earth product 7 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 7 ; + } + +# EC-Earth product 8 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 8 ; + } + +# EC-Earth product 9 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 9 ; + } + +# EC-Earth product 10 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 10 ; + } + +# EC-Earth product 11 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 11 ; + } + +# EC-Earth product 12 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 12 ; + } + +# EC-Earth product 13 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 13 ; + } + +# EC-Earth product 14 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 14 ; + } + +# EC-Earth product 15 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 15 ; + } + +# EC-Earth product 16 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 16 ; + } + +# EC-Earth product 17 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 17 ; + } + +# EC-Earth product 18 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 18 ; + } + +# EC-Earth product 19 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 19 ; + } + +# EC-Earth product 20 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 20 ; + } + +# EC-Earth product 21 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 21 ; + } + +# EC-Earth product 22 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 22 ; + } + +# EC-Earth product 23 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 23 ; + } + +# EC-Earth product 24 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 24 ; + } + +# EC-Earth product 25 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 25 ; + } + +# EC-Earth product 26 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 26 ; + } + +# EC-Earth product 27 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 27 ; + } + +# EC-Earth product 28 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 28 ; + } + +# EC-Earth product 29 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 29 ; + } + +# EC-Earth product 30 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 30 ; + } + +# EC-Earth product 31 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 31 ; + } + +# EC-Earth product 32 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 32 ; + } + +# EC-Earth product 33 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 33 ; + } + +# EC-Earth product 34 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 34 ; + } + +# EC-Earth product 35 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 35 ; + } + +# EC-Earth product 36 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 36 ; + } + +# EC-Earth product 37 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 37 ; + } + +# EC-Earth product 38 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 38 ; + } + +# EC-Earth product 39 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 39 ; + } + +# EC-Earth product 40 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 40 ; + } + +# EC-Earth product 41 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 41 ; + } + +# EC-Earth product 42 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 42 ; + } + +# EC-Earth product 43 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 43 ; + } + +# EC-Earth product 44 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 44 ; + } + +# EC-Earth product 45 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 45 ; + } + +# EC-Earth product 46 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 46 ; + } + +# EC-Earth product 47 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 47 ; + } + +# EC-Earth product 48 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 48 ; + } + +# EC-Earth product 49 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 49 ; + } + +# EC-Earth product 50 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 50 ; + } + +# EC-Earth product 51 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 51 ; + } + +# EC-Earth product 52 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 52 ; + } + +# EC-Earth product 53 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 53 ; + } + +# EC-Earth product 54 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 54 ; + } + +# EC-Earth product 55 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 55 ; + } + +# EC-Earth product 56 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 56 ; + } + +# EC-Earth product 57 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 57 ; + } + +# EC-Earth product 58 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 58 ; + } + +# EC-Earth product 59 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 59 ; + } + +# EC-Earth product 60 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 60 ; + } + +# EC-Earth product 61 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 61 ; + } + +# EC-Earth product 62 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 62 ; + } + +# EC-Earth product 63 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 63 ; + } + +# EC-Earth product 64 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 64 ; + } + +# EC-Earth product 65 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 65 ; + } + +# EC-Earth product 66 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 66 ; + } + +# EC-Earth product 67 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 67 ; + } + +# EC-Earth product 68 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 68 ; + } + +# EC-Earth product 69 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 69 ; + } + +# EC-Earth product 70 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 70 ; + } + +# EC-Earth product 71 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 71 ; + } + +# EC-Earth product 72 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 72 ; + } + +# EC-Earth product 73 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 73 ; + } + +# EC-Earth product 74 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 74 ; + } + +# EC-Earth product 75 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 75 ; + } + +# EC-Earth product 76 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 76 ; + } + +# EC-Earth product 77 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 77 ; + } + +# EC-Earth product 78 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 78 ; + } + +# EC-Earth product 79 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 79 ; + } + +# EC-Earth product 80 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 80 ; + } + +# EC-Earth product 81 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 81 ; + } + +# EC-Earth product 82 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 82 ; + } + +# EC-Earth product 83 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 83 ; + } + +# EC-Earth product 84 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 84 ; + } + +# EC-Earth product 85 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 85 ; + } + +# EC-Earth product 86 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 86 ; + } + +# EC-Earth product 87 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 87 ; + } + +# EC-Earth product 88 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 88 ; + } + +# EC-Earth product 89 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 89 ; + } + +# EC-Earth product 90 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 90 ; + } + +# EC-Earth product 91 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 91 ; + } + +# EC-Earth product 92 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 92 ; + } + +# EC-Earth product 93 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 93 ; + } + +# EC-Earth product 94 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 94 ; + } + +# EC-Earth product 95 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 95 ; + } + +# EC-Earth product 96 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 96 ; + } + +# EC-Earth product 97 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 97 ; + } + +# EC-Earth product 98 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 98 ; + } + +# EC-Earth product 99 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 99 ; + } + +# EC-Earth product 100 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 100 ; + } + +# EC-Earth product 101 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 101 ; + } + +# EC-Earth product 102 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 102 ; + } + +# EC-Earth product 103 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 103 ; + } + +# EC-Earth product 104 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 104 ; + } + +# EC-Earth product 105 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 105 ; + } + +# EC-Earth product 106 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 106 ; + } + +# EC-Earth product 107 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 107 ; + } + +# EC-Earth product 108 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 108 ; + } + +# EC-Earth product 109 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 109 ; + } + +# EC-Earth product 110 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 110 ; + } + +# EC-Earth product 111 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 111 ; + } + +# EC-Earth product 112 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 112 ; + } + +# EC-Earth product 113 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 113 ; + } + +# EC-Earth product 114 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 114 ; + } + +# EC-Earth product 115 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 115 ; + } + +# EC-Earth product 116 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 116 ; + } + +# EC-Earth product 117 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 117 ; + } + +# EC-Earth product 118 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 118 ; + } + +# EC-Earth product 119 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 119 ; + } + +# EC-Earth product 120 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 120 ; + } + +# EC-Earth product 121 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 121 ; + } + +# EC-Earth product 122 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 122 ; + } + +# EC-Earth product 123 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 123 ; + } + +# EC-Earth product 124 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 124 ; + } + +# EC-Earth product 125 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 125 ; + } + +# EC-Earth product 126 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 126 ; + } + +# EC-Earth product 127 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 127 ; + } + +# EC-Earth product 128 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 128 ; + } + +# EC-Earth product 129 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 129 ; + } + +# EC-Earth product 130 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 130 ; + } + +# EC-Earth product 131 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 131 ; + } + +# EC-Earth product 132 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 132 ; + } + +# EC-Earth product 133 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 133 ; + } + +# EC-Earth product 134 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 134 ; + } + +# EC-Earth product 135 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 135 ; + } + +# EC-Earth product 136 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 136 ; + } + +# EC-Earth product 137 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 137 ; + } + +# EC-Earth product 138 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 138 ; + } + +# EC-Earth product 139 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 139 ; + } + +# EC-Earth product 140 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 140 ; + } + +# EC-Earth product 141 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 141 ; + } + +# EC-Earth product 142 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 142 ; + } + +# EC-Earth product 143 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 143 ; + } + +# EC-Earth product 144 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 144 ; + } + +# EC-Earth product 145 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 145 ; + } + +# EC-Earth product 146 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 146 ; + } + +# EC-Earth product 147 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 147 ; + } + +# EC-Earth product 148 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 148 ; + } + +# EC-Earth product 149 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 149 ; + } + +# EC-Earth product 150 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 150 ; + } + +# EC-Earth product 151 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 151 ; + } + +# EC-Earth product 152 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 152 ; + } + +# EC-Earth product 153 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 153 ; + } + +# EC-Earth product 154 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 154 ; + } + +# EC-Earth product 155 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 155 ; + } + +# EC-Earth product 156 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 156 ; + } + +# EC-Earth product 157 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 157 ; + } + +# EC-Earth product 158 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 158 ; + } + +# EC-Earth product 159 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 159 ; + } + +# EC-Earth product 160 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 160 ; + } + +# EC-Earth product 161 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 161 ; + } + +# EC-Earth product 162 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 162 ; + } + +# EC-Earth product 163 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 163 ; + } + +# EC-Earth product 164 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 164 ; + } + +# EC-Earth product 165 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 165 ; + } + +# EC-Earth product 166 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 166 ; + } + +# EC-Earth product 167 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 167 ; + } + +# EC-Earth product 168 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 168 ; + } + +# EC-Earth product 169 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 169 ; + } + +# EC-Earth product 170 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 170 ; + } + +# EC-Earth product 171 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 171 ; + } + +# EC-Earth product 172 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 172 ; + } + +# EC-Earth product 173 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 173 ; + } + +# EC-Earth product 174 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 174 ; + } + +# EC-Earth product 175 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 175 ; + } + +# EC-Earth product 176 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 176 ; + } + +# EC-Earth product 177 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 177 ; + } + +# EC-Earth product 178 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 178 ; + } + +# EC-Earth product 179 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 179 ; + } + +# EC-Earth product 180 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 180 ; + } + +# EC-Earth product 181 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 181 ; + } + +# EC-Earth product 182 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 182 ; + } + +# EC-Earth product 183 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 183 ; + } + +# EC-Earth product 184 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 184 ; + } + +# EC-Earth product 185 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 185 ; + } + +# EC-Earth product 186 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 186 ; + } + +# EC-Earth product 187 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 187 ; + } + +# EC-Earth product 188 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 188 ; + } + +# EC-Earth product 189 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 189 ; + } + +# EC-Earth product 190 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 190 ; + } + +# EC-Earth product 191 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 191 ; + } + +# EC-Earth product 192 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 192 ; + } + +# EC-Earth product 193 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 193 ; + } + +# EC-Earth product 194 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 194 ; + } + +# EC-Earth product 195 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 195 ; + } + +# EC-Earth product 196 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 196 ; + } + +# EC-Earth product 197 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 197 ; + } + +# EC-Earth product 198 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 198 ; + } + +# EC-Earth product 199 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 199 ; + } + +# EC-Earth product 200 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 200 ; + } + +# EC-Earth product 201 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 201 ; + } + +# EC-Earth product 202 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 202 ; + } + +# EC-Earth product 203 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 203 ; + } + +# EC-Earth product 204 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 204 ; + } + +# EC-Earth product 205 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 205 ; + } + +# EC-Earth product 206 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 206 ; + } + +# EC-Earth product 207 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 207 ; + } + +# EC-Earth product 208 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 208 ; + } + +# EC-Earth product 209 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 209 ; + } + +# EC-Earth product 210 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 210 ; + } + +# EC-Earth product 211 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 211 ; + } + +# EC-Earth product 212 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 212 ; + } + +# EC-Earth product 213 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 213 ; + } + +# EC-Earth product 214 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 214 ; + } + +# EC-Earth product 215 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 215 ; + } + +# EC-Earth product 216 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 216 ; + } + +# EC-Earth product 217 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 217 ; + } + +# EC-Earth product 218 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 218 ; + } + +# EC-Earth product 219 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 219 ; + } + +# EC-Earth product 220 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 220 ; + } + +# EC-Earth product 221 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 221 ; + } + +# EC-Earth product 222 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 222 ; + } + +# EC-Earth product 223 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 223 ; + } + +# EC-Earth product 224 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 224 ; + } + +# EC-Earth product 225 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 225 ; + } + +# EC-Earth product 226 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 226 ; + } + +# EC-Earth product 227 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 227 ; + } + +# EC-Earth product 228 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 228 ; + } + +# EC-Earth product 229 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 229 ; + } + +# EC-Earth product 230 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 230 ; + } + +# EC-Earth product 231 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 231 ; + } + +# EC-Earth product 232 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 232 ; + } + +# EC-Earth product 233 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 233 ; + } + +# EC-Earth product 234 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 234 ; + } + +# EC-Earth product 235 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 235 ; + } + +# EC-Earth product 236 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 236 ; + } + +# EC-Earth product 237 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 237 ; + } + +# EC-Earth product 238 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 238 ; + } + +# EC-Earth product 239 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 239 ; + } + +# EC-Earth product 240 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 240 ; + } + +# EC-Earth product 241 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 241 ; + } + +# EC-Earth product 242 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 242 ; + } + +# EC-Earth product 243 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 243 ; + } + +# EC-Earth product 244 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 244 ; + } + +# EC-Earth product 245 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 245 ; + } + +# EC-Earth product 246 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 246 ; + } + +# EC-Earth product 247 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 247 ; + } + +# EC-Earth product 248 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 248 ; + } + +# EC-Earth product 249 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 249 ; + } + +# EC-Earth product 250 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 250 ; + } + +# EC-Earth product 251 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 251 ; + } + +# EC-Earth product 252 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 252 ; + } + +# EC-Earth product 253 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 253 ; + } + +# EC-Earth product 254 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 254 ; + } + +# EC-Earth product 255 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 255 ; + } diff --git a/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/typeOfLevel.def b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/typeOfLevel.def new file mode 100644 index 0000000000000000000000000000000000000000..2c253e79845e47011b20cfe9bbb73781c9ccb607 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/typeOfLevel.def @@ -0,0 +1,40 @@ +# ECMWF concept type of level +#set uses the last one +#get returns the first match +'surface' = {indicatorOfTypeOfLevel=1;} +'cloudBase' = {indicatorOfTypeOfLevel=2;} +'cloudTop' = {indicatorOfTypeOfLevel=3;} +'isothermZero' = {indicatorOfTypeOfLevel=4;} +'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} +'maxWind' = {indicatorOfTypeOfLevel=6;} +'tropopause' = {indicatorOfTypeOfLevel=7;} +'nominalTop' = {indicatorOfTypeOfLevel=8;} +'seaBottom' = {indicatorOfTypeOfLevel=9;} +'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} +'isobaricInPa' = {indicatorOfTypeOfLevel=210;} +'isobaricLayer' = {indicatorOfTypeOfLevel=101;} +'meanSea' = {indicatorOfTypeOfLevel=102;} +'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} +'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} +'heightAboveSea' = {indicatorOfTypeOfLevel=103;} +'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} +'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} +'heightAboveGround' = {indicatorOfTypeOfLevel=105;} +'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} +'sigma' = {indicatorOfTypeOfLevel=107;} +'sigmaLayer' = {indicatorOfTypeOfLevel=108;} +'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} +'hybrid' = {indicatorOfTypeOfLevel=109;} +'hybridLayer' = {indicatorOfTypeOfLevel=110;} +'depthBelowLand' = {indicatorOfTypeOfLevel=111;} +'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} +'theta' = {indicatorOfTypeOfLevel=113;} +'thetaLayer' = {indicatorOfTypeOfLevel=114;} +'pressureFromGround' = {indicatorOfTypeOfLevel=115;} +'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} +'potentialVorticity' = {indicatorOfTypeOfLevel=117;} +'depthBelowSea' = {indicatorOfTypeOfLevel=160;} +'entireAtmosphere' = {indicatorOfTypeOfLevel=200;level=0;} +'entireOcean' = {indicatorOfTypeOfLevel=201;level=0;} +'oceanWave' = {indicatorOfTypeOfLevel=211;} +'oceanMixedLayer' = {indicatorOfTypeOfLevel=212;} diff --git a/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/units.def b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/units.def new file mode 100644 index 0000000000000000000000000000000000000000..516e459f9007edd8da2a86e9a263dafbc2d290d2 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/grib-table/grib1/localConcepts/ecmf/units.def @@ -0,0 +1,18181 @@ +# Automatically generated by ./create_def.pl from database param@wrep-db-misc-prod, do not edit +#Total precipitation of at least 1 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'m**2 s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'m**2 s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'m' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'m' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'~' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'~' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'~' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'kg m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'~' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'s' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'W m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'s' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'m**2 s**-2' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'Pa' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'J kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'~' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'s' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'s' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'K' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'W m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'W m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'m' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column liquid water +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'dimensionless' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'~' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'~' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'~' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'~' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'K' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'K' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'K' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'m s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'m s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'m s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'m s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'m s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'m s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'Pa' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Pa' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Pa' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'Pa' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Pa' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'Pa s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'Pa s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'kg m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'kg m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'K' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'K' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'K' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'m of water equivalent' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'m of water equivalent' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'m of water equivalent' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'m' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'m' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'m' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'m' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'m' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'m' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'m of water equivalent' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'~' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'~' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'~' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'K' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'K' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'gpm' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'%' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'%' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'%' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'Pa s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'m' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'~' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'~' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'radians' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'~' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'K' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'K' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'K' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'m' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'m' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'N m**-2 s' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'N m**-2 s' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'N m**-2 s' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'N m**-2 s' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'K' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'m of water equivalent' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'s' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'N m**-2 s' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'N m**-2 s' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'~' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'~' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'m' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'m' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'K' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'K' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'K' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'K' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'m s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'m s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'kg kg**-1' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'m' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'m' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'m' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'m' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'N m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'N m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'N m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'N m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'W m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'kg m**-2 s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'kg kg**-1' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'~' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'~' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'K' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'m' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'m' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'K' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'K' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'(-1 to 1)' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'(-1 to 1)' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'m' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'m' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'~' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'~' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'(-1 to 1)' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'m**2 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'m**2 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'kg m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'m**3 m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'m**3 m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'m**3 m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'m**3 m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'m**2 s**-2' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'J kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'K m**2 kg**-1 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'Millimetres*100 + number of stations' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'m**2 s**-2' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'Pa s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'m of water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'m of water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'%' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'Pa s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'radians' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'kg m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'m of water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'m of water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'(-1 to 1)' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'(-1 to 1)' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'(-1 to 1)' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'%' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'%' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'%' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'%' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'%' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'%' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Maximum of significant wave height index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Significant wave height of first swell partition +'m' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'s' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'m' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'s' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'m' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'s' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'kg m**-3' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'~' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'~' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'~' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'~' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'~' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'~' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Vertical integral of divergence of cloud liquid water flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'K' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'K' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'K' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'K' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'K' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'K' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#100 metre U wind component anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Clear-sky (II) down surface sw flux +'W m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'W m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'m' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'K' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'K' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'kg kg**-1' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#Short wave radiation flux at surface +'J m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'J m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'kg m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'kg m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'kg m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'kg m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'kg m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Particulate matter d < 1 um +'kg m**-3' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'kg m**-3' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'kg m**-3' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'deg' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'m above sea level' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'m above sea level' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'m above sea level' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'m**-1' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'m**-1' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Aerosol type 13 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'m above sea level' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'m above sea level' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +# Cosine of solar zenith angle +'~' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +# UV biologically effective dose +'~' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +# UV biologically effective dose clear-sky +'~' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +# Profile of optical thickness at 340 nm +'~' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +# Source/gain of sulphate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +# Dry deposition of sulphate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +# Sedimentation of sulphate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +# Negative fixer of sulphate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +# Vertically integrated mass of sulphate aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +# Sulphate aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'s' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'kg s**2 m**-5' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'kg s**2 m**-5' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Profile of total aerosol optical depth at 532 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Profile of natural (sea-salt and dust) aerosol optical depth at 532 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Profile of antropogenic (black carbon, organic matter, sulphate) aerosol optical depth at 532 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Assimetry factor at 340 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Assimetry factor at 355 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Assimetry factor at 380 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Assimetry factor at 400 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Assimetry factor at 440 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Assimetry factor at 469 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Assimetry factor at 500 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Assimetry factor at 532 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Assimetry factor at 550 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Assimetry factor at 645 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Assimetry factor at 670 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Assimetry factor at 800 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Assimetry factor at 858 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Assimetry factor at 865 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Assimetry factor at 1020 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Assimetry factor at 1064 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Assimetry factor at 1240 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Assimetry factor at 1640 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Assimetry factor at 2130 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'kg m**-2' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#Total sky direct solar radiation at surface +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'m' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#Zero degree level +'m' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'m' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'K' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'K' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#Soil wetness index in layer 1 +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'m**3 m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Instantaneous large-scale surface precipitation fraction +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'K' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#Surface solar radiation diffuse total sky +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'Proportion' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'m' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'m' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Large-scale precipitation fraction (variable resolution) +'s' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'(0 - 1)' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Total precipitation (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'m of water equivalent' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'m of water equivalent' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#K index +'K' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'K' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'m**2 s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'m**2 s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'kg m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'m**3 m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'m**3 m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'m**3 m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'m**3 m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'s' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'s' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'m**2 s**-2' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'Pa' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'J kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'K m**2 kg**-1 s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'Millimetres*100 + number of stations' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'s' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'s' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'K' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'m**2 s**-2' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'Pa' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'Pa s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'m of water equivalent' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'m of water equivalent' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'Pa' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'%' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'Pa s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'radians' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'s' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'N m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'N m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'kg m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'m of water equivalent' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'m of water equivalent' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'(-1 to 1)' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'(-1 to 1)' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'(-1 to 1)' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'J m**-2' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'J m**-2' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'J m**-2' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'J m**-2' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'kg kg**-1' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'(0 - 1)' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'kg kg**-1 s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'kg kg**-1 s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'kg kg**-1 s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'kg kg**-1 s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'Pa s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'%' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'%' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'%' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'%' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre Wind gust of at least 15 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre Wind gust of at least 20 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre Wind gust of at least 25 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'%' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'%' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'%' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'%' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#2 metre temperature probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Total precipitation probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'~' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'s' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'m' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'s' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean wave period based on second moment +'s' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'~' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'s' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'s' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'~' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'s' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'s' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'~' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'m' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak period of 1D spectra +'s' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'s' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'~' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'m' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'s' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'m' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'s' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'~' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'m**2 s radian**-1' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'m**2 s radian**-1' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'~' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'~' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'deg C' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'psu' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'kg m**-3 -1000' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'m s**-1' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'m s**-1' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'m s**-1' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'~' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'m s**-1 deg C' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'m s**-1 deg C' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'m s**-1 deg C' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'m s**-1 deg C' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'m' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'~' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'m' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'m' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'Pa' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'Pa' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'~' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'~' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'~' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'~' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'deg C' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'J m**-2' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'deg C' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'J m**-2' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'~' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Ocean potential temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Ocean current zonal component +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Ocean current meridional component +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Ocean current vertical component +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'m' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sigma-theta +'kg m**-3' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'~' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'m**2 s**-2' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'m s**-1 degC' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'m s**-1 deg C' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'m**2 s**-2' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'m**2 s**-2' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea level +'m' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'m' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Barotropic stream function +'m**3 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'m' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'m' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'m' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'N m**-3' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'Nm**-3' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#U stress +'N m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#V stress +'N m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#20 degrees isotherm depth +'m' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'degrees C' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'J m**-1 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'J m**-1 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'m' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'m' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'m' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'m' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'m s**-1 per time step' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'~' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'psu per time step' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'deg C per time step' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'~' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'Pa**m-1' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'Pa**m-1' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'Pa' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'Pa' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'~' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'kg m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'m' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'kg m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'m' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'m' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'N m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'N m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'m' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'kg m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'%' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'K' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'K' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'K m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'m**3 s**-3' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'K m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'m**3 s**-3' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'K m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'Pa m**2 s**-3' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'K Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'Pa m s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'Pa m s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'kg kg**-1' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'~' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'N m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'K kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'kg m**-3' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'kg m**-3' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'m**2' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'K' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'m**4 s**-4' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'m**2 K s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'K**2' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'K' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'m**3 s**-3' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'m s**-1 K' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'m**3 s**-3' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'m s**-1 K' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'m**2 Pa s**-3' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'Pa s**-1 K' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'Pa s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'m Pa s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'m Pa s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'Pa**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'Pa**2' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'dimensionless' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'Pa s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'dimensionless' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'~' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'m' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'m' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'m**2 s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'m**2 s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'kg m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'m**3 m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'m**3 m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'m**3 m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'m**3 m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of surface stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'m**2 s**-2' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'J kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'K m**2 kg**-1 s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'Millimetres*100 + number of stations' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'m**2 s**-2' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'Pa' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'Pa s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'m of water equivalent' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'m of water equivalent' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'Pa' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'%' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'Pa s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'radians' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'N m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'N m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'kg m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'m of water equivalent' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'m of water equivalent' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'(-1 to 1)' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'(-1 to 1)' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'(-1 to 1)' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'m of water s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'m of water s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction +'~' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'m s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'m s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) +'m of water equivalent s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate +'K s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'K s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'m of water s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration +'~' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Runoff +'m s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'J m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation +'W m**-2 s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Total precipitation +'m s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'m of water equivalent s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'m of water equivalent s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'~' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'m of water s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'m of water s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of surface stress anomaly +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'m s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'m s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'m of water equivalent s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'K s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'K s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'m of water s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'dimensionless' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomaly +'m s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'W m**-2 s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'m s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'m of water equivalent s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'m of water equivalent s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'~' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'m' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'kg m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'kg m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'m s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'K' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'kg C m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'m s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'m s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'K' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'K' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'J m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'J m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'kg kg**-1' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'m' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'m' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'K' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'degrees C' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'K' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'psu' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'K' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'K' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'K' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'K' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'~' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'m' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'(0 - 1)' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'K' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'m s**-1' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'K' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'kg C m**-2 s**-1' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'m s**-1' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'m s**-1' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'K' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'K' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'J m**-2' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'J m**-2' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'(0 - 1)' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'m' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'K' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'degrees C' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'K' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'K' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'K' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'psu' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'K' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'K' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'K' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'K' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'~' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'m' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'kg m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'m**3 m**-3' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'m**-1' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'m' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'m' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'dimensionless' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'dimensionless' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'dimensionless' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'J kg**-1 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'m s**-2' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'m s**-2' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'s**-2' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'s**-2' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'m' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'dimensionless' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'m' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'m' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'Pa' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'m**2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'K' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'K' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'~' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'kg s**2 m**-5' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'m s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'%' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'~' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'W m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'kg s**2 m**-5' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'m s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'%' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'m**2' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'W m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'dimensionless' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'J kg**-1' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'m' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'K' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'m' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'m' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'m' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'m**-1' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'m**-1' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'m' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'m' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'m' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'kg m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'%' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'kg m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'kg m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'s' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'m of water equivalent' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'N m**-2 s' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'N m**-2 s' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'s' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'N m**-2 s' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'N m**-2 s' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'%' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'%' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'%' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'%' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'W' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'W' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'m s**-2' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'m s**-2' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'m**3 m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} + +# EC-Earth product 1 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 1 ; + } + +# EC-Earth product 2 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 2 ; + } + +# EC-Earth product 3 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 3 ; + } + +# EC-Earth product 4 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 4 ; + } + +# EC-Earth product 5 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 5 ; + } + +# EC-Earth product 6 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 6 ; + } + +# EC-Earth product 7 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 7 ; + } + +# EC-Earth product 8 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 8 ; + } + +# EC-Earth product 9 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 9 ; + } + +# EC-Earth product 10 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 10 ; + } + +# EC-Earth product 11 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 11 ; + } + +# EC-Earth product 12 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 12 ; + } + +# EC-Earth product 13 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 13 ; + } + +# EC-Earth product 14 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 14 ; + } + +# EC-Earth product 15 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 15 ; + } + +# EC-Earth product 16 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 16 ; + } + +# EC-Earth product 17 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 17 ; + } + +# EC-Earth product 18 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 18 ; + } + +# EC-Earth product 19 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 19 ; + } + +# EC-Earth product 20 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 20 ; + } + +# EC-Earth product 21 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 21 ; + } + +# EC-Earth product 22 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 22 ; + } + +# EC-Earth product 23 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 23 ; + } + +# EC-Earth product 24 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 24 ; + } + +# EC-Earth product 25 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 25 ; + } + +# EC-Earth product 26 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 26 ; + } + +# EC-Earth product 27 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 27 ; + } + +# EC-Earth product 28 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 28 ; + } + +# EC-Earth product 29 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 29 ; + } + +# EC-Earth product 30 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 30 ; + } + +# EC-Earth product 31 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 31 ; + } + +# EC-Earth product 32 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 32 ; + } + +# EC-Earth product 33 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 33 ; + } + +# EC-Earth product 34 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 34 ; + } + +# EC-Earth product 35 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 35 ; + } + +# EC-Earth product 36 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 36 ; + } + +# EC-Earth product 37 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 37 ; + } + +# EC-Earth product 38 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 38 ; + } + +# EC-Earth product 39 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 39 ; + } + +# EC-Earth product 40 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 40 ; + } + +# EC-Earth product 41 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 41 ; + } + +# EC-Earth product 42 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 42 ; + } + +# EC-Earth product 43 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 43 ; + } + +# EC-Earth product 44 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 44 ; + } + +# EC-Earth product 45 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 45 ; + } + +# EC-Earth product 46 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 46 ; + } + +# EC-Earth product 47 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 47 ; + } + +# EC-Earth product 48 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 48 ; + } + +# EC-Earth product 49 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 49 ; + } + +# EC-Earth product 50 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 50 ; + } + +# EC-Earth product 51 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 51 ; + } + +# EC-Earth product 52 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 52 ; + } + +# EC-Earth product 53 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 53 ; + } + +# EC-Earth product 54 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 54 ; + } + +# EC-Earth product 55 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 55 ; + } + +# EC-Earth product 56 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 56 ; + } + +# EC-Earth product 57 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 57 ; + } + +# EC-Earth product 58 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 58 ; + } + +# EC-Earth product 59 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 59 ; + } + +# EC-Earth product 60 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 60 ; + } + +# EC-Earth product 61 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 61 ; + } + +# EC-Earth product 62 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 62 ; + } + +# EC-Earth product 63 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 63 ; + } + +# EC-Earth product 64 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 64 ; + } + +# EC-Earth product 65 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 65 ; + } + +# EC-Earth product 66 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 66 ; + } + +# EC-Earth product 67 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 67 ; + } + +# EC-Earth product 68 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 68 ; + } + +# EC-Earth product 69 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 69 ; + } + +# EC-Earth product 70 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 70 ; + } + +# EC-Earth product 71 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 71 ; + } + +# EC-Earth product 72 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 72 ; + } + +# EC-Earth product 73 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 73 ; + } + +# EC-Earth product 74 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 74 ; + } + +# EC-Earth product 75 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 75 ; + } + +# EC-Earth product 76 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 76 ; + } + +# EC-Earth product 77 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 77 ; + } + +# EC-Earth product 78 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 78 ; + } + +# EC-Earth product 79 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 79 ; + } + +# EC-Earth product 80 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 80 ; + } + +# EC-Earth product 81 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 81 ; + } + +# EC-Earth product 82 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 82 ; + } + +# EC-Earth product 83 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 83 ; + } + +# EC-Earth product 84 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 84 ; + } + +# EC-Earth product 85 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 85 ; + } + +# EC-Earth product 86 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 86 ; + } + +# EC-Earth product 87 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 87 ; + } + +# EC-Earth product 88 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 88 ; + } + +# EC-Earth product 89 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 89 ; + } + +# EC-Earth product 90 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 90 ; + } + +# EC-Earth product 91 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 91 ; + } + +# EC-Earth product 92 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 92 ; + } + +# EC-Earth product 93 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 93 ; + } + +# EC-Earth product 94 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 94 ; + } + +# EC-Earth product 95 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 95 ; + } + +# EC-Earth product 96 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 96 ; + } + +# EC-Earth product 97 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 97 ; + } + +# EC-Earth product 98 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 98 ; + } + +# EC-Earth product 99 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 99 ; + } + +# EC-Earth product 100 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 100 ; + } + +# EC-Earth product 101 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 101 ; + } + +# EC-Earth product 102 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 102 ; + } + +# EC-Earth product 103 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 103 ; + } + +# EC-Earth product 104 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 104 ; + } + +# EC-Earth product 105 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 105 ; + } + +# EC-Earth product 106 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 106 ; + } + +# EC-Earth product 107 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 107 ; + } + +# EC-Earth product 108 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 108 ; + } + +# EC-Earth product 109 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 109 ; + } + +# EC-Earth product 110 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 110 ; + } + +# EC-Earth product 111 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 111 ; + } + +# EC-Earth product 112 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 112 ; + } + +# EC-Earth product 113 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 113 ; + } + +# EC-Earth product 114 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 114 ; + } + +# EC-Earth product 115 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 115 ; + } + +# EC-Earth product 116 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 116 ; + } + +# EC-Earth product 117 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 117 ; + } + +# EC-Earth product 118 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 118 ; + } + +# EC-Earth product 119 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 119 ; + } + +# EC-Earth product 120 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 120 ; + } + +# EC-Earth product 121 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 121 ; + } + +# EC-Earth product 122 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 122 ; + } + +# EC-Earth product 123 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 123 ; + } + +# EC-Earth product 124 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 124 ; + } + +# EC-Earth product 125 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 125 ; + } + +# EC-Earth product 126 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 126 ; + } + +# EC-Earth product 127 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 127 ; + } + +# EC-Earth product 128 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 128 ; + } + +# EC-Earth product 129 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 129 ; + } + +# EC-Earth product 130 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 130 ; + } + +# EC-Earth product 131 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 131 ; + } + +# EC-Earth product 132 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 132 ; + } + +# EC-Earth product 133 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 133 ; + } + +# EC-Earth product 134 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 134 ; + } + +# EC-Earth product 135 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 135 ; + } + +# EC-Earth product 136 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 136 ; + } + +# EC-Earth product 137 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 137 ; + } + +# EC-Earth product 138 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 138 ; + } + +# EC-Earth product 139 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 139 ; + } + +# EC-Earth product 140 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 140 ; + } + +# EC-Earth product 141 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 141 ; + } + +# EC-Earth product 142 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 142 ; + } + +# EC-Earth product 143 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 143 ; + } + +# EC-Earth product 144 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 144 ; + } + +# EC-Earth product 145 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 145 ; + } + +# EC-Earth product 146 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 146 ; + } + +# EC-Earth product 147 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 147 ; + } + +# EC-Earth product 148 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 148 ; + } + +# EC-Earth product 149 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 149 ; + } + +# EC-Earth product 150 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 150 ; + } + +# EC-Earth product 151 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 151 ; + } + +# EC-Earth product 152 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 152 ; + } + +# EC-Earth product 153 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 153 ; + } + +# EC-Earth product 154 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 154 ; + } + +# EC-Earth product 155 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 155 ; + } + +# EC-Earth product 156 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 156 ; + } + +# EC-Earth product 157 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 157 ; + } + +# EC-Earth product 158 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 158 ; + } + +# EC-Earth product 159 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 159 ; + } + +# EC-Earth product 160 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 160 ; + } + +# EC-Earth product 161 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 161 ; + } + +# EC-Earth product 162 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 162 ; + } + +# EC-Earth product 163 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 163 ; + } + +# EC-Earth product 164 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 164 ; + } + +# EC-Earth product 165 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 165 ; + } + +# EC-Earth product 166 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 166 ; + } + +# EC-Earth product 167 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 167 ; + } + +# EC-Earth product 168 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 168 ; + } + +# EC-Earth product 169 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 169 ; + } + +# EC-Earth product 170 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 170 ; + } + +# EC-Earth product 171 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 171 ; + } + +# EC-Earth product 172 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 172 ; + } + +# EC-Earth product 173 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 173 ; + } + +# EC-Earth product 174 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 174 ; + } + +# EC-Earth product 175 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 175 ; + } + +# EC-Earth product 176 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 176 ; + } + +# EC-Earth product 177 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 177 ; + } + +# EC-Earth product 178 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 178 ; + } + +# EC-Earth product 179 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 179 ; + } + +# EC-Earth product 180 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 180 ; + } + +# EC-Earth product 181 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 181 ; + } + +# EC-Earth product 182 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 182 ; + } + +# EC-Earth product 183 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 183 ; + } + +# EC-Earth product 184 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 184 ; + } + +# EC-Earth product 185 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 185 ; + } + +# EC-Earth product 186 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 186 ; + } + +# EC-Earth product 187 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 187 ; + } + +# EC-Earth product 188 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 188 ; + } + +# EC-Earth product 189 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 189 ; + } + +# EC-Earth product 190 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 190 ; + } + +# EC-Earth product 191 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 191 ; + } + +# EC-Earth product 192 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 192 ; + } + +# EC-Earth product 193 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 193 ; + } + +# EC-Earth product 194 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 194 ; + } + +# EC-Earth product 195 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 195 ; + } + +# EC-Earth product 196 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 196 ; + } + +# EC-Earth product 197 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 197 ; + } + +# EC-Earth product 198 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 198 ; + } + +# EC-Earth product 199 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 199 ; + } + +# EC-Earth product 200 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 200 ; + } + +# EC-Earth product 201 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 201 ; + } + +# EC-Earth product 202 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 202 ; + } + +# EC-Earth product 203 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 203 ; + } + +# EC-Earth product 204 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 204 ; + } + +# EC-Earth product 205 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 205 ; + } + +# EC-Earth product 206 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 206 ; + } + +# EC-Earth product 207 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 207 ; + } + +# EC-Earth product 208 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 208 ; + } + +# EC-Earth product 209 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 209 ; + } + +# EC-Earth product 210 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 210 ; + } + +# EC-Earth product 211 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 211 ; + } + +# EC-Earth product 212 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 212 ; + } + +# EC-Earth product 213 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 213 ; + } + +# EC-Earth product 214 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 214 ; + } + +# EC-Earth product 215 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 215 ; + } + +# EC-Earth product 216 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 216 ; + } + +# EC-Earth product 217 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 217 ; + } + +# EC-Earth product 218 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 218 ; + } + +# EC-Earth product 219 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 219 ; + } + +# EC-Earth product 220 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 220 ; + } + +# EC-Earth product 221 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 221 ; + } + +# EC-Earth product 222 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 222 ; + } + +# EC-Earth product 223 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 223 ; + } + +# EC-Earth product 224 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 224 ; + } + +# EC-Earth product 225 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 225 ; + } + +# EC-Earth product 226 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 226 ; + } + +# EC-Earth product 227 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 227 ; + } + +# EC-Earth product 228 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 228 ; + } + +# EC-Earth product 229 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 229 ; + } + +# EC-Earth product 230 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 230 ; + } + +# EC-Earth product 231 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 231 ; + } + +# EC-Earth product 232 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 232 ; + } + +# EC-Earth product 233 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 233 ; + } + +# EC-Earth product 234 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 234 ; + } + +# EC-Earth product 235 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 235 ; + } + +# EC-Earth product 236 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 236 ; + } + +# EC-Earth product 237 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 237 ; + } + +# EC-Earth product 238 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 238 ; + } + +# EC-Earth product 239 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 239 ; + } + +# EC-Earth product 240 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 240 ; + } + +# EC-Earth product 241 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 241 ; + } + +# EC-Earth product 242 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 242 ; + } + +# EC-Earth product 243 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 243 ; + } + +# EC-Earth product 244 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 244 ; + } + +# EC-Earth product 245 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 245 ; + } + +# EC-Earth product 246 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 246 ; + } + +# EC-Earth product 247 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 247 ; + } + +# EC-Earth product 248 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 248 ; + } + +# EC-Earth product 249 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 249 ; + } + +# EC-Earth product 250 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 250 ; + } + +# EC-Earth product 251 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 251 ; + } + +# EC-Earth product 252 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 252 ; + } + +# EC-Earth product 253 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 253 ; + } + +# EC-Earth product 254 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 254 ; + } + +# EC-Earth product 255 +'~' = { + table2Version = 126 ; + indicatorOfParameter = 255 ; + } diff --git a/ece2cmor/ece2cmor3/resources/grib_codes.json b/ece2cmor/ece2cmor3/resources/grib_codes.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa800bdd233f5d802738e751193d28bfea97d27 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/grib_codes.json @@ -0,0 +1,309 @@ +{ + "MFP3D": [ + "20.126", + "21.126", + "22.126", + "23.126", + "24.126", + "25.126", + "26.126", + "27.126", + "28.126", + "29.126", + "30.126", + "31.126", + "32.126", + "33.126", + "34.126", + "35.126", + "55.126", + "56.126", + "57.126", + "58.126", + "59.126", + "60.126", + "61.126", + "62.126", + "63.126", + "64.126", + "65.126", + "66.126", + "67.126", + "86.126", + "87.126", + "88.126", + "89.126", + "90.126", + "91.126", + "92.126", + "93.126", + "94.126", + "95.126", + "96.126", + "97.126", + "98.126", + "99.126", + "100.126", + "101.126", + "102.126", + "103.126", + "104.126", + "105.126", + "106.126", + "107.126", + "108.126", + "110.126", + "120.126", + "121.126", + "122.126", + "123.126", + "124.126", + "125.126", + "126.126", + "127.126", + "128.126", + "129.126", + "130.126", + "131.126", + "132.126", + "3.128", + "53.128", + "54.128", + "60.128", + "75.128", + "76.128", + "129.128", + "130.128", + "131.128", + "132.128", + "133.128", + "135.128", + "138.128", + "155.128", + "157.128", + "203.128", + "246.128", + "247.128", + "248.128" + ], + "MFP2DF": [ + "129.128", + "134.128", + "152.128" + ], + "MFPPHY": [ + "30.126", + "31.126", + "32.126", + "33.126", + "34.126", + "40.126", + "41.126", + "42.126", + "43.126", + "44.126", + "45.126", + "46.126", + "47.126", + "48.126", + "49.126", + "51.126", + "52.126", + "53.126", + "54.126", + "68.126", + "69.126", + "72.126", + "73.126", + "151.126", + "152.126", + "8.128", + "9.128", + "31.128", + "32.128", + "33.128", + "34.128", + "35.128", + "36.128", + "37.128", + "38.128", + "39.128", + "40.128", + "41.128", + "42.128", + "43.128", + "44.128", + "45.128", + "49.128", + "50.128", + "57.128", + "58.128", + "78.128", + "79.128", + "121.128", + "122.128", + "123.128", + "124.128", + "125.128", + "129.128", + "136.128", + "137.128", + "139.128", + "141.128", + "142.128", + "143.128", + "144.128", + "145.128", + "146.128", + "147.128", + "148.128", + "151.128", + "159.128", + "164.128", + "165.128", + "166.128", + "167.128", + "168.128", + "169.128", + "170.128", + "172.128", + "173.128", + "174.128", + "175.128", + "176.128", + "177.128", + "178.128", + "179.128", + "180.128", + "181.128", + "182.128", + "183.128", + "185.128", + "186.128", + "187.128", + "188.128", + "189.128", + "195.128", + "196.128", + "197.128", + "198.128", + "201.128", + "202.128", + "205.128", + "206.128", + "208.128", + "209.128", + "210.128", + "211.128", + "212.128", + "213.128", + "228.128", + "229.128", + "230.128", + "231.128", + "232.128", + "234.128", + "235.128", + "236.128", + "238.128", + "243.128", + "244.128", + "245.128", + "1.228", + "8.228", + "9.228", + "10.228", + "11.228", + "12.228", + "13.228", + "14.228", + "24.228", + "89.228", + "90.228", + "246.228", + "247.228", + "121.260", + "123.260" + ], + "ICMSH": [ + "53.128", + "54.128", + "129.128", + "130.128", + "131.128", + "132.128", + "135.128", + "138.128", + "152.128", + "155.128", + "157.128" + ], + "ACCUMFLD": [ + "8.128", + "9.128", + "44.128", + "45.128", + "49.128", + "50.128", + "57.128", + "58.128", + "121.128", + "122.128", + "123.128", + "142.128", + "143.128", + "144.128", + "145.128", + "146.128", + "147.128", + "169.128", + "175.128", + "176.128", + "177.128", + "178.128", + "179.128", + "180.128", + "181.128", + "182.128", + "189.128", + "195.128", + "196.128", + "197.128", + "201.128", + "202.128", + "205.128", + "208.128", + "209.128", + "210.128", + "211.128", + "212.128", + "228.128", + "68.126", + "69.126", + "70.126", + "71.126", + "72.126", + "73.126", + "74.126", + "75.126", + "106.126", + "110.126", + "120.126", + "121.126", + "122.126", + "123.126", + "124.126", + "125.126", + "126.126", + "127.126", + "128.126", + "129.126", + "130.126", + "131.126", + "132.126" + ], + "FXFLD": [ + "43.128", + "172.128" + ] +} diff --git a/ece2cmor/ece2cmor3/resources/ifspar.json b/ece2cmor/ece2cmor3/resources/ifspar.json new file mode 100644 index 0000000000000000000000000000000000000000..25eb8f2d4a96c3a5cd32af55786af53f4bb3c929 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/ifspar.json @@ -0,0 +1,1131 @@ +[ + { + "source": "21.126", + "convert": "micron2m", + "target": "reffclws" + }, + { + "source": "22.126", + "target": "liqcldtime" + }, + { + "source": "24.126", + "convert": "micron2m", + "target": "reffclis" + }, + { + "source": "25.126", + "target": "icecldtime" + }, + { + "source": "26.126", + "target": "quaaci" + }, + { + "source": "27.126", + "target": "quacoi" + }, + { + "source": "28.126", + "target": "felaci" + }, + { + "source": "29.126", + "target": "felcoi" + }, + { + "source": "30.126", + "target": "duacs" + }, + { + "source": "31.126", + "target": "ducos" + }, + { + "source": "32.126", + "target": "duaci" + }, + { + "source": "33.126", + "target": "ducoi" + }, + { + "source": "34.126", + "target": "moacs" + }, + { + "source": "35.126", + "target": "mocos" + }, + { + "source": "240.129", + "target": "cllcalipso", + "expr": "(var126040>=0) ? var126040 : 0/0" + }, + { + "source": "241.129", + "target": "clmcalipso", + "expr": "(var126041>=0) ? var126041 : 0/0" + }, + { + "source": "242.129", + "target": "clhcalipso", + "expr": "(var126042>=0) ? var126042 : 0/0" + }, + { + "source": "243.129", + "target": "cltcalipso", + "expr": "(var126043>=0) ? var126043 : 0/0" + }, + { + "source": "244.129", + "target": "cltisccp", + "expr": "(var126044>=0) ? var126044 : 0/0" + }, + { + "source": "245.129", + "target": "pctisccp", + "expr": "(var126045>=0) ? var126045 : 0/0" + }, + { + "source": "246.129", + "target": "albisccp", + "expr": "(var126046>=0) ? var126046 : 0/0" + }, + { + "source": "247.129", + "target": "cltmodis", + "expr": "(var126047>=0) ? var126047 : 0/0" + }, + { + "source": "248.129", + "target": "clwmodis", + "expr": "(var126048>=0) ? var126048 : 0/0" + }, + { + "source": "249.129", + "target": "climodis", + "expr": "(var126049>=0) ? var126049 : 0/0" + }, + { + "source": "251.129", + "target": "lwpmodis", + "expr": "(var126051>=0) ? var126051 : 0/0" + }, + { + "source": "252.129", + "target": "iwpmodis", + "expr": "(var126052>=0) ? var126052 : 0/0" + }, + { + "source": "253.129", + "convert": "micron2m", + "target": "reffclwmodis", + "expr": "(var126053>=0) ? var126053 : 0/0" + }, + { + "source": "254.129", + "convert": "micron2m", + "target": "reffclimodis", + "expr": "(var126054>=0) ? var126054 : 0/0" + }, + { + "source": "255.129", + "target": "clcalipso", + "expr": "(var126055>=0) ? var126055 : 0/0" + }, + { + "source": "66.126", + "target": "bcacs" + }, + { + "source": "67.126", + "target": "bccos" + }, + { + "source": "70.126", + "convert": "cum2inst", + "target": "rsscsaf" + }, + { + "source": "71.126", + "convert": "cum2inst", + "target": "rssaf" + }, + { + "source": "72.126", + "convert": "cum2inst", + "target": "rlutcsaf" + }, + { + "source": "73.126", + "convert": "cum2inst", + "target": "rlutaf" + }, + { + "source": "74.126", + "convert": "cum2inst", + "target": "rlscsaf" + }, + { + "source": "75.126", + "convert": "cum2inst", + "target": "rlsaf" + }, + { + "source": "86.126", + "target": "alltime" + }, + { + "source": "93.126", + "target": "vmrmoacs" + }, + { + "source": "94.126", + "target": "vmrfelaci" + }, + { + "source": "95.126", + "target": "vmrfelcoi" + }, + { + "source": "96.126", + "target": "vmrquaaci" + }, + { + "source": "97.126", + "target": "vmrquacoi" + }, + { + "source": "98.126", + "target": "vmrduaci" + }, + { + "source": "99.126", + "target": "vmrducoi" + }, + { + "source": "100.126", + "target": "vmrduacs" + }, + { + "source": "101.126", + "target": "vmrducos" + }, + { + "source": "102.126", + "target": "vmrbcacs" + }, + { + "source": "103.126", + "target": "vmrbccos" + }, + { + "source": "104.126", + "target": "nmraccs" + }, + { + "source": "105.126", + "target": "nmrcoas" + }, + { + "source": "106.126", + "convert": "cum2inst", + "target": "tnhusc" + }, + { + "source": "107.126", + "target": "fisupsat" + }, + { + "source": "108.126", + "target": "moiairden" + }, + { + "source": "120.126", + "convert": "cum2inst", + "target": "utendnogw" + }, + { + "source": "121.126", + "convert": "cum2inst", + "target": "utendogw" + }, + { + "source": "122.126", + "convert": "cum2inst", + "target": "vtendnogw" + }, + { + "source": "123.126", + "convert": "cum2inst", + "target": "vtendogw" + }, + { + "source": "124.126", + "convert": "cum2inst", + "target": "tntmp" + }, + { + "source": "125.126", + "convert": "cum2inst", + "target": "tntrl" + }, + { + "source": "126.126", + "convert": "cum2inst", + "target": "tntrs" + }, + { + "source": "127.126", + "convert": "cum2inst", + "target": "tntrlcs" + }, + { + "source": "128.126", + "convert": "cum2inst", + "target": "tntrscs" + }, + { + "comment": "previous source was: 105.126", + "source": "129.126", + "convert": "cum2inst", + "target": "tntc" + }, + { + "source": "130.126", + "convert": "cum2inst", + "target": "tntscp" + }, + { + "source": "131.126", + "convert": "cum2inst", + "target": "tntnogw" + }, + { + "source": "132.126", + "convert": "cum2inst", + "target": "tntogw" + }, + { + "source": "151.126", + "target": "nudgincsm" + }, + { + "source": "152.126", + "target": "nudgincswe" + }, + { + "source": "8.128", + "convert": "vol2flux", + "target": "mrros", + "masked": "land" + }, + { + "source": "9.128", + "convert": "vol2flux", + "target": "mrrob", + "masked": "land" + }, + { + "source": "31.129", + "target": "siconca", + "expr": "var31 / (var172<=0.5)", + "convert": "frac2percent", + "missval": "0" + }, + { + "source": "34.128", + "target": "tosa", + "convert": "K2degC", + "masked": "sea" + }, + { + "source": "44.128", + "convert": "vol2flux", + "target": "sbl" + }, + { + "source": "45.128", + "target": [ + "snm", + "snmIs" + ], + "convert": "vol2flux", + "masked": "land" + }, + { + "source": "49.128", + "target": [ + "wsgmax10m" + ] + }, + { + "source": "54.128", + "target": "pfull" + }, + { + "source": "78.128", + "target": "lwp" + }, + { + "source": "79.128", + "target": "clivi" + }, + { + "source": "129.128", + "convert": "pot2alt", + "target": [ + "zg", + "zg7h", + "zg27", + "zg500", + "zg1000", + "areacella", + "orog", + "orogIs" + ] + }, + { + "source": "130.128", + "target": [ + "ta", + "ta7h", + "ta23r", + "ta36", + "ta27", + "ta500", + "ta700", + "ta850" + ] + }, + { + "source": "131.128", + "target": [ + "ua", + "ua7h", + "ua23r", + "ua36", + "ua27" + ] + }, + { + "source": "132.128", + "target": [ + "va", + "va7h", + "va23r", + "va36", + "va27" + ] + }, + { + "source": "246.228", + "target": [ + "ua100m" + ] + }, + { + "source": "247.228", + "target": [ + "va100m" + ] + }, + { + "source": "133.128", + "target": [ + "hus", + "hus4", + "hus7h", + "hus23r", + "hus36", + "hus27", + "hus850" + ] + }, + { + "source": "134.128", + "target": "ps" + }, + { + "source": "135.128", + "target": [ + "wap", + "wap2", + "wap4", + "wap500" + ] + }, + { + "source": "137.128", + "target": "prw" + }, + { + "source": "138.128", + "target": [ + "rv850", + "vortmean" + ] + }, + { + "source": "139.128", + "target": [ + "ts", + "tsIs" + ] + }, + { + "source": "141.128", + "target": [ + "snw", + "lwsnl" + ], + "convert": "vol2massl", + "masked": "land" + }, + { + "source": "143.128", + "convert": "vol2flux", + "target": "prc" + }, + { + "source": "144.128", + "convert": "vol2flux", + "target": [ + "prsn", + "prsnIs" + ] + }, + { + "source": "146.128", + "convert": "cum2inst", + "target": [ + "hfss", + "hfssIs" + ] + }, + { + "source": "147.128", + "convert": "cum2inst", + "target": [ + "hfls", + "hflsIs" + ] + }, + { + "source": "151.128", + "target": "psl" + }, + { + "source": "157.128", + "target": "hur" + }, + { + "source": "159.128", + "target": "zmla" + }, + { + "source": "164.128", + "target": "clt", + "convert": "frac2percent" + }, + { + "source": "165.128", + "target": "uas" + }, + { + "source": "166.128", + "target": "vas" + }, + { + "source": "167.128", + "target": [ + "tas", + "tasIs" + ] + }, + { + "source": "168.128", + "target": "tdps" + }, + { + "source": "169.128", + "convert": "cum2inst", + "target": [ + "rsds", + "rsdsIs" + ] + }, + { + "source": "172.128", + "target": "sftlf", + "convert": "frac2percent" + }, + { + "source": "175.128", + "convert": "cum2inst", + "target": [ + "rlds", + "rldsIs" + ] + }, + { + "source": "176.128", + "target": "rss" + }, + { + "source": "177.128", + "target": "rls" + }, + { + "source": "179.128", + "convert": "cum2inst", + "target": "rlut" + }, + { + "source": "180.128", + "convert": "cum2inst", + "target": "tauu" + }, + { + "source": "181.128", + "convert": "cum2inst", + "target": "tauv" + }, + { + "source": "182.128", + "convert": "vol2fluxup", + "target": [ + "evspsbl", + "sblIs" + ] + }, + { + "source": "185.128", + "target": "cltc", + "convert": "frac2percent" + }, + { + "source": "198.128", + "convert": "vol2massl", + "target": "cw" + }, + { + "source": "201.128", + "target": "tasmax" + }, + { + "source": "202.128", + "target": "tasmin" + }, + { + "source": "205.128", + "convert": "vol2flux", + "target": [ + "mrro", + "mrroIs" + ], + "masked": "land" + }, + { + "source": "209.128", + "convert": "cum2inst", + "target": "rlutcs" + }, + { + "source": "212.128", + "convert": "cum2inst", + "target": [ + "rsdt" + ] + }, + { + "source": "228.128", + "convert": "vol2flux", + "target": "pr" + }, + { + "source": "235.128", + "target": [ + "tslsi", + "tsland", + "tr" + ], + "masked": "land" + }, + { + "source": "238.128", + "target": [ + "tsn", + "tsns", + "tsnIs" + ] + }, + { + "source": "246.128", + "target": "clw" + }, + { + "source": "247.128", + "target": "cli" + }, + { + "source": "248.128", + "target": "cl", + "convert": "frac2percent" + }, + { + "source": "23.129", + "target": "cdnc", + "expr": " (var126022 > 1e-6)? 1e+6*var126020/var126022 : 0", + "expr_order": "1" + }, + { + "source": "26.129", + "target": "icnc", + "expr": " (var126025 > 1e-6 && var126023 > 0)? var126023/var126025 : 0", + "expr_order": "1" + }, + { + "source": "43.129", + "target": "mrso", + "expr": "70*var39+210*var40+720*var41+1890*var42", + "masked": "land", + "interpolate": "nn" + }, + { + "source": "44.129", + "target": "mrsow", + "expr": " ((var39 * 0.07 + var40 * 0.21 + var41 * 0.72 + var42 * 1.89) / (0.07 + 0.21 + 0.72 + 1.89) - ((var43==1)*0.059+(var43==2)*0.151+(var43==3)*0.133+(var43==4)*0.279+(var43==5)*0.335+(var43==6)*0.267+(var43==7)*0.171)) / (((var43==1)*0.403+(var43==2)*0.439+(var43==3)*0.430+(var43==4)*0.520+(var43==5)*0.614+(var43==6)*0.766+(var43==7)*0.472) - ((var43==1)*0.059+(var43==2)*0.151+(var43==3)*0.133+(var43==4)*0.279+(var43==5)*0.335+(var43==6)*0.267+(var43==7)*0.171))", + "masked": "land", + "interpolate": "nn" + }, + { + "source": "50.129", + "target": "clayfrac", + "expr": "merge((var139>0)*((var43==1)*0.0+(var43==2)*0.0+(var43==3)*0.2+(var43==4)*0.8+(var43==5)*1.0+(var43==6)*0.4+(var43==7)*1.0/3.0),(var170>0)*((var43==1)*0.0+(var43==2)*0.0+(var43==3)*0.2+(var43==4)*0.8+(var43==5)*1.0+(var43==6)*0.4+(var43==7)*1.0/3.0),(var183>0)*((var43==1)*0.0+(var43==2)*0.0+(var43==3)*0.2+(var43==4)*0.8+(var43==5)*1.0+(var43==6)*0.4+(var43==7)*1.0/3.0),(var236>0)*((var43==1)*0.0+(var43==2)*0.0+(var43==3)*0.2+(var43==4)*0.8+(var43==5)*1.0+(var43==6)*0.4+(var43==7)*1.0/3.0))", + "masked": "land", + "interpolate": "nn" + }, + { + "source": "51.129", + "target": "siltfrac", + "expr": "merge((var139>0)*((var43==1)*0.0+(var43==2)*0.4+(var43==3)*0.6+(var43==4)*0.2+(var43==5)*0.0+(var43==6)*0.4+(var43==7)*1.0/3.0),(var170>0)*((var43==1)*0.0+(var43==2)*0.4+(var43==3)*0.6+(var43==4)*0.2+(var43==5)*0.0+(var43==6)*0.4+(var43==7)*1.0/3.0),(var183>0)*((var43==1)*0.0+(var43==2)*0.4+(var43==3)*0.6+(var43==4)*0.2+(var43==5)*0.0+(var43==6)*0.4+(var43==7)*1.0/3.0),(var236>0)*((var43==1)*0.0+(var43==2)*0.4+(var43==3)*0.6+(var43==4)*0.2+(var43==5)*0.0+(var43==6)*0.4+(var43==7)*1.0/3.0))", + "masked": "land", + "interpolate": "nn" + }, + { + "source": "52.129", + "target": "sandfrac", + "expr": "merge((var139>0)*((var43==1)*1.0+(var43==2)*0.6+(var43==3)*0.2+(var43==4)*0.0+(var43==5)*0.0+(var43==6)*0.2+(var43==7)*1.0/3.0),(var170>0)*((var43==1)*1.0+(var43==2)*0.6+(var43==3)*0.2+(var43==4)*0.0+(var43==5)*0.0+(var43==6)*0.2+(var43==7)*1.0/3.0),(var183>0)*((var43==1)*1.0+(var43==2)*0.6+(var43==3)*0.2+(var43==4)*0.0+(var43==5)*0.0+(var43==6)*0.2+(var43==7)*1.0/3.0),(var236>0)*((var43==1)*1.0+(var43==2)*0.6+(var43==3)*0.2+(var43==4)*0.0+(var43==5)*0.0+(var43==6)*0.2+(var43==7)*1.0/3.0))", + "masked": "land", + "interpolate": "nn" + }, + { + "source": "56.129", + "target": "icncpip", + "expr": " (var126025 > 1e-6 && var126056 > 0)? var126056/var126025 : 0", + "expr_order": "1" + }, + { + "source": "57.129", + "target": "icncsip", + "expr": " (var126025 > 1e-6 && var126057 > 0)? var126057/var126025 : 0", + "expr_order": "1" + }, + { + "source": "58.129", + "target": "icncatkinson", + "expr": " (var126025 > 1e-6 && var126058 > 0)? var126058/var126025 : 0", + "expr_order": "1" + }, + { + "source": "60.129", + "target": "icncullrichif", + "expr": " (var126025 > 1e-6 && var126060 > 0)? var126060/var126025 : 0", + "expr_order": "1" + }, + { + "source": "61.129", + "target": "icncullrichdn", + "expr": " (var126025 > 1e-6 && var126061 > 0)? var126061/var126025 : 0", + "expr_order": "1" + }, + { + "source": "64.129", + "target": "icncharrison", + "expr": " (var126025 > 1e-6 && var126064 > 0)? var126064/var126025 : 0", + "expr_order": "1" + }, + { + "source": "65.129", + "target": "icncwilson", + "expr": " (var126025 > 1e-6 && var126065 > 0)? var126065/var126025 : 0", + "expr_order": "1" + }, + { + "source": "74.129", + "target": "rsutaf", + "convert": "cum2inst", + "expr": "var126069-var128212" + }, + { + "source": "75.129", + "target": "rsutcsaf", + "convert": "cum2inst", + "expr": "var126068-var128212" + }, + { + "source": "80.129", + "target": [ + "hurs", + "hursmin", + "hursmax" + ], + "expr": "100.*exp(17.62*((var168-273.15)/(var168-30.03)-(var167-273.15)/(var167-30.03)))" + }, + { + "source": "81.129", + "target": "huss", + "expr": "1./(1.+1.608*(var134*exp(-17.62*(var168-273.15)/(var168-30.03))/611.-1.))" + }, + { + "source": "85.129", + "target": "mrfso", + "expr": "1000*(0.07*var39*((var139<270.16)+0.5*(var139<274.16 && var139>270.16)*(1-sin(0.785*(var139-272.16)))) + 0.21*var40*((var170<270.16)+0.5*(var170<274.16 && var170>270.16)*(1-sin(0.785*(var170-272.16)))) + 0.72*var41*((var183<270.16)+0.5*(var183<274.16 && var183>270.16)*(1-sin(0.785*(var183-272.16)))) + 1.89*var42*((var236<270.16)+0.5*(var236<274.16 && var236>270.16)*(1-sin(0.785*(var236-272.16)))))", + "masked": "land", + "interpolate": "nn" + }, + { + "source": "87.129", + "target": "icncpippar", + "expr": " (var126086 > 1e-6 && var126087 > 0)? var126087/var126086 : 0", + "expr_order": "1" + }, + { + "source": "88.129", + "target": "icncatkinsonpar", + "expr": " (var126086 > 1e-6 && var126088 > 0)? var126088/var126086 : 0", + "expr_order": "1" + }, + { + "source": "89.129", + "target": "icncullrichifpar", + "expr": " (var126086 > 1e-6 && var126089 > 0)? var126089/var126086 : 0", + "expr_order": "1" + }, + { + "source": "90.129", + "target": "icncullrichdnpar", + "expr": " (var126086 > 1e-6 && var126090 > 0)? var126090/var126086 : 0", + "expr_order": "1" + }, + { + "source": "91.129", + "target": "icncharrisonpar", + "expr": " (var126086 > 1e-6 && var126091 > 0)? var126091/var126086 : 0", + "expr_order": "1" + }, + { + "source": "92.129", + "target": "icncwilsonpar", + "expr": " (var126086 > 1e-6 && var126092 > 0)? var126092/var126086 : 0", + "expr_order": "1" + }, + { + "source": "95.129", + "convert": "cum2inst", + "target": [ + "rsus", + "rsusIs" + ], + "expr": "var176-var169" + }, + { + "source": "96.129", + "convert": "cum2inst", + "target": [ + "rlus", + "rlusIs" + ], + "expr": "var177-var175" + }, + { + "source": "97.129", + "convert": "cum2inst", + "target": "rsut", + "expr": "var178-var212" + }, + { + "source": "98.129", + "convert": "cum2inst", + "target": "rtmt", + "expr": "var178+var179" + }, + { + "source": "99.129", + "target": "mrsos", + "expr": "70*var39+30*var40", + "masked": "land", + "interpolate": "nn" + }, + { + "source": "100.129", + "target": "ut", + "expr": "var131*var130" + }, + { + "source": "101.129", + "target": "vt", + "expr": "var132*var130" + }, + { + "source": "103.129", + "convert": "cum2inst", + "target": "rsutcs", + "expr": "var208-var212" + }, + { + "source": "104.129", + "convert": "cum2inst", + "target": "rldscs", + "expr": "var211-var177+var175" + }, + { + "source": "107.129", + "target": "u2", + "expr": "var131*var131" + }, + { + "source": "108.129", + "target": "v2", + "expr": "var132*var132" + }, + { + "source": "109.129", + "target": "uv", + "expr": "var131*var132" + }, + { + "source": "110.129", + "target": "t2", + "expr": "var130*var130" + }, + { + "source": "111.129", + "target": "uwap", + "expr": "var131*var135" + }, + { + "source": "112.129", + "target": "vwap", + "expr": "var132*var135" + }, + { + "source": "113.129", + "target": "twap", + "expr": "var130*var135" + }, + { + "source": "115.129", + "target": "snd", + "expr": "1000*var141/var33" + }, + { + "source": "116.129", + "target": "clwvi", + "expr": "var78+var79" + }, + { + "source": "117.129", + "target": "tsl", + "expr": "merge(var139,var170,var183,var236)", + "masked": "land", + "table_override": + { + "table": "6hrPlevPt", + "source": "139.128", + "masked": "land" + } + }, + { + "source": "215.129", + "target": "tsl4sl", + "expr": "merge(var139,var170,var183,var236)", + "masked": "land" + }, + { + "source": "118.129", + "target": "mrsol", + "expr": "merge(70*var39,210*var40,720*var41,1890*var42)", + "masked": "land", + "interpolate": "nn" + }, + { + "source": "119.129", + "target": "snc", + "expr": "100*(var141>0)" + }, + { + "source": "120.129", + "target": "hfdsn", + "expr": "(var141>0)*(var146+var147+var176+var177)", + "convert": "cum2inst" + }, + { + "source": "121.129", + "target": "hfdsl", + "expr": "var146+var147+var176+var177", + "convert": "cum2inst", + "masked": "land" + }, + { + "source": "122.129", + "target": "prraIs", + "expr": "var142+var143-var144" + }, + { + "source": "123.129", + "target": "wa", + "expr": "-287.085*var130*var135/(9.81*var54)", + "comment": "Discarding water vapour..." + }, + { + "source": "124.129", + "target": "tnhus", + "expr": "var126094+var126099+var126106+var126110" + }, + { + "source": "125.129", + "target": "tnhusmp", + "expr": "var126099+var126106+var126110" + }, + { + "source": "126.129", + "target": "prra", + "expr": "var142+var143-var144" + }, + { + "source": "127.129", + "target": "hfmlt", + "expr": "333411*var45", + "convert": "vol2flux", + "masked": "land" + }, + { + "source": "128.129", + "target": "hfsbl", + "expr": "2834123*var44", + "convert": "vol2flux", + "masked": "land" + }, + { + "source": "129.129", + "target": "tau", + "expr": "sqrt(sqr(var180)+sqr(var181))" + }, + { + "source": "130.129", + "target": "esn", + "expr": "var44+var182", + "convert": "cum2inst", + "masked": "land" + }, + { + "source": "131.129", + "convert": "cum2inst", + "target": "rsuscs", + "expr": "(var176>1e-10)*var210*(1-var169/var176)" + }, + { + "source": "132.129", + "convert": "cum2inst", + "target": "rsdscs", + "expr": "(var176<=1e-10)*var210+(var176>1e-10)*var210*var169/var176" + }, + { + "source": "133.129", + "target": "slthick", + "expr": "merge((var139>0)*0.07,(var170>0)*0.21,(var183>0)*0.72,(var236>0)*1.89)", + "masked": "land" + }, + { + "source": "134.129", + "target": "albsn", + "expr": "var141?var32:1.e+14", + "fillval": "1.e+14" + }, + { + "source": "214.129", + "target": [ + "sfcWind", + "sfcWindmax" + ], + "expr": "sqrt(sqr(var165)+sqr(var166))" + }, + { + "source": "215.129", + "target": "epfy", + "post-proc": "make_dynvars" + }, + { + "source": "216.129", + "target": "epfz", + "post-proc": "make_dynvars" + }, + { + "source": "217.129", + "target": "vtem", + "post-proc": "make_dynvars" + }, + { + "source": "218.129", + "target": "wtem", + "post-proc": "make_dynvars" + }, + { + "source": "219.129", + "target": "psitem", + "post-proc": "make_dynvars" + }, + { + "source": "220.129", + "target": "utendepfd", + "post-proc": "make_dynvars" + }, + { + "source": "221.129", + "target": "utendvtem", + "post-proc": "make_dynvars" + }, + { + "source": "222.129", + "target": "utendwtem", + "post-proc": "make_dynvars" + }, + { + "source": "235.129", + "target": [ + "tslsi" + ], + "expr": "var235/(var31>0 || var172>0.5)" + }, + { + "mask": "land", + "expr": "var172>0.5" + }, + { + "mask": "sea", + "expr": "var172<=0.5" + }, + { + "mask": "sea_ice", + "expr": "var31>0", + "comment": "This time dependent sea_ice mask can not be used in other variables. Use a var31 division direct in the expression." + }, + { + "script": "make_dynvars", + "src": "make_dynvars.sh", + "filter": "False" + } +] diff --git a/ece2cmor/ece2cmor3/resources/list-of-identified-missing-cmip6-requested-variables-enable-pextra.xlsx b/ece2cmor/ece2cmor3/resources/list-of-identified-missing-cmip6-requested-variables-enable-pextra.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..a78019d2981a250d2eac03101a44d1ebcac9b34a Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/list-of-identified-missing-cmip6-requested-variables-enable-pextra.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/list-of-identified-missing-cmip6-requested-variables.xlsx b/ece2cmor/ece2cmor3/resources/list-of-identified-missing-cmip6-requested-variables.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..f20fdc54b7aac52c7b3b5e6b6e0e06cf5f857257 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/list-of-identified-missing-cmip6-requested-variables.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/list-of-ignored-cmip6-requested-variables-enable-DynVarMIP.xlsx b/ece2cmor/ece2cmor3/resources/list-of-ignored-cmip6-requested-variables-enable-DynVarMIP.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..1c4260fc8367979e6d0475084afe45f54fbb27f5 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/list-of-ignored-cmip6-requested-variables-enable-DynVarMIP.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/list-of-ignored-cmip6-requested-variables.xlsx b/ece2cmor/ece2cmor3/resources/list-of-ignored-cmip6-requested-variables.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..449411f39292dad27c3f62de1302f823564fc0a8 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/list-of-ignored-cmip6-requested-variables.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-01.xlsx b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-01.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..acc2db6ccdf442c77026cca4481e0cfdba2b5593 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-01.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-02.xlsx b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-02.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..acc2db6ccdf442c77026cca4481e0cfdba2b5593 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-02.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-03.xlsx b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-03.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..acc2db6ccdf442c77026cca4481e0cfdba2b5593 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-03.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-04.xlsx b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-04.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..acc2db6ccdf442c77026cca4481e0cfdba2b5593 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-04.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-05.xlsx b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-05.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..acc2db6ccdf442c77026cca4481e0cfdba2b5593 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/lists-of-omitted-variables/list-of-omitted-variables-05.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/lpjg-grid-content/create_cdo_ingrid_for_lpjgout.py b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/create_cdo_ingrid_for_lpjgout.py new file mode 100755 index 0000000000000000000000000000000000000000..0633fec09cdb7bd90d2190e5b0c0b1e98943327e --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/create_cdo_ingrid_for_lpjgout.py @@ -0,0 +1,136 @@ +#!/usr/bin/env python + +# Note that at the time the script gave different precision results for different +# python versions,see https://github.com/EC-Earth/ece2cmor3/issues/633. + +# Call the script like: +# ./create_cdo_ingrid_for_lpjgout.py +# python create_cdo_ingrid_for_lpjgout.py + +import netCDF4 as nc +import numpy as np + +""" +Create an input-grid ascii file (ingrid-file) to be used with CDO to convert from +the output of out2nc into a regular gaussian +using in the produced ingrid.txt in cdo like +cdo remapycon,n128 -setgrid, red_gaussian.nc gaussian.nc + +The lon-lat-lpjg-auxiliary-T*-grid.nc files are obtained by: +ncks -v lon,lat LPJGtemp_T159.nc -o lon-lat-lpjg-auxiliary-T159-grid.nc +ncks -v lon,lat LPJGtemp_T255.nc -o lon-lat-lpjg-auxiliary-T255-grid.nc +The LPJGtemp_T*.nc files are provided by the LPJG community. +""" +################################################################################ +# Start user modification +################################################################################ + +# Loop over the desired grids: T159 and T255: +for grid in ["T159", "T255"]: + + # set directory to read grid from (LPJG_temp_.nc) + inpath ="./" + + # chose output, i.e. ingrid-filename + outpath = "./" + + # field separator + fsep = " " + + # Lines may only be 64k characters long, so choose a save number of "values per line" + # If there is a Warning from CDO about cell-weights vpl is probably to high + vpl = 500 + + ################################################################################ + # End user modification + ################################################################################ +#infile =inpath+"LPJGtemp_"+grid+".nc" + infile =inpath+"lon-lat-lpjg-auxiliary-"+grid+"-grid.nc" + ingridfile = outpath+"ingrid_"+grid+"_unstructured.txt" + + # open, read lat and lon, and close netcdf file + ds=nc.Dataset(infile,'r') + lats=np.array(ds.variables['lat'][0,:]) + lons=np.array(ds.variables['lon'][0,:]) + ds.close() + + llo = len(lons) + + # open ascii file for writing + f = open(ingridfile,'w') + + # set header parameters for ingrid-file + f.write("gridtype = unstructured \n") + f.write("gridsize = "+str(llo)+"\n") + f.write("xsize = "+str(llo)+"\n") + f.write("ysize = 1 \n") + # 4 corner-points for each cell + f.write("nvertex = 4 \n") + + # write center coordinates read from netcdf-file + f.write("xvals = ") + for x in range(llo): + f.write(str(lons[x])+fsep) + if ( x+1 ) % vpl == 0: + f.write(str('\n')) + f.write(str('\n')) + + f.write("yvals = ") + for x in range(llo): + f.write(str(lats[x])+fsep) + if ( x+1 ) % vpl == 0: + f.write(str('\n')) + f.write(str('\n')) + + # compute and write x and y boundaries, i.e. corner-coordinates + + # correction-factor for gridcell extension (1.0 leads to strange errors !!!only cdo v<1.6.x!!!) + corfac = 1.0 #0.99999 + + f.write("xbounds = ") + for x in range(llo): + # check how many identical lats there are + nlat = len(lats[lats==lats[x]]) + # 1/2 zonal extension of cells at this latitude + xnd = 0.5 * 360. / float(nlat) * corfac + f.write(str(lons[x]-xnd)+fsep+str(lons[x]+xnd)+fsep+str(lons[x]+xnd)+fsep+str(lons[x]-xnd)+fsep) + if ( x+1 ) % vpl == 0: + f.write(str('\n')) + f.write(str('\n')) + + # We start from 90 deg S northward. Since gaussian grids are not equidistant in N-S direction we need to + # take into account the different spacing north- and southward, respectively + + curr_lat = 90. + prev_lat = 90. + f.write("ybounds = ") + for x in range(llo): + # Check whether we moved south a step + if lats[x] != curr_lat: + prev_lat = curr_lat + curr_lat = lats[x] + # search for next latitude + if (curr_lat < -89.4 and grid == "T255") or (curr_lat < -89.14 and grid == "T159"): + next_lat = -90.0 + else: + for xx in range(x+1,llo,1): + if lats[xx] < curr_lat: + next_lat = lats[xx] + break + if prev_lat == 90.: + dnorth = (prev_lat - curr_lat) * corfac + else: + dnorth = (prev_lat - curr_lat) / 2. * corfac + if next_lat == -90.: + dsouth = (curr_lat - next_lat) * corfac + else: + dsouth = (curr_lat - next_lat) / 2. * corfac + + f.write(str(lats[x]+dnorth)+fsep+str(lats[x]+dnorth)+fsep+str(lats[x]-dsouth)+fsep+str(lats[x]-dsouth)+fsep) + if ( x+1 ) % vpl == 0: + f.write(str('\n')) + + f.write(str('\n')) + f.close() + + print(("Created file: "+ingridfile)) diff --git a/ece2cmor/ece2cmor3/resources/lpjg-grid-content/ingrid_T159_unstructured.txt b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/ingrid_T159_unstructured.txt new file mode 100644 index 0000000000000000000000000000000000000000..776e225fd55cfdf84398cb64fd98be187b7cb915 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/ingrid_T159_unstructured.txt @@ -0,0 +1,293 @@ +gridtype = unstructured +gridsize = 35718 +xsize = 35718 +ysize = 1 +nvertex = 4 +xvals = 0.0 20.0 40.0 60.0 80.0 100.0 120.0 140.0 160.0 180.0 200.0 220.0 240.0 260.0 280.0 300.0 320.0 340.0 0.0 14.4 28.8 43.2 57.6 72.0 86.4 100.8 115.2 129.6 144.0 158.4 172.8 187.2 201.6 216.0 230.4 244.8 259.2 273.6 288.0 302.4 316.8 331.2 345.6 0.0 10.0 20.0 30.0 40.0 50.0 60.0 70.0 80.0 90.0 100.0 110.0 120.0 130.0 140.0 150.0 160.0 170.0 180.0 190.0 200.0 210.0 220.0 230.0 240.0 250.0 260.0 270.0 280.0 290.0 300.0 310.0 320.0 330.0 340.0 350.0 0.0 9.0 18.0 27.0 36.0 45.0 54.0 63.0 72.0 81.0 90.0 99.0 108.0 117.0 126.0 135.0 144.0 153.0 162.0 171.0 180.0 189.0 198.0 207.0 216.0 225.0 234.0 243.0 252.0 261.0 270.0 279.0 288.0 297.0 306.0 315.0 324.0 333.0 342.0 351.0 0.0 8.0 16.0 24.0 32.0 40.0 48.0 56.0 64.0 72.0 80.0 88.0 96.0 104.0 112.0 120.0 128.0 136.0 144.0 152.0 160.0 168.0 176.0 184.0 192.0 200.0 208.0 216.0 224.0 232.0 240.0 248.0 256.0 264.0 272.0 280.0 288.0 296.0 304.0 312.0 320.0 328.0 336.0 344.0 352.0 0.0 6.66667 13.3333 20.0 26.6667 33.3333 40.0 46.6667 53.3333 60.0 66.6667 73.3333 80.0 86.6667 93.3333 100.0 106.667 113.333 120.0 126.667 133.333 140.0 146.667 153.333 160.0 166.667 173.333 180.0 186.667 193.333 200.0 206.667 213.333 220.0 226.667 233.333 240.0 246.667 253.333 260.0 266.667 273.333 280.0 286.667 293.333 300.0 306.667 313.333 320.0 326.667 333.333 340.0 346.667 353.333 0.0 6.0 12.0 18.0 24.0 30.0 36.0 42.0 48.0 54.0 60.0 66.0 72.0 78.0 84.0 90.0 96.0 102.0 108.0 114.0 120.0 126.0 132.0 138.0 144.0 150.0 156.0 162.0 168.0 174.0 180.0 186.0 192.0 198.0 204.0 210.0 216.0 222.0 228.0 234.0 240.0 246.0 252.0 258.0 264.0 270.0 276.0 282.0 288.0 294.0 300.0 306.0 312.0 318.0 324.0 330.0 336.0 342.0 348.0 354.0 0.0 5.625 11.25 16.875 22.5 28.125 33.75 39.375 45.0 50.625 56.25 61.875 67.5 73.125 78.75 84.375 90.0 95.625 101.25 106.875 112.5 118.125 123.75 129.375 135.0 140.625 146.25 151.875 157.5 163.125 168.75 174.375 180.0 185.625 191.25 196.875 202.5 208.125 213.75 219.375 225.0 230.625 236.25 241.875 247.5 253.125 258.75 264.375 270.0 275.625 281.25 286.875 292.5 298.125 303.75 309.375 315.0 320.625 326.25 331.875 337.5 343.125 348.75 354.375 0.0 5.0 10.0 15.0 20.0 25.0 30.0 35.0 40.0 45.0 50.0 55.0 60.0 65.0 70.0 75.0 80.0 85.0 90.0 95.0 100.0 105.0 110.0 115.0 120.0 125.0 130.0 135.0 140.0 145.0 150.0 155.0 160.0 165.0 170.0 175.0 180.0 185.0 190.0 195.0 200.0 205.0 210.0 215.0 220.0 225.0 230.0 235.0 240.0 245.0 250.0 255.0 260.0 265.0 270.0 275.0 280.0 285.0 290.0 295.0 300.0 305.0 310.0 315.0 320.0 325.0 330.0 335.0 340.0 345.0 350.0 355.0 0.0 5.0 10.0 15.0 20.0 25.0 30.0 35.0 40.0 45.0 50.0 55.0 60.0 65.0 70.0 75.0 80.0 85.0 90.0 95.0 100.0 105.0 110.0 115.0 120.0 125.0 130.0 135.0 140.0 145.0 150.0 155.0 160.0 165.0 170.0 175.0 180.0 185.0 190.0 195.0 200.0 205.0 210.0 215.0 220.0 225.0 230.0 235.0 240.0 245.0 250.0 255.0 260.0 265.0 270.0 275.0 280.0 285.0 290.0 295.0 300.0 305.0 310.0 315.0 320.0 325.0 330.0 335.0 340.0 345.0 350.0 355.0 0.0 4.5 9.0 13.5 18.0 22.5 27.0 31.5 36.0 40.5 45.0 49.5 54.0 58.5 +63.0 67.5 72.0 76.5 81.0 85.5 90.0 94.5 99.0 103.5 108.0 112.5 117.0 121.5 126.0 130.5 135.0 139.5 144.0 148.5 153.0 157.5 162.0 166.5 171.0 175.5 180.0 184.5 189.0 193.5 198.0 202.5 207.0 211.5 216.0 220.5 225.0 229.5 234.0 238.5 243.0 247.5 252.0 256.5 261.0 265.5 270.0 274.5 279.0 283.5 288.0 292.5 297.0 301.5 306.0 310.5 315.0 319.5 324.0 328.5 333.0 337.5 342.0 346.5 351.0 355.5 0.0 4.0 8.0 12.0 16.0 20.0 24.0 28.0 32.0 36.0 40.0 44.0 48.0 52.0 56.0 60.0 64.0 68.0 72.0 76.0 80.0 84.0 88.0 92.0 96.0 100.0 104.0 108.0 112.0 116.0 120.0 124.0 128.0 132.0 136.0 140.0 144.0 148.0 152.0 156.0 160.0 164.0 168.0 172.0 176.0 180.0 184.0 188.0 192.0 196.0 200.0 204.0 208.0 212.0 216.0 220.0 224.0 228.0 232.0 236.0 240.0 244.0 248.0 252.0 256.0 260.0 264.0 268.0 272.0 276.0 280.0 284.0 288.0 292.0 296.0 300.0 304.0 308.0 312.0 316.0 320.0 324.0 328.0 332.0 336.0 340.0 344.0 348.0 352.0 356.0 0.0 3.75 7.5 11.25 15.0 18.75 22.5 26.25 30.0 33.75 37.5 41.25 45.0 48.75 52.5 56.25 60.0 63.75 67.5 71.25 75.0 78.75 82.5 86.25 90.0 93.75 97.5 101.25 105.0 108.75 112.5 116.25 120.0 123.75 127.5 131.25 135.0 138.75 142.5 146.25 150.0 153.75 157.5 161.25 165.0 168.75 172.5 176.25 180.0 183.75 187.5 191.25 195.0 198.75 202.5 206.25 210.0 213.75 217.5 221.25 225.0 228.75 232.5 236.25 240.0 243.75 247.5 251.25 255.0 258.75 262.5 266.25 270.0 273.75 277.5 281.25 285.0 288.75 292.5 296.25 300.0 303.75 307.5 311.25 315.0 318.75 322.5 326.25 330.0 333.75 337.5 341.25 345.0 348.75 352.5 356.25 0.0 3.6 7.2 10.8 14.4 18.0 21.6 25.2 28.8 32.4 36.0 39.6 43.2 46.8 50.4 54.0 57.6 61.2 64.8 68.4 72.0 75.6 79.2 82.8 86.4 90.0 93.6 97.2 100.8 104.4 108.0 111.6 115.2 118.8 122.4 126.0 129.6 133.2 136.8 140.4 144.0 147.6 151.2 154.8 158.4 162.0 165.6 169.2 172.8 176.4 180.0 183.6 187.2 190.8 194.4 198.0 201.6 205.2 208.8 212.4 216.0 219.6 223.2 226.8 230.4 234.0 237.6 241.2 244.8 248.4 252.0 255.6 259.2 262.8 266.4 270.0 273.6 277.2 280.8 284.4 288.0 291.6 295.2 298.8 302.4 306.0 309.6 313.2 316.8 320.4 324.0 327.6 331.2 334.8 338.4 342.0 345.6 349.2 352.8 356.4 0.0 3.33333 6.66667 10.0 13.3333 16.6667 20.0 23.3333 26.6667 30.0 33.3333 36.6667 40.0 43.3333 46.6667 50.0 53.3333 56.6667 60.0 63.3333 66.6667 70.0 73.3333 76.6667 80.0 83.3333 86.6667 90.0 93.3333 96.6667 100.0 103.333 106.667 110.0 113.333 116.667 120.0 123.333 126.667 130.0 133.333 136.667 140.0 143.333 146.667 150.0 153.333 156.667 160.0 163.333 166.667 170.0 173.333 176.667 180.0 183.333 186.667 190.0 193.333 196.667 200.0 203.333 206.667 210.0 213.333 216.667 220.0 223.333 226.667 230.0 233.333 236.667 240.0 243.333 246.667 250.0 253.333 256.667 260.0 263.333 266.667 270.0 273.333 276.667 280.0 283.333 286.667 290.0 293.333 296.667 300.0 303.333 306.667 310.0 313.333 316.667 320.0 323.333 326.667 330.0 333.333 336.667 340.0 343.333 346.667 350.0 353.333 356.667 0.0 3.0 6.0 9.0 12.0 15.0 18.0 21.0 24.0 27.0 30.0 33.0 36.0 39.0 42.0 45.0 48.0 51.0 54.0 57.0 60.0 63.0 66.0 69.0 72.0 75.0 78.0 81.0 84.0 87.0 90.0 93.0 96.0 99.0 102.0 105.0 108.0 111.0 114.0 117.0 +120.0 123.0 126.0 129.0 132.0 135.0 138.0 141.0 144.0 147.0 150.0 153.0 156.0 159.0 162.0 165.0 168.0 171.0 174.0 177.0 180.0 183.0 186.0 189.0 192.0 195.0 198.0 201.0 204.0 207.0 210.0 213.0 216.0 219.0 222.0 225.0 228.0 231.0 234.0 237.0 240.0 243.0 246.0 249.0 252.0 255.0 258.0 261.0 264.0 267.0 270.0 273.0 276.0 279.0 282.0 285.0 288.0 291.0 294.0 297.0 300.0 303.0 306.0 309.0 312.0 315.0 318.0 321.0 324.0 327.0 330.0 333.0 336.0 339.0 342.0 345.0 348.0 351.0 354.0 357.0 0.0 3.0 6.0 9.0 12.0 15.0 18.0 21.0 24.0 27.0 30.0 33.0 36.0 39.0 42.0 45.0 48.0 51.0 54.0 57.0 60.0 63.0 66.0 69.0 72.0 75.0 78.0 81.0 84.0 87.0 90.0 93.0 96.0 99.0 102.0 105.0 108.0 111.0 114.0 117.0 120.0 123.0 126.0 129.0 132.0 135.0 138.0 141.0 144.0 147.0 150.0 153.0 156.0 159.0 162.0 165.0 168.0 171.0 174.0 177.0 180.0 183.0 186.0 189.0 192.0 195.0 198.0 201.0 204.0 207.0 210.0 213.0 216.0 219.0 222.0 225.0 228.0 231.0 234.0 237.0 240.0 243.0 246.0 249.0 252.0 255.0 258.0 261.0 264.0 267.0 270.0 273.0 276.0 279.0 282.0 285.0 288.0 291.0 294.0 297.0 300.0 303.0 306.0 309.0 312.0 315.0 318.0 321.0 324.0 327.0 330.0 333.0 336.0 339.0 342.0 345.0 348.0 351.0 354.0 357.0 0.0 2.8125 5.625 8.4375 11.25 14.0625 16.875 19.6875 22.5 25.3125 28.125 30.9375 33.75 36.5625 39.375 42.1875 45.0 47.8125 50.625 53.4375 56.25 59.0625 61.875 64.6875 67.5 70.3125 73.125 75.9375 78.75 81.5625 84.375 87.1875 90.0 92.8125 95.625 98.4375 101.25 104.062 106.875 109.688 112.5 115.312 118.125 120.938 123.75 126.562 129.375 132.188 135.0 137.812 140.625 143.438 146.25 149.062 151.875 154.688 157.5 160.312 163.125 165.938 168.75 171.562 174.375 177.188 180.0 182.812 185.625 188.438 191.25 194.062 196.875 199.688 202.5 205.312 208.125 210.938 213.75 216.562 219.375 222.188 225.0 227.812 230.625 233.438 236.25 239.062 241.875 244.688 247.5 250.312 253.125 255.938 258.75 261.562 264.375 267.188 270.0 272.812 275.625 278.438 281.25 284.062 286.875 289.688 292.5 295.312 298.125 300.938 303.75 306.562 309.375 312.188 315.0 317.812 320.625 323.438 326.25 329.062 331.875 334.688 337.5 340.312 343.125 345.938 348.75 351.562 354.375 357.188 0.0 2.66667 5.33333 8.0 10.6667 13.3333 16.0 18.6667 21.3333 24.0 26.6667 29.3333 32.0 34.6667 37.3333 40.0 42.6667 45.3333 48.0 50.6667 53.3333 56.0 58.6667 61.3333 64.0 66.6667 69.3333 72.0 74.6667 77.3333 80.0 82.6667 85.3333 88.0 90.6667 93.3333 96.0 98.6667 101.333 104.0 106.667 109.333 112.0 114.667 117.333 120.0 122.667 125.333 128.0 130.667 133.333 136.0 138.667 141.333 144.0 146.667 149.333 152.0 154.667 157.333 160.0 162.667 165.333 168.0 170.667 173.333 176.0 178.667 181.333 184.0 186.667 189.333 192.0 194.667 197.333 200.0 202.667 205.333 208.0 210.667 213.333 216.0 218.667 221.333 224.0 226.667 229.333 232.0 234.667 237.333 240.0 242.667 245.333 248.0 250.667 253.333 256.0 258.667 261.333 264.0 266.667 269.333 272.0 274.667 277.333 280.0 282.667 285.333 288.0 290.667 293.333 296.0 298.667 301.333 304.0 306.667 309.333 312.0 314.667 317.333 320.0 322.667 325.333 328.0 330.667 333.333 336.0 338.667 341.333 344.0 346.667 349.333 352.0 354.667 357.333 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 +92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 0.0 2.4 4.8 7.2 9.6 12.0 14.4 16.8 19.2 21.6 24.0 26.4 28.8 31.2 33.6 36.0 38.4 40.8 43.2 45.6 48.0 50.4 52.8 55.2 57.6 60.0 62.4 64.8 67.2 69.6 72.0 74.4 76.8 79.2 81.6 84.0 86.4 88.8 91.2 93.6 96.0 98.4 100.8 103.2 105.6 108.0 110.4 112.8 115.2 117.6 120.0 122.4 124.8 127.2 129.6 132.0 134.4 136.8 139.2 141.6 144.0 146.4 148.8 151.2 153.6 156.0 158.4 160.8 163.2 165.6 168.0 170.4 172.8 175.2 177.6 180.0 182.4 184.8 187.2 189.6 192.0 194.4 196.8 199.2 201.6 204.0 206.4 208.8 211.2 213.6 216.0 218.4 220.8 223.2 225.6 228.0 230.4 232.8 235.2 237.6 240.0 242.4 244.8 247.2 249.6 252.0 254.4 256.8 259.2 261.6 264.0 266.4 268.8 271.2 273.6 276.0 278.4 280.8 283.2 285.6 288.0 290.4 292.8 295.2 297.6 300.0 302.4 304.8 307.2 309.6 312.0 314.4 316.8 319.2 321.6 324.0 326.4 328.8 331.2 333.6 336.0 338.4 340.8 343.2 345.6 348.0 350.4 352.8 355.2 357.6 0.0 2.25 4.5 6.75 9.0 11.25 13.5 15.75 18.0 20.25 22.5 24.75 27.0 29.25 31.5 33.75 36.0 38.25 40.5 42.75 45.0 47.25 49.5 51.75 54.0 56.25 58.5 60.75 63.0 65.25 67.5 69.75 72.0 74.25 76.5 78.75 81.0 83.25 85.5 87.75 90.0 92.25 94.5 96.75 99.0 101.25 103.5 105.75 108.0 110.25 112.5 114.75 117.0 119.25 121.5 123.75 126.0 128.25 130.5 132.75 135.0 137.25 139.5 141.75 144.0 146.25 148.5 150.75 153.0 155.25 157.5 159.75 162.0 164.25 166.5 168.75 171.0 173.25 175.5 177.75 180.0 182.25 184.5 186.75 189.0 191.25 193.5 195.75 198.0 200.25 202.5 204.75 207.0 209.25 211.5 213.75 216.0 218.25 220.5 +222.75 225.0 227.25 229.5 231.75 234.0 236.25 238.5 240.75 243.0 245.25 247.5 249.75 252.0 254.25 256.5 258.75 261.0 263.25 265.5 267.75 270.0 272.25 274.5 276.75 279.0 281.25 283.5 285.75 288.0 290.25 292.5 294.75 297.0 299.25 301.5 303.75 306.0 308.25 310.5 312.75 315.0 317.25 319.5 321.75 324.0 326.25 328.5 330.75 333.0 335.25 337.5 339.75 342.0 344.25 346.5 348.75 351.0 353.25 355.5 357.75 0.0 2.25 4.5 6.75 9.0 11.25 13.5 15.75 18.0 20.25 22.5 24.75 27.0 29.25 31.5 33.75 36.0 38.25 40.5 42.75 45.0 47.25 49.5 51.75 54.0 56.25 58.5 60.75 63.0 65.25 67.5 69.75 72.0 74.25 76.5 78.75 81.0 83.25 85.5 87.75 90.0 92.25 94.5 96.75 99.0 101.25 103.5 105.75 108.0 110.25 112.5 114.75 117.0 119.25 121.5 123.75 126.0 128.25 130.5 132.75 135.0 137.25 139.5 141.75 144.0 146.25 148.5 150.75 153.0 155.25 157.5 159.75 162.0 164.25 166.5 168.75 171.0 173.25 175.5 177.75 180.0 182.25 184.5 186.75 189.0 191.25 193.5 195.75 198.0 200.25 202.5 204.75 207.0 209.25 211.5 213.75 216.0 218.25 220.5 222.75 225.0 227.25 229.5 231.75 234.0 236.25 238.5 240.75 243.0 245.25 247.5 249.75 252.0 254.25 256.5 258.75 261.0 263.25 265.5 267.75 270.0 272.25 274.5 276.75 279.0 281.25 283.5 285.75 288.0 290.25 292.5 294.75 297.0 299.25 301.5 303.75 306.0 308.25 310.5 312.75 315.0 317.25 319.5 321.75 324.0 326.25 328.5 330.75 333.0 335.25 337.5 339.75 342.0 344.25 346.5 348.75 351.0 353.25 355.5 357.75 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 +198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 1.875 3.75 5.625 7.5 9.375 11.25 13.125 15.0 16.875 18.75 20.625 22.5 24.375 26.25 28.125 30.0 31.875 33.75 35.625 37.5 39.375 41.25 43.125 45.0 46.875 48.75 50.625 52.5 54.375 56.25 58.125 60.0 61.875 63.75 65.625 67.5 69.375 71.25 73.125 75.0 76.875 78.75 80.625 82.5 84.375 86.25 88.125 90.0 91.875 93.75 95.625 97.5 99.375 101.25 103.125 105.0 106.875 108.75 110.625 112.5 114.375 116.25 118.125 120.0 121.875 123.75 125.625 127.5 129.375 131.25 133.125 135.0 136.875 138.75 140.625 142.5 144.375 146.25 148.125 150.0 151.875 153.75 155.625 157.5 159.375 161.25 163.125 165.0 166.875 168.75 170.625 172.5 174.375 176.25 178.125 180.0 181.875 183.75 185.625 187.5 189.375 191.25 193.125 195.0 196.875 198.75 200.625 202.5 204.375 206.25 208.125 210.0 211.875 213.75 215.625 217.5 219.375 221.25 223.125 225.0 226.875 228.75 230.625 232.5 234.375 236.25 238.125 240.0 241.875 243.75 245.625 247.5 249.375 251.25 253.125 255.0 256.875 258.75 260.625 262.5 264.375 266.25 268.125 270.0 271.875 273.75 275.625 277.5 279.375 281.25 283.125 285.0 286.875 288.75 290.625 292.5 294.375 296.25 298.125 300.0 301.875 303.75 305.625 307.5 309.375 311.25 313.125 315.0 316.875 318.75 320.625 322.5 324.375 326.25 328.125 330.0 331.875 333.75 335.625 337.5 339.375 341.25 343.125 345.0 346.875 348.75 350.625 352.5 354.375 356.25 358.125 0.0 1.875 3.75 5.625 7.5 9.375 11.25 13.125 15.0 16.875 18.75 20.625 22.5 24.375 26.25 28.125 30.0 31.875 33.75 35.625 37.5 39.375 41.25 43.125 45.0 46.875 48.75 50.625 52.5 54.375 56.25 58.125 60.0 61.875 63.75 65.625 67.5 69.375 71.25 73.125 75.0 76.875 78.75 80.625 82.5 84.375 86.25 +88.125 90.0 91.875 93.75 95.625 97.5 99.375 101.25 103.125 105.0 106.875 108.75 110.625 112.5 114.375 116.25 118.125 120.0 121.875 123.75 125.625 127.5 129.375 131.25 133.125 135.0 136.875 138.75 140.625 142.5 144.375 146.25 148.125 150.0 151.875 153.75 155.625 157.5 159.375 161.25 163.125 165.0 166.875 168.75 170.625 172.5 174.375 176.25 178.125 180.0 181.875 183.75 185.625 187.5 189.375 191.25 193.125 195.0 196.875 198.75 200.625 202.5 204.375 206.25 208.125 210.0 211.875 213.75 215.625 217.5 219.375 221.25 223.125 225.0 226.875 228.75 230.625 232.5 234.375 236.25 238.125 240.0 241.875 243.75 245.625 247.5 249.375 251.25 253.125 255.0 256.875 258.75 260.625 262.5 264.375 266.25 268.125 270.0 271.875 273.75 275.625 277.5 279.375 281.25 283.125 285.0 286.875 288.75 290.625 292.5 294.375 296.25 298.125 300.0 301.875 303.75 305.625 307.5 309.375 311.25 313.125 315.0 316.875 318.75 320.625 322.5 324.375 326.25 328.125 330.0 331.875 333.75 335.625 337.5 339.375 341.25 343.125 345.0 346.875 348.75 350.625 352.5 354.375 356.25 358.125 0.0 1.8 3.6 5.4 7.2 9.0 10.8 12.6 14.4 16.2 18.0 19.8 21.6 23.4 25.2 27.0 28.8 30.6 32.4 34.2 36.0 37.8 39.6 41.4 43.2 45.0 46.8 48.6 50.4 52.2 54.0 55.8 57.6 59.4 61.2 63.0 64.8 66.6 68.4 70.2 72.0 73.8 75.6 77.4 79.2 81.0 82.8 84.6 86.4 88.2 90.0 91.8 93.6 95.4 97.2 99.0 100.8 102.6 104.4 106.2 108.0 109.8 111.6 113.4 115.2 117.0 118.8 120.6 122.4 124.2 126.0 127.8 129.6 131.4 133.2 135.0 136.8 138.6 140.4 142.2 144.0 145.8 147.6 149.4 151.2 153.0 154.8 156.6 158.4 160.2 162.0 163.8 165.6 167.4 169.2 171.0 172.8 174.6 176.4 178.2 180.0 181.8 183.6 185.4 187.2 189.0 190.8 192.6 194.4 196.2 198.0 199.8 201.6 203.4 205.2 207.0 208.8 210.6 212.4 214.2 216.0 217.8 219.6 221.4 223.2 225.0 226.8 228.6 230.4 232.2 234.0 235.8 237.6 239.4 241.2 243.0 244.8 246.6 248.4 250.2 252.0 253.8 255.6 257.4 259.2 261.0 262.8 264.6 266.4 268.2 270.0 271.8 273.6 275.4 277.2 279.0 280.8 282.6 284.4 286.2 288.0 289.8 291.6 293.4 295.2 297.0 298.8 300.6 302.4 304.2 306.0 307.8 309.6 311.4 313.2 315.0 316.8 318.6 320.4 322.2 324.0 325.8 327.6 329.4 331.2 333.0 334.8 336.6 338.4 340.2 342.0 343.8 345.6 347.4 349.2 351.0 352.8 354.6 356.4 358.2 0.0 1.8 3.6 5.4 7.2 9.0 10.8 12.6 14.4 16.2 18.0 19.8 21.6 23.4 25.2 27.0 28.8 30.6 32.4 34.2 36.0 37.8 39.6 41.4 43.2 45.0 46.8 48.6 50.4 52.2 54.0 55.8 57.6 59.4 61.2 63.0 64.8 66.6 68.4 70.2 72.0 73.8 75.6 77.4 79.2 81.0 82.8 84.6 86.4 88.2 90.0 91.8 93.6 95.4 97.2 99.0 100.8 102.6 104.4 106.2 108.0 109.8 111.6 113.4 115.2 117.0 118.8 120.6 122.4 124.2 126.0 127.8 129.6 131.4 133.2 135.0 136.8 138.6 140.4 142.2 144.0 145.8 147.6 149.4 151.2 153.0 154.8 156.6 158.4 160.2 162.0 163.8 165.6 167.4 169.2 171.0 172.8 174.6 176.4 178.2 180.0 181.8 183.6 185.4 187.2 189.0 190.8 192.6 194.4 196.2 198.0 199.8 201.6 203.4 205.2 207.0 208.8 210.6 212.4 214.2 216.0 217.8 219.6 221.4 223.2 225.0 226.8 228.6 230.4 232.2 234.0 235.8 237.6 239.4 241.2 243.0 244.8 246.6 248.4 250.2 252.0 253.8 255.6 257.4 259.2 261.0 262.8 264.6 266.4 268.2 270.0 271.8 273.6 275.4 277.2 +279.0 280.8 282.6 284.4 286.2 288.0 289.8 291.6 293.4 295.2 297.0 298.8 300.6 302.4 304.2 306.0 307.8 309.6 311.4 313.2 315.0 316.8 318.6 320.4 322.2 324.0 325.8 327.6 329.4 331.2 333.0 334.8 336.6 338.4 340.2 342.0 343.8 345.6 347.4 349.2 351.0 352.8 354.6 356.4 358.2 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 +38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.6 3.2 4.8 6.4 8.0 9.6 11.2 12.8 14.4 16.0 17.6 19.2 20.8 22.4 24.0 25.6 27.2 28.8 30.4 32.0 33.6 35.2 36.8 38.4 40.0 41.6 43.2 44.8 46.4 48.0 49.6 51.2 52.8 54.4 56.0 57.6 59.2 60.8 62.4 64.0 65.6 67.2 68.8 70.4 72.0 73.6 75.2 76.8 78.4 80.0 81.6 83.2 84.8 86.4 88.0 89.6 91.2 92.8 94.4 96.0 97.6 99.2 100.8 102.4 104.0 105.6 107.2 108.8 110.4 112.0 113.6 115.2 116.8 118.4 120.0 121.6 123.2 124.8 126.4 128.0 129.6 131.2 132.8 134.4 136.0 137.6 139.2 140.8 142.4 144.0 145.6 147.2 148.8 150.4 152.0 153.6 155.2 156.8 158.4 160.0 161.6 163.2 164.8 166.4 168.0 169.6 171.2 172.8 174.4 176.0 177.6 179.2 180.8 182.4 184.0 185.6 187.2 188.8 190.4 192.0 193.6 195.2 196.8 198.4 200.0 201.6 203.2 204.8 206.4 208.0 209.6 211.2 212.8 214.4 216.0 217.6 219.2 220.8 222.4 224.0 225.6 227.2 228.8 230.4 232.0 233.6 235.2 236.8 238.4 240.0 241.6 243.2 244.8 246.4 248.0 249.6 251.2 252.8 254.4 256.0 257.6 259.2 260.8 262.4 264.0 265.6 267.2 268.8 270.4 272.0 273.6 275.2 276.8 278.4 280.0 281.6 283.2 284.8 286.4 288.0 289.6 291.2 292.8 294.4 296.0 297.6 299.2 300.8 302.4 304.0 305.6 307.2 308.8 310.4 312.0 313.6 315.2 316.8 318.4 320.0 321.6 323.2 324.8 326.4 328.0 329.6 331.2 332.8 334.4 336.0 337.6 339.2 340.8 342.4 344.0 345.6 347.2 348.8 350.4 352.0 353.6 355.2 356.8 358.4 0.0 1.6 3.2 4.8 6.4 8.0 9.6 11.2 12.8 14.4 16.0 17.6 19.2 20.8 22.4 24.0 25.6 27.2 28.8 30.4 32.0 33.6 35.2 36.8 38.4 40.0 41.6 43.2 44.8 46.4 48.0 49.6 51.2 52.8 54.4 56.0 57.6 59.2 60.8 62.4 64.0 65.6 67.2 68.8 70.4 72.0 73.6 75.2 76.8 78.4 80.0 81.6 83.2 84.8 86.4 88.0 89.6 91.2 92.8 94.4 96.0 97.6 99.2 100.8 102.4 104.0 105.6 107.2 108.8 110.4 112.0 113.6 115.2 116.8 118.4 120.0 121.6 123.2 124.8 126.4 128.0 129.6 +131.2 132.8 134.4 136.0 137.6 139.2 140.8 142.4 144.0 145.6 147.2 148.8 150.4 152.0 153.6 155.2 156.8 158.4 160.0 161.6 163.2 164.8 166.4 168.0 169.6 171.2 172.8 174.4 176.0 177.6 179.2 180.8 182.4 184.0 185.6 187.2 188.8 190.4 192.0 193.6 195.2 196.8 198.4 200.0 201.6 203.2 204.8 206.4 208.0 209.6 211.2 212.8 214.4 216.0 217.6 219.2 220.8 222.4 224.0 225.6 227.2 228.8 230.4 232.0 233.6 235.2 236.8 238.4 240.0 241.6 243.2 244.8 246.4 248.0 249.6 251.2 252.8 254.4 256.0 257.6 259.2 260.8 262.4 264.0 265.6 267.2 268.8 270.4 272.0 273.6 275.2 276.8 278.4 280.0 281.6 283.2 284.8 286.4 288.0 289.6 291.2 292.8 294.4 296.0 297.6 299.2 300.8 302.4 304.0 305.6 307.2 308.8 310.4 312.0 313.6 315.2 316.8 318.4 320.0 321.6 323.2 324.8 326.4 328.0 329.6 331.2 332.8 334.4 336.0 337.6 339.2 340.8 342.4 344.0 345.6 347.2 348.8 350.4 352.0 353.6 355.2 356.8 358.4 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 +175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 +192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 +175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 +141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 +46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 +311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 +216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 +121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 +25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 +265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 +145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 +1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 +203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 +46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 +248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 +91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 +293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 +136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 +338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 +181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 +23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 +226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 +68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 +271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 +113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 +316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 +158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 +1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 +203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 +46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 +248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 +91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 +293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 +136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 +338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 +181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 +23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 +226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 +68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 +271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 +113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 +316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 +193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 +73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 +326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 +231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 +136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 +41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 +306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 +237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 +220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 +217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 +247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.6 3.2 4.8 6.4 8.0 9.6 11.2 12.8 14.4 16.0 17.6 19.2 20.8 22.4 24.0 25.6 27.2 28.8 30.4 32.0 33.6 35.2 36.8 38.4 40.0 41.6 43.2 44.8 46.4 48.0 49.6 51.2 52.8 54.4 56.0 57.6 59.2 60.8 62.4 64.0 65.6 67.2 68.8 70.4 72.0 73.6 75.2 76.8 78.4 80.0 81.6 83.2 84.8 86.4 88.0 89.6 91.2 92.8 94.4 96.0 97.6 99.2 100.8 102.4 104.0 105.6 107.2 108.8 110.4 112.0 113.6 115.2 116.8 118.4 120.0 121.6 123.2 124.8 126.4 128.0 129.6 131.2 132.8 134.4 136.0 137.6 139.2 140.8 142.4 144.0 145.6 147.2 148.8 150.4 152.0 153.6 155.2 156.8 158.4 160.0 161.6 163.2 164.8 166.4 168.0 169.6 171.2 172.8 174.4 176.0 177.6 179.2 180.8 182.4 184.0 185.6 187.2 188.8 190.4 192.0 193.6 195.2 196.8 198.4 200.0 201.6 203.2 204.8 206.4 208.0 209.6 211.2 212.8 214.4 216.0 217.6 219.2 220.8 222.4 224.0 225.6 227.2 228.8 230.4 232.0 233.6 235.2 236.8 238.4 240.0 241.6 243.2 244.8 246.4 248.0 249.6 251.2 252.8 254.4 256.0 257.6 259.2 260.8 262.4 264.0 265.6 267.2 268.8 270.4 272.0 273.6 275.2 276.8 278.4 280.0 281.6 283.2 284.8 286.4 288.0 289.6 291.2 292.8 294.4 296.0 297.6 299.2 300.8 302.4 304.0 305.6 307.2 308.8 310.4 312.0 313.6 315.2 316.8 318.4 320.0 321.6 323.2 324.8 326.4 328.0 329.6 331.2 332.8 334.4 336.0 337.6 339.2 340.8 342.4 344.0 345.6 347.2 348.8 350.4 352.0 353.6 355.2 356.8 358.4 0.0 1.6 3.2 4.8 6.4 8.0 9.6 11.2 12.8 14.4 16.0 17.6 19.2 20.8 22.4 24.0 25.6 27.2 28.8 30.4 32.0 33.6 35.2 36.8 38.4 40.0 41.6 43.2 44.8 46.4 48.0 49.6 51.2 52.8 54.4 56.0 57.6 59.2 60.8 62.4 64.0 65.6 67.2 68.8 70.4 72.0 73.6 75.2 76.8 78.4 80.0 81.6 83.2 84.8 86.4 88.0 89.6 91.2 92.8 94.4 96.0 97.6 99.2 100.8 102.4 104.0 105.6 107.2 108.8 110.4 112.0 113.6 115.2 116.8 118.4 120.0 121.6 123.2 124.8 126.4 128.0 129.6 131.2 132.8 134.4 136.0 137.6 139.2 140.8 142.4 144.0 145.6 147.2 148.8 150.4 152.0 153.6 155.2 156.8 158.4 160.0 161.6 163.2 164.8 166.4 168.0 169.6 171.2 172.8 174.4 176.0 177.6 179.2 180.8 182.4 184.0 185.6 187.2 188.8 190.4 192.0 193.6 195.2 196.8 198.4 200.0 201.6 203.2 204.8 206.4 208.0 209.6 211.2 212.8 214.4 216.0 217.6 219.2 220.8 222.4 224.0 225.6 227.2 228.8 230.4 232.0 233.6 235.2 236.8 238.4 240.0 241.6 243.2 244.8 246.4 248.0 249.6 251.2 252.8 254.4 256.0 257.6 259.2 260.8 262.4 264.0 265.6 267.2 268.8 270.4 272.0 273.6 275.2 276.8 278.4 280.0 281.6 283.2 284.8 286.4 288.0 289.6 291.2 292.8 294.4 296.0 297.6 299.2 300.8 302.4 304.0 305.6 307.2 308.8 310.4 312.0 313.6 315.2 316.8 318.4 +320.0 321.6 323.2 324.8 326.4 328.0 329.6 331.2 332.8 334.4 336.0 337.6 339.2 340.8 342.4 344.0 345.6 347.2 348.8 350.4 352.0 353.6 355.2 356.8 358.4 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 +71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.8 3.6 5.4 7.2 9.0 10.8 12.6 14.4 16.2 18.0 19.8 21.6 23.4 25.2 27.0 28.8 30.6 32.4 34.2 36.0 37.8 39.6 41.4 43.2 45.0 46.8 48.6 50.4 52.2 54.0 55.8 57.6 59.4 61.2 63.0 64.8 66.6 68.4 70.2 72.0 73.8 75.6 77.4 79.2 81.0 82.8 84.6 86.4 88.2 90.0 91.8 93.6 95.4 97.2 99.0 100.8 102.6 104.4 106.2 108.0 109.8 111.6 113.4 115.2 117.0 118.8 120.6 122.4 124.2 126.0 127.8 129.6 131.4 133.2 135.0 136.8 138.6 140.4 142.2 144.0 145.8 147.6 149.4 151.2 153.0 154.8 156.6 158.4 160.2 162.0 163.8 165.6 167.4 169.2 171.0 172.8 174.6 176.4 178.2 180.0 181.8 183.6 185.4 187.2 189.0 190.8 192.6 194.4 196.2 198.0 199.8 201.6 203.4 205.2 207.0 208.8 210.6 212.4 214.2 216.0 217.8 219.6 221.4 223.2 225.0 226.8 228.6 230.4 232.2 234.0 235.8 237.6 239.4 241.2 243.0 244.8 246.6 248.4 250.2 252.0 253.8 255.6 257.4 259.2 261.0 262.8 264.6 266.4 268.2 270.0 271.8 273.6 275.4 277.2 279.0 280.8 282.6 284.4 286.2 288.0 289.8 291.6 293.4 295.2 297.0 298.8 300.6 302.4 304.2 306.0 307.8 309.6 311.4 313.2 315.0 316.8 318.6 320.4 322.2 324.0 325.8 327.6 329.4 331.2 333.0 334.8 336.6 338.4 340.2 342.0 343.8 345.6 347.4 349.2 351.0 352.8 354.6 356.4 358.2 0.0 1.8 3.6 5.4 7.2 9.0 10.8 12.6 14.4 16.2 18.0 19.8 21.6 23.4 25.2 27.0 28.8 30.6 32.4 34.2 36.0 37.8 39.6 41.4 43.2 45.0 46.8 48.6 50.4 52.2 54.0 55.8 57.6 59.4 61.2 63.0 64.8 66.6 68.4 70.2 72.0 73.8 75.6 77.4 79.2 81.0 82.8 84.6 86.4 88.2 90.0 91.8 93.6 95.4 97.2 99.0 100.8 102.6 104.4 106.2 108.0 109.8 111.6 113.4 115.2 117.0 118.8 120.6 122.4 124.2 126.0 127.8 129.6 131.4 133.2 135.0 136.8 138.6 140.4 142.2 144.0 145.8 147.6 149.4 151.2 153.0 154.8 156.6 158.4 160.2 162.0 163.8 165.6 167.4 169.2 171.0 172.8 174.6 176.4 178.2 180.0 181.8 183.6 185.4 187.2 189.0 190.8 192.6 194.4 196.2 198.0 199.8 201.6 203.4 205.2 207.0 208.8 210.6 212.4 214.2 216.0 217.8 219.6 221.4 223.2 225.0 226.8 +228.6 230.4 232.2 234.0 235.8 237.6 239.4 241.2 243.0 244.8 246.6 248.4 250.2 252.0 253.8 255.6 257.4 259.2 261.0 262.8 264.6 266.4 268.2 270.0 271.8 273.6 275.4 277.2 279.0 280.8 282.6 284.4 286.2 288.0 289.8 291.6 293.4 295.2 297.0 298.8 300.6 302.4 304.2 306.0 307.8 309.6 311.4 313.2 315.0 316.8 318.6 320.4 322.2 324.0 325.8 327.6 329.4 331.2 333.0 334.8 336.6 338.4 340.2 342.0 343.8 345.6 347.4 349.2 351.0 352.8 354.6 356.4 358.2 0.0 1.875 3.75 5.625 7.5 9.375 11.25 13.125 15.0 16.875 18.75 20.625 22.5 24.375 26.25 28.125 30.0 31.875 33.75 35.625 37.5 39.375 41.25 43.125 45.0 46.875 48.75 50.625 52.5 54.375 56.25 58.125 60.0 61.875 63.75 65.625 67.5 69.375 71.25 73.125 75.0 76.875 78.75 80.625 82.5 84.375 86.25 88.125 90.0 91.875 93.75 95.625 97.5 99.375 101.25 103.125 105.0 106.875 108.75 110.625 112.5 114.375 116.25 118.125 120.0 121.875 123.75 125.625 127.5 129.375 131.25 133.125 135.0 136.875 138.75 140.625 142.5 144.375 146.25 148.125 150.0 151.875 153.75 155.625 157.5 159.375 161.25 163.125 165.0 166.875 168.75 170.625 172.5 174.375 176.25 178.125 180.0 181.875 183.75 185.625 187.5 189.375 191.25 193.125 195.0 196.875 198.75 200.625 202.5 204.375 206.25 208.125 210.0 211.875 213.75 215.625 217.5 219.375 221.25 223.125 225.0 226.875 228.75 230.625 232.5 234.375 236.25 238.125 240.0 241.875 243.75 245.625 247.5 249.375 251.25 253.125 255.0 256.875 258.75 260.625 262.5 264.375 266.25 268.125 270.0 271.875 273.75 275.625 277.5 279.375 281.25 283.125 285.0 286.875 288.75 290.625 292.5 294.375 296.25 298.125 300.0 301.875 303.75 305.625 307.5 309.375 311.25 313.125 315.0 316.875 318.75 320.625 322.5 324.375 326.25 328.125 330.0 331.875 333.75 335.625 337.5 339.375 341.25 343.125 345.0 346.875 348.75 350.625 352.5 354.375 356.25 358.125 0.0 1.875 3.75 5.625 7.5 9.375 11.25 13.125 15.0 16.875 18.75 20.625 22.5 24.375 26.25 28.125 30.0 31.875 33.75 35.625 37.5 39.375 41.25 43.125 45.0 46.875 48.75 50.625 52.5 54.375 56.25 58.125 60.0 61.875 63.75 65.625 67.5 69.375 71.25 73.125 75.0 76.875 78.75 80.625 82.5 84.375 86.25 88.125 90.0 91.875 93.75 95.625 97.5 99.375 101.25 103.125 105.0 106.875 108.75 110.625 112.5 114.375 116.25 118.125 120.0 121.875 123.75 125.625 127.5 129.375 131.25 133.125 135.0 136.875 138.75 140.625 142.5 144.375 146.25 148.125 150.0 151.875 153.75 155.625 157.5 159.375 161.25 163.125 165.0 166.875 168.75 170.625 172.5 174.375 176.25 178.125 180.0 181.875 183.75 185.625 187.5 189.375 191.25 193.125 195.0 196.875 198.75 200.625 202.5 204.375 206.25 208.125 210.0 211.875 213.75 215.625 217.5 219.375 221.25 223.125 225.0 226.875 228.75 230.625 232.5 234.375 236.25 238.125 240.0 241.875 243.75 245.625 247.5 249.375 251.25 253.125 255.0 256.875 258.75 260.625 262.5 264.375 266.25 268.125 270.0 271.875 273.75 275.625 277.5 279.375 281.25 283.125 285.0 286.875 288.75 290.625 292.5 294.375 296.25 298.125 300.0 301.875 303.75 305.625 307.5 309.375 311.25 313.125 315.0 316.875 318.75 320.625 322.5 324.375 326.25 328.125 330.0 331.875 333.75 335.625 337.5 339.375 341.25 343.125 345.0 346.875 348.75 350.625 352.5 354.375 356.25 358.125 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 +86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.25 4.5 +6.75 9.0 11.25 13.5 15.75 18.0 20.25 22.5 24.75 27.0 29.25 31.5 33.75 36.0 38.25 40.5 42.75 45.0 47.25 49.5 51.75 54.0 56.25 58.5 60.75 63.0 65.25 67.5 69.75 72.0 74.25 76.5 78.75 81.0 83.25 85.5 87.75 90.0 92.25 94.5 96.75 99.0 101.25 103.5 105.75 108.0 110.25 112.5 114.75 117.0 119.25 121.5 123.75 126.0 128.25 130.5 132.75 135.0 137.25 139.5 141.75 144.0 146.25 148.5 150.75 153.0 155.25 157.5 159.75 162.0 164.25 166.5 168.75 171.0 173.25 175.5 177.75 180.0 182.25 184.5 186.75 189.0 191.25 193.5 195.75 198.0 200.25 202.5 204.75 207.0 209.25 211.5 213.75 216.0 218.25 220.5 222.75 225.0 227.25 229.5 231.75 234.0 236.25 238.5 240.75 243.0 245.25 247.5 249.75 252.0 254.25 256.5 258.75 261.0 263.25 265.5 267.75 270.0 272.25 274.5 276.75 279.0 281.25 283.5 285.75 288.0 290.25 292.5 294.75 297.0 299.25 301.5 303.75 306.0 308.25 310.5 312.75 315.0 317.25 319.5 321.75 324.0 326.25 328.5 330.75 333.0 335.25 337.5 339.75 342.0 344.25 346.5 348.75 351.0 353.25 355.5 357.75 0.0 2.25 4.5 6.75 9.0 11.25 13.5 15.75 18.0 20.25 22.5 24.75 27.0 29.25 31.5 33.75 36.0 38.25 40.5 42.75 45.0 47.25 49.5 51.75 54.0 56.25 58.5 60.75 63.0 65.25 67.5 69.75 72.0 74.25 76.5 78.75 81.0 83.25 85.5 87.75 90.0 92.25 94.5 96.75 99.0 101.25 103.5 105.75 108.0 110.25 112.5 114.75 117.0 119.25 121.5 123.75 126.0 128.25 130.5 132.75 135.0 137.25 139.5 141.75 144.0 146.25 148.5 150.75 153.0 155.25 157.5 159.75 162.0 164.25 166.5 168.75 171.0 173.25 175.5 177.75 180.0 182.25 184.5 186.75 189.0 191.25 193.5 195.75 198.0 200.25 202.5 204.75 207.0 209.25 211.5 213.75 216.0 218.25 220.5 222.75 225.0 227.25 229.5 231.75 234.0 236.25 238.5 240.75 243.0 245.25 247.5 249.75 252.0 254.25 256.5 258.75 261.0 263.25 265.5 267.75 270.0 272.25 274.5 276.75 279.0 281.25 283.5 285.75 288.0 290.25 292.5 294.75 297.0 299.25 301.5 303.75 306.0 308.25 310.5 312.75 315.0 317.25 319.5 321.75 324.0 326.25 328.5 330.75 333.0 335.25 337.5 339.75 342.0 344.25 346.5 348.75 351.0 353.25 355.5 357.75 0.0 2.4 4.8 7.2 9.6 12.0 14.4 16.8 19.2 21.6 24.0 26.4 28.8 31.2 33.6 36.0 38.4 40.8 43.2 45.6 48.0 50.4 52.8 55.2 57.6 60.0 62.4 64.8 67.2 69.6 72.0 74.4 76.8 79.2 81.6 84.0 86.4 88.8 91.2 93.6 96.0 98.4 100.8 103.2 105.6 108.0 110.4 112.8 115.2 117.6 120.0 122.4 124.8 127.2 129.6 132.0 134.4 136.8 139.2 141.6 144.0 146.4 148.8 151.2 153.6 156.0 158.4 160.8 163.2 165.6 168.0 170.4 172.8 175.2 177.6 180.0 182.4 184.8 187.2 189.6 192.0 194.4 196.8 199.2 201.6 204.0 206.4 208.8 211.2 213.6 216.0 218.4 220.8 223.2 225.6 228.0 230.4 232.8 235.2 237.6 240.0 242.4 244.8 247.2 249.6 252.0 254.4 256.8 259.2 261.6 264.0 266.4 268.8 271.2 273.6 276.0 278.4 280.8 283.2 285.6 288.0 290.4 292.8 295.2 297.6 300.0 302.4 304.8 307.2 309.6 312.0 314.4 316.8 319.2 321.6 324.0 326.4 328.8 331.2 333.6 336.0 338.4 340.8 343.2 345.6 348.0 350.4 352.8 355.2 357.6 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 +82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 0.0 2.66667 5.33333 8.0 10.6667 13.3333 16.0 18.6667 21.3333 24.0 26.6667 29.3333 32.0 34.6667 37.3333 40.0 42.6667 45.3333 48.0 50.6667 53.3333 56.0 58.6667 61.3333 64.0 66.6667 69.3333 72.0 74.6667 77.3333 80.0 82.6667 85.3333 88.0 90.6667 93.3333 96.0 98.6667 101.333 104.0 106.667 109.333 112.0 114.667 117.333 120.0 122.667 125.333 128.0 130.667 133.333 136.0 138.667 141.333 144.0 146.667 149.333 152.0 154.667 157.333 160.0 162.667 165.333 168.0 170.667 173.333 176.0 178.667 181.333 184.0 186.667 189.333 192.0 194.667 197.333 200.0 202.667 205.333 208.0 210.667 213.333 216.0 218.667 221.333 224.0 226.667 229.333 232.0 234.667 237.333 240.0 242.667 245.333 248.0 250.667 253.333 256.0 258.667 261.333 264.0 266.667 269.333 272.0 274.667 277.333 280.0 282.667 285.333 288.0 290.667 293.333 296.0 298.667 301.333 304.0 306.667 309.333 312.0 314.667 317.333 320.0 322.667 325.333 328.0 330.667 333.333 336.0 338.667 341.333 344.0 346.667 349.333 352.0 354.667 357.333 0.0 2.8125 5.625 8.4375 11.25 14.0625 16.875 19.6875 22.5 25.3125 28.125 30.9375 33.75 36.5625 39.375 42.1875 45.0 47.8125 50.625 53.4375 56.25 59.0625 61.875 64.6875 67.5 70.3125 73.125 75.9375 78.75 81.5625 84.375 87.1875 90.0 92.8125 95.625 98.4375 101.25 104.062 106.875 109.688 112.5 115.312 118.125 120.938 123.75 126.562 129.375 132.188 135.0 137.812 140.625 143.438 146.25 149.062 151.875 154.688 157.5 160.312 163.125 165.938 168.75 171.562 174.375 177.188 180.0 182.812 185.625 188.438 191.25 194.062 196.875 199.688 202.5 205.312 208.125 210.938 213.75 216.562 219.375 222.188 225.0 227.812 230.625 233.438 236.25 239.062 241.875 244.688 247.5 250.312 253.125 255.938 258.75 261.562 264.375 267.188 270.0 272.812 275.625 278.438 281.25 284.062 286.875 289.688 292.5 295.312 298.125 300.938 303.75 306.562 +309.375 312.188 315.0 317.812 320.625 323.438 326.25 329.062 331.875 334.688 337.5 340.312 343.125 345.938 348.75 351.562 354.375 357.188 0.0 3.0 6.0 9.0 12.0 15.0 18.0 21.0 24.0 27.0 30.0 33.0 36.0 39.0 42.0 45.0 48.0 51.0 54.0 57.0 60.0 63.0 66.0 69.0 72.0 75.0 78.0 81.0 84.0 87.0 90.0 93.0 96.0 99.0 102.0 105.0 108.0 111.0 114.0 117.0 120.0 123.0 126.0 129.0 132.0 135.0 138.0 141.0 144.0 147.0 150.0 153.0 156.0 159.0 162.0 165.0 168.0 171.0 174.0 177.0 180.0 183.0 186.0 189.0 192.0 195.0 198.0 201.0 204.0 207.0 210.0 213.0 216.0 219.0 222.0 225.0 228.0 231.0 234.0 237.0 240.0 243.0 246.0 249.0 252.0 255.0 258.0 261.0 264.0 267.0 270.0 273.0 276.0 279.0 282.0 285.0 288.0 291.0 294.0 297.0 300.0 303.0 306.0 309.0 312.0 315.0 318.0 321.0 324.0 327.0 330.0 333.0 336.0 339.0 342.0 345.0 348.0 351.0 354.0 357.0 0.0 3.0 6.0 9.0 12.0 15.0 18.0 21.0 24.0 27.0 30.0 33.0 36.0 39.0 42.0 45.0 48.0 51.0 54.0 57.0 60.0 63.0 66.0 69.0 72.0 75.0 78.0 81.0 84.0 87.0 90.0 93.0 96.0 99.0 102.0 105.0 108.0 111.0 114.0 117.0 120.0 123.0 126.0 129.0 132.0 135.0 138.0 141.0 144.0 147.0 150.0 153.0 156.0 159.0 162.0 165.0 168.0 171.0 174.0 177.0 180.0 183.0 186.0 189.0 192.0 195.0 198.0 201.0 204.0 207.0 210.0 213.0 216.0 219.0 222.0 225.0 228.0 231.0 234.0 237.0 240.0 243.0 246.0 249.0 252.0 255.0 258.0 261.0 264.0 267.0 270.0 273.0 276.0 279.0 282.0 285.0 288.0 291.0 294.0 297.0 300.0 303.0 306.0 309.0 312.0 315.0 318.0 321.0 324.0 327.0 330.0 333.0 336.0 339.0 342.0 345.0 348.0 351.0 354.0 357.0 0.0 3.33333 6.66667 10.0 13.3333 16.6667 20.0 23.3333 26.6667 30.0 33.3333 36.6667 40.0 43.3333 46.6667 50.0 53.3333 56.6667 60.0 63.3333 66.6667 70.0 73.3333 76.6667 80.0 83.3333 86.6667 90.0 93.3333 96.6667 100.0 103.333 106.667 110.0 113.333 116.667 120.0 123.333 126.667 130.0 133.333 136.667 140.0 143.333 146.667 150.0 153.333 156.667 160.0 163.333 166.667 170.0 173.333 176.667 180.0 183.333 186.667 190.0 193.333 196.667 200.0 203.333 206.667 210.0 213.333 216.667 220.0 223.333 226.667 230.0 233.333 236.667 240.0 243.333 246.667 250.0 253.333 256.667 260.0 263.333 266.667 270.0 273.333 276.667 280.0 283.333 286.667 290.0 293.333 296.667 300.0 303.333 306.667 310.0 313.333 316.667 320.0 323.333 326.667 330.0 333.333 336.667 340.0 343.333 346.667 350.0 353.333 356.667 0.0 3.6 7.2 10.8 14.4 18.0 21.6 25.2 28.8 32.4 36.0 39.6 43.2 46.8 50.4 54.0 57.6 61.2 64.8 68.4 72.0 75.6 79.2 82.8 86.4 90.0 93.6 97.2 100.8 104.4 108.0 111.6 115.2 118.8 122.4 126.0 129.6 133.2 136.8 140.4 144.0 147.6 151.2 154.8 158.4 162.0 165.6 169.2 172.8 176.4 180.0 183.6 187.2 190.8 194.4 198.0 201.6 205.2 208.8 212.4 216.0 219.6 223.2 226.8 230.4 234.0 237.6 241.2 244.8 248.4 252.0 255.6 259.2 262.8 266.4 270.0 273.6 277.2 280.8 284.4 288.0 291.6 295.2 298.8 302.4 306.0 309.6 313.2 316.8 320.4 324.0 327.6 331.2 334.8 338.4 342.0 345.6 349.2 352.8 356.4 0.0 3.75 7.5 11.25 15.0 18.75 22.5 26.25 30.0 33.75 37.5 41.25 45.0 48.75 52.5 56.25 60.0 63.75 67.5 71.25 75.0 78.75 82.5 86.25 90.0 93.75 97.5 101.25 105.0 108.75 112.5 116.25 120.0 123.75 +127.5 131.25 135.0 138.75 142.5 146.25 150.0 153.75 157.5 161.25 165.0 168.75 172.5 176.25 180.0 183.75 187.5 191.25 195.0 198.75 202.5 206.25 210.0 213.75 217.5 221.25 225.0 228.75 232.5 236.25 240.0 243.75 247.5 251.25 255.0 258.75 262.5 266.25 270.0 273.75 277.5 281.25 285.0 288.75 292.5 296.25 300.0 303.75 307.5 311.25 315.0 318.75 322.5 326.25 330.0 333.75 337.5 341.25 345.0 348.75 352.5 356.25 0.0 4.0 8.0 12.0 16.0 20.0 24.0 28.0 32.0 36.0 40.0 44.0 48.0 52.0 56.0 60.0 64.0 68.0 72.0 76.0 80.0 84.0 88.0 92.0 96.0 100.0 104.0 108.0 112.0 116.0 120.0 124.0 128.0 132.0 136.0 140.0 144.0 148.0 152.0 156.0 160.0 164.0 168.0 172.0 176.0 180.0 184.0 188.0 192.0 196.0 200.0 204.0 208.0 212.0 216.0 220.0 224.0 228.0 232.0 236.0 240.0 244.0 248.0 252.0 256.0 260.0 264.0 268.0 272.0 276.0 280.0 284.0 288.0 292.0 296.0 300.0 304.0 308.0 312.0 316.0 320.0 324.0 328.0 332.0 336.0 340.0 344.0 348.0 352.0 356.0 0.0 4.5 9.0 13.5 18.0 22.5 27.0 31.5 36.0 40.5 45.0 49.5 54.0 58.5 63.0 67.5 72.0 76.5 81.0 85.5 90.0 94.5 99.0 103.5 108.0 112.5 117.0 121.5 126.0 130.5 135.0 139.5 144.0 148.5 153.0 157.5 162.0 166.5 171.0 175.5 180.0 184.5 189.0 193.5 198.0 202.5 207.0 211.5 216.0 220.5 225.0 229.5 234.0 238.5 243.0 247.5 252.0 256.5 261.0 265.5 270.0 274.5 279.0 283.5 288.0 292.5 297.0 301.5 306.0 310.5 315.0 319.5 324.0 328.5 333.0 337.5 342.0 346.5 351.0 355.5 0.0 5.0 10.0 15.0 20.0 25.0 30.0 35.0 40.0 45.0 50.0 55.0 60.0 65.0 70.0 75.0 80.0 85.0 90.0 95.0 100.0 105.0 110.0 115.0 120.0 125.0 130.0 135.0 140.0 145.0 150.0 155.0 160.0 165.0 170.0 175.0 180.0 185.0 190.0 195.0 200.0 205.0 210.0 215.0 220.0 225.0 230.0 235.0 240.0 245.0 250.0 255.0 260.0 265.0 270.0 275.0 280.0 285.0 290.0 295.0 300.0 305.0 310.0 315.0 320.0 325.0 330.0 335.0 340.0 345.0 350.0 355.0 0.0 5.0 10.0 15.0 20.0 25.0 30.0 35.0 40.0 45.0 50.0 55.0 60.0 65.0 70.0 75.0 80.0 85.0 90.0 95.0 100.0 105.0 110.0 115.0 120.0 125.0 130.0 135.0 140.0 145.0 150.0 155.0 160.0 165.0 170.0 175.0 180.0 185.0 190.0 195.0 200.0 205.0 210.0 215.0 220.0 225.0 230.0 235.0 240.0 245.0 250.0 255.0 260.0 265.0 270.0 275.0 280.0 285.0 290.0 295.0 300.0 305.0 310.0 315.0 320.0 325.0 330.0 335.0 340.0 345.0 350.0 355.0 0.0 5.625 11.25 16.875 22.5 28.125 33.75 39.375 45.0 50.625 56.25 61.875 67.5 73.125 78.75 84.375 90.0 95.625 101.25 106.875 112.5 118.125 123.75 129.375 135.0 140.625 146.25 151.875 157.5 163.125 168.75 174.375 180.0 185.625 191.25 196.875 202.5 208.125 213.75 219.375 225.0 230.625 236.25 241.875 247.5 253.125 258.75 264.375 270.0 275.625 281.25 286.875 292.5 298.125 303.75 309.375 315.0 320.625 326.25 331.875 337.5 343.125 348.75 354.375 0.0 6.0 12.0 18.0 24.0 30.0 36.0 42.0 48.0 54.0 60.0 66.0 72.0 78.0 84.0 90.0 96.0 102.0 108.0 114.0 120.0 126.0 132.0 138.0 144.0 150.0 156.0 162.0 168.0 174.0 180.0 186.0 192.0 198.0 204.0 210.0 216.0 222.0 228.0 234.0 240.0 246.0 252.0 258.0 264.0 270.0 276.0 282.0 288.0 294.0 300.0 306.0 312.0 318.0 324.0 330.0 336.0 342.0 348.0 354.0 +0.0 6.66667 13.3333 20.0 26.6667 33.3333 40.0 46.6667 53.3333 60.0 66.6667 73.3333 80.0 86.6667 93.3333 100.0 106.667 113.333 120.0 126.667 133.333 140.0 146.667 153.333 160.0 166.667 173.333 180.0 186.667 193.333 200.0 206.667 213.333 220.0 226.667 233.333 240.0 246.667 253.333 260.0 266.667 273.333 280.0 286.667 293.333 300.0 306.667 313.333 320.0 326.667 333.333 340.0 346.667 353.333 0.0 8.0 16.0 24.0 32.0 40.0 48.0 56.0 64.0 72.0 80.0 88.0 96.0 104.0 112.0 120.0 128.0 136.0 144.0 152.0 160.0 168.0 176.0 184.0 192.0 200.0 208.0 216.0 224.0 232.0 240.0 248.0 256.0 264.0 272.0 280.0 288.0 296.0 304.0 312.0 320.0 328.0 336.0 344.0 352.0 0.0 9.0 18.0 27.0 36.0 45.0 54.0 63.0 72.0 81.0 90.0 99.0 108.0 117.0 126.0 135.0 144.0 153.0 162.0 171.0 180.0 189.0 198.0 207.0 216.0 225.0 234.0 243.0 252.0 261.0 270.0 279.0 288.0 297.0 306.0 315.0 324.0 333.0 342.0 351.0 0.0 10.0 20.0 30.0 40.0 50.0 60.0 70.0 80.0 90.0 100.0 110.0 120.0 130.0 140.0 150.0 160.0 170.0 180.0 190.0 200.0 210.0 220.0 230.0 240.0 250.0 260.0 270.0 280.0 290.0 300.0 310.0 320.0 330.0 340.0 350.0 0.0 14.4 28.8 43.2 57.6 72.0 86.4 100.8 115.2 129.6 144.0 158.4 172.8 187.2 201.6 216.0 230.4 244.8 259.2 273.6 288.0 302.4 316.8 331.2 345.6 0.0 20.0 40.0 60.0 80.0 100.0 120.0 140.0 160.0 180.0 200.0 220.0 240.0 260.0 280.0 300.0 320.0 340.0 +yvals = 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 89.1415 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 88.0294 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 86.9108 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 85.7906 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 84.6699 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 83.549 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 82.4278 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 81.3066 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 80.1853 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 79.064 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 +77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 77.9426 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 76.8212 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 75.6998 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 74.5784 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 73.457 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 +72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 72.3356 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 71.2141 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 70.0927 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 68.9712 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 +67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 67.8498 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 66.7283 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 65.6069 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 +64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 64.4854 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 63.3639 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 62.2425 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 +61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 61.121 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 59.9995 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 58.878 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 +57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 57.7566 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 56.6351 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 +55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 55.5136 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 54.3921 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 53.2707 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 +52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 52.1492 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 51.0277 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 +49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 49.9062 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 48.7847 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 +47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 47.6632 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 46.5418 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 +45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 45.4203 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 44.2988 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 +43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 43.1773 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 42.0558 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 +40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 40.9343 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 39.8129 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 +38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 38.6914 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 +37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 37.5699 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 36.4484 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 +35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 35.3269 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 34.2054 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 +33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 33.0839 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 31.9624 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 +30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 30.841 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 +29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 29.7195 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 28.598 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 +27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 27.4765 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 26.355 25.2335 +25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 25.2335 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 +24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 24.112 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 22.9905 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 +21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 21.869 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 +20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 20.7476 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 19.6261 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 +18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 18.5046 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 +17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 17.3831 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 16.2616 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 +15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 15.1401 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 +14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 14.0186 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 12.8971 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 +11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 11.7756 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 10.6542 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 +9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 9.53266 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 +8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 8.41117 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 7.28968 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 +6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 6.16819 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 +5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 5.0467 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 3.92521 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 +2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 2.80372 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 +1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 1.68223 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 +-0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -0.560745 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -1.68223 -2.80372 +-2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -2.80372 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 +-3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -3.92521 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -5.0467 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 +-6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -6.16819 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 +-7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -7.28968 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -8.41117 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 +-9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -9.53266 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 +-10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -10.6542 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -11.7756 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 +-12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -12.8971 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 +-14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -14.0186 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -15.1401 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 +-16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -16.2616 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -17.3831 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 +-18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -18.5046 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 +-19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -19.6261 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -20.7476 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 +-21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -21.869 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 +-22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -22.9905 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -24.112 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 +-25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -25.2335 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 +-26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -26.355 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -27.4765 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 +-28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -28.598 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -29.7195 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 +-30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -30.841 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 +-31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -31.9624 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -33.0839 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 +-34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -34.2054 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -35.3269 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 +-36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -36.4484 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -37.5699 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 +-38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -38.6914 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 +-39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -39.8129 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -40.9343 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 +-42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -42.0558 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -43.1773 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 +-44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -44.2988 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -45.4203 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 +-46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -46.5418 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -47.6632 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 +-48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -48.7847 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -49.9062 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 +-51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -51.0277 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -52.1492 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -53.2707 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 +-54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -54.3921 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -55.5136 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 +-56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -56.6351 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -57.7566 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -58.878 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 +-59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -59.9995 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -61.121 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -62.2425 -63.3639 -63.3639 -63.3639 +-63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -63.3639 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -64.4854 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -65.6069 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 +-66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -66.7283 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -67.8498 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -68.9712 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 +-70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -70.0927 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -71.2141 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -72.3356 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -73.457 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -74.5784 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 +-75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -75.6998 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -76.8212 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -77.9426 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -79.064 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -80.1853 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -81.3066 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 -82.4278 +-83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -83.549 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -84.6699 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -85.7906 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -86.9108 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -88.0294 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 -89.1415 +xbounds = -10.0 10.0 10.0 -10.0 10.0 30.0 30.0 10.0 30.0 50.0 50.0 30.0 50.0 70.0 70.0 50.0 70.0 90.0 90.0 70.0 90.0 110.0 110.0 90.0 110.0 130.0 130.0 110.0 130.0 150.0 150.0 130.0 150.0 170.0 170.0 150.0 170.0 190.0 190.0 170.0 190.0 210.0 210.0 190.0 210.0 230.0 230.0 210.0 230.0 250.0 250.0 230.0 250.0 270.0 270.0 250.0 270.0 290.0 290.0 270.0 290.0 310.0 310.0 290.0 310.0 330.0 330.0 310.0 330.0 350.0 350.0 330.0 -7.2 7.2 7.2 -7.2 7.19999961853 21.5999996185 21.5999996185 7.19999961853 21.5999992371 35.9999992371 35.9999992371 21.5999992371 36.0000007629 50.4000007629 50.4000007629 36.0000007629 50.3999984741 64.7999984741 64.7999984741 50.3999984741 64.8 79.2 79.2 64.8 79.2000015259 93.6000015259 93.6000015259 79.2000015259 93.6000030518 108.000003052 108.000003052 93.6000030518 107.999996948 122.399996948 122.399996948 107.999996948 122.400006104 136.800006104 136.800006104 122.400006104 136.8 151.2 151.2 136.8 151.199993896 165.599993896 165.599993896 151.199993896 165.600003052 180.000003052 180.000003052 165.600003052 179.999996948 194.399996948 194.399996948 179.999996948 194.400006104 208.800006104 208.800006104 194.400006104 208.8 223.2 223.2 208.8 223.199993896 237.599993896 237.599993896 223.199993896 237.600003052 252.000003052 252.000003052 237.600003052 252.000012207 266.400012207 266.400012207 252.000012207 266.400006104 280.800006104 280.800006104 266.400006104 280.8 295.2 295.2 280.8 295.199993896 309.599993896 309.599993896 295.199993896 309.599987793 323.999987793 323.999987793 309.599987793 324.000012207 338.400012207 338.400012207 324.000012207 338.400006104 352.800006104 352.800006104 338.400006104 -5.0 5.0 5.0 -5.0 5.0 15.0 15.0 5.0 15.0 25.0 25.0 15.0 25.0 35.0 35.0 25.0 35.0 45.0 45.0 35.0 45.0 55.0 55.0 45.0 55.0 65.0 65.0 55.0 65.0 75.0 75.0 65.0 75.0 85.0 85.0 75.0 85.0 95.0 95.0 85.0 95.0 105.0 105.0 95.0 105.0 115.0 115.0 105.0 115.0 125.0 125.0 115.0 125.0 135.0 135.0 125.0 135.0 145.0 145.0 135.0 145.0 155.0 155.0 145.0 155.0 165.0 165.0 155.0 165.0 175.0 175.0 165.0 175.0 185.0 185.0 175.0 185.0 195.0 195.0 185.0 195.0 205.0 205.0 195.0 205.0 215.0 215.0 205.0 215.0 225.0 225.0 215.0 225.0 235.0 235.0 225.0 235.0 245.0 245.0 235.0 245.0 255.0 255.0 245.0 255.0 265.0 265.0 255.0 265.0 275.0 275.0 265.0 275.0 285.0 285.0 275.0 285.0 295.0 295.0 285.0 295.0 305.0 305.0 295.0 305.0 315.0 315.0 305.0 315.0 325.0 325.0 315.0 325.0 335.0 335.0 325.0 335.0 345.0 345.0 335.0 345.0 355.0 355.0 345.0 -4.5 4.5 4.5 -4.5 4.5 13.5 13.5 4.5 13.5 22.5 22.5 13.5 22.5 31.5 31.5 22.5 31.5 40.5 40.5 31.5 40.5 49.5 49.5 40.5 49.5 58.5 58.5 49.5 58.5 67.5 67.5 58.5 67.5 76.5 76.5 67.5 76.5 85.5 85.5 76.5 85.5 94.5 94.5 85.5 94.5 103.5 103.5 94.5 103.5 112.5 112.5 103.5 112.5 121.5 121.5 112.5 121.5 130.5 130.5 121.5 130.5 139.5 139.5 130.5 139.5 148.5 148.5 139.5 148.5 157.5 157.5 148.5 157.5 166.5 166.5 157.5 166.5 175.5 175.5 166.5 175.5 184.5 184.5 175.5 184.5 193.5 193.5 184.5 193.5 202.5 202.5 193.5 202.5 211.5 211.5 202.5 211.5 220.5 220.5 211.5 220.5 229.5 229.5 220.5 229.5 238.5 238.5 229.5 238.5 247.5 247.5 238.5 247.5 256.5 256.5 247.5 256.5 265.5 265.5 256.5 265.5 274.5 274.5 265.5 274.5 283.5 283.5 274.5 283.5 292.5 292.5 283.5 292.5 301.5 301.5 292.5 301.5 310.5 310.5 301.5 310.5 319.5 319.5 310.5 319.5 328.5 328.5 319.5 328.5 337.5 337.5 328.5 337.5 346.5 346.5 337.5 346.5 355.5 355.5 346.5 -4.0 4.0 4.0 -4.0 4.0 12.0 12.0 4.0 12.0 20.0 20.0 12.0 20.0 28.0 28.0 20.0 28.0 36.0 36.0 28.0 36.0 44.0 44.0 36.0 44.0 52.0 52.0 44.0 52.0 60.0 60.0 52.0 60.0 68.0 68.0 60.0 68.0 76.0 76.0 68.0 76.0 84.0 84.0 76.0 84.0 92.0 92.0 84.0 92.0 100.0 100.0 92.0 100.0 108.0 108.0 100.0 108.0 116.0 116.0 108.0 116.0 124.0 124.0 116.0 124.0 132.0 132.0 124.0 132.0 140.0 140.0 132.0 140.0 148.0 148.0 140.0 148.0 156.0 156.0 148.0 156.0 164.0 164.0 156.0 164.0 172.0 172.0 164.0 172.0 180.0 180.0 172.0 180.0 188.0 188.0 180.0 188.0 196.0 196.0 188.0 196.0 204.0 204.0 196.0 204.0 212.0 212.0 204.0 212.0 220.0 220.0 212.0 220.0 228.0 228.0 220.0 228.0 236.0 236.0 228.0 236.0 244.0 244.0 236.0 244.0 252.0 252.0 244.0 252.0 260.0 260.0 252.0 260.0 268.0 268.0 260.0 268.0 276.0 276.0 268.0 276.0 284.0 284.0 276.0 284.0 292.0 292.0 284.0 292.0 300.0 300.0 292.0 300.0 308.0 308.0 300.0 308.0 316.0 316.0 308.0 316.0 324.0 324.0 316.0 324.0 332.0 332.0 324.0 332.0 340.0 340.0 332.0 340.0 348.0 348.0 340.0 348.0 356.0 356.0 348.0 -3.33333333333 3.33333333333 3.33333333333 -3.33333333333 3.33333317439 9.99999984105 9.99999984105 3.33333317439 9.99999968211 16.6666663488 16.6666663488 9.99999968211 16.6666666667 23.3333333333 23.3333333333 16.6666666667 23.3333326976 29.9999993642 29.9999993642 23.3333326976 29.9999987284 36.6666653951 36.6666653951 29.9999987284 36.6666666667 43.3333333333 43.3333333333 36.6666666667 43.3333346049 50.0000012716 50.0000012716 43.3333346049 49.9999987284 56.6666653951 56.6666653951 49.9999987284 56.6666666667 63.3333333333 63.3333333333 56.6666666667 63.3333307902 69.9999974569 69.9999974569 63.3333307902 70.0000025431 76.6666692098 76.6666692098 70.0000025431 76.6666666667 83.3333333333 83.3333333333 76.6666666667 83.3333307902 89.9999974569 89.9999974569 83.3333307902 90.0000025431 96.6666692098 96.6666692098 90.0000025431 96.6666666667 103.333333333 103.333333333 96.6666666667 103.33333079 109.999997457 109.999997457 103.33333079 110.000002543 116.66666921 116.66666921 110.000002543 116.666666667 123.333333333 123.333333333 116.666666667 123.33333079 129.999997457 129.999997457 123.33333079 129.999994914 136.66666158 136.66666158 129.999994914 136.666666667 143.333333333 143.333333333 136.666666667 143.33333842 150.000005086 150.000005086 143.33333842 149.999994914 156.66666158 156.66666158 149.999994914 156.666666667 163.333333333 163.333333333 156.666666667 163.33333842 170.000005086 170.000005086 163.33333842 169.999994914 176.66666158 176.66666158 169.999994914 176.666666667 183.333333333 183.333333333 176.666666667 183.33333842 190.000005086 190.000005086 183.33333842 189.999994914 196.66666158 196.66666158 189.999994914 196.666666667 203.333333333 203.333333333 196.666666667 203.33333842 210.000005086 210.000005086 203.33333842 209.999994914 216.66666158 216.66666158 209.999994914 216.666666667 223.333333333 223.333333333 216.666666667 223.33333842 230.000005086 230.000005086 223.33333842 229.999994914 236.66666158 236.66666158 229.999994914 236.666666667 243.333333333 243.333333333 236.666666667 243.33333842 250.000005086 250.000005086 243.33333842 249.999994914 256.66666158 256.66666158 249.999994914 256.666666667 263.333333333 263.333333333 256.666666667 263.333323161 269.999989827 269.999989827 263.333323161 270.000010173 276.666676839 276.666676839 270.000010173 276.666666667 283.333333333 283.333333333 276.666666667 283.333323161 289.999989827 289.999989827 283.333323161 290.000010173 296.666676839 296.666676839 290.000010173 296.666666667 303.333333333 303.333333333 296.666666667 303.333323161 309.999989827 309.999989827 303.333323161 310.000010173 316.666676839 316.666676839 310.000010173 316.666666667 323.333333333 323.333333333 316.666666667 323.333323161 329.999989827 329.999989827 323.333323161 330.000010173 336.666676839 336.666676839 330.000010173 336.666666667 343.333333333 343.333333333 336.666666667 343.333323161 349.999989827 349.999989827 343.333323161 350.000010173 356.666676839 356.666676839 350.000010173 -3.0 3.0 3.0 -3.0 3.0 9.0 9.0 3.0 9.0 15.0 15.0 9.0 15.0 21.0 21.0 15.0 21.0 27.0 27.0 21.0 27.0 33.0 33.0 27.0 33.0 39.0 39.0 33.0 39.0 45.0 45.0 39.0 45.0 51.0 51.0 45.0 51.0 57.0 57.0 51.0 57.0 63.0 63.0 57.0 63.0 69.0 69.0 63.0 69.0 75.0 75.0 69.0 75.0 81.0 81.0 75.0 81.0 87.0 87.0 81.0 87.0 93.0 93.0 87.0 93.0 99.0 99.0 93.0 99.0 105.0 105.0 99.0 105.0 111.0 111.0 105.0 111.0 117.0 117.0 111.0 117.0 123.0 123.0 117.0 123.0 129.0 129.0 123.0 129.0 135.0 135.0 129.0 135.0 141.0 141.0 135.0 141.0 147.0 147.0 141.0 147.0 153.0 153.0 147.0 153.0 159.0 159.0 153.0 159.0 165.0 165.0 159.0 165.0 171.0 171.0 165.0 171.0 177.0 177.0 171.0 177.0 183.0 183.0 177.0 183.0 189.0 189.0 183.0 189.0 195.0 195.0 189.0 195.0 201.0 201.0 195.0 201.0 207.0 207.0 201.0 207.0 213.0 213.0 207.0 213.0 219.0 219.0 213.0 219.0 225.0 225.0 219.0 225.0 231.0 231.0 225.0 231.0 237.0 237.0 231.0 237.0 243.0 243.0 237.0 243.0 249.0 249.0 243.0 249.0 255.0 255.0 249.0 255.0 261.0 261.0 255.0 261.0 267.0 267.0 261.0 267.0 273.0 273.0 267.0 273.0 279.0 279.0 273.0 279.0 285.0 285.0 279.0 285.0 291.0 291.0 285.0 291.0 297.0 297.0 291.0 297.0 303.0 303.0 297.0 303.0 309.0 309.0 303.0 309.0 315.0 315.0 309.0 315.0 321.0 321.0 315.0 321.0 327.0 327.0 321.0 327.0 333.0 333.0 327.0 333.0 339.0 339.0 333.0 339.0 345.0 345.0 339.0 345.0 351.0 351.0 345.0 351.0 357.0 357.0 351.0 -2.8125 2.8125 2.8125 -2.8125 2.8125 8.4375 8.4375 2.8125 8.4375 14.0625 14.0625 8.4375 14.0625 19.6875 19.6875 14.0625 19.6875 25.3125 25.3125 19.6875 25.3125 30.9375 30.9375 25.3125 30.9375 36.5625 36.5625 30.9375 36.5625 42.1875 42.1875 36.5625 42.1875 47.8125 47.8125 42.1875 47.8125 53.4375 53.4375 47.8125 53.4375 59.0625 59.0625 53.4375 59.0625 64.6875 64.6875 59.0625 64.6875 70.3125 70.3125 64.6875 70.3125 75.9375 75.9375 70.3125 75.9375 81.5625 81.5625 75.9375 81.5625 87.1875 87.1875 81.5625 87.1875 92.8125 92.8125 87.1875 92.8125 98.4375 98.4375 92.8125 98.4375 104.0625 104.0625 98.4375 104.0625 109.6875 109.6875 104.0625 109.6875 115.3125 115.3125 109.6875 115.3125 120.9375 120.9375 115.3125 120.9375 126.5625 126.5625 120.9375 126.5625 132.1875 132.1875 126.5625 132.1875 137.8125 137.8125 132.1875 137.8125 143.4375 143.4375 137.8125 143.4375 149.0625 149.0625 143.4375 149.0625 154.6875 154.6875 149.0625 154.6875 160.3125 160.3125 154.6875 160.3125 165.9375 165.9375 160.3125 165.9375 171.5625 171.5625 165.9375 171.5625 177.1875 177.1875 171.5625 177.1875 182.8125 182.8125 177.1875 182.8125 188.4375 188.4375 182.8125 188.4375 194.0625 194.0625 188.4375 194.0625 199.6875 199.6875 194.0625 199.6875 205.3125 205.3125 199.6875 205.3125 210.9375 210.9375 205.3125 210.9375 216.5625 216.5625 210.9375 216.5625 222.1875 222.1875 216.5625 222.1875 227.8125 227.8125 222.1875 227.8125 233.4375 233.4375 227.8125 233.4375 239.0625 239.0625 233.4375 239.0625 244.6875 244.6875 239.0625 244.6875 250.3125 250.3125 244.6875 250.3125 255.9375 255.9375 250.3125 255.9375 261.5625 261.5625 255.9375 261.5625 267.1875 267.1875 261.5625 267.1875 272.8125 272.8125 267.1875 272.8125 278.4375 278.4375 272.8125 278.4375 284.0625 284.0625 278.4375 284.0625 289.6875 289.6875 284.0625 289.6875 295.3125 295.3125 289.6875 295.3125 300.9375 300.9375 295.3125 300.9375 306.5625 306.5625 300.9375 306.5625 312.1875 312.1875 306.5625 312.1875 317.8125 317.8125 312.1875 317.8125 323.4375 323.4375 317.8125 323.4375 329.0625 329.0625 323.4375 329.0625 334.6875 334.6875 329.0625 334.6875 340.3125 340.3125 334.6875 340.3125 345.9375 345.9375 340.3125 345.9375 351.5625 351.5625 345.9375 351.5625 357.1875 357.1875 351.5625 -2.5 2.5 2.5 -2.5 2.5 7.5 7.5 2.5 7.5 12.5 12.5 7.5 12.5 17.5 17.5 12.5 17.5 22.5 22.5 17.5 22.5 27.5 27.5 22.5 27.5 32.5 32.5 27.5 32.5 37.5 37.5 32.5 37.5 42.5 42.5 37.5 42.5 47.5 47.5 42.5 47.5 52.5 52.5 47.5 52.5 57.5 57.5 52.5 57.5 62.5 62.5 57.5 62.5 67.5 67.5 62.5 67.5 72.5 72.5 67.5 72.5 77.5 77.5 72.5 77.5 82.5 82.5 77.5 82.5 87.5 87.5 82.5 87.5 92.5 92.5 87.5 92.5 97.5 97.5 92.5 97.5 102.5 102.5 97.5 102.5 107.5 107.5 102.5 107.5 112.5 112.5 107.5 112.5 117.5 117.5 112.5 117.5 122.5 122.5 117.5 122.5 127.5 127.5 122.5 127.5 132.5 132.5 127.5 132.5 137.5 137.5 132.5 137.5 142.5 142.5 137.5 142.5 147.5 147.5 142.5 147.5 152.5 152.5 147.5 152.5 157.5 157.5 152.5 157.5 162.5 162.5 157.5 162.5 167.5 167.5 162.5 167.5 172.5 172.5 167.5 172.5 177.5 177.5 172.5 177.5 182.5 182.5 177.5 182.5 187.5 187.5 182.5 187.5 192.5 192.5 187.5 192.5 197.5 197.5 192.5 197.5 202.5 202.5 197.5 202.5 207.5 207.5 202.5 207.5 212.5 212.5 207.5 212.5 217.5 217.5 212.5 217.5 222.5 222.5 217.5 222.5 227.5 227.5 222.5 227.5 232.5 232.5 227.5 232.5 237.5 237.5 232.5 237.5 242.5 242.5 237.5 242.5 247.5 247.5 242.5 247.5 252.5 252.5 247.5 252.5 257.5 257.5 252.5 257.5 262.5 262.5 257.5 262.5 267.5 267.5 262.5 267.5 272.5 272.5 267.5 272.5 277.5 277.5 272.5 277.5 282.5 282.5 277.5 282.5 287.5 287.5 282.5 287.5 292.5 292.5 287.5 292.5 297.5 297.5 292.5 297.5 302.5 302.5 297.5 302.5 307.5 307.5 302.5 307.5 312.5 312.5 307.5 312.5 317.5 317.5 312.5 317.5 322.5 322.5 317.5 322.5 327.5 327.5 322.5 327.5 332.5 332.5 327.5 332.5 337.5 337.5 332.5 337.5 342.5 342.5 337.5 342.5 347.5 347.5 342.5 347.5 352.5 352.5 347.5 352.5 357.5 357.5 352.5 -2.5 2.5 2.5 -2.5 2.5 7.5 7.5 2.5 7.5 12.5 12.5 7.5 12.5 17.5 17.5 12.5 17.5 22.5 22.5 17.5 22.5 27.5 27.5 22.5 27.5 32.5 32.5 27.5 32.5 37.5 37.5 32.5 37.5 42.5 42.5 37.5 42.5 47.5 47.5 42.5 47.5 52.5 52.5 47.5 52.5 57.5 57.5 52.5 57.5 62.5 62.5 57.5 62.5 67.5 67.5 62.5 67.5 72.5 72.5 67.5 72.5 77.5 77.5 72.5 77.5 82.5 82.5 77.5 82.5 87.5 87.5 82.5 87.5 92.5 92.5 87.5 92.5 97.5 97.5 92.5 97.5 102.5 102.5 97.5 102.5 107.5 107.5 102.5 107.5 112.5 112.5 107.5 112.5 117.5 117.5 112.5 117.5 122.5 122.5 117.5 122.5 127.5 127.5 122.5 127.5 132.5 132.5 127.5 132.5 137.5 137.5 132.5 137.5 142.5 142.5 137.5 142.5 147.5 147.5 142.5 147.5 152.5 152.5 147.5 152.5 157.5 157.5 152.5 157.5 162.5 162.5 157.5 162.5 167.5 167.5 162.5 167.5 172.5 172.5 167.5 172.5 177.5 177.5 172.5 177.5 182.5 182.5 177.5 182.5 187.5 187.5 182.5 187.5 192.5 192.5 187.5 192.5 197.5 197.5 192.5 197.5 202.5 202.5 197.5 202.5 207.5 207.5 202.5 207.5 212.5 212.5 207.5 212.5 217.5 217.5 212.5 217.5 222.5 222.5 217.5 222.5 227.5 227.5 222.5 227.5 232.5 232.5 227.5 232.5 237.5 237.5 232.5 237.5 242.5 242.5 237.5 242.5 247.5 247.5 242.5 247.5 252.5 252.5 247.5 252.5 257.5 257.5 252.5 257.5 262.5 262.5 257.5 262.5 267.5 267.5 262.5 267.5 272.5 272.5 267.5 272.5 277.5 277.5 272.5 277.5 282.5 282.5 277.5 282.5 287.5 287.5 282.5 287.5 292.5 292.5 287.5 292.5 297.5 297.5 292.5 297.5 302.5 302.5 297.5 302.5 307.5 307.5 302.5 307.5 312.5 312.5 307.5 312.5 317.5 317.5 312.5 317.5 322.5 322.5 317.5 322.5 327.5 327.5 322.5 327.5 332.5 332.5 327.5 332.5 337.5 337.5 332.5 337.5 342.5 342.5 337.5 342.5 347.5 347.5 342.5 347.5 352.5 352.5 347.5 352.5 357.5 357.5 352.5 -2.25 2.25 2.25 -2.25 2.25 6.75 6.75 2.25 6.75 11.25 11.25 6.75 11.25 15.75 15.75 11.25 15.75 20.25 20.25 15.75 20.25 24.75 24.75 20.25 24.75 29.25 29.25 24.75 29.25 33.75 33.75 29.25 33.75 38.25 38.25 33.75 38.25 42.75 42.75 38.25 42.75 47.25 47.25 42.75 47.25 51.75 51.75 47.25 51.75 56.25 56.25 51.75 56.25 60.75 60.75 56.25 +60.75 65.25 65.25 60.75 65.25 69.75 69.75 65.25 69.75 74.25 74.25 69.75 74.25 78.75 78.75 74.25 78.75 83.25 83.25 78.75 83.25 87.75 87.75 83.25 87.75 92.25 92.25 87.75 92.25 96.75 96.75 92.25 96.75 101.25 101.25 96.75 101.25 105.75 105.75 101.25 105.75 110.25 110.25 105.75 110.25 114.75 114.75 110.25 114.75 119.25 119.25 114.75 119.25 123.75 123.75 119.25 123.75 128.25 128.25 123.75 128.25 132.75 132.75 128.25 132.75 137.25 137.25 132.75 137.25 141.75 141.75 137.25 141.75 146.25 146.25 141.75 146.25 150.75 150.75 146.25 150.75 155.25 155.25 150.75 155.25 159.75 159.75 155.25 159.75 164.25 164.25 159.75 164.25 168.75 168.75 164.25 168.75 173.25 173.25 168.75 173.25 177.75 177.75 173.25 177.75 182.25 182.25 177.75 182.25 186.75 186.75 182.25 186.75 191.25 191.25 186.75 191.25 195.75 195.75 191.25 195.75 200.25 200.25 195.75 200.25 204.75 204.75 200.25 204.75 209.25 209.25 204.75 209.25 213.75 213.75 209.25 213.75 218.25 218.25 213.75 218.25 222.75 222.75 218.25 222.75 227.25 227.25 222.75 227.25 231.75 231.75 227.25 231.75 236.25 236.25 231.75 236.25 240.75 240.75 236.25 240.75 245.25 245.25 240.75 245.25 249.75 249.75 245.25 249.75 254.25 254.25 249.75 254.25 258.75 258.75 254.25 258.75 263.25 263.25 258.75 263.25 267.75 267.75 263.25 267.75 272.25 272.25 267.75 272.25 276.75 276.75 272.25 276.75 281.25 281.25 276.75 281.25 285.75 285.75 281.25 285.75 290.25 290.25 285.75 290.25 294.75 294.75 290.25 294.75 299.25 299.25 294.75 299.25 303.75 303.75 299.25 303.75 308.25 308.25 303.75 308.25 312.75 312.75 308.25 312.75 317.25 317.25 312.75 317.25 321.75 321.75 317.25 321.75 326.25 326.25 321.75 326.25 330.75 330.75 326.25 330.75 335.25 335.25 330.75 335.25 339.75 339.75 335.25 339.75 344.25 344.25 339.75 344.25 348.75 348.75 344.25 348.75 353.25 353.25 348.75 353.25 357.75 357.75 353.25 -2.0 2.0 2.0 -2.0 2.0 6.0 6.0 2.0 6.0 10.0 10.0 6.0 10.0 14.0 14.0 10.0 14.0 18.0 18.0 14.0 18.0 22.0 22.0 18.0 22.0 26.0 26.0 22.0 26.0 30.0 30.0 26.0 30.0 34.0 34.0 30.0 34.0 38.0 38.0 34.0 38.0 42.0 42.0 38.0 42.0 46.0 46.0 42.0 46.0 50.0 50.0 46.0 50.0 54.0 54.0 50.0 54.0 58.0 58.0 54.0 58.0 62.0 62.0 58.0 62.0 66.0 66.0 62.0 66.0 70.0 70.0 66.0 70.0 74.0 74.0 70.0 74.0 78.0 78.0 74.0 78.0 82.0 82.0 78.0 82.0 86.0 86.0 82.0 86.0 90.0 90.0 86.0 90.0 94.0 94.0 90.0 94.0 98.0 98.0 94.0 98.0 102.0 102.0 98.0 102.0 106.0 106.0 102.0 106.0 110.0 110.0 106.0 110.0 114.0 114.0 110.0 114.0 118.0 118.0 114.0 118.0 122.0 122.0 118.0 122.0 126.0 126.0 122.0 126.0 130.0 130.0 126.0 130.0 134.0 134.0 130.0 134.0 138.0 138.0 134.0 138.0 142.0 142.0 138.0 142.0 146.0 146.0 142.0 146.0 150.0 150.0 146.0 150.0 154.0 154.0 150.0 154.0 158.0 158.0 154.0 158.0 162.0 162.0 158.0 162.0 166.0 166.0 162.0 166.0 170.0 170.0 166.0 170.0 174.0 174.0 170.0 174.0 178.0 178.0 174.0 178.0 182.0 182.0 178.0 182.0 186.0 186.0 182.0 186.0 190.0 190.0 186.0 190.0 194.0 194.0 190.0 194.0 198.0 198.0 194.0 198.0 202.0 202.0 198.0 202.0 206.0 206.0 202.0 206.0 210.0 210.0 206.0 210.0 214.0 214.0 210.0 214.0 218.0 218.0 214.0 218.0 222.0 222.0 218.0 222.0 226.0 226.0 222.0 226.0 230.0 230.0 226.0 230.0 234.0 234.0 230.0 234.0 238.0 238.0 234.0 238.0 242.0 242.0 238.0 242.0 246.0 246.0 242.0 246.0 250.0 250.0 246.0 250.0 254.0 254.0 250.0 254.0 258.0 258.0 254.0 258.0 262.0 262.0 258.0 262.0 266.0 266.0 262.0 266.0 270.0 270.0 266.0 270.0 274.0 274.0 270.0 274.0 278.0 278.0 274.0 278.0 282.0 282.0 278.0 282.0 286.0 286.0 282.0 286.0 290.0 290.0 286.0 290.0 294.0 294.0 290.0 294.0 298.0 298.0 294.0 298.0 302.0 302.0 298.0 302.0 306.0 306.0 302.0 306.0 310.0 310.0 306.0 310.0 314.0 314.0 310.0 314.0 318.0 318.0 314.0 318.0 322.0 322.0 318.0 322.0 326.0 326.0 322.0 326.0 330.0 330.0 326.0 330.0 334.0 334.0 330.0 334.0 338.0 338.0 334.0 338.0 342.0 342.0 338.0 342.0 346.0 346.0 342.0 346.0 350.0 350.0 346.0 350.0 354.0 354.0 350.0 354.0 358.0 358.0 354.0 -1.875 1.875 1.875 -1.875 1.875 5.625 5.625 1.875 5.625 9.375 9.375 5.625 9.375 13.125 13.125 9.375 13.125 16.875 16.875 13.125 16.875 20.625 20.625 16.875 20.625 24.375 24.375 20.625 24.375 28.125 28.125 24.375 28.125 31.875 31.875 28.125 31.875 35.625 35.625 31.875 35.625 39.375 39.375 35.625 39.375 43.125 43.125 39.375 43.125 46.875 46.875 43.125 46.875 50.625 50.625 46.875 50.625 54.375 54.375 50.625 54.375 58.125 58.125 54.375 58.125 61.875 61.875 58.125 61.875 65.625 65.625 61.875 65.625 69.375 69.375 65.625 69.375 73.125 73.125 69.375 73.125 76.875 76.875 73.125 76.875 80.625 80.625 76.875 80.625 84.375 84.375 80.625 84.375 88.125 88.125 84.375 88.125 91.875 91.875 88.125 91.875 95.625 95.625 91.875 95.625 99.375 99.375 95.625 99.375 103.125 103.125 99.375 103.125 106.875 106.875 103.125 106.875 110.625 110.625 106.875 110.625 114.375 114.375 110.625 114.375 118.125 118.125 114.375 118.125 121.875 121.875 118.125 121.875 125.625 125.625 121.875 125.625 129.375 129.375 125.625 129.375 133.125 133.125 129.375 133.125 136.875 136.875 133.125 136.875 140.625 140.625 136.875 140.625 144.375 144.375 140.625 144.375 148.125 148.125 144.375 148.125 151.875 151.875 148.125 151.875 155.625 155.625 151.875 155.625 159.375 159.375 155.625 159.375 163.125 163.125 159.375 163.125 166.875 166.875 163.125 166.875 170.625 170.625 166.875 170.625 174.375 174.375 170.625 174.375 178.125 178.125 174.375 178.125 181.875 181.875 178.125 181.875 185.625 185.625 181.875 185.625 189.375 189.375 185.625 189.375 193.125 193.125 189.375 193.125 196.875 196.875 193.125 196.875 200.625 200.625 196.875 200.625 204.375 204.375 200.625 204.375 208.125 208.125 204.375 208.125 211.875 211.875 208.125 211.875 215.625 215.625 211.875 215.625 219.375 219.375 215.625 219.375 223.125 223.125 219.375 223.125 226.875 226.875 223.125 226.875 230.625 230.625 226.875 230.625 234.375 234.375 230.625 234.375 238.125 238.125 234.375 238.125 241.875 241.875 238.125 241.875 245.625 245.625 241.875 245.625 249.375 249.375 245.625 249.375 253.125 253.125 249.375 253.125 256.875 256.875 253.125 256.875 260.625 260.625 256.875 260.625 264.375 264.375 260.625 264.375 268.125 268.125 264.375 268.125 271.875 271.875 268.125 271.875 275.625 275.625 271.875 275.625 279.375 279.375 275.625 279.375 283.125 283.125 279.375 283.125 286.875 286.875 283.125 286.875 290.625 290.625 286.875 290.625 294.375 294.375 290.625 294.375 298.125 298.125 294.375 298.125 301.875 301.875 298.125 301.875 305.625 305.625 301.875 305.625 309.375 309.375 305.625 309.375 313.125 313.125 309.375 313.125 316.875 316.875 313.125 316.875 320.625 320.625 316.875 320.625 324.375 324.375 320.625 324.375 328.125 328.125 324.375 328.125 331.875 331.875 328.125 331.875 335.625 335.625 331.875 335.625 339.375 339.375 335.625 339.375 343.125 343.125 339.375 343.125 346.875 346.875 343.125 346.875 350.625 350.625 346.875 350.625 354.375 354.375 350.625 354.375 358.125 358.125 354.375 -1.8 1.8 1.8 -1.8 1.79999990463 5.39999990463 5.39999990463 1.79999990463 5.39999980927 8.99999980927 8.99999980927 5.39999980927 9.00000019073 12.6000001907 12.6000001907 9.00000019073 12.5999996185 16.1999996185 16.1999996185 12.5999996185 16.2 19.8 19.8 16.2 19.8000003815 23.4000003815 23.4000003815 19.8000003815 23.4000007629 27.0000007629 27.0000007629 23.4000007629 26.9999992371 30.5999992371 30.5999992371 26.9999992371 30.6000015259 34.2000015259 34.2000015259 30.6000015259 34.2 37.8 37.8 34.2 37.7999984741 41.3999984741 41.3999984741 37.7999984741 41.4000007629 45.0000007629 45.0000007629 41.4000007629 44.9999992371 48.5999992371 48.5999992371 44.9999992371 48.6000015259 52.2000015259 52.2000015259 48.6000015259 52.2 55.8 55.8 52.2 55.7999984741 59.3999984741 59.3999984741 55.7999984741 59.4000007629 63.0000007629 63.0000007629 59.4000007629 63.0000030518 66.6000030518 66.6000030518 63.0000030518 66.6000015259 70.2000015259 70.2000015259 66.6000015259 70.2 73.8 73.8 70.2 73.7999984741 77.3999984741 77.3999984741 73.7999984741 77.3999969482 80.9999969482 80.9999969482 77.3999969482 81.0000030518 84.6000030518 84.6000030518 81.0000030518 84.6000015259 88.2000015259 88.2000015259 84.6000015259 88.2 91.8 91.8 88.2 91.7999984741 95.3999984741 95.3999984741 91.7999984741 95.3999969482 98.9999969482 98.9999969482 95.3999969482 99.0000030518 102.600003052 102.600003052 99.0000030518 102.600001526 106.200001526 106.200001526 102.600001526 106.2 109.8 109.8 106.2 109.799998474 113.399998474 113.399998474 109.799998474 113.399996948 116.999996948 116.999996948 113.399996948 117.000003052 120.600003052 120.600003052 117.000003052 120.600001526 124.200001526 124.200001526 120.600001526 124.2 127.8 127.8 124.2 127.800006104 131.400006104 131.400006104 127.800006104 131.399996948 134.999996948 134.999996948 131.399996948 135.000003052 138.600003052 138.600003052 135.000003052 138.599993896 142.199993896 142.199993896 138.599993896 142.2 145.8 145.8 142.2 145.800006104 149.400006104 149.400006104 145.800006104 149.399996948 152.999996948 152.999996948 149.399996948 153.000003052 156.600003052 156.600003052 153.000003052 156.599993896 160.199993896 160.199993896 156.599993896 160.2 163.8 163.8 160.2 163.800006104 167.400006104 167.400006104 163.800006104 167.399996948 170.999996948 170.999996948 167.399996948 171.000003052 174.600003052 174.600003052 171.000003052 174.599993896 178.199993896 178.199993896 174.599993896 178.2 181.8 181.8 178.2 181.800006104 185.400006104 185.400006104 181.800006104 185.399996948 188.999996948 188.999996948 185.399996948 189.000003052 192.600003052 192.600003052 189.000003052 192.599993896 196.199993896 196.199993896 192.599993896 196.2 199.8 199.8 196.2 199.800006104 203.400006104 203.400006104 199.800006104 203.399996948 206.999996948 206.999996948 203.399996948 207.000003052 210.600003052 210.600003052 207.000003052 210.599993896 214.199993896 214.199993896 210.599993896 214.2 217.8 217.8 214.2 217.800006104 221.400006104 221.400006104 217.800006104 221.399996948 224.999996948 224.999996948 221.399996948 225.000003052 228.600003052 228.600003052 225.000003052 228.599993896 232.199993896 232.199993896 228.599993896 232.2 235.8 235.8 232.2 235.800006104 239.400006104 239.400006104 235.800006104 239.399996948 242.999996948 242.999996948 239.399996948 243.000003052 246.600003052 246.600003052 243.000003052 246.599993896 250.199993896 250.199993896 246.599993896 250.2 253.8 253.8 250.2 253.800006104 257.400006104 257.400006104 253.800006104 257.400012207 261.000012207 261.000012207 257.400012207 260.999987793 264.599987793 264.599987793 260.999987793 264.599993896 268.199993896 268.199993896 264.599993896 268.2 271.8 271.8 268.2 271.800006104 275.400006104 275.400006104 271.800006104 275.400012207 279.000012207 279.000012207 275.400012207 278.999987793 282.599987793 282.599987793 278.999987793 282.599993896 286.199993896 286.199993896 282.599993896 286.2 289.8 289.8 286.2 289.800006104 293.400006104 293.400006104 289.800006104 293.400012207 297.000012207 297.000012207 293.400012207 296.999987793 300.599987793 300.599987793 296.999987793 300.599993896 304.199993896 304.199993896 300.599993896 304.2 307.8 307.8 304.2 307.800006104 311.400006104 311.400006104 307.800006104 311.400012207 315.000012207 315.000012207 311.400012207 314.999987793 318.599987793 318.599987793 314.999987793 318.599993896 322.199993896 322.199993896 318.599993896 322.2 325.8 325.8 322.2 325.800006104 329.400006104 329.400006104 325.800006104 329.400012207 333.000012207 333.000012207 329.400012207 332.999987793 336.599987793 336.599987793 332.999987793 336.599993896 340.199993896 340.199993896 336.599993896 340.2 343.8 343.8 340.2 343.800006104 347.400006104 347.400006104 343.800006104 347.400012207 351.000012207 351.000012207 347.400012207 350.999987793 354.599987793 354.599987793 350.999987793 354.599993896 358.199993896 358.199993896 354.599993896 -1.66666666667 1.66666666667 1.66666666667 -1.66666666667 1.66666658719 4.99999992053 4.99999992053 1.66666658719 4.99999984105 8.33333317439 8.33333317439 4.99999984105 8.33333333333 11.6666666667 11.6666666667 8.33333333333 11.6666663488 14.9999996821 14.9999996821 11.6666663488 14.9999993642 18.3333326976 18.3333326976 14.9999993642 18.3333333333 21.6666666667 21.6666666667 18.3333333333 21.6666673024 25.0000006358 25.0000006358 21.6666673024 24.9999993642 28.3333326976 28.3333326976 24.9999993642 28.3333333333 31.6666666667 31.6666666667 28.3333333333 31.6666653951 34.9999987284 34.9999987284 31.6666653951 35.0000012716 38.3333346049 38.3333346049 35.0000012716 38.3333333333 41.6666666667 41.6666666667 38.3333333333 41.6666653951 44.9999987284 44.9999987284 41.6666653951 45.0000012716 48.3333346049 48.3333346049 45.0000012716 48.3333333333 51.6666666667 51.6666666667 48.3333333333 51.6666653951 54.9999987284 54.9999987284 51.6666653951 55.0000012716 58.3333346049 58.3333346049 55.0000012716 58.3333333333 61.6666666667 61.6666666667 58.3333333333 61.6666653951 64.9999987284 64.9999987284 61.6666653951 64.9999974569 68.3333307902 68.3333307902 64.9999974569 68.3333333333 71.6666666667 71.6666666667 68.3333333333 71.6666692098 75.0000025431 75.0000025431 71.6666692098 74.9999974569 78.3333307902 78.3333307902 74.9999974569 78.3333333333 81.6666666667 81.6666666667 78.3333333333 81.6666692098 85.0000025431 85.0000025431 81.6666692098 84.9999974569 88.3333307902 88.3333307902 84.9999974569 88.3333333333 91.6666666667 91.6666666667 88.3333333333 91.6666692098 95.0000025431 95.0000025431 91.6666692098 94.9999974569 98.3333307902 98.3333307902 94.9999974569 98.3333333333 101.666666667 101.666666667 98.3333333333 101.66666921 105.000002543 105.000002543 101.66666921 104.999997457 108.33333079 108.33333079 104.999997457 108.333333333 111.666666667 111.666666667 108.333333333 111.66666921 115.000002543 115.000002543 111.66666921 114.999997457 118.33333079 118.33333079 114.999997457 118.333333333 121.666666667 121.666666667 118.333333333 121.66666921 125.000002543 125.000002543 121.66666921 124.999997457 128.33333079 128.33333079 124.999997457 128.333333333 131.666666667 131.666666667 128.333333333 131.66666158 134.999994914 134.999994914 131.66666158 135.000005086 138.33333842 138.33333842 135.000005086 138.333333333 141.666666667 141.666666667 138.333333333 141.66666158 144.999994914 144.999994914 141.66666158 145.000005086 148.33333842 148.33333842 145.000005086 148.333333333 151.666666667 151.666666667 148.333333333 151.66666158 154.999994914 154.999994914 151.66666158 155.000005086 158.33333842 158.33333842 155.000005086 158.333333333 161.666666667 161.666666667 158.333333333 161.66666158 164.999994914 164.999994914 161.66666158 165.000005086 168.33333842 168.33333842 165.000005086 168.333333333 171.666666667 171.666666667 168.333333333 171.66666158 174.999994914 174.999994914 171.66666158 175.000005086 178.33333842 178.33333842 175.000005086 178.333333333 181.666666667 181.666666667 178.333333333 181.66666158 184.999994914 184.999994914 181.66666158 185.000005086 188.33333842 188.33333842 185.000005086 188.333333333 191.666666667 191.666666667 188.333333333 191.66666158 194.999994914 194.999994914 191.66666158 195.000005086 198.33333842 198.33333842 195.000005086 198.333333333 201.666666667 201.666666667 198.333333333 201.66666158 204.999994914 204.999994914 201.66666158 205.000005086 208.33333842 208.33333842 205.000005086 208.333333333 211.666666667 211.666666667 208.333333333 211.66666158 214.999994914 214.999994914 211.66666158 215.000005086 218.33333842 218.33333842 215.000005086 218.333333333 221.666666667 221.666666667 218.333333333 221.66666158 224.999994914 224.999994914 221.66666158 225.000005086 228.33333842 228.33333842 225.000005086 228.333333333 231.666666667 231.666666667 228.333333333 231.66666158 234.999994914 234.999994914 231.66666158 235.000005086 238.33333842 238.33333842 235.000005086 238.333333333 241.666666667 241.666666667 238.333333333 241.66666158 244.999994914 244.999994914 241.66666158 245.000005086 248.33333842 248.33333842 245.000005086 248.333333333 251.666666667 251.666666667 248.333333333 251.66666158 254.999994914 254.999994914 251.66666158 254.999989827 258.333323161 258.333323161 254.999989827 258.333333333 261.666666667 261.666666667 258.333333333 261.666676839 265.000010173 265.000010173 261.666676839 264.999989827 268.333323161 268.333323161 264.999989827 268.333333333 271.666666667 271.666666667 268.333333333 271.666676839 275.000010173 275.000010173 271.666676839 274.999989827 278.333323161 278.333323161 274.999989827 278.333333333 281.666666667 281.666666667 278.333333333 281.666676839 285.000010173 285.000010173 281.666676839 284.999989827 288.333323161 288.333323161 284.999989827 288.333333333 291.666666667 291.666666667 288.333333333 291.666676839 295.000010173 295.000010173 291.666676839 294.999989827 298.333323161 298.333323161 294.999989827 298.333333333 301.666666667 301.666666667 298.333333333 301.666676839 305.000010173 305.000010173 301.666676839 304.999989827 308.333323161 308.333323161 304.999989827 308.333333333 311.666666667 311.666666667 308.333333333 311.666676839 315.000010173 315.000010173 311.666676839 314.999989827 318.333323161 318.333323161 314.999989827 318.333333333 321.666666667 321.666666667 318.333333333 321.666676839 325.000010173 325.000010173 321.666676839 324.999989827 328.333323161 328.333323161 324.999989827 328.333333333 331.666666667 331.666666667 328.333333333 331.666676839 335.000010173 335.000010173 331.666676839 334.999989827 338.333323161 338.333323161 334.999989827 338.333333333 341.666666667 341.666666667 338.333333333 341.666676839 345.000010173 345.000010173 341.666676839 344.999989827 348.333323161 348.333323161 344.999989827 348.333333333 351.666666667 351.666666667 348.333333333 351.666676839 355.000010173 355.000010173 351.666676839 354.999989827 358.333323161 358.333323161 354.999989827 -1.5 1.5 1.5 -1.5 1.5 4.5 4.5 1.5 4.5 7.5 7.5 4.5 7.5 10.5 10.5 7.5 10.5 13.5 13.5 10.5 13.5 16.5 16.5 13.5 16.5 19.5 19.5 16.5 19.5 22.5 22.5 19.5 22.5 25.5 25.5 22.5 25.5 28.5 28.5 25.5 28.5 31.5 31.5 28.5 31.5 34.5 34.5 31.5 34.5 37.5 37.5 34.5 37.5 40.5 40.5 37.5 40.5 43.5 43.5 40.5 43.5 46.5 46.5 43.5 46.5 49.5 49.5 46.5 49.5 52.5 52.5 49.5 52.5 55.5 55.5 52.5 55.5 58.5 58.5 55.5 58.5 61.5 61.5 58.5 61.5 64.5 64.5 61.5 64.5 67.5 67.5 64.5 67.5 70.5 70.5 67.5 70.5 73.5 73.5 70.5 73.5 76.5 76.5 73.5 76.5 79.5 79.5 76.5 79.5 82.5 82.5 79.5 82.5 85.5 85.5 82.5 85.5 88.5 88.5 85.5 88.5 91.5 91.5 88.5 91.5 94.5 94.5 91.5 94.5 97.5 97.5 94.5 97.5 100.5 100.5 97.5 100.5 103.5 103.5 100.5 103.5 106.5 106.5 103.5 106.5 109.5 109.5 106.5 109.5 112.5 112.5 109.5 112.5 115.5 115.5 112.5 115.5 118.5 118.5 115.5 +118.5 121.5 121.5 118.5 121.5 124.5 124.5 121.5 124.5 127.5 127.5 124.5 127.5 130.5 130.5 127.5 130.5 133.5 133.5 130.5 133.5 136.5 136.5 133.5 136.5 139.5 139.5 136.5 139.5 142.5 142.5 139.5 142.5 145.5 145.5 142.5 145.5 148.5 148.5 145.5 148.5 151.5 151.5 148.5 151.5 154.5 154.5 151.5 154.5 157.5 157.5 154.5 157.5 160.5 160.5 157.5 160.5 163.5 163.5 160.5 163.5 166.5 166.5 163.5 166.5 169.5 169.5 166.5 169.5 172.5 172.5 169.5 172.5 175.5 175.5 172.5 175.5 178.5 178.5 175.5 178.5 181.5 181.5 178.5 181.5 184.5 184.5 181.5 184.5 187.5 187.5 184.5 187.5 190.5 190.5 187.5 190.5 193.5 193.5 190.5 193.5 196.5 196.5 193.5 196.5 199.5 199.5 196.5 199.5 202.5 202.5 199.5 202.5 205.5 205.5 202.5 205.5 208.5 208.5 205.5 208.5 211.5 211.5 208.5 211.5 214.5 214.5 211.5 214.5 217.5 217.5 214.5 217.5 220.5 220.5 217.5 220.5 223.5 223.5 220.5 223.5 226.5 226.5 223.5 226.5 229.5 229.5 226.5 229.5 232.5 232.5 229.5 232.5 235.5 235.5 232.5 235.5 238.5 238.5 235.5 238.5 241.5 241.5 238.5 241.5 244.5 244.5 241.5 244.5 247.5 247.5 244.5 247.5 250.5 250.5 247.5 250.5 253.5 253.5 250.5 253.5 256.5 256.5 253.5 256.5 259.5 259.5 256.5 259.5 262.5 262.5 259.5 262.5 265.5 265.5 262.5 265.5 268.5 268.5 265.5 268.5 271.5 271.5 268.5 271.5 274.5 274.5 271.5 274.5 277.5 277.5 274.5 277.5 280.5 280.5 277.5 280.5 283.5 283.5 280.5 283.5 286.5 286.5 283.5 286.5 289.5 289.5 286.5 289.5 292.5 292.5 289.5 292.5 295.5 295.5 292.5 295.5 298.5 298.5 295.5 298.5 301.5 301.5 298.5 301.5 304.5 304.5 301.5 304.5 307.5 307.5 304.5 307.5 310.5 310.5 307.5 310.5 313.5 313.5 310.5 313.5 316.5 316.5 313.5 316.5 319.5 319.5 316.5 319.5 322.5 322.5 319.5 322.5 325.5 325.5 322.5 325.5 328.5 328.5 325.5 328.5 331.5 331.5 328.5 331.5 334.5 334.5 331.5 334.5 337.5 337.5 334.5 337.5 340.5 340.5 337.5 340.5 343.5 343.5 340.5 343.5 346.5 346.5 343.5 346.5 349.5 349.5 346.5 349.5 352.5 352.5 349.5 352.5 355.5 355.5 352.5 355.5 358.5 358.5 355.5 -1.5 1.5 1.5 -1.5 1.5 4.5 4.5 1.5 4.5 7.5 7.5 4.5 7.5 10.5 10.5 7.5 10.5 13.5 13.5 10.5 13.5 16.5 16.5 13.5 16.5 19.5 19.5 16.5 19.5 22.5 22.5 19.5 22.5 25.5 25.5 22.5 25.5 28.5 28.5 25.5 28.5 31.5 31.5 28.5 31.5 34.5 34.5 31.5 34.5 37.5 37.5 34.5 37.5 40.5 40.5 37.5 40.5 43.5 43.5 40.5 43.5 46.5 46.5 43.5 46.5 49.5 49.5 46.5 49.5 52.5 52.5 49.5 52.5 55.5 55.5 52.5 55.5 58.5 58.5 55.5 58.5 61.5 61.5 58.5 61.5 64.5 64.5 61.5 64.5 67.5 67.5 64.5 67.5 70.5 70.5 67.5 70.5 73.5 73.5 70.5 73.5 76.5 76.5 73.5 76.5 79.5 79.5 76.5 79.5 82.5 82.5 79.5 82.5 85.5 85.5 82.5 85.5 88.5 88.5 85.5 88.5 91.5 91.5 88.5 91.5 94.5 94.5 91.5 94.5 97.5 97.5 94.5 97.5 100.5 100.5 97.5 100.5 103.5 103.5 100.5 103.5 106.5 106.5 103.5 106.5 109.5 109.5 106.5 109.5 112.5 112.5 109.5 112.5 115.5 115.5 112.5 115.5 118.5 118.5 115.5 118.5 121.5 121.5 118.5 121.5 124.5 124.5 121.5 124.5 127.5 127.5 124.5 127.5 130.5 130.5 127.5 130.5 133.5 133.5 130.5 133.5 136.5 136.5 133.5 136.5 139.5 139.5 136.5 139.5 142.5 142.5 139.5 142.5 145.5 145.5 142.5 145.5 148.5 148.5 145.5 148.5 151.5 151.5 148.5 151.5 154.5 154.5 151.5 154.5 157.5 157.5 154.5 157.5 160.5 160.5 157.5 160.5 163.5 163.5 160.5 163.5 166.5 166.5 163.5 166.5 169.5 169.5 166.5 169.5 172.5 172.5 169.5 172.5 175.5 175.5 172.5 175.5 178.5 178.5 175.5 178.5 181.5 181.5 178.5 181.5 184.5 184.5 181.5 184.5 187.5 187.5 184.5 187.5 190.5 190.5 187.5 190.5 193.5 193.5 190.5 193.5 196.5 196.5 193.5 196.5 199.5 199.5 196.5 199.5 202.5 202.5 199.5 202.5 205.5 205.5 202.5 205.5 208.5 208.5 205.5 208.5 211.5 211.5 208.5 211.5 214.5 214.5 211.5 214.5 217.5 217.5 214.5 217.5 220.5 220.5 217.5 220.5 223.5 223.5 220.5 223.5 226.5 226.5 223.5 226.5 229.5 229.5 226.5 229.5 232.5 232.5 229.5 232.5 235.5 235.5 232.5 235.5 238.5 238.5 235.5 238.5 241.5 241.5 238.5 241.5 244.5 244.5 241.5 244.5 247.5 247.5 244.5 247.5 250.5 250.5 247.5 250.5 253.5 253.5 250.5 253.5 256.5 256.5 253.5 256.5 259.5 259.5 256.5 259.5 262.5 262.5 259.5 262.5 265.5 265.5 262.5 265.5 268.5 268.5 265.5 268.5 271.5 271.5 268.5 271.5 274.5 274.5 271.5 274.5 277.5 277.5 274.5 277.5 280.5 280.5 277.5 280.5 283.5 283.5 280.5 283.5 286.5 286.5 283.5 286.5 289.5 289.5 286.5 289.5 292.5 292.5 289.5 292.5 295.5 295.5 292.5 295.5 298.5 298.5 295.5 298.5 301.5 301.5 298.5 301.5 304.5 304.5 301.5 304.5 307.5 307.5 304.5 307.5 310.5 310.5 307.5 310.5 313.5 313.5 310.5 313.5 316.5 316.5 313.5 316.5 319.5 319.5 316.5 319.5 322.5 322.5 319.5 322.5 325.5 325.5 322.5 325.5 328.5 328.5 325.5 328.5 331.5 331.5 328.5 331.5 334.5 334.5 331.5 334.5 337.5 337.5 334.5 337.5 340.5 340.5 337.5 340.5 343.5 343.5 340.5 343.5 346.5 346.5 343.5 346.5 349.5 349.5 346.5 349.5 352.5 352.5 349.5 352.5 355.5 355.5 352.5 355.5 358.5 358.5 355.5 -1.40625 1.40625 1.40625 -1.40625 1.40625 4.21875 4.21875 1.40625 4.21875 7.03125 7.03125 4.21875 7.03125 9.84375 9.84375 7.03125 9.84375 12.65625 12.65625 9.84375 12.65625 15.46875 15.46875 12.65625 15.46875 18.28125 18.28125 15.46875 18.28125 21.09375 21.09375 18.28125 21.09375 23.90625 23.90625 21.09375 23.90625 26.71875 26.71875 23.90625 26.71875 29.53125 29.53125 26.71875 29.53125 32.34375 32.34375 29.53125 32.34375 35.15625 35.15625 32.34375 35.15625 37.96875 37.96875 35.15625 37.96875 40.78125 40.78125 37.96875 40.78125 43.59375 43.59375 40.78125 43.59375 46.40625 46.40625 43.59375 46.40625 49.21875 49.21875 46.40625 49.21875 52.03125 52.03125 49.21875 52.03125 54.84375 54.84375 52.03125 54.84375 57.65625 57.65625 54.84375 57.65625 60.46875 60.46875 57.65625 60.46875 63.28125 63.28125 60.46875 63.28125 66.09375 66.09375 63.28125 66.09375 68.90625 68.90625 66.09375 68.90625 71.71875 71.71875 68.90625 71.71875 74.53125 74.53125 71.71875 74.53125 77.34375 77.34375 74.53125 77.34375 80.15625 80.15625 77.34375 80.15625 82.96875 82.96875 80.15625 82.96875 85.78125 85.78125 82.96875 85.78125 88.59375 88.59375 85.78125 88.59375 91.40625 91.40625 88.59375 91.40625 94.21875 94.21875 91.40625 94.21875 97.03125 97.03125 94.21875 97.03125 99.84375 99.84375 97.03125 99.84375 102.65625 102.65625 99.84375 102.65625 105.46875 105.46875 102.65625 105.46875 108.28125 108.28125 105.46875 108.28125 111.09375 111.09375 108.28125 111.09375 113.90625 113.90625 111.09375 113.90625 116.71875 116.71875 113.90625 116.71875 119.53125 119.53125 116.71875 119.53125 122.34375 122.34375 119.53125 122.34375 125.15625 125.15625 122.34375 125.15625 127.96875 127.96875 125.15625 127.96875 130.78125 130.78125 127.96875 130.78125 133.59375 133.59375 130.78125 133.59375 136.40625 136.40625 133.59375 136.40625 139.21875 139.21875 136.40625 139.21875 142.03125 142.03125 139.21875 142.03125 144.84375 144.84375 142.03125 144.84375 147.65625 147.65625 144.84375 147.65625 150.46875 150.46875 147.65625 150.46875 153.28125 153.28125 150.46875 153.28125 156.09375 156.09375 153.28125 156.09375 158.90625 158.90625 156.09375 158.90625 161.71875 161.71875 158.90625 161.71875 164.53125 164.53125 161.71875 164.53125 167.34375 167.34375 164.53125 167.34375 170.15625 170.15625 167.34375 170.15625 172.96875 172.96875 170.15625 172.96875 175.78125 175.78125 172.96875 175.78125 178.59375 178.59375 175.78125 178.59375 181.40625 181.40625 178.59375 181.40625 184.21875 184.21875 181.40625 184.21875 187.03125 187.03125 184.21875 187.03125 189.84375 189.84375 187.03125 189.84375 192.65625 192.65625 189.84375 192.65625 195.46875 195.46875 192.65625 195.46875 198.28125 198.28125 195.46875 198.28125 201.09375 201.09375 198.28125 201.09375 203.90625 203.90625 201.09375 203.90625 206.71875 206.71875 203.90625 206.71875 209.53125 209.53125 206.71875 209.53125 212.34375 212.34375 209.53125 212.34375 215.15625 215.15625 212.34375 215.15625 217.96875 217.96875 215.15625 217.96875 220.78125 220.78125 217.96875 220.78125 223.59375 223.59375 220.78125 223.59375 226.40625 226.40625 223.59375 226.40625 229.21875 229.21875 226.40625 229.21875 232.03125 232.03125 229.21875 232.03125 234.84375 234.84375 232.03125 234.84375 237.65625 237.65625 234.84375 237.65625 240.46875 240.46875 237.65625 240.46875 243.28125 243.28125 240.46875 243.28125 246.09375 246.09375 243.28125 246.09375 248.90625 248.90625 246.09375 248.90625 251.71875 251.71875 248.90625 251.71875 254.53125 254.53125 251.71875 254.53125 257.34375 257.34375 254.53125 257.34375 260.15625 260.15625 257.34375 260.15625 262.96875 262.96875 260.15625 262.96875 265.78125 265.78125 262.96875 265.78125 268.59375 268.59375 265.78125 268.59375 271.40625 271.40625 268.59375 271.40625 274.21875 274.21875 271.40625 274.21875 277.03125 277.03125 274.21875 277.03125 279.84375 279.84375 277.03125 279.84375 282.65625 282.65625 279.84375 282.65625 285.46875 285.46875 282.65625 285.46875 288.28125 288.28125 285.46875 288.28125 291.09375 291.09375 288.28125 291.09375 293.90625 293.90625 291.09375 293.90625 296.71875 296.71875 293.90625 296.71875 299.53125 299.53125 296.71875 299.53125 302.34375 302.34375 299.53125 302.34375 305.15625 305.15625 302.34375 305.15625 307.96875 307.96875 305.15625 307.96875 310.78125 310.78125 307.96875 310.78125 313.59375 313.59375 310.78125 313.59375 316.40625 316.40625 313.59375 316.40625 319.21875 319.21875 316.40625 319.21875 322.03125 322.03125 319.21875 322.03125 324.84375 324.84375 322.03125 324.84375 327.65625 327.65625 324.84375 327.65625 330.46875 330.46875 327.65625 330.46875 333.28125 333.28125 330.46875 333.28125 336.09375 336.09375 333.28125 336.09375 338.90625 338.90625 336.09375 338.90625 341.71875 341.71875 338.90625 341.71875 344.53125 344.53125 341.71875 344.53125 347.34375 347.34375 344.53125 347.34375 350.15625 350.15625 347.34375 350.15625 352.96875 352.96875 350.15625 352.96875 355.78125 355.78125 352.96875 355.78125 358.59375 358.59375 355.78125 -1.33333333333 1.33333333333 1.33333333333 -1.33333333333 1.33333341281 4.00000007947 4.00000007947 1.33333341281 4.00000015895 6.66666682561 6.66666682561 4.00000015895 6.66666666667 9.33333333333 9.33333333333 6.66666666667 9.33333365122 12.0000003179 12.0000003179 9.33333365122 11.9999996821 14.6666663488 14.6666663488 11.9999996821 14.6666666667 17.3333333333 17.3333333333 14.6666666667 17.3333326976 19.9999993642 19.9999993642 17.3333326976 20.0000006358 22.6666673024 22.6666673024 20.0000006358 22.6666666667 25.3333333333 25.3333333333 22.6666666667 25.3333326976 27.9999993642 27.9999993642 25.3333326976 28.0000006358 30.6666673024 30.6666673024 28.0000006358 30.6666666667 33.3333333333 33.3333333333 30.6666666667 33.3333346049 36.0000012716 36.0000012716 33.3333346049 35.9999987284 38.6666653951 38.6666653951 35.9999987284 38.6666666667 41.3333333333 41.3333333333 38.6666666667 41.3333346049 44.0000012716 44.0000012716 41.3333346049 43.9999987284 46.6666653951 46.6666653951 43.9999987284 46.6666666667 49.3333333333 49.3333333333 46.6666666667 49.3333346049 52.0000012716 52.0000012716 49.3333346049 51.9999987284 54.6666653951 54.6666653951 51.9999987284 54.6666666667 57.3333333333 57.3333333333 54.6666666667 57.3333346049 60.0000012716 60.0000012716 57.3333346049 59.9999987284 62.6666653951 62.6666653951 59.9999987284 62.6666666667 65.3333333333 65.3333333333 62.6666666667 65.3333307902 67.9999974569 67.9999974569 65.3333307902 68.0000025431 70.6666692098 70.6666692098 68.0000025431 70.6666666667 73.3333333333 73.3333333333 70.6666666667 73.3333307902 75.9999974569 75.9999974569 73.3333307902 76.0000025431 78.6666692098 78.6666692098 76.0000025431 78.6666666667 81.3333333333 81.3333333333 78.6666666667 81.3333307902 83.9999974569 83.9999974569 81.3333307902 84.0000025431 86.6666692098 86.6666692098 84.0000025431 86.6666666667 89.3333333333 89.3333333333 86.6666666667 89.3333307902 91.9999974569 91.9999974569 89.3333307902 92.0000025431 94.6666692098 94.6666692098 92.0000025431 94.6666666667 97.3333333333 97.3333333333 94.6666666667 97.3333307902 99.9999974569 99.9999974569 97.3333307902 100.000002543 102.66666921 102.66666921 100.000002543 102.666666667 105.333333333 105.333333333 102.666666667 105.33333079 107.999997457 107.999997457 105.33333079 108.000002543 110.66666921 110.66666921 108.000002543 110.666666667 113.333333333 113.333333333 110.666666667 113.33333079 115.999997457 115.999997457 113.33333079 116.000002543 118.66666921 118.66666921 116.000002543 118.666666667 121.333333333 121.333333333 118.666666667 121.33333079 123.999997457 123.999997457 121.33333079 124.000002543 126.66666921 126.66666921 124.000002543 126.666666667 129.333333333 129.333333333 126.666666667 129.33333842 132.000005086 132.000005086 129.33333842 131.999994914 134.66666158 134.66666158 131.999994914 134.666666667 137.333333333 137.333333333 134.666666667 137.33333842 140.000005086 140.000005086 137.33333842 139.999994914 142.66666158 142.66666158 139.999994914 142.666666667 145.333333333 145.333333333 142.666666667 145.33333842 148.000005086 148.000005086 145.33333842 147.999994914 150.66666158 150.66666158 147.999994914 150.666666667 153.333333333 153.333333333 150.666666667 153.33333842 156.000005086 156.000005086 153.33333842 155.999994914 158.66666158 158.66666158 155.999994914 158.666666667 161.333333333 161.333333333 158.666666667 161.33333842 164.000005086 164.000005086 161.33333842 163.999994914 166.66666158 166.66666158 163.999994914 166.666666667 169.333333333 169.333333333 166.666666667 169.33333842 172.000005086 172.000005086 169.33333842 171.999994914 174.66666158 174.66666158 171.999994914 174.666666667 177.333333333 177.333333333 174.666666667 177.33333842 180.000005086 180.000005086 177.33333842 179.999994914 182.66666158 182.66666158 179.999994914 182.666666667 185.333333333 185.333333333 182.666666667 185.33333842 188.000005086 188.000005086 185.33333842 187.999994914 190.66666158 190.66666158 187.999994914 190.666666667 193.333333333 193.333333333 190.666666667 193.33333842 196.000005086 196.000005086 193.33333842 195.999994914 198.66666158 198.66666158 195.999994914 198.666666667 201.333333333 201.333333333 198.666666667 201.33333842 204.000005086 204.000005086 201.33333842 203.999994914 206.66666158 206.66666158 203.999994914 206.666666667 209.333333333 209.333333333 206.666666667 209.33333842 212.000005086 212.000005086 209.33333842 211.999994914 214.66666158 214.66666158 211.999994914 214.666666667 217.333333333 217.333333333 214.666666667 217.33333842 220.000005086 220.000005086 217.33333842 219.999994914 222.66666158 222.66666158 219.999994914 222.666666667 225.333333333 225.333333333 222.666666667 225.33333842 228.000005086 228.000005086 225.33333842 227.999994914 230.66666158 230.66666158 227.999994914 230.666666667 233.333333333 233.333333333 230.666666667 233.33333842 236.000005086 236.000005086 233.33333842 235.999994914 238.66666158 238.66666158 235.999994914 238.666666667 241.333333333 241.333333333 238.666666667 241.33333842 244.000005086 244.000005086 241.33333842 243.999994914 246.66666158 246.66666158 243.999994914 246.666666667 249.333333333 249.333333333 246.666666667 249.33333842 252.000005086 252.000005086 249.33333842 251.999994914 254.66666158 254.66666158 251.999994914 254.666666667 257.333333333 257.333333333 254.666666667 257.333323161 259.999989827 259.999989827 257.333323161 260.000010173 262.666676839 262.666676839 260.000010173 262.666666667 265.333333333 265.333333333 262.666666667 265.333323161 267.999989827 267.999989827 265.333323161 268.000010173 270.666676839 270.666676839 268.000010173 270.666666667 273.333333333 273.333333333 270.666666667 273.333323161 275.999989827 275.999989827 273.333323161 276.000010173 278.666676839 278.666676839 276.000010173 278.666666667 281.333333333 281.333333333 278.666666667 281.333323161 283.999989827 283.999989827 281.333323161 284.000010173 286.666676839 286.666676839 284.000010173 286.666666667 289.333333333 289.333333333 286.666666667 289.333323161 291.999989827 291.999989827 289.333323161 292.000010173 294.666676839 294.666676839 292.000010173 294.666666667 297.333333333 297.333333333 294.666666667 297.333323161 299.999989827 299.999989827 297.333323161 300.000010173 302.666676839 302.666676839 300.000010173 302.666666667 305.333333333 305.333333333 302.666666667 305.333323161 307.999989827 307.999989827 305.333323161 308.000010173 310.666676839 310.666676839 308.000010173 310.666666667 313.333333333 313.333333333 310.666666667 313.333323161 315.999989827 315.999989827 313.333323161 316.000010173 318.666676839 318.666676839 316.000010173 318.666666667 321.333333333 321.333333333 318.666666667 321.333323161 323.999989827 323.999989827 321.333323161 324.000010173 326.666676839 326.666676839 324.000010173 326.666666667 329.333333333 329.333333333 326.666666667 329.333323161 331.999989827 331.999989827 329.333323161 332.000010173 334.666676839 334.666676839 332.000010173 334.666666667 337.333333333 337.333333333 334.666666667 337.333323161 339.999989827 339.999989827 337.333323161 340.000010173 342.666676839 342.666676839 340.000010173 342.666666667 345.333333333 345.333333333 342.666666667 345.333323161 347.999989827 347.999989827 345.333323161 348.000010173 350.666676839 350.666676839 348.000010173 350.666666667 353.333333333 353.333333333 350.666666667 353.333323161 355.999989827 355.999989827 353.333323161 356.000010173 358.666676839 358.666676839 356.000010173 -1.25 1.25 1.25 -1.25 1.25 3.75 3.75 1.25 3.75 6.25 6.25 3.75 6.25 8.75 8.75 6.25 8.75 11.25 11.25 8.75 11.25 13.75 13.75 11.25 13.75 16.25 16.25 13.75 16.25 18.75 18.75 16.25 18.75 21.25 21.25 18.75 21.25 23.75 23.75 21.25 23.75 26.25 26.25 23.75 26.25 28.75 28.75 26.25 28.75 31.25 31.25 28.75 31.25 33.75 33.75 31.25 33.75 36.25 36.25 33.75 36.25 38.75 38.75 36.25 38.75 41.25 41.25 38.75 41.25 43.75 43.75 41.25 43.75 46.25 46.25 43.75 46.25 48.75 48.75 46.25 48.75 51.25 51.25 48.75 51.25 53.75 53.75 51.25 53.75 56.25 56.25 53.75 56.25 58.75 58.75 56.25 58.75 61.25 61.25 58.75 61.25 63.75 63.75 61.25 63.75 66.25 66.25 63.75 66.25 68.75 68.75 66.25 68.75 71.25 71.25 68.75 71.25 73.75 73.75 71.25 73.75 76.25 76.25 73.75 76.25 78.75 78.75 76.25 78.75 81.25 81.25 78.75 81.25 83.75 83.75 81.25 83.75 86.25 86.25 83.75 86.25 88.75 88.75 86.25 88.75 91.25 91.25 88.75 +91.25 93.75 93.75 91.25 93.75 96.25 96.25 93.75 96.25 98.75 98.75 96.25 98.75 101.25 101.25 98.75 101.25 103.75 103.75 101.25 103.75 106.25 106.25 103.75 106.25 108.75 108.75 106.25 108.75 111.25 111.25 108.75 111.25 113.75 113.75 111.25 113.75 116.25 116.25 113.75 116.25 118.75 118.75 116.25 118.75 121.25 121.25 118.75 121.25 123.75 123.75 121.25 123.75 126.25 126.25 123.75 126.25 128.75 128.75 126.25 128.75 131.25 131.25 128.75 131.25 133.75 133.75 131.25 133.75 136.25 136.25 133.75 136.25 138.75 138.75 136.25 138.75 141.25 141.25 138.75 141.25 143.75 143.75 141.25 143.75 146.25 146.25 143.75 146.25 148.75 148.75 146.25 148.75 151.25 151.25 148.75 151.25 153.75 153.75 151.25 153.75 156.25 156.25 153.75 156.25 158.75 158.75 156.25 158.75 161.25 161.25 158.75 161.25 163.75 163.75 161.25 163.75 166.25 166.25 163.75 166.25 168.75 168.75 166.25 168.75 171.25 171.25 168.75 171.25 173.75 173.75 171.25 173.75 176.25 176.25 173.75 176.25 178.75 178.75 176.25 178.75 181.25 181.25 178.75 181.25 183.75 183.75 181.25 183.75 186.25 186.25 183.75 186.25 188.75 188.75 186.25 188.75 191.25 191.25 188.75 191.25 193.75 193.75 191.25 193.75 196.25 196.25 193.75 196.25 198.75 198.75 196.25 198.75 201.25 201.25 198.75 201.25 203.75 203.75 201.25 203.75 206.25 206.25 203.75 206.25 208.75 208.75 206.25 208.75 211.25 211.25 208.75 211.25 213.75 213.75 211.25 213.75 216.25 216.25 213.75 216.25 218.75 218.75 216.25 218.75 221.25 221.25 218.75 221.25 223.75 223.75 221.25 223.75 226.25 226.25 223.75 226.25 228.75 228.75 226.25 228.75 231.25 231.25 228.75 231.25 233.75 233.75 231.25 233.75 236.25 236.25 233.75 236.25 238.75 238.75 236.25 238.75 241.25 241.25 238.75 241.25 243.75 243.75 241.25 243.75 246.25 246.25 243.75 246.25 248.75 248.75 246.25 248.75 251.25 251.25 248.75 251.25 253.75 253.75 251.25 253.75 256.25 256.25 253.75 256.25 258.75 258.75 256.25 258.75 261.25 261.25 258.75 261.25 263.75 263.75 261.25 263.75 266.25 266.25 263.75 266.25 268.75 268.75 266.25 268.75 271.25 271.25 268.75 271.25 273.75 273.75 271.25 273.75 276.25 276.25 273.75 276.25 278.75 278.75 276.25 278.75 281.25 281.25 278.75 281.25 283.75 283.75 281.25 283.75 286.25 286.25 283.75 286.25 288.75 288.75 286.25 288.75 291.25 291.25 288.75 291.25 293.75 293.75 291.25 293.75 296.25 296.25 293.75 296.25 298.75 298.75 296.25 298.75 301.25 301.25 298.75 301.25 303.75 303.75 301.25 303.75 306.25 306.25 303.75 306.25 308.75 308.75 306.25 308.75 311.25 311.25 308.75 311.25 313.75 313.75 311.25 313.75 316.25 316.25 313.75 316.25 318.75 318.75 316.25 318.75 321.25 321.25 318.75 321.25 323.75 323.75 321.25 323.75 326.25 326.25 323.75 326.25 328.75 328.75 326.25 328.75 331.25 331.25 328.75 331.25 333.75 333.75 331.25 333.75 336.25 336.25 333.75 336.25 338.75 338.75 336.25 338.75 341.25 341.25 338.75 341.25 343.75 343.75 341.25 343.75 346.25 346.25 343.75 346.25 348.75 348.75 346.25 348.75 351.25 351.25 348.75 351.25 353.75 353.75 351.25 353.75 356.25 356.25 353.75 356.25 358.75 358.75 356.25 -1.25 1.25 1.25 -1.25 1.25 3.75 3.75 1.25 3.75 6.25 6.25 3.75 6.25 8.75 8.75 6.25 8.75 11.25 11.25 8.75 11.25 13.75 13.75 11.25 13.75 16.25 16.25 13.75 16.25 18.75 18.75 16.25 18.75 21.25 21.25 18.75 21.25 23.75 23.75 21.25 23.75 26.25 26.25 23.75 26.25 28.75 28.75 26.25 28.75 31.25 31.25 28.75 31.25 33.75 33.75 31.25 33.75 36.25 36.25 33.75 36.25 38.75 38.75 36.25 38.75 41.25 41.25 38.75 41.25 43.75 43.75 41.25 43.75 46.25 46.25 43.75 46.25 48.75 48.75 46.25 48.75 51.25 51.25 48.75 51.25 53.75 53.75 51.25 53.75 56.25 56.25 53.75 56.25 58.75 58.75 56.25 58.75 61.25 61.25 58.75 61.25 63.75 63.75 61.25 63.75 66.25 66.25 63.75 66.25 68.75 68.75 66.25 68.75 71.25 71.25 68.75 71.25 73.75 73.75 71.25 73.75 76.25 76.25 73.75 76.25 78.75 78.75 76.25 78.75 81.25 81.25 78.75 81.25 83.75 83.75 81.25 83.75 86.25 86.25 83.75 86.25 88.75 88.75 86.25 88.75 91.25 91.25 88.75 91.25 93.75 93.75 91.25 93.75 96.25 96.25 93.75 96.25 98.75 98.75 96.25 98.75 101.25 101.25 98.75 101.25 103.75 103.75 101.25 103.75 106.25 106.25 103.75 106.25 108.75 108.75 106.25 108.75 111.25 111.25 108.75 111.25 113.75 113.75 111.25 113.75 116.25 116.25 113.75 116.25 118.75 118.75 116.25 118.75 121.25 121.25 118.75 121.25 123.75 123.75 121.25 123.75 126.25 126.25 123.75 126.25 128.75 128.75 126.25 128.75 131.25 131.25 128.75 131.25 133.75 133.75 131.25 133.75 136.25 136.25 133.75 136.25 138.75 138.75 136.25 138.75 141.25 141.25 138.75 141.25 143.75 143.75 141.25 143.75 146.25 146.25 143.75 146.25 148.75 148.75 146.25 148.75 151.25 151.25 148.75 151.25 153.75 153.75 151.25 153.75 156.25 156.25 153.75 156.25 158.75 158.75 156.25 158.75 161.25 161.25 158.75 161.25 163.75 163.75 161.25 163.75 166.25 166.25 163.75 166.25 168.75 168.75 166.25 168.75 171.25 171.25 168.75 171.25 173.75 173.75 171.25 173.75 176.25 176.25 173.75 176.25 178.75 178.75 176.25 178.75 181.25 181.25 178.75 181.25 183.75 183.75 181.25 183.75 186.25 186.25 183.75 186.25 188.75 188.75 186.25 188.75 191.25 191.25 188.75 191.25 193.75 193.75 191.25 193.75 196.25 196.25 193.75 196.25 198.75 198.75 196.25 198.75 201.25 201.25 198.75 201.25 203.75 203.75 201.25 203.75 206.25 206.25 203.75 206.25 208.75 208.75 206.25 208.75 211.25 211.25 208.75 211.25 213.75 213.75 211.25 213.75 216.25 216.25 213.75 216.25 218.75 218.75 216.25 218.75 221.25 221.25 218.75 221.25 223.75 223.75 221.25 223.75 226.25 226.25 223.75 226.25 228.75 228.75 226.25 228.75 231.25 231.25 228.75 231.25 233.75 233.75 231.25 233.75 236.25 236.25 233.75 236.25 238.75 238.75 236.25 238.75 241.25 241.25 238.75 241.25 243.75 243.75 241.25 243.75 246.25 246.25 243.75 246.25 248.75 248.75 246.25 248.75 251.25 251.25 248.75 251.25 253.75 253.75 251.25 253.75 256.25 256.25 253.75 256.25 258.75 258.75 256.25 258.75 261.25 261.25 258.75 261.25 263.75 263.75 261.25 263.75 266.25 266.25 263.75 266.25 268.75 268.75 266.25 268.75 271.25 271.25 268.75 271.25 273.75 273.75 271.25 273.75 276.25 276.25 273.75 276.25 278.75 278.75 276.25 278.75 281.25 281.25 278.75 281.25 283.75 283.75 281.25 283.75 286.25 286.25 283.75 286.25 288.75 288.75 286.25 288.75 291.25 291.25 288.75 291.25 293.75 293.75 291.25 293.75 296.25 296.25 293.75 296.25 298.75 298.75 296.25 298.75 301.25 301.25 298.75 301.25 303.75 303.75 301.25 303.75 306.25 306.25 303.75 306.25 308.75 308.75 306.25 308.75 311.25 311.25 308.75 311.25 313.75 313.75 311.25 313.75 316.25 316.25 313.75 316.25 318.75 318.75 316.25 318.75 321.25 321.25 318.75 321.25 323.75 323.75 321.25 323.75 326.25 326.25 323.75 326.25 328.75 328.75 326.25 328.75 331.25 331.25 328.75 331.25 333.75 333.75 331.25 333.75 336.25 336.25 333.75 336.25 338.75 338.75 336.25 338.75 341.25 341.25 338.75 341.25 343.75 343.75 341.25 343.75 346.25 346.25 343.75 346.25 348.75 348.75 346.25 348.75 351.25 351.25 348.75 351.25 353.75 353.75 351.25 353.75 356.25 356.25 353.75 356.25 358.75 358.75 356.25 -1.2 1.2 1.2 -1.2 1.20000009537 3.60000009537 3.60000009537 1.20000009537 3.60000019073 6.00000019073 6.00000019073 3.60000019073 5.99999980927 8.39999980927 8.39999980927 5.99999980927 8.40000038147 10.8000003815 10.8000003815 8.40000038147 10.8 13.2 13.2 10.8 13.1999996185 15.5999996185 15.5999996185 13.1999996185 15.5999992371 17.9999992371 17.9999992371 15.5999992371 18.0000007629 20.4000007629 20.4000007629 18.0000007629 20.4000003815 22.8000003815 22.8000003815 20.4000003815 22.8 25.2 25.2 22.8 25.1999996185 27.5999996185 27.5999996185 25.1999996185 27.5999992371 29.9999992371 29.9999992371 27.5999992371 30.0000007629 32.4000007629 32.4000007629 30.0000007629 32.3999984741 34.7999984741 34.7999984741 32.3999984741 34.8 37.2 37.2 34.8 37.2000015259 39.6000015259 39.6000015259 37.2000015259 39.5999992371 41.9999992371 41.9999992371 39.5999992371 42.0000007629 44.4000007629 44.4000007629 42.0000007629 44.3999984741 46.7999984741 46.7999984741 44.3999984741 46.8 49.2 49.2 46.8 49.2000015259 51.6000015259 51.6000015259 49.2000015259 51.5999992371 53.9999992371 53.9999992371 51.5999992371 54.0000007629 56.4000007629 56.4000007629 54.0000007629 56.3999984741 58.7999984741 58.7999984741 56.3999984741 58.8 61.2 61.2 58.8 61.2000015259 63.6000015259 63.6000015259 61.2000015259 63.6000030518 66.0000030518 66.0000030518 63.6000030518 65.9999969482 68.3999969482 68.3999969482 65.9999969482 68.3999984741 70.7999984741 70.7999984741 68.3999984741 70.8 73.2 73.2 70.8 73.2000015259 75.6000015259 75.6000015259 73.2000015259 75.6000030518 78.0000030518 78.0000030518 75.6000030518 77.9999969482 80.3999969482 80.3999969482 77.9999969482 80.3999984741 82.7999984741 82.7999984741 80.3999984741 82.8 85.2 85.2 82.8 85.2000015259 87.6000015259 87.6000015259 85.2000015259 87.6000030518 90.0000030518 90.0000030518 87.6000030518 89.9999969482 92.3999969482 92.3999969482 89.9999969482 92.3999984741 94.7999984741 94.7999984741 92.3999984741 94.8 97.2 97.2 94.8 97.2000015259 99.6000015259 99.6000015259 97.2000015259 99.6000030518 102.000003052 102.000003052 99.6000030518 101.999996948 104.399996948 104.399996948 101.999996948 104.399998474 106.799998474 106.799998474 104.399998474 106.8 109.2 109.2 106.8 109.200001526 111.600001526 111.600001526 109.200001526 111.600003052 114.000003052 114.000003052 111.600003052 113.999996948 116.399996948 116.399996948 113.999996948 116.399998474 118.799998474 118.799998474 116.399998474 118.8 121.2 121.2 118.8 121.200001526 123.600001526 123.600001526 121.200001526 123.600003052 126.000003052 126.000003052 123.600003052 125.999996948 128.399996948 128.399996948 125.999996948 128.400006104 130.800006104 130.800006104 128.400006104 130.8 133.2 133.2 130.8 133.199993896 135.599993896 135.599993896 133.199993896 135.600003052 138.000003052 138.000003052 135.600003052 137.999996948 140.399996948 140.399996948 137.999996948 140.400006104 142.800006104 142.800006104 140.400006104 142.8 145.2 145.2 142.8 145.199993896 147.599993896 147.599993896 145.199993896 147.600003052 150.000003052 150.000003052 147.600003052 149.999996948 152.399996948 152.399996948 149.999996948 152.400006104 154.800006104 154.800006104 152.400006104 154.8 157.2 157.2 154.8 157.199993896 159.599993896 159.599993896 157.199993896 159.600003052 162.000003052 162.000003052 159.600003052 161.999996948 164.399996948 164.399996948 161.999996948 164.400006104 166.800006104 166.800006104 164.400006104 166.8 169.2 169.2 166.8 169.199993896 171.599993896 171.599993896 169.199993896 171.600003052 174.000003052 174.000003052 171.600003052 173.999996948 176.399996948 176.399996948 173.999996948 176.400006104 178.800006104 178.800006104 176.400006104 178.8 181.2 181.2 178.8 181.199993896 183.599993896 183.599993896 181.199993896 183.600003052 186.000003052 186.000003052 183.600003052 185.999996948 188.399996948 188.399996948 185.999996948 188.400006104 190.800006104 190.800006104 188.400006104 190.8 193.2 193.2 190.8 193.199993896 195.599993896 195.599993896 193.199993896 195.600003052 198.000003052 198.000003052 195.600003052 197.999996948 200.399996948 200.399996948 197.999996948 200.400006104 202.800006104 202.800006104 200.400006104 202.8 205.2 205.2 202.8 205.199993896 207.599993896 207.599993896 205.199993896 207.600003052 210.000003052 210.000003052 207.600003052 209.999996948 212.399996948 212.399996948 209.999996948 212.400006104 214.800006104 214.800006104 212.400006104 214.8 217.2 217.2 214.8 217.199993896 219.599993896 219.599993896 217.199993896 219.600003052 222.000003052 222.000003052 219.600003052 221.999996948 224.399996948 224.399996948 221.999996948 224.400006104 226.800006104 226.800006104 224.400006104 226.8 229.2 229.2 226.8 229.199993896 231.599993896 231.599993896 229.199993896 231.600003052 234.000003052 234.000003052 231.600003052 233.999996948 236.399996948 236.399996948 233.999996948 236.400006104 238.800006104 238.800006104 236.400006104 238.8 241.2 241.2 238.8 241.199993896 243.599993896 243.599993896 241.199993896 243.600003052 246.000003052 246.000003052 243.600003052 245.999996948 248.399996948 248.399996948 245.999996948 248.400006104 250.800006104 250.800006104 248.400006104 250.8 253.2 253.2 250.8 253.199993896 255.599993896 255.599993896 253.199993896 255.599987793 257.999987793 257.999987793 255.599987793 258.000012207 260.400012207 260.400012207 258.000012207 260.400006104 262.800006104 262.800006104 260.400006104 262.8 265.2 265.2 262.8 265.199993896 267.599993896 267.599993896 265.199993896 267.599987793 269.999987793 269.999987793 267.599987793 270.000012207 272.400012207 272.400012207 270.000012207 272.400006104 274.800006104 274.800006104 272.400006104 274.8 277.2 277.2 274.8 277.199993896 279.599993896 279.599993896 277.199993896 279.599987793 281.999987793 281.999987793 279.599987793 282.000012207 284.400012207 284.400012207 282.000012207 284.400006104 286.800006104 286.800006104 284.400006104 286.8 289.2 289.2 286.8 289.199993896 291.599993896 291.599993896 289.199993896 291.599987793 293.999987793 293.999987793 291.599987793 294.000012207 296.400012207 296.400012207 294.000012207 296.400006104 298.800006104 298.800006104 296.400006104 298.8 301.2 301.2 298.8 301.199993896 303.599993896 303.599993896 301.199993896 303.599987793 305.999987793 305.999987793 303.599987793 306.000012207 308.400012207 308.400012207 306.000012207 308.400006104 310.800006104 310.800006104 308.400006104 310.8 313.2 313.2 310.8 313.199993896 315.599993896 315.599993896 313.199993896 315.599987793 317.999987793 317.999987793 315.599987793 318.000012207 320.400012207 320.400012207 318.000012207 320.400006104 322.800006104 322.800006104 320.400006104 322.8 325.2 325.2 322.8 325.199993896 327.599993896 327.599993896 325.199993896 327.599987793 329.999987793 329.999987793 327.599987793 330.000012207 332.400012207 332.400012207 330.000012207 332.400006104 334.800006104 334.800006104 332.400006104 334.8 337.2 337.2 334.8 337.199993896 339.599993896 339.599993896 337.199993896 339.599987793 341.999987793 341.999987793 339.599987793 342.000012207 344.400012207 344.400012207 342.000012207 344.400006104 346.800006104 346.800006104 344.400006104 346.8 349.2 349.2 346.8 349.199993896 351.599993896 351.599993896 349.199993896 351.599987793 353.999987793 353.999987793 351.599987793 354.000012207 356.400012207 356.400012207 354.000012207 356.400006104 358.800006104 358.800006104 356.400006104 -1.125 1.125 1.125 -1.125 1.125 3.375 3.375 1.125 3.375 5.625 5.625 3.375 5.625 7.875 7.875 5.625 7.875 10.125 10.125 7.875 10.125 12.375 12.375 10.125 12.375 14.625 14.625 12.375 14.625 16.875 16.875 14.625 16.875 19.125 19.125 16.875 19.125 21.375 21.375 19.125 21.375 23.625 23.625 21.375 23.625 25.875 25.875 23.625 25.875 28.125 28.125 25.875 28.125 30.375 30.375 28.125 30.375 32.625 32.625 30.375 32.625 34.875 34.875 32.625 34.875 37.125 37.125 34.875 37.125 39.375 39.375 37.125 39.375 41.625 41.625 39.375 41.625 43.875 43.875 41.625 43.875 46.125 46.125 43.875 46.125 48.375 48.375 46.125 48.375 50.625 50.625 48.375 50.625 52.875 52.875 50.625 52.875 55.125 55.125 52.875 55.125 57.375 57.375 55.125 57.375 59.625 59.625 57.375 59.625 61.875 61.875 59.625 61.875 64.125 64.125 61.875 64.125 66.375 66.375 64.125 66.375 68.625 68.625 66.375 68.625 70.875 70.875 68.625 70.875 73.125 73.125 70.875 73.125 75.375 75.375 73.125 75.375 77.625 77.625 75.375 77.625 79.875 79.875 77.625 79.875 82.125 82.125 79.875 82.125 84.375 84.375 82.125 84.375 86.625 86.625 84.375 86.625 88.875 88.875 86.625 88.875 91.125 91.125 88.875 91.125 93.375 93.375 91.125 93.375 95.625 95.625 93.375 95.625 97.875 97.875 95.625 97.875 100.125 100.125 97.875 100.125 102.375 102.375 100.125 102.375 104.625 104.625 102.375 104.625 106.875 106.875 104.625 106.875 109.125 109.125 106.875 109.125 111.375 111.375 109.125 111.375 113.625 113.625 111.375 113.625 115.875 115.875 113.625 115.875 118.125 118.125 115.875 118.125 120.375 120.375 118.125 120.375 122.625 122.625 120.375 122.625 124.875 124.875 122.625 124.875 127.125 127.125 124.875 127.125 129.375 129.375 127.125 129.375 131.625 131.625 129.375 131.625 133.875 133.875 131.625 133.875 136.125 136.125 133.875 136.125 138.375 138.375 136.125 138.375 140.625 140.625 138.375 140.625 142.875 142.875 140.625 142.875 145.125 145.125 142.875 145.125 147.375 147.375 145.125 147.375 149.625 149.625 147.375 149.625 151.875 151.875 149.625 151.875 154.125 154.125 151.875 154.125 156.375 156.375 154.125 156.375 158.625 158.625 156.375 158.625 160.875 160.875 158.625 160.875 163.125 163.125 160.875 163.125 165.375 165.375 163.125 165.375 167.625 167.625 165.375 167.625 169.875 169.875 167.625 169.875 172.125 172.125 169.875 172.125 174.375 174.375 172.125 174.375 176.625 176.625 174.375 176.625 178.875 178.875 176.625 178.875 181.125 181.125 178.875 181.125 183.375 183.375 181.125 183.375 185.625 185.625 183.375 185.625 187.875 187.875 185.625 187.875 190.125 190.125 187.875 190.125 192.375 192.375 190.125 192.375 194.625 194.625 192.375 194.625 196.875 196.875 194.625 196.875 199.125 199.125 196.875 199.125 201.375 201.375 199.125 201.375 203.625 203.625 201.375 203.625 205.875 205.875 203.625 205.875 208.125 208.125 205.875 208.125 210.375 210.375 208.125 210.375 212.625 212.625 210.375 212.625 214.875 214.875 212.625 214.875 217.125 217.125 214.875 217.125 219.375 219.375 217.125 219.375 221.625 221.625 219.375 +221.625 223.875 223.875 221.625 223.875 226.125 226.125 223.875 226.125 228.375 228.375 226.125 228.375 230.625 230.625 228.375 230.625 232.875 232.875 230.625 232.875 235.125 235.125 232.875 235.125 237.375 237.375 235.125 237.375 239.625 239.625 237.375 239.625 241.875 241.875 239.625 241.875 244.125 244.125 241.875 244.125 246.375 246.375 244.125 246.375 248.625 248.625 246.375 248.625 250.875 250.875 248.625 250.875 253.125 253.125 250.875 253.125 255.375 255.375 253.125 255.375 257.625 257.625 255.375 257.625 259.875 259.875 257.625 259.875 262.125 262.125 259.875 262.125 264.375 264.375 262.125 264.375 266.625 266.625 264.375 266.625 268.875 268.875 266.625 268.875 271.125 271.125 268.875 271.125 273.375 273.375 271.125 273.375 275.625 275.625 273.375 275.625 277.875 277.875 275.625 277.875 280.125 280.125 277.875 280.125 282.375 282.375 280.125 282.375 284.625 284.625 282.375 284.625 286.875 286.875 284.625 286.875 289.125 289.125 286.875 289.125 291.375 291.375 289.125 291.375 293.625 293.625 291.375 293.625 295.875 295.875 293.625 295.875 298.125 298.125 295.875 298.125 300.375 300.375 298.125 300.375 302.625 302.625 300.375 302.625 304.875 304.875 302.625 304.875 307.125 307.125 304.875 307.125 309.375 309.375 307.125 309.375 311.625 311.625 309.375 311.625 313.875 313.875 311.625 313.875 316.125 316.125 313.875 316.125 318.375 318.375 316.125 318.375 320.625 320.625 318.375 320.625 322.875 322.875 320.625 322.875 325.125 325.125 322.875 325.125 327.375 327.375 325.125 327.375 329.625 329.625 327.375 329.625 331.875 331.875 329.625 331.875 334.125 334.125 331.875 334.125 336.375 336.375 334.125 336.375 338.625 338.625 336.375 338.625 340.875 340.875 338.625 340.875 343.125 343.125 340.875 343.125 345.375 345.375 343.125 345.375 347.625 347.625 345.375 347.625 349.875 349.875 347.625 349.875 352.125 352.125 349.875 352.125 354.375 354.375 352.125 354.375 356.625 356.625 354.375 356.625 358.875 358.875 356.625 -1.125 1.125 1.125 -1.125 1.125 3.375 3.375 1.125 3.375 5.625 5.625 3.375 5.625 7.875 7.875 5.625 7.875 10.125 10.125 7.875 10.125 12.375 12.375 10.125 12.375 14.625 14.625 12.375 14.625 16.875 16.875 14.625 16.875 19.125 19.125 16.875 19.125 21.375 21.375 19.125 21.375 23.625 23.625 21.375 23.625 25.875 25.875 23.625 25.875 28.125 28.125 25.875 28.125 30.375 30.375 28.125 30.375 32.625 32.625 30.375 32.625 34.875 34.875 32.625 34.875 37.125 37.125 34.875 37.125 39.375 39.375 37.125 39.375 41.625 41.625 39.375 41.625 43.875 43.875 41.625 43.875 46.125 46.125 43.875 46.125 48.375 48.375 46.125 48.375 50.625 50.625 48.375 50.625 52.875 52.875 50.625 52.875 55.125 55.125 52.875 55.125 57.375 57.375 55.125 57.375 59.625 59.625 57.375 59.625 61.875 61.875 59.625 61.875 64.125 64.125 61.875 64.125 66.375 66.375 64.125 66.375 68.625 68.625 66.375 68.625 70.875 70.875 68.625 70.875 73.125 73.125 70.875 73.125 75.375 75.375 73.125 75.375 77.625 77.625 75.375 77.625 79.875 79.875 77.625 79.875 82.125 82.125 79.875 82.125 84.375 84.375 82.125 84.375 86.625 86.625 84.375 86.625 88.875 88.875 86.625 88.875 91.125 91.125 88.875 91.125 93.375 93.375 91.125 93.375 95.625 95.625 93.375 95.625 97.875 97.875 95.625 97.875 100.125 100.125 97.875 100.125 102.375 102.375 100.125 102.375 104.625 104.625 102.375 104.625 106.875 106.875 104.625 106.875 109.125 109.125 106.875 109.125 111.375 111.375 109.125 111.375 113.625 113.625 111.375 113.625 115.875 115.875 113.625 115.875 118.125 118.125 115.875 118.125 120.375 120.375 118.125 120.375 122.625 122.625 120.375 122.625 124.875 124.875 122.625 124.875 127.125 127.125 124.875 127.125 129.375 129.375 127.125 129.375 131.625 131.625 129.375 131.625 133.875 133.875 131.625 133.875 136.125 136.125 133.875 136.125 138.375 138.375 136.125 138.375 140.625 140.625 138.375 140.625 142.875 142.875 140.625 142.875 145.125 145.125 142.875 145.125 147.375 147.375 145.125 147.375 149.625 149.625 147.375 149.625 151.875 151.875 149.625 151.875 154.125 154.125 151.875 154.125 156.375 156.375 154.125 156.375 158.625 158.625 156.375 158.625 160.875 160.875 158.625 160.875 163.125 163.125 160.875 163.125 165.375 165.375 163.125 165.375 167.625 167.625 165.375 167.625 169.875 169.875 167.625 169.875 172.125 172.125 169.875 172.125 174.375 174.375 172.125 174.375 176.625 176.625 174.375 176.625 178.875 178.875 176.625 178.875 181.125 181.125 178.875 181.125 183.375 183.375 181.125 183.375 185.625 185.625 183.375 185.625 187.875 187.875 185.625 187.875 190.125 190.125 187.875 190.125 192.375 192.375 190.125 192.375 194.625 194.625 192.375 194.625 196.875 196.875 194.625 196.875 199.125 199.125 196.875 199.125 201.375 201.375 199.125 201.375 203.625 203.625 201.375 203.625 205.875 205.875 203.625 205.875 208.125 208.125 205.875 208.125 210.375 210.375 208.125 210.375 212.625 212.625 210.375 212.625 214.875 214.875 212.625 214.875 217.125 217.125 214.875 217.125 219.375 219.375 217.125 219.375 221.625 221.625 219.375 221.625 223.875 223.875 221.625 223.875 226.125 226.125 223.875 226.125 228.375 228.375 226.125 228.375 230.625 230.625 228.375 230.625 232.875 232.875 230.625 232.875 235.125 235.125 232.875 235.125 237.375 237.375 235.125 237.375 239.625 239.625 237.375 239.625 241.875 241.875 239.625 241.875 244.125 244.125 241.875 244.125 246.375 246.375 244.125 246.375 248.625 248.625 246.375 248.625 250.875 250.875 248.625 250.875 253.125 253.125 250.875 253.125 255.375 255.375 253.125 255.375 257.625 257.625 255.375 257.625 259.875 259.875 257.625 259.875 262.125 262.125 259.875 262.125 264.375 264.375 262.125 264.375 266.625 266.625 264.375 266.625 268.875 268.875 266.625 268.875 271.125 271.125 268.875 271.125 273.375 273.375 271.125 273.375 275.625 275.625 273.375 275.625 277.875 277.875 275.625 277.875 280.125 280.125 277.875 280.125 282.375 282.375 280.125 282.375 284.625 284.625 282.375 284.625 286.875 286.875 284.625 286.875 289.125 289.125 286.875 289.125 291.375 291.375 289.125 291.375 293.625 293.625 291.375 293.625 295.875 295.875 293.625 295.875 298.125 298.125 295.875 298.125 300.375 300.375 298.125 300.375 302.625 302.625 300.375 302.625 304.875 304.875 302.625 304.875 307.125 307.125 304.875 307.125 309.375 309.375 307.125 309.375 311.625 311.625 309.375 311.625 313.875 313.875 311.625 313.875 316.125 316.125 313.875 316.125 318.375 318.375 316.125 318.375 320.625 320.625 318.375 320.625 322.875 322.875 320.625 322.875 325.125 325.125 322.875 325.125 327.375 327.375 325.125 327.375 329.625 329.625 327.375 329.625 331.875 331.875 329.625 331.875 334.125 334.125 331.875 334.125 336.375 336.375 334.125 336.375 338.625 338.625 336.375 338.625 340.875 340.875 338.625 340.875 343.125 343.125 340.875 343.125 345.375 345.375 343.125 345.375 347.625 347.625 345.375 347.625 349.875 349.875 347.625 349.875 352.125 352.125 349.875 352.125 354.375 354.375 352.125 354.375 356.625 356.625 354.375 356.625 358.875 358.875 356.625 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 +197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -0.9375 0.9375 0.9375 -0.9375 0.9375 2.8125 2.8125 0.9375 2.8125 4.6875 4.6875 2.8125 4.6875 6.5625 6.5625 4.6875 6.5625 8.4375 8.4375 6.5625 8.4375 10.3125 10.3125 8.4375 10.3125 12.1875 12.1875 10.3125 12.1875 14.0625 14.0625 12.1875 14.0625 15.9375 15.9375 14.0625 15.9375 17.8125 17.8125 15.9375 17.8125 19.6875 19.6875 17.8125 19.6875 21.5625 21.5625 19.6875 21.5625 23.4375 23.4375 21.5625 23.4375 25.3125 25.3125 23.4375 25.3125 27.1875 27.1875 25.3125 27.1875 29.0625 29.0625 27.1875 29.0625 30.9375 30.9375 29.0625 30.9375 32.8125 32.8125 30.9375 32.8125 34.6875 34.6875 32.8125 34.6875 36.5625 36.5625 34.6875 36.5625 38.4375 38.4375 36.5625 38.4375 40.3125 40.3125 38.4375 40.3125 42.1875 42.1875 40.3125 42.1875 44.0625 44.0625 42.1875 44.0625 45.9375 45.9375 44.0625 45.9375 47.8125 47.8125 45.9375 47.8125 49.6875 49.6875 47.8125 49.6875 51.5625 51.5625 49.6875 51.5625 53.4375 53.4375 51.5625 53.4375 55.3125 55.3125 53.4375 55.3125 57.1875 57.1875 55.3125 57.1875 59.0625 59.0625 57.1875 59.0625 60.9375 60.9375 59.0625 60.9375 62.8125 62.8125 60.9375 62.8125 64.6875 64.6875 62.8125 64.6875 66.5625 66.5625 64.6875 66.5625 68.4375 68.4375 66.5625 68.4375 70.3125 70.3125 68.4375 70.3125 72.1875 72.1875 70.3125 72.1875 74.0625 74.0625 72.1875 74.0625 75.9375 75.9375 74.0625 75.9375 77.8125 77.8125 75.9375 77.8125 79.6875 79.6875 77.8125 79.6875 81.5625 81.5625 79.6875 81.5625 83.4375 83.4375 81.5625 83.4375 85.3125 85.3125 83.4375 85.3125 87.1875 87.1875 85.3125 87.1875 89.0625 89.0625 87.1875 89.0625 90.9375 90.9375 89.0625 90.9375 92.8125 92.8125 90.9375 92.8125 94.6875 94.6875 92.8125 94.6875 96.5625 96.5625 94.6875 96.5625 98.4375 98.4375 96.5625 98.4375 100.3125 100.3125 98.4375 100.3125 102.1875 102.1875 100.3125 102.1875 104.0625 104.0625 102.1875 104.0625 105.9375 105.9375 104.0625 105.9375 107.8125 107.8125 105.9375 107.8125 109.6875 109.6875 107.8125 109.6875 111.5625 111.5625 109.6875 111.5625 113.4375 113.4375 111.5625 113.4375 115.3125 115.3125 113.4375 115.3125 117.1875 117.1875 115.3125 117.1875 119.0625 119.0625 117.1875 119.0625 120.9375 120.9375 119.0625 120.9375 122.8125 122.8125 120.9375 122.8125 124.6875 124.6875 122.8125 124.6875 126.5625 126.5625 124.6875 126.5625 128.4375 128.4375 126.5625 128.4375 130.3125 130.3125 128.4375 130.3125 132.1875 132.1875 130.3125 132.1875 134.0625 134.0625 132.1875 134.0625 135.9375 135.9375 134.0625 135.9375 137.8125 137.8125 135.9375 137.8125 139.6875 139.6875 137.8125 139.6875 141.5625 141.5625 139.6875 141.5625 143.4375 143.4375 141.5625 143.4375 145.3125 145.3125 143.4375 145.3125 147.1875 147.1875 145.3125 147.1875 149.0625 149.0625 147.1875 149.0625 150.9375 150.9375 149.0625 150.9375 152.8125 152.8125 150.9375 152.8125 154.6875 154.6875 152.8125 154.6875 156.5625 156.5625 154.6875 156.5625 158.4375 158.4375 156.5625 158.4375 160.3125 160.3125 158.4375 160.3125 162.1875 162.1875 160.3125 162.1875 164.0625 164.0625 162.1875 164.0625 165.9375 165.9375 164.0625 165.9375 167.8125 167.8125 165.9375 167.8125 169.6875 169.6875 167.8125 169.6875 171.5625 171.5625 169.6875 171.5625 173.4375 173.4375 171.5625 173.4375 175.3125 175.3125 173.4375 175.3125 177.1875 177.1875 175.3125 177.1875 179.0625 179.0625 177.1875 179.0625 180.9375 180.9375 179.0625 180.9375 182.8125 182.8125 180.9375 182.8125 184.6875 184.6875 182.8125 184.6875 186.5625 186.5625 184.6875 186.5625 188.4375 188.4375 186.5625 188.4375 190.3125 190.3125 188.4375 190.3125 192.1875 192.1875 190.3125 192.1875 194.0625 194.0625 192.1875 194.0625 195.9375 195.9375 194.0625 195.9375 197.8125 197.8125 195.9375 197.8125 199.6875 199.6875 197.8125 199.6875 201.5625 201.5625 199.6875 201.5625 203.4375 203.4375 201.5625 203.4375 205.3125 205.3125 203.4375 205.3125 207.1875 207.1875 205.3125 207.1875 209.0625 209.0625 207.1875 209.0625 210.9375 210.9375 209.0625 210.9375 212.8125 212.8125 210.9375 212.8125 214.6875 214.6875 212.8125 214.6875 216.5625 216.5625 214.6875 216.5625 218.4375 218.4375 216.5625 218.4375 220.3125 220.3125 218.4375 220.3125 222.1875 222.1875 220.3125 222.1875 224.0625 224.0625 222.1875 224.0625 225.9375 225.9375 224.0625 225.9375 227.8125 227.8125 225.9375 227.8125 229.6875 229.6875 227.8125 229.6875 231.5625 231.5625 229.6875 231.5625 233.4375 233.4375 231.5625 233.4375 235.3125 235.3125 233.4375 235.3125 237.1875 237.1875 235.3125 237.1875 239.0625 239.0625 237.1875 239.0625 240.9375 240.9375 239.0625 240.9375 242.8125 242.8125 240.9375 242.8125 244.6875 244.6875 242.8125 244.6875 246.5625 246.5625 244.6875 246.5625 248.4375 248.4375 246.5625 248.4375 250.3125 250.3125 248.4375 250.3125 252.1875 252.1875 250.3125 252.1875 254.0625 254.0625 252.1875 254.0625 255.9375 255.9375 254.0625 255.9375 257.8125 257.8125 255.9375 257.8125 259.6875 259.6875 257.8125 259.6875 261.5625 261.5625 259.6875 261.5625 263.4375 263.4375 261.5625 263.4375 265.3125 265.3125 263.4375 265.3125 267.1875 267.1875 265.3125 267.1875 269.0625 269.0625 267.1875 269.0625 270.9375 270.9375 269.0625 270.9375 272.8125 272.8125 270.9375 272.8125 274.6875 274.6875 272.8125 274.6875 276.5625 276.5625 274.6875 276.5625 278.4375 278.4375 276.5625 278.4375 280.3125 280.3125 278.4375 280.3125 282.1875 282.1875 280.3125 282.1875 284.0625 284.0625 282.1875 284.0625 285.9375 285.9375 284.0625 285.9375 287.8125 287.8125 285.9375 287.8125 289.6875 289.6875 287.8125 289.6875 291.5625 291.5625 289.6875 291.5625 293.4375 293.4375 291.5625 293.4375 295.3125 295.3125 293.4375 295.3125 297.1875 297.1875 295.3125 297.1875 299.0625 299.0625 297.1875 299.0625 300.9375 300.9375 299.0625 300.9375 302.8125 302.8125 300.9375 302.8125 304.6875 304.6875 302.8125 304.6875 306.5625 306.5625 304.6875 306.5625 308.4375 308.4375 306.5625 308.4375 310.3125 310.3125 308.4375 310.3125 312.1875 312.1875 310.3125 312.1875 314.0625 314.0625 312.1875 314.0625 315.9375 315.9375 314.0625 315.9375 317.8125 317.8125 315.9375 317.8125 319.6875 319.6875 317.8125 319.6875 321.5625 321.5625 319.6875 321.5625 323.4375 323.4375 321.5625 323.4375 325.3125 325.3125 323.4375 325.3125 327.1875 327.1875 325.3125 327.1875 329.0625 329.0625 327.1875 329.0625 330.9375 330.9375 329.0625 330.9375 332.8125 332.8125 330.9375 332.8125 334.6875 334.6875 332.8125 334.6875 336.5625 336.5625 334.6875 336.5625 338.4375 338.4375 336.5625 338.4375 340.3125 340.3125 338.4375 340.3125 342.1875 342.1875 340.3125 342.1875 344.0625 344.0625 342.1875 344.0625 345.9375 345.9375 344.0625 345.9375 347.8125 347.8125 345.9375 347.8125 349.6875 349.6875 347.8125 349.6875 351.5625 351.5625 349.6875 351.5625 353.4375 353.4375 351.5625 353.4375 355.3125 355.3125 353.4375 355.3125 357.1875 357.1875 355.3125 357.1875 359.0625 359.0625 357.1875 -0.9375 0.9375 0.9375 -0.9375 0.9375 2.8125 2.8125 0.9375 2.8125 4.6875 4.6875 2.8125 4.6875 6.5625 6.5625 4.6875 6.5625 8.4375 8.4375 6.5625 8.4375 10.3125 10.3125 8.4375 10.3125 12.1875 12.1875 10.3125 12.1875 14.0625 14.0625 12.1875 14.0625 15.9375 15.9375 14.0625 15.9375 17.8125 17.8125 15.9375 17.8125 19.6875 19.6875 17.8125 19.6875 21.5625 21.5625 19.6875 21.5625 23.4375 23.4375 21.5625 23.4375 25.3125 25.3125 23.4375 25.3125 27.1875 27.1875 25.3125 27.1875 29.0625 29.0625 27.1875 29.0625 30.9375 30.9375 29.0625 30.9375 32.8125 32.8125 30.9375 32.8125 34.6875 34.6875 32.8125 34.6875 36.5625 36.5625 34.6875 36.5625 38.4375 38.4375 36.5625 38.4375 40.3125 40.3125 38.4375 40.3125 42.1875 42.1875 40.3125 42.1875 44.0625 44.0625 42.1875 44.0625 45.9375 45.9375 44.0625 45.9375 47.8125 47.8125 45.9375 47.8125 49.6875 49.6875 47.8125 49.6875 51.5625 51.5625 49.6875 51.5625 53.4375 53.4375 51.5625 53.4375 55.3125 55.3125 53.4375 55.3125 57.1875 57.1875 55.3125 57.1875 59.0625 59.0625 57.1875 59.0625 60.9375 60.9375 59.0625 60.9375 62.8125 62.8125 60.9375 62.8125 64.6875 64.6875 62.8125 64.6875 66.5625 66.5625 64.6875 66.5625 68.4375 68.4375 66.5625 68.4375 70.3125 70.3125 68.4375 70.3125 72.1875 72.1875 70.3125 72.1875 74.0625 74.0625 72.1875 74.0625 75.9375 75.9375 74.0625 75.9375 77.8125 77.8125 75.9375 77.8125 79.6875 79.6875 77.8125 79.6875 81.5625 81.5625 79.6875 81.5625 83.4375 83.4375 81.5625 83.4375 85.3125 85.3125 83.4375 85.3125 87.1875 87.1875 85.3125 +87.1875 89.0625 89.0625 87.1875 89.0625 90.9375 90.9375 89.0625 90.9375 92.8125 92.8125 90.9375 92.8125 94.6875 94.6875 92.8125 94.6875 96.5625 96.5625 94.6875 96.5625 98.4375 98.4375 96.5625 98.4375 100.3125 100.3125 98.4375 100.3125 102.1875 102.1875 100.3125 102.1875 104.0625 104.0625 102.1875 104.0625 105.9375 105.9375 104.0625 105.9375 107.8125 107.8125 105.9375 107.8125 109.6875 109.6875 107.8125 109.6875 111.5625 111.5625 109.6875 111.5625 113.4375 113.4375 111.5625 113.4375 115.3125 115.3125 113.4375 115.3125 117.1875 117.1875 115.3125 117.1875 119.0625 119.0625 117.1875 119.0625 120.9375 120.9375 119.0625 120.9375 122.8125 122.8125 120.9375 122.8125 124.6875 124.6875 122.8125 124.6875 126.5625 126.5625 124.6875 126.5625 128.4375 128.4375 126.5625 128.4375 130.3125 130.3125 128.4375 130.3125 132.1875 132.1875 130.3125 132.1875 134.0625 134.0625 132.1875 134.0625 135.9375 135.9375 134.0625 135.9375 137.8125 137.8125 135.9375 137.8125 139.6875 139.6875 137.8125 139.6875 141.5625 141.5625 139.6875 141.5625 143.4375 143.4375 141.5625 143.4375 145.3125 145.3125 143.4375 145.3125 147.1875 147.1875 145.3125 147.1875 149.0625 149.0625 147.1875 149.0625 150.9375 150.9375 149.0625 150.9375 152.8125 152.8125 150.9375 152.8125 154.6875 154.6875 152.8125 154.6875 156.5625 156.5625 154.6875 156.5625 158.4375 158.4375 156.5625 158.4375 160.3125 160.3125 158.4375 160.3125 162.1875 162.1875 160.3125 162.1875 164.0625 164.0625 162.1875 164.0625 165.9375 165.9375 164.0625 165.9375 167.8125 167.8125 165.9375 167.8125 169.6875 169.6875 167.8125 169.6875 171.5625 171.5625 169.6875 171.5625 173.4375 173.4375 171.5625 173.4375 175.3125 175.3125 173.4375 175.3125 177.1875 177.1875 175.3125 177.1875 179.0625 179.0625 177.1875 179.0625 180.9375 180.9375 179.0625 180.9375 182.8125 182.8125 180.9375 182.8125 184.6875 184.6875 182.8125 184.6875 186.5625 186.5625 184.6875 186.5625 188.4375 188.4375 186.5625 188.4375 190.3125 190.3125 188.4375 190.3125 192.1875 192.1875 190.3125 192.1875 194.0625 194.0625 192.1875 194.0625 195.9375 195.9375 194.0625 195.9375 197.8125 197.8125 195.9375 197.8125 199.6875 199.6875 197.8125 199.6875 201.5625 201.5625 199.6875 201.5625 203.4375 203.4375 201.5625 203.4375 205.3125 205.3125 203.4375 205.3125 207.1875 207.1875 205.3125 207.1875 209.0625 209.0625 207.1875 209.0625 210.9375 210.9375 209.0625 210.9375 212.8125 212.8125 210.9375 212.8125 214.6875 214.6875 212.8125 214.6875 216.5625 216.5625 214.6875 216.5625 218.4375 218.4375 216.5625 218.4375 220.3125 220.3125 218.4375 220.3125 222.1875 222.1875 220.3125 222.1875 224.0625 224.0625 222.1875 224.0625 225.9375 225.9375 224.0625 225.9375 227.8125 227.8125 225.9375 227.8125 229.6875 229.6875 227.8125 229.6875 231.5625 231.5625 229.6875 231.5625 233.4375 233.4375 231.5625 233.4375 235.3125 235.3125 233.4375 235.3125 237.1875 237.1875 235.3125 237.1875 239.0625 239.0625 237.1875 239.0625 240.9375 240.9375 239.0625 240.9375 242.8125 242.8125 240.9375 242.8125 244.6875 244.6875 242.8125 244.6875 246.5625 246.5625 244.6875 246.5625 248.4375 248.4375 246.5625 248.4375 250.3125 250.3125 248.4375 250.3125 252.1875 252.1875 250.3125 252.1875 254.0625 254.0625 252.1875 254.0625 255.9375 255.9375 254.0625 255.9375 257.8125 257.8125 255.9375 257.8125 259.6875 259.6875 257.8125 259.6875 261.5625 261.5625 259.6875 261.5625 263.4375 263.4375 261.5625 263.4375 265.3125 265.3125 263.4375 265.3125 267.1875 267.1875 265.3125 267.1875 269.0625 269.0625 267.1875 269.0625 270.9375 270.9375 269.0625 270.9375 272.8125 272.8125 270.9375 272.8125 274.6875 274.6875 272.8125 274.6875 276.5625 276.5625 274.6875 276.5625 278.4375 278.4375 276.5625 278.4375 280.3125 280.3125 278.4375 280.3125 282.1875 282.1875 280.3125 282.1875 284.0625 284.0625 282.1875 284.0625 285.9375 285.9375 284.0625 285.9375 287.8125 287.8125 285.9375 287.8125 289.6875 289.6875 287.8125 289.6875 291.5625 291.5625 289.6875 291.5625 293.4375 293.4375 291.5625 293.4375 295.3125 295.3125 293.4375 295.3125 297.1875 297.1875 295.3125 297.1875 299.0625 299.0625 297.1875 299.0625 300.9375 300.9375 299.0625 300.9375 302.8125 302.8125 300.9375 302.8125 304.6875 304.6875 302.8125 304.6875 306.5625 306.5625 304.6875 306.5625 308.4375 308.4375 306.5625 308.4375 310.3125 310.3125 308.4375 310.3125 312.1875 312.1875 310.3125 312.1875 314.0625 314.0625 312.1875 314.0625 315.9375 315.9375 314.0625 315.9375 317.8125 317.8125 315.9375 317.8125 319.6875 319.6875 317.8125 319.6875 321.5625 321.5625 319.6875 321.5625 323.4375 323.4375 321.5625 323.4375 325.3125 325.3125 323.4375 325.3125 327.1875 327.1875 325.3125 327.1875 329.0625 329.0625 327.1875 329.0625 330.9375 330.9375 329.0625 330.9375 332.8125 332.8125 330.9375 332.8125 334.6875 334.6875 332.8125 334.6875 336.5625 336.5625 334.6875 336.5625 338.4375 338.4375 336.5625 338.4375 340.3125 340.3125 338.4375 340.3125 342.1875 342.1875 340.3125 342.1875 344.0625 344.0625 342.1875 344.0625 345.9375 345.9375 344.0625 345.9375 347.8125 347.8125 345.9375 347.8125 349.6875 349.6875 347.8125 349.6875 351.5625 351.5625 349.6875 351.5625 353.4375 353.4375 351.5625 353.4375 355.3125 355.3125 353.4375 355.3125 357.1875 357.1875 355.3125 357.1875 359.0625 359.0625 357.1875 -0.9 0.9 0.9 -0.9 0.899999952316 2.69999995232 2.69999995232 0.899999952316 2.69999990463 4.49999990463 4.49999990463 2.69999990463 4.50000009537 6.30000009537 6.30000009537 4.50000009537 6.29999980927 8.09999980927 8.09999980927 6.29999980927 8.1 9.9 9.9 8.1 9.90000019073 11.7000001907 11.7000001907 9.90000019073 11.7000003815 13.5000003815 13.5000003815 11.7000003815 13.4999996185 15.2999996185 15.2999996185 13.4999996185 15.3000007629 17.1000007629 17.1000007629 15.3000007629 17.1 18.9 18.9 17.1 18.8999992371 20.6999992371 20.6999992371 18.8999992371 20.7000003815 22.5000003815 22.5000003815 20.7000003815 22.4999996185 24.2999996185 24.2999996185 22.4999996185 24.3000007629 26.1000007629 26.1000007629 24.3000007629 26.1 27.9 27.9 26.1 27.8999992371 29.6999992371 29.6999992371 27.8999992371 29.7000003815 31.5000003815 31.5000003815 29.7000003815 31.5000015259 33.3000015259 33.3000015259 31.5000015259 33.3000007629 35.1000007629 35.1000007629 33.3000007629 35.1 36.9 36.9 35.1 36.8999992371 38.6999992371 38.6999992371 36.8999992371 38.6999984741 40.4999984741 40.4999984741 38.6999984741 40.5000015259 42.3000015259 42.3000015259 40.5000015259 42.3000007629 44.1000007629 44.1000007629 42.3000007629 44.1 45.9 45.9 44.1 45.8999992371 47.6999992371 47.6999992371 45.8999992371 47.6999984741 49.4999984741 49.4999984741 47.6999984741 49.5000015259 51.3000015259 51.3000015259 49.5000015259 51.3000007629 53.1000007629 53.1000007629 51.3000007629 53.1 54.9 54.9 53.1 54.8999992371 56.6999992371 56.6999992371 54.8999992371 56.6999984741 58.4999984741 58.4999984741 56.6999984741 58.5000015259 60.3000015259 60.3000015259 58.5000015259 60.3000007629 62.1000007629 62.1000007629 60.3000007629 62.1 63.9 63.9 62.1 63.9000030518 65.7000030518 65.7000030518 63.9000030518 65.6999984741 67.4999984741 67.4999984741 65.6999984741 67.5000015259 69.3000015259 69.3000015259 67.5000015259 69.2999969482 71.0999969482 71.0999969482 69.2999969482 71.1 72.9 72.9 71.1 72.9000030518 74.7000030518 74.7000030518 72.9000030518 74.6999984741 76.4999984741 76.4999984741 74.6999984741 76.5000015259 78.3000015259 78.3000015259 76.5000015259 78.2999969482 80.0999969482 80.0999969482 78.2999969482 80.1 81.9 81.9 80.1 81.9000030518 83.7000030518 83.7000030518 81.9000030518 83.6999984741 85.4999984741 85.4999984741 83.6999984741 85.5000015259 87.3000015259 87.3000015259 85.5000015259 87.2999969482 89.0999969482 89.0999969482 87.2999969482 89.1 90.9 90.9 89.1 90.9000030518 92.7000030518 92.7000030518 90.9000030518 92.6999984741 94.4999984741 94.4999984741 92.6999984741 94.5000015259 96.3000015259 96.3000015259 94.5000015259 96.2999969482 98.0999969482 98.0999969482 96.2999969482 98.1 99.9 99.9 98.1 99.9000030518 101.700003052 101.700003052 99.9000030518 101.699998474 103.499998474 103.499998474 101.699998474 103.500001526 105.300001526 105.300001526 103.500001526 105.299996948 107.099996948 107.099996948 105.299996948 107.1 108.9 108.9 107.1 108.900003052 110.700003052 110.700003052 108.900003052 110.699998474 112.499998474 112.499998474 110.699998474 112.500001526 114.300001526 114.300001526 112.500001526 114.299996948 116.099996948 116.099996948 114.299996948 116.1 117.9 117.9 116.1 117.900003052 119.700003052 119.700003052 117.900003052 119.699998474 121.499998474 121.499998474 119.699998474 121.500001526 123.300001526 123.300001526 121.500001526 123.299996948 125.099996948 125.099996948 123.299996948 125.1 126.9 126.9 125.1 126.900003052 128.700003052 128.700003052 126.900003052 128.700006104 130.500006104 130.500006104 128.700006104 130.499993896 132.299993896 132.299993896 130.499993896 132.299996948 134.099996948 134.099996948 132.299996948 134.1 135.9 135.9 134.1 135.900003052 137.700003052 137.700003052 135.900003052 137.700006104 139.500006104 139.500006104 137.700006104 139.499993896 141.299993896 141.299993896 139.499993896 141.299996948 143.099996948 143.099996948 141.299996948 143.1 144.9 144.9 143.1 144.900003052 146.700003052 146.700003052 144.900003052 146.700006104 148.500006104 148.500006104 146.700006104 148.499993896 150.299993896 150.299993896 148.499993896 150.299996948 152.099996948 152.099996948 150.299996948 152.1 153.9 153.9 152.1 153.900003052 155.700003052 155.700003052 153.900003052 155.700006104 157.500006104 157.500006104 155.700006104 157.499993896 159.299993896 159.299993896 157.499993896 159.299996948 161.099996948 161.099996948 159.299996948 161.1 162.9 162.9 161.1 162.900003052 164.700003052 164.700003052 162.900003052 164.700006104 166.500006104 166.500006104 164.700006104 166.499993896 168.299993896 168.299993896 166.499993896 168.299996948 170.099996948 170.099996948 168.299996948 170.1 171.9 171.9 170.1 171.900003052 173.700003052 173.700003052 171.900003052 173.700006104 175.500006104 175.500006104 173.700006104 175.499993896 177.299993896 177.299993896 175.499993896 177.299996948 179.099996948 179.099996948 177.299996948 179.1 180.9 180.9 179.1 180.900003052 182.700003052 182.700003052 180.900003052 182.700006104 184.500006104 184.500006104 182.700006104 184.499993896 186.299993896 186.299993896 184.499993896 186.299996948 188.099996948 188.099996948 186.299996948 188.1 189.9 189.9 188.1 189.900003052 191.700003052 191.700003052 189.900003052 191.700006104 193.500006104 193.500006104 191.700006104 193.499993896 195.299993896 195.299993896 193.499993896 195.299996948 197.099996948 197.099996948 195.299996948 197.1 198.9 198.9 197.1 198.900003052 200.700003052 200.700003052 198.900003052 200.700006104 202.500006104 202.500006104 200.700006104 202.499993896 204.299993896 204.299993896 202.499993896 204.299996948 206.099996948 206.099996948 204.299996948 206.1 207.9 207.9 206.1 207.900003052 209.700003052 209.700003052 207.900003052 209.700006104 211.500006104 211.500006104 209.700006104 211.499993896 213.299993896 213.299993896 211.499993896 213.299996948 215.099996948 215.099996948 213.299996948 215.1 216.9 216.9 215.1 216.900003052 218.700003052 218.700003052 216.900003052 218.700006104 220.500006104 220.500006104 218.700006104 220.499993896 222.299993896 222.299993896 220.499993896 222.299996948 224.099996948 224.099996948 222.299996948 224.1 225.9 225.9 224.1 225.900003052 227.700003052 227.700003052 225.900003052 227.700006104 229.500006104 229.500006104 227.700006104 229.499993896 231.299993896 231.299993896 229.499993896 231.299996948 233.099996948 233.099996948 231.299996948 233.1 234.9 234.9 233.1 234.900003052 236.700003052 236.700003052 234.900003052 236.700006104 238.500006104 238.500006104 236.700006104 238.499993896 240.299993896 240.299993896 238.499993896 240.299996948 242.099996948 242.099996948 240.299996948 242.1 243.9 243.9 242.1 243.900003052 245.700003052 245.700003052 243.900003052 245.700006104 247.500006104 247.500006104 245.700006104 247.499993896 249.299993896 249.299993896 247.499993896 249.299996948 251.099996948 251.099996948 249.299996948 251.1 252.9 252.9 251.1 252.900003052 254.700003052 254.700003052 252.900003052 254.700006104 256.500006104 256.500006104 254.700006104 256.499993896 258.299993896 258.299993896 256.499993896 258.300012207 260.100012207 260.100012207 258.300012207 260.1 261.9 261.9 260.1 261.899987793 263.699987793 263.699987793 261.899987793 263.700006104 265.500006104 265.500006104 263.700006104 265.499993896 267.299993896 267.299993896 265.499993896 267.300012207 269.100012207 269.100012207 267.300012207 269.1 270.9 270.9 269.1 270.899987793 272.699987793 272.699987793 270.899987793 272.700006104 274.500006104 274.500006104 272.700006104 274.499993896 276.299993896 276.299993896 274.499993896 276.300012207 278.100012207 278.100012207 276.300012207 278.1 279.9 279.9 278.1 279.899987793 281.699987793 281.699987793 279.899987793 281.700006104 283.500006104 283.500006104 281.700006104 283.499993896 285.299993896 285.299993896 283.499993896 285.300012207 287.100012207 287.100012207 285.300012207 287.1 288.9 288.9 287.1 288.899987793 290.699987793 290.699987793 288.899987793 290.700006104 292.500006104 292.500006104 290.700006104 292.499993896 294.299993896 294.299993896 292.499993896 294.300012207 296.100012207 296.100012207 294.300012207 296.1 297.9 297.9 296.1 297.899987793 299.699987793 299.699987793 297.899987793 299.700006104 301.500006104 301.500006104 299.700006104 301.499993896 303.299993896 303.299993896 301.499993896 303.300012207 305.100012207 305.100012207 303.300012207 305.1 306.9 306.9 305.1 306.899987793 308.699987793 308.699987793 306.899987793 308.700006104 310.500006104 310.500006104 308.700006104 310.499993896 312.299993896 312.299993896 310.499993896 312.300012207 314.100012207 314.100012207 312.300012207 314.1 315.9 315.9 314.1 315.899987793 317.699987793 317.699987793 315.899987793 317.700006104 319.500006104 319.500006104 317.700006104 319.499993896 321.299993896 321.299993896 319.499993896 321.300012207 323.100012207 323.100012207 321.300012207 323.1 324.9 324.9 323.1 324.899987793 326.699987793 326.699987793 324.899987793 326.700006104 328.500006104 328.500006104 326.700006104 328.499993896 330.299993896 330.299993896 328.499993896 330.300012207 332.100012207 332.100012207 330.300012207 332.1 333.9 333.9 332.1 333.899987793 335.699987793 335.699987793 333.899987793 335.700006104 337.500006104 337.500006104 335.700006104 337.499993896 339.299993896 339.299993896 337.499993896 339.300012207 341.100012207 341.100012207 339.300012207 341.1 342.9 342.9 341.1 342.899987793 344.699987793 344.699987793 342.899987793 344.700006104 346.500006104 346.500006104 344.700006104 346.499993896 348.299993896 348.299993896 346.499993896 348.300012207 350.100012207 350.100012207 348.300012207 350.1 351.9 351.9 350.1 351.899987793 353.699987793 353.699987793 351.899987793 353.700006104 355.500006104 355.500006104 353.700006104 355.499993896 357.299993896 357.299993896 355.499993896 357.300012207 359.100012207 359.100012207 357.300012207 -0.9 0.9 0.9 -0.9 0.899999952316 2.69999995232 2.69999995232 0.899999952316 2.69999990463 4.49999990463 4.49999990463 2.69999990463 4.50000009537 6.30000009537 6.30000009537 4.50000009537 6.29999980927 8.09999980927 8.09999980927 6.29999980927 8.1 9.9 9.9 8.1 9.90000019073 11.7000001907 11.7000001907 9.90000019073 11.7000003815 13.5000003815 13.5000003815 11.7000003815 13.4999996185 15.2999996185 15.2999996185 13.4999996185 15.3000007629 17.1000007629 17.1000007629 15.3000007629 17.1 18.9 18.9 17.1 18.8999992371 20.6999992371 20.6999992371 18.8999992371 20.7000003815 22.5000003815 22.5000003815 20.7000003815 22.4999996185 24.2999996185 24.2999996185 22.4999996185 24.3000007629 26.1000007629 26.1000007629 24.3000007629 26.1 27.9 27.9 26.1 27.8999992371 29.6999992371 29.6999992371 27.8999992371 29.7000003815 31.5000003815 31.5000003815 29.7000003815 31.5000015259 33.3000015259 33.3000015259 31.5000015259 33.3000007629 35.1000007629 35.1000007629 33.3000007629 35.1 36.9 36.9 35.1 36.8999992371 38.6999992371 38.6999992371 36.8999992371 38.6999984741 40.4999984741 40.4999984741 38.6999984741 40.5000015259 42.3000015259 42.3000015259 40.5000015259 42.3000007629 44.1000007629 44.1000007629 42.3000007629 44.1 45.9 45.9 44.1 45.8999992371 47.6999992371 47.6999992371 45.8999992371 47.6999984741 49.4999984741 49.4999984741 47.6999984741 49.5000015259 51.3000015259 51.3000015259 49.5000015259 51.3000007629 53.1000007629 53.1000007629 51.3000007629 53.1 54.9 54.9 53.1 54.8999992371 56.6999992371 56.6999992371 54.8999992371 56.6999984741 58.4999984741 58.4999984741 56.6999984741 58.5000015259 60.3000015259 60.3000015259 58.5000015259 60.3000007629 62.1000007629 62.1000007629 60.3000007629 62.1 63.9 63.9 62.1 63.9000030518 65.7000030518 65.7000030518 63.9000030518 65.6999984741 67.4999984741 67.4999984741 65.6999984741 67.5000015259 69.3000015259 69.3000015259 67.5000015259 69.2999969482 71.0999969482 71.0999969482 69.2999969482 71.1 72.9 72.9 71.1 72.9000030518 74.7000030518 74.7000030518 72.9000030518 74.6999984741 76.4999984741 76.4999984741 74.6999984741 76.5000015259 78.3000015259 78.3000015259 76.5000015259 78.2999969482 80.0999969482 80.0999969482 78.2999969482 80.1 81.9 81.9 80.1 81.9000030518 83.7000030518 83.7000030518 81.9000030518 83.6999984741 85.4999984741 85.4999984741 83.6999984741 85.5000015259 87.3000015259 87.3000015259 85.5000015259 87.2999969482 89.0999969482 89.0999969482 87.2999969482 89.1 90.9 90.9 89.1 90.9000030518 92.7000030518 92.7000030518 90.9000030518 92.6999984741 94.4999984741 94.4999984741 92.6999984741 94.5000015259 96.3000015259 96.3000015259 94.5000015259 96.2999969482 98.0999969482 98.0999969482 96.2999969482 98.1 99.9 99.9 98.1 99.9000030518 101.700003052 101.700003052 99.9000030518 101.699998474 103.499998474 103.499998474 101.699998474 103.500001526 105.300001526 105.300001526 103.500001526 105.299996948 107.099996948 107.099996948 105.299996948 107.1 108.9 108.9 107.1 108.900003052 110.700003052 110.700003052 108.900003052 110.699998474 112.499998474 112.499998474 110.699998474 112.500001526 114.300001526 114.300001526 112.500001526 114.299996948 116.099996948 116.099996948 114.299996948 116.1 117.9 117.9 116.1 117.900003052 119.700003052 119.700003052 117.900003052 119.699998474 121.499998474 121.499998474 119.699998474 121.500001526 123.300001526 123.300001526 121.500001526 123.299996948 125.099996948 125.099996948 123.299996948 125.1 126.9 126.9 125.1 126.900003052 128.700003052 128.700003052 126.900003052 128.700006104 130.500006104 130.500006104 128.700006104 130.499993896 132.299993896 132.299993896 130.499993896 132.299996948 134.099996948 134.099996948 132.299996948 134.1 135.9 135.9 134.1 135.900003052 137.700003052 137.700003052 135.900003052 137.700006104 139.500006104 139.500006104 137.700006104 139.499993896 141.299993896 141.299993896 139.499993896 141.299996948 143.099996948 143.099996948 141.299996948 143.1 144.9 144.9 143.1 144.900003052 146.700003052 146.700003052 144.900003052 146.700006104 148.500006104 148.500006104 146.700006104 148.499993896 150.299993896 150.299993896 148.499993896 150.299996948 152.099996948 152.099996948 150.299996948 152.1 153.9 153.9 152.1 153.900003052 155.700003052 155.700003052 153.900003052 155.700006104 157.500006104 157.500006104 155.700006104 157.499993896 159.299993896 159.299993896 157.499993896 159.299996948 161.099996948 161.099996948 159.299996948 161.1 162.9 162.9 161.1 162.900003052 164.700003052 164.700003052 162.900003052 164.700006104 166.500006104 166.500006104 164.700006104 166.499993896 168.299993896 168.299993896 166.499993896 168.299996948 170.099996948 170.099996948 168.299996948 170.1 171.9 171.9 170.1 171.900003052 173.700003052 173.700003052 171.900003052 173.700006104 175.500006104 175.500006104 173.700006104 175.499993896 177.299993896 177.299993896 175.499993896 177.299996948 179.099996948 179.099996948 177.299996948 179.1 180.9 180.9 179.1 180.900003052 182.700003052 182.700003052 180.900003052 182.700006104 184.500006104 184.500006104 182.700006104 184.499993896 186.299993896 186.299993896 184.499993896 186.299996948 188.099996948 188.099996948 186.299996948 188.1 189.9 189.9 188.1 189.900003052 191.700003052 191.700003052 189.900003052 191.700006104 193.500006104 193.500006104 191.700006104 193.499993896 195.299993896 195.299993896 193.499993896 195.299996948 197.099996948 197.099996948 195.299996948 197.1 198.9 198.9 197.1 198.900003052 200.700003052 200.700003052 198.900003052 200.700006104 202.500006104 202.500006104 200.700006104 202.499993896 204.299993896 204.299993896 202.499993896 204.299996948 206.099996948 206.099996948 204.299996948 206.1 207.9 207.9 206.1 207.900003052 209.700003052 209.700003052 207.900003052 209.700006104 211.500006104 211.500006104 209.700006104 211.499993896 213.299993896 213.299993896 211.499993896 213.299996948 215.099996948 215.099996948 213.299996948 215.1 216.9 216.9 215.1 216.900003052 218.700003052 218.700003052 216.900003052 218.700006104 220.500006104 220.500006104 218.700006104 220.499993896 222.299993896 222.299993896 220.499993896 222.299996948 224.099996948 224.099996948 222.299996948 224.1 225.9 225.9 224.1 225.900003052 227.700003052 227.700003052 225.900003052 227.700006104 229.500006104 229.500006104 227.700006104 229.499993896 231.299993896 231.299993896 229.499993896 231.299996948 233.099996948 233.099996948 231.299996948 233.1 234.9 234.9 233.1 234.900003052 236.700003052 236.700003052 234.900003052 236.700006104 238.500006104 238.500006104 236.700006104 238.499993896 240.299993896 240.299993896 238.499993896 240.299996948 242.099996948 242.099996948 240.299996948 242.1 243.9 243.9 242.1 243.900003052 245.700003052 245.700003052 243.900003052 245.700006104 247.500006104 247.500006104 245.700006104 247.499993896 249.299993896 249.299993896 247.499993896 249.299996948 251.099996948 251.099996948 249.299996948 251.1 252.9 252.9 251.1 252.900003052 254.700003052 254.700003052 252.900003052 254.700006104 256.500006104 256.500006104 254.700006104 256.499993896 258.299993896 258.299993896 256.499993896 258.300012207 260.100012207 260.100012207 258.300012207 260.1 261.9 261.9 260.1 261.899987793 263.699987793 263.699987793 261.899987793 263.700006104 265.500006104 265.500006104 263.700006104 265.499993896 267.299993896 267.299993896 265.499993896 267.300012207 269.100012207 269.100012207 267.300012207 269.1 270.9 270.9 269.1 270.899987793 272.699987793 272.699987793 270.899987793 272.700006104 274.500006104 274.500006104 272.700006104 274.499993896 276.299993896 276.299993896 274.499993896 276.300012207 278.100012207 278.100012207 276.300012207 +278.1 279.9 279.9 278.1 279.899987793 281.699987793 281.699987793 279.899987793 281.700006104 283.500006104 283.500006104 281.700006104 283.499993896 285.299993896 285.299993896 283.499993896 285.300012207 287.100012207 287.100012207 285.300012207 287.1 288.9 288.9 287.1 288.899987793 290.699987793 290.699987793 288.899987793 290.700006104 292.500006104 292.500006104 290.700006104 292.499993896 294.299993896 294.299993896 292.499993896 294.300012207 296.100012207 296.100012207 294.300012207 296.1 297.9 297.9 296.1 297.899987793 299.699987793 299.699987793 297.899987793 299.700006104 301.500006104 301.500006104 299.700006104 301.499993896 303.299993896 303.299993896 301.499993896 303.300012207 305.100012207 305.100012207 303.300012207 305.1 306.9 306.9 305.1 306.899987793 308.699987793 308.699987793 306.899987793 308.700006104 310.500006104 310.500006104 308.700006104 310.499993896 312.299993896 312.299993896 310.499993896 312.300012207 314.100012207 314.100012207 312.300012207 314.1 315.9 315.9 314.1 315.899987793 317.699987793 317.699987793 315.899987793 317.700006104 319.500006104 319.500006104 317.700006104 319.499993896 321.299993896 321.299993896 319.499993896 321.300012207 323.100012207 323.100012207 321.300012207 323.1 324.9 324.9 323.1 324.899987793 326.699987793 326.699987793 324.899987793 326.700006104 328.500006104 328.500006104 326.700006104 328.499993896 330.299993896 330.299993896 328.499993896 330.300012207 332.100012207 332.100012207 330.300012207 332.1 333.9 333.9 332.1 333.899987793 335.699987793 335.699987793 333.899987793 335.700006104 337.500006104 337.500006104 335.700006104 337.499993896 339.299993896 339.299993896 337.499993896 339.300012207 341.100012207 341.100012207 339.300012207 341.1 342.9 342.9 341.1 342.899987793 344.699987793 344.699987793 342.899987793 344.700006104 346.500006104 346.500006104 344.700006104 346.499993896 348.299993896 348.299993896 346.499993896 348.300012207 350.100012207 350.100012207 348.300012207 350.1 351.9 351.9 350.1 351.899987793 353.699987793 353.699987793 351.899987793 353.700006104 355.500006104 355.500006104 353.700006104 355.499993896 357.299993896 357.299993896 355.499993896 357.300012207 359.100012207 359.100012207 357.300012207 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 +37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.8 0.8 0.8 -0.8 0.800000023842 2.40000002384 2.40000002384 0.800000023842 2.40000004768 4.00000004768 4.00000004768 2.40000004768 4.00000019073 5.60000019073 5.60000019073 4.00000019073 5.60000009537 7.20000009537 7.20000009537 5.60000009537 7.2 8.8 8.8 7.2 8.80000038147 10.4000003815 10.4000003815 8.80000038147 10.3999998093 11.9999998093 11.9999998093 10.3999998093 12.0000001907 13.6000001907 13.6000001907 12.0000001907 13.5999996185 15.1999996185 15.1999996185 13.5999996185 15.2 16.8 16.8 15.2 16.8000003815 18.4000003815 18.4000003815 16.8000003815 18.4000007629 20.0000007629 20.0000007629 18.4000007629 19.9999992371 21.5999992371 21.5999992371 19.9999992371 21.5999996185 23.1999996185 23.1999996185 21.5999996185 23.2 24.8 24.8 23.2 24.8000003815 26.4000003815 26.4000003815 24.8000003815 26.4000007629 28.0000007629 28.0000007629 26.4000007629 27.9999992371 29.5999992371 29.5999992371 27.9999992371 29.5999996185 31.1999996185 31.1999996185 29.5999996185 31.2 32.8 32.8 31.2 32.7999984741 34.3999984741 34.3999984741 32.7999984741 34.4000007629 36.0000007629 36.0000007629 34.4000007629 35.9999992371 37.5999992371 37.5999992371 35.9999992371 37.6000015259 39.2000015259 39.2000015259 37.6000015259 39.2 40.8 40.8 39.2 40.7999984741 42.3999984741 42.3999984741 40.7999984741 42.4000007629 44.0000007629 44.0000007629 42.4000007629 43.9999992371 45.5999992371 45.5999992371 43.9999992371 45.6000015259 47.2000015259 47.2000015259 45.6000015259 47.2 48.8 48.8 47.2 48.7999984741 50.3999984741 50.3999984741 48.7999984741 50.4000007629 52.0000007629 52.0000007629 50.4000007629 51.9999992371 53.5999992371 53.5999992371 51.9999992371 53.6000015259 55.2000015259 55.2000015259 53.6000015259 55.2 56.8 56.8 55.2 56.7999984741 58.3999984741 58.3999984741 56.7999984741 58.4000007629 60.0000007629 60.0000007629 58.4000007629 59.9999992371 61.5999992371 61.5999992371 59.9999992371 61.6000015259 63.2000015259 63.2000015259 61.6000015259 63.2 64.8 64.8 63.2 64.7999984741 66.3999984741 66.3999984741 64.7999984741 66.3999969482 67.9999969482 67.9999969482 66.3999969482 68.0000030518 69.6000030518 69.6000030518 68.0000030518 69.6000015259 71.2000015259 71.2000015259 69.6000015259 71.2 72.8 72.8 71.2 72.7999984741 74.3999984741 74.3999984741 72.7999984741 74.3999969482 75.9999969482 75.9999969482 74.3999969482 76.0000030518 77.6000030518 77.6000030518 76.0000030518 77.6000015259 79.2000015259 79.2000015259 77.6000015259 79.2 80.8 80.8 79.2 80.7999984741 82.3999984741 82.3999984741 80.7999984741 82.3999969482 83.9999969482 83.9999969482 82.3999969482 84.0000030518 85.6000030518 85.6000030518 84.0000030518 85.6000015259 87.2000015259 87.2000015259 85.6000015259 87.2 88.8 88.8 87.2 88.7999984741 90.3999984741 90.3999984741 88.7999984741 90.3999969482 91.9999969482 91.9999969482 90.3999969482 92.0000030518 93.6000030518 93.6000030518 92.0000030518 93.6000015259 95.2000015259 95.2000015259 93.6000015259 95.2 96.8 96.8 95.2 96.7999984741 98.3999984741 98.3999984741 96.7999984741 98.3999969482 99.9999969482 99.9999969482 98.3999969482 100.000003052 101.600003052 101.600003052 100.000003052 101.600001526 103.200001526 103.200001526 101.600001526 103.2 104.8 104.8 103.2 104.799998474 106.399998474 106.399998474 104.799998474 106.399996948 107.999996948 107.999996948 106.399996948 108.000003052 109.600003052 109.600003052 108.000003052 109.600001526 111.200001526 111.200001526 109.600001526 111.2 112.8 112.8 111.2 112.799998474 114.399998474 114.399998474 112.799998474 114.399996948 115.999996948 115.999996948 114.399996948 116.000003052 117.600003052 117.600003052 116.000003052 117.600001526 119.200001526 119.200001526 117.600001526 119.2 120.8 120.8 119.2 120.799998474 122.399998474 122.399998474 120.799998474 122.399996948 123.999996948 123.999996948 122.399996948 124.000003052 125.600003052 125.600003052 124.000003052 125.600001526 127.200001526 127.200001526 125.600001526 127.2 128.8 128.8 127.2 128.800006104 130.400006104 130.400006104 128.800006104 130.399996948 131.999996948 131.999996948 130.399996948 132.000003052 133.600003052 133.600003052 132.000003052 133.599993896 135.199993896 135.199993896 133.599993896 135.2 136.8 136.8 135.2 136.800006104 138.400006104 138.400006104 136.800006104 138.399996948 139.999996948 139.999996948 138.399996948 140.000003052 141.600003052 141.600003052 140.000003052 141.599993896 143.199993896 143.199993896 141.599993896 143.2 144.8 144.8 143.2 144.800006104 146.400006104 146.400006104 144.800006104 146.399996948 147.999996948 147.999996948 146.399996948 148.000003052 149.600003052 149.600003052 148.000003052 149.599993896 151.199993896 151.199993896 149.599993896 151.2 152.8 152.8 151.2 152.800006104 154.400006104 154.400006104 152.800006104 154.399996948 155.999996948 155.999996948 154.399996948 156.000003052 157.600003052 157.600003052 156.000003052 157.599993896 159.199993896 159.199993896 157.599993896 159.2 160.8 160.8 159.2 160.800006104 162.400006104 162.400006104 160.800006104 162.399996948 163.999996948 163.999996948 162.399996948 164.000003052 165.600003052 165.600003052 164.000003052 165.599993896 167.199993896 167.199993896 165.599993896 167.2 168.8 168.8 167.2 168.800006104 170.400006104 170.400006104 168.800006104 170.399996948 171.999996948 171.999996948 170.399996948 172.000003052 173.600003052 173.600003052 172.000003052 173.599993896 175.199993896 175.199993896 173.599993896 175.2 176.8 176.8 175.2 176.800006104 178.400006104 178.400006104 176.800006104 178.399996948 179.999996948 179.999996948 178.399996948 180.000003052 181.600003052 181.600003052 180.000003052 181.599993896 183.199993896 183.199993896 181.599993896 183.2 184.8 184.8 183.2 184.800006104 186.400006104 186.400006104 184.800006104 186.399996948 187.999996948 187.999996948 186.399996948 188.000003052 189.600003052 189.600003052 188.000003052 189.599993896 191.199993896 191.199993896 189.599993896 191.2 192.8 192.8 191.2 192.800006104 194.400006104 194.400006104 192.800006104 194.399996948 195.999996948 195.999996948 194.399996948 196.000003052 197.600003052 197.600003052 196.000003052 197.599993896 199.199993896 199.199993896 197.599993896 199.2 200.8 200.8 199.2 200.800006104 202.400006104 202.400006104 200.800006104 202.399996948 203.999996948 203.999996948 202.399996948 204.000003052 205.600003052 205.600003052 204.000003052 205.599993896 207.199993896 207.199993896 205.599993896 207.2 208.8 208.8 207.2 208.800006104 210.400006104 210.400006104 208.800006104 210.399996948 211.999996948 211.999996948 210.399996948 212.000003052 213.600003052 213.600003052 212.000003052 213.599993896 215.199993896 215.199993896 213.599993896 215.2 216.8 216.8 215.2 216.800006104 218.400006104 218.400006104 216.800006104 218.399996948 219.999996948 219.999996948 218.399996948 220.000003052 221.600003052 221.600003052 220.000003052 221.599993896 223.199993896 223.199993896 221.599993896 223.2 224.8 224.8 223.2 224.800006104 226.400006104 226.400006104 224.800006104 226.399996948 227.999996948 227.999996948 226.399996948 228.000003052 229.600003052 229.600003052 228.000003052 229.599993896 231.199993896 231.199993896 229.599993896 231.2 232.8 232.8 231.2 232.800006104 234.400006104 234.400006104 232.800006104 234.399996948 235.999996948 235.999996948 234.399996948 236.000003052 237.600003052 237.600003052 236.000003052 237.599993896 239.199993896 239.199993896 237.599993896 239.2 240.8 240.8 239.2 240.800006104 242.400006104 242.400006104 240.800006104 242.399996948 243.999996948 243.999996948 242.399996948 244.000003052 245.600003052 245.600003052 244.000003052 245.599993896 247.199993896 247.199993896 245.599993896 247.2 248.8 248.8 247.2 248.800006104 250.400006104 250.400006104 248.800006104 250.399996948 251.999996948 251.999996948 250.399996948 252.000003052 253.600003052 253.600003052 252.000003052 253.599993896 255.199993896 255.199993896 253.599993896 255.2 256.8 256.8 255.2 256.800006104 258.400006104 258.400006104 256.800006104 258.400012207 260.000012207 260.000012207 258.400012207 259.999987793 261.599987793 261.599987793 259.999987793 261.599993896 263.199993896 263.199993896 261.599993896 263.2 264.8 264.8 263.2 264.800006104 266.400006104 266.400006104 264.800006104 266.400012207 268.000012207 268.000012207 266.400012207 267.999987793 269.599987793 269.599987793 267.999987793 269.599993896 271.199993896 271.199993896 269.599993896 271.2 272.8 272.8 271.2 272.800006104 274.400006104 274.400006104 272.800006104 274.400012207 276.000012207 276.000012207 274.400012207 275.999987793 277.599987793 277.599987793 275.999987793 277.599993896 279.199993896 279.199993896 277.599993896 279.2 280.8 280.8 279.2 280.800006104 282.400006104 282.400006104 280.800006104 282.400012207 284.000012207 284.000012207 282.400012207 283.999987793 285.599987793 285.599987793 283.999987793 285.599993896 287.199993896 287.199993896 285.599993896 287.2 288.8 288.8 287.2 288.800006104 290.400006104 290.400006104 288.800006104 290.400012207 292.000012207 292.000012207 290.400012207 291.999987793 293.599987793 293.599987793 291.999987793 293.599993896 295.199993896 295.199993896 293.599993896 295.2 296.8 296.8 295.2 296.800006104 298.400006104 298.400006104 296.800006104 298.400012207 300.000012207 300.000012207 298.400012207 299.999987793 301.599987793 301.599987793 299.999987793 301.599993896 303.199993896 303.199993896 301.599993896 303.2 304.8 304.8 303.2 304.800006104 306.400006104 306.400006104 304.800006104 306.400012207 308.000012207 308.000012207 306.400012207 307.999987793 309.599987793 309.599987793 307.999987793 309.599993896 311.199993896 311.199993896 309.599993896 311.2 312.8 312.8 311.2 312.800006104 314.400006104 314.400006104 312.800006104 314.400012207 316.000012207 316.000012207 314.400012207 315.999987793 317.599987793 317.599987793 315.999987793 317.599993896 319.199993896 319.199993896 317.599993896 319.2 320.8 320.8 319.2 320.800006104 322.400006104 322.400006104 320.800006104 322.400012207 324.000012207 324.000012207 322.400012207 323.999987793 325.599987793 325.599987793 323.999987793 325.599993896 327.199993896 327.199993896 325.599993896 327.2 328.8 328.8 327.2 328.800006104 330.400006104 330.400006104 328.800006104 330.400012207 332.000012207 332.000012207 330.400012207 331.999987793 333.599987793 333.599987793 331.999987793 333.599993896 335.199993896 335.199993896 333.599993896 335.2 336.8 336.8 335.2 336.800006104 338.400006104 338.400006104 336.800006104 338.400012207 340.000012207 340.000012207 338.400012207 339.999987793 341.599987793 341.599987793 339.999987793 341.599993896 343.199993896 343.199993896 341.599993896 343.2 344.8 344.8 343.2 344.800006104 346.400006104 346.400006104 344.800006104 346.400012207 348.000012207 348.000012207 346.400012207 347.999987793 349.599987793 349.599987793 347.999987793 349.599993896 351.199993896 351.199993896 349.599993896 351.2 352.8 352.8 351.2 352.800006104 354.400006104 354.400006104 352.800006104 354.400012207 356.000012207 356.000012207 354.400012207 355.999987793 357.599987793 357.599987793 355.999987793 357.599993896 359.199993896 359.199993896 357.599993896 -0.8 0.8 0.8 -0.8 0.800000023842 2.40000002384 2.40000002384 0.800000023842 2.40000004768 4.00000004768 4.00000004768 2.40000004768 4.00000019073 5.60000019073 5.60000019073 4.00000019073 5.60000009537 7.20000009537 7.20000009537 5.60000009537 7.2 8.8 8.8 7.2 8.80000038147 10.4000003815 10.4000003815 8.80000038147 10.3999998093 11.9999998093 11.9999998093 10.3999998093 12.0000001907 13.6000001907 13.6000001907 12.0000001907 13.5999996185 15.1999996185 15.1999996185 13.5999996185 15.2 16.8 16.8 15.2 16.8000003815 18.4000003815 18.4000003815 16.8000003815 18.4000007629 20.0000007629 20.0000007629 18.4000007629 19.9999992371 21.5999992371 21.5999992371 19.9999992371 21.5999996185 23.1999996185 23.1999996185 21.5999996185 23.2 24.8 24.8 23.2 24.8000003815 26.4000003815 26.4000003815 24.8000003815 26.4000007629 28.0000007629 28.0000007629 26.4000007629 27.9999992371 29.5999992371 29.5999992371 27.9999992371 29.5999996185 31.1999996185 31.1999996185 29.5999996185 31.2 32.8 32.8 31.2 32.7999984741 34.3999984741 34.3999984741 32.7999984741 34.4000007629 36.0000007629 36.0000007629 34.4000007629 35.9999992371 37.5999992371 37.5999992371 35.9999992371 37.6000015259 39.2000015259 39.2000015259 37.6000015259 39.2 40.8 40.8 39.2 40.7999984741 42.3999984741 42.3999984741 40.7999984741 42.4000007629 44.0000007629 44.0000007629 42.4000007629 43.9999992371 45.5999992371 45.5999992371 43.9999992371 45.6000015259 47.2000015259 47.2000015259 45.6000015259 47.2 48.8 48.8 47.2 48.7999984741 50.3999984741 50.3999984741 48.7999984741 50.4000007629 52.0000007629 52.0000007629 50.4000007629 51.9999992371 53.5999992371 53.5999992371 51.9999992371 53.6000015259 55.2000015259 55.2000015259 53.6000015259 55.2 56.8 56.8 55.2 56.7999984741 58.3999984741 58.3999984741 56.7999984741 58.4000007629 60.0000007629 60.0000007629 58.4000007629 59.9999992371 61.5999992371 61.5999992371 59.9999992371 61.6000015259 63.2000015259 63.2000015259 61.6000015259 63.2 64.8 64.8 63.2 64.7999984741 66.3999984741 66.3999984741 64.7999984741 66.3999969482 67.9999969482 67.9999969482 66.3999969482 68.0000030518 69.6000030518 69.6000030518 68.0000030518 69.6000015259 71.2000015259 71.2000015259 69.6000015259 71.2 72.8 72.8 71.2 72.7999984741 74.3999984741 74.3999984741 72.7999984741 74.3999969482 75.9999969482 75.9999969482 74.3999969482 76.0000030518 77.6000030518 77.6000030518 76.0000030518 77.6000015259 79.2000015259 79.2000015259 77.6000015259 79.2 80.8 80.8 79.2 80.7999984741 82.3999984741 82.3999984741 80.7999984741 82.3999969482 83.9999969482 83.9999969482 82.3999969482 84.0000030518 85.6000030518 85.6000030518 84.0000030518 85.6000015259 87.2000015259 87.2000015259 85.6000015259 87.2 88.8 88.8 87.2 88.7999984741 90.3999984741 90.3999984741 88.7999984741 90.3999969482 91.9999969482 91.9999969482 90.3999969482 92.0000030518 93.6000030518 93.6000030518 92.0000030518 93.6000015259 95.2000015259 95.2000015259 93.6000015259 95.2 96.8 96.8 95.2 96.7999984741 98.3999984741 98.3999984741 96.7999984741 98.3999969482 99.9999969482 99.9999969482 98.3999969482 100.000003052 101.600003052 101.600003052 100.000003052 101.600001526 103.200001526 103.200001526 101.600001526 103.2 104.8 104.8 103.2 104.799998474 106.399998474 106.399998474 104.799998474 106.399996948 107.999996948 107.999996948 106.399996948 108.000003052 109.600003052 109.600003052 108.000003052 109.600001526 111.200001526 111.200001526 109.600001526 111.2 112.8 112.8 111.2 112.799998474 114.399998474 114.399998474 112.799998474 114.399996948 115.999996948 115.999996948 114.399996948 116.000003052 117.600003052 117.600003052 116.000003052 117.600001526 119.200001526 119.200001526 117.600001526 119.2 120.8 120.8 119.2 120.799998474 122.399998474 122.399998474 120.799998474 122.399996948 123.999996948 123.999996948 122.399996948 124.000003052 125.600003052 125.600003052 124.000003052 125.600001526 127.200001526 127.200001526 125.600001526 127.2 128.8 128.8 127.2 128.800006104 130.400006104 130.400006104 128.800006104 +130.399996948 131.999996948 131.999996948 130.399996948 132.000003052 133.600003052 133.600003052 132.000003052 133.599993896 135.199993896 135.199993896 133.599993896 135.2 136.8 136.8 135.2 136.800006104 138.400006104 138.400006104 136.800006104 138.399996948 139.999996948 139.999996948 138.399996948 140.000003052 141.600003052 141.600003052 140.000003052 141.599993896 143.199993896 143.199993896 141.599993896 143.2 144.8 144.8 143.2 144.800006104 146.400006104 146.400006104 144.800006104 146.399996948 147.999996948 147.999996948 146.399996948 148.000003052 149.600003052 149.600003052 148.000003052 149.599993896 151.199993896 151.199993896 149.599993896 151.2 152.8 152.8 151.2 152.800006104 154.400006104 154.400006104 152.800006104 154.399996948 155.999996948 155.999996948 154.399996948 156.000003052 157.600003052 157.600003052 156.000003052 157.599993896 159.199993896 159.199993896 157.599993896 159.2 160.8 160.8 159.2 160.800006104 162.400006104 162.400006104 160.800006104 162.399996948 163.999996948 163.999996948 162.399996948 164.000003052 165.600003052 165.600003052 164.000003052 165.599993896 167.199993896 167.199993896 165.599993896 167.2 168.8 168.8 167.2 168.800006104 170.400006104 170.400006104 168.800006104 170.399996948 171.999996948 171.999996948 170.399996948 172.000003052 173.600003052 173.600003052 172.000003052 173.599993896 175.199993896 175.199993896 173.599993896 175.2 176.8 176.8 175.2 176.800006104 178.400006104 178.400006104 176.800006104 178.399996948 179.999996948 179.999996948 178.399996948 180.000003052 181.600003052 181.600003052 180.000003052 181.599993896 183.199993896 183.199993896 181.599993896 183.2 184.8 184.8 183.2 184.800006104 186.400006104 186.400006104 184.800006104 186.399996948 187.999996948 187.999996948 186.399996948 188.000003052 189.600003052 189.600003052 188.000003052 189.599993896 191.199993896 191.199993896 189.599993896 191.2 192.8 192.8 191.2 192.800006104 194.400006104 194.400006104 192.800006104 194.399996948 195.999996948 195.999996948 194.399996948 196.000003052 197.600003052 197.600003052 196.000003052 197.599993896 199.199993896 199.199993896 197.599993896 199.2 200.8 200.8 199.2 200.800006104 202.400006104 202.400006104 200.800006104 202.399996948 203.999996948 203.999996948 202.399996948 204.000003052 205.600003052 205.600003052 204.000003052 205.599993896 207.199993896 207.199993896 205.599993896 207.2 208.8 208.8 207.2 208.800006104 210.400006104 210.400006104 208.800006104 210.399996948 211.999996948 211.999996948 210.399996948 212.000003052 213.600003052 213.600003052 212.000003052 213.599993896 215.199993896 215.199993896 213.599993896 215.2 216.8 216.8 215.2 216.800006104 218.400006104 218.400006104 216.800006104 218.399996948 219.999996948 219.999996948 218.399996948 220.000003052 221.600003052 221.600003052 220.000003052 221.599993896 223.199993896 223.199993896 221.599993896 223.2 224.8 224.8 223.2 224.800006104 226.400006104 226.400006104 224.800006104 226.399996948 227.999996948 227.999996948 226.399996948 228.000003052 229.600003052 229.600003052 228.000003052 229.599993896 231.199993896 231.199993896 229.599993896 231.2 232.8 232.8 231.2 232.800006104 234.400006104 234.400006104 232.800006104 234.399996948 235.999996948 235.999996948 234.399996948 236.000003052 237.600003052 237.600003052 236.000003052 237.599993896 239.199993896 239.199993896 237.599993896 239.2 240.8 240.8 239.2 240.800006104 242.400006104 242.400006104 240.800006104 242.399996948 243.999996948 243.999996948 242.399996948 244.000003052 245.600003052 245.600003052 244.000003052 245.599993896 247.199993896 247.199993896 245.599993896 247.2 248.8 248.8 247.2 248.800006104 250.400006104 250.400006104 248.800006104 250.399996948 251.999996948 251.999996948 250.399996948 252.000003052 253.600003052 253.600003052 252.000003052 253.599993896 255.199993896 255.199993896 253.599993896 255.2 256.8 256.8 255.2 256.800006104 258.400006104 258.400006104 256.800006104 258.400012207 260.000012207 260.000012207 258.400012207 259.999987793 261.599987793 261.599987793 259.999987793 261.599993896 263.199993896 263.199993896 261.599993896 263.2 264.8 264.8 263.2 264.800006104 266.400006104 266.400006104 264.800006104 266.400012207 268.000012207 268.000012207 266.400012207 267.999987793 269.599987793 269.599987793 267.999987793 269.599993896 271.199993896 271.199993896 269.599993896 271.2 272.8 272.8 271.2 272.800006104 274.400006104 274.400006104 272.800006104 274.400012207 276.000012207 276.000012207 274.400012207 275.999987793 277.599987793 277.599987793 275.999987793 277.599993896 279.199993896 279.199993896 277.599993896 279.2 280.8 280.8 279.2 280.800006104 282.400006104 282.400006104 280.800006104 282.400012207 284.000012207 284.000012207 282.400012207 283.999987793 285.599987793 285.599987793 283.999987793 285.599993896 287.199993896 287.199993896 285.599993896 287.2 288.8 288.8 287.2 288.800006104 290.400006104 290.400006104 288.800006104 290.400012207 292.000012207 292.000012207 290.400012207 291.999987793 293.599987793 293.599987793 291.999987793 293.599993896 295.199993896 295.199993896 293.599993896 295.2 296.8 296.8 295.2 296.800006104 298.400006104 298.400006104 296.800006104 298.400012207 300.000012207 300.000012207 298.400012207 299.999987793 301.599987793 301.599987793 299.999987793 301.599993896 303.199993896 303.199993896 301.599993896 303.2 304.8 304.8 303.2 304.800006104 306.400006104 306.400006104 304.800006104 306.400012207 308.000012207 308.000012207 306.400012207 307.999987793 309.599987793 309.599987793 307.999987793 309.599993896 311.199993896 311.199993896 309.599993896 311.2 312.8 312.8 311.2 312.800006104 314.400006104 314.400006104 312.800006104 314.400012207 316.000012207 316.000012207 314.400012207 315.999987793 317.599987793 317.599987793 315.999987793 317.599993896 319.199993896 319.199993896 317.599993896 319.2 320.8 320.8 319.2 320.800006104 322.400006104 322.400006104 320.800006104 322.400012207 324.000012207 324.000012207 322.400012207 323.999987793 325.599987793 325.599987793 323.999987793 325.599993896 327.199993896 327.199993896 325.599993896 327.2 328.8 328.8 327.2 328.800006104 330.400006104 330.400006104 328.800006104 330.400012207 332.000012207 332.000012207 330.400012207 331.999987793 333.599987793 333.599987793 331.999987793 333.599993896 335.199993896 335.199993896 333.599993896 335.2 336.8 336.8 335.2 336.800006104 338.400006104 338.400006104 336.800006104 338.400012207 340.000012207 340.000012207 338.400012207 339.999987793 341.599987793 341.599987793 339.999987793 341.599993896 343.199993896 343.199993896 341.599993896 343.2 344.8 344.8 343.2 344.800006104 346.400006104 346.400006104 344.800006104 346.400012207 348.000012207 348.000012207 346.400012207 347.999987793 349.599987793 349.599987793 347.999987793 349.599993896 351.199993896 351.199993896 349.599993896 351.2 352.8 352.8 351.2 352.800006104 354.400006104 354.400006104 352.800006104 354.400012207 356.000012207 356.000012207 354.400012207 355.999987793 357.599987793 357.599987793 355.999987793 357.599993896 359.199993896 359.199993896 357.599993896 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 +174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 +191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 +175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 +140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 +45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 +310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 +215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 +120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 +24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 +264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 +144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 +0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 +203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 +45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 +248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 +90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 +293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 +135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 +338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 +180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 +23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 +225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 +68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 +270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 +113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 +315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 +158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 +0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 +203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 +45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 +248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 +90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 +293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 +135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 +338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 +180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 +23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 +225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 +68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 +270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 +113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 +315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 +192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 +72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 +325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 +230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 +135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 +40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 +305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 +236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 +220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 +216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 +246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.8 0.8 0.8 -0.8 0.800000023842 2.40000002384 2.40000002384 0.800000023842 2.40000004768 4.00000004768 4.00000004768 2.40000004768 4.00000019073 5.60000019073 5.60000019073 4.00000019073 5.60000009537 7.20000009537 7.20000009537 5.60000009537 7.2 8.8 8.8 7.2 8.80000038147 10.4000003815 10.4000003815 8.80000038147 10.3999998093 11.9999998093 11.9999998093 10.3999998093 12.0000001907 13.6000001907 13.6000001907 12.0000001907 13.5999996185 15.1999996185 15.1999996185 13.5999996185 15.2 16.8 16.8 15.2 16.8000003815 18.4000003815 18.4000003815 16.8000003815 18.4000007629 20.0000007629 20.0000007629 18.4000007629 19.9999992371 21.5999992371 21.5999992371 19.9999992371 21.5999996185 23.1999996185 23.1999996185 21.5999996185 23.2 24.8 24.8 23.2 24.8000003815 26.4000003815 26.4000003815 24.8000003815 26.4000007629 28.0000007629 28.0000007629 26.4000007629 27.9999992371 29.5999992371 29.5999992371 27.9999992371 29.5999996185 31.1999996185 31.1999996185 29.5999996185 31.2 32.8 32.8 31.2 32.7999984741 34.3999984741 34.3999984741 32.7999984741 34.4000007629 36.0000007629 36.0000007629 34.4000007629 35.9999992371 37.5999992371 37.5999992371 35.9999992371 37.6000015259 39.2000015259 39.2000015259 37.6000015259 39.2 40.8 40.8 39.2 40.7999984741 42.3999984741 42.3999984741 40.7999984741 42.4000007629 44.0000007629 44.0000007629 42.4000007629 43.9999992371 45.5999992371 45.5999992371 43.9999992371 45.6000015259 47.2000015259 47.2000015259 45.6000015259 47.2 48.8 48.8 47.2 48.7999984741 50.3999984741 50.3999984741 48.7999984741 50.4000007629 52.0000007629 52.0000007629 50.4000007629 51.9999992371 53.5999992371 53.5999992371 51.9999992371 53.6000015259 55.2000015259 55.2000015259 53.6000015259 55.2 56.8 56.8 55.2 56.7999984741 58.3999984741 58.3999984741 56.7999984741 58.4000007629 60.0000007629 60.0000007629 58.4000007629 59.9999992371 61.5999992371 61.5999992371 59.9999992371 61.6000015259 63.2000015259 63.2000015259 61.6000015259 63.2 64.8 64.8 63.2 64.7999984741 66.3999984741 66.3999984741 64.7999984741 66.3999969482 67.9999969482 67.9999969482 66.3999969482 68.0000030518 69.6000030518 69.6000030518 68.0000030518 69.6000015259 71.2000015259 71.2000015259 69.6000015259 71.2 72.8 72.8 71.2 72.7999984741 74.3999984741 74.3999984741 72.7999984741 74.3999969482 75.9999969482 75.9999969482 74.3999969482 76.0000030518 77.6000030518 77.6000030518 76.0000030518 77.6000015259 79.2000015259 79.2000015259 77.6000015259 79.2 80.8 80.8 79.2 80.7999984741 82.3999984741 82.3999984741 80.7999984741 82.3999969482 83.9999969482 83.9999969482 82.3999969482 84.0000030518 85.6000030518 85.6000030518 84.0000030518 85.6000015259 87.2000015259 87.2000015259 85.6000015259 87.2 88.8 88.8 87.2 88.7999984741 90.3999984741 90.3999984741 88.7999984741 90.3999969482 91.9999969482 91.9999969482 90.3999969482 92.0000030518 93.6000030518 93.6000030518 92.0000030518 93.6000015259 95.2000015259 95.2000015259 93.6000015259 95.2 96.8 96.8 95.2 96.7999984741 98.3999984741 98.3999984741 96.7999984741 98.3999969482 99.9999969482 99.9999969482 98.3999969482 100.000003052 101.600003052 101.600003052 100.000003052 101.600001526 103.200001526 103.200001526 101.600001526 103.2 104.8 104.8 103.2 104.799998474 106.399998474 106.399998474 104.799998474 106.399996948 107.999996948 107.999996948 106.399996948 108.000003052 109.600003052 109.600003052 108.000003052 109.600001526 111.200001526 111.200001526 109.600001526 111.2 112.8 112.8 111.2 112.799998474 114.399998474 114.399998474 112.799998474 114.399996948 115.999996948 115.999996948 114.399996948 116.000003052 117.600003052 117.600003052 116.000003052 117.600001526 119.200001526 119.200001526 117.600001526 119.2 120.8 120.8 119.2 120.799998474 122.399998474 122.399998474 120.799998474 122.399996948 123.999996948 123.999996948 122.399996948 124.000003052 125.600003052 125.600003052 124.000003052 125.600001526 127.200001526 127.200001526 125.600001526 127.2 128.8 128.8 127.2 128.800006104 130.400006104 130.400006104 128.800006104 130.399996948 131.999996948 131.999996948 130.399996948 132.000003052 133.600003052 133.600003052 132.000003052 133.599993896 135.199993896 135.199993896 133.599993896 135.2 136.8 136.8 135.2 136.800006104 138.400006104 138.400006104 136.800006104 138.399996948 139.999996948 139.999996948 138.399996948 140.000003052 141.600003052 141.600003052 140.000003052 141.599993896 143.199993896 143.199993896 141.599993896 143.2 144.8 144.8 143.2 144.800006104 146.400006104 146.400006104 144.800006104 146.399996948 147.999996948 147.999996948 146.399996948 148.000003052 149.600003052 149.600003052 148.000003052 149.599993896 151.199993896 151.199993896 149.599993896 151.2 152.8 152.8 151.2 152.800006104 154.400006104 154.400006104 152.800006104 154.399996948 155.999996948 155.999996948 154.399996948 156.000003052 157.600003052 157.600003052 156.000003052 157.599993896 159.199993896 159.199993896 157.599993896 159.2 160.8 160.8 159.2 160.800006104 162.400006104 162.400006104 160.800006104 162.399996948 163.999996948 163.999996948 162.399996948 164.000003052 165.600003052 165.600003052 164.000003052 165.599993896 167.199993896 167.199993896 165.599993896 167.2 168.8 168.8 167.2 168.800006104 170.400006104 170.400006104 168.800006104 170.399996948 171.999996948 171.999996948 170.399996948 172.000003052 173.600003052 173.600003052 172.000003052 173.599993896 175.199993896 175.199993896 173.599993896 175.2 176.8 176.8 175.2 176.800006104 178.400006104 178.400006104 176.800006104 178.399996948 179.999996948 179.999996948 178.399996948 180.000003052 181.600003052 181.600003052 180.000003052 181.599993896 183.199993896 183.199993896 181.599993896 183.2 184.8 184.8 183.2 184.800006104 186.400006104 186.400006104 184.800006104 186.399996948 187.999996948 187.999996948 186.399996948 188.000003052 189.600003052 189.600003052 188.000003052 189.599993896 191.199993896 191.199993896 189.599993896 191.2 192.8 192.8 191.2 192.800006104 194.400006104 194.400006104 192.800006104 194.399996948 195.999996948 195.999996948 194.399996948 196.000003052 197.600003052 197.600003052 196.000003052 197.599993896 199.199993896 199.199993896 197.599993896 199.2 200.8 200.8 199.2 200.800006104 202.400006104 202.400006104 200.800006104 202.399996948 203.999996948 203.999996948 202.399996948 204.000003052 205.600003052 205.600003052 204.000003052 205.599993896 207.199993896 207.199993896 205.599993896 207.2 208.8 208.8 207.2 208.800006104 210.400006104 210.400006104 208.800006104 210.399996948 211.999996948 211.999996948 210.399996948 212.000003052 213.600003052 213.600003052 212.000003052 213.599993896 215.199993896 215.199993896 213.599993896 215.2 216.8 216.8 215.2 216.800006104 218.400006104 218.400006104 216.800006104 218.399996948 219.999996948 219.999996948 218.399996948 220.000003052 221.600003052 221.600003052 220.000003052 221.599993896 223.199993896 223.199993896 221.599993896 223.2 224.8 224.8 223.2 224.800006104 226.400006104 226.400006104 224.800006104 226.399996948 227.999996948 227.999996948 226.399996948 228.000003052 229.600003052 229.600003052 228.000003052 229.599993896 231.199993896 231.199993896 229.599993896 231.2 232.8 232.8 231.2 232.800006104 234.400006104 234.400006104 232.800006104 234.399996948 235.999996948 235.999996948 234.399996948 236.000003052 237.600003052 237.600003052 236.000003052 237.599993896 239.199993896 239.199993896 237.599993896 239.2 240.8 240.8 239.2 240.800006104 242.400006104 242.400006104 240.800006104 242.399996948 243.999996948 243.999996948 242.399996948 244.000003052 245.600003052 245.600003052 244.000003052 245.599993896 247.199993896 247.199993896 245.599993896 247.2 248.8 248.8 247.2 248.800006104 250.400006104 250.400006104 248.800006104 250.399996948 251.999996948 251.999996948 250.399996948 252.000003052 253.600003052 253.600003052 252.000003052 253.599993896 255.199993896 255.199993896 253.599993896 255.2 256.8 256.8 255.2 256.800006104 258.400006104 258.400006104 256.800006104 258.400012207 260.000012207 260.000012207 258.400012207 259.999987793 261.599987793 261.599987793 259.999987793 261.599993896 263.199993896 263.199993896 261.599993896 263.2 264.8 264.8 263.2 264.800006104 266.400006104 266.400006104 264.800006104 266.400012207 268.000012207 268.000012207 266.400012207 267.999987793 269.599987793 269.599987793 267.999987793 269.599993896 271.199993896 271.199993896 269.599993896 271.2 272.8 272.8 271.2 272.800006104 274.400006104 274.400006104 272.800006104 274.400012207 276.000012207 276.000012207 274.400012207 275.999987793 277.599987793 277.599987793 275.999987793 277.599993896 279.199993896 279.199993896 277.599993896 279.2 280.8 280.8 279.2 280.800006104 282.400006104 282.400006104 280.800006104 282.400012207 284.000012207 284.000012207 282.400012207 283.999987793 285.599987793 285.599987793 283.999987793 285.599993896 287.199993896 287.199993896 285.599993896 287.2 288.8 288.8 287.2 288.800006104 290.400006104 290.400006104 288.800006104 290.400012207 292.000012207 292.000012207 290.400012207 291.999987793 293.599987793 293.599987793 291.999987793 293.599993896 295.199993896 295.199993896 293.599993896 295.2 296.8 296.8 295.2 296.800006104 298.400006104 298.400006104 296.800006104 298.400012207 300.000012207 300.000012207 298.400012207 299.999987793 301.599987793 301.599987793 299.999987793 301.599993896 303.199993896 303.199993896 301.599993896 303.2 304.8 304.8 303.2 304.800006104 306.400006104 306.400006104 304.800006104 306.400012207 308.000012207 308.000012207 306.400012207 307.999987793 309.599987793 309.599987793 307.999987793 309.599993896 311.199993896 311.199993896 309.599993896 311.2 312.8 312.8 311.2 312.800006104 314.400006104 314.400006104 312.800006104 314.400012207 316.000012207 316.000012207 314.400012207 315.999987793 317.599987793 317.599987793 315.999987793 317.599993896 319.199993896 319.199993896 317.599993896 319.2 320.8 320.8 319.2 320.800006104 322.400006104 322.400006104 320.800006104 322.400012207 324.000012207 324.000012207 322.400012207 323.999987793 325.599987793 325.599987793 323.999987793 325.599993896 327.199993896 327.199993896 325.599993896 327.2 328.8 328.8 327.2 328.800006104 330.400006104 330.400006104 328.800006104 330.400012207 332.000012207 332.000012207 330.400012207 331.999987793 333.599987793 333.599987793 331.999987793 333.599993896 335.199993896 335.199993896 333.599993896 335.2 336.8 336.8 335.2 336.800006104 338.400006104 338.400006104 336.800006104 338.400012207 340.000012207 340.000012207 338.400012207 339.999987793 341.599987793 341.599987793 339.999987793 341.599993896 343.199993896 343.199993896 341.599993896 343.2 344.8 344.8 343.2 344.800006104 346.400006104 346.400006104 344.800006104 346.400012207 348.000012207 348.000012207 346.400012207 347.999987793 349.599987793 349.599987793 347.999987793 349.599993896 351.199993896 351.199993896 349.599993896 351.2 352.8 352.8 351.2 352.800006104 354.400006104 354.400006104 352.800006104 354.400012207 356.000012207 356.000012207 354.400012207 355.999987793 357.599987793 357.599987793 355.999987793 357.599993896 359.199993896 359.199993896 357.599993896 -0.8 0.8 0.8 -0.8 0.800000023842 2.40000002384 2.40000002384 0.800000023842 2.40000004768 4.00000004768 4.00000004768 2.40000004768 4.00000019073 5.60000019073 5.60000019073 4.00000019073 5.60000009537 7.20000009537 7.20000009537 5.60000009537 7.2 8.8 8.8 7.2 8.80000038147 10.4000003815 10.4000003815 8.80000038147 10.3999998093 11.9999998093 11.9999998093 10.3999998093 12.0000001907 13.6000001907 13.6000001907 12.0000001907 13.5999996185 15.1999996185 15.1999996185 13.5999996185 15.2 16.8 16.8 15.2 16.8000003815 18.4000003815 18.4000003815 16.8000003815 18.4000007629 20.0000007629 20.0000007629 18.4000007629 19.9999992371 21.5999992371 21.5999992371 19.9999992371 21.5999996185 23.1999996185 23.1999996185 21.5999996185 23.2 24.8 24.8 23.2 24.8000003815 26.4000003815 26.4000003815 24.8000003815 26.4000007629 28.0000007629 28.0000007629 26.4000007629 27.9999992371 29.5999992371 29.5999992371 27.9999992371 29.5999996185 31.1999996185 31.1999996185 29.5999996185 31.2 32.8 32.8 31.2 32.7999984741 34.3999984741 34.3999984741 32.7999984741 34.4000007629 36.0000007629 36.0000007629 34.4000007629 35.9999992371 37.5999992371 37.5999992371 35.9999992371 37.6000015259 39.2000015259 39.2000015259 37.6000015259 39.2 40.8 40.8 39.2 40.7999984741 42.3999984741 42.3999984741 40.7999984741 42.4000007629 44.0000007629 44.0000007629 42.4000007629 43.9999992371 45.5999992371 45.5999992371 43.9999992371 45.6000015259 47.2000015259 47.2000015259 45.6000015259 47.2 48.8 48.8 47.2 48.7999984741 50.3999984741 50.3999984741 48.7999984741 50.4000007629 52.0000007629 52.0000007629 50.4000007629 51.9999992371 53.5999992371 53.5999992371 51.9999992371 53.6000015259 55.2000015259 55.2000015259 53.6000015259 55.2 56.8 56.8 55.2 56.7999984741 58.3999984741 58.3999984741 56.7999984741 58.4000007629 60.0000007629 60.0000007629 58.4000007629 59.9999992371 61.5999992371 61.5999992371 59.9999992371 61.6000015259 63.2000015259 63.2000015259 61.6000015259 63.2 64.8 64.8 63.2 64.7999984741 66.3999984741 66.3999984741 64.7999984741 66.3999969482 67.9999969482 67.9999969482 66.3999969482 68.0000030518 69.6000030518 69.6000030518 68.0000030518 69.6000015259 71.2000015259 71.2000015259 69.6000015259 71.2 72.8 72.8 71.2 72.7999984741 74.3999984741 74.3999984741 72.7999984741 74.3999969482 75.9999969482 75.9999969482 74.3999969482 76.0000030518 77.6000030518 77.6000030518 76.0000030518 77.6000015259 79.2000015259 79.2000015259 77.6000015259 79.2 80.8 80.8 79.2 80.7999984741 82.3999984741 82.3999984741 80.7999984741 82.3999969482 83.9999969482 83.9999969482 82.3999969482 84.0000030518 85.6000030518 85.6000030518 84.0000030518 85.6000015259 87.2000015259 87.2000015259 85.6000015259 87.2 88.8 88.8 87.2 88.7999984741 90.3999984741 90.3999984741 88.7999984741 90.3999969482 91.9999969482 91.9999969482 90.3999969482 92.0000030518 93.6000030518 93.6000030518 92.0000030518 93.6000015259 95.2000015259 95.2000015259 93.6000015259 95.2 96.8 96.8 95.2 96.7999984741 98.3999984741 98.3999984741 96.7999984741 98.3999969482 99.9999969482 99.9999969482 98.3999969482 100.000003052 101.600003052 101.600003052 100.000003052 101.600001526 103.200001526 103.200001526 101.600001526 103.2 104.8 104.8 103.2 104.799998474 106.399998474 106.399998474 104.799998474 106.399996948 107.999996948 107.999996948 106.399996948 108.000003052 109.600003052 109.600003052 108.000003052 109.600001526 111.200001526 111.200001526 109.600001526 111.2 112.8 112.8 111.2 112.799998474 114.399998474 114.399998474 112.799998474 114.399996948 115.999996948 115.999996948 114.399996948 116.000003052 117.600003052 117.600003052 116.000003052 117.600001526 119.200001526 119.200001526 117.600001526 119.2 120.8 120.8 119.2 120.799998474 122.399998474 122.399998474 120.799998474 122.399996948 123.999996948 123.999996948 122.399996948 124.000003052 125.600003052 125.600003052 124.000003052 125.600001526 127.200001526 127.200001526 125.600001526 127.2 128.8 128.8 127.2 128.800006104 130.400006104 130.400006104 128.800006104 130.399996948 131.999996948 131.999996948 130.399996948 132.000003052 133.600003052 133.600003052 132.000003052 133.599993896 135.199993896 135.199993896 133.599993896 135.2 136.8 136.8 135.2 136.800006104 138.400006104 138.400006104 136.800006104 138.399996948 139.999996948 139.999996948 138.399996948 140.000003052 141.600003052 141.600003052 140.000003052 141.599993896 143.199993896 143.199993896 141.599993896 143.2 144.8 144.8 143.2 144.800006104 146.400006104 146.400006104 144.800006104 146.399996948 147.999996948 147.999996948 146.399996948 148.000003052 149.600003052 149.600003052 148.000003052 149.599993896 151.199993896 151.199993896 149.599993896 151.2 152.8 152.8 151.2 152.800006104 154.400006104 154.400006104 152.800006104 154.399996948 155.999996948 155.999996948 154.399996948 156.000003052 157.600003052 157.600003052 156.000003052 157.599993896 159.199993896 159.199993896 157.599993896 159.2 160.8 160.8 159.2 160.800006104 162.400006104 162.400006104 160.800006104 162.399996948 163.999996948 163.999996948 162.399996948 164.000003052 165.600003052 165.600003052 164.000003052 165.599993896 167.199993896 167.199993896 165.599993896 167.2 168.8 168.8 167.2 168.800006104 170.400006104 170.400006104 168.800006104 170.399996948 171.999996948 171.999996948 170.399996948 172.000003052 173.600003052 173.600003052 172.000003052 173.599993896 175.199993896 175.199993896 173.599993896 175.2 176.8 176.8 175.2 176.800006104 178.400006104 178.400006104 176.800006104 178.399996948 179.999996948 179.999996948 178.399996948 180.000003052 181.600003052 181.600003052 180.000003052 181.599993896 183.199993896 183.199993896 181.599993896 183.2 184.8 184.8 183.2 184.800006104 186.400006104 186.400006104 184.800006104 186.399996948 187.999996948 187.999996948 186.399996948 188.000003052 189.600003052 189.600003052 188.000003052 189.599993896 191.199993896 191.199993896 189.599993896 191.2 192.8 192.8 191.2 192.800006104 194.400006104 194.400006104 192.800006104 194.399996948 195.999996948 195.999996948 194.399996948 196.000003052 197.600003052 197.600003052 196.000003052 197.599993896 199.199993896 199.199993896 197.599993896 199.2 200.8 200.8 199.2 200.800006104 202.400006104 202.400006104 200.800006104 202.399996948 203.999996948 203.999996948 202.399996948 204.000003052 205.600003052 205.600003052 204.000003052 205.599993896 207.199993896 207.199993896 205.599993896 207.2 208.8 208.8 207.2 208.800006104 210.400006104 210.400006104 208.800006104 210.399996948 211.999996948 211.999996948 210.399996948 212.000003052 213.600003052 213.600003052 212.000003052 213.599993896 215.199993896 215.199993896 213.599993896 215.2 216.8 216.8 215.2 216.800006104 218.400006104 218.400006104 216.800006104 218.399996948 219.999996948 219.999996948 218.399996948 220.000003052 221.600003052 221.600003052 220.000003052 221.599993896 223.199993896 223.199993896 221.599993896 223.2 224.8 224.8 223.2 224.800006104 226.400006104 226.400006104 224.800006104 226.399996948 227.999996948 227.999996948 226.399996948 228.000003052 229.600003052 229.600003052 228.000003052 229.599993896 231.199993896 231.199993896 229.599993896 231.2 232.8 232.8 231.2 232.800006104 234.400006104 234.400006104 232.800006104 234.399996948 235.999996948 235.999996948 234.399996948 236.000003052 237.600003052 237.600003052 236.000003052 237.599993896 239.199993896 239.199993896 237.599993896 239.2 240.8 240.8 239.2 240.800006104 242.400006104 242.400006104 240.800006104 242.399996948 243.999996948 243.999996948 242.399996948 244.000003052 245.600003052 245.600003052 244.000003052 245.599993896 247.199993896 247.199993896 245.599993896 247.2 248.8 248.8 247.2 248.800006104 250.400006104 250.400006104 248.800006104 250.399996948 251.999996948 251.999996948 250.399996948 252.000003052 253.600003052 253.600003052 252.000003052 253.599993896 255.199993896 255.199993896 253.599993896 255.2 256.8 256.8 255.2 256.800006104 258.400006104 258.400006104 256.800006104 258.400012207 260.000012207 260.000012207 258.400012207 259.999987793 261.599987793 261.599987793 259.999987793 261.599993896 263.199993896 263.199993896 261.599993896 263.2 264.8 264.8 263.2 264.800006104 266.400006104 266.400006104 264.800006104 266.400012207 268.000012207 268.000012207 266.400012207 267.999987793 269.599987793 269.599987793 267.999987793 269.599993896 271.199993896 271.199993896 269.599993896 271.2 272.8 272.8 271.2 272.800006104 274.400006104 274.400006104 272.800006104 274.400012207 276.000012207 276.000012207 274.400012207 275.999987793 277.599987793 277.599987793 275.999987793 277.599993896 279.199993896 279.199993896 277.599993896 279.2 280.8 280.8 279.2 280.800006104 282.400006104 282.400006104 280.800006104 282.400012207 284.000012207 284.000012207 282.400012207 283.999987793 285.599987793 285.599987793 283.999987793 285.599993896 287.199993896 287.199993896 285.599993896 287.2 288.8 288.8 287.2 288.800006104 290.400006104 290.400006104 288.800006104 290.400012207 292.000012207 292.000012207 290.400012207 291.999987793 293.599987793 293.599987793 291.999987793 293.599993896 295.199993896 295.199993896 293.599993896 295.2 296.8 296.8 295.2 296.800006104 298.400006104 298.400006104 296.800006104 298.400012207 300.000012207 300.000012207 298.400012207 299.999987793 301.599987793 301.599987793 299.999987793 301.599993896 303.199993896 303.199993896 301.599993896 303.2 304.8 304.8 303.2 304.800006104 306.400006104 306.400006104 304.800006104 306.400012207 308.000012207 308.000012207 306.400012207 307.999987793 309.599987793 309.599987793 307.999987793 309.599993896 311.199993896 311.199993896 309.599993896 311.2 312.8 312.8 311.2 312.800006104 314.400006104 314.400006104 312.800006104 314.400012207 316.000012207 316.000012207 314.400012207 315.999987793 317.599987793 317.599987793 315.999987793 317.599993896 319.199993896 319.199993896 317.599993896 +319.2 320.8 320.8 319.2 320.800006104 322.400006104 322.400006104 320.800006104 322.400012207 324.000012207 324.000012207 322.400012207 323.999987793 325.599987793 325.599987793 323.999987793 325.599993896 327.199993896 327.199993896 325.599993896 327.2 328.8 328.8 327.2 328.800006104 330.400006104 330.400006104 328.800006104 330.400012207 332.000012207 332.000012207 330.400012207 331.999987793 333.599987793 333.599987793 331.999987793 333.599993896 335.199993896 335.199993896 333.599993896 335.2 336.8 336.8 335.2 336.800006104 338.400006104 338.400006104 336.800006104 338.400012207 340.000012207 340.000012207 338.400012207 339.999987793 341.599987793 341.599987793 339.999987793 341.599993896 343.199993896 343.199993896 341.599993896 343.2 344.8 344.8 343.2 344.800006104 346.400006104 346.400006104 344.800006104 346.400012207 348.000012207 348.000012207 346.400012207 347.999987793 349.599987793 349.599987793 347.999987793 349.599993896 351.199993896 351.199993896 349.599993896 351.2 352.8 352.8 351.2 352.800006104 354.400006104 354.400006104 352.800006104 354.400012207 356.000012207 356.000012207 354.400012207 355.999987793 357.599987793 357.599987793 355.999987793 357.599993896 359.199993896 359.199993896 357.599993896 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 +70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.9 0.9 0.9 -0.9 0.899999952316 2.69999995232 2.69999995232 0.899999952316 2.69999990463 4.49999990463 4.49999990463 2.69999990463 4.50000009537 6.30000009537 6.30000009537 4.50000009537 6.29999980927 8.09999980927 8.09999980927 6.29999980927 8.1 9.9 9.9 8.1 9.90000019073 11.7000001907 11.7000001907 9.90000019073 11.7000003815 13.5000003815 13.5000003815 11.7000003815 13.4999996185 15.2999996185 15.2999996185 13.4999996185 15.3000007629 17.1000007629 17.1000007629 15.3000007629 17.1 18.9 18.9 17.1 18.8999992371 20.6999992371 20.6999992371 18.8999992371 20.7000003815 22.5000003815 22.5000003815 20.7000003815 22.4999996185 24.2999996185 24.2999996185 22.4999996185 24.3000007629 26.1000007629 26.1000007629 24.3000007629 26.1 27.9 27.9 26.1 27.8999992371 29.6999992371 29.6999992371 27.8999992371 29.7000003815 31.5000003815 31.5000003815 29.7000003815 31.5000015259 33.3000015259 33.3000015259 31.5000015259 33.3000007629 35.1000007629 35.1000007629 33.3000007629 35.1 36.9 36.9 35.1 36.8999992371 38.6999992371 38.6999992371 36.8999992371 38.6999984741 40.4999984741 40.4999984741 38.6999984741 40.5000015259 42.3000015259 42.3000015259 40.5000015259 42.3000007629 44.1000007629 44.1000007629 42.3000007629 44.1 45.9 45.9 44.1 45.8999992371 47.6999992371 47.6999992371 45.8999992371 47.6999984741 49.4999984741 49.4999984741 47.6999984741 49.5000015259 51.3000015259 51.3000015259 49.5000015259 51.3000007629 53.1000007629 53.1000007629 51.3000007629 53.1 54.9 54.9 53.1 54.8999992371 56.6999992371 56.6999992371 54.8999992371 56.6999984741 58.4999984741 58.4999984741 56.6999984741 58.5000015259 60.3000015259 60.3000015259 58.5000015259 60.3000007629 62.1000007629 62.1000007629 60.3000007629 62.1 63.9 63.9 62.1 63.9000030518 65.7000030518 65.7000030518 63.9000030518 65.6999984741 67.4999984741 67.4999984741 65.6999984741 67.5000015259 69.3000015259 69.3000015259 67.5000015259 69.2999969482 71.0999969482 71.0999969482 69.2999969482 71.1 72.9 72.9 71.1 72.9000030518 74.7000030518 74.7000030518 72.9000030518 74.6999984741 76.4999984741 76.4999984741 74.6999984741 76.5000015259 78.3000015259 78.3000015259 76.5000015259 78.2999969482 80.0999969482 80.0999969482 78.2999969482 80.1 81.9 81.9 80.1 81.9000030518 83.7000030518 83.7000030518 81.9000030518 83.6999984741 85.4999984741 85.4999984741 83.6999984741 85.5000015259 87.3000015259 87.3000015259 85.5000015259 87.2999969482 89.0999969482 89.0999969482 87.2999969482 89.1 90.9 90.9 89.1 90.9000030518 92.7000030518 92.7000030518 90.9000030518 92.6999984741 94.4999984741 94.4999984741 92.6999984741 94.5000015259 96.3000015259 96.3000015259 94.5000015259 96.2999969482 98.0999969482 98.0999969482 96.2999969482 98.1 99.9 99.9 98.1 99.9000030518 101.700003052 101.700003052 99.9000030518 101.699998474 103.499998474 103.499998474 101.699998474 103.500001526 105.300001526 105.300001526 103.500001526 105.299996948 107.099996948 107.099996948 105.299996948 107.1 108.9 108.9 107.1 108.900003052 110.700003052 110.700003052 108.900003052 110.699998474 112.499998474 112.499998474 110.699998474 112.500001526 114.300001526 114.300001526 112.500001526 114.299996948 116.099996948 116.099996948 114.299996948 116.1 117.9 117.9 116.1 117.900003052 119.700003052 119.700003052 117.900003052 119.699998474 121.499998474 121.499998474 119.699998474 121.500001526 123.300001526 123.300001526 121.500001526 123.299996948 125.099996948 125.099996948 123.299996948 125.1 126.9 126.9 125.1 126.900003052 128.700003052 128.700003052 126.900003052 128.700006104 130.500006104 130.500006104 128.700006104 130.499993896 132.299993896 132.299993896 130.499993896 132.299996948 134.099996948 134.099996948 132.299996948 134.1 135.9 135.9 134.1 135.900003052 137.700003052 137.700003052 135.900003052 137.700006104 139.500006104 139.500006104 137.700006104 139.499993896 141.299993896 141.299993896 139.499993896 141.299996948 143.099996948 143.099996948 141.299996948 143.1 144.9 144.9 143.1 144.900003052 146.700003052 146.700003052 144.900003052 146.700006104 148.500006104 148.500006104 146.700006104 148.499993896 150.299993896 150.299993896 148.499993896 150.299996948 152.099996948 152.099996948 150.299996948 152.1 153.9 153.9 152.1 153.900003052 155.700003052 155.700003052 153.900003052 155.700006104 157.500006104 157.500006104 155.700006104 157.499993896 159.299993896 159.299993896 157.499993896 159.299996948 161.099996948 161.099996948 159.299996948 161.1 162.9 162.9 161.1 162.900003052 164.700003052 164.700003052 162.900003052 164.700006104 166.500006104 166.500006104 164.700006104 166.499993896 168.299993896 168.299993896 166.499993896 168.299996948 170.099996948 170.099996948 168.299996948 170.1 171.9 171.9 170.1 171.900003052 173.700003052 173.700003052 171.900003052 173.700006104 175.500006104 175.500006104 173.700006104 175.499993896 177.299993896 177.299993896 175.499993896 177.299996948 179.099996948 179.099996948 177.299996948 179.1 180.9 180.9 179.1 180.900003052 182.700003052 182.700003052 180.900003052 182.700006104 184.500006104 184.500006104 182.700006104 184.499993896 186.299993896 186.299993896 184.499993896 186.299996948 188.099996948 188.099996948 186.299996948 188.1 189.9 189.9 188.1 189.900003052 191.700003052 191.700003052 189.900003052 191.700006104 193.500006104 193.500006104 191.700006104 193.499993896 195.299993896 195.299993896 193.499993896 195.299996948 197.099996948 197.099996948 195.299996948 197.1 198.9 198.9 197.1 198.900003052 200.700003052 200.700003052 198.900003052 200.700006104 202.500006104 202.500006104 200.700006104 202.499993896 204.299993896 204.299993896 202.499993896 204.299996948 206.099996948 206.099996948 204.299996948 206.1 207.9 207.9 206.1 207.900003052 209.700003052 209.700003052 207.900003052 209.700006104 211.500006104 211.500006104 209.700006104 211.499993896 213.299993896 213.299993896 211.499993896 213.299996948 215.099996948 215.099996948 213.299996948 215.1 216.9 216.9 215.1 216.900003052 218.700003052 218.700003052 216.900003052 218.700006104 220.500006104 220.500006104 218.700006104 220.499993896 222.299993896 222.299993896 220.499993896 222.299996948 224.099996948 224.099996948 222.299996948 224.1 225.9 225.9 224.1 225.900003052 227.700003052 227.700003052 225.900003052 227.700006104 229.500006104 229.500006104 227.700006104 229.499993896 231.299993896 231.299993896 229.499993896 231.299996948 233.099996948 233.099996948 231.299996948 233.1 234.9 234.9 233.1 234.900003052 236.700003052 236.700003052 234.900003052 236.700006104 238.500006104 238.500006104 236.700006104 238.499993896 240.299993896 240.299993896 238.499993896 240.299996948 242.099996948 242.099996948 240.299996948 242.1 243.9 243.9 242.1 243.900003052 245.700003052 245.700003052 243.900003052 245.700006104 247.500006104 247.500006104 245.700006104 247.499993896 249.299993896 249.299993896 247.499993896 249.299996948 251.099996948 251.099996948 249.299996948 251.1 252.9 252.9 251.1 252.900003052 254.700003052 254.700003052 252.900003052 254.700006104 256.500006104 256.500006104 254.700006104 256.499993896 258.299993896 258.299993896 256.499993896 258.300012207 260.100012207 260.100012207 258.300012207 260.1 261.9 261.9 260.1 261.899987793 263.699987793 263.699987793 261.899987793 263.700006104 265.500006104 265.500006104 263.700006104 265.499993896 267.299993896 267.299993896 265.499993896 267.300012207 269.100012207 269.100012207 267.300012207 269.1 270.9 270.9 269.1 270.899987793 272.699987793 272.699987793 270.899987793 272.700006104 274.500006104 274.500006104 272.700006104 274.499993896 276.299993896 276.299993896 274.499993896 276.300012207 278.100012207 278.100012207 276.300012207 278.1 279.9 279.9 278.1 279.899987793 281.699987793 281.699987793 279.899987793 281.700006104 283.500006104 283.500006104 281.700006104 283.499993896 285.299993896 285.299993896 283.499993896 285.300012207 287.100012207 287.100012207 285.300012207 287.1 288.9 288.9 287.1 288.899987793 290.699987793 290.699987793 288.899987793 290.700006104 292.500006104 292.500006104 290.700006104 292.499993896 294.299993896 294.299993896 292.499993896 294.300012207 296.100012207 296.100012207 294.300012207 296.1 297.9 297.9 296.1 297.899987793 299.699987793 299.699987793 297.899987793 299.700006104 301.500006104 301.500006104 299.700006104 301.499993896 303.299993896 303.299993896 301.499993896 303.300012207 305.100012207 305.100012207 303.300012207 305.1 306.9 306.9 305.1 306.899987793 308.699987793 308.699987793 306.899987793 308.700006104 310.500006104 310.500006104 308.700006104 310.499993896 312.299993896 312.299993896 310.499993896 312.300012207 314.100012207 314.100012207 312.300012207 314.1 315.9 315.9 314.1 315.899987793 317.699987793 317.699987793 315.899987793 317.700006104 319.500006104 319.500006104 317.700006104 319.499993896 321.299993896 321.299993896 319.499993896 321.300012207 323.100012207 323.100012207 321.300012207 323.1 324.9 324.9 323.1 324.899987793 326.699987793 326.699987793 324.899987793 326.700006104 328.500006104 328.500006104 326.700006104 328.499993896 330.299993896 330.299993896 328.499993896 330.300012207 332.100012207 332.100012207 330.300012207 332.1 333.9 333.9 332.1 333.899987793 335.699987793 335.699987793 333.899987793 335.700006104 337.500006104 337.500006104 335.700006104 337.499993896 339.299993896 339.299993896 337.499993896 339.300012207 341.100012207 341.100012207 339.300012207 341.1 342.9 342.9 341.1 342.899987793 344.699987793 344.699987793 342.899987793 344.700006104 346.500006104 346.500006104 344.700006104 346.499993896 348.299993896 348.299993896 346.499993896 348.300012207 350.100012207 350.100012207 348.300012207 350.1 351.9 351.9 350.1 351.899987793 353.699987793 353.699987793 351.899987793 353.700006104 355.500006104 355.500006104 353.700006104 355.499993896 357.299993896 357.299993896 355.499993896 357.300012207 359.100012207 359.100012207 357.300012207 -0.9 0.9 0.9 -0.9 0.899999952316 2.69999995232 2.69999995232 0.899999952316 2.69999990463 4.49999990463 4.49999990463 2.69999990463 4.50000009537 6.30000009537 6.30000009537 4.50000009537 6.29999980927 8.09999980927 8.09999980927 6.29999980927 8.1 9.9 9.9 8.1 9.90000019073 11.7000001907 11.7000001907 9.90000019073 11.7000003815 13.5000003815 13.5000003815 11.7000003815 13.4999996185 15.2999996185 15.2999996185 13.4999996185 15.3000007629 17.1000007629 17.1000007629 15.3000007629 17.1 18.9 18.9 17.1 18.8999992371 20.6999992371 20.6999992371 18.8999992371 20.7000003815 22.5000003815 22.5000003815 20.7000003815 22.4999996185 24.2999996185 24.2999996185 22.4999996185 24.3000007629 26.1000007629 26.1000007629 24.3000007629 26.1 27.9 27.9 26.1 27.8999992371 29.6999992371 29.6999992371 27.8999992371 29.7000003815 31.5000003815 31.5000003815 29.7000003815 31.5000015259 33.3000015259 33.3000015259 31.5000015259 33.3000007629 35.1000007629 35.1000007629 33.3000007629 35.1 36.9 36.9 35.1 36.8999992371 38.6999992371 38.6999992371 36.8999992371 38.6999984741 40.4999984741 40.4999984741 38.6999984741 40.5000015259 42.3000015259 42.3000015259 40.5000015259 42.3000007629 44.1000007629 44.1000007629 42.3000007629 44.1 45.9 45.9 44.1 45.8999992371 47.6999992371 47.6999992371 45.8999992371 47.6999984741 49.4999984741 49.4999984741 47.6999984741 49.5000015259 51.3000015259 51.3000015259 49.5000015259 51.3000007629 53.1000007629 53.1000007629 51.3000007629 53.1 54.9 54.9 53.1 54.8999992371 56.6999992371 56.6999992371 54.8999992371 56.6999984741 58.4999984741 58.4999984741 56.6999984741 58.5000015259 60.3000015259 60.3000015259 58.5000015259 60.3000007629 62.1000007629 62.1000007629 60.3000007629 62.1 63.9 63.9 62.1 63.9000030518 65.7000030518 65.7000030518 63.9000030518 65.6999984741 67.4999984741 67.4999984741 65.6999984741 67.5000015259 69.3000015259 69.3000015259 67.5000015259 69.2999969482 71.0999969482 71.0999969482 69.2999969482 71.1 72.9 72.9 71.1 72.9000030518 74.7000030518 74.7000030518 72.9000030518 74.6999984741 76.4999984741 76.4999984741 74.6999984741 76.5000015259 78.3000015259 78.3000015259 76.5000015259 78.2999969482 80.0999969482 80.0999969482 78.2999969482 80.1 81.9 81.9 80.1 81.9000030518 83.7000030518 83.7000030518 81.9000030518 83.6999984741 85.4999984741 85.4999984741 83.6999984741 85.5000015259 87.3000015259 87.3000015259 85.5000015259 87.2999969482 89.0999969482 89.0999969482 87.2999969482 89.1 90.9 90.9 89.1 90.9000030518 92.7000030518 92.7000030518 90.9000030518 92.6999984741 94.4999984741 94.4999984741 92.6999984741 94.5000015259 96.3000015259 96.3000015259 94.5000015259 96.2999969482 98.0999969482 98.0999969482 96.2999969482 98.1 99.9 99.9 98.1 99.9000030518 101.700003052 101.700003052 99.9000030518 101.699998474 103.499998474 103.499998474 101.699998474 103.500001526 105.300001526 105.300001526 103.500001526 105.299996948 107.099996948 107.099996948 105.299996948 107.1 108.9 108.9 107.1 108.900003052 110.700003052 110.700003052 108.900003052 110.699998474 112.499998474 112.499998474 110.699998474 112.500001526 114.300001526 114.300001526 112.500001526 114.299996948 116.099996948 116.099996948 114.299996948 116.1 117.9 117.9 116.1 117.900003052 119.700003052 119.700003052 117.900003052 119.699998474 121.499998474 121.499998474 119.699998474 121.500001526 123.300001526 123.300001526 121.500001526 123.299996948 125.099996948 125.099996948 123.299996948 125.1 126.9 126.9 125.1 126.900003052 128.700003052 128.700003052 126.900003052 128.700006104 130.500006104 130.500006104 128.700006104 130.499993896 132.299993896 132.299993896 130.499993896 132.299996948 134.099996948 134.099996948 132.299996948 134.1 135.9 135.9 134.1 135.900003052 137.700003052 137.700003052 135.900003052 137.700006104 139.500006104 139.500006104 137.700006104 139.499993896 141.299993896 141.299993896 139.499993896 141.299996948 143.099996948 143.099996948 141.299996948 143.1 144.9 144.9 143.1 144.900003052 146.700003052 146.700003052 144.900003052 146.700006104 148.500006104 148.500006104 146.700006104 148.499993896 150.299993896 150.299993896 148.499993896 150.299996948 152.099996948 152.099996948 150.299996948 152.1 153.9 153.9 152.1 153.900003052 155.700003052 155.700003052 153.900003052 155.700006104 157.500006104 157.500006104 155.700006104 157.499993896 159.299993896 159.299993896 157.499993896 159.299996948 161.099996948 161.099996948 159.299996948 161.1 162.9 162.9 161.1 162.900003052 164.700003052 164.700003052 162.900003052 164.700006104 166.500006104 166.500006104 164.700006104 166.499993896 168.299993896 168.299993896 166.499993896 168.299996948 170.099996948 170.099996948 168.299996948 170.1 171.9 171.9 170.1 171.900003052 173.700003052 173.700003052 171.900003052 173.700006104 175.500006104 175.500006104 173.700006104 175.499993896 177.299993896 177.299993896 175.499993896 177.299996948 179.099996948 179.099996948 177.299996948 179.1 180.9 180.9 179.1 180.900003052 182.700003052 182.700003052 180.900003052 182.700006104 184.500006104 184.500006104 182.700006104 184.499993896 186.299993896 186.299993896 184.499993896 186.299996948 188.099996948 188.099996948 186.299996948 188.1 189.9 189.9 188.1 189.900003052 191.700003052 191.700003052 189.900003052 191.700006104 193.500006104 193.500006104 191.700006104 193.499993896 195.299993896 195.299993896 193.499993896 195.299996948 197.099996948 197.099996948 195.299996948 197.1 198.9 198.9 197.1 198.900003052 200.700003052 200.700003052 198.900003052 200.700006104 202.500006104 202.500006104 200.700006104 202.499993896 204.299993896 204.299993896 202.499993896 204.299996948 206.099996948 206.099996948 204.299996948 206.1 207.9 207.9 206.1 207.900003052 209.700003052 209.700003052 207.900003052 209.700006104 211.500006104 211.500006104 209.700006104 211.499993896 213.299993896 213.299993896 211.499993896 213.299996948 215.099996948 215.099996948 213.299996948 215.1 216.9 216.9 215.1 216.900003052 218.700003052 218.700003052 216.900003052 218.700006104 220.500006104 220.500006104 218.700006104 220.499993896 222.299993896 222.299993896 220.499993896 222.299996948 224.099996948 224.099996948 222.299996948 224.1 225.9 225.9 224.1 225.900003052 227.700003052 227.700003052 225.900003052 +227.700006104 229.500006104 229.500006104 227.700006104 229.499993896 231.299993896 231.299993896 229.499993896 231.299996948 233.099996948 233.099996948 231.299996948 233.1 234.9 234.9 233.1 234.900003052 236.700003052 236.700003052 234.900003052 236.700006104 238.500006104 238.500006104 236.700006104 238.499993896 240.299993896 240.299993896 238.499993896 240.299996948 242.099996948 242.099996948 240.299996948 242.1 243.9 243.9 242.1 243.900003052 245.700003052 245.700003052 243.900003052 245.700006104 247.500006104 247.500006104 245.700006104 247.499993896 249.299993896 249.299993896 247.499993896 249.299996948 251.099996948 251.099996948 249.299996948 251.1 252.9 252.9 251.1 252.900003052 254.700003052 254.700003052 252.900003052 254.700006104 256.500006104 256.500006104 254.700006104 256.499993896 258.299993896 258.299993896 256.499993896 258.300012207 260.100012207 260.100012207 258.300012207 260.1 261.9 261.9 260.1 261.899987793 263.699987793 263.699987793 261.899987793 263.700006104 265.500006104 265.500006104 263.700006104 265.499993896 267.299993896 267.299993896 265.499993896 267.300012207 269.100012207 269.100012207 267.300012207 269.1 270.9 270.9 269.1 270.899987793 272.699987793 272.699987793 270.899987793 272.700006104 274.500006104 274.500006104 272.700006104 274.499993896 276.299993896 276.299993896 274.499993896 276.300012207 278.100012207 278.100012207 276.300012207 278.1 279.9 279.9 278.1 279.899987793 281.699987793 281.699987793 279.899987793 281.700006104 283.500006104 283.500006104 281.700006104 283.499993896 285.299993896 285.299993896 283.499993896 285.300012207 287.100012207 287.100012207 285.300012207 287.1 288.9 288.9 287.1 288.899987793 290.699987793 290.699987793 288.899987793 290.700006104 292.500006104 292.500006104 290.700006104 292.499993896 294.299993896 294.299993896 292.499993896 294.300012207 296.100012207 296.100012207 294.300012207 296.1 297.9 297.9 296.1 297.899987793 299.699987793 299.699987793 297.899987793 299.700006104 301.500006104 301.500006104 299.700006104 301.499993896 303.299993896 303.299993896 301.499993896 303.300012207 305.100012207 305.100012207 303.300012207 305.1 306.9 306.9 305.1 306.899987793 308.699987793 308.699987793 306.899987793 308.700006104 310.500006104 310.500006104 308.700006104 310.499993896 312.299993896 312.299993896 310.499993896 312.300012207 314.100012207 314.100012207 312.300012207 314.1 315.9 315.9 314.1 315.899987793 317.699987793 317.699987793 315.899987793 317.700006104 319.500006104 319.500006104 317.700006104 319.499993896 321.299993896 321.299993896 319.499993896 321.300012207 323.100012207 323.100012207 321.300012207 323.1 324.9 324.9 323.1 324.899987793 326.699987793 326.699987793 324.899987793 326.700006104 328.500006104 328.500006104 326.700006104 328.499993896 330.299993896 330.299993896 328.499993896 330.300012207 332.100012207 332.100012207 330.300012207 332.1 333.9 333.9 332.1 333.899987793 335.699987793 335.699987793 333.899987793 335.700006104 337.500006104 337.500006104 335.700006104 337.499993896 339.299993896 339.299993896 337.499993896 339.300012207 341.100012207 341.100012207 339.300012207 341.1 342.9 342.9 341.1 342.899987793 344.699987793 344.699987793 342.899987793 344.700006104 346.500006104 346.500006104 344.700006104 346.499993896 348.299993896 348.299993896 346.499993896 348.300012207 350.100012207 350.100012207 348.300012207 350.1 351.9 351.9 350.1 351.899987793 353.699987793 353.699987793 351.899987793 353.700006104 355.500006104 355.500006104 353.700006104 355.499993896 357.299993896 357.299993896 355.499993896 357.300012207 359.100012207 359.100012207 357.300012207 -0.9375 0.9375 0.9375 -0.9375 0.9375 2.8125 2.8125 0.9375 2.8125 4.6875 4.6875 2.8125 4.6875 6.5625 6.5625 4.6875 6.5625 8.4375 8.4375 6.5625 8.4375 10.3125 10.3125 8.4375 10.3125 12.1875 12.1875 10.3125 12.1875 14.0625 14.0625 12.1875 14.0625 15.9375 15.9375 14.0625 15.9375 17.8125 17.8125 15.9375 17.8125 19.6875 19.6875 17.8125 19.6875 21.5625 21.5625 19.6875 21.5625 23.4375 23.4375 21.5625 23.4375 25.3125 25.3125 23.4375 25.3125 27.1875 27.1875 25.3125 27.1875 29.0625 29.0625 27.1875 29.0625 30.9375 30.9375 29.0625 30.9375 32.8125 32.8125 30.9375 32.8125 34.6875 34.6875 32.8125 34.6875 36.5625 36.5625 34.6875 36.5625 38.4375 38.4375 36.5625 38.4375 40.3125 40.3125 38.4375 40.3125 42.1875 42.1875 40.3125 42.1875 44.0625 44.0625 42.1875 44.0625 45.9375 45.9375 44.0625 45.9375 47.8125 47.8125 45.9375 47.8125 49.6875 49.6875 47.8125 49.6875 51.5625 51.5625 49.6875 51.5625 53.4375 53.4375 51.5625 53.4375 55.3125 55.3125 53.4375 55.3125 57.1875 57.1875 55.3125 57.1875 59.0625 59.0625 57.1875 59.0625 60.9375 60.9375 59.0625 60.9375 62.8125 62.8125 60.9375 62.8125 64.6875 64.6875 62.8125 64.6875 66.5625 66.5625 64.6875 66.5625 68.4375 68.4375 66.5625 68.4375 70.3125 70.3125 68.4375 70.3125 72.1875 72.1875 70.3125 72.1875 74.0625 74.0625 72.1875 74.0625 75.9375 75.9375 74.0625 75.9375 77.8125 77.8125 75.9375 77.8125 79.6875 79.6875 77.8125 79.6875 81.5625 81.5625 79.6875 81.5625 83.4375 83.4375 81.5625 83.4375 85.3125 85.3125 83.4375 85.3125 87.1875 87.1875 85.3125 87.1875 89.0625 89.0625 87.1875 89.0625 90.9375 90.9375 89.0625 90.9375 92.8125 92.8125 90.9375 92.8125 94.6875 94.6875 92.8125 94.6875 96.5625 96.5625 94.6875 96.5625 98.4375 98.4375 96.5625 98.4375 100.3125 100.3125 98.4375 100.3125 102.1875 102.1875 100.3125 102.1875 104.0625 104.0625 102.1875 104.0625 105.9375 105.9375 104.0625 105.9375 107.8125 107.8125 105.9375 107.8125 109.6875 109.6875 107.8125 109.6875 111.5625 111.5625 109.6875 111.5625 113.4375 113.4375 111.5625 113.4375 115.3125 115.3125 113.4375 115.3125 117.1875 117.1875 115.3125 117.1875 119.0625 119.0625 117.1875 119.0625 120.9375 120.9375 119.0625 120.9375 122.8125 122.8125 120.9375 122.8125 124.6875 124.6875 122.8125 124.6875 126.5625 126.5625 124.6875 126.5625 128.4375 128.4375 126.5625 128.4375 130.3125 130.3125 128.4375 130.3125 132.1875 132.1875 130.3125 132.1875 134.0625 134.0625 132.1875 134.0625 135.9375 135.9375 134.0625 135.9375 137.8125 137.8125 135.9375 137.8125 139.6875 139.6875 137.8125 139.6875 141.5625 141.5625 139.6875 141.5625 143.4375 143.4375 141.5625 143.4375 145.3125 145.3125 143.4375 145.3125 147.1875 147.1875 145.3125 147.1875 149.0625 149.0625 147.1875 149.0625 150.9375 150.9375 149.0625 150.9375 152.8125 152.8125 150.9375 152.8125 154.6875 154.6875 152.8125 154.6875 156.5625 156.5625 154.6875 156.5625 158.4375 158.4375 156.5625 158.4375 160.3125 160.3125 158.4375 160.3125 162.1875 162.1875 160.3125 162.1875 164.0625 164.0625 162.1875 164.0625 165.9375 165.9375 164.0625 165.9375 167.8125 167.8125 165.9375 167.8125 169.6875 169.6875 167.8125 169.6875 171.5625 171.5625 169.6875 171.5625 173.4375 173.4375 171.5625 173.4375 175.3125 175.3125 173.4375 175.3125 177.1875 177.1875 175.3125 177.1875 179.0625 179.0625 177.1875 179.0625 180.9375 180.9375 179.0625 180.9375 182.8125 182.8125 180.9375 182.8125 184.6875 184.6875 182.8125 184.6875 186.5625 186.5625 184.6875 186.5625 188.4375 188.4375 186.5625 188.4375 190.3125 190.3125 188.4375 190.3125 192.1875 192.1875 190.3125 192.1875 194.0625 194.0625 192.1875 194.0625 195.9375 195.9375 194.0625 195.9375 197.8125 197.8125 195.9375 197.8125 199.6875 199.6875 197.8125 199.6875 201.5625 201.5625 199.6875 201.5625 203.4375 203.4375 201.5625 203.4375 205.3125 205.3125 203.4375 205.3125 207.1875 207.1875 205.3125 207.1875 209.0625 209.0625 207.1875 209.0625 210.9375 210.9375 209.0625 210.9375 212.8125 212.8125 210.9375 212.8125 214.6875 214.6875 212.8125 214.6875 216.5625 216.5625 214.6875 216.5625 218.4375 218.4375 216.5625 218.4375 220.3125 220.3125 218.4375 220.3125 222.1875 222.1875 220.3125 222.1875 224.0625 224.0625 222.1875 224.0625 225.9375 225.9375 224.0625 225.9375 227.8125 227.8125 225.9375 227.8125 229.6875 229.6875 227.8125 229.6875 231.5625 231.5625 229.6875 231.5625 233.4375 233.4375 231.5625 233.4375 235.3125 235.3125 233.4375 235.3125 237.1875 237.1875 235.3125 237.1875 239.0625 239.0625 237.1875 239.0625 240.9375 240.9375 239.0625 240.9375 242.8125 242.8125 240.9375 242.8125 244.6875 244.6875 242.8125 244.6875 246.5625 246.5625 244.6875 246.5625 248.4375 248.4375 246.5625 248.4375 250.3125 250.3125 248.4375 250.3125 252.1875 252.1875 250.3125 252.1875 254.0625 254.0625 252.1875 254.0625 255.9375 255.9375 254.0625 255.9375 257.8125 257.8125 255.9375 257.8125 259.6875 259.6875 257.8125 259.6875 261.5625 261.5625 259.6875 261.5625 263.4375 263.4375 261.5625 263.4375 265.3125 265.3125 263.4375 265.3125 267.1875 267.1875 265.3125 267.1875 269.0625 269.0625 267.1875 269.0625 270.9375 270.9375 269.0625 270.9375 272.8125 272.8125 270.9375 272.8125 274.6875 274.6875 272.8125 274.6875 276.5625 276.5625 274.6875 276.5625 278.4375 278.4375 276.5625 278.4375 280.3125 280.3125 278.4375 280.3125 282.1875 282.1875 280.3125 282.1875 284.0625 284.0625 282.1875 284.0625 285.9375 285.9375 284.0625 285.9375 287.8125 287.8125 285.9375 287.8125 289.6875 289.6875 287.8125 289.6875 291.5625 291.5625 289.6875 291.5625 293.4375 293.4375 291.5625 293.4375 295.3125 295.3125 293.4375 295.3125 297.1875 297.1875 295.3125 297.1875 299.0625 299.0625 297.1875 299.0625 300.9375 300.9375 299.0625 300.9375 302.8125 302.8125 300.9375 302.8125 304.6875 304.6875 302.8125 304.6875 306.5625 306.5625 304.6875 306.5625 308.4375 308.4375 306.5625 308.4375 310.3125 310.3125 308.4375 310.3125 312.1875 312.1875 310.3125 312.1875 314.0625 314.0625 312.1875 314.0625 315.9375 315.9375 314.0625 315.9375 317.8125 317.8125 315.9375 317.8125 319.6875 319.6875 317.8125 319.6875 321.5625 321.5625 319.6875 321.5625 323.4375 323.4375 321.5625 323.4375 325.3125 325.3125 323.4375 325.3125 327.1875 327.1875 325.3125 327.1875 329.0625 329.0625 327.1875 329.0625 330.9375 330.9375 329.0625 330.9375 332.8125 332.8125 330.9375 332.8125 334.6875 334.6875 332.8125 334.6875 336.5625 336.5625 334.6875 336.5625 338.4375 338.4375 336.5625 338.4375 340.3125 340.3125 338.4375 340.3125 342.1875 342.1875 340.3125 342.1875 344.0625 344.0625 342.1875 344.0625 345.9375 345.9375 344.0625 345.9375 347.8125 347.8125 345.9375 347.8125 349.6875 349.6875 347.8125 349.6875 351.5625 351.5625 349.6875 351.5625 353.4375 353.4375 351.5625 353.4375 355.3125 355.3125 353.4375 355.3125 357.1875 357.1875 355.3125 357.1875 359.0625 359.0625 357.1875 -0.9375 0.9375 0.9375 -0.9375 0.9375 2.8125 2.8125 0.9375 2.8125 4.6875 4.6875 2.8125 4.6875 6.5625 6.5625 4.6875 6.5625 8.4375 8.4375 6.5625 8.4375 10.3125 10.3125 8.4375 10.3125 12.1875 12.1875 10.3125 12.1875 14.0625 14.0625 12.1875 14.0625 15.9375 15.9375 14.0625 15.9375 17.8125 17.8125 15.9375 17.8125 19.6875 19.6875 17.8125 19.6875 21.5625 21.5625 19.6875 21.5625 23.4375 23.4375 21.5625 23.4375 25.3125 25.3125 23.4375 25.3125 27.1875 27.1875 25.3125 27.1875 29.0625 29.0625 27.1875 29.0625 30.9375 30.9375 29.0625 30.9375 32.8125 32.8125 30.9375 32.8125 34.6875 34.6875 32.8125 34.6875 36.5625 36.5625 34.6875 36.5625 38.4375 38.4375 36.5625 38.4375 40.3125 40.3125 38.4375 40.3125 42.1875 42.1875 40.3125 42.1875 44.0625 44.0625 42.1875 44.0625 45.9375 45.9375 44.0625 45.9375 47.8125 47.8125 45.9375 47.8125 49.6875 49.6875 47.8125 49.6875 51.5625 51.5625 49.6875 51.5625 53.4375 53.4375 51.5625 53.4375 55.3125 55.3125 53.4375 55.3125 57.1875 57.1875 55.3125 57.1875 59.0625 59.0625 57.1875 59.0625 60.9375 60.9375 59.0625 60.9375 62.8125 62.8125 60.9375 62.8125 64.6875 64.6875 62.8125 64.6875 66.5625 66.5625 64.6875 66.5625 68.4375 68.4375 66.5625 68.4375 70.3125 70.3125 68.4375 70.3125 72.1875 72.1875 70.3125 72.1875 74.0625 74.0625 72.1875 74.0625 75.9375 75.9375 74.0625 75.9375 77.8125 77.8125 75.9375 77.8125 79.6875 79.6875 77.8125 79.6875 81.5625 81.5625 79.6875 81.5625 83.4375 83.4375 81.5625 83.4375 85.3125 85.3125 83.4375 85.3125 87.1875 87.1875 85.3125 87.1875 89.0625 89.0625 87.1875 89.0625 90.9375 90.9375 89.0625 90.9375 92.8125 92.8125 90.9375 92.8125 94.6875 94.6875 92.8125 94.6875 96.5625 96.5625 94.6875 96.5625 98.4375 98.4375 96.5625 98.4375 100.3125 100.3125 98.4375 100.3125 102.1875 102.1875 100.3125 102.1875 104.0625 104.0625 102.1875 104.0625 105.9375 105.9375 104.0625 105.9375 107.8125 107.8125 105.9375 107.8125 109.6875 109.6875 107.8125 109.6875 111.5625 111.5625 109.6875 111.5625 113.4375 113.4375 111.5625 113.4375 115.3125 115.3125 113.4375 115.3125 117.1875 117.1875 115.3125 117.1875 119.0625 119.0625 117.1875 119.0625 120.9375 120.9375 119.0625 120.9375 122.8125 122.8125 120.9375 122.8125 124.6875 124.6875 122.8125 124.6875 126.5625 126.5625 124.6875 126.5625 128.4375 128.4375 126.5625 128.4375 130.3125 130.3125 128.4375 130.3125 132.1875 132.1875 130.3125 132.1875 134.0625 134.0625 132.1875 134.0625 135.9375 135.9375 134.0625 135.9375 137.8125 137.8125 135.9375 137.8125 139.6875 139.6875 137.8125 139.6875 141.5625 141.5625 139.6875 141.5625 143.4375 143.4375 141.5625 143.4375 145.3125 145.3125 143.4375 145.3125 147.1875 147.1875 145.3125 147.1875 149.0625 149.0625 147.1875 149.0625 150.9375 150.9375 149.0625 150.9375 152.8125 152.8125 150.9375 152.8125 154.6875 154.6875 152.8125 154.6875 156.5625 156.5625 154.6875 156.5625 158.4375 158.4375 156.5625 158.4375 160.3125 160.3125 158.4375 160.3125 162.1875 162.1875 160.3125 162.1875 164.0625 164.0625 162.1875 164.0625 165.9375 165.9375 164.0625 165.9375 167.8125 167.8125 165.9375 167.8125 169.6875 169.6875 167.8125 169.6875 171.5625 171.5625 169.6875 171.5625 173.4375 173.4375 171.5625 173.4375 175.3125 175.3125 173.4375 175.3125 177.1875 177.1875 175.3125 177.1875 179.0625 179.0625 177.1875 179.0625 180.9375 180.9375 179.0625 180.9375 182.8125 182.8125 180.9375 182.8125 184.6875 184.6875 182.8125 184.6875 186.5625 186.5625 184.6875 186.5625 188.4375 188.4375 186.5625 188.4375 190.3125 190.3125 188.4375 190.3125 192.1875 192.1875 190.3125 192.1875 194.0625 194.0625 192.1875 194.0625 195.9375 195.9375 194.0625 195.9375 197.8125 197.8125 195.9375 197.8125 199.6875 199.6875 197.8125 199.6875 201.5625 201.5625 199.6875 201.5625 203.4375 203.4375 201.5625 203.4375 205.3125 205.3125 203.4375 205.3125 207.1875 207.1875 205.3125 207.1875 209.0625 209.0625 207.1875 209.0625 210.9375 210.9375 209.0625 210.9375 212.8125 212.8125 210.9375 212.8125 214.6875 214.6875 212.8125 214.6875 216.5625 216.5625 214.6875 216.5625 218.4375 218.4375 216.5625 218.4375 220.3125 220.3125 218.4375 220.3125 222.1875 222.1875 220.3125 222.1875 224.0625 224.0625 222.1875 224.0625 225.9375 225.9375 224.0625 225.9375 227.8125 227.8125 225.9375 227.8125 229.6875 229.6875 227.8125 229.6875 231.5625 231.5625 229.6875 231.5625 233.4375 233.4375 231.5625 233.4375 235.3125 235.3125 233.4375 235.3125 237.1875 237.1875 235.3125 237.1875 239.0625 239.0625 237.1875 239.0625 240.9375 240.9375 239.0625 240.9375 242.8125 242.8125 240.9375 242.8125 244.6875 244.6875 242.8125 244.6875 246.5625 246.5625 244.6875 246.5625 248.4375 248.4375 246.5625 248.4375 250.3125 250.3125 248.4375 250.3125 252.1875 252.1875 250.3125 252.1875 254.0625 254.0625 252.1875 254.0625 255.9375 255.9375 254.0625 255.9375 257.8125 257.8125 255.9375 257.8125 259.6875 259.6875 257.8125 259.6875 261.5625 261.5625 259.6875 261.5625 263.4375 263.4375 261.5625 263.4375 265.3125 265.3125 263.4375 265.3125 267.1875 267.1875 265.3125 267.1875 269.0625 269.0625 267.1875 269.0625 270.9375 270.9375 269.0625 270.9375 272.8125 272.8125 270.9375 272.8125 274.6875 274.6875 272.8125 274.6875 276.5625 276.5625 274.6875 276.5625 278.4375 278.4375 276.5625 278.4375 280.3125 280.3125 278.4375 280.3125 282.1875 282.1875 280.3125 282.1875 284.0625 284.0625 282.1875 284.0625 285.9375 285.9375 284.0625 285.9375 287.8125 287.8125 285.9375 287.8125 289.6875 289.6875 287.8125 289.6875 291.5625 291.5625 289.6875 291.5625 293.4375 293.4375 291.5625 293.4375 295.3125 295.3125 293.4375 295.3125 297.1875 297.1875 295.3125 297.1875 299.0625 299.0625 297.1875 299.0625 300.9375 300.9375 299.0625 300.9375 302.8125 302.8125 300.9375 302.8125 304.6875 304.6875 302.8125 304.6875 306.5625 306.5625 304.6875 306.5625 308.4375 308.4375 306.5625 308.4375 310.3125 310.3125 308.4375 310.3125 312.1875 312.1875 310.3125 312.1875 314.0625 314.0625 312.1875 314.0625 315.9375 315.9375 314.0625 315.9375 317.8125 317.8125 315.9375 317.8125 319.6875 319.6875 317.8125 319.6875 321.5625 321.5625 319.6875 321.5625 323.4375 323.4375 321.5625 323.4375 325.3125 325.3125 323.4375 325.3125 327.1875 327.1875 325.3125 327.1875 329.0625 329.0625 327.1875 329.0625 330.9375 330.9375 329.0625 330.9375 332.8125 332.8125 330.9375 332.8125 334.6875 334.6875 332.8125 334.6875 336.5625 336.5625 334.6875 336.5625 338.4375 338.4375 336.5625 338.4375 340.3125 340.3125 338.4375 340.3125 342.1875 342.1875 340.3125 342.1875 344.0625 344.0625 342.1875 344.0625 345.9375 345.9375 344.0625 345.9375 347.8125 347.8125 345.9375 347.8125 349.6875 349.6875 347.8125 349.6875 351.5625 351.5625 349.6875 351.5625 353.4375 353.4375 351.5625 353.4375 355.3125 355.3125 353.4375 355.3125 357.1875 357.1875 355.3125 357.1875 359.0625 359.0625 357.1875 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 +85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.125 1.125 1.125 -1.125 1.125 3.375 3.375 1.125 3.375 5.625 5.625 3.375 +5.625 7.875 7.875 5.625 7.875 10.125 10.125 7.875 10.125 12.375 12.375 10.125 12.375 14.625 14.625 12.375 14.625 16.875 16.875 14.625 16.875 19.125 19.125 16.875 19.125 21.375 21.375 19.125 21.375 23.625 23.625 21.375 23.625 25.875 25.875 23.625 25.875 28.125 28.125 25.875 28.125 30.375 30.375 28.125 30.375 32.625 32.625 30.375 32.625 34.875 34.875 32.625 34.875 37.125 37.125 34.875 37.125 39.375 39.375 37.125 39.375 41.625 41.625 39.375 41.625 43.875 43.875 41.625 43.875 46.125 46.125 43.875 46.125 48.375 48.375 46.125 48.375 50.625 50.625 48.375 50.625 52.875 52.875 50.625 52.875 55.125 55.125 52.875 55.125 57.375 57.375 55.125 57.375 59.625 59.625 57.375 59.625 61.875 61.875 59.625 61.875 64.125 64.125 61.875 64.125 66.375 66.375 64.125 66.375 68.625 68.625 66.375 68.625 70.875 70.875 68.625 70.875 73.125 73.125 70.875 73.125 75.375 75.375 73.125 75.375 77.625 77.625 75.375 77.625 79.875 79.875 77.625 79.875 82.125 82.125 79.875 82.125 84.375 84.375 82.125 84.375 86.625 86.625 84.375 86.625 88.875 88.875 86.625 88.875 91.125 91.125 88.875 91.125 93.375 93.375 91.125 93.375 95.625 95.625 93.375 95.625 97.875 97.875 95.625 97.875 100.125 100.125 97.875 100.125 102.375 102.375 100.125 102.375 104.625 104.625 102.375 104.625 106.875 106.875 104.625 106.875 109.125 109.125 106.875 109.125 111.375 111.375 109.125 111.375 113.625 113.625 111.375 113.625 115.875 115.875 113.625 115.875 118.125 118.125 115.875 118.125 120.375 120.375 118.125 120.375 122.625 122.625 120.375 122.625 124.875 124.875 122.625 124.875 127.125 127.125 124.875 127.125 129.375 129.375 127.125 129.375 131.625 131.625 129.375 131.625 133.875 133.875 131.625 133.875 136.125 136.125 133.875 136.125 138.375 138.375 136.125 138.375 140.625 140.625 138.375 140.625 142.875 142.875 140.625 142.875 145.125 145.125 142.875 145.125 147.375 147.375 145.125 147.375 149.625 149.625 147.375 149.625 151.875 151.875 149.625 151.875 154.125 154.125 151.875 154.125 156.375 156.375 154.125 156.375 158.625 158.625 156.375 158.625 160.875 160.875 158.625 160.875 163.125 163.125 160.875 163.125 165.375 165.375 163.125 165.375 167.625 167.625 165.375 167.625 169.875 169.875 167.625 169.875 172.125 172.125 169.875 172.125 174.375 174.375 172.125 174.375 176.625 176.625 174.375 176.625 178.875 178.875 176.625 178.875 181.125 181.125 178.875 181.125 183.375 183.375 181.125 183.375 185.625 185.625 183.375 185.625 187.875 187.875 185.625 187.875 190.125 190.125 187.875 190.125 192.375 192.375 190.125 192.375 194.625 194.625 192.375 194.625 196.875 196.875 194.625 196.875 199.125 199.125 196.875 199.125 201.375 201.375 199.125 201.375 203.625 203.625 201.375 203.625 205.875 205.875 203.625 205.875 208.125 208.125 205.875 208.125 210.375 210.375 208.125 210.375 212.625 212.625 210.375 212.625 214.875 214.875 212.625 214.875 217.125 217.125 214.875 217.125 219.375 219.375 217.125 219.375 221.625 221.625 219.375 221.625 223.875 223.875 221.625 223.875 226.125 226.125 223.875 226.125 228.375 228.375 226.125 228.375 230.625 230.625 228.375 230.625 232.875 232.875 230.625 232.875 235.125 235.125 232.875 235.125 237.375 237.375 235.125 237.375 239.625 239.625 237.375 239.625 241.875 241.875 239.625 241.875 244.125 244.125 241.875 244.125 246.375 246.375 244.125 246.375 248.625 248.625 246.375 248.625 250.875 250.875 248.625 250.875 253.125 253.125 250.875 253.125 255.375 255.375 253.125 255.375 257.625 257.625 255.375 257.625 259.875 259.875 257.625 259.875 262.125 262.125 259.875 262.125 264.375 264.375 262.125 264.375 266.625 266.625 264.375 266.625 268.875 268.875 266.625 268.875 271.125 271.125 268.875 271.125 273.375 273.375 271.125 273.375 275.625 275.625 273.375 275.625 277.875 277.875 275.625 277.875 280.125 280.125 277.875 280.125 282.375 282.375 280.125 282.375 284.625 284.625 282.375 284.625 286.875 286.875 284.625 286.875 289.125 289.125 286.875 289.125 291.375 291.375 289.125 291.375 293.625 293.625 291.375 293.625 295.875 295.875 293.625 295.875 298.125 298.125 295.875 298.125 300.375 300.375 298.125 300.375 302.625 302.625 300.375 302.625 304.875 304.875 302.625 304.875 307.125 307.125 304.875 307.125 309.375 309.375 307.125 309.375 311.625 311.625 309.375 311.625 313.875 313.875 311.625 313.875 316.125 316.125 313.875 316.125 318.375 318.375 316.125 318.375 320.625 320.625 318.375 320.625 322.875 322.875 320.625 322.875 325.125 325.125 322.875 325.125 327.375 327.375 325.125 327.375 329.625 329.625 327.375 329.625 331.875 331.875 329.625 331.875 334.125 334.125 331.875 334.125 336.375 336.375 334.125 336.375 338.625 338.625 336.375 338.625 340.875 340.875 338.625 340.875 343.125 343.125 340.875 343.125 345.375 345.375 343.125 345.375 347.625 347.625 345.375 347.625 349.875 349.875 347.625 349.875 352.125 352.125 349.875 352.125 354.375 354.375 352.125 354.375 356.625 356.625 354.375 356.625 358.875 358.875 356.625 -1.125 1.125 1.125 -1.125 1.125 3.375 3.375 1.125 3.375 5.625 5.625 3.375 5.625 7.875 7.875 5.625 7.875 10.125 10.125 7.875 10.125 12.375 12.375 10.125 12.375 14.625 14.625 12.375 14.625 16.875 16.875 14.625 16.875 19.125 19.125 16.875 19.125 21.375 21.375 19.125 21.375 23.625 23.625 21.375 23.625 25.875 25.875 23.625 25.875 28.125 28.125 25.875 28.125 30.375 30.375 28.125 30.375 32.625 32.625 30.375 32.625 34.875 34.875 32.625 34.875 37.125 37.125 34.875 37.125 39.375 39.375 37.125 39.375 41.625 41.625 39.375 41.625 43.875 43.875 41.625 43.875 46.125 46.125 43.875 46.125 48.375 48.375 46.125 48.375 50.625 50.625 48.375 50.625 52.875 52.875 50.625 52.875 55.125 55.125 52.875 55.125 57.375 57.375 55.125 57.375 59.625 59.625 57.375 59.625 61.875 61.875 59.625 61.875 64.125 64.125 61.875 64.125 66.375 66.375 64.125 66.375 68.625 68.625 66.375 68.625 70.875 70.875 68.625 70.875 73.125 73.125 70.875 73.125 75.375 75.375 73.125 75.375 77.625 77.625 75.375 77.625 79.875 79.875 77.625 79.875 82.125 82.125 79.875 82.125 84.375 84.375 82.125 84.375 86.625 86.625 84.375 86.625 88.875 88.875 86.625 88.875 91.125 91.125 88.875 91.125 93.375 93.375 91.125 93.375 95.625 95.625 93.375 95.625 97.875 97.875 95.625 97.875 100.125 100.125 97.875 100.125 102.375 102.375 100.125 102.375 104.625 104.625 102.375 104.625 106.875 106.875 104.625 106.875 109.125 109.125 106.875 109.125 111.375 111.375 109.125 111.375 113.625 113.625 111.375 113.625 115.875 115.875 113.625 115.875 118.125 118.125 115.875 118.125 120.375 120.375 118.125 120.375 122.625 122.625 120.375 122.625 124.875 124.875 122.625 124.875 127.125 127.125 124.875 127.125 129.375 129.375 127.125 129.375 131.625 131.625 129.375 131.625 133.875 133.875 131.625 133.875 136.125 136.125 133.875 136.125 138.375 138.375 136.125 138.375 140.625 140.625 138.375 140.625 142.875 142.875 140.625 142.875 145.125 145.125 142.875 145.125 147.375 147.375 145.125 147.375 149.625 149.625 147.375 149.625 151.875 151.875 149.625 151.875 154.125 154.125 151.875 154.125 156.375 156.375 154.125 156.375 158.625 158.625 156.375 158.625 160.875 160.875 158.625 160.875 163.125 163.125 160.875 163.125 165.375 165.375 163.125 165.375 167.625 167.625 165.375 167.625 169.875 169.875 167.625 169.875 172.125 172.125 169.875 172.125 174.375 174.375 172.125 174.375 176.625 176.625 174.375 176.625 178.875 178.875 176.625 178.875 181.125 181.125 178.875 181.125 183.375 183.375 181.125 183.375 185.625 185.625 183.375 185.625 187.875 187.875 185.625 187.875 190.125 190.125 187.875 190.125 192.375 192.375 190.125 192.375 194.625 194.625 192.375 194.625 196.875 196.875 194.625 196.875 199.125 199.125 196.875 199.125 201.375 201.375 199.125 201.375 203.625 203.625 201.375 203.625 205.875 205.875 203.625 205.875 208.125 208.125 205.875 208.125 210.375 210.375 208.125 210.375 212.625 212.625 210.375 212.625 214.875 214.875 212.625 214.875 217.125 217.125 214.875 217.125 219.375 219.375 217.125 219.375 221.625 221.625 219.375 221.625 223.875 223.875 221.625 223.875 226.125 226.125 223.875 226.125 228.375 228.375 226.125 228.375 230.625 230.625 228.375 230.625 232.875 232.875 230.625 232.875 235.125 235.125 232.875 235.125 237.375 237.375 235.125 237.375 239.625 239.625 237.375 239.625 241.875 241.875 239.625 241.875 244.125 244.125 241.875 244.125 246.375 246.375 244.125 246.375 248.625 248.625 246.375 248.625 250.875 250.875 248.625 250.875 253.125 253.125 250.875 253.125 255.375 255.375 253.125 255.375 257.625 257.625 255.375 257.625 259.875 259.875 257.625 259.875 262.125 262.125 259.875 262.125 264.375 264.375 262.125 264.375 266.625 266.625 264.375 266.625 268.875 268.875 266.625 268.875 271.125 271.125 268.875 271.125 273.375 273.375 271.125 273.375 275.625 275.625 273.375 275.625 277.875 277.875 275.625 277.875 280.125 280.125 277.875 280.125 282.375 282.375 280.125 282.375 284.625 284.625 282.375 284.625 286.875 286.875 284.625 286.875 289.125 289.125 286.875 289.125 291.375 291.375 289.125 291.375 293.625 293.625 291.375 293.625 295.875 295.875 293.625 295.875 298.125 298.125 295.875 298.125 300.375 300.375 298.125 300.375 302.625 302.625 300.375 302.625 304.875 304.875 302.625 304.875 307.125 307.125 304.875 307.125 309.375 309.375 307.125 309.375 311.625 311.625 309.375 311.625 313.875 313.875 311.625 313.875 316.125 316.125 313.875 316.125 318.375 318.375 316.125 318.375 320.625 320.625 318.375 320.625 322.875 322.875 320.625 322.875 325.125 325.125 322.875 325.125 327.375 327.375 325.125 327.375 329.625 329.625 327.375 329.625 331.875 331.875 329.625 331.875 334.125 334.125 331.875 334.125 336.375 336.375 334.125 336.375 338.625 338.625 336.375 338.625 340.875 340.875 338.625 340.875 343.125 343.125 340.875 343.125 345.375 345.375 343.125 345.375 347.625 347.625 345.375 347.625 349.875 349.875 347.625 349.875 352.125 352.125 349.875 352.125 354.375 354.375 352.125 354.375 356.625 356.625 354.375 356.625 358.875 358.875 356.625 -1.2 1.2 1.2 -1.2 1.20000009537 3.60000009537 3.60000009537 1.20000009537 3.60000019073 6.00000019073 6.00000019073 3.60000019073 5.99999980927 8.39999980927 8.39999980927 5.99999980927 8.40000038147 10.8000003815 10.8000003815 8.40000038147 10.8 13.2 13.2 10.8 13.1999996185 15.5999996185 15.5999996185 13.1999996185 15.5999992371 17.9999992371 17.9999992371 15.5999992371 18.0000007629 20.4000007629 20.4000007629 18.0000007629 20.4000003815 22.8000003815 22.8000003815 20.4000003815 22.8 25.2 25.2 22.8 25.1999996185 27.5999996185 27.5999996185 25.1999996185 27.5999992371 29.9999992371 29.9999992371 27.5999992371 30.0000007629 32.4000007629 32.4000007629 30.0000007629 32.3999984741 34.7999984741 34.7999984741 32.3999984741 34.8 37.2 37.2 34.8 37.2000015259 39.6000015259 39.6000015259 37.2000015259 39.5999992371 41.9999992371 41.9999992371 39.5999992371 42.0000007629 44.4000007629 44.4000007629 42.0000007629 44.3999984741 46.7999984741 46.7999984741 44.3999984741 46.8 49.2 49.2 46.8 49.2000015259 51.6000015259 51.6000015259 49.2000015259 51.5999992371 53.9999992371 53.9999992371 51.5999992371 54.0000007629 56.4000007629 56.4000007629 54.0000007629 56.3999984741 58.7999984741 58.7999984741 56.3999984741 58.8 61.2 61.2 58.8 61.2000015259 63.6000015259 63.6000015259 61.2000015259 63.6000030518 66.0000030518 66.0000030518 63.6000030518 65.9999969482 68.3999969482 68.3999969482 65.9999969482 68.3999984741 70.7999984741 70.7999984741 68.3999984741 70.8 73.2 73.2 70.8 73.2000015259 75.6000015259 75.6000015259 73.2000015259 75.6000030518 78.0000030518 78.0000030518 75.6000030518 77.9999969482 80.3999969482 80.3999969482 77.9999969482 80.3999984741 82.7999984741 82.7999984741 80.3999984741 82.8 85.2 85.2 82.8 85.2000015259 87.6000015259 87.6000015259 85.2000015259 87.6000030518 90.0000030518 90.0000030518 87.6000030518 89.9999969482 92.3999969482 92.3999969482 89.9999969482 92.3999984741 94.7999984741 94.7999984741 92.3999984741 94.8 97.2 97.2 94.8 97.2000015259 99.6000015259 99.6000015259 97.2000015259 99.6000030518 102.000003052 102.000003052 99.6000030518 101.999996948 104.399996948 104.399996948 101.999996948 104.399998474 106.799998474 106.799998474 104.399998474 106.8 109.2 109.2 106.8 109.200001526 111.600001526 111.600001526 109.200001526 111.600003052 114.000003052 114.000003052 111.600003052 113.999996948 116.399996948 116.399996948 113.999996948 116.399998474 118.799998474 118.799998474 116.399998474 118.8 121.2 121.2 118.8 121.200001526 123.600001526 123.600001526 121.200001526 123.600003052 126.000003052 126.000003052 123.600003052 125.999996948 128.399996948 128.399996948 125.999996948 128.400006104 130.800006104 130.800006104 128.400006104 130.8 133.2 133.2 130.8 133.199993896 135.599993896 135.599993896 133.199993896 135.600003052 138.000003052 138.000003052 135.600003052 137.999996948 140.399996948 140.399996948 137.999996948 140.400006104 142.800006104 142.800006104 140.400006104 142.8 145.2 145.2 142.8 145.199993896 147.599993896 147.599993896 145.199993896 147.600003052 150.000003052 150.000003052 147.600003052 149.999996948 152.399996948 152.399996948 149.999996948 152.400006104 154.800006104 154.800006104 152.400006104 154.8 157.2 157.2 154.8 157.199993896 159.599993896 159.599993896 157.199993896 159.600003052 162.000003052 162.000003052 159.600003052 161.999996948 164.399996948 164.399996948 161.999996948 164.400006104 166.800006104 166.800006104 164.400006104 166.8 169.2 169.2 166.8 169.199993896 171.599993896 171.599993896 169.199993896 171.600003052 174.000003052 174.000003052 171.600003052 173.999996948 176.399996948 176.399996948 173.999996948 176.400006104 178.800006104 178.800006104 176.400006104 178.8 181.2 181.2 178.8 181.199993896 183.599993896 183.599993896 181.199993896 183.600003052 186.000003052 186.000003052 183.600003052 185.999996948 188.399996948 188.399996948 185.999996948 188.400006104 190.800006104 190.800006104 188.400006104 190.8 193.2 193.2 190.8 193.199993896 195.599993896 195.599993896 193.199993896 195.600003052 198.000003052 198.000003052 195.600003052 197.999996948 200.399996948 200.399996948 197.999996948 200.400006104 202.800006104 202.800006104 200.400006104 202.8 205.2 205.2 202.8 205.199993896 207.599993896 207.599993896 205.199993896 207.600003052 210.000003052 210.000003052 207.600003052 209.999996948 212.399996948 212.399996948 209.999996948 212.400006104 214.800006104 214.800006104 212.400006104 214.8 217.2 217.2 214.8 217.199993896 219.599993896 219.599993896 217.199993896 219.600003052 222.000003052 222.000003052 219.600003052 221.999996948 224.399996948 224.399996948 221.999996948 224.400006104 226.800006104 226.800006104 224.400006104 226.8 229.2 229.2 226.8 229.199993896 231.599993896 231.599993896 229.199993896 231.600003052 234.000003052 234.000003052 231.600003052 233.999996948 236.399996948 236.399996948 233.999996948 236.400006104 238.800006104 238.800006104 236.400006104 238.8 241.2 241.2 238.8 241.199993896 243.599993896 243.599993896 241.199993896 243.600003052 246.000003052 246.000003052 243.600003052 245.999996948 248.399996948 248.399996948 245.999996948 248.400006104 250.800006104 250.800006104 248.400006104 250.8 253.2 253.2 250.8 253.199993896 255.599993896 255.599993896 253.199993896 255.599987793 257.999987793 257.999987793 255.599987793 258.000012207 260.400012207 260.400012207 258.000012207 260.400006104 262.800006104 262.800006104 260.400006104 262.8 265.2 265.2 262.8 265.199993896 267.599993896 267.599993896 265.199993896 267.599987793 269.999987793 269.999987793 267.599987793 270.000012207 272.400012207 272.400012207 270.000012207 272.400006104 274.800006104 274.800006104 272.400006104 274.8 277.2 277.2 274.8 277.199993896 279.599993896 279.599993896 277.199993896 279.599987793 281.999987793 281.999987793 279.599987793 282.000012207 284.400012207 284.400012207 282.000012207 284.400006104 286.800006104 286.800006104 284.400006104 286.8 289.2 289.2 286.8 289.199993896 291.599993896 291.599993896 289.199993896 291.599987793 293.999987793 293.999987793 291.599987793 294.000012207 296.400012207 296.400012207 294.000012207 296.400006104 298.800006104 298.800006104 296.400006104 298.8 301.2 301.2 298.8 301.199993896 303.599993896 303.599993896 301.199993896 303.599987793 305.999987793 305.999987793 303.599987793 306.000012207 308.400012207 308.400012207 306.000012207 308.400006104 310.800006104 310.800006104 308.400006104 310.8 313.2 313.2 310.8 313.199993896 315.599993896 315.599993896 313.199993896 315.599987793 317.999987793 317.999987793 315.599987793 318.000012207 320.400012207 320.400012207 318.000012207 320.400006104 322.800006104 322.800006104 320.400006104 322.8 325.2 325.2 322.8 325.199993896 327.599993896 327.599993896 325.199993896 327.599987793 329.999987793 329.999987793 327.599987793 330.000012207 332.400012207 332.400012207 330.000012207 332.400006104 334.800006104 334.800006104 332.400006104 334.8 337.2 337.2 334.8 337.199993896 339.599993896 339.599993896 337.199993896 339.599987793 341.999987793 341.999987793 339.599987793 342.000012207 344.400012207 344.400012207 342.000012207 344.400006104 346.800006104 346.800006104 344.400006104 346.8 349.2 349.2 346.8 349.199993896 351.599993896 351.599993896 349.199993896 351.599987793 353.999987793 353.999987793 351.599987793 354.000012207 356.400012207 356.400012207 354.000012207 356.400006104 358.800006104 358.800006104 356.400006104 -1.25 1.25 1.25 -1.25 1.25 3.75 3.75 1.25 3.75 6.25 6.25 3.75 6.25 8.75 8.75 6.25 8.75 11.25 11.25 8.75 11.25 13.75 13.75 11.25 13.75 16.25 16.25 13.75 16.25 18.75 18.75 16.25 18.75 21.25 21.25 18.75 21.25 23.75 23.75 21.25 23.75 26.25 26.25 23.75 26.25 28.75 28.75 26.25 28.75 31.25 31.25 28.75 31.25 33.75 33.75 31.25 33.75 36.25 36.25 33.75 36.25 38.75 38.75 36.25 38.75 41.25 41.25 38.75 41.25 43.75 43.75 41.25 43.75 46.25 46.25 43.75 46.25 48.75 48.75 46.25 48.75 51.25 51.25 48.75 51.25 53.75 53.75 51.25 53.75 56.25 56.25 53.75 56.25 58.75 58.75 56.25 58.75 61.25 61.25 58.75 61.25 63.75 63.75 61.25 63.75 66.25 66.25 63.75 66.25 68.75 68.75 66.25 68.75 71.25 71.25 68.75 71.25 73.75 73.75 71.25 73.75 76.25 76.25 73.75 76.25 78.75 78.75 76.25 78.75 81.25 81.25 78.75 +81.25 83.75 83.75 81.25 83.75 86.25 86.25 83.75 86.25 88.75 88.75 86.25 88.75 91.25 91.25 88.75 91.25 93.75 93.75 91.25 93.75 96.25 96.25 93.75 96.25 98.75 98.75 96.25 98.75 101.25 101.25 98.75 101.25 103.75 103.75 101.25 103.75 106.25 106.25 103.75 106.25 108.75 108.75 106.25 108.75 111.25 111.25 108.75 111.25 113.75 113.75 111.25 113.75 116.25 116.25 113.75 116.25 118.75 118.75 116.25 118.75 121.25 121.25 118.75 121.25 123.75 123.75 121.25 123.75 126.25 126.25 123.75 126.25 128.75 128.75 126.25 128.75 131.25 131.25 128.75 131.25 133.75 133.75 131.25 133.75 136.25 136.25 133.75 136.25 138.75 138.75 136.25 138.75 141.25 141.25 138.75 141.25 143.75 143.75 141.25 143.75 146.25 146.25 143.75 146.25 148.75 148.75 146.25 148.75 151.25 151.25 148.75 151.25 153.75 153.75 151.25 153.75 156.25 156.25 153.75 156.25 158.75 158.75 156.25 158.75 161.25 161.25 158.75 161.25 163.75 163.75 161.25 163.75 166.25 166.25 163.75 166.25 168.75 168.75 166.25 168.75 171.25 171.25 168.75 171.25 173.75 173.75 171.25 173.75 176.25 176.25 173.75 176.25 178.75 178.75 176.25 178.75 181.25 181.25 178.75 181.25 183.75 183.75 181.25 183.75 186.25 186.25 183.75 186.25 188.75 188.75 186.25 188.75 191.25 191.25 188.75 191.25 193.75 193.75 191.25 193.75 196.25 196.25 193.75 196.25 198.75 198.75 196.25 198.75 201.25 201.25 198.75 201.25 203.75 203.75 201.25 203.75 206.25 206.25 203.75 206.25 208.75 208.75 206.25 208.75 211.25 211.25 208.75 211.25 213.75 213.75 211.25 213.75 216.25 216.25 213.75 216.25 218.75 218.75 216.25 218.75 221.25 221.25 218.75 221.25 223.75 223.75 221.25 223.75 226.25 226.25 223.75 226.25 228.75 228.75 226.25 228.75 231.25 231.25 228.75 231.25 233.75 233.75 231.25 233.75 236.25 236.25 233.75 236.25 238.75 238.75 236.25 238.75 241.25 241.25 238.75 241.25 243.75 243.75 241.25 243.75 246.25 246.25 243.75 246.25 248.75 248.75 246.25 248.75 251.25 251.25 248.75 251.25 253.75 253.75 251.25 253.75 256.25 256.25 253.75 256.25 258.75 258.75 256.25 258.75 261.25 261.25 258.75 261.25 263.75 263.75 261.25 263.75 266.25 266.25 263.75 266.25 268.75 268.75 266.25 268.75 271.25 271.25 268.75 271.25 273.75 273.75 271.25 273.75 276.25 276.25 273.75 276.25 278.75 278.75 276.25 278.75 281.25 281.25 278.75 281.25 283.75 283.75 281.25 283.75 286.25 286.25 283.75 286.25 288.75 288.75 286.25 288.75 291.25 291.25 288.75 291.25 293.75 293.75 291.25 293.75 296.25 296.25 293.75 296.25 298.75 298.75 296.25 298.75 301.25 301.25 298.75 301.25 303.75 303.75 301.25 303.75 306.25 306.25 303.75 306.25 308.75 308.75 306.25 308.75 311.25 311.25 308.75 311.25 313.75 313.75 311.25 313.75 316.25 316.25 313.75 316.25 318.75 318.75 316.25 318.75 321.25 321.25 318.75 321.25 323.75 323.75 321.25 323.75 326.25 326.25 323.75 326.25 328.75 328.75 326.25 328.75 331.25 331.25 328.75 331.25 333.75 333.75 331.25 333.75 336.25 336.25 333.75 336.25 338.75 338.75 336.25 338.75 341.25 341.25 338.75 341.25 343.75 343.75 341.25 343.75 346.25 346.25 343.75 346.25 348.75 348.75 346.25 348.75 351.25 351.25 348.75 351.25 353.75 353.75 351.25 353.75 356.25 356.25 353.75 356.25 358.75 358.75 356.25 -1.25 1.25 1.25 -1.25 1.25 3.75 3.75 1.25 3.75 6.25 6.25 3.75 6.25 8.75 8.75 6.25 8.75 11.25 11.25 8.75 11.25 13.75 13.75 11.25 13.75 16.25 16.25 13.75 16.25 18.75 18.75 16.25 18.75 21.25 21.25 18.75 21.25 23.75 23.75 21.25 23.75 26.25 26.25 23.75 26.25 28.75 28.75 26.25 28.75 31.25 31.25 28.75 31.25 33.75 33.75 31.25 33.75 36.25 36.25 33.75 36.25 38.75 38.75 36.25 38.75 41.25 41.25 38.75 41.25 43.75 43.75 41.25 43.75 46.25 46.25 43.75 46.25 48.75 48.75 46.25 48.75 51.25 51.25 48.75 51.25 53.75 53.75 51.25 53.75 56.25 56.25 53.75 56.25 58.75 58.75 56.25 58.75 61.25 61.25 58.75 61.25 63.75 63.75 61.25 63.75 66.25 66.25 63.75 66.25 68.75 68.75 66.25 68.75 71.25 71.25 68.75 71.25 73.75 73.75 71.25 73.75 76.25 76.25 73.75 76.25 78.75 78.75 76.25 78.75 81.25 81.25 78.75 81.25 83.75 83.75 81.25 83.75 86.25 86.25 83.75 86.25 88.75 88.75 86.25 88.75 91.25 91.25 88.75 91.25 93.75 93.75 91.25 93.75 96.25 96.25 93.75 96.25 98.75 98.75 96.25 98.75 101.25 101.25 98.75 101.25 103.75 103.75 101.25 103.75 106.25 106.25 103.75 106.25 108.75 108.75 106.25 108.75 111.25 111.25 108.75 111.25 113.75 113.75 111.25 113.75 116.25 116.25 113.75 116.25 118.75 118.75 116.25 118.75 121.25 121.25 118.75 121.25 123.75 123.75 121.25 123.75 126.25 126.25 123.75 126.25 128.75 128.75 126.25 128.75 131.25 131.25 128.75 131.25 133.75 133.75 131.25 133.75 136.25 136.25 133.75 136.25 138.75 138.75 136.25 138.75 141.25 141.25 138.75 141.25 143.75 143.75 141.25 143.75 146.25 146.25 143.75 146.25 148.75 148.75 146.25 148.75 151.25 151.25 148.75 151.25 153.75 153.75 151.25 153.75 156.25 156.25 153.75 156.25 158.75 158.75 156.25 158.75 161.25 161.25 158.75 161.25 163.75 163.75 161.25 163.75 166.25 166.25 163.75 166.25 168.75 168.75 166.25 168.75 171.25 171.25 168.75 171.25 173.75 173.75 171.25 173.75 176.25 176.25 173.75 176.25 178.75 178.75 176.25 178.75 181.25 181.25 178.75 181.25 183.75 183.75 181.25 183.75 186.25 186.25 183.75 186.25 188.75 188.75 186.25 188.75 191.25 191.25 188.75 191.25 193.75 193.75 191.25 193.75 196.25 196.25 193.75 196.25 198.75 198.75 196.25 198.75 201.25 201.25 198.75 201.25 203.75 203.75 201.25 203.75 206.25 206.25 203.75 206.25 208.75 208.75 206.25 208.75 211.25 211.25 208.75 211.25 213.75 213.75 211.25 213.75 216.25 216.25 213.75 216.25 218.75 218.75 216.25 218.75 221.25 221.25 218.75 221.25 223.75 223.75 221.25 223.75 226.25 226.25 223.75 226.25 228.75 228.75 226.25 228.75 231.25 231.25 228.75 231.25 233.75 233.75 231.25 233.75 236.25 236.25 233.75 236.25 238.75 238.75 236.25 238.75 241.25 241.25 238.75 241.25 243.75 243.75 241.25 243.75 246.25 246.25 243.75 246.25 248.75 248.75 246.25 248.75 251.25 251.25 248.75 251.25 253.75 253.75 251.25 253.75 256.25 256.25 253.75 256.25 258.75 258.75 256.25 258.75 261.25 261.25 258.75 261.25 263.75 263.75 261.25 263.75 266.25 266.25 263.75 266.25 268.75 268.75 266.25 268.75 271.25 271.25 268.75 271.25 273.75 273.75 271.25 273.75 276.25 276.25 273.75 276.25 278.75 278.75 276.25 278.75 281.25 281.25 278.75 281.25 283.75 283.75 281.25 283.75 286.25 286.25 283.75 286.25 288.75 288.75 286.25 288.75 291.25 291.25 288.75 291.25 293.75 293.75 291.25 293.75 296.25 296.25 293.75 296.25 298.75 298.75 296.25 298.75 301.25 301.25 298.75 301.25 303.75 303.75 301.25 303.75 306.25 306.25 303.75 306.25 308.75 308.75 306.25 308.75 311.25 311.25 308.75 311.25 313.75 313.75 311.25 313.75 316.25 316.25 313.75 316.25 318.75 318.75 316.25 318.75 321.25 321.25 318.75 321.25 323.75 323.75 321.25 323.75 326.25 326.25 323.75 326.25 328.75 328.75 326.25 328.75 331.25 331.25 328.75 331.25 333.75 333.75 331.25 333.75 336.25 336.25 333.75 336.25 338.75 338.75 336.25 338.75 341.25 341.25 338.75 341.25 343.75 343.75 341.25 343.75 346.25 346.25 343.75 346.25 348.75 348.75 346.25 348.75 351.25 351.25 348.75 351.25 353.75 353.75 351.25 353.75 356.25 356.25 353.75 356.25 358.75 358.75 356.25 -1.33333333333 1.33333333333 1.33333333333 -1.33333333333 1.33333341281 4.00000007947 4.00000007947 1.33333341281 4.00000015895 6.66666682561 6.66666682561 4.00000015895 6.66666666667 9.33333333333 9.33333333333 6.66666666667 9.33333365122 12.0000003179 12.0000003179 9.33333365122 11.9999996821 14.6666663488 14.6666663488 11.9999996821 14.6666666667 17.3333333333 17.3333333333 14.6666666667 17.3333326976 19.9999993642 19.9999993642 17.3333326976 20.0000006358 22.6666673024 22.6666673024 20.0000006358 22.6666666667 25.3333333333 25.3333333333 22.6666666667 25.3333326976 27.9999993642 27.9999993642 25.3333326976 28.0000006358 30.6666673024 30.6666673024 28.0000006358 30.6666666667 33.3333333333 33.3333333333 30.6666666667 33.3333346049 36.0000012716 36.0000012716 33.3333346049 35.9999987284 38.6666653951 38.6666653951 35.9999987284 38.6666666667 41.3333333333 41.3333333333 38.6666666667 41.3333346049 44.0000012716 44.0000012716 41.3333346049 43.9999987284 46.6666653951 46.6666653951 43.9999987284 46.6666666667 49.3333333333 49.3333333333 46.6666666667 49.3333346049 52.0000012716 52.0000012716 49.3333346049 51.9999987284 54.6666653951 54.6666653951 51.9999987284 54.6666666667 57.3333333333 57.3333333333 54.6666666667 57.3333346049 60.0000012716 60.0000012716 57.3333346049 59.9999987284 62.6666653951 62.6666653951 59.9999987284 62.6666666667 65.3333333333 65.3333333333 62.6666666667 65.3333307902 67.9999974569 67.9999974569 65.3333307902 68.0000025431 70.6666692098 70.6666692098 68.0000025431 70.6666666667 73.3333333333 73.3333333333 70.6666666667 73.3333307902 75.9999974569 75.9999974569 73.3333307902 76.0000025431 78.6666692098 78.6666692098 76.0000025431 78.6666666667 81.3333333333 81.3333333333 78.6666666667 81.3333307902 83.9999974569 83.9999974569 81.3333307902 84.0000025431 86.6666692098 86.6666692098 84.0000025431 86.6666666667 89.3333333333 89.3333333333 86.6666666667 89.3333307902 91.9999974569 91.9999974569 89.3333307902 92.0000025431 94.6666692098 94.6666692098 92.0000025431 94.6666666667 97.3333333333 97.3333333333 94.6666666667 97.3333307902 99.9999974569 99.9999974569 97.3333307902 100.000002543 102.66666921 102.66666921 100.000002543 102.666666667 105.333333333 105.333333333 102.666666667 105.33333079 107.999997457 107.999997457 105.33333079 108.000002543 110.66666921 110.66666921 108.000002543 110.666666667 113.333333333 113.333333333 110.666666667 113.33333079 115.999997457 115.999997457 113.33333079 116.000002543 118.66666921 118.66666921 116.000002543 118.666666667 121.333333333 121.333333333 118.666666667 121.33333079 123.999997457 123.999997457 121.33333079 124.000002543 126.66666921 126.66666921 124.000002543 126.666666667 129.333333333 129.333333333 126.666666667 129.33333842 132.000005086 132.000005086 129.33333842 131.999994914 134.66666158 134.66666158 131.999994914 134.666666667 137.333333333 137.333333333 134.666666667 137.33333842 140.000005086 140.000005086 137.33333842 139.999994914 142.66666158 142.66666158 139.999994914 142.666666667 145.333333333 145.333333333 142.666666667 145.33333842 148.000005086 148.000005086 145.33333842 147.999994914 150.66666158 150.66666158 147.999994914 150.666666667 153.333333333 153.333333333 150.666666667 153.33333842 156.000005086 156.000005086 153.33333842 155.999994914 158.66666158 158.66666158 155.999994914 158.666666667 161.333333333 161.333333333 158.666666667 161.33333842 164.000005086 164.000005086 161.33333842 163.999994914 166.66666158 166.66666158 163.999994914 166.666666667 169.333333333 169.333333333 166.666666667 169.33333842 172.000005086 172.000005086 169.33333842 171.999994914 174.66666158 174.66666158 171.999994914 174.666666667 177.333333333 177.333333333 174.666666667 177.33333842 180.000005086 180.000005086 177.33333842 179.999994914 182.66666158 182.66666158 179.999994914 182.666666667 185.333333333 185.333333333 182.666666667 185.33333842 188.000005086 188.000005086 185.33333842 187.999994914 190.66666158 190.66666158 187.999994914 190.666666667 193.333333333 193.333333333 190.666666667 193.33333842 196.000005086 196.000005086 193.33333842 195.999994914 198.66666158 198.66666158 195.999994914 198.666666667 201.333333333 201.333333333 198.666666667 201.33333842 204.000005086 204.000005086 201.33333842 203.999994914 206.66666158 206.66666158 203.999994914 206.666666667 209.333333333 209.333333333 206.666666667 209.33333842 212.000005086 212.000005086 209.33333842 211.999994914 214.66666158 214.66666158 211.999994914 214.666666667 217.333333333 217.333333333 214.666666667 217.33333842 220.000005086 220.000005086 217.33333842 219.999994914 222.66666158 222.66666158 219.999994914 222.666666667 225.333333333 225.333333333 222.666666667 225.33333842 228.000005086 228.000005086 225.33333842 227.999994914 230.66666158 230.66666158 227.999994914 230.666666667 233.333333333 233.333333333 230.666666667 233.33333842 236.000005086 236.000005086 233.33333842 235.999994914 238.66666158 238.66666158 235.999994914 238.666666667 241.333333333 241.333333333 238.666666667 241.33333842 244.000005086 244.000005086 241.33333842 243.999994914 246.66666158 246.66666158 243.999994914 246.666666667 249.333333333 249.333333333 246.666666667 249.33333842 252.000005086 252.000005086 249.33333842 251.999994914 254.66666158 254.66666158 251.999994914 254.666666667 257.333333333 257.333333333 254.666666667 257.333323161 259.999989827 259.999989827 257.333323161 260.000010173 262.666676839 262.666676839 260.000010173 262.666666667 265.333333333 265.333333333 262.666666667 265.333323161 267.999989827 267.999989827 265.333323161 268.000010173 270.666676839 270.666676839 268.000010173 270.666666667 273.333333333 273.333333333 270.666666667 273.333323161 275.999989827 275.999989827 273.333323161 276.000010173 278.666676839 278.666676839 276.000010173 278.666666667 281.333333333 281.333333333 278.666666667 281.333323161 283.999989827 283.999989827 281.333323161 284.000010173 286.666676839 286.666676839 284.000010173 286.666666667 289.333333333 289.333333333 286.666666667 289.333323161 291.999989827 291.999989827 289.333323161 292.000010173 294.666676839 294.666676839 292.000010173 294.666666667 297.333333333 297.333333333 294.666666667 297.333323161 299.999989827 299.999989827 297.333323161 300.000010173 302.666676839 302.666676839 300.000010173 302.666666667 305.333333333 305.333333333 302.666666667 305.333323161 307.999989827 307.999989827 305.333323161 308.000010173 310.666676839 310.666676839 308.000010173 310.666666667 313.333333333 313.333333333 310.666666667 313.333323161 315.999989827 315.999989827 313.333323161 316.000010173 318.666676839 318.666676839 316.000010173 318.666666667 321.333333333 321.333333333 318.666666667 321.333323161 323.999989827 323.999989827 321.333323161 324.000010173 326.666676839 326.666676839 324.000010173 326.666666667 329.333333333 329.333333333 326.666666667 329.333323161 331.999989827 331.999989827 329.333323161 332.000010173 334.666676839 334.666676839 332.000010173 334.666666667 337.333333333 337.333333333 334.666666667 337.333323161 339.999989827 339.999989827 337.333323161 340.000010173 342.666676839 342.666676839 340.000010173 342.666666667 345.333333333 345.333333333 342.666666667 345.333323161 347.999989827 347.999989827 345.333323161 348.000010173 350.666676839 350.666676839 348.000010173 350.666666667 353.333333333 353.333333333 350.666666667 353.333323161 355.999989827 355.999989827 353.333323161 356.000010173 358.666676839 358.666676839 356.000010173 -1.40625 1.40625 1.40625 -1.40625 1.40625 4.21875 4.21875 1.40625 4.21875 7.03125 7.03125 4.21875 7.03125 9.84375 9.84375 7.03125 9.84375 12.65625 12.65625 9.84375 12.65625 15.46875 15.46875 12.65625 15.46875 18.28125 18.28125 15.46875 18.28125 21.09375 21.09375 18.28125 21.09375 23.90625 23.90625 21.09375 23.90625 26.71875 26.71875 23.90625 26.71875 29.53125 29.53125 26.71875 29.53125 32.34375 32.34375 29.53125 32.34375 35.15625 35.15625 32.34375 35.15625 37.96875 37.96875 35.15625 37.96875 40.78125 40.78125 37.96875 40.78125 43.59375 43.59375 40.78125 43.59375 46.40625 46.40625 43.59375 46.40625 49.21875 49.21875 46.40625 49.21875 52.03125 52.03125 49.21875 52.03125 54.84375 54.84375 52.03125 54.84375 57.65625 57.65625 54.84375 57.65625 60.46875 60.46875 57.65625 60.46875 63.28125 63.28125 60.46875 63.28125 66.09375 66.09375 63.28125 66.09375 68.90625 68.90625 66.09375 68.90625 71.71875 71.71875 68.90625 71.71875 74.53125 74.53125 71.71875 74.53125 77.34375 77.34375 74.53125 77.34375 80.15625 80.15625 77.34375 80.15625 82.96875 82.96875 80.15625 82.96875 85.78125 85.78125 82.96875 85.78125 88.59375 88.59375 85.78125 88.59375 91.40625 91.40625 88.59375 91.40625 94.21875 94.21875 91.40625 94.21875 97.03125 97.03125 94.21875 97.03125 99.84375 99.84375 97.03125 99.84375 102.65625 102.65625 99.84375 102.65625 105.46875 105.46875 102.65625 105.46875 108.28125 108.28125 105.46875 108.28125 111.09375 111.09375 108.28125 111.09375 113.90625 113.90625 111.09375 113.90625 116.71875 116.71875 113.90625 116.71875 119.53125 119.53125 116.71875 119.53125 122.34375 122.34375 119.53125 122.34375 125.15625 125.15625 122.34375 125.15625 127.96875 127.96875 125.15625 127.96875 130.78125 130.78125 127.96875 130.78125 133.59375 133.59375 130.78125 133.59375 136.40625 136.40625 133.59375 136.40625 139.21875 139.21875 136.40625 139.21875 142.03125 142.03125 139.21875 142.03125 144.84375 144.84375 142.03125 144.84375 147.65625 147.65625 144.84375 147.65625 150.46875 150.46875 147.65625 150.46875 153.28125 153.28125 150.46875 153.28125 156.09375 156.09375 153.28125 156.09375 158.90625 158.90625 156.09375 158.90625 161.71875 161.71875 158.90625 161.71875 164.53125 164.53125 161.71875 164.53125 167.34375 167.34375 164.53125 167.34375 170.15625 170.15625 167.34375 170.15625 172.96875 172.96875 170.15625 172.96875 175.78125 175.78125 172.96875 175.78125 178.59375 178.59375 175.78125 178.59375 181.40625 181.40625 178.59375 181.40625 184.21875 184.21875 181.40625 184.21875 187.03125 187.03125 184.21875 187.03125 189.84375 189.84375 187.03125 189.84375 192.65625 192.65625 189.84375 192.65625 195.46875 195.46875 192.65625 195.46875 198.28125 198.28125 195.46875 198.28125 201.09375 201.09375 198.28125 201.09375 203.90625 203.90625 201.09375 203.90625 206.71875 206.71875 203.90625 206.71875 209.53125 209.53125 206.71875 209.53125 212.34375 212.34375 209.53125 212.34375 215.15625 215.15625 212.34375 215.15625 217.96875 217.96875 215.15625 217.96875 220.78125 220.78125 217.96875 220.78125 223.59375 223.59375 220.78125 223.59375 226.40625 226.40625 223.59375 226.40625 229.21875 229.21875 226.40625 229.21875 232.03125 232.03125 229.21875 232.03125 234.84375 234.84375 232.03125 234.84375 237.65625 237.65625 234.84375 237.65625 240.46875 240.46875 237.65625 240.46875 243.28125 243.28125 240.46875 243.28125 246.09375 246.09375 243.28125 246.09375 248.90625 248.90625 246.09375 248.90625 251.71875 251.71875 248.90625 251.71875 254.53125 254.53125 251.71875 254.53125 257.34375 257.34375 254.53125 257.34375 260.15625 260.15625 257.34375 260.15625 262.96875 262.96875 260.15625 262.96875 265.78125 265.78125 262.96875 265.78125 268.59375 268.59375 265.78125 268.59375 271.40625 271.40625 268.59375 271.40625 274.21875 274.21875 271.40625 274.21875 277.03125 277.03125 274.21875 277.03125 279.84375 279.84375 277.03125 279.84375 282.65625 282.65625 279.84375 282.65625 285.46875 285.46875 282.65625 285.46875 288.28125 288.28125 285.46875 288.28125 291.09375 291.09375 288.28125 291.09375 293.90625 293.90625 291.09375 293.90625 296.71875 296.71875 293.90625 296.71875 299.53125 299.53125 296.71875 299.53125 302.34375 302.34375 299.53125 302.34375 305.15625 305.15625 302.34375 305.15625 307.96875 307.96875 305.15625 +307.96875 310.78125 310.78125 307.96875 310.78125 313.59375 313.59375 310.78125 313.59375 316.40625 316.40625 313.59375 316.40625 319.21875 319.21875 316.40625 319.21875 322.03125 322.03125 319.21875 322.03125 324.84375 324.84375 322.03125 324.84375 327.65625 327.65625 324.84375 327.65625 330.46875 330.46875 327.65625 330.46875 333.28125 333.28125 330.46875 333.28125 336.09375 336.09375 333.28125 336.09375 338.90625 338.90625 336.09375 338.90625 341.71875 341.71875 338.90625 341.71875 344.53125 344.53125 341.71875 344.53125 347.34375 347.34375 344.53125 347.34375 350.15625 350.15625 347.34375 350.15625 352.96875 352.96875 350.15625 352.96875 355.78125 355.78125 352.96875 355.78125 358.59375 358.59375 355.78125 -1.5 1.5 1.5 -1.5 1.5 4.5 4.5 1.5 4.5 7.5 7.5 4.5 7.5 10.5 10.5 7.5 10.5 13.5 13.5 10.5 13.5 16.5 16.5 13.5 16.5 19.5 19.5 16.5 19.5 22.5 22.5 19.5 22.5 25.5 25.5 22.5 25.5 28.5 28.5 25.5 28.5 31.5 31.5 28.5 31.5 34.5 34.5 31.5 34.5 37.5 37.5 34.5 37.5 40.5 40.5 37.5 40.5 43.5 43.5 40.5 43.5 46.5 46.5 43.5 46.5 49.5 49.5 46.5 49.5 52.5 52.5 49.5 52.5 55.5 55.5 52.5 55.5 58.5 58.5 55.5 58.5 61.5 61.5 58.5 61.5 64.5 64.5 61.5 64.5 67.5 67.5 64.5 67.5 70.5 70.5 67.5 70.5 73.5 73.5 70.5 73.5 76.5 76.5 73.5 76.5 79.5 79.5 76.5 79.5 82.5 82.5 79.5 82.5 85.5 85.5 82.5 85.5 88.5 88.5 85.5 88.5 91.5 91.5 88.5 91.5 94.5 94.5 91.5 94.5 97.5 97.5 94.5 97.5 100.5 100.5 97.5 100.5 103.5 103.5 100.5 103.5 106.5 106.5 103.5 106.5 109.5 109.5 106.5 109.5 112.5 112.5 109.5 112.5 115.5 115.5 112.5 115.5 118.5 118.5 115.5 118.5 121.5 121.5 118.5 121.5 124.5 124.5 121.5 124.5 127.5 127.5 124.5 127.5 130.5 130.5 127.5 130.5 133.5 133.5 130.5 133.5 136.5 136.5 133.5 136.5 139.5 139.5 136.5 139.5 142.5 142.5 139.5 142.5 145.5 145.5 142.5 145.5 148.5 148.5 145.5 148.5 151.5 151.5 148.5 151.5 154.5 154.5 151.5 154.5 157.5 157.5 154.5 157.5 160.5 160.5 157.5 160.5 163.5 163.5 160.5 163.5 166.5 166.5 163.5 166.5 169.5 169.5 166.5 169.5 172.5 172.5 169.5 172.5 175.5 175.5 172.5 175.5 178.5 178.5 175.5 178.5 181.5 181.5 178.5 181.5 184.5 184.5 181.5 184.5 187.5 187.5 184.5 187.5 190.5 190.5 187.5 190.5 193.5 193.5 190.5 193.5 196.5 196.5 193.5 196.5 199.5 199.5 196.5 199.5 202.5 202.5 199.5 202.5 205.5 205.5 202.5 205.5 208.5 208.5 205.5 208.5 211.5 211.5 208.5 211.5 214.5 214.5 211.5 214.5 217.5 217.5 214.5 217.5 220.5 220.5 217.5 220.5 223.5 223.5 220.5 223.5 226.5 226.5 223.5 226.5 229.5 229.5 226.5 229.5 232.5 232.5 229.5 232.5 235.5 235.5 232.5 235.5 238.5 238.5 235.5 238.5 241.5 241.5 238.5 241.5 244.5 244.5 241.5 244.5 247.5 247.5 244.5 247.5 250.5 250.5 247.5 250.5 253.5 253.5 250.5 253.5 256.5 256.5 253.5 256.5 259.5 259.5 256.5 259.5 262.5 262.5 259.5 262.5 265.5 265.5 262.5 265.5 268.5 268.5 265.5 268.5 271.5 271.5 268.5 271.5 274.5 274.5 271.5 274.5 277.5 277.5 274.5 277.5 280.5 280.5 277.5 280.5 283.5 283.5 280.5 283.5 286.5 286.5 283.5 286.5 289.5 289.5 286.5 289.5 292.5 292.5 289.5 292.5 295.5 295.5 292.5 295.5 298.5 298.5 295.5 298.5 301.5 301.5 298.5 301.5 304.5 304.5 301.5 304.5 307.5 307.5 304.5 307.5 310.5 310.5 307.5 310.5 313.5 313.5 310.5 313.5 316.5 316.5 313.5 316.5 319.5 319.5 316.5 319.5 322.5 322.5 319.5 322.5 325.5 325.5 322.5 325.5 328.5 328.5 325.5 328.5 331.5 331.5 328.5 331.5 334.5 334.5 331.5 334.5 337.5 337.5 334.5 337.5 340.5 340.5 337.5 340.5 343.5 343.5 340.5 343.5 346.5 346.5 343.5 346.5 349.5 349.5 346.5 349.5 352.5 352.5 349.5 352.5 355.5 355.5 352.5 355.5 358.5 358.5 355.5 -1.5 1.5 1.5 -1.5 1.5 4.5 4.5 1.5 4.5 7.5 7.5 4.5 7.5 10.5 10.5 7.5 10.5 13.5 13.5 10.5 13.5 16.5 16.5 13.5 16.5 19.5 19.5 16.5 19.5 22.5 22.5 19.5 22.5 25.5 25.5 22.5 25.5 28.5 28.5 25.5 28.5 31.5 31.5 28.5 31.5 34.5 34.5 31.5 34.5 37.5 37.5 34.5 37.5 40.5 40.5 37.5 40.5 43.5 43.5 40.5 43.5 46.5 46.5 43.5 46.5 49.5 49.5 46.5 49.5 52.5 52.5 49.5 52.5 55.5 55.5 52.5 55.5 58.5 58.5 55.5 58.5 61.5 61.5 58.5 61.5 64.5 64.5 61.5 64.5 67.5 67.5 64.5 67.5 70.5 70.5 67.5 70.5 73.5 73.5 70.5 73.5 76.5 76.5 73.5 76.5 79.5 79.5 76.5 79.5 82.5 82.5 79.5 82.5 85.5 85.5 82.5 85.5 88.5 88.5 85.5 88.5 91.5 91.5 88.5 91.5 94.5 94.5 91.5 94.5 97.5 97.5 94.5 97.5 100.5 100.5 97.5 100.5 103.5 103.5 100.5 103.5 106.5 106.5 103.5 106.5 109.5 109.5 106.5 109.5 112.5 112.5 109.5 112.5 115.5 115.5 112.5 115.5 118.5 118.5 115.5 118.5 121.5 121.5 118.5 121.5 124.5 124.5 121.5 124.5 127.5 127.5 124.5 127.5 130.5 130.5 127.5 130.5 133.5 133.5 130.5 133.5 136.5 136.5 133.5 136.5 139.5 139.5 136.5 139.5 142.5 142.5 139.5 142.5 145.5 145.5 142.5 145.5 148.5 148.5 145.5 148.5 151.5 151.5 148.5 151.5 154.5 154.5 151.5 154.5 157.5 157.5 154.5 157.5 160.5 160.5 157.5 160.5 163.5 163.5 160.5 163.5 166.5 166.5 163.5 166.5 169.5 169.5 166.5 169.5 172.5 172.5 169.5 172.5 175.5 175.5 172.5 175.5 178.5 178.5 175.5 178.5 181.5 181.5 178.5 181.5 184.5 184.5 181.5 184.5 187.5 187.5 184.5 187.5 190.5 190.5 187.5 190.5 193.5 193.5 190.5 193.5 196.5 196.5 193.5 196.5 199.5 199.5 196.5 199.5 202.5 202.5 199.5 202.5 205.5 205.5 202.5 205.5 208.5 208.5 205.5 208.5 211.5 211.5 208.5 211.5 214.5 214.5 211.5 214.5 217.5 217.5 214.5 217.5 220.5 220.5 217.5 220.5 223.5 223.5 220.5 223.5 226.5 226.5 223.5 226.5 229.5 229.5 226.5 229.5 232.5 232.5 229.5 232.5 235.5 235.5 232.5 235.5 238.5 238.5 235.5 238.5 241.5 241.5 238.5 241.5 244.5 244.5 241.5 244.5 247.5 247.5 244.5 247.5 250.5 250.5 247.5 250.5 253.5 253.5 250.5 253.5 256.5 256.5 253.5 256.5 259.5 259.5 256.5 259.5 262.5 262.5 259.5 262.5 265.5 265.5 262.5 265.5 268.5 268.5 265.5 268.5 271.5 271.5 268.5 271.5 274.5 274.5 271.5 274.5 277.5 277.5 274.5 277.5 280.5 280.5 277.5 280.5 283.5 283.5 280.5 283.5 286.5 286.5 283.5 286.5 289.5 289.5 286.5 289.5 292.5 292.5 289.5 292.5 295.5 295.5 292.5 295.5 298.5 298.5 295.5 298.5 301.5 301.5 298.5 301.5 304.5 304.5 301.5 304.5 307.5 307.5 304.5 307.5 310.5 310.5 307.5 310.5 313.5 313.5 310.5 313.5 316.5 316.5 313.5 316.5 319.5 319.5 316.5 319.5 322.5 322.5 319.5 322.5 325.5 325.5 322.5 325.5 328.5 328.5 325.5 328.5 331.5 331.5 328.5 331.5 334.5 334.5 331.5 334.5 337.5 337.5 334.5 337.5 340.5 340.5 337.5 340.5 343.5 343.5 340.5 343.5 346.5 346.5 343.5 346.5 349.5 349.5 346.5 349.5 352.5 352.5 349.5 352.5 355.5 355.5 352.5 355.5 358.5 358.5 355.5 -1.66666666667 1.66666666667 1.66666666667 -1.66666666667 1.66666658719 4.99999992053 4.99999992053 1.66666658719 4.99999984105 8.33333317439 8.33333317439 4.99999984105 8.33333333333 11.6666666667 11.6666666667 8.33333333333 11.6666663488 14.9999996821 14.9999996821 11.6666663488 14.9999993642 18.3333326976 18.3333326976 14.9999993642 18.3333333333 21.6666666667 21.6666666667 18.3333333333 21.6666673024 25.0000006358 25.0000006358 21.6666673024 24.9999993642 28.3333326976 28.3333326976 24.9999993642 28.3333333333 31.6666666667 31.6666666667 28.3333333333 31.6666653951 34.9999987284 34.9999987284 31.6666653951 35.0000012716 38.3333346049 38.3333346049 35.0000012716 38.3333333333 41.6666666667 41.6666666667 38.3333333333 41.6666653951 44.9999987284 44.9999987284 41.6666653951 45.0000012716 48.3333346049 48.3333346049 45.0000012716 48.3333333333 51.6666666667 51.6666666667 48.3333333333 51.6666653951 54.9999987284 54.9999987284 51.6666653951 55.0000012716 58.3333346049 58.3333346049 55.0000012716 58.3333333333 61.6666666667 61.6666666667 58.3333333333 61.6666653951 64.9999987284 64.9999987284 61.6666653951 64.9999974569 68.3333307902 68.3333307902 64.9999974569 68.3333333333 71.6666666667 71.6666666667 68.3333333333 71.6666692098 75.0000025431 75.0000025431 71.6666692098 74.9999974569 78.3333307902 78.3333307902 74.9999974569 78.3333333333 81.6666666667 81.6666666667 78.3333333333 81.6666692098 85.0000025431 85.0000025431 81.6666692098 84.9999974569 88.3333307902 88.3333307902 84.9999974569 88.3333333333 91.6666666667 91.6666666667 88.3333333333 91.6666692098 95.0000025431 95.0000025431 91.6666692098 94.9999974569 98.3333307902 98.3333307902 94.9999974569 98.3333333333 101.666666667 101.666666667 98.3333333333 101.66666921 105.000002543 105.000002543 101.66666921 104.999997457 108.33333079 108.33333079 104.999997457 108.333333333 111.666666667 111.666666667 108.333333333 111.66666921 115.000002543 115.000002543 111.66666921 114.999997457 118.33333079 118.33333079 114.999997457 118.333333333 121.666666667 121.666666667 118.333333333 121.66666921 125.000002543 125.000002543 121.66666921 124.999997457 128.33333079 128.33333079 124.999997457 128.333333333 131.666666667 131.666666667 128.333333333 131.66666158 134.999994914 134.999994914 131.66666158 135.000005086 138.33333842 138.33333842 135.000005086 138.333333333 141.666666667 141.666666667 138.333333333 141.66666158 144.999994914 144.999994914 141.66666158 145.000005086 148.33333842 148.33333842 145.000005086 148.333333333 151.666666667 151.666666667 148.333333333 151.66666158 154.999994914 154.999994914 151.66666158 155.000005086 158.33333842 158.33333842 155.000005086 158.333333333 161.666666667 161.666666667 158.333333333 161.66666158 164.999994914 164.999994914 161.66666158 165.000005086 168.33333842 168.33333842 165.000005086 168.333333333 171.666666667 171.666666667 168.333333333 171.66666158 174.999994914 174.999994914 171.66666158 175.000005086 178.33333842 178.33333842 175.000005086 178.333333333 181.666666667 181.666666667 178.333333333 181.66666158 184.999994914 184.999994914 181.66666158 185.000005086 188.33333842 188.33333842 185.000005086 188.333333333 191.666666667 191.666666667 188.333333333 191.66666158 194.999994914 194.999994914 191.66666158 195.000005086 198.33333842 198.33333842 195.000005086 198.333333333 201.666666667 201.666666667 198.333333333 201.66666158 204.999994914 204.999994914 201.66666158 205.000005086 208.33333842 208.33333842 205.000005086 208.333333333 211.666666667 211.666666667 208.333333333 211.66666158 214.999994914 214.999994914 211.66666158 215.000005086 218.33333842 218.33333842 215.000005086 218.333333333 221.666666667 221.666666667 218.333333333 221.66666158 224.999994914 224.999994914 221.66666158 225.000005086 228.33333842 228.33333842 225.000005086 228.333333333 231.666666667 231.666666667 228.333333333 231.66666158 234.999994914 234.999994914 231.66666158 235.000005086 238.33333842 238.33333842 235.000005086 238.333333333 241.666666667 241.666666667 238.333333333 241.66666158 244.999994914 244.999994914 241.66666158 245.000005086 248.33333842 248.33333842 245.000005086 248.333333333 251.666666667 251.666666667 248.333333333 251.66666158 254.999994914 254.999994914 251.66666158 254.999989827 258.333323161 258.333323161 254.999989827 258.333333333 261.666666667 261.666666667 258.333333333 261.666676839 265.000010173 265.000010173 261.666676839 264.999989827 268.333323161 268.333323161 264.999989827 268.333333333 271.666666667 271.666666667 268.333333333 271.666676839 275.000010173 275.000010173 271.666676839 274.999989827 278.333323161 278.333323161 274.999989827 278.333333333 281.666666667 281.666666667 278.333333333 281.666676839 285.000010173 285.000010173 281.666676839 284.999989827 288.333323161 288.333323161 284.999989827 288.333333333 291.666666667 291.666666667 288.333333333 291.666676839 295.000010173 295.000010173 291.666676839 294.999989827 298.333323161 298.333323161 294.999989827 298.333333333 301.666666667 301.666666667 298.333333333 301.666676839 305.000010173 305.000010173 301.666676839 304.999989827 308.333323161 308.333323161 304.999989827 308.333333333 311.666666667 311.666666667 308.333333333 311.666676839 315.000010173 315.000010173 311.666676839 314.999989827 318.333323161 318.333323161 314.999989827 318.333333333 321.666666667 321.666666667 318.333333333 321.666676839 325.000010173 325.000010173 321.666676839 324.999989827 328.333323161 328.333323161 324.999989827 328.333333333 331.666666667 331.666666667 328.333333333 331.666676839 335.000010173 335.000010173 331.666676839 334.999989827 338.333323161 338.333323161 334.999989827 338.333333333 341.666666667 341.666666667 338.333333333 341.666676839 345.000010173 345.000010173 341.666676839 344.999989827 348.333323161 348.333323161 344.999989827 348.333333333 351.666666667 351.666666667 348.333333333 351.666676839 355.000010173 355.000010173 351.666676839 354.999989827 358.333323161 358.333323161 354.999989827 -1.8 1.8 1.8 -1.8 1.79999990463 5.39999990463 5.39999990463 1.79999990463 5.39999980927 8.99999980927 8.99999980927 5.39999980927 9.00000019073 12.6000001907 12.6000001907 9.00000019073 12.5999996185 16.1999996185 16.1999996185 12.5999996185 16.2 19.8 19.8 16.2 19.8000003815 23.4000003815 23.4000003815 19.8000003815 23.4000007629 27.0000007629 27.0000007629 23.4000007629 26.9999992371 30.5999992371 30.5999992371 26.9999992371 30.6000015259 34.2000015259 34.2000015259 30.6000015259 34.2 37.8 37.8 34.2 37.7999984741 41.3999984741 41.3999984741 37.7999984741 41.4000007629 45.0000007629 45.0000007629 41.4000007629 44.9999992371 48.5999992371 48.5999992371 44.9999992371 48.6000015259 52.2000015259 52.2000015259 48.6000015259 52.2 55.8 55.8 52.2 55.7999984741 59.3999984741 59.3999984741 55.7999984741 59.4000007629 63.0000007629 63.0000007629 59.4000007629 63.0000030518 66.6000030518 66.6000030518 63.0000030518 66.6000015259 70.2000015259 70.2000015259 66.6000015259 70.2 73.8 73.8 70.2 73.7999984741 77.3999984741 77.3999984741 73.7999984741 77.3999969482 80.9999969482 80.9999969482 77.3999969482 81.0000030518 84.6000030518 84.6000030518 81.0000030518 84.6000015259 88.2000015259 88.2000015259 84.6000015259 88.2 91.8 91.8 88.2 91.7999984741 95.3999984741 95.3999984741 91.7999984741 95.3999969482 98.9999969482 98.9999969482 95.3999969482 99.0000030518 102.600003052 102.600003052 99.0000030518 102.600001526 106.200001526 106.200001526 102.600001526 106.2 109.8 109.8 106.2 109.799998474 113.399998474 113.399998474 109.799998474 113.399996948 116.999996948 116.999996948 113.399996948 117.000003052 120.600003052 120.600003052 117.000003052 120.600001526 124.200001526 124.200001526 120.600001526 124.2 127.8 127.8 124.2 127.800006104 131.400006104 131.400006104 127.800006104 131.399996948 134.999996948 134.999996948 131.399996948 135.000003052 138.600003052 138.600003052 135.000003052 138.599993896 142.199993896 142.199993896 138.599993896 142.2 145.8 145.8 142.2 145.800006104 149.400006104 149.400006104 145.800006104 149.399996948 152.999996948 152.999996948 149.399996948 153.000003052 156.600003052 156.600003052 153.000003052 156.599993896 160.199993896 160.199993896 156.599993896 160.2 163.8 163.8 160.2 163.800006104 167.400006104 167.400006104 163.800006104 167.399996948 170.999996948 170.999996948 167.399996948 171.000003052 174.600003052 174.600003052 171.000003052 174.599993896 178.199993896 178.199993896 174.599993896 178.2 181.8 181.8 178.2 181.800006104 185.400006104 185.400006104 181.800006104 185.399996948 188.999996948 188.999996948 185.399996948 189.000003052 192.600003052 192.600003052 189.000003052 192.599993896 196.199993896 196.199993896 192.599993896 196.2 199.8 199.8 196.2 199.800006104 203.400006104 203.400006104 199.800006104 203.399996948 206.999996948 206.999996948 203.399996948 207.000003052 210.600003052 210.600003052 207.000003052 210.599993896 214.199993896 214.199993896 210.599993896 214.2 217.8 217.8 214.2 217.800006104 221.400006104 221.400006104 217.800006104 221.399996948 224.999996948 224.999996948 221.399996948 225.000003052 228.600003052 228.600003052 225.000003052 228.599993896 232.199993896 232.199993896 228.599993896 232.2 235.8 235.8 232.2 235.800006104 239.400006104 239.400006104 235.800006104 239.399996948 242.999996948 242.999996948 239.399996948 243.000003052 246.600003052 246.600003052 243.000003052 246.599993896 250.199993896 250.199993896 246.599993896 250.2 253.8 253.8 250.2 253.800006104 257.400006104 257.400006104 253.800006104 257.400012207 261.000012207 261.000012207 257.400012207 260.999987793 264.599987793 264.599987793 260.999987793 264.599993896 268.199993896 268.199993896 264.599993896 268.2 271.8 271.8 268.2 271.800006104 275.400006104 275.400006104 271.800006104 275.400012207 279.000012207 279.000012207 275.400012207 278.999987793 282.599987793 282.599987793 278.999987793 282.599993896 286.199993896 286.199993896 282.599993896 286.2 289.8 289.8 286.2 289.800006104 293.400006104 293.400006104 289.800006104 293.400012207 297.000012207 297.000012207 293.400012207 296.999987793 300.599987793 300.599987793 296.999987793 300.599993896 304.199993896 304.199993896 300.599993896 304.2 307.8 307.8 304.2 307.800006104 311.400006104 311.400006104 307.800006104 311.400012207 315.000012207 315.000012207 311.400012207 314.999987793 318.599987793 318.599987793 314.999987793 318.599993896 322.199993896 322.199993896 318.599993896 322.2 325.8 325.8 322.2 325.800006104 329.400006104 329.400006104 325.800006104 329.400012207 333.000012207 333.000012207 329.400012207 332.999987793 336.599987793 336.599987793 332.999987793 336.599993896 340.199993896 340.199993896 336.599993896 340.2 343.8 343.8 340.2 343.800006104 347.400006104 347.400006104 343.800006104 347.400012207 351.000012207 351.000012207 347.400012207 350.999987793 354.599987793 354.599987793 350.999987793 354.599993896 358.199993896 358.199993896 354.599993896 -1.875 1.875 1.875 -1.875 1.875 5.625 5.625 1.875 5.625 9.375 9.375 5.625 9.375 13.125 13.125 9.375 13.125 16.875 16.875 13.125 16.875 20.625 20.625 16.875 20.625 24.375 24.375 20.625 24.375 28.125 28.125 24.375 28.125 31.875 31.875 28.125 31.875 35.625 35.625 31.875 35.625 39.375 39.375 35.625 39.375 43.125 43.125 39.375 43.125 46.875 46.875 43.125 46.875 50.625 50.625 46.875 50.625 54.375 54.375 50.625 54.375 58.125 58.125 54.375 58.125 61.875 61.875 58.125 61.875 65.625 65.625 61.875 65.625 69.375 69.375 65.625 69.375 73.125 73.125 69.375 73.125 76.875 76.875 73.125 76.875 80.625 80.625 76.875 80.625 84.375 84.375 80.625 84.375 88.125 88.125 84.375 88.125 91.875 91.875 88.125 91.875 95.625 95.625 91.875 95.625 99.375 99.375 95.625 99.375 103.125 103.125 99.375 103.125 106.875 106.875 103.125 106.875 110.625 110.625 106.875 110.625 114.375 114.375 110.625 114.375 118.125 118.125 114.375 118.125 121.875 121.875 118.125 121.875 125.625 125.625 121.875 +125.625 129.375 129.375 125.625 129.375 133.125 133.125 129.375 133.125 136.875 136.875 133.125 136.875 140.625 140.625 136.875 140.625 144.375 144.375 140.625 144.375 148.125 148.125 144.375 148.125 151.875 151.875 148.125 151.875 155.625 155.625 151.875 155.625 159.375 159.375 155.625 159.375 163.125 163.125 159.375 163.125 166.875 166.875 163.125 166.875 170.625 170.625 166.875 170.625 174.375 174.375 170.625 174.375 178.125 178.125 174.375 178.125 181.875 181.875 178.125 181.875 185.625 185.625 181.875 185.625 189.375 189.375 185.625 189.375 193.125 193.125 189.375 193.125 196.875 196.875 193.125 196.875 200.625 200.625 196.875 200.625 204.375 204.375 200.625 204.375 208.125 208.125 204.375 208.125 211.875 211.875 208.125 211.875 215.625 215.625 211.875 215.625 219.375 219.375 215.625 219.375 223.125 223.125 219.375 223.125 226.875 226.875 223.125 226.875 230.625 230.625 226.875 230.625 234.375 234.375 230.625 234.375 238.125 238.125 234.375 238.125 241.875 241.875 238.125 241.875 245.625 245.625 241.875 245.625 249.375 249.375 245.625 249.375 253.125 253.125 249.375 253.125 256.875 256.875 253.125 256.875 260.625 260.625 256.875 260.625 264.375 264.375 260.625 264.375 268.125 268.125 264.375 268.125 271.875 271.875 268.125 271.875 275.625 275.625 271.875 275.625 279.375 279.375 275.625 279.375 283.125 283.125 279.375 283.125 286.875 286.875 283.125 286.875 290.625 290.625 286.875 290.625 294.375 294.375 290.625 294.375 298.125 298.125 294.375 298.125 301.875 301.875 298.125 301.875 305.625 305.625 301.875 305.625 309.375 309.375 305.625 309.375 313.125 313.125 309.375 313.125 316.875 316.875 313.125 316.875 320.625 320.625 316.875 320.625 324.375 324.375 320.625 324.375 328.125 328.125 324.375 328.125 331.875 331.875 328.125 331.875 335.625 335.625 331.875 335.625 339.375 339.375 335.625 339.375 343.125 343.125 339.375 343.125 346.875 346.875 343.125 346.875 350.625 350.625 346.875 350.625 354.375 354.375 350.625 354.375 358.125 358.125 354.375 -2.0 2.0 2.0 -2.0 2.0 6.0 6.0 2.0 6.0 10.0 10.0 6.0 10.0 14.0 14.0 10.0 14.0 18.0 18.0 14.0 18.0 22.0 22.0 18.0 22.0 26.0 26.0 22.0 26.0 30.0 30.0 26.0 30.0 34.0 34.0 30.0 34.0 38.0 38.0 34.0 38.0 42.0 42.0 38.0 42.0 46.0 46.0 42.0 46.0 50.0 50.0 46.0 50.0 54.0 54.0 50.0 54.0 58.0 58.0 54.0 58.0 62.0 62.0 58.0 62.0 66.0 66.0 62.0 66.0 70.0 70.0 66.0 70.0 74.0 74.0 70.0 74.0 78.0 78.0 74.0 78.0 82.0 82.0 78.0 82.0 86.0 86.0 82.0 86.0 90.0 90.0 86.0 90.0 94.0 94.0 90.0 94.0 98.0 98.0 94.0 98.0 102.0 102.0 98.0 102.0 106.0 106.0 102.0 106.0 110.0 110.0 106.0 110.0 114.0 114.0 110.0 114.0 118.0 118.0 114.0 118.0 122.0 122.0 118.0 122.0 126.0 126.0 122.0 126.0 130.0 130.0 126.0 130.0 134.0 134.0 130.0 134.0 138.0 138.0 134.0 138.0 142.0 142.0 138.0 142.0 146.0 146.0 142.0 146.0 150.0 150.0 146.0 150.0 154.0 154.0 150.0 154.0 158.0 158.0 154.0 158.0 162.0 162.0 158.0 162.0 166.0 166.0 162.0 166.0 170.0 170.0 166.0 170.0 174.0 174.0 170.0 174.0 178.0 178.0 174.0 178.0 182.0 182.0 178.0 182.0 186.0 186.0 182.0 186.0 190.0 190.0 186.0 190.0 194.0 194.0 190.0 194.0 198.0 198.0 194.0 198.0 202.0 202.0 198.0 202.0 206.0 206.0 202.0 206.0 210.0 210.0 206.0 210.0 214.0 214.0 210.0 214.0 218.0 218.0 214.0 218.0 222.0 222.0 218.0 222.0 226.0 226.0 222.0 226.0 230.0 230.0 226.0 230.0 234.0 234.0 230.0 234.0 238.0 238.0 234.0 238.0 242.0 242.0 238.0 242.0 246.0 246.0 242.0 246.0 250.0 250.0 246.0 250.0 254.0 254.0 250.0 254.0 258.0 258.0 254.0 258.0 262.0 262.0 258.0 262.0 266.0 266.0 262.0 266.0 270.0 270.0 266.0 270.0 274.0 274.0 270.0 274.0 278.0 278.0 274.0 278.0 282.0 282.0 278.0 282.0 286.0 286.0 282.0 286.0 290.0 290.0 286.0 290.0 294.0 294.0 290.0 294.0 298.0 298.0 294.0 298.0 302.0 302.0 298.0 302.0 306.0 306.0 302.0 306.0 310.0 310.0 306.0 310.0 314.0 314.0 310.0 314.0 318.0 318.0 314.0 318.0 322.0 322.0 318.0 322.0 326.0 326.0 322.0 326.0 330.0 330.0 326.0 330.0 334.0 334.0 330.0 334.0 338.0 338.0 334.0 338.0 342.0 342.0 338.0 342.0 346.0 346.0 342.0 346.0 350.0 350.0 346.0 350.0 354.0 354.0 350.0 354.0 358.0 358.0 354.0 -2.25 2.25 2.25 -2.25 2.25 6.75 6.75 2.25 6.75 11.25 11.25 6.75 11.25 15.75 15.75 11.25 15.75 20.25 20.25 15.75 20.25 24.75 24.75 20.25 24.75 29.25 29.25 24.75 29.25 33.75 33.75 29.25 33.75 38.25 38.25 33.75 38.25 42.75 42.75 38.25 42.75 47.25 47.25 42.75 47.25 51.75 51.75 47.25 51.75 56.25 56.25 51.75 56.25 60.75 60.75 56.25 60.75 65.25 65.25 60.75 65.25 69.75 69.75 65.25 69.75 74.25 74.25 69.75 74.25 78.75 78.75 74.25 78.75 83.25 83.25 78.75 83.25 87.75 87.75 83.25 87.75 92.25 92.25 87.75 92.25 96.75 96.75 92.25 96.75 101.25 101.25 96.75 101.25 105.75 105.75 101.25 105.75 110.25 110.25 105.75 110.25 114.75 114.75 110.25 114.75 119.25 119.25 114.75 119.25 123.75 123.75 119.25 123.75 128.25 128.25 123.75 128.25 132.75 132.75 128.25 132.75 137.25 137.25 132.75 137.25 141.75 141.75 137.25 141.75 146.25 146.25 141.75 146.25 150.75 150.75 146.25 150.75 155.25 155.25 150.75 155.25 159.75 159.75 155.25 159.75 164.25 164.25 159.75 164.25 168.75 168.75 164.25 168.75 173.25 173.25 168.75 173.25 177.75 177.75 173.25 177.75 182.25 182.25 177.75 182.25 186.75 186.75 182.25 186.75 191.25 191.25 186.75 191.25 195.75 195.75 191.25 195.75 200.25 200.25 195.75 200.25 204.75 204.75 200.25 204.75 209.25 209.25 204.75 209.25 213.75 213.75 209.25 213.75 218.25 218.25 213.75 218.25 222.75 222.75 218.25 222.75 227.25 227.25 222.75 227.25 231.75 231.75 227.25 231.75 236.25 236.25 231.75 236.25 240.75 240.75 236.25 240.75 245.25 245.25 240.75 245.25 249.75 249.75 245.25 249.75 254.25 254.25 249.75 254.25 258.75 258.75 254.25 258.75 263.25 263.25 258.75 263.25 267.75 267.75 263.25 267.75 272.25 272.25 267.75 272.25 276.75 276.75 272.25 276.75 281.25 281.25 276.75 281.25 285.75 285.75 281.25 285.75 290.25 290.25 285.75 290.25 294.75 294.75 290.25 294.75 299.25 299.25 294.75 299.25 303.75 303.75 299.25 303.75 308.25 308.25 303.75 308.25 312.75 312.75 308.25 312.75 317.25 317.25 312.75 317.25 321.75 321.75 317.25 321.75 326.25 326.25 321.75 326.25 330.75 330.75 326.25 330.75 335.25 335.25 330.75 335.25 339.75 339.75 335.25 339.75 344.25 344.25 339.75 344.25 348.75 348.75 344.25 348.75 353.25 353.25 348.75 353.25 357.75 357.75 353.25 -2.5 2.5 2.5 -2.5 2.5 7.5 7.5 2.5 7.5 12.5 12.5 7.5 12.5 17.5 17.5 12.5 17.5 22.5 22.5 17.5 22.5 27.5 27.5 22.5 27.5 32.5 32.5 27.5 32.5 37.5 37.5 32.5 37.5 42.5 42.5 37.5 42.5 47.5 47.5 42.5 47.5 52.5 52.5 47.5 52.5 57.5 57.5 52.5 57.5 62.5 62.5 57.5 62.5 67.5 67.5 62.5 67.5 72.5 72.5 67.5 72.5 77.5 77.5 72.5 77.5 82.5 82.5 77.5 82.5 87.5 87.5 82.5 87.5 92.5 92.5 87.5 92.5 97.5 97.5 92.5 97.5 102.5 102.5 97.5 102.5 107.5 107.5 102.5 107.5 112.5 112.5 107.5 112.5 117.5 117.5 112.5 117.5 122.5 122.5 117.5 122.5 127.5 127.5 122.5 127.5 132.5 132.5 127.5 132.5 137.5 137.5 132.5 137.5 142.5 142.5 137.5 142.5 147.5 147.5 142.5 147.5 152.5 152.5 147.5 152.5 157.5 157.5 152.5 157.5 162.5 162.5 157.5 162.5 167.5 167.5 162.5 167.5 172.5 172.5 167.5 172.5 177.5 177.5 172.5 177.5 182.5 182.5 177.5 182.5 187.5 187.5 182.5 187.5 192.5 192.5 187.5 192.5 197.5 197.5 192.5 197.5 202.5 202.5 197.5 202.5 207.5 207.5 202.5 207.5 212.5 212.5 207.5 212.5 217.5 217.5 212.5 217.5 222.5 222.5 217.5 222.5 227.5 227.5 222.5 227.5 232.5 232.5 227.5 232.5 237.5 237.5 232.5 237.5 242.5 242.5 237.5 242.5 247.5 247.5 242.5 247.5 252.5 252.5 247.5 252.5 257.5 257.5 252.5 257.5 262.5 262.5 257.5 262.5 267.5 267.5 262.5 267.5 272.5 272.5 267.5 272.5 277.5 277.5 272.5 277.5 282.5 282.5 277.5 282.5 287.5 287.5 282.5 287.5 292.5 292.5 287.5 292.5 297.5 297.5 292.5 297.5 302.5 302.5 297.5 302.5 307.5 307.5 302.5 307.5 312.5 312.5 307.5 312.5 317.5 317.5 312.5 317.5 322.5 322.5 317.5 322.5 327.5 327.5 322.5 327.5 332.5 332.5 327.5 332.5 337.5 337.5 332.5 337.5 342.5 342.5 337.5 342.5 347.5 347.5 342.5 347.5 352.5 352.5 347.5 352.5 357.5 357.5 352.5 -2.5 2.5 2.5 -2.5 2.5 7.5 7.5 2.5 7.5 12.5 12.5 7.5 12.5 17.5 17.5 12.5 17.5 22.5 22.5 17.5 22.5 27.5 27.5 22.5 27.5 32.5 32.5 27.5 32.5 37.5 37.5 32.5 37.5 42.5 42.5 37.5 42.5 47.5 47.5 42.5 47.5 52.5 52.5 47.5 52.5 57.5 57.5 52.5 57.5 62.5 62.5 57.5 62.5 67.5 67.5 62.5 67.5 72.5 72.5 67.5 72.5 77.5 77.5 72.5 77.5 82.5 82.5 77.5 82.5 87.5 87.5 82.5 87.5 92.5 92.5 87.5 92.5 97.5 97.5 92.5 97.5 102.5 102.5 97.5 102.5 107.5 107.5 102.5 107.5 112.5 112.5 107.5 112.5 117.5 117.5 112.5 117.5 122.5 122.5 117.5 122.5 127.5 127.5 122.5 127.5 132.5 132.5 127.5 132.5 137.5 137.5 132.5 137.5 142.5 142.5 137.5 142.5 147.5 147.5 142.5 147.5 152.5 152.5 147.5 152.5 157.5 157.5 152.5 157.5 162.5 162.5 157.5 162.5 167.5 167.5 162.5 167.5 172.5 172.5 167.5 172.5 177.5 177.5 172.5 177.5 182.5 182.5 177.5 182.5 187.5 187.5 182.5 187.5 192.5 192.5 187.5 192.5 197.5 197.5 192.5 197.5 202.5 202.5 197.5 202.5 207.5 207.5 202.5 207.5 212.5 212.5 207.5 212.5 217.5 217.5 212.5 217.5 222.5 222.5 217.5 222.5 227.5 227.5 222.5 227.5 232.5 232.5 227.5 232.5 237.5 237.5 232.5 237.5 242.5 242.5 237.5 242.5 247.5 247.5 242.5 247.5 252.5 252.5 247.5 252.5 257.5 257.5 252.5 257.5 262.5 262.5 257.5 262.5 267.5 267.5 262.5 267.5 272.5 272.5 267.5 272.5 277.5 277.5 272.5 277.5 282.5 282.5 277.5 282.5 287.5 287.5 282.5 287.5 292.5 292.5 287.5 292.5 297.5 297.5 292.5 297.5 302.5 302.5 297.5 302.5 307.5 307.5 302.5 307.5 312.5 312.5 307.5 312.5 317.5 317.5 312.5 317.5 322.5 322.5 317.5 322.5 327.5 327.5 322.5 327.5 332.5 332.5 327.5 332.5 337.5 337.5 332.5 337.5 342.5 342.5 337.5 342.5 347.5 347.5 342.5 347.5 352.5 352.5 347.5 352.5 357.5 357.5 352.5 -2.8125 2.8125 2.8125 -2.8125 2.8125 8.4375 8.4375 2.8125 8.4375 14.0625 14.0625 8.4375 14.0625 19.6875 19.6875 14.0625 19.6875 25.3125 25.3125 19.6875 25.3125 30.9375 30.9375 25.3125 30.9375 36.5625 36.5625 30.9375 36.5625 42.1875 42.1875 36.5625 42.1875 47.8125 47.8125 42.1875 47.8125 53.4375 53.4375 47.8125 53.4375 59.0625 59.0625 53.4375 59.0625 64.6875 64.6875 59.0625 64.6875 70.3125 70.3125 64.6875 70.3125 75.9375 75.9375 70.3125 75.9375 81.5625 81.5625 75.9375 81.5625 87.1875 87.1875 81.5625 87.1875 92.8125 92.8125 87.1875 92.8125 98.4375 98.4375 92.8125 98.4375 104.0625 104.0625 98.4375 104.0625 109.6875 109.6875 104.0625 109.6875 115.3125 115.3125 109.6875 115.3125 120.9375 120.9375 115.3125 120.9375 126.5625 126.5625 120.9375 126.5625 132.1875 132.1875 126.5625 132.1875 137.8125 137.8125 132.1875 137.8125 143.4375 143.4375 137.8125 143.4375 149.0625 149.0625 143.4375 149.0625 154.6875 154.6875 149.0625 154.6875 160.3125 160.3125 154.6875 160.3125 165.9375 165.9375 160.3125 165.9375 171.5625 171.5625 165.9375 171.5625 177.1875 177.1875 171.5625 177.1875 182.8125 182.8125 177.1875 182.8125 188.4375 188.4375 182.8125 188.4375 194.0625 194.0625 188.4375 194.0625 199.6875 199.6875 194.0625 199.6875 205.3125 205.3125 199.6875 205.3125 210.9375 210.9375 205.3125 210.9375 216.5625 216.5625 210.9375 216.5625 222.1875 222.1875 216.5625 222.1875 227.8125 227.8125 222.1875 227.8125 233.4375 233.4375 227.8125 233.4375 239.0625 239.0625 233.4375 239.0625 244.6875 244.6875 239.0625 244.6875 250.3125 250.3125 244.6875 250.3125 255.9375 255.9375 250.3125 255.9375 261.5625 261.5625 255.9375 261.5625 267.1875 267.1875 261.5625 267.1875 272.8125 272.8125 267.1875 272.8125 278.4375 278.4375 272.8125 278.4375 284.0625 284.0625 278.4375 284.0625 289.6875 289.6875 284.0625 289.6875 295.3125 295.3125 289.6875 295.3125 300.9375 300.9375 295.3125 300.9375 306.5625 306.5625 300.9375 306.5625 312.1875 312.1875 306.5625 312.1875 317.8125 317.8125 312.1875 317.8125 323.4375 323.4375 317.8125 323.4375 329.0625 329.0625 323.4375 329.0625 334.6875 334.6875 329.0625 334.6875 340.3125 340.3125 334.6875 340.3125 345.9375 345.9375 340.3125 345.9375 351.5625 351.5625 345.9375 351.5625 357.1875 357.1875 351.5625 -3.0 3.0 3.0 -3.0 3.0 9.0 9.0 3.0 9.0 15.0 15.0 9.0 15.0 21.0 21.0 15.0 21.0 27.0 27.0 21.0 27.0 33.0 33.0 27.0 33.0 39.0 39.0 33.0 39.0 45.0 45.0 39.0 45.0 51.0 51.0 45.0 51.0 57.0 57.0 51.0 57.0 63.0 63.0 57.0 63.0 69.0 69.0 63.0 69.0 75.0 75.0 69.0 75.0 81.0 81.0 75.0 81.0 87.0 87.0 81.0 87.0 93.0 93.0 87.0 93.0 99.0 99.0 93.0 99.0 105.0 105.0 99.0 105.0 111.0 111.0 105.0 111.0 117.0 117.0 111.0 117.0 123.0 123.0 117.0 123.0 129.0 129.0 123.0 129.0 135.0 135.0 129.0 135.0 141.0 141.0 135.0 141.0 147.0 147.0 141.0 147.0 153.0 153.0 147.0 153.0 159.0 159.0 153.0 159.0 165.0 165.0 159.0 165.0 171.0 171.0 165.0 171.0 177.0 177.0 171.0 177.0 183.0 183.0 177.0 183.0 189.0 189.0 183.0 189.0 195.0 195.0 189.0 195.0 201.0 201.0 195.0 201.0 207.0 207.0 201.0 207.0 213.0 213.0 207.0 213.0 219.0 219.0 213.0 219.0 225.0 225.0 219.0 225.0 231.0 231.0 225.0 231.0 237.0 237.0 231.0 237.0 243.0 243.0 237.0 243.0 249.0 249.0 243.0 249.0 255.0 255.0 249.0 255.0 261.0 261.0 255.0 261.0 267.0 267.0 261.0 267.0 273.0 273.0 267.0 273.0 279.0 279.0 273.0 279.0 285.0 285.0 279.0 285.0 291.0 291.0 285.0 291.0 297.0 297.0 291.0 297.0 303.0 303.0 297.0 303.0 309.0 309.0 303.0 309.0 315.0 315.0 309.0 315.0 321.0 321.0 315.0 321.0 327.0 327.0 321.0 327.0 333.0 333.0 327.0 333.0 339.0 339.0 333.0 339.0 345.0 345.0 339.0 345.0 351.0 351.0 345.0 351.0 357.0 357.0 351.0 +-3.33333333333 3.33333333333 3.33333333333 -3.33333333333 3.33333317439 9.99999984105 9.99999984105 3.33333317439 9.99999968211 16.6666663488 16.6666663488 9.99999968211 16.6666666667 23.3333333333 23.3333333333 16.6666666667 23.3333326976 29.9999993642 29.9999993642 23.3333326976 29.9999987284 36.6666653951 36.6666653951 29.9999987284 36.6666666667 43.3333333333 43.3333333333 36.6666666667 43.3333346049 50.0000012716 50.0000012716 43.3333346049 49.9999987284 56.6666653951 56.6666653951 49.9999987284 56.6666666667 63.3333333333 63.3333333333 56.6666666667 63.3333307902 69.9999974569 69.9999974569 63.3333307902 70.0000025431 76.6666692098 76.6666692098 70.0000025431 76.6666666667 83.3333333333 83.3333333333 76.6666666667 83.3333307902 89.9999974569 89.9999974569 83.3333307902 90.0000025431 96.6666692098 96.6666692098 90.0000025431 96.6666666667 103.333333333 103.333333333 96.6666666667 103.33333079 109.999997457 109.999997457 103.33333079 110.000002543 116.66666921 116.66666921 110.000002543 116.666666667 123.333333333 123.333333333 116.666666667 123.33333079 129.999997457 129.999997457 123.33333079 129.999994914 136.66666158 136.66666158 129.999994914 136.666666667 143.333333333 143.333333333 136.666666667 143.33333842 150.000005086 150.000005086 143.33333842 149.999994914 156.66666158 156.66666158 149.999994914 156.666666667 163.333333333 163.333333333 156.666666667 163.33333842 170.000005086 170.000005086 163.33333842 169.999994914 176.66666158 176.66666158 169.999994914 176.666666667 183.333333333 183.333333333 176.666666667 183.33333842 190.000005086 190.000005086 183.33333842 189.999994914 196.66666158 196.66666158 189.999994914 196.666666667 203.333333333 203.333333333 196.666666667 203.33333842 210.000005086 210.000005086 203.33333842 209.999994914 216.66666158 216.66666158 209.999994914 216.666666667 223.333333333 223.333333333 216.666666667 223.33333842 230.000005086 230.000005086 223.33333842 229.999994914 236.66666158 236.66666158 229.999994914 236.666666667 243.333333333 243.333333333 236.666666667 243.33333842 250.000005086 250.000005086 243.33333842 249.999994914 256.66666158 256.66666158 249.999994914 256.666666667 263.333333333 263.333333333 256.666666667 263.333323161 269.999989827 269.999989827 263.333323161 270.000010173 276.666676839 276.666676839 270.000010173 276.666666667 283.333333333 283.333333333 276.666666667 283.333323161 289.999989827 289.999989827 283.333323161 290.000010173 296.666676839 296.666676839 290.000010173 296.666666667 303.333333333 303.333333333 296.666666667 303.333323161 309.999989827 309.999989827 303.333323161 310.000010173 316.666676839 316.666676839 310.000010173 316.666666667 323.333333333 323.333333333 316.666666667 323.333323161 329.999989827 329.999989827 323.333323161 330.000010173 336.666676839 336.666676839 330.000010173 336.666666667 343.333333333 343.333333333 336.666666667 343.333323161 349.999989827 349.999989827 343.333323161 350.000010173 356.666676839 356.666676839 350.000010173 -4.0 4.0 4.0 -4.0 4.0 12.0 12.0 4.0 12.0 20.0 20.0 12.0 20.0 28.0 28.0 20.0 28.0 36.0 36.0 28.0 36.0 44.0 44.0 36.0 44.0 52.0 52.0 44.0 52.0 60.0 60.0 52.0 60.0 68.0 68.0 60.0 68.0 76.0 76.0 68.0 76.0 84.0 84.0 76.0 84.0 92.0 92.0 84.0 92.0 100.0 100.0 92.0 100.0 108.0 108.0 100.0 108.0 116.0 116.0 108.0 116.0 124.0 124.0 116.0 124.0 132.0 132.0 124.0 132.0 140.0 140.0 132.0 140.0 148.0 148.0 140.0 148.0 156.0 156.0 148.0 156.0 164.0 164.0 156.0 164.0 172.0 172.0 164.0 172.0 180.0 180.0 172.0 180.0 188.0 188.0 180.0 188.0 196.0 196.0 188.0 196.0 204.0 204.0 196.0 204.0 212.0 212.0 204.0 212.0 220.0 220.0 212.0 220.0 228.0 228.0 220.0 228.0 236.0 236.0 228.0 236.0 244.0 244.0 236.0 244.0 252.0 252.0 244.0 252.0 260.0 260.0 252.0 260.0 268.0 268.0 260.0 268.0 276.0 276.0 268.0 276.0 284.0 284.0 276.0 284.0 292.0 292.0 284.0 292.0 300.0 300.0 292.0 300.0 308.0 308.0 300.0 308.0 316.0 316.0 308.0 316.0 324.0 324.0 316.0 324.0 332.0 332.0 324.0 332.0 340.0 340.0 332.0 340.0 348.0 348.0 340.0 348.0 356.0 356.0 348.0 -4.5 4.5 4.5 -4.5 4.5 13.5 13.5 4.5 13.5 22.5 22.5 13.5 22.5 31.5 31.5 22.5 31.5 40.5 40.5 31.5 40.5 49.5 49.5 40.5 49.5 58.5 58.5 49.5 58.5 67.5 67.5 58.5 67.5 76.5 76.5 67.5 76.5 85.5 85.5 76.5 85.5 94.5 94.5 85.5 94.5 103.5 103.5 94.5 103.5 112.5 112.5 103.5 112.5 121.5 121.5 112.5 121.5 130.5 130.5 121.5 130.5 139.5 139.5 130.5 139.5 148.5 148.5 139.5 148.5 157.5 157.5 148.5 157.5 166.5 166.5 157.5 166.5 175.5 175.5 166.5 175.5 184.5 184.5 175.5 184.5 193.5 193.5 184.5 193.5 202.5 202.5 193.5 202.5 211.5 211.5 202.5 211.5 220.5 220.5 211.5 220.5 229.5 229.5 220.5 229.5 238.5 238.5 229.5 238.5 247.5 247.5 238.5 247.5 256.5 256.5 247.5 256.5 265.5 265.5 256.5 265.5 274.5 274.5 265.5 274.5 283.5 283.5 274.5 283.5 292.5 292.5 283.5 292.5 301.5 301.5 292.5 301.5 310.5 310.5 301.5 310.5 319.5 319.5 310.5 319.5 328.5 328.5 319.5 328.5 337.5 337.5 328.5 337.5 346.5 346.5 337.5 346.5 355.5 355.5 346.5 -5.0 5.0 5.0 -5.0 5.0 15.0 15.0 5.0 15.0 25.0 25.0 15.0 25.0 35.0 35.0 25.0 35.0 45.0 45.0 35.0 45.0 55.0 55.0 45.0 55.0 65.0 65.0 55.0 65.0 75.0 75.0 65.0 75.0 85.0 85.0 75.0 85.0 95.0 95.0 85.0 95.0 105.0 105.0 95.0 105.0 115.0 115.0 105.0 115.0 125.0 125.0 115.0 125.0 135.0 135.0 125.0 135.0 145.0 145.0 135.0 145.0 155.0 155.0 145.0 155.0 165.0 165.0 155.0 165.0 175.0 175.0 165.0 175.0 185.0 185.0 175.0 185.0 195.0 195.0 185.0 195.0 205.0 205.0 195.0 205.0 215.0 215.0 205.0 215.0 225.0 225.0 215.0 225.0 235.0 235.0 225.0 235.0 245.0 245.0 235.0 245.0 255.0 255.0 245.0 255.0 265.0 265.0 255.0 265.0 275.0 275.0 265.0 275.0 285.0 285.0 275.0 285.0 295.0 295.0 285.0 295.0 305.0 305.0 295.0 305.0 315.0 315.0 305.0 315.0 325.0 325.0 315.0 325.0 335.0 335.0 325.0 335.0 345.0 345.0 335.0 345.0 355.0 355.0 345.0 -7.2 7.2 7.2 -7.2 7.19999961853 21.5999996185 21.5999996185 7.19999961853 21.5999992371 35.9999992371 35.9999992371 21.5999992371 36.0000007629 50.4000007629 50.4000007629 36.0000007629 50.3999984741 64.7999984741 64.7999984741 50.3999984741 64.8 79.2 79.2 64.8 79.2000015259 93.6000015259 93.6000015259 79.2000015259 93.6000030518 108.000003052 108.000003052 93.6000030518 107.999996948 122.399996948 122.399996948 107.999996948 122.400006104 136.800006104 136.800006104 122.400006104 136.8 151.2 151.2 136.8 151.199993896 165.599993896 165.599993896 151.199993896 165.600003052 180.000003052 180.000003052 165.600003052 179.999996948 194.399996948 194.399996948 179.999996948 194.400006104 208.800006104 208.800006104 194.400006104 208.8 223.2 223.2 208.8 223.199993896 237.599993896 237.599993896 223.199993896 237.600003052 252.000003052 252.000003052 237.600003052 252.000012207 266.400012207 266.400012207 252.000012207 266.400006104 280.800006104 280.800006104 266.400006104 280.8 295.2 295.2 280.8 295.199993896 309.599993896 309.599993896 295.199993896 309.599987793 323.999987793 323.999987793 309.599987793 324.000012207 338.400012207 338.400012207 324.000012207 338.400006104 352.800006104 352.800006104 338.400006104 -10.0 10.0 10.0 -10.0 10.0 30.0 30.0 10.0 30.0 50.0 50.0 30.0 50.0 70.0 70.0 50.0 70.0 90.0 90.0 70.0 90.0 110.0 110.0 90.0 110.0 130.0 130.0 110.0 130.0 150.0 150.0 130.0 150.0 170.0 170.0 150.0 170.0 190.0 190.0 170.0 190.0 210.0 210.0 190.0 210.0 230.0 230.0 210.0 230.0 250.0 250.0 230.0 250.0 270.0 270.0 250.0 270.0 290.0 290.0 270.0 290.0 310.0 310.0 290.0 310.0 330.0 330.0 310.0 330.0 350.0 350.0 330.0 +ybounds = 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 90.0 90.0 88.5854721069 88.5854721069 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 88.5854721069 88.5854721069 87.4701004028 87.4701004028 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 87.4701004028 87.4701004028 86.3507003784 86.3507003784 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 86.3507003784 86.3507003784 85.2302742004 85.2302742004 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 85.2302742004 85.2302742004 84.1094360352 84.1094360352 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 84.1094360352 84.1094360352 82.9883842468 82.9883842468 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 82.9883842468 82.9883842468 81.8672065735 81.8672065735 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 81.8672065735 81.8672065735 80.7459526062 80.7459526062 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 80.7459526062 80.7459526062 79.6246452332 79.6246452332 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 79.6246452332 79.6246452332 78.5033035278 78.5033035278 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 +78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 78.5033035278 78.5033035278 77.3819351196 77.3819351196 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 77.3819351196 77.3819351196 76.2605438232 76.2605438232 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 76.2605438232 76.2605438232 75.1391372681 75.1391372681 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 75.1391372681 75.1391372681 74.0177192688 74.0177192688 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 74.0177192688 74.0177192688 72.8962936401 72.8962936401 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 +72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 72.8962936401 72.8962936401 71.7748565674 71.7748565674 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 71.7748565674 71.7748565674 70.6534118652 70.6534118652 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 70.6534118652 70.6534118652 69.5319633484 69.5319633484 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 69.5319633484 69.5319633484 68.4105110168 68.4105110168 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 +68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 68.4105110168 68.4105110168 67.2890548706 67.2890548706 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 67.2890548706 67.2890548706 66.1675949097 66.1675949097 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 66.1675949097 66.1675949097 65.046131134 65.046131134 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 +65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 65.046131134 65.046131134 63.924665451 63.924665451 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 63.924665451 63.924665451 62.8031978607 62.8031978607 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 62.8031978607 62.8031978607 61.6817264557 61.6817264557 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 +61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 61.6817264557 61.6817264557 60.5602550507 60.5602550507 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 60.5602550507 60.5602550507 59.4387817383 59.4387817383 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 59.4387817383 59.4387817383 58.3173065186 58.3173065186 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 +58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 58.3173065186 58.3173065186 57.1958312988 57.1958312988 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 57.1958312988 57.1958312988 56.0743541718 56.0743541718 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 +56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 56.0743541718 56.0743541718 54.9528751373 54.9528751373 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 54.9528751373 54.9528751373 53.8313961029 53.8313961029 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 53.8313961029 53.8313961029 52.7099151611 52.7099151611 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 +52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 52.7099151611 52.7099151611 51.5884342194 51.5884342194 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 51.5884342194 51.5884342194 50.4669532776 50.4669532776 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 +50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 50.4669532776 50.4669532776 49.3454704285 49.3454704285 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 49.3454704285 49.3454704285 48.2239875793 48.2239875793 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 +48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 48.2239875793 48.2239875793 47.1025047302 47.1025047302 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 47.1025047302 47.1025047302 45.9810218811 45.9810218811 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 +45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 45.9810218811 45.9810218811 44.8595371246 44.8595371246 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 44.8595371246 44.8595371246 43.7380523682 43.7380523682 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 +43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 43.7380523682 43.7380523682 42.6165676117 42.6165676117 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 42.6165676117 42.6165676117 41.4950809479 41.4950809479 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 +41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 41.4950809479 41.4950809479 40.3735942841 40.3735942841 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 40.3735942841 40.3735942841 39.2521076202 39.2521076202 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 +39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 39.2521076202 39.2521076202 38.1306228638 38.1306228638 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 +38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 38.1306228638 38.1306228638 37.0091362 37.0091362 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 37.0091362 37.0091362 35.8876476288 35.8876476288 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 +35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 35.8876476288 35.8876476288 34.766160965 34.766160965 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 34.766160965 34.766160965 33.6446743011 33.6446743011 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 +33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 33.6446743011 33.6446743011 32.5231876373 32.5231876373 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 32.5231876373 32.5231876373 31.4017000198 31.4017000198 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 +31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 31.4017000198 31.4017000198 30.2802114487 30.2802114487 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 +30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 30.2802114487 30.2802114487 29.1587228775 29.1587228775 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 29.1587228775 29.1587228775 28.0372343063 28.0372343063 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 +28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 28.0372343063 28.0372343063 26.9157466888 26.9157466888 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 26.9157466888 26.9157466888 25.7942590714 25.7942590714 25.7942590714 25.7942590714 24.6727695465 24.6727695465 +25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 25.7942590714 25.7942590714 24.6727695465 24.6727695465 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 +24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 24.6727695465 24.6727695465 23.5512800217 23.5512800217 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 23.5512800217 23.5512800217 22.4297914505 22.4297914505 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 +22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 22.4297914505 22.4297914505 21.3083028793 21.3083028793 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 +21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 21.3083028793 21.3083028793 20.1868143082 20.1868143082 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 20.1868143082 20.1868143082 19.0653247833 19.0653247833 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 +19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 19.0653247833 19.0653247833 17.9438352585 17.9438352585 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 +17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 17.9438352585 17.9438352585 16.8223457336 16.8223457336 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 16.8223457336 16.8223457336 15.7008562088 15.7008562088 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 +15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 15.7008562088 15.7008562088 14.5793671608 14.5793671608 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 +14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 14.5793671608 14.5793671608 13.457877636 13.457877636 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 13.457877636 13.457877636 12.3363881111 12.3363881111 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 +12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 12.3363881111 12.3363881111 11.2148981094 11.2148981094 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 11.2148981094 11.2148981094 10.0934081078 10.0934081078 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 +10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 10.0934081078 10.0934081078 8.97191858292 8.97191858292 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 +8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 8.97191858292 8.97191858292 7.85042905807 7.85042905807 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 7.85042905807 7.85042905807 6.72893929482 6.72893929482 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 +6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 6.72893929482 6.72893929482 5.60744929314 5.60744929314 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 +5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 5.60744929314 5.60744929314 4.48595941067 4.48595941067 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 4.48595941067 4.48595941067 3.36446964741 3.36446964741 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 +3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 3.36446964741 3.36446964741 2.24297982454 2.24297982454 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 +2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 2.24297982454 2.24297982454 1.12148988247 1.12148988247 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 1.12148994207 1.12148994207 0.0 0.0 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 +0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 0.0 0.0 -1.12148994207 -1.12148994207 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -1.12148988247 -1.12148988247 -2.24297982454 -2.24297982454 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 +-2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -2.24297982454 -2.24297982454 -3.36446964741 -3.36446964741 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 +-3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -3.36446964741 -3.36446964741 -4.48595941067 -4.48595941067 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -4.48595941067 -4.48595941067 -5.60744929314 -5.60744929314 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 +-5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -5.60744929314 -5.60744929314 -6.72893929482 -6.72893929482 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 +-6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -6.72893929482 -6.72893929482 -7.85042905807 -7.85042905807 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -7.85042905807 -7.85042905807 -8.97191858292 -8.97191858292 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 +-8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -8.97191858292 -8.97191858292 -10.0934081078 -10.0934081078 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 +-10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -10.0934081078 -10.0934081078 -11.2148981094 -11.2148981094 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -11.2148981094 -11.2148981094 -12.3363881111 -12.3363881111 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 +-12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -12.3363881111 -12.3363881111 -13.457877636 -13.457877636 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 +-13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -13.457877636 -13.457877636 -14.5793671608 -14.5793671608 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -14.5793671608 -14.5793671608 -15.7008562088 -15.7008562088 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 +-15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -15.7008562088 -15.7008562088 -16.8223457336 -16.8223457336 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -16.8223457336 -16.8223457336 -17.9438352585 -17.9438352585 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 +-17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -17.9438352585 -17.9438352585 -19.0653247833 -19.0653247833 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 +-19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -19.0653247833 -19.0653247833 -20.1868143082 -20.1868143082 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -20.1868143082 -20.1868143082 -21.3083028793 -21.3083028793 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 +-21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -21.3083028793 -21.3083028793 -22.4297914505 -22.4297914505 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 +-22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -22.4297914505 -22.4297914505 -23.5512800217 -23.5512800217 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -23.5512800217 -23.5512800217 -24.6727695465 -24.6727695465 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 +-24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -24.6727695465 -24.6727695465 -25.7942590714 -25.7942590714 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 +-25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -25.7942590714 -25.7942590714 -26.9157466888 -26.9157466888 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -26.9157466888 -26.9157466888 -28.0372343063 -28.0372343063 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 +-28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -28.0372343063 -28.0372343063 -29.1587228775 -29.1587228775 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -29.1587228775 -29.1587228775 -30.2802114487 -30.2802114487 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 +-30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -30.2802114487 -30.2802114487 -31.4017000198 -31.4017000198 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 +-31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -31.4017000198 -31.4017000198 -32.5231876373 -32.5231876373 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -32.5231876373 -32.5231876373 -33.6446743011 -33.6446743011 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 +-33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -33.6446743011 -33.6446743011 -34.766160965 -34.766160965 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -34.766160965 -34.766160965 -35.8876476288 -35.8876476288 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 +-35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -35.8876476288 -35.8876476288 -37.0091362 -37.0091362 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -37.0091362 -37.0091362 -38.1306228638 -38.1306228638 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 +-38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -38.1306228638 -38.1306228638 -39.2521076202 -39.2521076202 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 +-39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -39.2521076202 -39.2521076202 -40.3735942841 -40.3735942841 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -40.3735942841 -40.3735942841 -41.4950809479 -41.4950809479 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 +-41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -41.4950809479 -41.4950809479 -42.6165676117 -42.6165676117 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -42.6165676117 -42.6165676117 -43.7380523682 -43.7380523682 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 +-43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -43.7380523682 -43.7380523682 -44.8595371246 -44.8595371246 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -44.8595371246 -44.8595371246 -45.9810218811 -45.9810218811 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 +-45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -45.9810218811 -45.9810218811 -47.1025047302 -47.1025047302 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -47.1025047302 -47.1025047302 -48.2239875793 -48.2239875793 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 +-48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -48.2239875793 -48.2239875793 -49.3454704285 -49.3454704285 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -49.3454704285 -49.3454704285 -50.4669532776 -50.4669532776 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 +-50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -50.4669532776 -50.4669532776 -51.5884342194 -51.5884342194 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -51.5884342194 -51.5884342194 -52.7099151611 -52.7099151611 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -52.7099151611 -52.7099151611 -53.8313961029 -53.8313961029 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 +-53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -53.8313961029 -53.8313961029 -54.9528751373 -54.9528751373 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -54.9528751373 -54.9528751373 -56.0743541718 -56.0743541718 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 +-56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -56.0743541718 -56.0743541718 -57.1958312988 -57.1958312988 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -57.1958312988 -57.1958312988 -58.3173065186 -58.3173065186 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -58.3173065186 -58.3173065186 -59.4387817383 -59.4387817383 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 +-59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -59.4387817383 -59.4387817383 -60.5602550507 -60.5602550507 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -60.5602550507 -60.5602550507 -61.6817264557 -61.6817264557 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -61.6817264557 -61.6817264557 -62.8031978607 -62.8031978607 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 +-62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -62.8031978607 -62.8031978607 -63.924665451 -63.924665451 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -63.924665451 -63.924665451 -65.046131134 -65.046131134 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -65.046131134 -65.046131134 -66.1675949097 -66.1675949097 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 +-66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -66.1675949097 -66.1675949097 -67.2890548706 -67.2890548706 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -67.2890548706 -67.2890548706 -68.4105110168 -68.4105110168 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -68.4105110168 -68.4105110168 -69.5319633484 -69.5319633484 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 +-69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -69.5319633484 -69.5319633484 -70.6534118652 -70.6534118652 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -70.6534118652 -70.6534118652 -71.7748565674 -71.7748565674 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -71.7748565674 -71.7748565674 -72.8962936401 -72.8962936401 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -72.8962936401 -72.8962936401 -74.0177192688 -74.0177192688 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -74.0177192688 -74.0177192688 -75.1391372681 -75.1391372681 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 +-75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -75.1391372681 -75.1391372681 -76.2605438232 -76.2605438232 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -76.2605438232 -76.2605438232 -77.3819351196 -77.3819351196 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -77.3819351196 -77.3819351196 -78.5033035278 -78.5033035278 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -78.5033035278 -78.5033035278 -79.6246452332 -79.6246452332 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -79.6246452332 -79.6246452332 -80.7459526062 -80.7459526062 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -80.7459526062 -80.7459526062 -81.8672065735 -81.8672065735 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 -81.8672065735 -81.8672065735 -82.9883842468 -82.9883842468 +-82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -82.9883842468 -82.9883842468 -84.1094360352 -84.1094360352 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -84.1094360352 -84.1094360352 -85.2302742004 -85.2302742004 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -85.2302742004 -85.2302742004 -86.3507003784 -86.3507003784 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -86.3507003784 -86.3507003784 -87.4701004028 -87.4701004028 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -87.4701004028 -87.4701004028 -88.5854721069 -88.5854721069 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 -88.5854721069 -88.5854721069 -90.0 -90.0 diff --git a/ece2cmor/ece2cmor3/resources/lpjg-grid-content/ingrid_T255_unstructured.txt b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/ingrid_T255_unstructured.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e40010bf78a34dc290650fd466fe1518bfc6aee --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/ingrid_T255_unstructured.txt @@ -0,0 +1,717 @@ +gridtype = unstructured +gridsize = 88838 +xsize = 88838 +ysize = 1 +nvertex = 4 +xvals = 0.0 20.0 40.0 60.0 80.0 100.0 120.0 140.0 160.0 180.0 200.0 220.0 240.0 260.0 280.0 300.0 320.0 340.0 0.0 14.4 28.8 43.2 57.6 72.0 86.4 100.8 115.2 129.6 144.0 158.4 172.8 187.2 201.6 216.0 230.4 244.8 259.2 273.6 288.0 302.4 316.8 331.2 345.6 0.0 10.0 20.0 30.0 40.0 50.0 60.0 70.0 80.0 90.0 100.0 110.0 120.0 130.0 140.0 150.0 160.0 170.0 180.0 190.0 200.0 210.0 220.0 230.0 240.0 250.0 260.0 270.0 280.0 290.0 300.0 310.0 320.0 330.0 340.0 350.0 0.0 9.0 18.0 27.0 36.0 45.0 54.0 63.0 72.0 81.0 90.0 99.0 108.0 117.0 126.0 135.0 144.0 153.0 162.0 171.0 180.0 189.0 198.0 207.0 216.0 225.0 234.0 243.0 252.0 261.0 270.0 279.0 288.0 297.0 306.0 315.0 324.0 333.0 342.0 351.0 0.0 8.0 16.0 24.0 32.0 40.0 48.0 56.0 64.0 72.0 80.0 88.0 96.0 104.0 112.0 120.0 128.0 136.0 144.0 152.0 160.0 168.0 176.0 184.0 192.0 200.0 208.0 216.0 224.0 232.0 240.0 248.0 256.0 264.0 272.0 280.0 288.0 296.0 304.0 312.0 320.0 328.0 336.0 344.0 352.0 0.0 7.2 14.4 21.6 28.8 36.0 43.2 50.4 57.6 64.8 72.0 79.2 86.4 93.6 100.8 108.0 115.2 122.4 129.6 136.8 144.0 151.2 158.4 165.6 172.8 180.0 187.2 194.4 201.6 208.8 216.0 223.2 230.4 237.6 244.8 252.0 259.2 266.4 273.6 280.8 288.0 295.2 302.4 309.6 316.8 324.0 331.2 338.4 345.6 352.8 0.0 6.0 12.0 18.0 24.0 30.0 36.0 42.0 48.0 54.0 60.0 66.0 72.0 78.0 84.0 90.0 96.0 102.0 108.0 114.0 120.0 126.0 132.0 138.0 144.0 150.0 156.0 162.0 168.0 174.0 180.0 186.0 192.0 198.0 204.0 210.0 216.0 222.0 228.0 234.0 240.0 246.0 252.0 258.0 264.0 270.0 276.0 282.0 288.0 294.0 300.0 306.0 312.0 318.0 324.0 330.0 336.0 342.0 348.0 354.0 0.0 5.625 11.25 16.875 22.5 28.125 33.75 39.375 45.0 50.625 56.25 61.875 67.5 73.125 78.75 84.375 90.0 95.625 101.25 106.875 112.5 118.125 123.75 129.375 135.0 140.625 146.25 151.875 157.5 163.125 168.75 174.375 180.0 185.625 191.25 196.875 202.5 208.125 213.75 219.375 225.0 230.625 236.25 241.875 247.5 253.125 258.75 264.375 270.0 275.625 281.25 286.875 292.5 298.125 303.75 309.375 315.0 320.625 326.25 331.875 337.5 343.125 348.75 354.375 0.0 5.0 10.0 15.0 20.0 25.0 30.0 35.0 40.0 45.0 50.0 55.0 60.0 65.0 70.0 75.0 80.0 85.0 90.0 95.0 100.0 105.0 110.0 115.0 120.0 125.0 130.0 135.0 140.0 145.0 150.0 155.0 160.0 165.0 170.0 175.0 180.0 185.0 190.0 195.0 200.0 205.0 210.0 215.0 220.0 225.0 230.0 235.0 240.0 245.0 250.0 255.0 260.0 265.0 270.0 275.0 280.0 285.0 290.0 295.0 300.0 305.0 310.0 315.0 320.0 325.0 330.0 335.0 340.0 345.0 350.0 355.0 0.0 5.0 10.0 15.0 20.0 25.0 30.0 35.0 40.0 45.0 50.0 55.0 60.0 65.0 70.0 75.0 80.0 85.0 90.0 95.0 100.0 105.0 110.0 115.0 120.0 125.0 130.0 135.0 140.0 145.0 150.0 155.0 160.0 165.0 170.0 175.0 180.0 185.0 190.0 195.0 200.0 205.0 210.0 215.0 220.0 225.0 230.0 235.0 240.0 245.0 250.0 255.0 260.0 265.0 270.0 275.0 280.0 285.0 290.0 295.0 300.0 305.0 310.0 315.0 320.0 325.0 330.0 335.0 340.0 345.0 350.0 355.0 0.0 4.5 9.0 13.5 18.0 22.5 27.0 31.5 36.0 40.5 45.0 49.5 54.0 58.5 63.0 67.5 72.0 76.5 +81.0 85.5 90.0 94.5 99.0 103.5 108.0 112.5 117.0 121.5 126.0 130.5 135.0 139.5 144.0 148.5 153.0 157.5 162.0 166.5 171.0 175.5 180.0 184.5 189.0 193.5 198.0 202.5 207.0 211.5 216.0 220.5 225.0 229.5 234.0 238.5 243.0 247.5 252.0 256.5 261.0 265.5 270.0 274.5 279.0 283.5 288.0 292.5 297.0 301.5 306.0 310.5 315.0 319.5 324.0 328.5 333.0 337.5 342.0 346.5 351.0 355.5 0.0 4.0 8.0 12.0 16.0 20.0 24.0 28.0 32.0 36.0 40.0 44.0 48.0 52.0 56.0 60.0 64.0 68.0 72.0 76.0 80.0 84.0 88.0 92.0 96.0 100.0 104.0 108.0 112.0 116.0 120.0 124.0 128.0 132.0 136.0 140.0 144.0 148.0 152.0 156.0 160.0 164.0 168.0 172.0 176.0 180.0 184.0 188.0 192.0 196.0 200.0 204.0 208.0 212.0 216.0 220.0 224.0 228.0 232.0 236.0 240.0 244.0 248.0 252.0 256.0 260.0 264.0 268.0 272.0 276.0 280.0 284.0 288.0 292.0 296.0 300.0 304.0 308.0 312.0 316.0 320.0 324.0 328.0 332.0 336.0 340.0 344.0 348.0 352.0 356.0 0.0 4.0 8.0 12.0 16.0 20.0 24.0 28.0 32.0 36.0 40.0 44.0 48.0 52.0 56.0 60.0 64.0 68.0 72.0 76.0 80.0 84.0 88.0 92.0 96.0 100.0 104.0 108.0 112.0 116.0 120.0 124.0 128.0 132.0 136.0 140.0 144.0 148.0 152.0 156.0 160.0 164.0 168.0 172.0 176.0 180.0 184.0 188.0 192.0 196.0 200.0 204.0 208.0 212.0 216.0 220.0 224.0 228.0 232.0 236.0 240.0 244.0 248.0 252.0 256.0 260.0 264.0 268.0 272.0 276.0 280.0 284.0 288.0 292.0 296.0 300.0 304.0 308.0 312.0 316.0 320.0 324.0 328.0 332.0 336.0 340.0 344.0 348.0 352.0 356.0 0.0 3.6 7.2 10.8 14.4 18.0 21.6 25.2 28.8 32.4 36.0 39.6 43.2 46.8 50.4 54.0 57.6 61.2 64.8 68.4 72.0 75.6 79.2 82.8 86.4 90.0 93.6 97.2 100.8 104.4 108.0 111.6 115.2 118.8 122.4 126.0 129.6 133.2 136.8 140.4 144.0 147.6 151.2 154.8 158.4 162.0 165.6 169.2 172.8 176.4 180.0 183.6 187.2 190.8 194.4 198.0 201.6 205.2 208.8 212.4 216.0 219.6 223.2 226.8 230.4 234.0 237.6 241.2 244.8 248.4 252.0 255.6 259.2 262.8 266.4 270.0 273.6 277.2 280.8 284.4 288.0 291.6 295.2 298.8 302.4 306.0 309.6 313.2 316.8 320.4 324.0 327.6 331.2 334.8 338.4 342.0 345.6 349.2 352.8 356.4 0.0 3.33333 6.66667 10.0 13.3333 16.6667 20.0 23.3333 26.6667 30.0 33.3333 36.6667 40.0 43.3333 46.6667 50.0 53.3333 56.6667 60.0 63.3333 66.6667 70.0 73.3333 76.6667 80.0 83.3333 86.6667 90.0 93.3333 96.6667 100.0 103.333 106.667 110.0 113.333 116.667 120.0 123.333 126.667 130.0 133.333 136.667 140.0 143.333 146.667 150.0 153.333 156.667 160.0 163.333 166.667 170.0 173.333 176.667 180.0 183.333 186.667 190.0 193.333 196.667 200.0 203.333 206.667 210.0 213.333 216.667 220.0 223.333 226.667 230.0 233.333 236.667 240.0 243.333 246.667 250.0 253.333 256.667 260.0 263.333 266.667 270.0 273.333 276.667 280.0 283.333 286.667 290.0 293.333 296.667 300.0 303.333 306.667 310.0 313.333 316.667 320.0 323.333 326.667 330.0 333.333 336.667 340.0 343.333 346.667 350.0 353.333 356.667 0.0 3.0 6.0 9.0 12.0 15.0 18.0 21.0 24.0 27.0 30.0 33.0 36.0 39.0 42.0 45.0 48.0 51.0 54.0 57.0 60.0 63.0 66.0 69.0 72.0 75.0 78.0 81.0 84.0 87.0 90.0 93.0 96.0 99.0 102.0 105.0 108.0 111.0 114.0 117.0 120.0 123.0 126.0 129.0 132.0 135.0 138.0 141.0 144.0 147.0 +150.0 153.0 156.0 159.0 162.0 165.0 168.0 171.0 174.0 177.0 180.0 183.0 186.0 189.0 192.0 195.0 198.0 201.0 204.0 207.0 210.0 213.0 216.0 219.0 222.0 225.0 228.0 231.0 234.0 237.0 240.0 243.0 246.0 249.0 252.0 255.0 258.0 261.0 264.0 267.0 270.0 273.0 276.0 279.0 282.0 285.0 288.0 291.0 294.0 297.0 300.0 303.0 306.0 309.0 312.0 315.0 318.0 321.0 324.0 327.0 330.0 333.0 336.0 339.0 342.0 345.0 348.0 351.0 354.0 357.0 0.0 3.0 6.0 9.0 12.0 15.0 18.0 21.0 24.0 27.0 30.0 33.0 36.0 39.0 42.0 45.0 48.0 51.0 54.0 57.0 60.0 63.0 66.0 69.0 72.0 75.0 78.0 81.0 84.0 87.0 90.0 93.0 96.0 99.0 102.0 105.0 108.0 111.0 114.0 117.0 120.0 123.0 126.0 129.0 132.0 135.0 138.0 141.0 144.0 147.0 150.0 153.0 156.0 159.0 162.0 165.0 168.0 171.0 174.0 177.0 180.0 183.0 186.0 189.0 192.0 195.0 198.0 201.0 204.0 207.0 210.0 213.0 216.0 219.0 222.0 225.0 228.0 231.0 234.0 237.0 240.0 243.0 246.0 249.0 252.0 255.0 258.0 261.0 264.0 267.0 270.0 273.0 276.0 279.0 282.0 285.0 288.0 291.0 294.0 297.0 300.0 303.0 306.0 309.0 312.0 315.0 318.0 321.0 324.0 327.0 330.0 333.0 336.0 339.0 342.0 345.0 348.0 351.0 354.0 357.0 0.0 2.88 5.76 8.64 11.52 14.4 17.28 20.16 23.04 25.92 28.8 31.68 34.56 37.44 40.32 43.2 46.08 48.96 51.84 54.72 57.6 60.48 63.36 66.24 69.12 72.0 74.88 77.76 80.64 83.52 86.4 89.28 92.16 95.04 97.92 100.8 103.68 106.56 109.44 112.32 115.2 118.08 120.96 123.84 126.72 129.6 132.48 135.36 138.24 141.12 144.0 146.88 149.76 152.64 155.52 158.4 161.28 164.16 167.04 169.92 172.8 175.68 178.56 181.44 184.32 187.2 190.08 192.96 195.84 198.72 201.6 204.48 207.36 210.24 213.12 216.0 218.88 221.76 224.64 227.52 230.4 233.28 236.16 239.04 241.92 244.8 247.68 250.56 253.44 256.32 259.2 262.08 264.96 267.84 270.72 273.6 276.48 279.36 282.24 285.12 288.0 290.88 293.76 296.64 299.52 302.4 305.28 308.16 311.04 313.92 316.8 319.68 322.56 325.44 328.32 331.2 334.08 336.96 339.84 342.72 345.6 348.48 351.36 354.24 357.12 0.0 2.8125 5.625 8.4375 11.25 14.0625 16.875 19.6875 22.5 25.3125 28.125 30.9375 33.75 36.5625 39.375 42.1875 45.0 47.8125 50.625 53.4375 56.25 59.0625 61.875 64.6875 67.5 70.3125 73.125 75.9375 78.75 81.5625 84.375 87.1875 90.0 92.8125 95.625 98.4375 101.25 104.062 106.875 109.688 112.5 115.312 118.125 120.938 123.75 126.562 129.375 132.188 135.0 137.812 140.625 143.438 146.25 149.062 151.875 154.688 157.5 160.312 163.125 165.938 168.75 171.562 174.375 177.188 180.0 182.812 185.625 188.438 191.25 194.062 196.875 199.688 202.5 205.312 208.125 210.938 213.75 216.562 219.375 222.188 225.0 227.812 230.625 233.438 236.25 239.062 241.875 244.688 247.5 250.312 253.125 255.938 258.75 261.562 264.375 267.188 270.0 272.812 275.625 278.438 281.25 284.062 286.875 289.688 292.5 295.312 298.125 300.938 303.75 306.562 309.375 312.188 315.0 317.812 320.625 323.438 326.25 329.062 331.875 334.688 337.5 340.312 343.125 345.938 348.75 351.562 354.375 357.188 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 +142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 0.0 2.4 4.8 7.2 9.6 12.0 14.4 16.8 19.2 21.6 24.0 26.4 28.8 31.2 33.6 36.0 38.4 40.8 43.2 45.6 48.0 50.4 52.8 55.2 57.6 60.0 62.4 64.8 67.2 69.6 72.0 74.4 76.8 79.2 81.6 84.0 86.4 88.8 91.2 93.6 96.0 98.4 100.8 103.2 105.6 108.0 110.4 112.8 115.2 117.6 120.0 122.4 124.8 127.2 129.6 132.0 134.4 136.8 139.2 141.6 144.0 146.4 148.8 151.2 153.6 156.0 158.4 160.8 163.2 165.6 168.0 170.4 172.8 175.2 177.6 180.0 182.4 184.8 187.2 189.6 192.0 194.4 196.8 199.2 201.6 204.0 206.4 208.8 211.2 213.6 216.0 218.4 220.8 223.2 225.6 228.0 230.4 232.8 235.2 237.6 240.0 242.4 244.8 247.2 249.6 252.0 254.4 256.8 259.2 261.6 264.0 266.4 268.8 271.2 273.6 276.0 278.4 280.8 283.2 285.6 288.0 290.4 292.8 295.2 297.6 300.0 302.4 304.8 307.2 309.6 312.0 314.4 316.8 319.2 321.6 324.0 326.4 328.8 331.2 333.6 336.0 338.4 340.8 343.2 345.6 348.0 350.4 352.8 355.2 357.6 0.0 2.25 4.5 6.75 9.0 11.25 13.5 15.75 18.0 20.25 22.5 24.75 27.0 29.25 31.5 33.75 36.0 38.25 40.5 42.75 45.0 47.25 49.5 51.75 54.0 56.25 58.5 60.75 63.0 65.25 67.5 69.75 72.0 74.25 76.5 78.75 81.0 83.25 85.5 87.75 90.0 92.25 94.5 96.75 99.0 101.25 103.5 105.75 108.0 110.25 112.5 114.75 117.0 119.25 121.5 123.75 126.0 128.25 130.5 132.75 135.0 137.25 139.5 141.75 144.0 146.25 148.5 150.75 153.0 155.25 157.5 159.75 162.0 164.25 166.5 168.75 171.0 173.25 175.5 177.75 180.0 182.25 184.5 186.75 189.0 191.25 193.5 195.75 198.0 200.25 202.5 204.75 207.0 209.25 211.5 213.75 216.0 218.25 220.5 222.75 225.0 227.25 229.5 231.75 234.0 236.25 238.5 240.75 243.0 245.25 247.5 249.75 252.0 254.25 256.5 258.75 261.0 263.25 265.5 +267.75 270.0 272.25 274.5 276.75 279.0 281.25 283.5 285.75 288.0 290.25 292.5 294.75 297.0 299.25 301.5 303.75 306.0 308.25 310.5 312.75 315.0 317.25 319.5 321.75 324.0 326.25 328.5 330.75 333.0 335.25 337.5 339.75 342.0 344.25 346.5 348.75 351.0 353.25 355.5 357.75 0.0 2.25 4.5 6.75 9.0 11.25 13.5 15.75 18.0 20.25 22.5 24.75 27.0 29.25 31.5 33.75 36.0 38.25 40.5 42.75 45.0 47.25 49.5 51.75 54.0 56.25 58.5 60.75 63.0 65.25 67.5 69.75 72.0 74.25 76.5 78.75 81.0 83.25 85.5 87.75 90.0 92.25 94.5 96.75 99.0 101.25 103.5 105.75 108.0 110.25 112.5 114.75 117.0 119.25 121.5 123.75 126.0 128.25 130.5 132.75 135.0 137.25 139.5 141.75 144.0 146.25 148.5 150.75 153.0 155.25 157.5 159.75 162.0 164.25 166.5 168.75 171.0 173.25 175.5 177.75 180.0 182.25 184.5 186.75 189.0 191.25 193.5 195.75 198.0 200.25 202.5 204.75 207.0 209.25 211.5 213.75 216.0 218.25 220.5 222.75 225.0 227.25 229.5 231.75 234.0 236.25 238.5 240.75 243.0 245.25 247.5 249.75 252.0 254.25 256.5 258.75 261.0 263.25 265.5 267.75 270.0 272.25 274.5 276.75 279.0 281.25 283.5 285.75 288.0 290.25 292.5 294.75 297.0 299.25 301.5 303.75 306.0 308.25 310.5 312.75 315.0 317.25 319.5 321.75 324.0 326.25 328.5 330.75 333.0 335.25 337.5 339.75 342.0 344.25 346.5 348.75 351.0 353.25 355.5 357.75 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 +238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 1.875 3.75 5.625 7.5 9.375 11.25 13.125 15.0 16.875 18.75 20.625 22.5 24.375 26.25 28.125 30.0 31.875 33.75 35.625 37.5 39.375 41.25 43.125 45.0 46.875 48.75 50.625 52.5 54.375 56.25 58.125 60.0 61.875 63.75 65.625 67.5 69.375 71.25 73.125 75.0 76.875 78.75 80.625 82.5 84.375 86.25 88.125 90.0 91.875 93.75 95.625 97.5 99.375 101.25 103.125 105.0 106.875 108.75 110.625 112.5 114.375 116.25 118.125 120.0 121.875 123.75 125.625 127.5 129.375 131.25 133.125 135.0 136.875 138.75 140.625 142.5 144.375 146.25 148.125 150.0 151.875 153.75 155.625 157.5 159.375 161.25 163.125 165.0 166.875 168.75 170.625 172.5 174.375 176.25 178.125 180.0 181.875 183.75 185.625 187.5 189.375 191.25 193.125 195.0 196.875 198.75 200.625 202.5 204.375 206.25 208.125 210.0 211.875 213.75 215.625 217.5 219.375 221.25 223.125 225.0 226.875 228.75 230.625 232.5 234.375 236.25 238.125 240.0 241.875 243.75 245.625 247.5 249.375 251.25 253.125 255.0 256.875 258.75 260.625 262.5 264.375 266.25 268.125 270.0 271.875 273.75 275.625 277.5 279.375 281.25 283.125 285.0 286.875 288.75 290.625 292.5 294.375 296.25 298.125 300.0 301.875 303.75 305.625 307.5 309.375 311.25 313.125 315.0 316.875 318.75 320.625 322.5 324.375 326.25 328.125 330.0 331.875 333.75 335.625 337.5 339.375 341.25 343.125 345.0 346.875 348.75 350.625 352.5 354.375 356.25 358.125 0.0 1.875 3.75 5.625 7.5 9.375 11.25 13.125 15.0 16.875 18.75 20.625 22.5 24.375 26.25 28.125 30.0 31.875 33.75 35.625 37.5 39.375 41.25 43.125 45.0 46.875 48.75 50.625 52.5 54.375 56.25 58.125 60.0 61.875 63.75 65.625 67.5 69.375 71.25 73.125 75.0 76.875 78.75 80.625 82.5 84.375 86.25 88.125 90.0 91.875 93.75 95.625 97.5 99.375 101.25 103.125 105.0 106.875 108.75 110.625 112.5 114.375 116.25 118.125 120.0 121.875 123.75 +125.625 127.5 129.375 131.25 133.125 135.0 136.875 138.75 140.625 142.5 144.375 146.25 148.125 150.0 151.875 153.75 155.625 157.5 159.375 161.25 163.125 165.0 166.875 168.75 170.625 172.5 174.375 176.25 178.125 180.0 181.875 183.75 185.625 187.5 189.375 191.25 193.125 195.0 196.875 198.75 200.625 202.5 204.375 206.25 208.125 210.0 211.875 213.75 215.625 217.5 219.375 221.25 223.125 225.0 226.875 228.75 230.625 232.5 234.375 236.25 238.125 240.0 241.875 243.75 245.625 247.5 249.375 251.25 253.125 255.0 256.875 258.75 260.625 262.5 264.375 266.25 268.125 270.0 271.875 273.75 275.625 277.5 279.375 281.25 283.125 285.0 286.875 288.75 290.625 292.5 294.375 296.25 298.125 300.0 301.875 303.75 305.625 307.5 309.375 311.25 313.125 315.0 316.875 318.75 320.625 322.5 324.375 326.25 328.125 330.0 331.875 333.75 335.625 337.5 339.375 341.25 343.125 345.0 346.875 348.75 350.625 352.5 354.375 356.25 358.125 0.0 1.8 3.6 5.4 7.2 9.0 10.8 12.6 14.4 16.2 18.0 19.8 21.6 23.4 25.2 27.0 28.8 30.6 32.4 34.2 36.0 37.8 39.6 41.4 43.2 45.0 46.8 48.6 50.4 52.2 54.0 55.8 57.6 59.4 61.2 63.0 64.8 66.6 68.4 70.2 72.0 73.8 75.6 77.4 79.2 81.0 82.8 84.6 86.4 88.2 90.0 91.8 93.6 95.4 97.2 99.0 100.8 102.6 104.4 106.2 108.0 109.8 111.6 113.4 115.2 117.0 118.8 120.6 122.4 124.2 126.0 127.8 129.6 131.4 133.2 135.0 136.8 138.6 140.4 142.2 144.0 145.8 147.6 149.4 151.2 153.0 154.8 156.6 158.4 160.2 162.0 163.8 165.6 167.4 169.2 171.0 172.8 174.6 176.4 178.2 180.0 181.8 183.6 185.4 187.2 189.0 190.8 192.6 194.4 196.2 198.0 199.8 201.6 203.4 205.2 207.0 208.8 210.6 212.4 214.2 216.0 217.8 219.6 221.4 223.2 225.0 226.8 228.6 230.4 232.2 234.0 235.8 237.6 239.4 241.2 243.0 244.8 246.6 248.4 250.2 252.0 253.8 255.6 257.4 259.2 261.0 262.8 264.6 266.4 268.2 270.0 271.8 273.6 275.4 277.2 279.0 280.8 282.6 284.4 286.2 288.0 289.8 291.6 293.4 295.2 297.0 298.8 300.6 302.4 304.2 306.0 307.8 309.6 311.4 313.2 315.0 316.8 318.6 320.4 322.2 324.0 325.8 327.6 329.4 331.2 333.0 334.8 336.6 338.4 340.2 342.0 343.8 345.6 347.4 349.2 351.0 352.8 354.6 356.4 358.2 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 +291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.6 3.2 4.8 6.4 8.0 9.6 11.2 12.8 14.4 16.0 17.6 19.2 20.8 22.4 24.0 25.6 27.2 28.8 30.4 32.0 33.6 35.2 36.8 38.4 40.0 41.6 +43.2 44.8 46.4 48.0 49.6 51.2 52.8 54.4 56.0 57.6 59.2 60.8 62.4 64.0 65.6 67.2 68.8 70.4 72.0 73.6 75.2 76.8 78.4 80.0 81.6 83.2 84.8 86.4 88.0 89.6 91.2 92.8 94.4 96.0 97.6 99.2 100.8 102.4 104.0 105.6 107.2 108.8 110.4 112.0 113.6 115.2 116.8 118.4 120.0 121.6 123.2 124.8 126.4 128.0 129.6 131.2 132.8 134.4 136.0 137.6 139.2 140.8 142.4 144.0 145.6 147.2 148.8 150.4 152.0 153.6 155.2 156.8 158.4 160.0 161.6 163.2 164.8 166.4 168.0 169.6 171.2 172.8 174.4 176.0 177.6 179.2 180.8 182.4 184.0 185.6 187.2 188.8 190.4 192.0 193.6 195.2 196.8 198.4 200.0 201.6 203.2 204.8 206.4 208.0 209.6 211.2 212.8 214.4 216.0 217.6 219.2 220.8 222.4 224.0 225.6 227.2 228.8 230.4 232.0 233.6 235.2 236.8 238.4 240.0 241.6 243.2 244.8 246.4 248.0 249.6 251.2 252.8 254.4 256.0 257.6 259.2 260.8 262.4 264.0 265.6 267.2 268.8 270.4 272.0 273.6 275.2 276.8 278.4 280.0 281.6 283.2 284.8 286.4 288.0 289.6 291.2 292.8 294.4 296.0 297.6 299.2 300.8 302.4 304.0 305.6 307.2 308.8 310.4 312.0 313.6 315.2 316.8 318.4 320.0 321.6 323.2 324.8 326.4 328.0 329.6 331.2 332.8 334.4 336.0 337.6 339.2 340.8 342.4 344.0 345.6 347.2 348.8 350.4 352.0 353.6 355.2 356.8 358.4 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 +93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.44 2.88 4.32 5.76 7.2 8.64 10.08 11.52 12.96 14.4 15.84 17.28 18.72 20.16 21.6 23.04 24.48 25.92 27.36 28.8 30.24 31.68 33.12 34.56 36.0 37.44 38.88 40.32 41.76 43.2 44.64 46.08 47.52 48.96 50.4 51.84 53.28 54.72 56.16 57.6 59.04 60.48 61.92 63.36 64.8 66.24 67.68 69.12 70.56 72.0 73.44 74.88 76.32 77.76 79.2 80.64 82.08 83.52 84.96 86.4 87.84 89.28 90.72 92.16 93.6 95.04 96.48 97.92 99.36 100.8 102.24 103.68 105.12 106.56 108.0 109.44 110.88 112.32 113.76 115.2 116.64 +118.08 119.52 120.96 122.4 123.84 125.28 126.72 128.16 129.6 131.04 132.48 133.92 135.36 136.8 138.24 139.68 141.12 142.56 144.0 145.44 146.88 148.32 149.76 151.2 152.64 154.08 155.52 156.96 158.4 159.84 161.28 162.72 164.16 165.6 167.04 168.48 169.92 171.36 172.8 174.24 175.68 177.12 178.56 180.0 181.44 182.88 184.32 185.76 187.2 188.64 190.08 191.52 192.96 194.4 195.84 197.28 198.72 200.16 201.6 203.04 204.48 205.92 207.36 208.8 210.24 211.68 213.12 214.56 216.0 217.44 218.88 220.32 221.76 223.2 224.64 226.08 227.52 228.96 230.4 231.84 233.28 234.72 236.16 237.6 239.04 240.48 241.92 243.36 244.8 246.24 247.68 249.12 250.56 252.0 253.44 254.88 256.32 257.76 259.2 260.64 262.08 263.52 264.96 266.4 267.84 269.28 270.72 272.16 273.6 275.04 276.48 277.92 279.36 280.8 282.24 283.68 285.12 286.56 288.0 289.44 290.88 292.32 293.76 295.2 296.64 298.08 299.52 300.96 302.4 303.84 305.28 306.72 308.16 309.6 311.04 312.48 313.92 315.36 316.8 318.24 319.68 321.12 322.56 324.0 325.44 326.88 328.32 329.76 331.2 332.64 334.08 335.52 336.96 338.4 339.84 341.28 342.72 344.16 345.6 347.04 348.48 349.92 351.36 352.8 354.24 355.68 357.12 358.56 0.0 1.44 2.88 4.32 5.76 7.2 8.64 10.08 11.52 12.96 14.4 15.84 17.28 18.72 20.16 21.6 23.04 24.48 25.92 27.36 28.8 30.24 31.68 33.12 34.56 36.0 37.44 38.88 40.32 41.76 43.2 44.64 46.08 47.52 48.96 50.4 51.84 53.28 54.72 56.16 57.6 59.04 60.48 61.92 63.36 64.8 66.24 67.68 69.12 70.56 72.0 73.44 74.88 76.32 77.76 79.2 80.64 82.08 83.52 84.96 86.4 87.84 89.28 90.72 92.16 93.6 95.04 96.48 97.92 99.36 100.8 102.24 103.68 105.12 106.56 108.0 109.44 110.88 112.32 113.76 115.2 116.64 118.08 119.52 120.96 122.4 123.84 125.28 126.72 128.16 129.6 131.04 132.48 133.92 135.36 136.8 138.24 139.68 141.12 142.56 144.0 145.44 146.88 148.32 149.76 151.2 152.64 154.08 155.52 156.96 158.4 159.84 161.28 162.72 164.16 165.6 167.04 168.48 169.92 171.36 172.8 174.24 175.68 177.12 178.56 180.0 181.44 182.88 184.32 185.76 187.2 188.64 190.08 191.52 192.96 194.4 195.84 197.28 198.72 200.16 201.6 203.04 204.48 205.92 207.36 208.8 210.24 211.68 213.12 214.56 216.0 217.44 218.88 220.32 221.76 223.2 224.64 226.08 227.52 228.96 230.4 231.84 233.28 234.72 236.16 237.6 239.04 240.48 241.92 243.36 244.8 246.24 247.68 249.12 250.56 252.0 253.44 254.88 256.32 257.76 259.2 260.64 262.08 263.52 264.96 266.4 267.84 269.28 270.72 272.16 273.6 275.04 276.48 277.92 279.36 280.8 282.24 283.68 285.12 286.56 288.0 289.44 290.88 292.32 293.76 295.2 296.64 298.08 299.52 300.96 302.4 303.84 305.28 306.72 308.16 309.6 311.04 312.48 313.92 315.36 316.8 318.24 319.68 321.12 322.56 324.0 325.44 326.88 328.32 329.76 331.2 332.64 334.08 335.52 336.96 338.4 339.84 341.28 342.72 344.16 345.6 347.04 348.48 349.92 351.36 352.8 354.24 355.68 357.12 358.56 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 +115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.33333 2.66667 4.0 5.33333 6.66667 8.0 9.33333 10.6667 12.0 13.3333 14.6667 16.0 17.3333 18.6667 20.0 21.3333 22.6667 24.0 25.3333 26.6667 28.0 29.3333 30.6667 32.0 33.3333 34.6667 36.0 37.3333 38.6667 40.0 41.3333 42.6667 44.0 45.3333 46.6667 48.0 49.3333 50.6667 52.0 53.3333 54.6667 56.0 57.3333 58.6667 60.0 61.3333 62.6667 64.0 65.3333 66.6667 68.0 69.3333 70.6667 72.0 73.3333 74.6667 76.0 77.3333 78.6667 80.0 81.3333 82.6667 84.0 85.3333 86.6667 88.0 89.3333 90.6667 92.0 93.3333 94.6667 96.0 97.3333 98.6667 100.0 101.333 102.667 104.0 105.333 106.667 108.0 109.333 110.667 112.0 113.333 114.667 116.0 117.333 118.667 120.0 121.333 122.667 124.0 125.333 126.667 128.0 129.333 130.667 132.0 133.333 134.667 136.0 137.333 138.667 140.0 141.333 142.667 144.0 145.333 146.667 148.0 149.333 150.667 152.0 153.333 154.667 156.0 157.333 158.667 160.0 161.333 162.667 164.0 165.333 166.667 168.0 169.333 170.667 172.0 173.333 174.667 176.0 177.333 178.667 180.0 181.333 182.667 184.0 185.333 186.667 188.0 189.333 190.667 192.0 193.333 194.667 196.0 197.333 198.667 200.0 201.333 202.667 204.0 205.333 206.667 208.0 209.333 210.667 212.0 213.333 214.667 216.0 217.333 218.667 220.0 221.333 222.667 224.0 225.333 226.667 228.0 229.333 230.667 232.0 233.333 234.667 236.0 237.333 238.667 240.0 241.333 242.667 244.0 245.333 246.667 248.0 249.333 250.667 252.0 253.333 254.667 256.0 257.333 258.667 260.0 261.333 262.667 264.0 265.333 266.667 268.0 269.333 270.667 272.0 273.333 274.667 276.0 277.333 278.667 280.0 281.333 282.667 284.0 285.333 286.667 288.0 289.333 290.667 292.0 293.333 294.667 296.0 297.333 298.667 300.0 301.333 302.667 304.0 305.333 306.667 308.0 309.333 310.667 312.0 313.333 314.667 316.0 317.333 318.667 320.0 321.333 322.667 324.0 325.333 326.667 328.0 329.333 330.667 332.0 333.333 334.667 336.0 337.333 338.667 340.0 341.333 342.667 344.0 345.333 346.667 348.0 349.333 350.667 352.0 353.333 354.667 356.0 357.333 358.667 0.0 1.33333 2.66667 4.0 5.33333 6.66667 8.0 9.33333 10.6667 12.0 13.3333 14.6667 16.0 17.3333 18.6667 20.0 21.3333 22.6667 24.0 25.3333 26.6667 28.0 29.3333 30.6667 32.0 33.3333 34.6667 36.0 37.3333 38.6667 40.0 41.3333 42.6667 44.0 45.3333 46.6667 48.0 49.3333 50.6667 52.0 53.3333 54.6667 56.0 57.3333 58.6667 60.0 61.3333 62.6667 64.0 65.3333 66.6667 68.0 69.3333 70.6667 72.0 73.3333 +74.6667 76.0 77.3333 78.6667 80.0 81.3333 82.6667 84.0 85.3333 86.6667 88.0 89.3333 90.6667 92.0 93.3333 94.6667 96.0 97.3333 98.6667 100.0 101.333 102.667 104.0 105.333 106.667 108.0 109.333 110.667 112.0 113.333 114.667 116.0 117.333 118.667 120.0 121.333 122.667 124.0 125.333 126.667 128.0 129.333 130.667 132.0 133.333 134.667 136.0 137.333 138.667 140.0 141.333 142.667 144.0 145.333 146.667 148.0 149.333 150.667 152.0 153.333 154.667 156.0 157.333 158.667 160.0 161.333 162.667 164.0 165.333 166.667 168.0 169.333 170.667 172.0 173.333 174.667 176.0 177.333 178.667 180.0 181.333 182.667 184.0 185.333 186.667 188.0 189.333 190.667 192.0 193.333 194.667 196.0 197.333 198.667 200.0 201.333 202.667 204.0 205.333 206.667 208.0 209.333 210.667 212.0 213.333 214.667 216.0 217.333 218.667 220.0 221.333 222.667 224.0 225.333 226.667 228.0 229.333 230.667 232.0 233.333 234.667 236.0 237.333 238.667 240.0 241.333 242.667 244.0 245.333 246.667 248.0 249.333 250.667 252.0 253.333 254.667 256.0 257.333 258.667 260.0 261.333 262.667 264.0 265.333 266.667 268.0 269.333 270.667 272.0 273.333 274.667 276.0 277.333 278.667 280.0 281.333 282.667 284.0 285.333 286.667 288.0 289.333 290.667 292.0 293.333 294.667 296.0 297.333 298.667 300.0 301.333 302.667 304.0 305.333 306.667 308.0 309.333 310.667 312.0 313.333 314.667 316.0 317.333 318.667 320.0 321.333 322.667 324.0 325.333 326.667 328.0 329.333 330.667 332.0 333.333 334.667 336.0 337.333 338.667 340.0 341.333 342.667 344.0 345.333 346.667 348.0 349.333 350.667 352.0 353.333 354.667 356.0 357.333 358.667 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 +357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 +262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 +146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 +2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 +204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.11111 2.22222 3.33333 4.44444 5.55556 6.66667 7.77778 8.88889 10.0 11.1111 12.2222 13.3333 14.4444 15.5556 16.6667 17.7778 18.8889 20.0 21.1111 22.2222 23.3333 24.4444 25.5556 26.6667 27.7778 28.8889 30.0 31.1111 32.2222 33.3333 34.4444 35.5556 36.6667 37.7778 38.8889 40.0 41.1111 42.2222 43.3333 44.4444 45.5556 +46.6667 47.7778 48.8889 50.0 51.1111 52.2222 53.3333 54.4444 55.5556 56.6667 57.7778 58.8889 60.0 61.1111 62.2222 63.3333 64.4444 65.5556 66.6667 67.7778 68.8889 70.0 71.1111 72.2222 73.3333 74.4444 75.5556 76.6667 77.7778 78.8889 80.0 81.1111 82.2222 83.3333 84.4444 85.5556 86.6667 87.7778 88.8889 90.0 91.1111 92.2222 93.3333 94.4444 95.5556 96.6667 97.7778 98.8889 100.0 101.111 102.222 103.333 104.444 105.556 106.667 107.778 108.889 110.0 111.111 112.222 113.333 114.444 115.556 116.667 117.778 118.889 120.0 121.111 122.222 123.333 124.444 125.556 126.667 127.778 128.889 130.0 131.111 132.222 133.333 134.444 135.556 136.667 137.778 138.889 140.0 141.111 142.222 143.333 144.444 145.556 146.667 147.778 148.889 150.0 151.111 152.222 153.333 154.444 155.556 156.667 157.778 158.889 160.0 161.111 162.222 163.333 164.444 165.556 166.667 167.778 168.889 170.0 171.111 172.222 173.333 174.444 175.556 176.667 177.778 178.889 180.0 181.111 182.222 183.333 184.444 185.556 186.667 187.778 188.889 190.0 191.111 192.222 193.333 194.444 195.556 196.667 197.778 198.889 200.0 201.111 202.222 203.333 204.444 205.556 206.667 207.778 208.889 210.0 211.111 212.222 213.333 214.444 215.556 216.667 217.778 218.889 220.0 221.111 222.222 223.333 224.444 225.556 226.667 227.778 228.889 230.0 231.111 232.222 233.333 234.444 235.556 236.667 237.778 238.889 240.0 241.111 242.222 243.333 244.444 245.556 246.667 247.778 248.889 250.0 251.111 252.222 253.333 254.444 255.556 256.667 257.778 258.889 260.0 261.111 262.222 263.333 264.444 265.556 266.667 267.778 268.889 270.0 271.111 272.222 273.333 274.444 275.556 276.667 277.778 278.889 280.0 281.111 282.222 283.333 284.444 285.556 286.667 287.778 288.889 290.0 291.111 292.222 293.333 294.444 295.556 296.667 297.778 298.889 300.0 301.111 302.222 303.333 304.444 305.556 306.667 307.778 308.889 310.0 311.111 312.222 313.333 314.444 315.556 316.667 317.778 318.889 320.0 321.111 322.222 323.333 324.444 325.556 326.667 327.778 328.889 330.0 331.111 332.222 333.333 334.444 335.556 336.667 337.778 338.889 340.0 341.111 342.222 343.333 344.444 345.556 346.667 347.778 348.889 350.0 351.111 352.222 353.333 354.444 355.556 356.667 357.778 358.889 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 +218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 +358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 +138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 +278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 +58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 0.96 1.92 2.88 3.84 4.8 5.76 6.72 7.68 8.64 9.6 10.56 11.52 12.48 13.44 14.4 15.36 16.32 17.28 18.24 19.2 20.16 21.12 22.08 23.04 24.0 24.96 25.92 26.88 27.84 28.8 29.76 30.72 31.68 32.64 33.6 34.56 35.52 36.48 37.44 38.4 39.36 40.32 41.28 42.24 43.2 44.16 45.12 46.08 47.04 48.0 48.96 49.92 50.88 51.84 52.8 53.76 54.72 55.68 56.64 57.6 58.56 59.52 60.48 61.44 62.4 63.36 64.32 65.28 66.24 67.2 68.16 69.12 70.08 71.04 72.0 72.96 73.92 74.88 75.84 76.8 77.76 78.72 79.68 80.64 81.6 82.56 83.52 84.48 85.44 86.4 87.36 88.32 89.28 90.24 91.2 92.16 93.12 94.08 95.04 96.0 96.96 97.92 98.88 99.84 100.8 101.76 102.72 103.68 104.64 105.6 106.56 107.52 108.48 109.44 110.4 111.36 112.32 113.28 114.24 115.2 116.16 117.12 118.08 119.04 120.0 120.96 121.92 122.88 123.84 124.8 125.76 126.72 127.68 128.64 129.6 130.56 131.52 132.48 133.44 134.4 135.36 136.32 137.28 138.24 139.2 140.16 141.12 142.08 143.04 144.0 144.96 145.92 146.88 147.84 148.8 149.76 150.72 151.68 152.64 153.6 154.56 155.52 156.48 157.44 158.4 159.36 160.32 161.28 162.24 163.2 164.16 165.12 166.08 167.04 168.0 168.96 169.92 170.88 171.84 172.8 173.76 174.72 175.68 176.64 177.6 178.56 179.52 180.48 181.44 182.4 183.36 184.32 185.28 186.24 187.2 188.16 189.12 +190.08 191.04 192.0 192.96 193.92 194.88 195.84 196.8 197.76 198.72 199.68 200.64 201.6 202.56 203.52 204.48 205.44 206.4 207.36 208.32 209.28 210.24 211.2 212.16 213.12 214.08 215.04 216.0 216.96 217.92 218.88 219.84 220.8 221.76 222.72 223.68 224.64 225.6 226.56 227.52 228.48 229.44 230.4 231.36 232.32 233.28 234.24 235.2 236.16 237.12 238.08 239.04 240.0 240.96 241.92 242.88 243.84 244.8 245.76 246.72 247.68 248.64 249.6 250.56 251.52 252.48 253.44 254.4 255.36 256.32 257.28 258.24 259.2 260.16 261.12 262.08 263.04 264.0 264.96 265.92 266.88 267.84 268.8 269.76 270.72 271.68 272.64 273.6 274.56 275.52 276.48 277.44 278.4 279.36 280.32 281.28 282.24 283.2 284.16 285.12 286.08 287.04 288.0 288.96 289.92 290.88 291.84 292.8 293.76 294.72 295.68 296.64 297.6 298.56 299.52 300.48 301.44 302.4 303.36 304.32 305.28 306.24 307.2 308.16 309.12 310.08 311.04 312.0 312.96 313.92 314.88 315.84 316.8 317.76 318.72 319.68 320.64 321.6 322.56 323.52 324.48 325.44 326.4 327.36 328.32 329.28 330.24 331.2 332.16 333.12 334.08 335.04 336.0 336.96 337.92 338.88 339.84 340.8 341.76 342.72 343.68 344.64 345.6 346.56 347.52 348.48 349.44 350.4 351.36 352.32 353.28 354.24 355.2 356.16 357.12 358.08 359.04 0.0 0.96 1.92 2.88 3.84 4.8 5.76 6.72 7.68 8.64 9.6 10.56 11.52 12.48 13.44 14.4 15.36 16.32 17.28 18.24 19.2 20.16 21.12 22.08 23.04 24.0 24.96 25.92 26.88 27.84 28.8 29.76 30.72 31.68 32.64 33.6 34.56 35.52 36.48 37.44 38.4 39.36 40.32 41.28 42.24 43.2 44.16 45.12 46.08 47.04 48.0 48.96 49.92 50.88 51.84 52.8 53.76 54.72 55.68 56.64 57.6 58.56 59.52 60.48 61.44 62.4 63.36 64.32 65.28 66.24 67.2 68.16 69.12 70.08 71.04 72.0 72.96 73.92 74.88 75.84 76.8 77.76 78.72 79.68 80.64 81.6 82.56 83.52 84.48 85.44 86.4 87.36 88.32 89.28 90.24 91.2 92.16 93.12 94.08 95.04 96.0 96.96 97.92 98.88 99.84 100.8 101.76 102.72 103.68 104.64 105.6 106.56 107.52 108.48 109.44 110.4 111.36 112.32 113.28 114.24 115.2 116.16 117.12 118.08 119.04 120.0 120.96 121.92 122.88 123.84 124.8 125.76 126.72 127.68 128.64 129.6 130.56 131.52 132.48 133.44 134.4 135.36 136.32 137.28 138.24 139.2 140.16 141.12 142.08 143.04 144.0 144.96 145.92 146.88 147.84 148.8 149.76 150.72 151.68 152.64 153.6 154.56 155.52 156.48 157.44 158.4 159.36 160.32 161.28 162.24 163.2 164.16 165.12 166.08 167.04 168.0 168.96 169.92 170.88 171.84 172.8 173.76 174.72 175.68 176.64 177.6 178.56 179.52 180.48 181.44 182.4 183.36 184.32 185.28 186.24 187.2 188.16 189.12 190.08 191.04 192.0 192.96 193.92 194.88 195.84 196.8 197.76 198.72 199.68 200.64 201.6 202.56 203.52 204.48 205.44 206.4 207.36 208.32 209.28 210.24 211.2 212.16 213.12 214.08 215.04 216.0 216.96 217.92 218.88 219.84 220.8 221.76 222.72 223.68 224.64 225.6 226.56 227.52 228.48 229.44 230.4 231.36 232.32 233.28 234.24 235.2 236.16 237.12 238.08 239.04 240.0 240.96 241.92 242.88 243.84 244.8 245.76 246.72 247.68 248.64 249.6 250.56 251.52 252.48 253.44 254.4 255.36 256.32 257.28 258.24 259.2 260.16 261.12 262.08 263.04 264.0 264.96 265.92 266.88 267.84 268.8 269.76 270.72 271.68 272.64 273.6 274.56 275.52 276.48 277.44 278.4 279.36 280.32 281.28 282.24 283.2 284.16 285.12 286.08 287.04 288.0 288.96 289.92 290.88 291.84 292.8 293.76 294.72 295.68 296.64 297.6 298.56 299.52 300.48 301.44 302.4 303.36 304.32 305.28 306.24 307.2 308.16 309.12 +310.08 311.04 312.0 312.96 313.92 314.88 315.84 316.8 317.76 318.72 319.68 320.64 321.6 322.56 323.52 324.48 325.44 326.4 327.36 328.32 329.28 330.24 331.2 332.16 333.12 334.08 335.04 336.0 336.96 337.92 338.88 339.84 340.8 341.76 342.72 343.68 344.64 345.6 346.56 347.52 348.48 349.44 350.4 351.36 352.32 353.28 354.24 355.2 356.16 357.12 358.08 359.04 0.0 0.96 1.92 2.88 3.84 4.8 5.76 6.72 7.68 8.64 9.6 10.56 11.52 12.48 13.44 14.4 15.36 16.32 17.28 18.24 19.2 20.16 21.12 22.08 23.04 24.0 24.96 25.92 26.88 27.84 28.8 29.76 30.72 31.68 32.64 33.6 34.56 35.52 36.48 37.44 38.4 39.36 40.32 41.28 42.24 43.2 44.16 45.12 46.08 47.04 48.0 48.96 49.92 50.88 51.84 52.8 53.76 54.72 55.68 56.64 57.6 58.56 59.52 60.48 61.44 62.4 63.36 64.32 65.28 66.24 67.2 68.16 69.12 70.08 71.04 72.0 72.96 73.92 74.88 75.84 76.8 77.76 78.72 79.68 80.64 81.6 82.56 83.52 84.48 85.44 86.4 87.36 88.32 89.28 90.24 91.2 92.16 93.12 94.08 95.04 96.0 96.96 97.92 98.88 99.84 100.8 101.76 102.72 103.68 104.64 105.6 106.56 107.52 108.48 109.44 110.4 111.36 112.32 113.28 114.24 115.2 116.16 117.12 118.08 119.04 120.0 120.96 121.92 122.88 123.84 124.8 125.76 126.72 127.68 128.64 129.6 130.56 131.52 132.48 133.44 134.4 135.36 136.32 137.28 138.24 139.2 140.16 141.12 142.08 143.04 144.0 144.96 145.92 146.88 147.84 148.8 149.76 150.72 151.68 152.64 153.6 154.56 155.52 156.48 157.44 158.4 159.36 160.32 161.28 162.24 163.2 164.16 165.12 166.08 167.04 168.0 168.96 169.92 170.88 171.84 172.8 173.76 174.72 175.68 176.64 177.6 178.56 179.52 180.48 181.44 182.4 183.36 184.32 185.28 186.24 187.2 188.16 189.12 190.08 191.04 192.0 192.96 193.92 194.88 195.84 196.8 197.76 198.72 199.68 200.64 201.6 202.56 203.52 204.48 205.44 206.4 207.36 208.32 209.28 210.24 211.2 212.16 213.12 214.08 215.04 216.0 216.96 217.92 218.88 219.84 220.8 221.76 222.72 223.68 224.64 225.6 226.56 227.52 228.48 229.44 230.4 231.36 232.32 233.28 234.24 235.2 236.16 237.12 238.08 239.04 240.0 240.96 241.92 242.88 243.84 244.8 245.76 246.72 247.68 248.64 249.6 250.56 251.52 252.48 253.44 254.4 255.36 256.32 257.28 258.24 259.2 260.16 261.12 262.08 263.04 264.0 264.96 265.92 266.88 267.84 268.8 269.76 270.72 271.68 272.64 273.6 274.56 275.52 276.48 277.44 278.4 279.36 280.32 281.28 282.24 283.2 284.16 285.12 286.08 287.04 288.0 288.96 289.92 290.88 291.84 292.8 293.76 294.72 295.68 296.64 297.6 298.56 299.52 300.48 301.44 302.4 303.36 304.32 305.28 306.24 307.2 308.16 309.12 310.08 311.04 312.0 312.96 313.92 314.88 315.84 316.8 317.76 318.72 319.68 320.64 321.6 322.56 323.52 324.48 325.44 326.4 327.36 328.32 329.28 330.24 331.2 332.16 333.12 334.08 335.04 336.0 336.96 337.92 338.88 339.84 340.8 341.76 342.72 343.68 344.64 345.6 346.56 347.52 348.48 349.44 350.4 351.36 352.32 353.28 354.24 355.2 356.16 357.12 358.08 359.04 0.0 0.96 1.92 2.88 3.84 4.8 5.76 6.72 7.68 8.64 9.6 10.56 11.52 12.48 13.44 14.4 15.36 16.32 17.28 18.24 19.2 20.16 21.12 22.08 23.04 24.0 24.96 25.92 26.88 27.84 28.8 29.76 30.72 31.68 32.64 33.6 34.56 35.52 36.48 37.44 38.4 39.36 40.32 41.28 42.24 43.2 44.16 45.12 46.08 47.04 48.0 48.96 49.92 50.88 51.84 52.8 53.76 54.72 55.68 56.64 57.6 58.56 59.52 60.48 61.44 62.4 63.36 64.32 65.28 66.24 67.2 68.16 69.12 +70.08 71.04 72.0 72.96 73.92 74.88 75.84 76.8 77.76 78.72 79.68 80.64 81.6 82.56 83.52 84.48 85.44 86.4 87.36 88.32 89.28 90.24 91.2 92.16 93.12 94.08 95.04 96.0 96.96 97.92 98.88 99.84 100.8 101.76 102.72 103.68 104.64 105.6 106.56 107.52 108.48 109.44 110.4 111.36 112.32 113.28 114.24 115.2 116.16 117.12 118.08 119.04 120.0 120.96 121.92 122.88 123.84 124.8 125.76 126.72 127.68 128.64 129.6 130.56 131.52 132.48 133.44 134.4 135.36 136.32 137.28 138.24 139.2 140.16 141.12 142.08 143.04 144.0 144.96 145.92 146.88 147.84 148.8 149.76 150.72 151.68 152.64 153.6 154.56 155.52 156.48 157.44 158.4 159.36 160.32 161.28 162.24 163.2 164.16 165.12 166.08 167.04 168.0 168.96 169.92 170.88 171.84 172.8 173.76 174.72 175.68 176.64 177.6 178.56 179.52 180.48 181.44 182.4 183.36 184.32 185.28 186.24 187.2 188.16 189.12 190.08 191.04 192.0 192.96 193.92 194.88 195.84 196.8 197.76 198.72 199.68 200.64 201.6 202.56 203.52 204.48 205.44 206.4 207.36 208.32 209.28 210.24 211.2 212.16 213.12 214.08 215.04 216.0 216.96 217.92 218.88 219.84 220.8 221.76 222.72 223.68 224.64 225.6 226.56 227.52 228.48 229.44 230.4 231.36 232.32 233.28 234.24 235.2 236.16 237.12 238.08 239.04 240.0 240.96 241.92 242.88 243.84 244.8 245.76 246.72 247.68 248.64 249.6 250.56 251.52 252.48 253.44 254.4 255.36 256.32 257.28 258.24 259.2 260.16 261.12 262.08 263.04 264.0 264.96 265.92 266.88 267.84 268.8 269.76 270.72 271.68 272.64 273.6 274.56 275.52 276.48 277.44 278.4 279.36 280.32 281.28 282.24 283.2 284.16 285.12 286.08 287.04 288.0 288.96 289.92 290.88 291.84 292.8 293.76 294.72 295.68 296.64 297.6 298.56 299.52 300.48 301.44 302.4 303.36 304.32 305.28 306.24 307.2 308.16 309.12 310.08 311.04 312.0 312.96 313.92 314.88 315.84 316.8 317.76 318.72 319.68 320.64 321.6 322.56 323.52 324.48 325.44 326.4 327.36 328.32 329.28 330.24 331.2 332.16 333.12 334.08 335.04 336.0 336.96 337.92 338.88 339.84 340.8 341.76 342.72 343.68 344.64 345.6 346.56 347.52 348.48 349.44 350.4 351.36 352.32 353.28 354.24 355.2 356.16 357.12 358.08 359.04 0.0 0.9375 1.875 2.8125 3.75 4.6875 5.625 6.5625 7.5 8.4375 9.375 10.3125 11.25 12.1875 13.125 14.0625 15.0 15.9375 16.875 17.8125 18.75 19.6875 20.625 21.5625 22.5 23.4375 24.375 25.3125 26.25 27.1875 28.125 29.0625 30.0 30.9375 31.875 32.8125 33.75 34.6875 35.625 36.5625 37.5 38.4375 39.375 40.3125 41.25 42.1875 43.125 44.0625 45.0 45.9375 46.875 47.8125 48.75 49.6875 50.625 51.5625 52.5 53.4375 54.375 55.3125 56.25 57.1875 58.125 59.0625 60.0 60.9375 61.875 62.8125 63.75 64.6875 65.625 66.5625 67.5 68.4375 69.375 70.3125 71.25 72.1875 73.125 74.0625 75.0 75.9375 76.875 77.8125 78.75 79.6875 80.625 81.5625 82.5 83.4375 84.375 85.3125 86.25 87.1875 88.125 89.0625 90.0 90.9375 91.875 92.8125 93.75 94.6875 95.625 96.5625 97.5 98.4375 99.375 100.312 101.25 102.188 103.125 104.062 105.0 105.938 106.875 107.812 108.75 109.688 110.625 111.562 112.5 113.438 114.375 115.312 116.25 117.188 118.125 119.062 120.0 120.938 121.875 122.812 123.75 124.688 125.625 126.562 127.5 128.438 129.375 130.312 131.25 132.188 133.125 134.062 135.0 135.938 136.875 137.812 138.75 139.688 140.625 141.562 142.5 143.438 144.375 145.312 146.25 147.188 148.125 149.062 150.0 150.938 151.875 152.812 153.75 154.688 155.625 156.562 157.5 158.438 159.375 160.312 161.25 162.188 163.125 164.062 165.0 165.938 166.875 167.812 168.75 169.688 170.625 171.562 172.5 173.438 174.375 175.312 176.25 177.188 178.125 179.062 180.0 180.938 181.875 182.812 183.75 184.688 +185.625 186.562 187.5 188.438 189.375 190.312 191.25 192.188 193.125 194.062 195.0 195.938 196.875 197.812 198.75 199.688 200.625 201.562 202.5 203.438 204.375 205.312 206.25 207.188 208.125 209.062 210.0 210.938 211.875 212.812 213.75 214.688 215.625 216.562 217.5 218.438 219.375 220.312 221.25 222.188 223.125 224.062 225.0 225.938 226.875 227.812 228.75 229.688 230.625 231.562 232.5 233.438 234.375 235.312 236.25 237.188 238.125 239.062 240.0 240.938 241.875 242.812 243.75 244.688 245.625 246.562 247.5 248.438 249.375 250.312 251.25 252.188 253.125 254.062 255.0 255.938 256.875 257.812 258.75 259.688 260.625 261.562 262.5 263.438 264.375 265.312 266.25 267.188 268.125 269.062 270.0 270.938 271.875 272.812 273.75 274.688 275.625 276.562 277.5 278.438 279.375 280.312 281.25 282.188 283.125 284.062 285.0 285.938 286.875 287.812 288.75 289.688 290.625 291.562 292.5 293.438 294.375 295.312 296.25 297.188 298.125 299.062 300.0 300.938 301.875 302.812 303.75 304.688 305.625 306.562 307.5 308.438 309.375 310.312 311.25 312.188 313.125 314.062 315.0 315.938 316.875 317.812 318.75 319.688 320.625 321.562 322.5 323.438 324.375 325.312 326.25 327.188 328.125 329.062 330.0 330.938 331.875 332.812 333.75 334.688 335.625 336.562 337.5 338.438 339.375 340.312 341.25 342.188 343.125 344.062 345.0 345.938 346.875 347.812 348.75 349.688 350.625 351.562 352.5 353.438 354.375 355.312 356.25 357.188 358.125 359.062 0.0 0.9375 1.875 2.8125 3.75 4.6875 5.625 6.5625 7.5 8.4375 9.375 10.3125 11.25 12.1875 13.125 14.0625 15.0 15.9375 16.875 17.8125 18.75 19.6875 20.625 21.5625 22.5 23.4375 24.375 25.3125 26.25 27.1875 28.125 29.0625 30.0 30.9375 31.875 32.8125 33.75 34.6875 35.625 36.5625 37.5 38.4375 39.375 40.3125 41.25 42.1875 43.125 44.0625 45.0 45.9375 46.875 47.8125 48.75 49.6875 50.625 51.5625 52.5 53.4375 54.375 55.3125 56.25 57.1875 58.125 59.0625 60.0 60.9375 61.875 62.8125 63.75 64.6875 65.625 66.5625 67.5 68.4375 69.375 70.3125 71.25 72.1875 73.125 74.0625 75.0 75.9375 76.875 77.8125 78.75 79.6875 80.625 81.5625 82.5 83.4375 84.375 85.3125 86.25 87.1875 88.125 89.0625 90.0 90.9375 91.875 92.8125 93.75 94.6875 95.625 96.5625 97.5 98.4375 99.375 100.312 101.25 102.188 103.125 104.062 105.0 105.938 106.875 107.812 108.75 109.688 110.625 111.562 112.5 113.438 114.375 115.312 116.25 117.188 118.125 119.062 120.0 120.938 121.875 122.812 123.75 124.688 125.625 126.562 127.5 128.438 129.375 130.312 131.25 132.188 133.125 134.062 135.0 135.938 136.875 137.812 138.75 139.688 140.625 141.562 142.5 143.438 144.375 145.312 146.25 147.188 148.125 149.062 150.0 150.938 151.875 152.812 153.75 154.688 155.625 156.562 157.5 158.438 159.375 160.312 161.25 162.188 163.125 164.062 165.0 165.938 166.875 167.812 168.75 169.688 170.625 171.562 172.5 173.438 174.375 175.312 176.25 177.188 178.125 179.062 180.0 180.938 181.875 182.812 183.75 184.688 185.625 186.562 187.5 188.438 189.375 190.312 191.25 192.188 193.125 194.062 195.0 195.938 196.875 197.812 198.75 199.688 200.625 201.562 202.5 203.438 204.375 205.312 206.25 207.188 208.125 209.062 210.0 210.938 211.875 212.812 213.75 214.688 215.625 216.562 217.5 218.438 219.375 220.312 221.25 222.188 223.125 224.062 225.0 225.938 226.875 227.812 228.75 229.688 230.625 231.562 232.5 233.438 234.375 235.312 236.25 237.188 238.125 239.062 240.0 240.938 241.875 242.812 243.75 244.688 245.625 246.562 247.5 248.438 249.375 250.312 251.25 252.188 253.125 254.062 255.0 255.938 256.875 257.812 258.75 259.688 260.625 261.562 262.5 263.438 264.375 265.312 266.25 267.188 268.125 269.062 270.0 270.938 271.875 272.812 273.75 274.688 275.625 276.562 277.5 278.438 279.375 280.312 281.25 282.188 283.125 284.062 285.0 285.938 286.875 287.812 288.75 289.688 290.625 291.562 292.5 293.438 +294.375 295.312 296.25 297.188 298.125 299.062 300.0 300.938 301.875 302.812 303.75 304.688 305.625 306.562 307.5 308.438 309.375 310.312 311.25 312.188 313.125 314.062 315.0 315.938 316.875 317.812 318.75 319.688 320.625 321.562 322.5 323.438 324.375 325.312 326.25 327.188 328.125 329.062 330.0 330.938 331.875 332.812 333.75 334.688 335.625 336.562 337.5 338.438 339.375 340.312 341.25 342.188 343.125 344.062 345.0 345.938 346.875 347.812 348.75 349.688 350.625 351.562 352.5 353.438 354.375 355.312 356.25 357.188 358.125 359.062 0.0 0.9 1.8 2.7 3.6 4.5 5.4 6.3 7.2 8.1 9.0 9.9 10.8 11.7 12.6 13.5 14.4 15.3 16.2 17.1 18.0 18.9 19.8 20.7 21.6 22.5 23.4 24.3 25.2 26.1 27.0 27.9 28.8 29.7 30.6 31.5 32.4 33.3 34.2 35.1 36.0 36.9 37.8 38.7 39.6 40.5 41.4 42.3 43.2 44.1 45.0 45.9 46.8 47.7 48.6 49.5 50.4 51.3 52.2 53.1 54.0 54.9 55.8 56.7 57.6 58.5 59.4 60.3 61.2 62.1 63.0 63.9 64.8 65.7 66.6 67.5 68.4 69.3 70.2 71.1 72.0 72.9 73.8 74.7 75.6 76.5 77.4 78.3 79.2 80.1 81.0 81.9 82.8 83.7 84.6 85.5 86.4 87.3 88.2 89.1 90.0 90.9 91.8 92.7 93.6 94.5 95.4 96.3 97.2 98.1 99.0 99.9 100.8 101.7 102.6 103.5 104.4 105.3 106.2 107.1 108.0 108.9 109.8 110.7 111.6 112.5 113.4 114.3 115.2 116.1 117.0 117.9 118.8 119.7 120.6 121.5 122.4 123.3 124.2 125.1 126.0 126.9 127.8 128.7 129.6 130.5 131.4 132.3 133.2 134.1 135.0 135.9 136.8 137.7 138.6 139.5 140.4 141.3 142.2 143.1 144.0 144.9 145.8 146.7 147.6 148.5 149.4 150.3 151.2 152.1 153.0 153.9 154.8 155.7 156.6 157.5 158.4 159.3 160.2 161.1 162.0 162.9 163.8 164.7 165.6 166.5 167.4 168.3 169.2 170.1 171.0 171.9 172.8 173.7 174.6 175.5 176.4 177.3 178.2 179.1 180.0 180.9 181.8 182.7 183.6 184.5 185.4 186.3 187.2 188.1 189.0 189.9 190.8 191.7 192.6 193.5 194.4 195.3 196.2 197.1 198.0 198.9 199.8 200.7 201.6 202.5 203.4 204.3 205.2 206.1 207.0 207.9 208.8 209.7 210.6 211.5 212.4 213.3 214.2 215.1 216.0 216.9 217.8 218.7 219.6 220.5 221.4 222.3 223.2 224.1 225.0 225.9 226.8 227.7 228.6 229.5 230.4 231.3 232.2 233.1 234.0 234.9 235.8 236.7 237.6 238.5 239.4 240.3 241.2 242.1 243.0 243.9 244.8 245.7 246.6 247.5 248.4 249.3 250.2 251.1 252.0 252.9 253.8 254.7 255.6 256.5 257.4 258.3 259.2 260.1 261.0 261.9 262.8 263.7 264.6 265.5 266.4 267.3 268.2 269.1 270.0 270.9 271.8 272.7 273.6 274.5 275.4 276.3 277.2 278.1 279.0 279.9 280.8 281.7 282.6 283.5 284.4 285.3 286.2 287.1 288.0 288.9 289.8 290.7 291.6 292.5 293.4 294.3 295.2 296.1 297.0 297.9 298.8 299.7 300.6 301.5 302.4 303.3 304.2 305.1 306.0 306.9 307.8 308.7 309.6 310.5 311.4 312.3 313.2 314.1 315.0 315.9 316.8 317.7 318.6 319.5 320.4 321.3 322.2 323.1 324.0 324.9 325.8 326.7 327.6 328.5 329.4 330.3 331.2 332.1 333.0 333.9 334.8 335.7 336.6 337.5 338.4 339.3 340.2 341.1 342.0 342.9 343.8 344.7 345.6 346.5 347.4 348.3 349.2 350.1 351.0 351.9 352.8 353.7 354.6 355.5 356.4 357.3 358.2 359.1 0.0 0.9 1.8 2.7 3.6 4.5 5.4 6.3 7.2 8.1 9.0 9.9 10.8 11.7 12.6 13.5 14.4 15.3 16.2 17.1 18.0 18.9 19.8 20.7 21.6 22.5 23.4 24.3 25.2 26.1 +27.0 27.9 28.8 29.7 30.6 31.5 32.4 33.3 34.2 35.1 36.0 36.9 37.8 38.7 39.6 40.5 41.4 42.3 43.2 44.1 45.0 45.9 46.8 47.7 48.6 49.5 50.4 51.3 52.2 53.1 54.0 54.9 55.8 56.7 57.6 58.5 59.4 60.3 61.2 62.1 63.0 63.9 64.8 65.7 66.6 67.5 68.4 69.3 70.2 71.1 72.0 72.9 73.8 74.7 75.6 76.5 77.4 78.3 79.2 80.1 81.0 81.9 82.8 83.7 84.6 85.5 86.4 87.3 88.2 89.1 90.0 90.9 91.8 92.7 93.6 94.5 95.4 96.3 97.2 98.1 99.0 99.9 100.8 101.7 102.6 103.5 104.4 105.3 106.2 107.1 108.0 108.9 109.8 110.7 111.6 112.5 113.4 114.3 115.2 116.1 117.0 117.9 118.8 119.7 120.6 121.5 122.4 123.3 124.2 125.1 126.0 126.9 127.8 128.7 129.6 130.5 131.4 132.3 133.2 134.1 135.0 135.9 136.8 137.7 138.6 139.5 140.4 141.3 142.2 143.1 144.0 144.9 145.8 146.7 147.6 148.5 149.4 150.3 151.2 152.1 153.0 153.9 154.8 155.7 156.6 157.5 158.4 159.3 160.2 161.1 162.0 162.9 163.8 164.7 165.6 166.5 167.4 168.3 169.2 170.1 171.0 171.9 172.8 173.7 174.6 175.5 176.4 177.3 178.2 179.1 180.0 180.9 181.8 182.7 183.6 184.5 185.4 186.3 187.2 188.1 189.0 189.9 190.8 191.7 192.6 193.5 194.4 195.3 196.2 197.1 198.0 198.9 199.8 200.7 201.6 202.5 203.4 204.3 205.2 206.1 207.0 207.9 208.8 209.7 210.6 211.5 212.4 213.3 214.2 215.1 216.0 216.9 217.8 218.7 219.6 220.5 221.4 222.3 223.2 224.1 225.0 225.9 226.8 227.7 228.6 229.5 230.4 231.3 232.2 233.1 234.0 234.9 235.8 236.7 237.6 238.5 239.4 240.3 241.2 242.1 243.0 243.9 244.8 245.7 246.6 247.5 248.4 249.3 250.2 251.1 252.0 252.9 253.8 254.7 255.6 256.5 257.4 258.3 259.2 260.1 261.0 261.9 262.8 263.7 264.6 265.5 266.4 267.3 268.2 269.1 270.0 270.9 271.8 272.7 273.6 274.5 275.4 276.3 277.2 278.1 279.0 279.9 280.8 281.7 282.6 283.5 284.4 285.3 286.2 287.1 288.0 288.9 289.8 290.7 291.6 292.5 293.4 294.3 295.2 296.1 297.0 297.9 298.8 299.7 300.6 301.5 302.4 303.3 304.2 305.1 306.0 306.9 307.8 308.7 309.6 310.5 311.4 312.3 313.2 314.1 315.0 315.9 316.8 317.7 318.6 319.5 320.4 321.3 322.2 323.1 324.0 324.9 325.8 326.7 327.6 328.5 329.4 330.3 331.2 332.1 333.0 333.9 334.8 335.7 336.6 337.5 338.4 339.3 340.2 341.1 342.0 342.9 343.8 344.7 345.6 346.5 347.4 348.3 349.2 350.1 351.0 351.9 352.8 353.7 354.6 355.5 356.4 357.3 358.2 359.1 0.0 0.9 1.8 2.7 3.6 4.5 5.4 6.3 7.2 8.1 9.0 9.9 10.8 11.7 12.6 13.5 14.4 15.3 16.2 17.1 18.0 18.9 19.8 20.7 21.6 22.5 23.4 24.3 25.2 26.1 27.0 27.9 28.8 29.7 30.6 31.5 32.4 33.3 34.2 35.1 36.0 36.9 37.8 38.7 39.6 40.5 41.4 42.3 43.2 44.1 45.0 45.9 46.8 47.7 48.6 49.5 50.4 51.3 52.2 53.1 54.0 54.9 55.8 56.7 57.6 58.5 59.4 60.3 61.2 62.1 63.0 63.9 64.8 65.7 66.6 67.5 68.4 69.3 70.2 71.1 72.0 72.9 73.8 74.7 75.6 76.5 77.4 78.3 79.2 80.1 81.0 81.9 82.8 83.7 84.6 85.5 86.4 87.3 88.2 89.1 90.0 90.9 91.8 92.7 93.6 94.5 95.4 96.3 97.2 98.1 99.0 99.9 100.8 101.7 102.6 103.5 104.4 105.3 106.2 107.1 108.0 108.9 109.8 110.7 111.6 112.5 113.4 114.3 115.2 116.1 +117.0 117.9 118.8 119.7 120.6 121.5 122.4 123.3 124.2 125.1 126.0 126.9 127.8 128.7 129.6 130.5 131.4 132.3 133.2 134.1 135.0 135.9 136.8 137.7 138.6 139.5 140.4 141.3 142.2 143.1 144.0 144.9 145.8 146.7 147.6 148.5 149.4 150.3 151.2 152.1 153.0 153.9 154.8 155.7 156.6 157.5 158.4 159.3 160.2 161.1 162.0 162.9 163.8 164.7 165.6 166.5 167.4 168.3 169.2 170.1 171.0 171.9 172.8 173.7 174.6 175.5 176.4 177.3 178.2 179.1 180.0 180.9 181.8 182.7 183.6 184.5 185.4 186.3 187.2 188.1 189.0 189.9 190.8 191.7 192.6 193.5 194.4 195.3 196.2 197.1 198.0 198.9 199.8 200.7 201.6 202.5 203.4 204.3 205.2 206.1 207.0 207.9 208.8 209.7 210.6 211.5 212.4 213.3 214.2 215.1 216.0 216.9 217.8 218.7 219.6 220.5 221.4 222.3 223.2 224.1 225.0 225.9 226.8 227.7 228.6 229.5 230.4 231.3 232.2 233.1 234.0 234.9 235.8 236.7 237.6 238.5 239.4 240.3 241.2 242.1 243.0 243.9 244.8 245.7 246.6 247.5 248.4 249.3 250.2 251.1 252.0 252.9 253.8 254.7 255.6 256.5 257.4 258.3 259.2 260.1 261.0 261.9 262.8 263.7 264.6 265.5 266.4 267.3 268.2 269.1 270.0 270.9 271.8 272.7 273.6 274.5 275.4 276.3 277.2 278.1 279.0 279.9 280.8 281.7 282.6 283.5 284.4 285.3 286.2 287.1 288.0 288.9 289.8 290.7 291.6 292.5 293.4 294.3 295.2 296.1 297.0 297.9 298.8 299.7 300.6 301.5 302.4 303.3 304.2 305.1 306.0 306.9 307.8 308.7 309.6 310.5 311.4 312.3 313.2 314.1 315.0 315.9 316.8 317.7 318.6 319.5 320.4 321.3 322.2 323.1 324.0 324.9 325.8 326.7 327.6 328.5 329.4 330.3 331.2 332.1 333.0 333.9 334.8 335.7 336.6 337.5 338.4 339.3 340.2 341.1 342.0 342.9 343.8 344.7 345.6 346.5 347.4 348.3 349.2 350.1 351.0 351.9 352.8 353.7 354.6 355.5 356.4 357.3 358.2 359.1 0.0 0.9 1.8 2.7 3.6 4.5 5.4 6.3 7.2 8.1 9.0 9.9 10.8 11.7 12.6 13.5 14.4 15.3 16.2 17.1 18.0 18.9 19.8 20.7 21.6 22.5 23.4 24.3 25.2 26.1 27.0 27.9 28.8 29.7 30.6 31.5 32.4 33.3 34.2 35.1 36.0 36.9 37.8 38.7 39.6 40.5 41.4 42.3 43.2 44.1 45.0 45.9 46.8 47.7 48.6 49.5 50.4 51.3 52.2 53.1 54.0 54.9 55.8 56.7 57.6 58.5 59.4 60.3 61.2 62.1 63.0 63.9 64.8 65.7 66.6 67.5 68.4 69.3 70.2 71.1 72.0 72.9 73.8 74.7 75.6 76.5 77.4 78.3 79.2 80.1 81.0 81.9 82.8 83.7 84.6 85.5 86.4 87.3 88.2 89.1 90.0 90.9 91.8 92.7 93.6 94.5 95.4 96.3 97.2 98.1 99.0 99.9 100.8 101.7 102.6 103.5 104.4 105.3 106.2 107.1 108.0 108.9 109.8 110.7 111.6 112.5 113.4 114.3 115.2 116.1 117.0 117.9 118.8 119.7 120.6 121.5 122.4 123.3 124.2 125.1 126.0 126.9 127.8 128.7 129.6 130.5 131.4 132.3 133.2 134.1 135.0 135.9 136.8 137.7 138.6 139.5 140.4 141.3 142.2 143.1 144.0 144.9 145.8 146.7 147.6 148.5 149.4 150.3 151.2 152.1 153.0 153.9 154.8 155.7 156.6 157.5 158.4 159.3 160.2 161.1 162.0 162.9 163.8 164.7 165.6 166.5 167.4 168.3 169.2 170.1 171.0 171.9 172.8 173.7 174.6 175.5 176.4 177.3 178.2 179.1 180.0 180.9 181.8 182.7 183.6 184.5 185.4 186.3 187.2 188.1 189.0 189.9 190.8 191.7 192.6 193.5 194.4 195.3 196.2 197.1 198.0 198.9 199.8 200.7 201.6 202.5 203.4 204.3 205.2 206.1 +207.0 207.9 208.8 209.7 210.6 211.5 212.4 213.3 214.2 215.1 216.0 216.9 217.8 218.7 219.6 220.5 221.4 222.3 223.2 224.1 225.0 225.9 226.8 227.7 228.6 229.5 230.4 231.3 232.2 233.1 234.0 234.9 235.8 236.7 237.6 238.5 239.4 240.3 241.2 242.1 243.0 243.9 244.8 245.7 246.6 247.5 248.4 249.3 250.2 251.1 252.0 252.9 253.8 254.7 255.6 256.5 257.4 258.3 259.2 260.1 261.0 261.9 262.8 263.7 264.6 265.5 266.4 267.3 268.2 269.1 270.0 270.9 271.8 272.7 273.6 274.5 275.4 276.3 277.2 278.1 279.0 279.9 280.8 281.7 282.6 283.5 284.4 285.3 286.2 287.1 288.0 288.9 289.8 290.7 291.6 292.5 293.4 294.3 295.2 296.1 297.0 297.9 298.8 299.7 300.6 301.5 302.4 303.3 304.2 305.1 306.0 306.9 307.8 308.7 309.6 310.5 311.4 312.3 313.2 314.1 315.0 315.9 316.8 317.7 318.6 319.5 320.4 321.3 322.2 323.1 324.0 324.9 325.8 326.7 327.6 328.5 329.4 330.3 331.2 332.1 333.0 333.9 334.8 335.7 336.6 337.5 338.4 339.3 340.2 341.1 342.0 342.9 343.8 344.7 345.6 346.5 347.4 348.3 349.2 350.1 351.0 351.9 352.8 353.7 354.6 355.5 356.4 357.3 358.2 359.1 0.0 0.888889 1.77778 2.66667 3.55556 4.44444 5.33333 6.22222 7.11111 8.0 8.88889 9.77778 10.6667 11.5556 12.4444 13.3333 14.2222 15.1111 16.0 16.8889 17.7778 18.6667 19.5556 20.4444 21.3333 22.2222 23.1111 24.0 24.8889 25.7778 26.6667 27.5556 28.4444 29.3333 30.2222 31.1111 32.0 32.8889 33.7778 34.6667 35.5556 36.4444 37.3333 38.2222 39.1111 40.0 40.8889 41.7778 42.6667 43.5556 44.4444 45.3333 46.2222 47.1111 48.0 48.8889 49.7778 50.6667 51.5556 52.4444 53.3333 54.2222 55.1111 56.0 56.8889 57.7778 58.6667 59.5556 60.4444 61.3333 62.2222 63.1111 64.0 64.8889 65.7778 66.6667 67.5556 68.4444 69.3333 70.2222 71.1111 72.0 72.8889 73.7778 74.6667 75.5556 76.4444 77.3333 78.2222 79.1111 80.0 80.8889 81.7778 82.6667 83.5556 84.4444 85.3333 86.2222 87.1111 88.0 88.8889 89.7778 90.6667 91.5556 92.4444 93.3333 94.2222 95.1111 96.0 96.8889 97.7778 98.6667 99.5556 100.444 101.333 102.222 103.111 104.0 104.889 105.778 106.667 107.556 108.444 109.333 110.222 111.111 112.0 112.889 113.778 114.667 115.556 116.444 117.333 118.222 119.111 120.0 120.889 121.778 122.667 123.556 124.444 125.333 126.222 127.111 128.0 128.889 129.778 130.667 131.556 132.444 133.333 134.222 135.111 136.0 136.889 137.778 138.667 139.556 140.444 141.333 142.222 143.111 144.0 144.889 145.778 146.667 147.556 148.444 149.333 150.222 151.111 152.0 152.889 153.778 154.667 155.556 156.444 157.333 158.222 159.111 160.0 160.889 161.778 162.667 163.556 164.444 165.333 166.222 167.111 168.0 168.889 169.778 170.667 171.556 172.444 173.333 174.222 175.111 176.0 176.889 177.778 178.667 179.556 180.444 181.333 182.222 183.111 184.0 184.889 185.778 186.667 187.556 188.444 189.333 190.222 191.111 192.0 192.889 193.778 194.667 195.556 196.444 197.333 198.222 199.111 200.0 200.889 201.778 202.667 203.556 204.444 205.333 206.222 207.111 208.0 208.889 209.778 210.667 211.556 212.444 213.333 214.222 215.111 216.0 216.889 217.778 218.667 219.556 220.444 221.333 222.222 223.111 224.0 224.889 225.778 226.667 227.556 228.444 229.333 230.222 231.111 232.0 232.889 233.778 234.667 235.556 236.444 237.333 238.222 239.111 240.0 240.889 241.778 242.667 243.556 244.444 245.333 246.222 247.111 248.0 248.889 249.778 250.667 251.556 252.444 253.333 254.222 255.111 256.0 256.889 257.778 258.667 259.556 260.444 261.333 262.222 263.111 264.0 264.889 265.778 266.667 267.556 268.444 269.333 270.222 271.111 272.0 272.889 273.778 274.667 275.556 276.444 277.333 278.222 279.111 280.0 280.889 281.778 282.667 283.556 284.444 285.333 286.222 287.111 288.0 288.889 289.778 290.667 291.556 292.444 +293.333 294.222 295.111 296.0 296.889 297.778 298.667 299.556 300.444 301.333 302.222 303.111 304.0 304.889 305.778 306.667 307.556 308.444 309.333 310.222 311.111 312.0 312.889 313.778 314.667 315.556 316.444 317.333 318.222 319.111 320.0 320.889 321.778 322.667 323.556 324.444 325.333 326.222 327.111 328.0 328.889 329.778 330.667 331.556 332.444 333.333 334.222 335.111 336.0 336.889 337.778 338.667 339.556 340.444 341.333 342.222 343.111 344.0 344.889 345.778 346.667 347.556 348.444 349.333 350.222 351.111 352.0 352.889 353.778 354.667 355.556 356.444 357.333 358.222 359.111 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 +354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 +50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 +107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 +164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 +220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 +277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 +320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 +0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 +40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 +80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 +113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 +128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 +143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 +158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 +173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 +188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 +203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 +218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 +233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 +248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.740741 1.48148 2.22222 2.96296 3.7037 4.44444 5.18518 5.92593 6.66667 7.40741 8.14815 8.88889 9.62963 10.3704 11.1111 11.8519 12.5926 13.3333 14.0741 14.8148 15.5556 16.2963 17.037 17.7778 18.5185 19.2593 20.0 20.7407 21.4815 22.2222 22.963 23.7037 24.4444 25.1852 25.9259 26.6667 27.4074 28.1481 28.8889 29.6296 30.3704 31.1111 31.8519 32.5926 33.3333 34.0741 34.8148 35.5556 36.2963 37.037 37.7778 38.5185 39.2593 40.0 40.7407 41.4815 42.2222 42.963 43.7037 44.4444 45.1852 45.9259 46.6667 47.4074 48.1481 48.8889 49.6296 50.3704 51.1111 51.8519 52.5926 53.3333 54.0741 54.8148 55.5556 56.2963 57.037 57.7778 58.5185 59.2593 60.0 60.7407 61.4815 62.2222 62.963 63.7037 64.4444 65.1852 65.9259 66.6667 67.4074 68.1481 68.8889 69.6296 70.3704 71.1111 71.8519 72.5926 73.3333 74.0741 74.8148 75.5556 76.2963 77.037 77.7778 78.5185 79.2593 80.0 80.7407 81.4815 82.2222 82.963 83.7037 84.4444 85.1852 85.9259 86.6667 87.4074 88.1481 88.8889 89.6296 90.3704 91.1111 91.8519 92.5926 93.3333 94.0741 94.8148 95.5556 96.2963 97.037 97.7778 98.5185 99.2593 100.0 100.741 101.481 102.222 102.963 103.704 104.444 105.185 105.926 106.667 107.407 108.148 108.889 109.63 110.37 111.111 111.852 112.593 113.333 114.074 114.815 115.556 116.296 117.037 117.778 118.519 119.259 120.0 120.741 121.481 122.222 122.963 123.704 124.444 125.185 125.926 126.667 127.407 128.148 128.889 129.63 130.37 131.111 131.852 132.593 133.333 134.074 134.815 135.556 136.296 137.037 137.778 138.519 139.259 140.0 140.741 141.481 142.222 142.963 143.704 144.444 145.185 145.926 146.667 147.407 148.148 148.889 149.63 150.37 151.111 151.852 152.593 153.333 154.074 154.815 155.556 156.296 157.037 157.778 158.519 159.259 160.0 160.741 161.481 162.222 162.963 163.704 164.444 165.185 165.926 166.667 167.407 168.148 168.889 169.63 170.37 171.111 171.852 172.593 173.333 174.074 174.815 175.556 176.296 177.037 177.778 178.519 179.259 180.0 180.741 181.481 182.222 182.963 183.704 184.444 185.185 185.926 186.667 187.407 188.148 188.889 189.63 190.37 191.111 191.852 192.593 193.333 194.074 194.815 195.556 196.296 197.037 197.778 198.519 199.259 200.0 200.741 201.481 202.222 202.963 203.704 204.444 205.185 205.926 206.667 207.407 208.148 208.889 209.63 210.37 211.111 211.852 212.593 213.333 214.074 214.815 215.556 216.296 217.037 217.778 218.519 219.259 220.0 220.741 221.481 222.222 222.963 223.704 224.444 225.185 225.926 226.667 227.407 228.148 228.889 229.63 230.37 231.111 231.852 232.593 233.333 234.074 234.815 235.556 236.296 237.037 237.778 238.519 239.259 240.0 240.741 241.481 242.222 242.963 243.704 244.444 245.185 245.926 246.667 247.407 248.148 248.889 249.63 250.37 251.111 251.852 252.593 253.333 254.074 254.815 255.556 256.296 257.037 257.778 258.519 259.259 +260.0 260.741 261.481 262.222 262.963 263.704 264.444 265.185 265.926 266.667 267.407 268.148 268.889 269.63 270.37 271.111 271.852 272.593 273.333 274.074 274.815 275.556 276.296 277.037 277.778 278.519 279.259 280.0 280.741 281.481 282.222 282.963 283.704 284.444 285.185 285.926 286.667 287.407 288.148 288.889 289.63 290.37 291.111 291.852 292.593 293.333 294.074 294.815 295.556 296.296 297.037 297.778 298.519 299.259 300.0 300.741 301.481 302.222 302.963 303.704 304.444 305.185 305.926 306.667 307.407 308.148 308.889 309.63 310.37 311.111 311.852 312.593 313.333 314.074 314.815 315.556 316.296 317.037 317.778 318.519 319.259 320.0 320.741 321.481 322.222 322.963 323.704 324.444 325.185 325.926 326.667 327.407 328.148 328.889 329.63 330.37 331.111 331.852 332.593 333.333 334.074 334.815 335.556 336.296 337.037 337.778 338.519 339.259 340.0 340.741 341.481 342.222 342.963 343.704 344.444 345.185 345.926 346.667 347.407 348.148 348.889 349.63 350.37 351.111 351.852 352.593 353.333 354.074 354.815 355.556 356.296 357.037 357.778 358.519 359.259 0.0 0.740741 1.48148 2.22222 2.96296 3.7037 4.44444 5.18518 5.92593 6.66667 7.40741 8.14815 8.88889 9.62963 10.3704 11.1111 11.8519 12.5926 13.3333 14.0741 14.8148 15.5556 16.2963 17.037 17.7778 18.5185 19.2593 20.0 20.7407 21.4815 22.2222 22.963 23.7037 24.4444 25.1852 25.9259 26.6667 27.4074 28.1481 28.8889 29.6296 30.3704 31.1111 31.8519 32.5926 33.3333 34.0741 34.8148 35.5556 36.2963 37.037 37.7778 38.5185 39.2593 40.0 40.7407 41.4815 42.2222 42.963 43.7037 44.4444 45.1852 45.9259 46.6667 47.4074 48.1481 48.8889 49.6296 50.3704 51.1111 51.8519 52.5926 53.3333 54.0741 54.8148 55.5556 56.2963 57.037 57.7778 58.5185 59.2593 60.0 60.7407 61.4815 62.2222 62.963 63.7037 64.4444 65.1852 65.9259 66.6667 67.4074 68.1481 68.8889 69.6296 70.3704 71.1111 71.8519 72.5926 73.3333 74.0741 74.8148 75.5556 76.2963 77.037 77.7778 78.5185 79.2593 80.0 80.7407 81.4815 82.2222 82.963 83.7037 84.4444 85.1852 85.9259 86.6667 87.4074 88.1481 88.8889 89.6296 90.3704 91.1111 91.8519 92.5926 93.3333 94.0741 94.8148 95.5556 96.2963 97.037 97.7778 98.5185 99.2593 100.0 100.741 101.481 102.222 102.963 103.704 104.444 105.185 105.926 106.667 107.407 108.148 108.889 109.63 110.37 111.111 111.852 112.593 113.333 114.074 114.815 115.556 116.296 117.037 117.778 118.519 119.259 120.0 120.741 121.481 122.222 122.963 123.704 124.444 125.185 125.926 126.667 127.407 128.148 128.889 129.63 130.37 131.111 131.852 132.593 133.333 134.074 134.815 135.556 136.296 137.037 137.778 138.519 139.259 140.0 140.741 141.481 142.222 142.963 143.704 144.444 145.185 145.926 146.667 147.407 148.148 148.889 149.63 150.37 151.111 151.852 152.593 153.333 154.074 154.815 155.556 156.296 157.037 157.778 158.519 159.259 160.0 160.741 161.481 162.222 162.963 163.704 164.444 165.185 165.926 166.667 167.407 168.148 168.889 169.63 170.37 171.111 171.852 172.593 173.333 174.074 174.815 175.556 176.296 177.037 177.778 178.519 179.259 180.0 180.741 181.481 182.222 182.963 183.704 184.444 185.185 185.926 186.667 187.407 188.148 188.889 189.63 190.37 191.111 191.852 192.593 193.333 194.074 194.815 195.556 196.296 197.037 197.778 198.519 199.259 200.0 200.741 201.481 202.222 202.963 203.704 204.444 205.185 205.926 206.667 207.407 208.148 208.889 209.63 210.37 211.111 211.852 212.593 213.333 214.074 214.815 215.556 216.296 217.037 217.778 218.519 219.259 220.0 220.741 221.481 222.222 222.963 223.704 224.444 225.185 225.926 226.667 227.407 228.148 228.889 229.63 230.37 231.111 231.852 232.593 233.333 234.074 234.815 235.556 236.296 237.037 237.778 238.519 239.259 240.0 240.741 241.481 242.222 242.963 243.704 244.444 245.185 245.926 246.667 247.407 248.148 248.889 249.63 250.37 251.111 251.852 252.593 253.333 254.074 254.815 255.556 256.296 257.037 257.778 258.519 259.259 260.0 260.741 261.481 262.222 262.963 263.704 264.444 265.185 265.926 266.667 267.407 268.148 268.889 269.63 +270.37 271.111 271.852 272.593 273.333 274.074 274.815 275.556 276.296 277.037 277.778 278.519 279.259 280.0 280.741 281.481 282.222 282.963 283.704 284.444 285.185 285.926 286.667 287.407 288.148 288.889 289.63 290.37 291.111 291.852 292.593 293.333 294.074 294.815 295.556 296.296 297.037 297.778 298.519 299.259 300.0 300.741 301.481 302.222 302.963 303.704 304.444 305.185 305.926 306.667 307.407 308.148 308.889 309.63 310.37 311.111 311.852 312.593 313.333 314.074 314.815 315.556 316.296 317.037 317.778 318.519 319.259 320.0 320.741 321.481 322.222 322.963 323.704 324.444 325.185 325.926 326.667 327.407 328.148 328.889 329.63 330.37 331.111 331.852 332.593 333.333 334.074 334.815 335.556 336.296 337.037 337.778 338.519 339.259 340.0 340.741 341.481 342.222 342.963 343.704 344.444 345.185 345.926 346.667 347.407 348.148 348.889 349.63 350.37 351.111 351.852 352.593 353.333 354.074 354.815 355.556 356.296 357.037 357.778 358.519 359.259 0.0 0.740741 1.48148 2.22222 2.96296 3.7037 4.44444 5.18518 5.92593 6.66667 7.40741 8.14815 8.88889 9.62963 10.3704 11.1111 11.8519 12.5926 13.3333 14.0741 14.8148 15.5556 16.2963 17.037 17.7778 18.5185 19.2593 20.0 20.7407 21.4815 22.2222 22.963 23.7037 24.4444 25.1852 25.9259 26.6667 27.4074 28.1481 28.8889 29.6296 30.3704 31.1111 31.8519 32.5926 33.3333 34.0741 34.8148 35.5556 36.2963 37.037 37.7778 38.5185 39.2593 40.0 40.7407 41.4815 42.2222 42.963 43.7037 44.4444 45.1852 45.9259 46.6667 47.4074 48.1481 48.8889 49.6296 50.3704 51.1111 51.8519 52.5926 53.3333 54.0741 54.8148 55.5556 56.2963 57.037 57.7778 58.5185 59.2593 60.0 60.7407 61.4815 62.2222 62.963 63.7037 64.4444 65.1852 65.9259 66.6667 67.4074 68.1481 68.8889 69.6296 70.3704 71.1111 71.8519 72.5926 73.3333 74.0741 74.8148 75.5556 76.2963 77.037 77.7778 78.5185 79.2593 80.0 80.7407 81.4815 82.2222 82.963 83.7037 84.4444 85.1852 85.9259 86.6667 87.4074 88.1481 88.8889 89.6296 90.3704 91.1111 91.8519 92.5926 93.3333 94.0741 94.8148 95.5556 96.2963 97.037 97.7778 98.5185 99.2593 100.0 100.741 101.481 102.222 102.963 103.704 104.444 105.185 105.926 106.667 107.407 108.148 108.889 109.63 110.37 111.111 111.852 112.593 113.333 114.074 114.815 115.556 116.296 117.037 117.778 118.519 119.259 120.0 120.741 121.481 122.222 122.963 123.704 124.444 125.185 125.926 126.667 127.407 128.148 128.889 129.63 130.37 131.111 131.852 132.593 133.333 134.074 134.815 135.556 136.296 137.037 137.778 138.519 139.259 140.0 140.741 141.481 142.222 142.963 143.704 144.444 145.185 145.926 146.667 147.407 148.148 148.889 149.63 150.37 151.111 151.852 152.593 153.333 154.074 154.815 155.556 156.296 157.037 157.778 158.519 159.259 160.0 160.741 161.481 162.222 162.963 163.704 164.444 165.185 165.926 166.667 167.407 168.148 168.889 169.63 170.37 171.111 171.852 172.593 173.333 174.074 174.815 175.556 176.296 177.037 177.778 178.519 179.259 180.0 180.741 181.481 182.222 182.963 183.704 184.444 185.185 185.926 186.667 187.407 188.148 188.889 189.63 190.37 191.111 191.852 192.593 193.333 194.074 194.815 195.556 196.296 197.037 197.778 198.519 199.259 200.0 200.741 201.481 202.222 202.963 203.704 204.444 205.185 205.926 206.667 207.407 208.148 208.889 209.63 210.37 211.111 211.852 212.593 213.333 214.074 214.815 215.556 216.296 217.037 217.778 218.519 219.259 220.0 220.741 221.481 222.222 222.963 223.704 224.444 225.185 225.926 226.667 227.407 228.148 228.889 229.63 230.37 231.111 231.852 232.593 233.333 234.074 234.815 235.556 236.296 237.037 237.778 238.519 239.259 240.0 240.741 241.481 242.222 242.963 243.704 244.444 245.185 245.926 246.667 247.407 248.148 248.889 249.63 250.37 251.111 251.852 252.593 253.333 254.074 254.815 255.556 256.296 257.037 257.778 258.519 259.259 260.0 260.741 261.481 262.222 262.963 263.704 264.444 265.185 265.926 266.667 267.407 268.148 268.889 269.63 270.37 271.111 271.852 272.593 273.333 274.074 274.815 275.556 276.296 277.037 277.778 278.519 279.259 280.0 +280.741 281.481 282.222 282.963 283.704 284.444 285.185 285.926 286.667 287.407 288.148 288.889 289.63 290.37 291.111 291.852 292.593 293.333 294.074 294.815 295.556 296.296 297.037 297.778 298.519 299.259 300.0 300.741 301.481 302.222 302.963 303.704 304.444 305.185 305.926 306.667 307.407 308.148 308.889 309.63 310.37 311.111 311.852 312.593 313.333 314.074 314.815 315.556 316.296 317.037 317.778 318.519 319.259 320.0 320.741 321.481 322.222 322.963 323.704 324.444 325.185 325.926 326.667 327.407 328.148 328.889 329.63 330.37 331.111 331.852 332.593 333.333 334.074 334.815 335.556 336.296 337.037 337.778 338.519 339.259 340.0 340.741 341.481 342.222 342.963 343.704 344.444 345.185 345.926 346.667 347.407 348.148 348.889 349.63 350.37 351.111 351.852 352.593 353.333 354.074 354.815 355.556 356.296 357.037 357.778 358.519 359.259 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 +282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 +282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 +282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 +282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 +282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 +282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 +282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 +276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 +267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 +259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 +251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 +242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 +234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 +225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 +217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 +208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 +200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 +191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 +183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 +175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 +166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 +158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 +149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 +141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 +132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 +124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 +116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 +107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 +99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 +90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 +82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 +73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 +65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 +56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 +48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 +40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 +31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 +23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 +14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 +6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 +357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 +349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 +341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 +332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 +324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 +315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 +307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 +298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 +290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 +281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 +273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 +265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 +256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 +248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 +239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 +231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 +222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 +214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 +206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.703125 1.40625 2.10938 2.8125 3.51562 4.21875 4.92188 5.625 6.32812 7.03125 7.73438 8.4375 9.14062 9.84375 10.5469 11.25 11.9531 12.6562 13.3594 14.0625 14.7656 15.4688 16.1719 16.875 17.5781 18.2812 18.9844 19.6875 20.3906 21.0938 21.7969 22.5 23.2031 23.9062 24.6094 25.3125 26.0156 26.7188 27.4219 28.125 28.8281 29.5312 30.2344 30.9375 31.6406 32.3438 33.0469 33.75 34.4531 35.1562 35.8594 36.5625 37.2656 37.9688 38.6719 39.375 40.0781 40.7812 41.4844 42.1875 42.8906 43.5938 44.2969 45.0 45.7031 46.4062 47.1094 47.8125 48.5156 49.2188 49.9219 50.625 51.3281 52.0312 52.7344 53.4375 54.1406 54.8438 55.5469 56.25 56.9531 57.6562 58.3594 59.0625 59.7656 60.4688 61.1719 61.875 62.5781 63.2812 63.9844 64.6875 65.3906 66.0938 66.7969 67.5 68.2031 68.9062 69.6094 70.3125 71.0156 71.7188 72.4219 73.125 73.8281 74.5312 75.2344 75.9375 76.6406 77.3438 78.0469 78.75 79.4531 80.1562 80.8594 81.5625 82.2656 82.9688 83.6719 84.375 85.0781 85.7812 86.4844 87.1875 87.8906 88.5938 89.2969 90.0 90.7031 91.4062 92.1094 92.8125 93.5156 94.2188 94.9219 95.625 96.3281 97.0312 97.7344 98.4375 99.1406 99.8438 100.547 101.25 101.953 102.656 103.359 104.062 104.766 105.469 106.172 106.875 107.578 108.281 108.984 109.688 110.391 111.094 111.797 112.5 113.203 113.906 114.609 115.312 116.016 116.719 117.422 118.125 118.828 119.531 120.234 120.938 121.641 122.344 123.047 123.75 124.453 125.156 125.859 126.562 127.266 127.969 128.672 129.375 130.078 130.781 131.484 132.188 132.891 133.594 134.297 135.0 135.703 136.406 137.109 137.812 138.516 139.219 139.922 140.625 141.328 142.031 142.734 143.438 144.141 144.844 145.547 146.25 146.953 147.656 148.359 149.062 149.766 150.469 151.172 151.875 152.578 153.281 153.984 154.688 155.391 156.094 156.797 157.5 158.203 158.906 159.609 160.312 161.016 161.719 162.422 163.125 163.828 164.531 165.234 165.938 166.641 167.344 168.047 168.75 169.453 170.156 170.859 171.562 172.266 172.969 173.672 174.375 175.078 175.781 176.484 177.188 177.891 178.594 179.297 180.0 180.703 181.406 182.109 182.812 183.516 184.219 184.922 185.625 186.328 187.031 187.734 188.438 189.141 189.844 190.547 191.25 191.953 192.656 193.359 194.062 194.766 195.469 196.172 196.875 +197.578 198.281 198.984 199.688 200.391 201.094 201.797 202.5 203.203 203.906 204.609 205.312 206.016 206.719 207.422 208.125 208.828 209.531 210.234 210.938 211.641 212.344 213.047 213.75 214.453 215.156 215.859 216.562 217.266 217.969 218.672 219.375 220.078 220.781 221.484 222.188 222.891 223.594 224.297 225.0 225.703 226.406 227.109 227.812 228.516 229.219 229.922 230.625 231.328 232.031 232.734 233.438 234.141 234.844 235.547 236.25 236.953 237.656 238.359 239.062 239.766 240.469 241.172 241.875 242.578 243.281 243.984 244.688 245.391 246.094 246.797 247.5 248.203 248.906 249.609 250.312 251.016 251.719 252.422 253.125 253.828 254.531 255.234 255.938 256.641 257.344 258.047 258.75 259.453 260.156 260.859 261.562 262.266 262.969 263.672 264.375 265.078 265.781 266.484 267.188 267.891 268.594 269.297 270.0 270.703 271.406 272.109 272.812 273.516 274.219 274.922 275.625 276.328 277.031 277.734 278.438 279.141 279.844 280.547 281.25 281.953 282.656 283.359 284.062 284.766 285.469 286.172 286.875 287.578 288.281 288.984 289.688 290.391 291.094 291.797 292.5 293.203 293.906 294.609 295.312 296.016 296.719 297.422 298.125 298.828 299.531 300.234 300.938 301.641 302.344 303.047 303.75 304.453 305.156 305.859 306.562 307.266 307.969 308.672 309.375 310.078 310.781 311.484 312.188 312.891 313.594 314.297 315.0 315.703 316.406 317.109 317.812 318.516 319.219 319.922 320.625 321.328 322.031 322.734 323.438 324.141 324.844 325.547 326.25 326.953 327.656 328.359 329.062 329.766 330.469 331.172 331.875 332.578 333.281 333.984 334.688 335.391 336.094 336.797 337.5 338.203 338.906 339.609 340.312 341.016 341.719 342.422 343.125 343.828 344.531 345.234 345.938 346.641 347.344 348.047 348.75 349.453 350.156 350.859 351.562 352.266 352.969 353.672 354.375 355.078 355.781 356.484 357.188 357.891 358.594 359.297 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 +193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 +193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 +193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 +193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 +193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 +193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.72 1.44 2.16 2.88 3.6 4.32 5.04 5.76 6.48 7.2 7.92 8.64 9.36 10.08 10.8 11.52 12.24 12.96 13.68 14.4 15.12 15.84 16.56 17.28 18.0 18.72 19.44 20.16 20.88 21.6 22.32 23.04 23.76 24.48 25.2 25.92 26.64 27.36 28.08 28.8 29.52 30.24 30.96 31.68 32.4 33.12 33.84 34.56 35.28 36.0 36.72 37.44 38.16 38.88 39.6 40.32 41.04 41.76 42.48 43.2 43.92 44.64 45.36 46.08 46.8 47.52 48.24 48.96 49.68 50.4 51.12 51.84 52.56 53.28 54.0 54.72 55.44 56.16 56.88 57.6 58.32 59.04 59.76 60.48 61.2 61.92 62.64 63.36 64.08 64.8 65.52 66.24 66.96 67.68 68.4 69.12 69.84 70.56 71.28 72.0 72.72 73.44 74.16 74.88 75.6 76.32 77.04 77.76 78.48 79.2 79.92 80.64 81.36 82.08 82.8 83.52 84.24 84.96 85.68 86.4 87.12 87.84 88.56 89.28 90.0 90.72 91.44 92.16 92.88 93.6 94.32 95.04 95.76 96.48 97.2 97.92 98.64 99.36 100.08 100.8 101.52 102.24 102.96 103.68 104.4 105.12 105.84 106.56 107.28 108.0 108.72 109.44 110.16 110.88 111.6 112.32 113.04 113.76 114.48 115.2 115.92 116.64 117.36 118.08 118.8 119.52 120.24 120.96 121.68 122.4 123.12 123.84 124.56 125.28 126.0 126.72 127.44 128.16 128.88 129.6 130.32 131.04 131.76 132.48 133.2 133.92 134.64 135.36 136.08 136.8 137.52 138.24 138.96 139.68 140.4 141.12 141.84 142.56 143.28 144.0 144.72 145.44 146.16 146.88 147.6 148.32 149.04 149.76 150.48 151.2 151.92 152.64 153.36 154.08 154.8 155.52 156.24 156.96 157.68 158.4 159.12 159.84 160.56 161.28 162.0 162.72 163.44 164.16 164.88 165.6 166.32 167.04 167.76 168.48 169.2 169.92 170.64 171.36 172.08 172.8 173.52 174.24 174.96 175.68 176.4 177.12 177.84 178.56 179.28 180.0 180.72 181.44 182.16 182.88 183.6 184.32 185.04 185.76 186.48 187.2 187.92 188.64 189.36 190.08 190.8 191.52 192.24 192.96 +193.68 194.4 195.12 195.84 196.56 197.28 198.0 198.72 199.44 200.16 200.88 201.6 202.32 203.04 203.76 204.48 205.2 205.92 206.64 207.36 208.08 208.8 209.52 210.24 210.96 211.68 212.4 213.12 213.84 214.56 215.28 216.0 216.72 217.44 218.16 218.88 219.6 220.32 221.04 221.76 222.48 223.2 223.92 224.64 225.36 226.08 226.8 227.52 228.24 228.96 229.68 230.4 231.12 231.84 232.56 233.28 234.0 234.72 235.44 236.16 236.88 237.6 238.32 239.04 239.76 240.48 241.2 241.92 242.64 243.36 244.08 244.8 245.52 246.24 246.96 247.68 248.4 249.12 249.84 250.56 251.28 252.0 252.72 253.44 254.16 254.88 255.6 256.32 257.04 257.76 258.48 259.2 259.92 260.64 261.36 262.08 262.8 263.52 264.24 264.96 265.68 266.4 267.12 267.84 268.56 269.28 270.0 270.72 271.44 272.16 272.88 273.6 274.32 275.04 275.76 276.48 277.2 277.92 278.64 279.36 280.08 280.8 281.52 282.24 282.96 283.68 284.4 285.12 285.84 286.56 287.28 288.0 288.72 289.44 290.16 290.88 291.6 292.32 293.04 293.76 294.48 295.2 295.92 296.64 297.36 298.08 298.8 299.52 300.24 300.96 301.68 302.4 303.12 303.84 304.56 305.28 306.0 306.72 307.44 308.16 308.88 309.6 310.32 311.04 311.76 312.48 313.2 313.92 314.64 315.36 316.08 316.8 317.52 318.24 318.96 319.68 320.4 321.12 321.84 322.56 323.28 324.0 324.72 325.44 326.16 326.88 327.6 328.32 329.04 329.76 330.48 331.2 331.92 332.64 333.36 334.08 334.8 335.52 336.24 336.96 337.68 338.4 339.12 339.84 340.56 341.28 342.0 342.72 343.44 344.16 344.88 345.6 346.32 347.04 347.76 348.48 349.2 349.92 350.64 351.36 352.08 352.8 353.52 354.24 354.96 355.68 356.4 357.12 357.84 358.56 359.28 0.0 0.740741 1.48148 2.22222 2.96296 3.7037 4.44444 5.18518 5.92593 6.66667 7.40741 8.14815 8.88889 9.62963 10.3704 11.1111 11.8519 12.5926 13.3333 14.0741 14.8148 15.5556 16.2963 17.037 17.7778 18.5185 19.2593 20.0 20.7407 21.4815 22.2222 22.963 23.7037 24.4444 25.1852 25.9259 26.6667 27.4074 28.1481 28.8889 29.6296 30.3704 31.1111 31.8519 32.5926 33.3333 34.0741 34.8148 35.5556 36.2963 37.037 37.7778 38.5185 39.2593 40.0 40.7407 41.4815 42.2222 42.963 43.7037 44.4444 45.1852 45.9259 46.6667 47.4074 48.1481 48.8889 49.6296 50.3704 51.1111 51.8519 52.5926 53.3333 54.0741 54.8148 55.5556 56.2963 57.037 57.7778 58.5185 59.2593 60.0 60.7407 61.4815 62.2222 62.963 63.7037 64.4444 65.1852 65.9259 66.6667 67.4074 68.1481 68.8889 69.6296 70.3704 71.1111 71.8519 72.5926 73.3333 74.0741 74.8148 75.5556 76.2963 77.037 77.7778 78.5185 79.2593 80.0 80.7407 81.4815 82.2222 82.963 83.7037 84.4444 85.1852 85.9259 86.6667 87.4074 88.1481 88.8889 89.6296 90.3704 91.1111 91.8519 92.5926 93.3333 94.0741 94.8148 95.5556 96.2963 97.037 97.7778 98.5185 99.2593 100.0 100.741 101.481 102.222 102.963 103.704 104.444 105.185 105.926 106.667 107.407 108.148 108.889 109.63 110.37 111.111 111.852 112.593 113.333 114.074 114.815 115.556 116.296 117.037 117.778 118.519 119.259 120.0 120.741 121.481 122.222 122.963 123.704 124.444 125.185 125.926 126.667 127.407 128.148 128.889 129.63 130.37 131.111 131.852 132.593 133.333 134.074 134.815 135.556 136.296 137.037 137.778 138.519 139.259 140.0 140.741 141.481 142.222 142.963 143.704 144.444 145.185 145.926 146.667 147.407 148.148 148.889 149.63 150.37 151.111 151.852 152.593 153.333 154.074 154.815 155.556 156.296 157.037 157.778 158.519 159.259 160.0 160.741 161.481 162.222 162.963 163.704 164.444 165.185 165.926 166.667 167.407 168.148 168.889 169.63 170.37 171.111 171.852 172.593 173.333 174.074 174.815 175.556 176.296 177.037 177.778 178.519 179.259 180.0 180.741 181.481 182.222 182.963 183.704 184.444 185.185 185.926 186.667 187.407 188.148 188.889 189.63 190.37 191.111 191.852 192.593 193.333 194.074 194.815 195.556 196.296 197.037 197.778 198.519 +199.259 200.0 200.741 201.481 202.222 202.963 203.704 204.444 205.185 205.926 206.667 207.407 208.148 208.889 209.63 210.37 211.111 211.852 212.593 213.333 214.074 214.815 215.556 216.296 217.037 217.778 218.519 219.259 220.0 220.741 221.481 222.222 222.963 223.704 224.444 225.185 225.926 226.667 227.407 228.148 228.889 229.63 230.37 231.111 231.852 232.593 233.333 234.074 234.815 235.556 236.296 237.037 237.778 238.519 239.259 240.0 240.741 241.481 242.222 242.963 243.704 244.444 245.185 245.926 246.667 247.407 248.148 248.889 249.63 250.37 251.111 251.852 252.593 253.333 254.074 254.815 255.556 256.296 257.037 257.778 258.519 259.259 260.0 260.741 261.481 262.222 262.963 263.704 264.444 265.185 265.926 266.667 267.407 268.148 268.889 269.63 270.37 271.111 271.852 272.593 273.333 274.074 274.815 275.556 276.296 277.037 277.778 278.519 279.259 280.0 280.741 281.481 282.222 282.963 283.704 284.444 285.185 285.926 286.667 287.407 288.148 288.889 289.63 290.37 291.111 291.852 292.593 293.333 294.074 294.815 295.556 296.296 297.037 297.778 298.519 299.259 300.0 300.741 301.481 302.222 302.963 303.704 304.444 305.185 305.926 306.667 307.407 308.148 308.889 309.63 310.37 311.111 311.852 312.593 313.333 314.074 314.815 315.556 316.296 317.037 317.778 318.519 319.259 320.0 320.741 321.481 322.222 322.963 323.704 324.444 325.185 325.926 326.667 327.407 328.148 328.889 329.63 330.37 331.111 331.852 332.593 333.333 334.074 334.815 335.556 336.296 337.037 337.778 338.519 339.259 340.0 340.741 341.481 342.222 342.963 343.704 344.444 345.185 345.926 346.667 347.407 348.148 348.889 349.63 350.37 351.111 351.852 352.593 353.333 354.074 354.815 355.556 356.296 357.037 357.778 358.519 359.259 0.0 0.740741 1.48148 2.22222 2.96296 3.7037 4.44444 5.18518 5.92593 6.66667 7.40741 8.14815 8.88889 9.62963 10.3704 11.1111 11.8519 12.5926 13.3333 14.0741 14.8148 15.5556 16.2963 17.037 17.7778 18.5185 19.2593 20.0 20.7407 21.4815 22.2222 22.963 23.7037 24.4444 25.1852 25.9259 26.6667 27.4074 28.1481 28.8889 29.6296 30.3704 31.1111 31.8519 32.5926 33.3333 34.0741 34.8148 35.5556 36.2963 37.037 37.7778 38.5185 39.2593 40.0 40.7407 41.4815 42.2222 42.963 43.7037 44.4444 45.1852 45.9259 46.6667 47.4074 48.1481 48.8889 49.6296 50.3704 51.1111 51.8519 52.5926 53.3333 54.0741 54.8148 55.5556 56.2963 57.037 57.7778 58.5185 59.2593 60.0 60.7407 61.4815 62.2222 62.963 63.7037 64.4444 65.1852 65.9259 66.6667 67.4074 68.1481 68.8889 69.6296 70.3704 71.1111 71.8519 72.5926 73.3333 74.0741 74.8148 75.5556 76.2963 77.037 77.7778 78.5185 79.2593 80.0 80.7407 81.4815 82.2222 82.963 83.7037 84.4444 85.1852 85.9259 86.6667 87.4074 88.1481 88.8889 89.6296 90.3704 91.1111 91.8519 92.5926 93.3333 94.0741 94.8148 95.5556 96.2963 97.037 97.7778 98.5185 99.2593 100.0 100.741 101.481 102.222 102.963 103.704 104.444 105.185 105.926 106.667 107.407 108.148 108.889 109.63 110.37 111.111 111.852 112.593 113.333 114.074 114.815 115.556 116.296 117.037 117.778 118.519 119.259 120.0 120.741 121.481 122.222 122.963 123.704 124.444 125.185 125.926 126.667 127.407 128.148 128.889 129.63 130.37 131.111 131.852 132.593 133.333 134.074 134.815 135.556 136.296 137.037 137.778 138.519 139.259 140.0 140.741 141.481 142.222 142.963 143.704 144.444 145.185 145.926 146.667 147.407 148.148 148.889 149.63 150.37 151.111 151.852 152.593 153.333 154.074 154.815 155.556 156.296 157.037 157.778 158.519 159.259 160.0 160.741 161.481 162.222 162.963 163.704 164.444 165.185 165.926 166.667 167.407 168.148 168.889 169.63 170.37 171.111 171.852 172.593 173.333 174.074 174.815 175.556 176.296 177.037 177.778 178.519 179.259 180.0 180.741 181.481 182.222 182.963 183.704 184.444 185.185 185.926 186.667 187.407 188.148 188.889 189.63 190.37 191.111 191.852 192.593 193.333 194.074 194.815 195.556 196.296 197.037 197.778 198.519 199.259 200.0 200.741 201.481 202.222 202.963 203.704 204.444 205.185 205.926 206.667 207.407 208.148 208.889 +209.63 210.37 211.111 211.852 212.593 213.333 214.074 214.815 215.556 216.296 217.037 217.778 218.519 219.259 220.0 220.741 221.481 222.222 222.963 223.704 224.444 225.185 225.926 226.667 227.407 228.148 228.889 229.63 230.37 231.111 231.852 232.593 233.333 234.074 234.815 235.556 236.296 237.037 237.778 238.519 239.259 240.0 240.741 241.481 242.222 242.963 243.704 244.444 245.185 245.926 246.667 247.407 248.148 248.889 249.63 250.37 251.111 251.852 252.593 253.333 254.074 254.815 255.556 256.296 257.037 257.778 258.519 259.259 260.0 260.741 261.481 262.222 262.963 263.704 264.444 265.185 265.926 266.667 267.407 268.148 268.889 269.63 270.37 271.111 271.852 272.593 273.333 274.074 274.815 275.556 276.296 277.037 277.778 278.519 279.259 280.0 280.741 281.481 282.222 282.963 283.704 284.444 285.185 285.926 286.667 287.407 288.148 288.889 289.63 290.37 291.111 291.852 292.593 293.333 294.074 294.815 295.556 296.296 297.037 297.778 298.519 299.259 300.0 300.741 301.481 302.222 302.963 303.704 304.444 305.185 305.926 306.667 307.407 308.148 308.889 309.63 310.37 311.111 311.852 312.593 313.333 314.074 314.815 315.556 316.296 317.037 317.778 318.519 319.259 320.0 320.741 321.481 322.222 322.963 323.704 324.444 325.185 325.926 326.667 327.407 328.148 328.889 329.63 330.37 331.111 331.852 332.593 333.333 334.074 334.815 335.556 336.296 337.037 337.778 338.519 339.259 340.0 340.741 341.481 342.222 342.963 343.704 344.444 345.185 345.926 346.667 347.407 348.148 348.889 349.63 350.37 351.111 351.852 352.593 353.333 354.074 354.815 355.556 356.296 357.037 357.778 358.519 359.259 0.0 0.740741 1.48148 2.22222 2.96296 3.7037 4.44444 5.18518 5.92593 6.66667 7.40741 8.14815 8.88889 9.62963 10.3704 11.1111 11.8519 12.5926 13.3333 14.0741 14.8148 15.5556 16.2963 17.037 17.7778 18.5185 19.2593 20.0 20.7407 21.4815 22.2222 22.963 23.7037 24.4444 25.1852 25.9259 26.6667 27.4074 28.1481 28.8889 29.6296 30.3704 31.1111 31.8519 32.5926 33.3333 34.0741 34.8148 35.5556 36.2963 37.037 37.7778 38.5185 39.2593 40.0 40.7407 41.4815 42.2222 42.963 43.7037 44.4444 45.1852 45.9259 46.6667 47.4074 48.1481 48.8889 49.6296 50.3704 51.1111 51.8519 52.5926 53.3333 54.0741 54.8148 55.5556 56.2963 57.037 57.7778 58.5185 59.2593 60.0 60.7407 61.4815 62.2222 62.963 63.7037 64.4444 65.1852 65.9259 66.6667 67.4074 68.1481 68.8889 69.6296 70.3704 71.1111 71.8519 72.5926 73.3333 74.0741 74.8148 75.5556 76.2963 77.037 77.7778 78.5185 79.2593 80.0 80.7407 81.4815 82.2222 82.963 83.7037 84.4444 85.1852 85.9259 86.6667 87.4074 88.1481 88.8889 89.6296 90.3704 91.1111 91.8519 92.5926 93.3333 94.0741 94.8148 95.5556 96.2963 97.037 97.7778 98.5185 99.2593 100.0 100.741 101.481 102.222 102.963 103.704 104.444 105.185 105.926 106.667 107.407 108.148 108.889 109.63 110.37 111.111 111.852 112.593 113.333 114.074 114.815 115.556 116.296 117.037 117.778 118.519 119.259 120.0 120.741 121.481 122.222 122.963 123.704 124.444 125.185 125.926 126.667 127.407 128.148 128.889 129.63 130.37 131.111 131.852 132.593 133.333 134.074 134.815 135.556 136.296 137.037 137.778 138.519 139.259 140.0 140.741 141.481 142.222 142.963 143.704 144.444 145.185 145.926 146.667 147.407 148.148 148.889 149.63 150.37 151.111 151.852 152.593 153.333 154.074 154.815 155.556 156.296 157.037 157.778 158.519 159.259 160.0 160.741 161.481 162.222 162.963 163.704 164.444 165.185 165.926 166.667 167.407 168.148 168.889 169.63 170.37 171.111 171.852 172.593 173.333 174.074 174.815 175.556 176.296 177.037 177.778 178.519 179.259 180.0 180.741 181.481 182.222 182.963 183.704 184.444 185.185 185.926 186.667 187.407 188.148 188.889 189.63 190.37 191.111 191.852 192.593 193.333 194.074 194.815 195.556 196.296 197.037 197.778 198.519 199.259 200.0 200.741 201.481 202.222 202.963 203.704 204.444 205.185 205.926 206.667 207.407 208.148 208.889 209.63 210.37 211.111 211.852 212.593 213.333 214.074 214.815 215.556 216.296 217.037 217.778 218.519 219.259 +220.0 220.741 221.481 222.222 222.963 223.704 224.444 225.185 225.926 226.667 227.407 228.148 228.889 229.63 230.37 231.111 231.852 232.593 233.333 234.074 234.815 235.556 236.296 237.037 237.778 238.519 239.259 240.0 240.741 241.481 242.222 242.963 243.704 244.444 245.185 245.926 246.667 247.407 248.148 248.889 249.63 250.37 251.111 251.852 252.593 253.333 254.074 254.815 255.556 256.296 257.037 257.778 258.519 259.259 260.0 260.741 261.481 262.222 262.963 263.704 264.444 265.185 265.926 266.667 267.407 268.148 268.889 269.63 270.37 271.111 271.852 272.593 273.333 274.074 274.815 275.556 276.296 277.037 277.778 278.519 279.259 280.0 280.741 281.481 282.222 282.963 283.704 284.444 285.185 285.926 286.667 287.407 288.148 288.889 289.63 290.37 291.111 291.852 292.593 293.333 294.074 294.815 295.556 296.296 297.037 297.778 298.519 299.259 300.0 300.741 301.481 302.222 302.963 303.704 304.444 305.185 305.926 306.667 307.407 308.148 308.889 309.63 310.37 311.111 311.852 312.593 313.333 314.074 314.815 315.556 316.296 317.037 317.778 318.519 319.259 320.0 320.741 321.481 322.222 322.963 323.704 324.444 325.185 325.926 326.667 327.407 328.148 328.889 329.63 330.37 331.111 331.852 332.593 333.333 334.074 334.815 335.556 336.296 337.037 337.778 338.519 339.259 340.0 340.741 341.481 342.222 342.963 343.704 344.444 345.185 345.926 346.667 347.407 348.148 348.889 349.63 350.37 351.111 351.852 352.593 353.333 354.074 354.815 355.556 356.296 357.037 357.778 358.519 359.259 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 +233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 +248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 +263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 +278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 +293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 +308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 +323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 +338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 +353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.75 1.5 2.25 3.0 3.75 4.5 5.25 6.0 6.75 7.5 8.25 9.0 9.75 10.5 11.25 12.0 12.75 13.5 14.25 15.0 15.75 16.5 17.25 18.0 18.75 19.5 20.25 21.0 21.75 22.5 23.25 24.0 24.75 25.5 26.25 27.0 27.75 28.5 29.25 30.0 30.75 31.5 32.25 33.0 33.75 34.5 35.25 36.0 36.75 37.5 38.25 39.0 39.75 40.5 41.25 42.0 42.75 43.5 44.25 45.0 45.75 46.5 47.25 48.0 48.75 49.5 50.25 51.0 51.75 52.5 53.25 54.0 54.75 55.5 56.25 57.0 57.75 58.5 59.25 60.0 60.75 61.5 62.25 63.0 63.75 64.5 65.25 66.0 66.75 67.5 68.25 69.0 69.75 70.5 71.25 72.0 72.75 73.5 74.25 75.0 75.75 76.5 77.25 78.0 78.75 79.5 80.25 81.0 81.75 82.5 83.25 84.0 84.75 85.5 86.25 87.0 87.75 88.5 89.25 90.0 90.75 91.5 92.25 93.0 93.75 94.5 95.25 96.0 96.75 97.5 98.25 99.0 99.75 100.5 101.25 102.0 102.75 103.5 104.25 105.0 105.75 106.5 107.25 108.0 108.75 109.5 110.25 111.0 111.75 112.5 113.25 114.0 114.75 115.5 116.25 117.0 117.75 118.5 119.25 120.0 120.75 121.5 122.25 123.0 123.75 124.5 125.25 126.0 126.75 127.5 128.25 129.0 129.75 130.5 131.25 132.0 132.75 133.5 134.25 135.0 135.75 136.5 137.25 138.0 138.75 139.5 140.25 141.0 141.75 142.5 143.25 144.0 144.75 145.5 146.25 147.0 147.75 148.5 149.25 150.0 150.75 151.5 152.25 153.0 153.75 154.5 155.25 156.0 156.75 157.5 158.25 159.0 159.75 160.5 161.25 162.0 162.75 163.5 164.25 165.0 165.75 166.5 167.25 168.0 168.75 169.5 170.25 171.0 171.75 172.5 173.25 174.0 174.75 175.5 176.25 177.0 177.75 178.5 179.25 180.0 180.75 181.5 182.25 183.0 183.75 184.5 185.25 186.0 186.75 187.5 188.25 189.0 189.75 190.5 191.25 192.0 192.75 193.5 194.25 195.0 195.75 196.5 197.25 198.0 198.75 199.5 200.25 201.0 201.75 202.5 203.25 204.0 204.75 205.5 206.25 207.0 207.75 208.5 209.25 210.0 210.75 211.5 212.25 213.0 213.75 214.5 215.25 216.0 216.75 217.5 218.25 219.0 219.75 220.5 221.25 222.0 222.75 223.5 224.25 225.0 225.75 226.5 227.25 228.0 228.75 229.5 230.25 231.0 231.75 232.5 233.25 234.0 234.75 235.5 236.25 237.0 237.75 238.5 239.25 240.0 240.75 241.5 242.25 243.0 243.75 244.5 245.25 246.0 246.75 247.5 248.25 249.0 249.75 250.5 251.25 252.0 252.75 253.5 254.25 255.0 255.75 256.5 257.25 258.0 258.75 259.5 260.25 261.0 261.75 262.5 263.25 264.0 264.75 265.5 266.25 267.0 267.75 268.5 269.25 270.0 270.75 271.5 272.25 273.0 273.75 274.5 275.25 276.0 276.75 277.5 278.25 279.0 279.75 280.5 281.25 282.0 282.75 283.5 284.25 285.0 285.75 286.5 287.25 288.0 288.75 289.5 290.25 291.0 291.75 292.5 293.25 294.0 294.75 295.5 296.25 297.0 297.75 298.5 299.25 300.0 300.75 301.5 302.25 303.0 303.75 304.5 305.25 306.0 306.75 307.5 308.25 309.0 309.75 310.5 311.25 312.0 312.75 313.5 314.25 315.0 315.75 316.5 317.25 318.0 318.75 319.5 320.25 321.0 321.75 322.5 323.25 324.0 324.75 325.5 326.25 327.0 327.75 328.5 329.25 330.0 330.75 331.5 332.25 333.0 333.75 334.5 335.25 336.0 336.75 337.5 338.25 339.0 339.75 340.5 341.25 342.0 342.75 343.5 344.25 345.0 345.75 346.5 347.25 348.0 348.75 349.5 350.25 351.0 351.75 352.5 353.25 354.0 354.75 355.5 356.25 357.0 357.75 358.5 359.25 0.0 0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 +8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 +48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 +88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 +128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 0.8 1.6 2.4 3.2 4.0 4.8 5.6 6.4 7.2 8.0 8.8 9.6 10.4 11.2 12.0 12.8 13.6 14.4 15.2 16.0 16.8 17.6 18.4 19.2 20.0 20.8 21.6 22.4 23.2 24.0 24.8 25.6 26.4 27.2 28.0 28.8 29.6 30.4 31.2 32.0 32.8 33.6 34.4 35.2 36.0 36.8 37.6 38.4 39.2 40.0 40.8 41.6 42.4 43.2 44.0 44.8 45.6 46.4 47.2 48.0 48.8 49.6 50.4 51.2 52.0 52.8 53.6 54.4 55.2 56.0 56.8 57.6 58.4 59.2 60.0 60.8 61.6 62.4 63.2 64.0 64.8 65.6 66.4 67.2 68.0 68.8 69.6 70.4 71.2 72.0 72.8 73.6 74.4 75.2 76.0 76.8 77.6 78.4 79.2 80.0 80.8 81.6 82.4 83.2 84.0 84.8 85.6 86.4 87.2 88.0 88.8 89.6 90.4 91.2 92.0 92.8 93.6 94.4 95.2 96.0 96.8 97.6 98.4 99.2 100.0 100.8 101.6 102.4 103.2 104.0 104.8 105.6 106.4 107.2 108.0 108.8 109.6 110.4 111.2 112.0 112.8 113.6 114.4 115.2 116.0 116.8 117.6 118.4 119.2 120.0 120.8 121.6 122.4 123.2 124.0 124.8 125.6 126.4 127.2 128.0 128.8 129.6 130.4 131.2 132.0 132.8 133.6 134.4 135.2 136.0 136.8 137.6 138.4 139.2 140.0 140.8 141.6 142.4 143.2 144.0 144.8 145.6 146.4 147.2 148.0 148.8 149.6 150.4 151.2 152.0 152.8 153.6 154.4 155.2 156.0 156.8 157.6 158.4 159.2 160.0 160.8 161.6 162.4 163.2 164.0 164.8 165.6 166.4 167.2 168.0 +168.8 169.6 170.4 171.2 172.0 172.8 173.6 174.4 175.2 176.0 176.8 177.6 178.4 179.2 180.0 180.8 181.6 182.4 183.2 184.0 184.8 185.6 186.4 187.2 188.0 188.8 189.6 190.4 191.2 192.0 192.8 193.6 194.4 195.2 196.0 196.8 197.6 198.4 199.2 200.0 200.8 201.6 202.4 203.2 204.0 204.8 205.6 206.4 207.2 208.0 208.8 209.6 210.4 211.2 212.0 212.8 213.6 214.4 215.2 216.0 216.8 217.6 218.4 219.2 220.0 220.8 221.6 222.4 223.2 224.0 224.8 225.6 226.4 227.2 228.0 228.8 229.6 230.4 231.2 232.0 232.8 233.6 234.4 235.2 236.0 236.8 237.6 238.4 239.2 240.0 240.8 241.6 242.4 243.2 244.0 244.8 245.6 246.4 247.2 248.0 248.8 249.6 250.4 251.2 252.0 252.8 253.6 254.4 255.2 256.0 256.8 257.6 258.4 259.2 260.0 260.8 261.6 262.4 263.2 264.0 264.8 265.6 266.4 267.2 268.0 268.8 269.6 270.4 271.2 272.0 272.8 273.6 274.4 275.2 276.0 276.8 277.6 278.4 279.2 280.0 280.8 281.6 282.4 283.2 284.0 284.8 285.6 286.4 287.2 288.0 288.8 289.6 290.4 291.2 292.0 292.8 293.6 294.4 295.2 296.0 296.8 297.6 298.4 299.2 300.0 300.8 301.6 302.4 303.2 304.0 304.8 305.6 306.4 307.2 308.0 308.8 309.6 310.4 311.2 312.0 312.8 313.6 314.4 315.2 316.0 316.8 317.6 318.4 319.2 320.0 320.8 321.6 322.4 323.2 324.0 324.8 325.6 326.4 327.2 328.0 328.8 329.6 330.4 331.2 332.0 332.8 333.6 334.4 335.2 336.0 336.8 337.6 338.4 339.2 340.0 340.8 341.6 342.4 343.2 344.0 344.8 345.6 346.4 347.2 348.0 348.8 349.6 350.4 351.2 352.0 352.8 353.6 354.4 355.2 356.0 356.8 357.6 358.4 359.2 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 +217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 +274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 +330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 +27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 +84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.833333 1.66667 2.5 3.33333 4.16667 5.0 5.83333 6.66667 7.5 8.33333 9.16667 10.0 10.8333 11.6667 12.5 13.3333 14.1667 15.0 15.8333 16.6667 17.5 18.3333 19.1667 20.0 20.8333 21.6667 22.5 23.3333 24.1667 25.0 25.8333 26.6667 27.5 28.3333 29.1667 30.0 30.8333 31.6667 32.5 33.3333 34.1667 35.0 35.8333 36.6667 37.5 38.3333 39.1667 40.0 40.8333 41.6667 42.5 43.3333 44.1667 45.0 45.8333 46.6667 47.5 48.3333 49.1667 50.0 50.8333 51.6667 52.5 53.3333 54.1667 55.0 55.8333 56.6667 57.5 58.3333 59.1667 60.0 60.8333 61.6667 62.5 63.3333 64.1667 65.0 65.8333 66.6667 67.5 68.3333 69.1667 70.0 70.8333 71.6667 72.5 73.3333 74.1667 75.0 75.8333 76.6667 77.5 78.3333 79.1667 80.0 80.8333 81.6667 82.5 83.3333 84.1667 85.0 85.8333 86.6667 87.5 88.3333 89.1667 90.0 90.8333 91.6667 92.5 93.3333 94.1667 95.0 95.8333 96.6667 97.5 98.3333 99.1667 100.0 100.833 101.667 102.5 103.333 104.167 105.0 105.833 106.667 107.5 108.333 109.167 110.0 110.833 111.667 112.5 113.333 114.167 115.0 115.833 116.667 117.5 118.333 119.167 120.0 120.833 121.667 122.5 123.333 124.167 125.0 125.833 126.667 127.5 128.333 129.167 130.0 130.833 131.667 132.5 133.333 134.167 135.0 135.833 136.667 137.5 138.333 139.167 140.0 +140.833 141.667 142.5 143.333 144.167 145.0 145.833 146.667 147.5 148.333 149.167 150.0 150.833 151.667 152.5 153.333 154.167 155.0 155.833 156.667 157.5 158.333 159.167 160.0 160.833 161.667 162.5 163.333 164.167 165.0 165.833 166.667 167.5 168.333 169.167 170.0 170.833 171.667 172.5 173.333 174.167 175.0 175.833 176.667 177.5 178.333 179.167 180.0 180.833 181.667 182.5 183.333 184.167 185.0 185.833 186.667 187.5 188.333 189.167 190.0 190.833 191.667 192.5 193.333 194.167 195.0 195.833 196.667 197.5 198.333 199.167 200.0 200.833 201.667 202.5 203.333 204.167 205.0 205.833 206.667 207.5 208.333 209.167 210.0 210.833 211.667 212.5 213.333 214.167 215.0 215.833 216.667 217.5 218.333 219.167 220.0 220.833 221.667 222.5 223.333 224.167 225.0 225.833 226.667 227.5 228.333 229.167 230.0 230.833 231.667 232.5 233.333 234.167 235.0 235.833 236.667 237.5 238.333 239.167 240.0 240.833 241.667 242.5 243.333 244.167 245.0 245.833 246.667 247.5 248.333 249.167 250.0 250.833 251.667 252.5 253.333 254.167 255.0 255.833 256.667 257.5 258.333 259.167 260.0 260.833 261.667 262.5 263.333 264.167 265.0 265.833 266.667 267.5 268.333 269.167 270.0 270.833 271.667 272.5 273.333 274.167 275.0 275.833 276.667 277.5 278.333 279.167 280.0 280.833 281.667 282.5 283.333 284.167 285.0 285.833 286.667 287.5 288.333 289.167 290.0 290.833 291.667 292.5 293.333 294.167 295.0 295.833 296.667 297.5 298.333 299.167 300.0 300.833 301.667 302.5 303.333 304.167 305.0 305.833 306.667 307.5 308.333 309.167 310.0 310.833 311.667 312.5 313.333 314.167 315.0 315.833 316.667 317.5 318.333 319.167 320.0 320.833 321.667 322.5 323.333 324.167 325.0 325.833 326.667 327.5 328.333 329.167 330.0 330.833 331.667 332.5 333.333 334.167 335.0 335.833 336.667 337.5 338.333 339.167 340.0 340.833 341.667 342.5 343.333 344.167 345.0 345.833 346.667 347.5 348.333 349.167 350.0 350.833 351.667 352.5 353.333 354.167 355.0 355.833 356.667 357.5 358.333 359.167 0.0 0.888889 1.77778 2.66667 3.55556 4.44444 5.33333 6.22222 7.11111 8.0 8.88889 9.77778 10.6667 11.5556 12.4444 13.3333 14.2222 15.1111 16.0 16.8889 17.7778 18.6667 19.5556 20.4444 21.3333 22.2222 23.1111 24.0 24.8889 25.7778 26.6667 27.5556 28.4444 29.3333 30.2222 31.1111 32.0 32.8889 33.7778 34.6667 35.5556 36.4444 37.3333 38.2222 39.1111 40.0 40.8889 41.7778 42.6667 43.5556 44.4444 45.3333 46.2222 47.1111 48.0 48.8889 49.7778 50.6667 51.5556 52.4444 53.3333 54.2222 55.1111 56.0 56.8889 57.7778 58.6667 59.5556 60.4444 61.3333 62.2222 63.1111 64.0 64.8889 65.7778 66.6667 67.5556 68.4444 69.3333 70.2222 71.1111 72.0 72.8889 73.7778 74.6667 75.5556 76.4444 77.3333 78.2222 79.1111 80.0 80.8889 81.7778 82.6667 83.5556 84.4444 85.3333 86.2222 87.1111 88.0 88.8889 89.7778 90.6667 91.5556 92.4444 93.3333 94.2222 95.1111 96.0 96.8889 97.7778 98.6667 99.5556 100.444 101.333 102.222 103.111 104.0 104.889 105.778 106.667 107.556 108.444 109.333 110.222 111.111 112.0 112.889 113.778 114.667 115.556 116.444 117.333 118.222 119.111 120.0 120.889 121.778 122.667 123.556 124.444 125.333 126.222 127.111 128.0 128.889 129.778 130.667 131.556 132.444 133.333 134.222 135.111 136.0 136.889 137.778 138.667 139.556 140.444 141.333 142.222 143.111 144.0 144.889 145.778 146.667 147.556 148.444 149.333 150.222 151.111 152.0 152.889 153.778 154.667 155.556 156.444 157.333 158.222 159.111 160.0 160.889 161.778 162.667 163.556 164.444 165.333 166.222 167.111 168.0 168.889 169.778 170.667 171.556 172.444 173.333 174.222 175.111 176.0 176.889 177.778 178.667 179.556 180.444 181.333 182.222 183.111 184.0 184.889 185.778 186.667 187.556 188.444 189.333 190.222 191.111 192.0 192.889 193.778 194.667 195.556 196.444 197.333 198.222 199.111 200.0 200.889 201.778 202.667 203.556 204.444 205.333 206.222 207.111 208.0 208.889 209.778 +210.667 211.556 212.444 213.333 214.222 215.111 216.0 216.889 217.778 218.667 219.556 220.444 221.333 222.222 223.111 224.0 224.889 225.778 226.667 227.556 228.444 229.333 230.222 231.111 232.0 232.889 233.778 234.667 235.556 236.444 237.333 238.222 239.111 240.0 240.889 241.778 242.667 243.556 244.444 245.333 246.222 247.111 248.0 248.889 249.778 250.667 251.556 252.444 253.333 254.222 255.111 256.0 256.889 257.778 258.667 259.556 260.444 261.333 262.222 263.111 264.0 264.889 265.778 266.667 267.556 268.444 269.333 270.222 271.111 272.0 272.889 273.778 274.667 275.556 276.444 277.333 278.222 279.111 280.0 280.889 281.778 282.667 283.556 284.444 285.333 286.222 287.111 288.0 288.889 289.778 290.667 291.556 292.444 293.333 294.222 295.111 296.0 296.889 297.778 298.667 299.556 300.444 301.333 302.222 303.111 304.0 304.889 305.778 306.667 307.556 308.444 309.333 310.222 311.111 312.0 312.889 313.778 314.667 315.556 316.444 317.333 318.222 319.111 320.0 320.889 321.778 322.667 323.556 324.444 325.333 326.222 327.111 328.0 328.889 329.778 330.667 331.556 332.444 333.333 334.222 335.111 336.0 336.889 337.778 338.667 339.556 340.444 341.333 342.222 343.111 344.0 344.889 345.778 346.667 347.556 348.444 349.333 350.222 351.111 352.0 352.889 353.778 354.667 355.556 356.444 357.333 358.222 359.111 0.0 0.9 1.8 2.7 3.6 4.5 5.4 6.3 7.2 8.1 9.0 9.9 10.8 11.7 12.6 13.5 14.4 15.3 16.2 17.1 18.0 18.9 19.8 20.7 21.6 22.5 23.4 24.3 25.2 26.1 27.0 27.9 28.8 29.7 30.6 31.5 32.4 33.3 34.2 35.1 36.0 36.9 37.8 38.7 39.6 40.5 41.4 42.3 43.2 44.1 45.0 45.9 46.8 47.7 48.6 49.5 50.4 51.3 52.2 53.1 54.0 54.9 55.8 56.7 57.6 58.5 59.4 60.3 61.2 62.1 63.0 63.9 64.8 65.7 66.6 67.5 68.4 69.3 70.2 71.1 72.0 72.9 73.8 74.7 75.6 76.5 77.4 78.3 79.2 80.1 81.0 81.9 82.8 83.7 84.6 85.5 86.4 87.3 88.2 89.1 90.0 90.9 91.8 92.7 93.6 94.5 95.4 96.3 97.2 98.1 99.0 99.9 100.8 101.7 102.6 103.5 104.4 105.3 106.2 107.1 108.0 108.9 109.8 110.7 111.6 112.5 113.4 114.3 115.2 116.1 117.0 117.9 118.8 119.7 120.6 121.5 122.4 123.3 124.2 125.1 126.0 126.9 127.8 128.7 129.6 130.5 131.4 132.3 133.2 134.1 135.0 135.9 136.8 137.7 138.6 139.5 140.4 141.3 142.2 143.1 144.0 144.9 145.8 146.7 147.6 148.5 149.4 150.3 151.2 152.1 153.0 153.9 154.8 155.7 156.6 157.5 158.4 159.3 160.2 161.1 162.0 162.9 163.8 164.7 165.6 166.5 167.4 168.3 169.2 170.1 171.0 171.9 172.8 173.7 174.6 175.5 176.4 177.3 178.2 179.1 180.0 180.9 181.8 182.7 183.6 184.5 185.4 186.3 187.2 188.1 189.0 189.9 190.8 191.7 192.6 193.5 194.4 195.3 196.2 197.1 198.0 198.9 199.8 200.7 201.6 202.5 203.4 204.3 205.2 206.1 207.0 207.9 208.8 209.7 210.6 211.5 212.4 213.3 214.2 215.1 216.0 216.9 217.8 218.7 219.6 220.5 221.4 222.3 223.2 224.1 225.0 225.9 226.8 227.7 228.6 229.5 230.4 231.3 232.2 233.1 234.0 234.9 235.8 236.7 237.6 238.5 239.4 240.3 241.2 242.1 243.0 243.9 244.8 245.7 246.6 247.5 248.4 249.3 250.2 251.1 252.0 252.9 253.8 254.7 255.6 256.5 257.4 258.3 259.2 260.1 261.0 261.9 262.8 263.7 264.6 265.5 266.4 267.3 268.2 269.1 270.0 270.9 271.8 272.7 273.6 274.5 275.4 276.3 277.2 278.1 279.0 279.9 280.8 281.7 282.6 283.5 284.4 285.3 286.2 287.1 288.0 288.9 289.8 290.7 291.6 292.5 293.4 294.3 295.2 296.1 297.0 297.9 +298.8 299.7 300.6 301.5 302.4 303.3 304.2 305.1 306.0 306.9 307.8 308.7 309.6 310.5 311.4 312.3 313.2 314.1 315.0 315.9 316.8 317.7 318.6 319.5 320.4 321.3 322.2 323.1 324.0 324.9 325.8 326.7 327.6 328.5 329.4 330.3 331.2 332.1 333.0 333.9 334.8 335.7 336.6 337.5 338.4 339.3 340.2 341.1 342.0 342.9 343.8 344.7 345.6 346.5 347.4 348.3 349.2 350.1 351.0 351.9 352.8 353.7 354.6 355.5 356.4 357.3 358.2 359.1 0.0 0.9 1.8 2.7 3.6 4.5 5.4 6.3 7.2 8.1 9.0 9.9 10.8 11.7 12.6 13.5 14.4 15.3 16.2 17.1 18.0 18.9 19.8 20.7 21.6 22.5 23.4 24.3 25.2 26.1 27.0 27.9 28.8 29.7 30.6 31.5 32.4 33.3 34.2 35.1 36.0 36.9 37.8 38.7 39.6 40.5 41.4 42.3 43.2 44.1 45.0 45.9 46.8 47.7 48.6 49.5 50.4 51.3 52.2 53.1 54.0 54.9 55.8 56.7 57.6 58.5 59.4 60.3 61.2 62.1 63.0 63.9 64.8 65.7 66.6 67.5 68.4 69.3 70.2 71.1 72.0 72.9 73.8 74.7 75.6 76.5 77.4 78.3 79.2 80.1 81.0 81.9 82.8 83.7 84.6 85.5 86.4 87.3 88.2 89.1 90.0 90.9 91.8 92.7 93.6 94.5 95.4 96.3 97.2 98.1 99.0 99.9 100.8 101.7 102.6 103.5 104.4 105.3 106.2 107.1 108.0 108.9 109.8 110.7 111.6 112.5 113.4 114.3 115.2 116.1 117.0 117.9 118.8 119.7 120.6 121.5 122.4 123.3 124.2 125.1 126.0 126.9 127.8 128.7 129.6 130.5 131.4 132.3 133.2 134.1 135.0 135.9 136.8 137.7 138.6 139.5 140.4 141.3 142.2 143.1 144.0 144.9 145.8 146.7 147.6 148.5 149.4 150.3 151.2 152.1 153.0 153.9 154.8 155.7 156.6 157.5 158.4 159.3 160.2 161.1 162.0 162.9 163.8 164.7 165.6 166.5 167.4 168.3 169.2 170.1 171.0 171.9 172.8 173.7 174.6 175.5 176.4 177.3 178.2 179.1 180.0 180.9 181.8 182.7 183.6 184.5 185.4 186.3 187.2 188.1 189.0 189.9 190.8 191.7 192.6 193.5 194.4 195.3 196.2 197.1 198.0 198.9 199.8 200.7 201.6 202.5 203.4 204.3 205.2 206.1 207.0 207.9 208.8 209.7 210.6 211.5 212.4 213.3 214.2 215.1 216.0 216.9 217.8 218.7 219.6 220.5 221.4 222.3 223.2 224.1 225.0 225.9 226.8 227.7 228.6 229.5 230.4 231.3 232.2 233.1 234.0 234.9 235.8 236.7 237.6 238.5 239.4 240.3 241.2 242.1 243.0 243.9 244.8 245.7 246.6 247.5 248.4 249.3 250.2 251.1 252.0 252.9 253.8 254.7 255.6 256.5 257.4 258.3 259.2 260.1 261.0 261.9 262.8 263.7 264.6 265.5 266.4 267.3 268.2 269.1 270.0 270.9 271.8 272.7 273.6 274.5 275.4 276.3 277.2 278.1 279.0 279.9 280.8 281.7 282.6 283.5 284.4 285.3 286.2 287.1 288.0 288.9 289.8 290.7 291.6 292.5 293.4 294.3 295.2 296.1 297.0 297.9 298.8 299.7 300.6 301.5 302.4 303.3 304.2 305.1 306.0 306.9 307.8 308.7 309.6 310.5 311.4 312.3 313.2 314.1 315.0 315.9 316.8 317.7 318.6 319.5 320.4 321.3 322.2 323.1 324.0 324.9 325.8 326.7 327.6 328.5 329.4 330.3 331.2 332.1 333.0 333.9 334.8 335.7 336.6 337.5 338.4 339.3 340.2 341.1 342.0 342.9 343.8 344.7 345.6 346.5 347.4 348.3 349.2 350.1 351.0 351.9 352.8 353.7 354.6 355.5 356.4 357.3 358.2 359.1 0.0 0.9 1.8 2.7 3.6 4.5 5.4 6.3 7.2 8.1 9.0 9.9 10.8 11.7 12.6 13.5 14.4 15.3 16.2 17.1 18.0 18.9 19.8 20.7 21.6 22.5 23.4 24.3 25.2 26.1 27.0 27.9 +28.8 29.7 30.6 31.5 32.4 33.3 34.2 35.1 36.0 36.9 37.8 38.7 39.6 40.5 41.4 42.3 43.2 44.1 45.0 45.9 46.8 47.7 48.6 49.5 50.4 51.3 52.2 53.1 54.0 54.9 55.8 56.7 57.6 58.5 59.4 60.3 61.2 62.1 63.0 63.9 64.8 65.7 66.6 67.5 68.4 69.3 70.2 71.1 72.0 72.9 73.8 74.7 75.6 76.5 77.4 78.3 79.2 80.1 81.0 81.9 82.8 83.7 84.6 85.5 86.4 87.3 88.2 89.1 90.0 90.9 91.8 92.7 93.6 94.5 95.4 96.3 97.2 98.1 99.0 99.9 100.8 101.7 102.6 103.5 104.4 105.3 106.2 107.1 108.0 108.9 109.8 110.7 111.6 112.5 113.4 114.3 115.2 116.1 117.0 117.9 118.8 119.7 120.6 121.5 122.4 123.3 124.2 125.1 126.0 126.9 127.8 128.7 129.6 130.5 131.4 132.3 133.2 134.1 135.0 135.9 136.8 137.7 138.6 139.5 140.4 141.3 142.2 143.1 144.0 144.9 145.8 146.7 147.6 148.5 149.4 150.3 151.2 152.1 153.0 153.9 154.8 155.7 156.6 157.5 158.4 159.3 160.2 161.1 162.0 162.9 163.8 164.7 165.6 166.5 167.4 168.3 169.2 170.1 171.0 171.9 172.8 173.7 174.6 175.5 176.4 177.3 178.2 179.1 180.0 180.9 181.8 182.7 183.6 184.5 185.4 186.3 187.2 188.1 189.0 189.9 190.8 191.7 192.6 193.5 194.4 195.3 196.2 197.1 198.0 198.9 199.8 200.7 201.6 202.5 203.4 204.3 205.2 206.1 207.0 207.9 208.8 209.7 210.6 211.5 212.4 213.3 214.2 215.1 216.0 216.9 217.8 218.7 219.6 220.5 221.4 222.3 223.2 224.1 225.0 225.9 226.8 227.7 228.6 229.5 230.4 231.3 232.2 233.1 234.0 234.9 235.8 236.7 237.6 238.5 239.4 240.3 241.2 242.1 243.0 243.9 244.8 245.7 246.6 247.5 248.4 249.3 250.2 251.1 252.0 252.9 253.8 254.7 255.6 256.5 257.4 258.3 259.2 260.1 261.0 261.9 262.8 263.7 264.6 265.5 266.4 267.3 268.2 269.1 270.0 270.9 271.8 272.7 273.6 274.5 275.4 276.3 277.2 278.1 279.0 279.9 280.8 281.7 282.6 283.5 284.4 285.3 286.2 287.1 288.0 288.9 289.8 290.7 291.6 292.5 293.4 294.3 295.2 296.1 297.0 297.9 298.8 299.7 300.6 301.5 302.4 303.3 304.2 305.1 306.0 306.9 307.8 308.7 309.6 310.5 311.4 312.3 313.2 314.1 315.0 315.9 316.8 317.7 318.6 319.5 320.4 321.3 322.2 323.1 324.0 324.9 325.8 326.7 327.6 328.5 329.4 330.3 331.2 332.1 333.0 333.9 334.8 335.7 336.6 337.5 338.4 339.3 340.2 341.1 342.0 342.9 343.8 344.7 345.6 346.5 347.4 348.3 349.2 350.1 351.0 351.9 352.8 353.7 354.6 355.5 356.4 357.3 358.2 359.1 0.0 0.9 1.8 2.7 3.6 4.5 5.4 6.3 7.2 8.1 9.0 9.9 10.8 11.7 12.6 13.5 14.4 15.3 16.2 17.1 18.0 18.9 19.8 20.7 21.6 22.5 23.4 24.3 25.2 26.1 27.0 27.9 28.8 29.7 30.6 31.5 32.4 33.3 34.2 35.1 36.0 36.9 37.8 38.7 39.6 40.5 41.4 42.3 43.2 44.1 45.0 45.9 46.8 47.7 48.6 49.5 50.4 51.3 52.2 53.1 54.0 54.9 55.8 56.7 57.6 58.5 59.4 60.3 61.2 62.1 63.0 63.9 64.8 65.7 66.6 67.5 68.4 69.3 70.2 71.1 72.0 72.9 73.8 74.7 75.6 76.5 77.4 78.3 79.2 80.1 81.0 81.9 82.8 83.7 84.6 85.5 86.4 87.3 88.2 89.1 90.0 90.9 91.8 92.7 93.6 94.5 95.4 96.3 97.2 98.1 99.0 99.9 100.8 101.7 102.6 103.5 104.4 105.3 106.2 107.1 108.0 108.9 109.8 110.7 111.6 112.5 113.4 114.3 115.2 116.1 117.0 117.9 +118.8 119.7 120.6 121.5 122.4 123.3 124.2 125.1 126.0 126.9 127.8 128.7 129.6 130.5 131.4 132.3 133.2 134.1 135.0 135.9 136.8 137.7 138.6 139.5 140.4 141.3 142.2 143.1 144.0 144.9 145.8 146.7 147.6 148.5 149.4 150.3 151.2 152.1 153.0 153.9 154.8 155.7 156.6 157.5 158.4 159.3 160.2 161.1 162.0 162.9 163.8 164.7 165.6 166.5 167.4 168.3 169.2 170.1 171.0 171.9 172.8 173.7 174.6 175.5 176.4 177.3 178.2 179.1 180.0 180.9 181.8 182.7 183.6 184.5 185.4 186.3 187.2 188.1 189.0 189.9 190.8 191.7 192.6 193.5 194.4 195.3 196.2 197.1 198.0 198.9 199.8 200.7 201.6 202.5 203.4 204.3 205.2 206.1 207.0 207.9 208.8 209.7 210.6 211.5 212.4 213.3 214.2 215.1 216.0 216.9 217.8 218.7 219.6 220.5 221.4 222.3 223.2 224.1 225.0 225.9 226.8 227.7 228.6 229.5 230.4 231.3 232.2 233.1 234.0 234.9 235.8 236.7 237.6 238.5 239.4 240.3 241.2 242.1 243.0 243.9 244.8 245.7 246.6 247.5 248.4 249.3 250.2 251.1 252.0 252.9 253.8 254.7 255.6 256.5 257.4 258.3 259.2 260.1 261.0 261.9 262.8 263.7 264.6 265.5 266.4 267.3 268.2 269.1 270.0 270.9 271.8 272.7 273.6 274.5 275.4 276.3 277.2 278.1 279.0 279.9 280.8 281.7 282.6 283.5 284.4 285.3 286.2 287.1 288.0 288.9 289.8 290.7 291.6 292.5 293.4 294.3 295.2 296.1 297.0 297.9 298.8 299.7 300.6 301.5 302.4 303.3 304.2 305.1 306.0 306.9 307.8 308.7 309.6 310.5 311.4 312.3 313.2 314.1 315.0 315.9 316.8 317.7 318.6 319.5 320.4 321.3 322.2 323.1 324.0 324.9 325.8 326.7 327.6 328.5 329.4 330.3 331.2 332.1 333.0 333.9 334.8 335.7 336.6 337.5 338.4 339.3 340.2 341.1 342.0 342.9 343.8 344.7 345.6 346.5 347.4 348.3 349.2 350.1 351.0 351.9 352.8 353.7 354.6 355.5 356.4 357.3 358.2 359.1 0.0 0.9375 1.875 2.8125 3.75 4.6875 5.625 6.5625 7.5 8.4375 9.375 10.3125 11.25 12.1875 13.125 14.0625 15.0 15.9375 16.875 17.8125 18.75 19.6875 20.625 21.5625 22.5 23.4375 24.375 25.3125 26.25 27.1875 28.125 29.0625 30.0 30.9375 31.875 32.8125 33.75 34.6875 35.625 36.5625 37.5 38.4375 39.375 40.3125 41.25 42.1875 43.125 44.0625 45.0 45.9375 46.875 47.8125 48.75 49.6875 50.625 51.5625 52.5 53.4375 54.375 55.3125 56.25 57.1875 58.125 59.0625 60.0 60.9375 61.875 62.8125 63.75 64.6875 65.625 66.5625 67.5 68.4375 69.375 70.3125 71.25 72.1875 73.125 74.0625 75.0 75.9375 76.875 77.8125 78.75 79.6875 80.625 81.5625 82.5 83.4375 84.375 85.3125 86.25 87.1875 88.125 89.0625 90.0 90.9375 91.875 92.8125 93.75 94.6875 95.625 96.5625 97.5 98.4375 99.375 100.312 101.25 102.188 103.125 104.062 105.0 105.938 106.875 107.812 108.75 109.688 110.625 111.562 112.5 113.438 114.375 115.312 116.25 117.188 118.125 119.062 120.0 120.938 121.875 122.812 123.75 124.688 125.625 126.562 127.5 128.438 129.375 130.312 131.25 132.188 133.125 134.062 135.0 135.938 136.875 137.812 138.75 139.688 140.625 141.562 142.5 143.438 144.375 145.312 146.25 147.188 148.125 149.062 150.0 150.938 151.875 152.812 153.75 154.688 155.625 156.562 157.5 158.438 159.375 160.312 161.25 162.188 163.125 164.062 165.0 165.938 166.875 167.812 168.75 169.688 170.625 171.562 172.5 173.438 174.375 175.312 176.25 177.188 178.125 179.062 180.0 180.938 181.875 182.812 183.75 184.688 185.625 186.562 187.5 188.438 189.375 190.312 191.25 192.188 193.125 194.062 195.0 195.938 196.875 197.812 198.75 199.688 200.625 201.562 202.5 203.438 204.375 205.312 206.25 207.188 208.125 209.062 210.0 210.938 211.875 212.812 213.75 214.688 215.625 216.562 +217.5 218.438 219.375 220.312 221.25 222.188 223.125 224.062 225.0 225.938 226.875 227.812 228.75 229.688 230.625 231.562 232.5 233.438 234.375 235.312 236.25 237.188 238.125 239.062 240.0 240.938 241.875 242.812 243.75 244.688 245.625 246.562 247.5 248.438 249.375 250.312 251.25 252.188 253.125 254.062 255.0 255.938 256.875 257.812 258.75 259.688 260.625 261.562 262.5 263.438 264.375 265.312 266.25 267.188 268.125 269.062 270.0 270.938 271.875 272.812 273.75 274.688 275.625 276.562 277.5 278.438 279.375 280.312 281.25 282.188 283.125 284.062 285.0 285.938 286.875 287.812 288.75 289.688 290.625 291.562 292.5 293.438 294.375 295.312 296.25 297.188 298.125 299.062 300.0 300.938 301.875 302.812 303.75 304.688 305.625 306.562 307.5 308.438 309.375 310.312 311.25 312.188 313.125 314.062 315.0 315.938 316.875 317.812 318.75 319.688 320.625 321.562 322.5 323.438 324.375 325.312 326.25 327.188 328.125 329.062 330.0 330.938 331.875 332.812 333.75 334.688 335.625 336.562 337.5 338.438 339.375 340.312 341.25 342.188 343.125 344.062 345.0 345.938 346.875 347.812 348.75 349.688 350.625 351.562 352.5 353.438 354.375 355.312 356.25 357.188 358.125 359.062 0.0 0.9375 1.875 2.8125 3.75 4.6875 5.625 6.5625 7.5 8.4375 9.375 10.3125 11.25 12.1875 13.125 14.0625 15.0 15.9375 16.875 17.8125 18.75 19.6875 20.625 21.5625 22.5 23.4375 24.375 25.3125 26.25 27.1875 28.125 29.0625 30.0 30.9375 31.875 32.8125 33.75 34.6875 35.625 36.5625 37.5 38.4375 39.375 40.3125 41.25 42.1875 43.125 44.0625 45.0 45.9375 46.875 47.8125 48.75 49.6875 50.625 51.5625 52.5 53.4375 54.375 55.3125 56.25 57.1875 58.125 59.0625 60.0 60.9375 61.875 62.8125 63.75 64.6875 65.625 66.5625 67.5 68.4375 69.375 70.3125 71.25 72.1875 73.125 74.0625 75.0 75.9375 76.875 77.8125 78.75 79.6875 80.625 81.5625 82.5 83.4375 84.375 85.3125 86.25 87.1875 88.125 89.0625 90.0 90.9375 91.875 92.8125 93.75 94.6875 95.625 96.5625 97.5 98.4375 99.375 100.312 101.25 102.188 103.125 104.062 105.0 105.938 106.875 107.812 108.75 109.688 110.625 111.562 112.5 113.438 114.375 115.312 116.25 117.188 118.125 119.062 120.0 120.938 121.875 122.812 123.75 124.688 125.625 126.562 127.5 128.438 129.375 130.312 131.25 132.188 133.125 134.062 135.0 135.938 136.875 137.812 138.75 139.688 140.625 141.562 142.5 143.438 144.375 145.312 146.25 147.188 148.125 149.062 150.0 150.938 151.875 152.812 153.75 154.688 155.625 156.562 157.5 158.438 159.375 160.312 161.25 162.188 163.125 164.062 165.0 165.938 166.875 167.812 168.75 169.688 170.625 171.562 172.5 173.438 174.375 175.312 176.25 177.188 178.125 179.062 180.0 180.938 181.875 182.812 183.75 184.688 185.625 186.562 187.5 188.438 189.375 190.312 191.25 192.188 193.125 194.062 195.0 195.938 196.875 197.812 198.75 199.688 200.625 201.562 202.5 203.438 204.375 205.312 206.25 207.188 208.125 209.062 210.0 210.938 211.875 212.812 213.75 214.688 215.625 216.562 217.5 218.438 219.375 220.312 221.25 222.188 223.125 224.062 225.0 225.938 226.875 227.812 228.75 229.688 230.625 231.562 232.5 233.438 234.375 235.312 236.25 237.188 238.125 239.062 240.0 240.938 241.875 242.812 243.75 244.688 245.625 246.562 247.5 248.438 249.375 250.312 251.25 252.188 253.125 254.062 255.0 255.938 256.875 257.812 258.75 259.688 260.625 261.562 262.5 263.438 264.375 265.312 266.25 267.188 268.125 269.062 270.0 270.938 271.875 272.812 273.75 274.688 275.625 276.562 277.5 278.438 279.375 280.312 281.25 282.188 283.125 284.062 285.0 285.938 286.875 287.812 288.75 289.688 290.625 291.562 292.5 293.438 294.375 295.312 296.25 297.188 298.125 299.062 300.0 300.938 301.875 302.812 303.75 304.688 305.625 306.562 307.5 308.438 309.375 310.312 311.25 312.188 313.125 314.062 315.0 315.938 316.875 317.812 318.75 319.688 320.625 321.562 322.5 323.438 324.375 325.312 +326.25 327.188 328.125 329.062 330.0 330.938 331.875 332.812 333.75 334.688 335.625 336.562 337.5 338.438 339.375 340.312 341.25 342.188 343.125 344.062 345.0 345.938 346.875 347.812 348.75 349.688 350.625 351.562 352.5 353.438 354.375 355.312 356.25 357.188 358.125 359.062 0.0 0.96 1.92 2.88 3.84 4.8 5.76 6.72 7.68 8.64 9.6 10.56 11.52 12.48 13.44 14.4 15.36 16.32 17.28 18.24 19.2 20.16 21.12 22.08 23.04 24.0 24.96 25.92 26.88 27.84 28.8 29.76 30.72 31.68 32.64 33.6 34.56 35.52 36.48 37.44 38.4 39.36 40.32 41.28 42.24 43.2 44.16 45.12 46.08 47.04 48.0 48.96 49.92 50.88 51.84 52.8 53.76 54.72 55.68 56.64 57.6 58.56 59.52 60.48 61.44 62.4 63.36 64.32 65.28 66.24 67.2 68.16 69.12 70.08 71.04 72.0 72.96 73.92 74.88 75.84 76.8 77.76 78.72 79.68 80.64 81.6 82.56 83.52 84.48 85.44 86.4 87.36 88.32 89.28 90.24 91.2 92.16 93.12 94.08 95.04 96.0 96.96 97.92 98.88 99.84 100.8 101.76 102.72 103.68 104.64 105.6 106.56 107.52 108.48 109.44 110.4 111.36 112.32 113.28 114.24 115.2 116.16 117.12 118.08 119.04 120.0 120.96 121.92 122.88 123.84 124.8 125.76 126.72 127.68 128.64 129.6 130.56 131.52 132.48 133.44 134.4 135.36 136.32 137.28 138.24 139.2 140.16 141.12 142.08 143.04 144.0 144.96 145.92 146.88 147.84 148.8 149.76 150.72 151.68 152.64 153.6 154.56 155.52 156.48 157.44 158.4 159.36 160.32 161.28 162.24 163.2 164.16 165.12 166.08 167.04 168.0 168.96 169.92 170.88 171.84 172.8 173.76 174.72 175.68 176.64 177.6 178.56 179.52 180.48 181.44 182.4 183.36 184.32 185.28 186.24 187.2 188.16 189.12 190.08 191.04 192.0 192.96 193.92 194.88 195.84 196.8 197.76 198.72 199.68 200.64 201.6 202.56 203.52 204.48 205.44 206.4 207.36 208.32 209.28 210.24 211.2 212.16 213.12 214.08 215.04 216.0 216.96 217.92 218.88 219.84 220.8 221.76 222.72 223.68 224.64 225.6 226.56 227.52 228.48 229.44 230.4 231.36 232.32 233.28 234.24 235.2 236.16 237.12 238.08 239.04 240.0 240.96 241.92 242.88 243.84 244.8 245.76 246.72 247.68 248.64 249.6 250.56 251.52 252.48 253.44 254.4 255.36 256.32 257.28 258.24 259.2 260.16 261.12 262.08 263.04 264.0 264.96 265.92 266.88 267.84 268.8 269.76 270.72 271.68 272.64 273.6 274.56 275.52 276.48 277.44 278.4 279.36 280.32 281.28 282.24 283.2 284.16 285.12 286.08 287.04 288.0 288.96 289.92 290.88 291.84 292.8 293.76 294.72 295.68 296.64 297.6 298.56 299.52 300.48 301.44 302.4 303.36 304.32 305.28 306.24 307.2 308.16 309.12 310.08 311.04 312.0 312.96 313.92 314.88 315.84 316.8 317.76 318.72 319.68 320.64 321.6 322.56 323.52 324.48 325.44 326.4 327.36 328.32 329.28 330.24 331.2 332.16 333.12 334.08 335.04 336.0 336.96 337.92 338.88 339.84 340.8 341.76 342.72 343.68 344.64 345.6 346.56 347.52 348.48 349.44 350.4 351.36 352.32 353.28 354.24 355.2 356.16 357.12 358.08 359.04 0.0 0.96 1.92 2.88 3.84 4.8 5.76 6.72 7.68 8.64 9.6 10.56 11.52 12.48 13.44 14.4 15.36 16.32 17.28 18.24 19.2 20.16 21.12 22.08 23.04 24.0 24.96 25.92 26.88 27.84 28.8 29.76 30.72 31.68 32.64 33.6 34.56 35.52 36.48 37.44 38.4 39.36 40.32 41.28 42.24 43.2 44.16 45.12 46.08 47.04 48.0 48.96 49.92 50.88 51.84 52.8 53.76 54.72 55.68 56.64 57.6 58.56 59.52 60.48 61.44 62.4 63.36 64.32 65.28 66.24 67.2 68.16 69.12 70.08 71.04 72.0 72.96 73.92 74.88 75.84 76.8 77.76 78.72 79.68 80.64 81.6 82.56 83.52 84.48 +85.44 86.4 87.36 88.32 89.28 90.24 91.2 92.16 93.12 94.08 95.04 96.0 96.96 97.92 98.88 99.84 100.8 101.76 102.72 103.68 104.64 105.6 106.56 107.52 108.48 109.44 110.4 111.36 112.32 113.28 114.24 115.2 116.16 117.12 118.08 119.04 120.0 120.96 121.92 122.88 123.84 124.8 125.76 126.72 127.68 128.64 129.6 130.56 131.52 132.48 133.44 134.4 135.36 136.32 137.28 138.24 139.2 140.16 141.12 142.08 143.04 144.0 144.96 145.92 146.88 147.84 148.8 149.76 150.72 151.68 152.64 153.6 154.56 155.52 156.48 157.44 158.4 159.36 160.32 161.28 162.24 163.2 164.16 165.12 166.08 167.04 168.0 168.96 169.92 170.88 171.84 172.8 173.76 174.72 175.68 176.64 177.6 178.56 179.52 180.48 181.44 182.4 183.36 184.32 185.28 186.24 187.2 188.16 189.12 190.08 191.04 192.0 192.96 193.92 194.88 195.84 196.8 197.76 198.72 199.68 200.64 201.6 202.56 203.52 204.48 205.44 206.4 207.36 208.32 209.28 210.24 211.2 212.16 213.12 214.08 215.04 216.0 216.96 217.92 218.88 219.84 220.8 221.76 222.72 223.68 224.64 225.6 226.56 227.52 228.48 229.44 230.4 231.36 232.32 233.28 234.24 235.2 236.16 237.12 238.08 239.04 240.0 240.96 241.92 242.88 243.84 244.8 245.76 246.72 247.68 248.64 249.6 250.56 251.52 252.48 253.44 254.4 255.36 256.32 257.28 258.24 259.2 260.16 261.12 262.08 263.04 264.0 264.96 265.92 266.88 267.84 268.8 269.76 270.72 271.68 272.64 273.6 274.56 275.52 276.48 277.44 278.4 279.36 280.32 281.28 282.24 283.2 284.16 285.12 286.08 287.04 288.0 288.96 289.92 290.88 291.84 292.8 293.76 294.72 295.68 296.64 297.6 298.56 299.52 300.48 301.44 302.4 303.36 304.32 305.28 306.24 307.2 308.16 309.12 310.08 311.04 312.0 312.96 313.92 314.88 315.84 316.8 317.76 318.72 319.68 320.64 321.6 322.56 323.52 324.48 325.44 326.4 327.36 328.32 329.28 330.24 331.2 332.16 333.12 334.08 335.04 336.0 336.96 337.92 338.88 339.84 340.8 341.76 342.72 343.68 344.64 345.6 346.56 347.52 348.48 349.44 350.4 351.36 352.32 353.28 354.24 355.2 356.16 357.12 358.08 359.04 0.0 0.96 1.92 2.88 3.84 4.8 5.76 6.72 7.68 8.64 9.6 10.56 11.52 12.48 13.44 14.4 15.36 16.32 17.28 18.24 19.2 20.16 21.12 22.08 23.04 24.0 24.96 25.92 26.88 27.84 28.8 29.76 30.72 31.68 32.64 33.6 34.56 35.52 36.48 37.44 38.4 39.36 40.32 41.28 42.24 43.2 44.16 45.12 46.08 47.04 48.0 48.96 49.92 50.88 51.84 52.8 53.76 54.72 55.68 56.64 57.6 58.56 59.52 60.48 61.44 62.4 63.36 64.32 65.28 66.24 67.2 68.16 69.12 70.08 71.04 72.0 72.96 73.92 74.88 75.84 76.8 77.76 78.72 79.68 80.64 81.6 82.56 83.52 84.48 85.44 86.4 87.36 88.32 89.28 90.24 91.2 92.16 93.12 94.08 95.04 96.0 96.96 97.92 98.88 99.84 100.8 101.76 102.72 103.68 104.64 105.6 106.56 107.52 108.48 109.44 110.4 111.36 112.32 113.28 114.24 115.2 116.16 117.12 118.08 119.04 120.0 120.96 121.92 122.88 123.84 124.8 125.76 126.72 127.68 128.64 129.6 130.56 131.52 132.48 133.44 134.4 135.36 136.32 137.28 138.24 139.2 140.16 141.12 142.08 143.04 144.0 144.96 145.92 146.88 147.84 148.8 149.76 150.72 151.68 152.64 153.6 154.56 155.52 156.48 157.44 158.4 159.36 160.32 161.28 162.24 163.2 164.16 165.12 166.08 167.04 168.0 168.96 169.92 170.88 171.84 172.8 173.76 174.72 175.68 176.64 177.6 178.56 179.52 180.48 181.44 182.4 183.36 184.32 185.28 186.24 187.2 188.16 189.12 190.08 191.04 192.0 192.96 193.92 194.88 195.84 196.8 197.76 198.72 199.68 200.64 201.6 202.56 203.52 204.48 +205.44 206.4 207.36 208.32 209.28 210.24 211.2 212.16 213.12 214.08 215.04 216.0 216.96 217.92 218.88 219.84 220.8 221.76 222.72 223.68 224.64 225.6 226.56 227.52 228.48 229.44 230.4 231.36 232.32 233.28 234.24 235.2 236.16 237.12 238.08 239.04 240.0 240.96 241.92 242.88 243.84 244.8 245.76 246.72 247.68 248.64 249.6 250.56 251.52 252.48 253.44 254.4 255.36 256.32 257.28 258.24 259.2 260.16 261.12 262.08 263.04 264.0 264.96 265.92 266.88 267.84 268.8 269.76 270.72 271.68 272.64 273.6 274.56 275.52 276.48 277.44 278.4 279.36 280.32 281.28 282.24 283.2 284.16 285.12 286.08 287.04 288.0 288.96 289.92 290.88 291.84 292.8 293.76 294.72 295.68 296.64 297.6 298.56 299.52 300.48 301.44 302.4 303.36 304.32 305.28 306.24 307.2 308.16 309.12 310.08 311.04 312.0 312.96 313.92 314.88 315.84 316.8 317.76 318.72 319.68 320.64 321.6 322.56 323.52 324.48 325.44 326.4 327.36 328.32 329.28 330.24 331.2 332.16 333.12 334.08 335.04 336.0 336.96 337.92 338.88 339.84 340.8 341.76 342.72 343.68 344.64 345.6 346.56 347.52 348.48 349.44 350.4 351.36 352.32 353.28 354.24 355.2 356.16 357.12 358.08 359.04 0.0 0.96 1.92 2.88 3.84 4.8 5.76 6.72 7.68 8.64 9.6 10.56 11.52 12.48 13.44 14.4 15.36 16.32 17.28 18.24 19.2 20.16 21.12 22.08 23.04 24.0 24.96 25.92 26.88 27.84 28.8 29.76 30.72 31.68 32.64 33.6 34.56 35.52 36.48 37.44 38.4 39.36 40.32 41.28 42.24 43.2 44.16 45.12 46.08 47.04 48.0 48.96 49.92 50.88 51.84 52.8 53.76 54.72 55.68 56.64 57.6 58.56 59.52 60.48 61.44 62.4 63.36 64.32 65.28 66.24 67.2 68.16 69.12 70.08 71.04 72.0 72.96 73.92 74.88 75.84 76.8 77.76 78.72 79.68 80.64 81.6 82.56 83.52 84.48 85.44 86.4 87.36 88.32 89.28 90.24 91.2 92.16 93.12 94.08 95.04 96.0 96.96 97.92 98.88 99.84 100.8 101.76 102.72 103.68 104.64 105.6 106.56 107.52 108.48 109.44 110.4 111.36 112.32 113.28 114.24 115.2 116.16 117.12 118.08 119.04 120.0 120.96 121.92 122.88 123.84 124.8 125.76 126.72 127.68 128.64 129.6 130.56 131.52 132.48 133.44 134.4 135.36 136.32 137.28 138.24 139.2 140.16 141.12 142.08 143.04 144.0 144.96 145.92 146.88 147.84 148.8 149.76 150.72 151.68 152.64 153.6 154.56 155.52 156.48 157.44 158.4 159.36 160.32 161.28 162.24 163.2 164.16 165.12 166.08 167.04 168.0 168.96 169.92 170.88 171.84 172.8 173.76 174.72 175.68 176.64 177.6 178.56 179.52 180.48 181.44 182.4 183.36 184.32 185.28 186.24 187.2 188.16 189.12 190.08 191.04 192.0 192.96 193.92 194.88 195.84 196.8 197.76 198.72 199.68 200.64 201.6 202.56 203.52 204.48 205.44 206.4 207.36 208.32 209.28 210.24 211.2 212.16 213.12 214.08 215.04 216.0 216.96 217.92 218.88 219.84 220.8 221.76 222.72 223.68 224.64 225.6 226.56 227.52 228.48 229.44 230.4 231.36 232.32 233.28 234.24 235.2 236.16 237.12 238.08 239.04 240.0 240.96 241.92 242.88 243.84 244.8 245.76 246.72 247.68 248.64 249.6 250.56 251.52 252.48 253.44 254.4 255.36 256.32 257.28 258.24 259.2 260.16 261.12 262.08 263.04 264.0 264.96 265.92 266.88 267.84 268.8 269.76 270.72 271.68 272.64 273.6 274.56 275.52 276.48 277.44 278.4 279.36 280.32 281.28 282.24 283.2 284.16 285.12 286.08 287.04 288.0 288.96 289.92 290.88 291.84 292.8 293.76 294.72 295.68 296.64 297.6 298.56 299.52 300.48 301.44 302.4 303.36 304.32 305.28 306.24 307.2 308.16 309.12 310.08 311.04 312.0 312.96 313.92 314.88 315.84 316.8 317.76 318.72 319.68 320.64 321.6 322.56 323.52 324.48 +325.44 326.4 327.36 328.32 329.28 330.24 331.2 332.16 333.12 334.08 335.04 336.0 336.96 337.92 338.88 339.84 340.8 341.76 342.72 343.68 344.64 345.6 346.56 347.52 348.48 349.44 350.4 351.36 352.32 353.28 354.24 355.2 356.16 357.12 358.08 359.04 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 +104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 +244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 +24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 +164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 125.0 126.0 127.0 128.0 129.0 130.0 131.0 132.0 133.0 134.0 135.0 136.0 137.0 138.0 139.0 140.0 141.0 142.0 143.0 144.0 145.0 146.0 147.0 148.0 149.0 150.0 151.0 152.0 153.0 154.0 155.0 156.0 157.0 158.0 159.0 160.0 161.0 162.0 163.0 164.0 165.0 166.0 167.0 168.0 169.0 170.0 171.0 172.0 173.0 174.0 175.0 176.0 177.0 178.0 179.0 180.0 181.0 182.0 183.0 184.0 185.0 186.0 187.0 188.0 189.0 190.0 191.0 192.0 193.0 194.0 195.0 196.0 197.0 198.0 199.0 200.0 201.0 202.0 203.0 204.0 205.0 206.0 207.0 208.0 209.0 210.0 211.0 212.0 213.0 214.0 215.0 216.0 217.0 218.0 219.0 220.0 221.0 222.0 223.0 224.0 225.0 226.0 227.0 228.0 229.0 230.0 231.0 232.0 233.0 234.0 235.0 236.0 237.0 238.0 239.0 240.0 241.0 242.0 243.0 244.0 245.0 246.0 247.0 248.0 249.0 250.0 251.0 252.0 253.0 254.0 255.0 256.0 257.0 258.0 259.0 260.0 261.0 262.0 263.0 264.0 265.0 266.0 267.0 268.0 269.0 270.0 271.0 272.0 273.0 274.0 275.0 276.0 277.0 278.0 279.0 280.0 281.0 282.0 283.0 284.0 285.0 286.0 287.0 288.0 289.0 290.0 291.0 292.0 293.0 294.0 295.0 296.0 297.0 298.0 299.0 300.0 301.0 302.0 303.0 +304.0 305.0 306.0 307.0 308.0 309.0 310.0 311.0 312.0 313.0 314.0 315.0 316.0 317.0 318.0 319.0 320.0 321.0 322.0 323.0 324.0 325.0 326.0 327.0 328.0 329.0 330.0 331.0 332.0 333.0 334.0 335.0 336.0 337.0 338.0 339.0 340.0 341.0 342.0 343.0 344.0 345.0 346.0 347.0 348.0 349.0 350.0 351.0 352.0 353.0 354.0 355.0 356.0 357.0 358.0 359.0 0.0 1.11111 2.22222 3.33333 4.44444 5.55556 6.66667 7.77778 8.88889 10.0 11.1111 12.2222 13.3333 14.4444 15.5556 16.6667 17.7778 18.8889 20.0 21.1111 22.2222 23.3333 24.4444 25.5556 26.6667 27.7778 28.8889 30.0 31.1111 32.2222 33.3333 34.4444 35.5556 36.6667 37.7778 38.8889 40.0 41.1111 42.2222 43.3333 44.4444 45.5556 46.6667 47.7778 48.8889 50.0 51.1111 52.2222 53.3333 54.4444 55.5556 56.6667 57.7778 58.8889 60.0 61.1111 62.2222 63.3333 64.4444 65.5556 66.6667 67.7778 68.8889 70.0 71.1111 72.2222 73.3333 74.4444 75.5556 76.6667 77.7778 78.8889 80.0 81.1111 82.2222 83.3333 84.4444 85.5556 86.6667 87.7778 88.8889 90.0 91.1111 92.2222 93.3333 94.4444 95.5556 96.6667 97.7778 98.8889 100.0 101.111 102.222 103.333 104.444 105.556 106.667 107.778 108.889 110.0 111.111 112.222 113.333 114.444 115.556 116.667 117.778 118.889 120.0 121.111 122.222 123.333 124.444 125.556 126.667 127.778 128.889 130.0 131.111 132.222 133.333 134.444 135.556 136.667 137.778 138.889 140.0 141.111 142.222 143.333 144.444 145.556 146.667 147.778 148.889 150.0 151.111 152.222 153.333 154.444 155.556 156.667 157.778 158.889 160.0 161.111 162.222 163.333 164.444 165.556 166.667 167.778 168.889 170.0 171.111 172.222 173.333 174.444 175.556 176.667 177.778 178.889 180.0 181.111 182.222 183.333 184.444 185.556 186.667 187.778 188.889 190.0 191.111 192.222 193.333 194.444 195.556 196.667 197.778 198.889 200.0 201.111 202.222 203.333 204.444 205.556 206.667 207.778 208.889 210.0 211.111 212.222 213.333 214.444 215.556 216.667 217.778 218.889 220.0 221.111 222.222 223.333 224.444 225.556 226.667 227.778 228.889 230.0 231.111 232.222 233.333 234.444 235.556 236.667 237.778 238.889 240.0 241.111 242.222 243.333 244.444 245.556 246.667 247.778 248.889 250.0 251.111 252.222 253.333 254.444 255.556 256.667 257.778 258.889 260.0 261.111 262.222 263.333 264.444 265.556 266.667 267.778 268.889 270.0 271.111 272.222 273.333 274.444 275.556 276.667 277.778 278.889 280.0 281.111 282.222 283.333 284.444 285.556 286.667 287.778 288.889 290.0 291.111 292.222 293.333 294.444 295.556 296.667 297.778 298.889 300.0 301.111 302.222 303.333 304.444 305.556 306.667 307.778 308.889 310.0 311.111 312.222 313.333 314.444 315.556 316.667 317.778 318.889 320.0 321.111 322.222 323.333 324.444 325.556 326.667 327.778 328.889 330.0 331.111 332.222 333.333 334.444 335.556 336.667 337.778 338.889 340.0 341.111 342.222 343.333 344.444 345.556 346.667 347.778 348.889 350.0 351.111 352.222 353.333 354.444 355.556 356.667 357.778 358.889 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 +135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 +337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.125 2.25 3.375 4.5 5.625 6.75 7.875 9.0 10.125 11.25 12.375 13.5 14.625 15.75 16.875 18.0 19.125 20.25 21.375 22.5 23.625 24.75 25.875 27.0 28.125 29.25 30.375 31.5 32.625 33.75 34.875 36.0 37.125 38.25 39.375 40.5 41.625 42.75 43.875 45.0 46.125 47.25 48.375 49.5 50.625 51.75 52.875 54.0 55.125 56.25 57.375 58.5 59.625 60.75 61.875 63.0 64.125 65.25 66.375 67.5 68.625 69.75 70.875 72.0 73.125 74.25 75.375 76.5 77.625 78.75 79.875 81.0 82.125 83.25 84.375 85.5 86.625 87.75 88.875 90.0 91.125 92.25 93.375 94.5 95.625 96.75 97.875 99.0 100.125 101.25 102.375 103.5 104.625 105.75 106.875 108.0 109.125 110.25 111.375 112.5 113.625 114.75 115.875 117.0 118.125 119.25 120.375 121.5 122.625 123.75 124.875 126.0 127.125 128.25 129.375 130.5 131.625 132.75 133.875 135.0 136.125 137.25 138.375 139.5 140.625 141.75 142.875 144.0 145.125 146.25 147.375 148.5 149.625 150.75 151.875 153.0 154.125 155.25 156.375 157.5 158.625 159.75 160.875 162.0 163.125 164.25 165.375 166.5 167.625 168.75 169.875 171.0 172.125 173.25 174.375 175.5 176.625 177.75 178.875 +180.0 181.125 182.25 183.375 184.5 185.625 186.75 187.875 189.0 190.125 191.25 192.375 193.5 194.625 195.75 196.875 198.0 199.125 200.25 201.375 202.5 203.625 204.75 205.875 207.0 208.125 209.25 210.375 211.5 212.625 213.75 214.875 216.0 217.125 218.25 219.375 220.5 221.625 222.75 223.875 225.0 226.125 227.25 228.375 229.5 230.625 231.75 232.875 234.0 235.125 236.25 237.375 238.5 239.625 240.75 241.875 243.0 244.125 245.25 246.375 247.5 248.625 249.75 250.875 252.0 253.125 254.25 255.375 256.5 257.625 258.75 259.875 261.0 262.125 263.25 264.375 265.5 266.625 267.75 268.875 270.0 271.125 272.25 273.375 274.5 275.625 276.75 277.875 279.0 280.125 281.25 282.375 283.5 284.625 285.75 286.875 288.0 289.125 290.25 291.375 292.5 293.625 294.75 295.875 297.0 298.125 299.25 300.375 301.5 302.625 303.75 304.875 306.0 307.125 308.25 309.375 310.5 311.625 312.75 313.875 315.0 316.125 317.25 318.375 319.5 320.625 321.75 322.875 324.0 325.125 326.25 327.375 328.5 329.625 330.75 331.875 333.0 334.125 335.25 336.375 337.5 338.625 339.75 340.875 342.0 343.125 344.25 345.375 346.5 347.625 348.75 349.875 351.0 352.125 353.25 354.375 355.5 356.625 357.75 358.875 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.2 2.4 3.6 4.8 6.0 7.2 8.4 9.6 10.8 12.0 13.2 14.4 15.6 16.8 18.0 19.2 20.4 21.6 22.8 24.0 25.2 26.4 27.6 28.8 30.0 31.2 32.4 33.6 34.8 36.0 37.2 38.4 39.6 40.8 42.0 43.2 44.4 45.6 46.8 +48.0 49.2 50.4 51.6 52.8 54.0 55.2 56.4 57.6 58.8 60.0 61.2 62.4 63.6 64.8 66.0 67.2 68.4 69.6 70.8 72.0 73.2 74.4 75.6 76.8 78.0 79.2 80.4 81.6 82.8 84.0 85.2 86.4 87.6 88.8 90.0 91.2 92.4 93.6 94.8 96.0 97.2 98.4 99.6 100.8 102.0 103.2 104.4 105.6 106.8 108.0 109.2 110.4 111.6 112.8 114.0 115.2 116.4 117.6 118.8 120.0 121.2 122.4 123.6 124.8 126.0 127.2 128.4 129.6 130.8 132.0 133.2 134.4 135.6 136.8 138.0 139.2 140.4 141.6 142.8 144.0 145.2 146.4 147.6 148.8 150.0 151.2 152.4 153.6 154.8 156.0 157.2 158.4 159.6 160.8 162.0 163.2 164.4 165.6 166.8 168.0 169.2 170.4 171.6 172.8 174.0 175.2 176.4 177.6 178.8 180.0 181.2 182.4 183.6 184.8 186.0 187.2 188.4 189.6 190.8 192.0 193.2 194.4 195.6 196.8 198.0 199.2 200.4 201.6 202.8 204.0 205.2 206.4 207.6 208.8 210.0 211.2 212.4 213.6 214.8 216.0 217.2 218.4 219.6 220.8 222.0 223.2 224.4 225.6 226.8 228.0 229.2 230.4 231.6 232.8 234.0 235.2 236.4 237.6 238.8 240.0 241.2 242.4 243.6 244.8 246.0 247.2 248.4 249.6 250.8 252.0 253.2 254.4 255.6 256.8 258.0 259.2 260.4 261.6 262.8 264.0 265.2 266.4 267.6 268.8 270.0 271.2 272.4 273.6 274.8 276.0 277.2 278.4 279.6 280.8 282.0 283.2 284.4 285.6 286.8 288.0 289.2 290.4 291.6 292.8 294.0 295.2 296.4 297.6 298.8 300.0 301.2 302.4 303.6 304.8 306.0 307.2 308.4 309.6 310.8 312.0 313.2 314.4 315.6 316.8 318.0 319.2 320.4 321.6 322.8 324.0 325.2 326.4 327.6 328.8 330.0 331.2 332.4 333.6 334.8 336.0 337.2 338.4 339.6 340.8 342.0 343.2 344.4 345.6 346.8 348.0 349.2 350.4 351.6 352.8 354.0 355.2 356.4 357.6 358.8 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 +300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.25 2.5 3.75 5.0 6.25 7.5 8.75 10.0 11.25 12.5 13.75 15.0 16.25 17.5 18.75 20.0 21.25 22.5 23.75 25.0 26.25 27.5 28.75 30.0 31.25 32.5 33.75 35.0 36.25 37.5 38.75 40.0 41.25 42.5 43.75 45.0 46.25 47.5 48.75 50.0 51.25 52.5 53.75 55.0 56.25 57.5 58.75 60.0 61.25 62.5 63.75 65.0 66.25 67.5 68.75 70.0 71.25 72.5 73.75 75.0 76.25 77.5 78.75 80.0 81.25 82.5 83.75 85.0 86.25 87.5 88.75 90.0 91.25 92.5 93.75 95.0 96.25 97.5 98.75 100.0 101.25 102.5 103.75 105.0 106.25 107.5 108.75 110.0 111.25 112.5 113.75 115.0 116.25 117.5 118.75 120.0 121.25 122.5 123.75 125.0 126.25 127.5 128.75 130.0 131.25 132.5 133.75 135.0 136.25 137.5 138.75 140.0 141.25 142.5 143.75 145.0 146.25 147.5 148.75 150.0 151.25 152.5 153.75 155.0 156.25 157.5 158.75 160.0 161.25 162.5 163.75 165.0 166.25 167.5 168.75 170.0 171.25 172.5 173.75 175.0 176.25 177.5 178.75 180.0 181.25 182.5 183.75 185.0 186.25 187.5 188.75 190.0 191.25 192.5 193.75 195.0 196.25 197.5 198.75 200.0 201.25 202.5 203.75 +205.0 206.25 207.5 208.75 210.0 211.25 212.5 213.75 215.0 216.25 217.5 218.75 220.0 221.25 222.5 223.75 225.0 226.25 227.5 228.75 230.0 231.25 232.5 233.75 235.0 236.25 237.5 238.75 240.0 241.25 242.5 243.75 245.0 246.25 247.5 248.75 250.0 251.25 252.5 253.75 255.0 256.25 257.5 258.75 260.0 261.25 262.5 263.75 265.0 266.25 267.5 268.75 270.0 271.25 272.5 273.75 275.0 276.25 277.5 278.75 280.0 281.25 282.5 283.75 285.0 286.25 287.5 288.75 290.0 291.25 292.5 293.75 295.0 296.25 297.5 298.75 300.0 301.25 302.5 303.75 305.0 306.25 307.5 308.75 310.0 311.25 312.5 313.75 315.0 316.25 317.5 318.75 320.0 321.25 322.5 323.75 325.0 326.25 327.5 328.75 330.0 331.25 332.5 333.75 335.0 336.25 337.5 338.75 340.0 341.25 342.5 343.75 345.0 346.25 347.5 348.75 350.0 351.25 352.5 353.75 355.0 356.25 357.5 358.75 0.0 1.33333 2.66667 4.0 5.33333 6.66667 8.0 9.33333 10.6667 12.0 13.3333 14.6667 16.0 17.3333 18.6667 20.0 21.3333 22.6667 24.0 25.3333 26.6667 28.0 29.3333 30.6667 32.0 33.3333 34.6667 36.0 37.3333 38.6667 40.0 41.3333 42.6667 44.0 45.3333 46.6667 48.0 49.3333 50.6667 52.0 53.3333 54.6667 56.0 57.3333 58.6667 60.0 61.3333 62.6667 64.0 65.3333 66.6667 68.0 69.3333 70.6667 72.0 73.3333 74.6667 76.0 77.3333 78.6667 80.0 81.3333 82.6667 84.0 85.3333 86.6667 88.0 89.3333 90.6667 92.0 93.3333 94.6667 96.0 97.3333 98.6667 100.0 101.333 102.667 104.0 105.333 106.667 108.0 109.333 110.667 112.0 113.333 114.667 116.0 117.333 118.667 120.0 121.333 122.667 124.0 125.333 126.667 128.0 129.333 130.667 132.0 133.333 134.667 136.0 137.333 138.667 140.0 141.333 142.667 144.0 145.333 146.667 148.0 149.333 150.667 152.0 153.333 154.667 156.0 157.333 158.667 160.0 161.333 162.667 164.0 165.333 166.667 168.0 169.333 170.667 172.0 173.333 174.667 176.0 177.333 178.667 180.0 181.333 182.667 184.0 185.333 186.667 188.0 189.333 190.667 192.0 193.333 194.667 196.0 197.333 198.667 200.0 201.333 202.667 204.0 205.333 206.667 208.0 209.333 210.667 212.0 213.333 214.667 216.0 217.333 218.667 220.0 221.333 222.667 224.0 225.333 226.667 228.0 229.333 230.667 232.0 233.333 234.667 236.0 237.333 238.667 240.0 241.333 242.667 244.0 245.333 246.667 248.0 249.333 250.667 252.0 253.333 254.667 256.0 257.333 258.667 260.0 261.333 262.667 264.0 265.333 266.667 268.0 269.333 270.667 272.0 273.333 274.667 276.0 277.333 278.667 280.0 281.333 282.667 284.0 285.333 286.667 288.0 289.333 290.667 292.0 293.333 294.667 296.0 297.333 298.667 300.0 301.333 302.667 304.0 305.333 306.667 308.0 309.333 310.667 312.0 313.333 314.667 316.0 317.333 318.667 320.0 321.333 322.667 324.0 325.333 326.667 328.0 329.333 330.667 332.0 333.333 334.667 336.0 337.333 338.667 340.0 341.333 342.667 344.0 345.333 346.667 348.0 349.333 350.667 352.0 353.333 354.667 356.0 357.333 358.667 0.0 1.33333 2.66667 4.0 5.33333 6.66667 8.0 9.33333 10.6667 12.0 13.3333 14.6667 16.0 17.3333 18.6667 20.0 21.3333 22.6667 24.0 25.3333 26.6667 28.0 29.3333 30.6667 32.0 33.3333 34.6667 36.0 37.3333 38.6667 40.0 41.3333 42.6667 44.0 45.3333 46.6667 48.0 49.3333 50.6667 52.0 53.3333 54.6667 56.0 57.3333 58.6667 60.0 61.3333 62.6667 64.0 65.3333 66.6667 68.0 69.3333 70.6667 72.0 73.3333 74.6667 76.0 77.3333 78.6667 80.0 81.3333 82.6667 84.0 85.3333 86.6667 88.0 89.3333 90.6667 92.0 93.3333 94.6667 96.0 97.3333 98.6667 100.0 101.333 102.667 104.0 105.333 106.667 108.0 109.333 110.667 112.0 113.333 114.667 116.0 117.333 118.667 120.0 121.333 122.667 124.0 125.333 126.667 128.0 129.333 130.667 132.0 133.333 134.667 136.0 137.333 138.667 140.0 +141.333 142.667 144.0 145.333 146.667 148.0 149.333 150.667 152.0 153.333 154.667 156.0 157.333 158.667 160.0 161.333 162.667 164.0 165.333 166.667 168.0 169.333 170.667 172.0 173.333 174.667 176.0 177.333 178.667 180.0 181.333 182.667 184.0 185.333 186.667 188.0 189.333 190.667 192.0 193.333 194.667 196.0 197.333 198.667 200.0 201.333 202.667 204.0 205.333 206.667 208.0 209.333 210.667 212.0 213.333 214.667 216.0 217.333 218.667 220.0 221.333 222.667 224.0 225.333 226.667 228.0 229.333 230.667 232.0 233.333 234.667 236.0 237.333 238.667 240.0 241.333 242.667 244.0 245.333 246.667 248.0 249.333 250.667 252.0 253.333 254.667 256.0 257.333 258.667 260.0 261.333 262.667 264.0 265.333 266.667 268.0 269.333 270.667 272.0 273.333 274.667 276.0 277.333 278.667 280.0 281.333 282.667 284.0 285.333 286.667 288.0 289.333 290.667 292.0 293.333 294.667 296.0 297.333 298.667 300.0 301.333 302.667 304.0 305.333 306.667 308.0 309.333 310.667 312.0 313.333 314.667 316.0 317.333 318.667 320.0 321.333 322.667 324.0 325.333 326.667 328.0 329.333 330.667 332.0 333.333 334.667 336.0 337.333 338.667 340.0 341.333 342.667 344.0 345.333 346.667 348.0 349.333 350.667 352.0 353.333 354.667 356.0 357.333 358.667 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.6562 14.0625 15.4688 16.875 18.2812 19.6875 21.0938 22.5 23.9062 25.3125 26.7188 28.125 29.5312 30.9375 32.3438 33.75 35.1562 36.5625 37.9688 39.375 40.7812 42.1875 43.5938 45.0 46.4062 47.8125 49.2188 50.625 52.0312 53.4375 54.8438 56.25 57.6562 59.0625 60.4688 61.875 63.2812 64.6875 66.0938 67.5 68.9062 70.3125 71.7188 73.125 74.5312 75.9375 77.3438 78.75 80.1562 81.5625 82.9688 84.375 85.7812 87.1875 88.5938 90.0 91.4062 92.8125 94.2188 95.625 97.0312 98.4375 99.8438 101.25 102.656 104.062 105.469 106.875 108.281 109.688 111.094 112.5 113.906 115.312 116.719 118.125 119.531 120.938 122.344 123.75 125.156 126.562 127.969 129.375 130.781 132.188 133.594 135.0 136.406 137.812 139.219 140.625 142.031 143.438 144.844 146.25 147.656 149.062 150.469 151.875 153.281 154.688 156.094 157.5 158.906 160.312 161.719 163.125 164.531 165.938 167.344 168.75 170.156 171.562 172.969 174.375 175.781 177.188 178.594 180.0 181.406 182.812 184.219 185.625 187.031 188.438 189.844 191.25 192.656 194.062 195.469 196.875 198.281 199.688 201.094 202.5 203.906 205.312 206.719 208.125 209.531 210.938 212.344 213.75 215.156 216.562 217.969 219.375 220.781 222.188 223.594 225.0 226.406 227.812 229.219 230.625 232.031 233.438 234.844 236.25 237.656 239.062 240.469 241.875 243.281 244.688 246.094 247.5 248.906 250.312 251.719 253.125 254.531 255.938 257.344 258.75 260.156 261.562 262.969 264.375 265.781 267.188 268.594 270.0 271.406 272.812 274.219 275.625 277.031 278.438 279.844 281.25 282.656 284.062 285.469 286.875 288.281 289.688 291.094 292.5 293.906 295.312 296.719 298.125 299.531 300.938 302.344 303.75 305.156 306.562 307.969 309.375 310.781 312.188 313.594 315.0 316.406 317.812 319.219 320.625 322.031 323.438 324.844 326.25 327.656 329.062 330.469 331.875 333.281 334.688 336.094 337.5 338.906 340.312 341.719 343.125 344.531 345.938 347.344 348.75 350.156 351.562 352.969 354.375 355.781 357.188 358.594 0.0 1.44 2.88 4.32 5.76 7.2 8.64 10.08 11.52 12.96 14.4 15.84 17.28 18.72 20.16 21.6 23.04 24.48 25.92 27.36 28.8 30.24 31.68 33.12 34.56 36.0 37.44 38.88 40.32 41.76 43.2 44.64 46.08 47.52 48.96 50.4 51.84 53.28 54.72 56.16 57.6 59.04 60.48 61.92 63.36 64.8 66.24 67.68 69.12 70.56 72.0 73.44 74.88 76.32 77.76 79.2 80.64 82.08 83.52 84.96 86.4 87.84 89.28 90.72 92.16 93.6 95.04 96.48 97.92 99.36 100.8 102.24 103.68 105.12 106.56 108.0 109.44 110.88 112.32 113.76 +115.2 116.64 118.08 119.52 120.96 122.4 123.84 125.28 126.72 128.16 129.6 131.04 132.48 133.92 135.36 136.8 138.24 139.68 141.12 142.56 144.0 145.44 146.88 148.32 149.76 151.2 152.64 154.08 155.52 156.96 158.4 159.84 161.28 162.72 164.16 165.6 167.04 168.48 169.92 171.36 172.8 174.24 175.68 177.12 178.56 180.0 181.44 182.88 184.32 185.76 187.2 188.64 190.08 191.52 192.96 194.4 195.84 197.28 198.72 200.16 201.6 203.04 204.48 205.92 207.36 208.8 210.24 211.68 213.12 214.56 216.0 217.44 218.88 220.32 221.76 223.2 224.64 226.08 227.52 228.96 230.4 231.84 233.28 234.72 236.16 237.6 239.04 240.48 241.92 243.36 244.8 246.24 247.68 249.12 250.56 252.0 253.44 254.88 256.32 257.76 259.2 260.64 262.08 263.52 264.96 266.4 267.84 269.28 270.72 272.16 273.6 275.04 276.48 277.92 279.36 280.8 282.24 283.68 285.12 286.56 288.0 289.44 290.88 292.32 293.76 295.2 296.64 298.08 299.52 300.96 302.4 303.84 305.28 306.72 308.16 309.6 311.04 312.48 313.92 315.36 316.8 318.24 319.68 321.12 322.56 324.0 325.44 326.88 328.32 329.76 331.2 332.64 334.08 335.52 336.96 338.4 339.84 341.28 342.72 344.16 345.6 347.04 348.48 349.92 351.36 352.8 354.24 355.68 357.12 358.56 0.0 1.44 2.88 4.32 5.76 7.2 8.64 10.08 11.52 12.96 14.4 15.84 17.28 18.72 20.16 21.6 23.04 24.48 25.92 27.36 28.8 30.24 31.68 33.12 34.56 36.0 37.44 38.88 40.32 41.76 43.2 44.64 46.08 47.52 48.96 50.4 51.84 53.28 54.72 56.16 57.6 59.04 60.48 61.92 63.36 64.8 66.24 67.68 69.12 70.56 72.0 73.44 74.88 76.32 77.76 79.2 80.64 82.08 83.52 84.96 86.4 87.84 89.28 90.72 92.16 93.6 95.04 96.48 97.92 99.36 100.8 102.24 103.68 105.12 106.56 108.0 109.44 110.88 112.32 113.76 115.2 116.64 118.08 119.52 120.96 122.4 123.84 125.28 126.72 128.16 129.6 131.04 132.48 133.92 135.36 136.8 138.24 139.68 141.12 142.56 144.0 145.44 146.88 148.32 149.76 151.2 152.64 154.08 155.52 156.96 158.4 159.84 161.28 162.72 164.16 165.6 167.04 168.48 169.92 171.36 172.8 174.24 175.68 177.12 178.56 180.0 181.44 182.88 184.32 185.76 187.2 188.64 190.08 191.52 192.96 194.4 195.84 197.28 198.72 200.16 201.6 203.04 204.48 205.92 207.36 208.8 210.24 211.68 213.12 214.56 216.0 217.44 218.88 220.32 221.76 223.2 224.64 226.08 227.52 228.96 230.4 231.84 233.28 234.72 236.16 237.6 239.04 240.48 241.92 243.36 244.8 246.24 247.68 249.12 250.56 252.0 253.44 254.88 256.32 257.76 259.2 260.64 262.08 263.52 264.96 266.4 267.84 269.28 270.72 272.16 273.6 275.04 276.48 277.92 279.36 280.8 282.24 283.68 285.12 286.56 288.0 289.44 290.88 292.32 293.76 295.2 296.64 298.08 299.52 300.96 302.4 303.84 305.28 306.72 308.16 309.6 311.04 312.48 313.92 315.36 316.8 318.24 319.68 321.12 322.56 324.0 325.44 326.88 328.32 329.76 331.2 332.64 334.08 335.52 336.96 338.4 339.84 341.28 342.72 344.16 345.6 347.04 348.48 349.92 351.36 352.8 354.24 355.68 357.12 358.56 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 +120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.5 3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5 15.0 16.5 18.0 19.5 21.0 22.5 24.0 25.5 27.0 28.5 30.0 31.5 33.0 34.5 36.0 37.5 39.0 40.5 42.0 43.5 45.0 46.5 48.0 49.5 51.0 52.5 54.0 55.5 57.0 58.5 60.0 61.5 63.0 64.5 66.0 67.5 69.0 70.5 72.0 73.5 75.0 76.5 78.0 79.5 81.0 82.5 84.0 85.5 87.0 88.5 90.0 91.5 93.0 94.5 96.0 97.5 99.0 100.5 102.0 103.5 105.0 106.5 108.0 109.5 111.0 112.5 114.0 115.5 117.0 118.5 120.0 121.5 123.0 124.5 126.0 127.5 129.0 130.5 132.0 133.5 135.0 136.5 138.0 139.5 141.0 142.5 144.0 145.5 147.0 148.5 +150.0 151.5 153.0 154.5 156.0 157.5 159.0 160.5 162.0 163.5 165.0 166.5 168.0 169.5 171.0 172.5 174.0 175.5 177.0 178.5 180.0 181.5 183.0 184.5 186.0 187.5 189.0 190.5 192.0 193.5 195.0 196.5 198.0 199.5 201.0 202.5 204.0 205.5 207.0 208.5 210.0 211.5 213.0 214.5 216.0 217.5 219.0 220.5 222.0 223.5 225.0 226.5 228.0 229.5 231.0 232.5 234.0 235.5 237.0 238.5 240.0 241.5 243.0 244.5 246.0 247.5 249.0 250.5 252.0 253.5 255.0 256.5 258.0 259.5 261.0 262.5 264.0 265.5 267.0 268.5 270.0 271.5 273.0 274.5 276.0 277.5 279.0 280.5 282.0 283.5 285.0 286.5 288.0 289.5 291.0 292.5 294.0 295.5 297.0 298.5 300.0 301.5 303.0 304.5 306.0 307.5 309.0 310.5 312.0 313.5 315.0 316.5 318.0 319.5 321.0 322.5 324.0 325.5 327.0 328.5 330.0 331.5 333.0 334.5 336.0 337.5 339.0 340.5 342.0 343.5 345.0 346.5 348.0 349.5 351.0 352.5 354.0 355.5 357.0 358.5 0.0 1.6 3.2 4.8 6.4 8.0 9.6 11.2 12.8 14.4 16.0 17.6 19.2 20.8 22.4 24.0 25.6 27.2 28.8 30.4 32.0 33.6 35.2 36.8 38.4 40.0 41.6 43.2 44.8 46.4 48.0 49.6 51.2 52.8 54.4 56.0 57.6 59.2 60.8 62.4 64.0 65.6 67.2 68.8 70.4 72.0 73.6 75.2 76.8 78.4 80.0 81.6 83.2 84.8 86.4 88.0 89.6 91.2 92.8 94.4 96.0 97.6 99.2 100.8 102.4 104.0 105.6 107.2 108.8 110.4 112.0 113.6 115.2 116.8 118.4 120.0 121.6 123.2 124.8 126.4 128.0 129.6 131.2 132.8 134.4 136.0 137.6 139.2 140.8 142.4 144.0 145.6 147.2 148.8 150.4 152.0 153.6 155.2 156.8 158.4 160.0 161.6 163.2 164.8 166.4 168.0 169.6 171.2 172.8 174.4 176.0 177.6 179.2 180.8 182.4 184.0 185.6 187.2 188.8 190.4 192.0 193.6 195.2 196.8 198.4 200.0 201.6 203.2 204.8 206.4 208.0 209.6 211.2 212.8 214.4 216.0 217.6 219.2 220.8 222.4 224.0 225.6 227.2 228.8 230.4 232.0 233.6 235.2 236.8 238.4 240.0 241.6 243.2 244.8 246.4 248.0 249.6 251.2 252.8 254.4 256.0 257.6 259.2 260.8 262.4 264.0 265.6 267.2 268.8 270.4 272.0 273.6 275.2 276.8 278.4 280.0 281.6 283.2 284.8 286.4 288.0 289.6 291.2 292.8 294.4 296.0 297.6 299.2 300.8 302.4 304.0 305.6 307.2 308.8 310.4 312.0 313.6 315.2 316.8 318.4 320.0 321.6 323.2 324.8 326.4 328.0 329.6 331.2 332.8 334.4 336.0 337.6 339.2 340.8 342.4 344.0 345.6 347.2 348.8 350.4 352.0 353.6 355.2 356.8 358.4 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 +225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.66667 3.33333 5.0 6.66667 8.33333 10.0 11.6667 13.3333 15.0 16.6667 18.3333 20.0 21.6667 23.3333 25.0 26.6667 28.3333 30.0 31.6667 33.3333 35.0 36.6667 38.3333 40.0 41.6667 43.3333 45.0 46.6667 48.3333 50.0 51.6667 53.3333 55.0 56.6667 58.3333 60.0 61.6667 63.3333 65.0 66.6667 68.3333 70.0 71.6667 73.3333 75.0 76.6667 78.3333 80.0 81.6667 83.3333 85.0 86.6667 88.3333 90.0 91.6667 93.3333 95.0 96.6667 98.3333 100.0 101.667 103.333 105.0 106.667 108.333 110.0 111.667 113.333 115.0 116.667 118.333 120.0 121.667 123.333 125.0 126.667 128.333 130.0 131.667 133.333 135.0 136.667 138.333 140.0 141.667 143.333 145.0 146.667 148.333 150.0 151.667 153.333 155.0 156.667 158.333 160.0 161.667 163.333 165.0 166.667 168.333 170.0 171.667 173.333 175.0 176.667 178.333 180.0 181.667 183.333 185.0 186.667 188.333 190.0 191.667 193.333 195.0 196.667 198.333 200.0 201.667 203.333 205.0 206.667 208.333 210.0 211.667 213.333 215.0 216.667 218.333 220.0 221.667 223.333 225.0 226.667 228.333 230.0 231.667 233.333 235.0 236.667 238.333 240.0 241.667 243.333 245.0 246.667 248.333 250.0 251.667 253.333 255.0 256.667 258.333 260.0 261.667 263.333 265.0 266.667 268.333 270.0 271.667 273.333 275.0 276.667 278.333 280.0 281.667 283.333 285.0 286.667 288.333 290.0 291.667 293.333 295.0 296.667 298.333 300.0 301.667 303.333 305.0 306.667 308.333 310.0 311.667 313.333 315.0 316.667 318.333 320.0 321.667 323.333 325.0 326.667 328.333 330.0 331.667 333.333 335.0 336.667 +338.333 340.0 341.667 343.333 345.0 346.667 348.333 350.0 351.667 353.333 355.0 356.667 358.333 0.0 1.8 3.6 5.4 7.2 9.0 10.8 12.6 14.4 16.2 18.0 19.8 21.6 23.4 25.2 27.0 28.8 30.6 32.4 34.2 36.0 37.8 39.6 41.4 43.2 45.0 46.8 48.6 50.4 52.2 54.0 55.8 57.6 59.4 61.2 63.0 64.8 66.6 68.4 70.2 72.0 73.8 75.6 77.4 79.2 81.0 82.8 84.6 86.4 88.2 90.0 91.8 93.6 95.4 97.2 99.0 100.8 102.6 104.4 106.2 108.0 109.8 111.6 113.4 115.2 117.0 118.8 120.6 122.4 124.2 126.0 127.8 129.6 131.4 133.2 135.0 136.8 138.6 140.4 142.2 144.0 145.8 147.6 149.4 151.2 153.0 154.8 156.6 158.4 160.2 162.0 163.8 165.6 167.4 169.2 171.0 172.8 174.6 176.4 178.2 180.0 181.8 183.6 185.4 187.2 189.0 190.8 192.6 194.4 196.2 198.0 199.8 201.6 203.4 205.2 207.0 208.8 210.6 212.4 214.2 216.0 217.8 219.6 221.4 223.2 225.0 226.8 228.6 230.4 232.2 234.0 235.8 237.6 239.4 241.2 243.0 244.8 246.6 248.4 250.2 252.0 253.8 255.6 257.4 259.2 261.0 262.8 264.6 266.4 268.2 270.0 271.8 273.6 275.4 277.2 279.0 280.8 282.6 284.4 286.2 288.0 289.8 291.6 293.4 295.2 297.0 298.8 300.6 302.4 304.2 306.0 307.8 309.6 311.4 313.2 315.0 316.8 318.6 320.4 322.2 324.0 325.8 327.6 329.4 331.2 333.0 334.8 336.6 338.4 340.2 342.0 343.8 345.6 347.4 349.2 351.0 352.8 354.6 356.4 358.2 0.0 1.875 3.75 5.625 7.5 9.375 11.25 13.125 15.0 16.875 18.75 20.625 22.5 24.375 26.25 28.125 30.0 31.875 33.75 35.625 37.5 39.375 41.25 43.125 45.0 46.875 48.75 50.625 52.5 54.375 56.25 58.125 60.0 61.875 63.75 65.625 67.5 69.375 71.25 73.125 75.0 76.875 78.75 80.625 82.5 84.375 86.25 88.125 90.0 91.875 93.75 95.625 97.5 99.375 101.25 103.125 105.0 106.875 108.75 110.625 112.5 114.375 116.25 118.125 120.0 121.875 123.75 125.625 127.5 129.375 131.25 133.125 135.0 136.875 138.75 140.625 142.5 144.375 146.25 148.125 150.0 151.875 153.75 155.625 157.5 159.375 161.25 163.125 165.0 166.875 168.75 170.625 172.5 174.375 176.25 178.125 180.0 181.875 183.75 185.625 187.5 189.375 191.25 193.125 195.0 196.875 198.75 200.625 202.5 204.375 206.25 208.125 210.0 211.875 213.75 215.625 217.5 219.375 221.25 223.125 225.0 226.875 228.75 230.625 232.5 234.375 236.25 238.125 240.0 241.875 243.75 245.625 247.5 249.375 251.25 253.125 255.0 256.875 258.75 260.625 262.5 264.375 266.25 268.125 270.0 271.875 273.75 275.625 277.5 279.375 281.25 283.125 285.0 286.875 288.75 290.625 292.5 294.375 296.25 298.125 300.0 301.875 303.75 305.625 307.5 309.375 311.25 313.125 315.0 316.875 318.75 320.625 322.5 324.375 326.25 328.125 330.0 331.875 333.75 335.625 337.5 339.375 341.25 343.125 345.0 346.875 348.75 350.625 352.5 354.375 356.25 358.125 0.0 1.875 3.75 5.625 7.5 9.375 11.25 13.125 15.0 16.875 18.75 20.625 22.5 24.375 26.25 28.125 30.0 31.875 33.75 35.625 37.5 39.375 41.25 43.125 45.0 46.875 48.75 50.625 52.5 54.375 56.25 58.125 60.0 61.875 63.75 65.625 67.5 69.375 71.25 73.125 75.0 76.875 78.75 80.625 82.5 84.375 86.25 88.125 90.0 91.875 93.75 95.625 97.5 99.375 101.25 103.125 105.0 106.875 108.75 110.625 112.5 114.375 116.25 118.125 120.0 121.875 123.75 125.625 127.5 129.375 131.25 133.125 135.0 136.875 138.75 140.625 142.5 144.375 146.25 148.125 150.0 151.875 153.75 155.625 157.5 159.375 161.25 163.125 165.0 166.875 168.75 170.625 172.5 174.375 176.25 +178.125 180.0 181.875 183.75 185.625 187.5 189.375 191.25 193.125 195.0 196.875 198.75 200.625 202.5 204.375 206.25 208.125 210.0 211.875 213.75 215.625 217.5 219.375 221.25 223.125 225.0 226.875 228.75 230.625 232.5 234.375 236.25 238.125 240.0 241.875 243.75 245.625 247.5 249.375 251.25 253.125 255.0 256.875 258.75 260.625 262.5 264.375 266.25 268.125 270.0 271.875 273.75 275.625 277.5 279.375 281.25 283.125 285.0 286.875 288.75 290.625 292.5 294.375 296.25 298.125 300.0 301.875 303.75 305.625 307.5 309.375 311.25 313.125 315.0 316.875 318.75 320.625 322.5 324.375 326.25 328.125 330.0 331.875 333.75 335.625 337.5 339.375 341.25 343.125 345.0 346.875 348.75 350.625 352.5 354.375 356.25 358.125 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 16.0 18.0 20.0 22.0 24.0 26.0 28.0 30.0 32.0 34.0 36.0 38.0 40.0 42.0 44.0 46.0 48.0 50.0 52.0 54.0 56.0 58.0 60.0 62.0 64.0 66.0 68.0 70.0 72.0 74.0 76.0 78.0 80.0 82.0 84.0 +86.0 88.0 90.0 92.0 94.0 96.0 98.0 100.0 102.0 104.0 106.0 108.0 110.0 112.0 114.0 116.0 118.0 120.0 122.0 124.0 126.0 128.0 130.0 132.0 134.0 136.0 138.0 140.0 142.0 144.0 146.0 148.0 150.0 152.0 154.0 156.0 158.0 160.0 162.0 164.0 166.0 168.0 170.0 172.0 174.0 176.0 178.0 180.0 182.0 184.0 186.0 188.0 190.0 192.0 194.0 196.0 198.0 200.0 202.0 204.0 206.0 208.0 210.0 212.0 214.0 216.0 218.0 220.0 222.0 224.0 226.0 228.0 230.0 232.0 234.0 236.0 238.0 240.0 242.0 244.0 246.0 248.0 250.0 252.0 254.0 256.0 258.0 260.0 262.0 264.0 266.0 268.0 270.0 272.0 274.0 276.0 278.0 280.0 282.0 284.0 286.0 288.0 290.0 292.0 294.0 296.0 298.0 300.0 302.0 304.0 306.0 308.0 310.0 312.0 314.0 316.0 318.0 320.0 322.0 324.0 326.0 328.0 330.0 332.0 334.0 336.0 338.0 340.0 342.0 344.0 346.0 348.0 350.0 352.0 354.0 356.0 358.0 0.0 2.25 4.5 6.75 9.0 11.25 13.5 15.75 18.0 20.25 22.5 24.75 27.0 29.25 31.5 33.75 36.0 38.25 40.5 42.75 45.0 47.25 49.5 51.75 54.0 56.25 58.5 60.75 63.0 65.25 67.5 69.75 72.0 74.25 76.5 78.75 81.0 83.25 85.5 87.75 90.0 92.25 94.5 96.75 99.0 101.25 103.5 105.75 108.0 110.25 112.5 114.75 117.0 119.25 121.5 123.75 126.0 128.25 130.5 132.75 135.0 137.25 139.5 141.75 144.0 146.25 148.5 150.75 153.0 155.25 157.5 159.75 162.0 164.25 166.5 168.75 171.0 173.25 175.5 177.75 180.0 182.25 184.5 186.75 189.0 191.25 193.5 195.75 198.0 200.25 202.5 204.75 207.0 209.25 211.5 213.75 216.0 218.25 220.5 222.75 225.0 227.25 229.5 231.75 234.0 236.25 238.5 240.75 243.0 245.25 247.5 249.75 252.0 254.25 256.5 258.75 261.0 263.25 265.5 267.75 270.0 272.25 274.5 276.75 279.0 281.25 283.5 285.75 288.0 290.25 292.5 294.75 297.0 299.25 301.5 303.75 306.0 308.25 310.5 312.75 315.0 317.25 319.5 321.75 324.0 326.25 328.5 330.75 333.0 335.25 337.5 339.75 342.0 344.25 346.5 348.75 351.0 353.25 355.5 357.75 0.0 2.25 4.5 6.75 9.0 11.25 13.5 15.75 18.0 20.25 22.5 24.75 27.0 29.25 31.5 33.75 36.0 38.25 40.5 42.75 45.0 47.25 49.5 51.75 54.0 56.25 58.5 60.75 63.0 65.25 67.5 69.75 72.0 74.25 76.5 78.75 81.0 83.25 85.5 87.75 90.0 92.25 94.5 96.75 99.0 101.25 103.5 105.75 108.0 110.25 112.5 114.75 117.0 119.25 121.5 123.75 126.0 128.25 130.5 132.75 135.0 137.25 139.5 141.75 144.0 146.25 148.5 150.75 153.0 155.25 157.5 159.75 162.0 164.25 166.5 168.75 171.0 173.25 175.5 177.75 180.0 182.25 184.5 186.75 189.0 191.25 193.5 195.75 198.0 200.25 202.5 204.75 207.0 209.25 211.5 213.75 216.0 218.25 220.5 222.75 225.0 227.25 229.5 231.75 234.0 236.25 238.5 240.75 243.0 245.25 247.5 249.75 252.0 254.25 256.5 258.75 261.0 263.25 265.5 267.75 270.0 272.25 274.5 276.75 279.0 281.25 283.5 285.75 288.0 290.25 292.5 294.75 297.0 299.25 301.5 303.75 306.0 308.25 310.5 312.75 315.0 317.25 319.5 321.75 324.0 326.25 328.5 330.75 333.0 335.25 337.5 339.75 342.0 344.25 346.5 348.75 351.0 353.25 355.5 357.75 0.0 2.4 4.8 7.2 9.6 12.0 14.4 16.8 19.2 21.6 24.0 26.4 28.8 31.2 33.6 36.0 38.4 40.8 43.2 45.6 48.0 50.4 52.8 55.2 57.6 60.0 62.4 64.8 67.2 69.6 72.0 74.4 76.8 79.2 81.6 84.0 86.4 88.8 91.2 93.6 96.0 98.4 100.8 +103.2 105.6 108.0 110.4 112.8 115.2 117.6 120.0 122.4 124.8 127.2 129.6 132.0 134.4 136.8 139.2 141.6 144.0 146.4 148.8 151.2 153.6 156.0 158.4 160.8 163.2 165.6 168.0 170.4 172.8 175.2 177.6 180.0 182.4 184.8 187.2 189.6 192.0 194.4 196.8 199.2 201.6 204.0 206.4 208.8 211.2 213.6 216.0 218.4 220.8 223.2 225.6 228.0 230.4 232.8 235.2 237.6 240.0 242.4 244.8 247.2 249.6 252.0 254.4 256.8 259.2 261.6 264.0 266.4 268.8 271.2 273.6 276.0 278.4 280.8 283.2 285.6 288.0 290.4 292.8 295.2 297.6 300.0 302.4 304.8 307.2 309.6 312.0 314.4 316.8 319.2 321.6 324.0 326.4 328.8 331.2 333.6 336.0 338.4 340.8 343.2 345.6 348.0 350.4 352.8 355.2 357.6 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 0.0 2.8125 5.625 8.4375 11.25 14.0625 16.875 19.6875 22.5 25.3125 28.125 30.9375 33.75 36.5625 39.375 42.1875 45.0 47.8125 50.625 53.4375 56.25 59.0625 61.875 64.6875 67.5 70.3125 73.125 75.9375 78.75 81.5625 84.375 87.1875 90.0 92.8125 95.625 98.4375 101.25 104.062 106.875 109.688 112.5 115.312 118.125 120.938 123.75 126.562 129.375 132.188 135.0 137.812 140.625 143.438 146.25 149.062 151.875 154.688 157.5 160.312 163.125 165.938 168.75 171.562 174.375 177.188 180.0 182.812 185.625 188.438 191.25 194.062 196.875 199.688 202.5 205.312 208.125 210.938 213.75 216.562 219.375 222.188 225.0 227.812 230.625 233.438 236.25 239.062 241.875 244.688 247.5 250.312 253.125 255.938 258.75 261.562 264.375 267.188 270.0 272.812 275.625 278.438 281.25 284.062 286.875 289.688 292.5 +295.312 298.125 300.938 303.75 306.562 309.375 312.188 315.0 317.812 320.625 323.438 326.25 329.062 331.875 334.688 337.5 340.312 343.125 345.938 348.75 351.562 354.375 357.188 0.0 2.88 5.76 8.64 11.52 14.4 17.28 20.16 23.04 25.92 28.8 31.68 34.56 37.44 40.32 43.2 46.08 48.96 51.84 54.72 57.6 60.48 63.36 66.24 69.12 72.0 74.88 77.76 80.64 83.52 86.4 89.28 92.16 95.04 97.92 100.8 103.68 106.56 109.44 112.32 115.2 118.08 120.96 123.84 126.72 129.6 132.48 135.36 138.24 141.12 144.0 146.88 149.76 152.64 155.52 158.4 161.28 164.16 167.04 169.92 172.8 175.68 178.56 181.44 184.32 187.2 190.08 192.96 195.84 198.72 201.6 204.48 207.36 210.24 213.12 216.0 218.88 221.76 224.64 227.52 230.4 233.28 236.16 239.04 241.92 244.8 247.68 250.56 253.44 256.32 259.2 262.08 264.96 267.84 270.72 273.6 276.48 279.36 282.24 285.12 288.0 290.88 293.76 296.64 299.52 302.4 305.28 308.16 311.04 313.92 316.8 319.68 322.56 325.44 328.32 331.2 334.08 336.96 339.84 342.72 345.6 348.48 351.36 354.24 357.12 0.0 3.0 6.0 9.0 12.0 15.0 18.0 21.0 24.0 27.0 30.0 33.0 36.0 39.0 42.0 45.0 48.0 51.0 54.0 57.0 60.0 63.0 66.0 69.0 72.0 75.0 78.0 81.0 84.0 87.0 90.0 93.0 96.0 99.0 102.0 105.0 108.0 111.0 114.0 117.0 120.0 123.0 126.0 129.0 132.0 135.0 138.0 141.0 144.0 147.0 150.0 153.0 156.0 159.0 162.0 165.0 168.0 171.0 174.0 177.0 180.0 183.0 186.0 189.0 192.0 195.0 198.0 201.0 204.0 207.0 210.0 213.0 216.0 219.0 222.0 225.0 228.0 231.0 234.0 237.0 240.0 243.0 246.0 249.0 252.0 255.0 258.0 261.0 264.0 267.0 270.0 273.0 276.0 279.0 282.0 285.0 288.0 291.0 294.0 297.0 300.0 303.0 306.0 309.0 312.0 315.0 318.0 321.0 324.0 327.0 330.0 333.0 336.0 339.0 342.0 345.0 348.0 351.0 354.0 357.0 0.0 3.0 6.0 9.0 12.0 15.0 18.0 21.0 24.0 27.0 30.0 33.0 36.0 39.0 42.0 45.0 48.0 51.0 54.0 57.0 60.0 63.0 66.0 69.0 72.0 75.0 78.0 81.0 84.0 87.0 90.0 93.0 96.0 99.0 102.0 105.0 108.0 111.0 114.0 117.0 120.0 123.0 126.0 129.0 132.0 135.0 138.0 141.0 144.0 147.0 150.0 153.0 156.0 159.0 162.0 165.0 168.0 171.0 174.0 177.0 180.0 183.0 186.0 189.0 192.0 195.0 198.0 201.0 204.0 207.0 210.0 213.0 216.0 219.0 222.0 225.0 228.0 231.0 234.0 237.0 240.0 243.0 246.0 249.0 252.0 255.0 258.0 261.0 264.0 267.0 270.0 273.0 276.0 279.0 282.0 285.0 288.0 291.0 294.0 297.0 300.0 303.0 306.0 309.0 312.0 315.0 318.0 321.0 324.0 327.0 330.0 333.0 336.0 339.0 342.0 345.0 348.0 351.0 354.0 357.0 0.0 3.33333 6.66667 10.0 13.3333 16.6667 20.0 23.3333 26.6667 30.0 33.3333 36.6667 40.0 43.3333 46.6667 50.0 53.3333 56.6667 60.0 63.3333 66.6667 70.0 73.3333 76.6667 80.0 83.3333 86.6667 90.0 93.3333 96.6667 100.0 103.333 106.667 110.0 113.333 116.667 120.0 123.333 126.667 130.0 133.333 136.667 140.0 143.333 146.667 150.0 153.333 156.667 160.0 163.333 166.667 170.0 173.333 176.667 180.0 183.333 186.667 190.0 193.333 196.667 200.0 203.333 206.667 210.0 213.333 216.667 220.0 223.333 226.667 230.0 233.333 236.667 240.0 243.333 246.667 250.0 253.333 256.667 260.0 263.333 266.667 270.0 273.333 276.667 280.0 283.333 286.667 290.0 293.333 296.667 300.0 303.333 306.667 310.0 313.333 316.667 320.0 323.333 326.667 330.0 333.333 336.667 340.0 343.333 346.667 350.0 353.333 356.667 0.0 3.6 7.2 10.8 +14.4 18.0 21.6 25.2 28.8 32.4 36.0 39.6 43.2 46.8 50.4 54.0 57.6 61.2 64.8 68.4 72.0 75.6 79.2 82.8 86.4 90.0 93.6 97.2 100.8 104.4 108.0 111.6 115.2 118.8 122.4 126.0 129.6 133.2 136.8 140.4 144.0 147.6 151.2 154.8 158.4 162.0 165.6 169.2 172.8 176.4 180.0 183.6 187.2 190.8 194.4 198.0 201.6 205.2 208.8 212.4 216.0 219.6 223.2 226.8 230.4 234.0 237.6 241.2 244.8 248.4 252.0 255.6 259.2 262.8 266.4 270.0 273.6 277.2 280.8 284.4 288.0 291.6 295.2 298.8 302.4 306.0 309.6 313.2 316.8 320.4 324.0 327.6 331.2 334.8 338.4 342.0 345.6 349.2 352.8 356.4 0.0 4.0 8.0 12.0 16.0 20.0 24.0 28.0 32.0 36.0 40.0 44.0 48.0 52.0 56.0 60.0 64.0 68.0 72.0 76.0 80.0 84.0 88.0 92.0 96.0 100.0 104.0 108.0 112.0 116.0 120.0 124.0 128.0 132.0 136.0 140.0 144.0 148.0 152.0 156.0 160.0 164.0 168.0 172.0 176.0 180.0 184.0 188.0 192.0 196.0 200.0 204.0 208.0 212.0 216.0 220.0 224.0 228.0 232.0 236.0 240.0 244.0 248.0 252.0 256.0 260.0 264.0 268.0 272.0 276.0 280.0 284.0 288.0 292.0 296.0 300.0 304.0 308.0 312.0 316.0 320.0 324.0 328.0 332.0 336.0 340.0 344.0 348.0 352.0 356.0 0.0 4.0 8.0 12.0 16.0 20.0 24.0 28.0 32.0 36.0 40.0 44.0 48.0 52.0 56.0 60.0 64.0 68.0 72.0 76.0 80.0 84.0 88.0 92.0 96.0 100.0 104.0 108.0 112.0 116.0 120.0 124.0 128.0 132.0 136.0 140.0 144.0 148.0 152.0 156.0 160.0 164.0 168.0 172.0 176.0 180.0 184.0 188.0 192.0 196.0 200.0 204.0 208.0 212.0 216.0 220.0 224.0 228.0 232.0 236.0 240.0 244.0 248.0 252.0 256.0 260.0 264.0 268.0 272.0 276.0 280.0 284.0 288.0 292.0 296.0 300.0 304.0 308.0 312.0 316.0 320.0 324.0 328.0 332.0 336.0 340.0 344.0 348.0 352.0 356.0 0.0 4.5 9.0 13.5 18.0 22.5 27.0 31.5 36.0 40.5 45.0 49.5 54.0 58.5 63.0 67.5 72.0 76.5 81.0 85.5 90.0 94.5 99.0 103.5 108.0 112.5 117.0 121.5 126.0 130.5 135.0 139.5 144.0 148.5 153.0 157.5 162.0 166.5 171.0 175.5 180.0 184.5 189.0 193.5 198.0 202.5 207.0 211.5 216.0 220.5 225.0 229.5 234.0 238.5 243.0 247.5 252.0 256.5 261.0 265.5 270.0 274.5 279.0 283.5 288.0 292.5 297.0 301.5 306.0 310.5 315.0 319.5 324.0 328.5 333.0 337.5 342.0 346.5 351.0 355.5 0.0 5.0 10.0 15.0 20.0 25.0 30.0 35.0 40.0 45.0 50.0 55.0 60.0 65.0 70.0 75.0 80.0 85.0 90.0 95.0 100.0 105.0 110.0 115.0 120.0 125.0 130.0 135.0 140.0 145.0 150.0 155.0 160.0 165.0 170.0 175.0 180.0 185.0 190.0 195.0 200.0 205.0 210.0 215.0 220.0 225.0 230.0 235.0 240.0 245.0 250.0 255.0 260.0 265.0 270.0 275.0 280.0 285.0 290.0 295.0 300.0 305.0 310.0 315.0 320.0 325.0 330.0 335.0 340.0 345.0 350.0 355.0 0.0 5.0 10.0 15.0 20.0 25.0 30.0 35.0 40.0 45.0 50.0 55.0 60.0 65.0 70.0 75.0 80.0 85.0 90.0 95.0 100.0 105.0 110.0 115.0 120.0 125.0 130.0 135.0 140.0 145.0 150.0 155.0 160.0 165.0 170.0 175.0 180.0 185.0 190.0 195.0 200.0 205.0 210.0 215.0 220.0 225.0 230.0 235.0 240.0 245.0 250.0 255.0 260.0 265.0 270.0 275.0 280.0 285.0 290.0 295.0 300.0 305.0 310.0 315.0 320.0 325.0 330.0 335.0 340.0 345.0 350.0 355.0 +0.0 5.625 11.25 16.875 22.5 28.125 33.75 39.375 45.0 50.625 56.25 61.875 67.5 73.125 78.75 84.375 90.0 95.625 101.25 106.875 112.5 118.125 123.75 129.375 135.0 140.625 146.25 151.875 157.5 163.125 168.75 174.375 180.0 185.625 191.25 196.875 202.5 208.125 213.75 219.375 225.0 230.625 236.25 241.875 247.5 253.125 258.75 264.375 270.0 275.625 281.25 286.875 292.5 298.125 303.75 309.375 315.0 320.625 326.25 331.875 337.5 343.125 348.75 354.375 0.0 6.0 12.0 18.0 24.0 30.0 36.0 42.0 48.0 54.0 60.0 66.0 72.0 78.0 84.0 90.0 96.0 102.0 108.0 114.0 120.0 126.0 132.0 138.0 144.0 150.0 156.0 162.0 168.0 174.0 180.0 186.0 192.0 198.0 204.0 210.0 216.0 222.0 228.0 234.0 240.0 246.0 252.0 258.0 264.0 270.0 276.0 282.0 288.0 294.0 300.0 306.0 312.0 318.0 324.0 330.0 336.0 342.0 348.0 354.0 0.0 7.2 14.4 21.6 28.8 36.0 43.2 50.4 57.6 64.8 72.0 79.2 86.4 93.6 100.8 108.0 115.2 122.4 129.6 136.8 144.0 151.2 158.4 165.6 172.8 180.0 187.2 194.4 201.6 208.8 216.0 223.2 230.4 237.6 244.8 252.0 259.2 266.4 273.6 280.8 288.0 295.2 302.4 309.6 316.8 324.0 331.2 338.4 345.6 352.8 0.0 8.0 16.0 24.0 32.0 40.0 48.0 56.0 64.0 72.0 80.0 88.0 96.0 104.0 112.0 120.0 128.0 136.0 144.0 152.0 160.0 168.0 176.0 184.0 192.0 200.0 208.0 216.0 224.0 232.0 240.0 248.0 256.0 264.0 272.0 280.0 288.0 296.0 304.0 312.0 320.0 328.0 336.0 344.0 352.0 0.0 9.0 18.0 27.0 36.0 45.0 54.0 63.0 72.0 81.0 90.0 99.0 108.0 117.0 126.0 135.0 144.0 153.0 162.0 171.0 180.0 189.0 198.0 207.0 216.0 225.0 234.0 243.0 252.0 261.0 270.0 279.0 288.0 297.0 306.0 315.0 324.0 333.0 342.0 351.0 0.0 10.0 20.0 30.0 40.0 50.0 60.0 70.0 80.0 90.0 100.0 110.0 120.0 130.0 140.0 150.0 160.0 170.0 180.0 190.0 200.0 210.0 220.0 230.0 240.0 250.0 260.0 270.0 280.0 290.0 300.0 310.0 320.0 330.0 340.0 350.0 0.0 14.4 28.8 43.2 57.6 72.0 86.4 100.8 115.2 129.6 144.0 158.4 172.8 187.2 201.6 216.0 230.4 244.8 259.2 273.6 288.0 302.4 316.8 331.2 345.6 0.0 20.0 40.0 60.0 80.0 100.0 120.0 140.0 160.0 180.0 200.0 220.0 240.0 260.0 280.0 300.0 320.0 340.0 +yvals = 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 89.4628 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.767 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 88.067 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 87.3661 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 86.6648 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.9634 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 85.2618 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 84.5603 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.8586 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 83.157 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 +82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 82.4553 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.7536 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 81.0519 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 80.3502 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 79.6485 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 +78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.9468 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 78.2451 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 77.5434 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.8416 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 +76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 76.1399 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 75.4382 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.7364 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 +74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 74.0347 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 73.333 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 72.6312 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 +71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.9295 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 71.2278 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 70.526 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 +69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.8243 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 69.1225 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 +68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 68.4208 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.719 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 67.0173 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 +66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 66.3155 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 65.6138 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 +64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.912 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 64.2103 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 +63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 63.5086 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.8068 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 +62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 62.1051 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 61.4033 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 +60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 60.7016 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 59.9998 +59.9998 59.9998 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 59.2981 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 +58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 58.5963 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.8946 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 +57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 57.1928 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 56.4911 55.7893 55.7893 +55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.7893 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 +55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 55.0876 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 54.3858 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 +53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 53.6841 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 +52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.9823 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 52.2806 +52.2806 52.2806 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 51.5788 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 +50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.8771 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 +50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 50.1753 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 49.4736 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 +48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.7718 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 +48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 48.0701 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 +47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 47.3683 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 46.6665 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 +45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.9648 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 +45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 45.263 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 +44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 44.5613 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.8595 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 +43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 43.1578 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 +42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 42.456 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 +41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.7543 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 +41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 41.0525 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 +40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 40.3508 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 39.649 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 +38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.9473 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 +38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 38.2455 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 +37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 37.5438 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 +36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.842 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 +36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 36.1403 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 +35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 35.4385 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.7368 34.035 +34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 34.035 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 +33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 33.3333 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 +32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 32.6315 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 +31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.9298 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 +31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 31.228 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 +30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 30.5263 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 +29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.8245 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 +29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 29.1227 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 +28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 28.421 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 +27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.7192 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 +27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 27.0175 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 +26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 26.3157 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 +25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 25.614 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 +24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.9122 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 +24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 24.2105 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 +23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 23.5087 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 +22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.807 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 +22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 22.1052 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 +21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 21.4035 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 +20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.7017 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 +20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 +19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 19.2982 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 +18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 18.5965 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 +17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.8947 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 +17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 17.1929 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 +16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 16.4912 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 +15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.7894 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 +15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 15.0877 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 +14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 14.3859 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 +13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 13.6842 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 +12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.9824 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 +12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 12.2807 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 +11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 11.5789 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 +10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.8772 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 +10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 10.1754 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 +9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 9.47367 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 +8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.77191 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 +8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 8.07016 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 +7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 7.36841 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 +6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 6.66665 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 +5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.9649 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 +5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 5.26315 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 +4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 4.56139 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 +3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.85964 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 +3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 3.15789 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 +2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 2.45614 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 +1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.75438 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 +1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 1.05263 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 +0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 +-0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -0.350877 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 +-1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.05263 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 +-1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -1.75438 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 +-2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -2.45614 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 +-3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.15789 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 +-3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -3.85964 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 +-4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 -4.56139 +-4.56139 -4.56139 -4.56139 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 +-5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.26315 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 +-5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -5.9649 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 +-6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -6.66665 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 +-7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -7.36841 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 +-8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.07016 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 +-8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -8.77191 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 +-9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -9.47367 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 +-10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.1754 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 +-10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -10.8772 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 +-11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -11.5789 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 +-12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.2807 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 +-12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -12.9824 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 +-13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -13.6842 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 +-14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -14.3859 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 +-15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.0877 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 +-15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -15.7894 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 +-16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -16.4912 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 +-17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.1929 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 +-17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -17.8947 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 +-18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -18.5965 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 +-19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -19.2982 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 +-20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.0 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 +-20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -20.7017 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 +-21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -21.4035 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 +-22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.1052 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 +-22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -22.807 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 +-23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -23.5087 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 +-24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.2105 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 +-24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -24.9122 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 +-25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -25.614 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 +-26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -26.3157 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 +-27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.0175 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 +-27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -27.7192 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 +-28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -28.421 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 +-29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.1227 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 +-29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -29.8245 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 +-30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -30.5263 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 +-31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.228 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -31.9298 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 +-32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -32.6315 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 +-33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -33.3333 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 +-34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.035 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 +-34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -34.7368 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 +-35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -35.4385 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 +-36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.1403 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 +-36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -36.842 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 +-37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -37.5438 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.2455 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 +-38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -38.9473 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 +-39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -39.649 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 +-40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -40.3508 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 +-41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.0525 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 +-41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -41.7543 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -42.456 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 +-43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.1578 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 +-43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -43.8595 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 +-44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -44.5613 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 +-45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.263 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -45.9648 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 +-46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -46.6665 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 +-47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -47.3683 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 +-48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.0701 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -48.7718 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 +-49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -49.4736 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 +-50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.1753 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -50.8771 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 +-51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -51.5788 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 +-52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.2806 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 +-52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -52.9823 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -53.6841 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 +-54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -54.3858 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 +-55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.0876 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -55.7893 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 +-56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -56.4911 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.1928 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 +-57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -57.8946 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 +-58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -58.5963 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.2981 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 +-59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -59.9998 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -60.7016 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 +-61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -61.4033 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.1051 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 +-62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -62.8068 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -63.5086 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 +-64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.2103 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -64.912 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 +-65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -65.6138 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -66.3155 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 +-67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.0173 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -67.719 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 +-68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -68.4208 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.1225 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -69.8243 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 +-70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -70.526 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.2278 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -71.9295 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 +-72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -72.6312 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -73.333 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.0347 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 +-74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -74.7364 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -75.4382 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.1399 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 +-76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -76.8416 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -77.5434 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.2451 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -78.9468 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -79.6485 -80.3502 -80.3502 -80.3502 -80.3502 +-80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -80.3502 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.0519 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -81.7536 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -82.4553 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.157 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 -83.8586 +-84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -84.5603 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.2618 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -85.9634 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -86.6648 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -87.3661 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.067 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -88.767 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 -89.4628 +xbounds = -10.0 10.0 10.0 -10.0 10.0 30.0 30.0 10.0 30.0 50.0 50.0 30.0 50.0 70.0 70.0 50.0 70.0 90.0 90.0 70.0 90.0 110.0 110.0 90.0 110.0 130.0 130.0 110.0 130.0 150.0 150.0 130.0 150.0 170.0 170.0 150.0 170.0 190.0 190.0 170.0 190.0 210.0 210.0 190.0 210.0 230.0 230.0 210.0 230.0 250.0 250.0 230.0 250.0 270.0 270.0 250.0 270.0 290.0 290.0 270.0 290.0 310.0 310.0 290.0 310.0 330.0 330.0 310.0 330.0 350.0 350.0 330.0 -7.2 7.2 7.2 -7.2 7.19999961853 21.5999996185 21.5999996185 7.19999961853 21.5999992371 35.9999992371 35.9999992371 21.5999992371 36.0000007629 50.4000007629 50.4000007629 36.0000007629 50.3999984741 64.7999984741 64.7999984741 50.3999984741 64.8 79.2 79.2 64.8 79.2000015259 93.6000015259 93.6000015259 79.2000015259 93.6000030518 108.000003052 108.000003052 93.6000030518 107.999996948 122.399996948 122.399996948 107.999996948 122.400006104 136.800006104 136.800006104 122.400006104 136.8 151.2 151.2 136.8 151.199993896 165.599993896 165.599993896 151.199993896 165.600003052 180.000003052 180.000003052 165.600003052 179.999996948 194.399996948 194.399996948 179.999996948 194.400006104 208.800006104 208.800006104 194.400006104 208.8 223.2 223.2 208.8 223.199993896 237.599993896 237.599993896 223.199993896 237.600003052 252.000003052 252.000003052 237.600003052 252.000012207 266.400012207 266.400012207 252.000012207 266.400006104 280.800006104 280.800006104 266.400006104 280.8 295.2 295.2 280.8 295.199993896 309.599993896 309.599993896 295.199993896 309.599987793 323.999987793 323.999987793 309.599987793 324.000012207 338.400012207 338.400012207 324.000012207 338.400006104 352.800006104 352.800006104 338.400006104 -5.0 5.0 5.0 -5.0 5.0 15.0 15.0 5.0 15.0 25.0 25.0 15.0 25.0 35.0 35.0 25.0 35.0 45.0 45.0 35.0 45.0 55.0 55.0 45.0 55.0 65.0 65.0 55.0 65.0 75.0 75.0 65.0 75.0 85.0 85.0 75.0 85.0 95.0 95.0 85.0 95.0 105.0 105.0 95.0 105.0 115.0 115.0 105.0 115.0 125.0 125.0 115.0 125.0 135.0 135.0 125.0 135.0 145.0 145.0 135.0 145.0 155.0 155.0 145.0 155.0 165.0 165.0 155.0 165.0 175.0 175.0 165.0 175.0 185.0 185.0 175.0 185.0 195.0 195.0 185.0 195.0 205.0 205.0 195.0 205.0 215.0 215.0 205.0 215.0 225.0 225.0 215.0 225.0 235.0 235.0 225.0 235.0 245.0 245.0 235.0 245.0 255.0 255.0 245.0 255.0 265.0 265.0 255.0 265.0 275.0 275.0 265.0 275.0 285.0 285.0 275.0 285.0 295.0 295.0 285.0 295.0 305.0 305.0 295.0 305.0 315.0 315.0 305.0 315.0 325.0 325.0 315.0 325.0 335.0 335.0 325.0 335.0 345.0 345.0 335.0 345.0 355.0 355.0 345.0 -4.5 4.5 4.5 -4.5 4.5 13.5 13.5 4.5 13.5 22.5 22.5 13.5 22.5 31.5 31.5 22.5 31.5 40.5 40.5 31.5 40.5 49.5 49.5 40.5 49.5 58.5 58.5 49.5 58.5 67.5 67.5 58.5 67.5 76.5 76.5 67.5 76.5 85.5 85.5 76.5 85.5 94.5 94.5 85.5 94.5 103.5 103.5 94.5 103.5 112.5 112.5 103.5 112.5 121.5 121.5 112.5 121.5 130.5 130.5 121.5 130.5 139.5 139.5 130.5 139.5 148.5 148.5 139.5 148.5 157.5 157.5 148.5 157.5 166.5 166.5 157.5 166.5 175.5 175.5 166.5 175.5 184.5 184.5 175.5 184.5 193.5 193.5 184.5 193.5 202.5 202.5 193.5 202.5 211.5 211.5 202.5 211.5 220.5 220.5 211.5 220.5 229.5 229.5 220.5 229.5 238.5 238.5 229.5 238.5 247.5 247.5 238.5 247.5 256.5 256.5 247.5 256.5 265.5 265.5 256.5 265.5 274.5 274.5 265.5 274.5 283.5 283.5 274.5 283.5 292.5 292.5 283.5 292.5 301.5 301.5 292.5 301.5 310.5 310.5 301.5 310.5 319.5 319.5 310.5 319.5 328.5 328.5 319.5 328.5 337.5 337.5 328.5 337.5 346.5 346.5 337.5 346.5 355.5 355.5 346.5 -4.0 4.0 4.0 -4.0 4.0 12.0 12.0 4.0 12.0 20.0 20.0 12.0 20.0 28.0 28.0 20.0 28.0 36.0 36.0 28.0 36.0 44.0 44.0 36.0 44.0 52.0 52.0 44.0 52.0 60.0 60.0 52.0 60.0 68.0 68.0 60.0 68.0 76.0 76.0 68.0 76.0 84.0 84.0 76.0 84.0 92.0 92.0 84.0 92.0 100.0 100.0 92.0 100.0 108.0 108.0 100.0 108.0 116.0 116.0 108.0 116.0 124.0 124.0 116.0 124.0 132.0 132.0 124.0 132.0 140.0 140.0 132.0 140.0 148.0 148.0 140.0 148.0 156.0 156.0 148.0 156.0 164.0 164.0 156.0 164.0 172.0 172.0 164.0 172.0 180.0 180.0 172.0 180.0 188.0 188.0 180.0 188.0 196.0 196.0 188.0 196.0 204.0 204.0 196.0 204.0 212.0 212.0 204.0 212.0 220.0 220.0 212.0 220.0 228.0 228.0 220.0 228.0 236.0 236.0 228.0 236.0 244.0 244.0 236.0 244.0 252.0 252.0 244.0 252.0 260.0 260.0 252.0 260.0 268.0 268.0 260.0 268.0 276.0 276.0 268.0 276.0 284.0 284.0 276.0 284.0 292.0 292.0 284.0 292.0 300.0 300.0 292.0 300.0 308.0 308.0 300.0 308.0 316.0 316.0 308.0 316.0 324.0 324.0 316.0 324.0 332.0 332.0 324.0 332.0 340.0 340.0 332.0 340.0 348.0 348.0 340.0 348.0 356.0 356.0 348.0 -3.6 3.6 3.6 -3.6 3.59999980927 10.7999998093 10.7999998093 3.59999980927 10.7999996185 17.9999996185 17.9999996185 10.7999996185 18.0000003815 25.2000003815 25.2000003815 18.0000003815 25.1999992371 32.3999992371 32.3999992371 25.1999992371 32.4 39.6 39.6 32.4 39.6000007629 46.8000007629 46.8000007629 39.6000007629 46.8000015259 54.0000015259 54.0000015259 46.8000015259 53.9999984741 61.1999984741 61.1999984741 53.9999984741 61.2000030518 68.4000030518 68.4000030518 61.2000030518 68.4 75.6 75.6 68.4 75.5999969482 82.7999969482 82.7999969482 75.5999969482 82.8000015259 90.0000015259 90.0000015259 82.8000015259 89.9999984741 97.1999984741 97.1999984741 89.9999984741 97.2000030518 104.400003052 104.400003052 97.2000030518 104.4 111.6 111.6 104.4 111.599996948 118.799996948 118.799996948 111.599996948 118.800001526 126.000001526 126.000001526 118.800001526 126.000006104 133.200006104 133.200006104 126.000006104 133.200003052 140.400003052 140.400003052 133.200003052 140.4 147.6 147.6 140.4 147.599996948 154.799996948 154.799996948 147.599996948 154.799993896 161.999993896 161.999993896 154.799993896 162.000006104 169.200006104 169.200006104 162.000006104 169.200003052 176.400003052 176.400003052 169.200003052 176.4 183.6 183.6 176.4 183.599996948 190.799996948 190.799996948 183.599996948 190.799993896 197.999993896 197.999993896 190.799993896 198.000006104 205.200006104 205.200006104 198.000006104 205.200003052 212.400003052 212.400003052 205.200003052 212.4 219.6 219.6 212.4 219.599996948 226.799996948 226.799996948 219.599996948 226.799993896 233.999993896 233.999993896 226.799993896 234.000006104 241.200006104 241.200006104 234.000006104 241.200003052 248.400003052 248.400003052 241.200003052 248.4 255.6 255.6 248.4 255.600012207 262.800012207 262.800012207 255.600012207 262.799993896 269.999993896 269.999993896 262.799993896 270.000006104 277.200006104 277.200006104 270.000006104 277.199987793 284.399987793 284.399987793 277.199987793 284.4 291.6 291.6 284.4 291.600012207 298.800012207 298.800012207 291.600012207 298.799993896 305.999993896 305.999993896 298.799993896 306.000006104 313.200006104 313.200006104 306.000006104 313.199987793 320.399987793 320.399987793 313.199987793 320.4 327.6 327.6 320.4 327.600012207 334.800012207 334.800012207 327.600012207 334.799993896 341.999993896 341.999993896 334.799993896 342.000006104 349.200006104 349.200006104 342.000006104 349.199987793 356.399987793 356.399987793 349.199987793 -3.0 3.0 3.0 -3.0 3.0 9.0 9.0 3.0 9.0 15.0 15.0 9.0 15.0 21.0 21.0 15.0 21.0 27.0 27.0 21.0 27.0 33.0 33.0 27.0 33.0 39.0 39.0 33.0 39.0 45.0 45.0 39.0 45.0 51.0 51.0 45.0 51.0 57.0 57.0 51.0 57.0 63.0 63.0 57.0 63.0 69.0 69.0 63.0 69.0 75.0 75.0 69.0 75.0 81.0 81.0 75.0 81.0 87.0 87.0 81.0 87.0 93.0 93.0 87.0 93.0 99.0 99.0 93.0 99.0 105.0 105.0 99.0 105.0 111.0 111.0 105.0 111.0 117.0 117.0 111.0 117.0 123.0 123.0 117.0 123.0 129.0 129.0 123.0 129.0 135.0 135.0 129.0 135.0 141.0 141.0 135.0 141.0 147.0 147.0 141.0 147.0 153.0 153.0 147.0 153.0 159.0 159.0 153.0 159.0 165.0 165.0 159.0 165.0 171.0 171.0 165.0 171.0 177.0 177.0 171.0 177.0 183.0 183.0 177.0 183.0 189.0 189.0 183.0 189.0 195.0 195.0 189.0 195.0 201.0 201.0 195.0 201.0 207.0 207.0 201.0 207.0 213.0 213.0 207.0 213.0 219.0 219.0 213.0 219.0 225.0 225.0 219.0 225.0 231.0 231.0 225.0 231.0 237.0 237.0 231.0 237.0 243.0 243.0 237.0 243.0 249.0 249.0 243.0 249.0 255.0 255.0 249.0 255.0 261.0 261.0 255.0 261.0 267.0 267.0 261.0 267.0 273.0 273.0 267.0 273.0 279.0 279.0 273.0 279.0 285.0 285.0 279.0 285.0 291.0 291.0 285.0 291.0 297.0 297.0 291.0 297.0 303.0 303.0 297.0 303.0 309.0 309.0 303.0 309.0 315.0 315.0 309.0 315.0 321.0 321.0 315.0 321.0 327.0 327.0 321.0 327.0 333.0 333.0 327.0 333.0 339.0 339.0 333.0 339.0 345.0 345.0 339.0 345.0 351.0 351.0 345.0 351.0 357.0 357.0 351.0 -2.8125 2.8125 2.8125 -2.8125 2.8125 8.4375 8.4375 2.8125 8.4375 14.0625 14.0625 8.4375 14.0625 19.6875 19.6875 14.0625 19.6875 25.3125 25.3125 19.6875 25.3125 30.9375 30.9375 25.3125 30.9375 36.5625 36.5625 30.9375 36.5625 42.1875 42.1875 36.5625 42.1875 47.8125 47.8125 42.1875 47.8125 53.4375 53.4375 47.8125 53.4375 59.0625 59.0625 53.4375 59.0625 64.6875 64.6875 59.0625 64.6875 70.3125 70.3125 64.6875 70.3125 75.9375 75.9375 70.3125 75.9375 81.5625 81.5625 75.9375 81.5625 87.1875 87.1875 81.5625 87.1875 92.8125 92.8125 87.1875 92.8125 98.4375 98.4375 92.8125 98.4375 104.0625 104.0625 98.4375 104.0625 109.6875 109.6875 104.0625 109.6875 115.3125 115.3125 109.6875 115.3125 120.9375 120.9375 115.3125 120.9375 126.5625 126.5625 120.9375 126.5625 132.1875 132.1875 126.5625 132.1875 137.8125 137.8125 132.1875 137.8125 143.4375 143.4375 137.8125 143.4375 149.0625 149.0625 143.4375 149.0625 154.6875 154.6875 149.0625 154.6875 160.3125 160.3125 154.6875 160.3125 165.9375 165.9375 160.3125 165.9375 171.5625 171.5625 165.9375 171.5625 177.1875 177.1875 171.5625 177.1875 182.8125 182.8125 177.1875 182.8125 188.4375 188.4375 182.8125 188.4375 194.0625 194.0625 188.4375 194.0625 199.6875 199.6875 194.0625 199.6875 205.3125 205.3125 199.6875 205.3125 210.9375 210.9375 205.3125 210.9375 216.5625 216.5625 210.9375 216.5625 222.1875 222.1875 216.5625 222.1875 227.8125 227.8125 222.1875 227.8125 233.4375 233.4375 227.8125 233.4375 239.0625 239.0625 233.4375 239.0625 244.6875 244.6875 239.0625 244.6875 250.3125 250.3125 244.6875 250.3125 255.9375 255.9375 250.3125 255.9375 261.5625 261.5625 255.9375 261.5625 267.1875 267.1875 261.5625 267.1875 272.8125 272.8125 267.1875 272.8125 278.4375 278.4375 272.8125 278.4375 284.0625 284.0625 278.4375 284.0625 289.6875 289.6875 284.0625 289.6875 295.3125 295.3125 289.6875 295.3125 300.9375 300.9375 295.3125 300.9375 306.5625 306.5625 300.9375 306.5625 312.1875 312.1875 306.5625 312.1875 317.8125 317.8125 312.1875 317.8125 323.4375 323.4375 317.8125 323.4375 329.0625 329.0625 323.4375 329.0625 334.6875 334.6875 329.0625 334.6875 340.3125 340.3125 334.6875 340.3125 345.9375 345.9375 340.3125 345.9375 351.5625 351.5625 345.9375 351.5625 357.1875 357.1875 351.5625 -2.5 2.5 2.5 -2.5 2.5 7.5 7.5 2.5 7.5 12.5 12.5 7.5 12.5 17.5 17.5 12.5 17.5 22.5 22.5 17.5 22.5 27.5 27.5 22.5 27.5 32.5 32.5 27.5 32.5 37.5 37.5 32.5 37.5 42.5 42.5 37.5 42.5 47.5 47.5 42.5 47.5 52.5 52.5 47.5 52.5 57.5 57.5 52.5 57.5 62.5 62.5 57.5 62.5 67.5 67.5 62.5 67.5 72.5 72.5 67.5 72.5 77.5 77.5 72.5 77.5 82.5 82.5 77.5 82.5 87.5 87.5 82.5 87.5 92.5 92.5 87.5 92.5 97.5 97.5 92.5 97.5 102.5 102.5 97.5 102.5 107.5 107.5 102.5 107.5 112.5 112.5 107.5 112.5 117.5 117.5 112.5 117.5 122.5 122.5 117.5 122.5 127.5 127.5 122.5 127.5 132.5 132.5 127.5 132.5 137.5 137.5 132.5 137.5 142.5 142.5 137.5 142.5 147.5 147.5 142.5 147.5 152.5 152.5 147.5 152.5 157.5 157.5 152.5 157.5 162.5 162.5 157.5 162.5 167.5 167.5 162.5 167.5 172.5 172.5 167.5 172.5 177.5 177.5 172.5 177.5 182.5 182.5 177.5 182.5 187.5 187.5 182.5 187.5 192.5 192.5 187.5 192.5 197.5 197.5 192.5 197.5 202.5 202.5 197.5 202.5 207.5 207.5 202.5 207.5 212.5 212.5 207.5 212.5 217.5 217.5 212.5 217.5 222.5 222.5 217.5 222.5 227.5 227.5 222.5 227.5 232.5 232.5 227.5 232.5 237.5 237.5 232.5 237.5 242.5 242.5 237.5 242.5 247.5 247.5 242.5 247.5 252.5 252.5 247.5 252.5 257.5 257.5 252.5 257.5 262.5 262.5 257.5 262.5 267.5 267.5 262.5 267.5 272.5 272.5 267.5 272.5 277.5 277.5 272.5 277.5 282.5 282.5 277.5 282.5 287.5 287.5 282.5 287.5 292.5 292.5 287.5 292.5 297.5 297.5 292.5 297.5 302.5 302.5 297.5 302.5 307.5 307.5 302.5 307.5 312.5 312.5 307.5 312.5 317.5 317.5 312.5 317.5 322.5 322.5 317.5 322.5 327.5 327.5 322.5 327.5 332.5 332.5 327.5 332.5 337.5 337.5 332.5 337.5 342.5 342.5 337.5 342.5 347.5 347.5 342.5 347.5 352.5 352.5 347.5 352.5 357.5 357.5 352.5 -2.5 2.5 2.5 -2.5 2.5 7.5 7.5 2.5 7.5 12.5 12.5 7.5 12.5 17.5 17.5 12.5 17.5 22.5 22.5 17.5 22.5 27.5 27.5 22.5 27.5 32.5 32.5 27.5 32.5 37.5 37.5 32.5 37.5 42.5 42.5 37.5 42.5 47.5 47.5 42.5 47.5 52.5 52.5 47.5 52.5 57.5 57.5 52.5 57.5 62.5 62.5 57.5 62.5 67.5 67.5 62.5 67.5 72.5 72.5 67.5 72.5 77.5 77.5 72.5 77.5 82.5 82.5 77.5 82.5 87.5 87.5 82.5 87.5 92.5 92.5 87.5 92.5 97.5 97.5 92.5 97.5 102.5 102.5 97.5 102.5 107.5 107.5 102.5 107.5 112.5 112.5 107.5 112.5 117.5 117.5 112.5 117.5 122.5 122.5 117.5 122.5 127.5 127.5 122.5 127.5 132.5 132.5 127.5 132.5 137.5 137.5 132.5 137.5 142.5 142.5 137.5 142.5 147.5 147.5 142.5 147.5 152.5 152.5 147.5 152.5 157.5 157.5 152.5 157.5 162.5 162.5 157.5 162.5 167.5 167.5 162.5 167.5 172.5 172.5 167.5 172.5 177.5 177.5 172.5 177.5 182.5 182.5 177.5 182.5 187.5 187.5 182.5 187.5 192.5 192.5 187.5 192.5 197.5 197.5 192.5 197.5 202.5 202.5 197.5 202.5 207.5 207.5 202.5 207.5 212.5 212.5 207.5 212.5 217.5 217.5 212.5 217.5 222.5 222.5 217.5 222.5 227.5 227.5 222.5 227.5 232.5 232.5 227.5 232.5 237.5 237.5 232.5 237.5 242.5 242.5 237.5 242.5 247.5 247.5 242.5 247.5 252.5 252.5 247.5 252.5 257.5 257.5 252.5 257.5 262.5 262.5 257.5 262.5 267.5 267.5 262.5 267.5 272.5 272.5 267.5 272.5 277.5 277.5 272.5 277.5 282.5 282.5 277.5 282.5 287.5 287.5 282.5 287.5 292.5 292.5 287.5 292.5 297.5 297.5 292.5 297.5 302.5 302.5 297.5 302.5 307.5 307.5 302.5 307.5 312.5 312.5 307.5 312.5 317.5 317.5 312.5 317.5 322.5 322.5 317.5 322.5 327.5 327.5 322.5 327.5 332.5 332.5 327.5 332.5 337.5 337.5 332.5 337.5 342.5 342.5 337.5 342.5 347.5 347.5 342.5 347.5 352.5 352.5 347.5 352.5 357.5 357.5 352.5 -2.25 2.25 2.25 -2.25 2.25 6.75 6.75 2.25 6.75 11.25 11.25 6.75 11.25 15.75 15.75 11.25 15.75 20.25 20.25 15.75 20.25 24.75 24.75 20.25 24.75 29.25 29.25 24.75 29.25 33.75 33.75 29.25 33.75 38.25 38.25 33.75 38.25 42.75 42.75 38.25 42.75 47.25 47.25 42.75 47.25 51.75 51.75 47.25 51.75 56.25 56.25 51.75 56.25 60.75 60.75 56.25 60.75 65.25 65.25 60.75 65.25 69.75 69.75 65.25 69.75 74.25 74.25 69.75 74.25 78.75 78.75 74.25 +78.75 83.25 83.25 78.75 83.25 87.75 87.75 83.25 87.75 92.25 92.25 87.75 92.25 96.75 96.75 92.25 96.75 101.25 101.25 96.75 101.25 105.75 105.75 101.25 105.75 110.25 110.25 105.75 110.25 114.75 114.75 110.25 114.75 119.25 119.25 114.75 119.25 123.75 123.75 119.25 123.75 128.25 128.25 123.75 128.25 132.75 132.75 128.25 132.75 137.25 137.25 132.75 137.25 141.75 141.75 137.25 141.75 146.25 146.25 141.75 146.25 150.75 150.75 146.25 150.75 155.25 155.25 150.75 155.25 159.75 159.75 155.25 159.75 164.25 164.25 159.75 164.25 168.75 168.75 164.25 168.75 173.25 173.25 168.75 173.25 177.75 177.75 173.25 177.75 182.25 182.25 177.75 182.25 186.75 186.75 182.25 186.75 191.25 191.25 186.75 191.25 195.75 195.75 191.25 195.75 200.25 200.25 195.75 200.25 204.75 204.75 200.25 204.75 209.25 209.25 204.75 209.25 213.75 213.75 209.25 213.75 218.25 218.25 213.75 218.25 222.75 222.75 218.25 222.75 227.25 227.25 222.75 227.25 231.75 231.75 227.25 231.75 236.25 236.25 231.75 236.25 240.75 240.75 236.25 240.75 245.25 245.25 240.75 245.25 249.75 249.75 245.25 249.75 254.25 254.25 249.75 254.25 258.75 258.75 254.25 258.75 263.25 263.25 258.75 263.25 267.75 267.75 263.25 267.75 272.25 272.25 267.75 272.25 276.75 276.75 272.25 276.75 281.25 281.25 276.75 281.25 285.75 285.75 281.25 285.75 290.25 290.25 285.75 290.25 294.75 294.75 290.25 294.75 299.25 299.25 294.75 299.25 303.75 303.75 299.25 303.75 308.25 308.25 303.75 308.25 312.75 312.75 308.25 312.75 317.25 317.25 312.75 317.25 321.75 321.75 317.25 321.75 326.25 326.25 321.75 326.25 330.75 330.75 326.25 330.75 335.25 335.25 330.75 335.25 339.75 339.75 335.25 339.75 344.25 344.25 339.75 344.25 348.75 348.75 344.25 348.75 353.25 353.25 348.75 353.25 357.75 357.75 353.25 -2.0 2.0 2.0 -2.0 2.0 6.0 6.0 2.0 6.0 10.0 10.0 6.0 10.0 14.0 14.0 10.0 14.0 18.0 18.0 14.0 18.0 22.0 22.0 18.0 22.0 26.0 26.0 22.0 26.0 30.0 30.0 26.0 30.0 34.0 34.0 30.0 34.0 38.0 38.0 34.0 38.0 42.0 42.0 38.0 42.0 46.0 46.0 42.0 46.0 50.0 50.0 46.0 50.0 54.0 54.0 50.0 54.0 58.0 58.0 54.0 58.0 62.0 62.0 58.0 62.0 66.0 66.0 62.0 66.0 70.0 70.0 66.0 70.0 74.0 74.0 70.0 74.0 78.0 78.0 74.0 78.0 82.0 82.0 78.0 82.0 86.0 86.0 82.0 86.0 90.0 90.0 86.0 90.0 94.0 94.0 90.0 94.0 98.0 98.0 94.0 98.0 102.0 102.0 98.0 102.0 106.0 106.0 102.0 106.0 110.0 110.0 106.0 110.0 114.0 114.0 110.0 114.0 118.0 118.0 114.0 118.0 122.0 122.0 118.0 122.0 126.0 126.0 122.0 126.0 130.0 130.0 126.0 130.0 134.0 134.0 130.0 134.0 138.0 138.0 134.0 138.0 142.0 142.0 138.0 142.0 146.0 146.0 142.0 146.0 150.0 150.0 146.0 150.0 154.0 154.0 150.0 154.0 158.0 158.0 154.0 158.0 162.0 162.0 158.0 162.0 166.0 166.0 162.0 166.0 170.0 170.0 166.0 170.0 174.0 174.0 170.0 174.0 178.0 178.0 174.0 178.0 182.0 182.0 178.0 182.0 186.0 186.0 182.0 186.0 190.0 190.0 186.0 190.0 194.0 194.0 190.0 194.0 198.0 198.0 194.0 198.0 202.0 202.0 198.0 202.0 206.0 206.0 202.0 206.0 210.0 210.0 206.0 210.0 214.0 214.0 210.0 214.0 218.0 218.0 214.0 218.0 222.0 222.0 218.0 222.0 226.0 226.0 222.0 226.0 230.0 230.0 226.0 230.0 234.0 234.0 230.0 234.0 238.0 238.0 234.0 238.0 242.0 242.0 238.0 242.0 246.0 246.0 242.0 246.0 250.0 250.0 246.0 250.0 254.0 254.0 250.0 254.0 258.0 258.0 254.0 258.0 262.0 262.0 258.0 262.0 266.0 266.0 262.0 266.0 270.0 270.0 266.0 270.0 274.0 274.0 270.0 274.0 278.0 278.0 274.0 278.0 282.0 282.0 278.0 282.0 286.0 286.0 282.0 286.0 290.0 290.0 286.0 290.0 294.0 294.0 290.0 294.0 298.0 298.0 294.0 298.0 302.0 302.0 298.0 302.0 306.0 306.0 302.0 306.0 310.0 310.0 306.0 310.0 314.0 314.0 310.0 314.0 318.0 318.0 314.0 318.0 322.0 322.0 318.0 322.0 326.0 326.0 322.0 326.0 330.0 330.0 326.0 330.0 334.0 334.0 330.0 334.0 338.0 338.0 334.0 338.0 342.0 342.0 338.0 342.0 346.0 346.0 342.0 346.0 350.0 350.0 346.0 350.0 354.0 354.0 350.0 354.0 358.0 358.0 354.0 -2.0 2.0 2.0 -2.0 2.0 6.0 6.0 2.0 6.0 10.0 10.0 6.0 10.0 14.0 14.0 10.0 14.0 18.0 18.0 14.0 18.0 22.0 22.0 18.0 22.0 26.0 26.0 22.0 26.0 30.0 30.0 26.0 30.0 34.0 34.0 30.0 34.0 38.0 38.0 34.0 38.0 42.0 42.0 38.0 42.0 46.0 46.0 42.0 46.0 50.0 50.0 46.0 50.0 54.0 54.0 50.0 54.0 58.0 58.0 54.0 58.0 62.0 62.0 58.0 62.0 66.0 66.0 62.0 66.0 70.0 70.0 66.0 70.0 74.0 74.0 70.0 74.0 78.0 78.0 74.0 78.0 82.0 82.0 78.0 82.0 86.0 86.0 82.0 86.0 90.0 90.0 86.0 90.0 94.0 94.0 90.0 94.0 98.0 98.0 94.0 98.0 102.0 102.0 98.0 102.0 106.0 106.0 102.0 106.0 110.0 110.0 106.0 110.0 114.0 114.0 110.0 114.0 118.0 118.0 114.0 118.0 122.0 122.0 118.0 122.0 126.0 126.0 122.0 126.0 130.0 130.0 126.0 130.0 134.0 134.0 130.0 134.0 138.0 138.0 134.0 138.0 142.0 142.0 138.0 142.0 146.0 146.0 142.0 146.0 150.0 150.0 146.0 150.0 154.0 154.0 150.0 154.0 158.0 158.0 154.0 158.0 162.0 162.0 158.0 162.0 166.0 166.0 162.0 166.0 170.0 170.0 166.0 170.0 174.0 174.0 170.0 174.0 178.0 178.0 174.0 178.0 182.0 182.0 178.0 182.0 186.0 186.0 182.0 186.0 190.0 190.0 186.0 190.0 194.0 194.0 190.0 194.0 198.0 198.0 194.0 198.0 202.0 202.0 198.0 202.0 206.0 206.0 202.0 206.0 210.0 210.0 206.0 210.0 214.0 214.0 210.0 214.0 218.0 218.0 214.0 218.0 222.0 222.0 218.0 222.0 226.0 226.0 222.0 226.0 230.0 230.0 226.0 230.0 234.0 234.0 230.0 234.0 238.0 238.0 234.0 238.0 242.0 242.0 238.0 242.0 246.0 246.0 242.0 246.0 250.0 250.0 246.0 250.0 254.0 254.0 250.0 254.0 258.0 258.0 254.0 258.0 262.0 262.0 258.0 262.0 266.0 266.0 262.0 266.0 270.0 270.0 266.0 270.0 274.0 274.0 270.0 274.0 278.0 278.0 274.0 278.0 282.0 282.0 278.0 282.0 286.0 286.0 282.0 286.0 290.0 290.0 286.0 290.0 294.0 294.0 290.0 294.0 298.0 298.0 294.0 298.0 302.0 302.0 298.0 302.0 306.0 306.0 302.0 306.0 310.0 310.0 306.0 310.0 314.0 314.0 310.0 314.0 318.0 318.0 314.0 318.0 322.0 322.0 318.0 322.0 326.0 326.0 322.0 326.0 330.0 330.0 326.0 330.0 334.0 334.0 330.0 334.0 338.0 338.0 334.0 338.0 342.0 342.0 338.0 342.0 346.0 346.0 342.0 346.0 350.0 350.0 346.0 350.0 354.0 354.0 350.0 354.0 358.0 358.0 354.0 -1.8 1.8 1.8 -1.8 1.79999990463 5.39999990463 5.39999990463 1.79999990463 5.39999980927 8.99999980927 8.99999980927 5.39999980927 9.00000019073 12.6000001907 12.6000001907 9.00000019073 12.5999996185 16.1999996185 16.1999996185 12.5999996185 16.2 19.8 19.8 16.2 19.8000003815 23.4000003815 23.4000003815 19.8000003815 23.4000007629 27.0000007629 27.0000007629 23.4000007629 26.9999992371 30.5999992371 30.5999992371 26.9999992371 30.6000015259 34.2000015259 34.2000015259 30.6000015259 34.2 37.8 37.8 34.2 37.7999984741 41.3999984741 41.3999984741 37.7999984741 41.4000007629 45.0000007629 45.0000007629 41.4000007629 44.9999992371 48.5999992371 48.5999992371 44.9999992371 48.6000015259 52.2000015259 52.2000015259 48.6000015259 52.2 55.8 55.8 52.2 55.7999984741 59.3999984741 59.3999984741 55.7999984741 59.4000007629 63.0000007629 63.0000007629 59.4000007629 63.0000030518 66.6000030518 66.6000030518 63.0000030518 66.6000015259 70.2000015259 70.2000015259 66.6000015259 70.2 73.8 73.8 70.2 73.7999984741 77.3999984741 77.3999984741 73.7999984741 77.3999969482 80.9999969482 80.9999969482 77.3999969482 81.0000030518 84.6000030518 84.6000030518 81.0000030518 84.6000015259 88.2000015259 88.2000015259 84.6000015259 88.2 91.8 91.8 88.2 91.7999984741 95.3999984741 95.3999984741 91.7999984741 95.3999969482 98.9999969482 98.9999969482 95.3999969482 99.0000030518 102.600003052 102.600003052 99.0000030518 102.600001526 106.200001526 106.200001526 102.600001526 106.2 109.8 109.8 106.2 109.799998474 113.399998474 113.399998474 109.799998474 113.399996948 116.999996948 116.999996948 113.399996948 117.000003052 120.600003052 120.600003052 117.000003052 120.600001526 124.200001526 124.200001526 120.600001526 124.2 127.8 127.8 124.2 127.800006104 131.400006104 131.400006104 127.800006104 131.399996948 134.999996948 134.999996948 131.399996948 135.000003052 138.600003052 138.600003052 135.000003052 138.599993896 142.199993896 142.199993896 138.599993896 142.2 145.8 145.8 142.2 145.800006104 149.400006104 149.400006104 145.800006104 149.399996948 152.999996948 152.999996948 149.399996948 153.000003052 156.600003052 156.600003052 153.000003052 156.599993896 160.199993896 160.199993896 156.599993896 160.2 163.8 163.8 160.2 163.800006104 167.400006104 167.400006104 163.800006104 167.399996948 170.999996948 170.999996948 167.399996948 171.000003052 174.600003052 174.600003052 171.000003052 174.599993896 178.199993896 178.199993896 174.599993896 178.2 181.8 181.8 178.2 181.800006104 185.400006104 185.400006104 181.800006104 185.399996948 188.999996948 188.999996948 185.399996948 189.000003052 192.600003052 192.600003052 189.000003052 192.599993896 196.199993896 196.199993896 192.599993896 196.2 199.8 199.8 196.2 199.800006104 203.400006104 203.400006104 199.800006104 203.399996948 206.999996948 206.999996948 203.399996948 207.000003052 210.600003052 210.600003052 207.000003052 210.599993896 214.199993896 214.199993896 210.599993896 214.2 217.8 217.8 214.2 217.800006104 221.400006104 221.400006104 217.800006104 221.399996948 224.999996948 224.999996948 221.399996948 225.000003052 228.600003052 228.600003052 225.000003052 228.599993896 232.199993896 232.199993896 228.599993896 232.2 235.8 235.8 232.2 235.800006104 239.400006104 239.400006104 235.800006104 239.399996948 242.999996948 242.999996948 239.399996948 243.000003052 246.600003052 246.600003052 243.000003052 246.599993896 250.199993896 250.199993896 246.599993896 250.2 253.8 253.8 250.2 253.800006104 257.400006104 257.400006104 253.800006104 257.400012207 261.000012207 261.000012207 257.400012207 260.999987793 264.599987793 264.599987793 260.999987793 264.599993896 268.199993896 268.199993896 264.599993896 268.2 271.8 271.8 268.2 271.800006104 275.400006104 275.400006104 271.800006104 275.400012207 279.000012207 279.000012207 275.400012207 278.999987793 282.599987793 282.599987793 278.999987793 282.599993896 286.199993896 286.199993896 282.599993896 286.2 289.8 289.8 286.2 289.800006104 293.400006104 293.400006104 289.800006104 293.400012207 297.000012207 297.000012207 293.400012207 296.999987793 300.599987793 300.599987793 296.999987793 300.599993896 304.199993896 304.199993896 300.599993896 304.2 307.8 307.8 304.2 307.800006104 311.400006104 311.400006104 307.800006104 311.400012207 315.000012207 315.000012207 311.400012207 314.999987793 318.599987793 318.599987793 314.999987793 318.599993896 322.199993896 322.199993896 318.599993896 322.2 325.8 325.8 322.2 325.800006104 329.400006104 329.400006104 325.800006104 329.400012207 333.000012207 333.000012207 329.400012207 332.999987793 336.599987793 336.599987793 332.999987793 336.599993896 340.199993896 340.199993896 336.599993896 340.2 343.8 343.8 340.2 343.800006104 347.400006104 347.400006104 343.800006104 347.400012207 351.000012207 351.000012207 347.400012207 350.999987793 354.599987793 354.599987793 350.999987793 354.599993896 358.199993896 358.199993896 354.599993896 -1.66666666667 1.66666666667 1.66666666667 -1.66666666667 1.66666658719 4.99999992053 4.99999992053 1.66666658719 4.99999984105 8.33333317439 8.33333317439 4.99999984105 8.33333333333 11.6666666667 11.6666666667 8.33333333333 11.6666663488 14.9999996821 14.9999996821 11.6666663488 14.9999993642 18.3333326976 18.3333326976 14.9999993642 18.3333333333 21.6666666667 21.6666666667 18.3333333333 21.6666673024 25.0000006358 25.0000006358 21.6666673024 24.9999993642 28.3333326976 28.3333326976 24.9999993642 28.3333333333 31.6666666667 31.6666666667 28.3333333333 31.6666653951 34.9999987284 34.9999987284 31.6666653951 35.0000012716 38.3333346049 38.3333346049 35.0000012716 38.3333333333 41.6666666667 41.6666666667 38.3333333333 41.6666653951 44.9999987284 44.9999987284 41.6666653951 45.0000012716 48.3333346049 48.3333346049 45.0000012716 48.3333333333 51.6666666667 51.6666666667 48.3333333333 51.6666653951 54.9999987284 54.9999987284 51.6666653951 55.0000012716 58.3333346049 58.3333346049 55.0000012716 58.3333333333 61.6666666667 61.6666666667 58.3333333333 61.6666653951 64.9999987284 64.9999987284 61.6666653951 64.9999974569 68.3333307902 68.3333307902 64.9999974569 68.3333333333 71.6666666667 71.6666666667 68.3333333333 71.6666692098 75.0000025431 75.0000025431 71.6666692098 74.9999974569 78.3333307902 78.3333307902 74.9999974569 78.3333333333 81.6666666667 81.6666666667 78.3333333333 81.6666692098 85.0000025431 85.0000025431 81.6666692098 84.9999974569 88.3333307902 88.3333307902 84.9999974569 88.3333333333 91.6666666667 91.6666666667 88.3333333333 91.6666692098 95.0000025431 95.0000025431 91.6666692098 94.9999974569 98.3333307902 98.3333307902 94.9999974569 98.3333333333 101.666666667 101.666666667 98.3333333333 101.66666921 105.000002543 105.000002543 101.66666921 104.999997457 108.33333079 108.33333079 104.999997457 108.333333333 111.666666667 111.666666667 108.333333333 111.66666921 115.000002543 115.000002543 111.66666921 114.999997457 118.33333079 118.33333079 114.999997457 118.333333333 121.666666667 121.666666667 118.333333333 121.66666921 125.000002543 125.000002543 121.66666921 124.999997457 128.33333079 128.33333079 124.999997457 128.333333333 131.666666667 131.666666667 128.333333333 131.66666158 134.999994914 134.999994914 131.66666158 135.000005086 138.33333842 138.33333842 135.000005086 138.333333333 141.666666667 141.666666667 138.333333333 141.66666158 144.999994914 144.999994914 141.66666158 145.000005086 148.33333842 148.33333842 145.000005086 148.333333333 151.666666667 151.666666667 148.333333333 151.66666158 154.999994914 154.999994914 151.66666158 155.000005086 158.33333842 158.33333842 155.000005086 158.333333333 161.666666667 161.666666667 158.333333333 161.66666158 164.999994914 164.999994914 161.66666158 165.000005086 168.33333842 168.33333842 165.000005086 168.333333333 171.666666667 171.666666667 168.333333333 171.66666158 174.999994914 174.999994914 171.66666158 175.000005086 178.33333842 178.33333842 175.000005086 178.333333333 181.666666667 181.666666667 178.333333333 181.66666158 184.999994914 184.999994914 181.66666158 185.000005086 188.33333842 188.33333842 185.000005086 188.333333333 191.666666667 191.666666667 188.333333333 191.66666158 194.999994914 194.999994914 191.66666158 195.000005086 198.33333842 198.33333842 195.000005086 198.333333333 201.666666667 201.666666667 198.333333333 201.66666158 204.999994914 204.999994914 201.66666158 205.000005086 208.33333842 208.33333842 205.000005086 208.333333333 211.666666667 211.666666667 208.333333333 211.66666158 214.999994914 214.999994914 211.66666158 215.000005086 218.33333842 218.33333842 215.000005086 218.333333333 221.666666667 221.666666667 218.333333333 221.66666158 224.999994914 224.999994914 221.66666158 225.000005086 228.33333842 228.33333842 225.000005086 228.333333333 231.666666667 231.666666667 228.333333333 231.66666158 234.999994914 234.999994914 231.66666158 235.000005086 238.33333842 238.33333842 235.000005086 238.333333333 241.666666667 241.666666667 238.333333333 241.66666158 244.999994914 244.999994914 241.66666158 245.000005086 248.33333842 248.33333842 245.000005086 248.333333333 251.666666667 251.666666667 248.333333333 251.66666158 254.999994914 254.999994914 251.66666158 254.999989827 258.333323161 258.333323161 254.999989827 258.333333333 261.666666667 261.666666667 258.333333333 261.666676839 265.000010173 265.000010173 261.666676839 264.999989827 268.333323161 268.333323161 264.999989827 268.333333333 271.666666667 271.666666667 268.333333333 271.666676839 275.000010173 275.000010173 271.666676839 274.999989827 278.333323161 278.333323161 274.999989827 278.333333333 281.666666667 281.666666667 278.333333333 281.666676839 285.000010173 285.000010173 281.666676839 284.999989827 288.333323161 288.333323161 284.999989827 288.333333333 291.666666667 291.666666667 288.333333333 291.666676839 295.000010173 295.000010173 291.666676839 294.999989827 298.333323161 298.333323161 294.999989827 298.333333333 301.666666667 301.666666667 298.333333333 301.666676839 305.000010173 305.000010173 301.666676839 304.999989827 308.333323161 308.333323161 304.999989827 308.333333333 311.666666667 311.666666667 308.333333333 311.666676839 315.000010173 315.000010173 311.666676839 314.999989827 318.333323161 318.333323161 314.999989827 318.333333333 321.666666667 321.666666667 318.333333333 321.666676839 325.000010173 325.000010173 321.666676839 324.999989827 328.333323161 328.333323161 324.999989827 328.333333333 331.666666667 331.666666667 328.333333333 331.666676839 335.000010173 335.000010173 331.666676839 334.999989827 338.333323161 338.333323161 334.999989827 338.333333333 341.666666667 341.666666667 338.333333333 341.666676839 345.000010173 345.000010173 341.666676839 344.999989827 348.333323161 348.333323161 344.999989827 348.333333333 351.666666667 351.666666667 348.333333333 351.666676839 355.000010173 355.000010173 351.666676839 354.999989827 358.333323161 358.333323161 354.999989827 -1.5 1.5 1.5 -1.5 1.5 4.5 4.5 1.5 4.5 7.5 7.5 4.5 7.5 10.5 10.5 7.5 10.5 13.5 13.5 10.5 13.5 16.5 16.5 13.5 16.5 19.5 19.5 16.5 19.5 22.5 22.5 19.5 22.5 25.5 25.5 22.5 25.5 28.5 28.5 25.5 28.5 31.5 31.5 28.5 31.5 34.5 34.5 31.5 34.5 37.5 37.5 34.5 37.5 40.5 40.5 37.5 40.5 43.5 43.5 40.5 43.5 46.5 46.5 43.5 46.5 49.5 49.5 46.5 49.5 52.5 52.5 49.5 52.5 55.5 55.5 52.5 55.5 58.5 58.5 55.5 58.5 61.5 61.5 58.5 61.5 64.5 64.5 61.5 64.5 67.5 67.5 64.5 67.5 70.5 70.5 67.5 70.5 73.5 73.5 70.5 73.5 76.5 76.5 73.5 76.5 79.5 79.5 76.5 79.5 82.5 82.5 79.5 82.5 85.5 85.5 82.5 85.5 88.5 88.5 85.5 88.5 91.5 91.5 88.5 91.5 94.5 94.5 91.5 94.5 97.5 97.5 94.5 97.5 100.5 100.5 97.5 100.5 103.5 103.5 100.5 103.5 106.5 106.5 103.5 106.5 109.5 109.5 106.5 109.5 112.5 112.5 109.5 112.5 115.5 115.5 112.5 115.5 118.5 118.5 115.5 118.5 121.5 121.5 118.5 121.5 124.5 124.5 121.5 124.5 127.5 127.5 124.5 127.5 130.5 130.5 127.5 130.5 133.5 133.5 130.5 133.5 136.5 136.5 133.5 136.5 139.5 139.5 136.5 139.5 142.5 142.5 139.5 142.5 145.5 145.5 142.5 145.5 148.5 148.5 145.5 +148.5 151.5 151.5 148.5 151.5 154.5 154.5 151.5 154.5 157.5 157.5 154.5 157.5 160.5 160.5 157.5 160.5 163.5 163.5 160.5 163.5 166.5 166.5 163.5 166.5 169.5 169.5 166.5 169.5 172.5 172.5 169.5 172.5 175.5 175.5 172.5 175.5 178.5 178.5 175.5 178.5 181.5 181.5 178.5 181.5 184.5 184.5 181.5 184.5 187.5 187.5 184.5 187.5 190.5 190.5 187.5 190.5 193.5 193.5 190.5 193.5 196.5 196.5 193.5 196.5 199.5 199.5 196.5 199.5 202.5 202.5 199.5 202.5 205.5 205.5 202.5 205.5 208.5 208.5 205.5 208.5 211.5 211.5 208.5 211.5 214.5 214.5 211.5 214.5 217.5 217.5 214.5 217.5 220.5 220.5 217.5 220.5 223.5 223.5 220.5 223.5 226.5 226.5 223.5 226.5 229.5 229.5 226.5 229.5 232.5 232.5 229.5 232.5 235.5 235.5 232.5 235.5 238.5 238.5 235.5 238.5 241.5 241.5 238.5 241.5 244.5 244.5 241.5 244.5 247.5 247.5 244.5 247.5 250.5 250.5 247.5 250.5 253.5 253.5 250.5 253.5 256.5 256.5 253.5 256.5 259.5 259.5 256.5 259.5 262.5 262.5 259.5 262.5 265.5 265.5 262.5 265.5 268.5 268.5 265.5 268.5 271.5 271.5 268.5 271.5 274.5 274.5 271.5 274.5 277.5 277.5 274.5 277.5 280.5 280.5 277.5 280.5 283.5 283.5 280.5 283.5 286.5 286.5 283.5 286.5 289.5 289.5 286.5 289.5 292.5 292.5 289.5 292.5 295.5 295.5 292.5 295.5 298.5 298.5 295.5 298.5 301.5 301.5 298.5 301.5 304.5 304.5 301.5 304.5 307.5 307.5 304.5 307.5 310.5 310.5 307.5 310.5 313.5 313.5 310.5 313.5 316.5 316.5 313.5 316.5 319.5 319.5 316.5 319.5 322.5 322.5 319.5 322.5 325.5 325.5 322.5 325.5 328.5 328.5 325.5 328.5 331.5 331.5 328.5 331.5 334.5 334.5 331.5 334.5 337.5 337.5 334.5 337.5 340.5 340.5 337.5 340.5 343.5 343.5 340.5 343.5 346.5 346.5 343.5 346.5 349.5 349.5 346.5 349.5 352.5 352.5 349.5 352.5 355.5 355.5 352.5 355.5 358.5 358.5 355.5 -1.5 1.5 1.5 -1.5 1.5 4.5 4.5 1.5 4.5 7.5 7.5 4.5 7.5 10.5 10.5 7.5 10.5 13.5 13.5 10.5 13.5 16.5 16.5 13.5 16.5 19.5 19.5 16.5 19.5 22.5 22.5 19.5 22.5 25.5 25.5 22.5 25.5 28.5 28.5 25.5 28.5 31.5 31.5 28.5 31.5 34.5 34.5 31.5 34.5 37.5 37.5 34.5 37.5 40.5 40.5 37.5 40.5 43.5 43.5 40.5 43.5 46.5 46.5 43.5 46.5 49.5 49.5 46.5 49.5 52.5 52.5 49.5 52.5 55.5 55.5 52.5 55.5 58.5 58.5 55.5 58.5 61.5 61.5 58.5 61.5 64.5 64.5 61.5 64.5 67.5 67.5 64.5 67.5 70.5 70.5 67.5 70.5 73.5 73.5 70.5 73.5 76.5 76.5 73.5 76.5 79.5 79.5 76.5 79.5 82.5 82.5 79.5 82.5 85.5 85.5 82.5 85.5 88.5 88.5 85.5 88.5 91.5 91.5 88.5 91.5 94.5 94.5 91.5 94.5 97.5 97.5 94.5 97.5 100.5 100.5 97.5 100.5 103.5 103.5 100.5 103.5 106.5 106.5 103.5 106.5 109.5 109.5 106.5 109.5 112.5 112.5 109.5 112.5 115.5 115.5 112.5 115.5 118.5 118.5 115.5 118.5 121.5 121.5 118.5 121.5 124.5 124.5 121.5 124.5 127.5 127.5 124.5 127.5 130.5 130.5 127.5 130.5 133.5 133.5 130.5 133.5 136.5 136.5 133.5 136.5 139.5 139.5 136.5 139.5 142.5 142.5 139.5 142.5 145.5 145.5 142.5 145.5 148.5 148.5 145.5 148.5 151.5 151.5 148.5 151.5 154.5 154.5 151.5 154.5 157.5 157.5 154.5 157.5 160.5 160.5 157.5 160.5 163.5 163.5 160.5 163.5 166.5 166.5 163.5 166.5 169.5 169.5 166.5 169.5 172.5 172.5 169.5 172.5 175.5 175.5 172.5 175.5 178.5 178.5 175.5 178.5 181.5 181.5 178.5 181.5 184.5 184.5 181.5 184.5 187.5 187.5 184.5 187.5 190.5 190.5 187.5 190.5 193.5 193.5 190.5 193.5 196.5 196.5 193.5 196.5 199.5 199.5 196.5 199.5 202.5 202.5 199.5 202.5 205.5 205.5 202.5 205.5 208.5 208.5 205.5 208.5 211.5 211.5 208.5 211.5 214.5 214.5 211.5 214.5 217.5 217.5 214.5 217.5 220.5 220.5 217.5 220.5 223.5 223.5 220.5 223.5 226.5 226.5 223.5 226.5 229.5 229.5 226.5 229.5 232.5 232.5 229.5 232.5 235.5 235.5 232.5 235.5 238.5 238.5 235.5 238.5 241.5 241.5 238.5 241.5 244.5 244.5 241.5 244.5 247.5 247.5 244.5 247.5 250.5 250.5 247.5 250.5 253.5 253.5 250.5 253.5 256.5 256.5 253.5 256.5 259.5 259.5 256.5 259.5 262.5 262.5 259.5 262.5 265.5 265.5 262.5 265.5 268.5 268.5 265.5 268.5 271.5 271.5 268.5 271.5 274.5 274.5 271.5 274.5 277.5 277.5 274.5 277.5 280.5 280.5 277.5 280.5 283.5 283.5 280.5 283.5 286.5 286.5 283.5 286.5 289.5 289.5 286.5 289.5 292.5 292.5 289.5 292.5 295.5 295.5 292.5 295.5 298.5 298.5 295.5 298.5 301.5 301.5 298.5 301.5 304.5 304.5 301.5 304.5 307.5 307.5 304.5 307.5 310.5 310.5 307.5 310.5 313.5 313.5 310.5 313.5 316.5 316.5 313.5 316.5 319.5 319.5 316.5 319.5 322.5 322.5 319.5 322.5 325.5 325.5 322.5 325.5 328.5 328.5 325.5 328.5 331.5 331.5 328.5 331.5 334.5 334.5 331.5 334.5 337.5 337.5 334.5 337.5 340.5 340.5 337.5 340.5 343.5 343.5 340.5 343.5 346.5 346.5 343.5 346.5 349.5 349.5 346.5 349.5 352.5 352.5 349.5 352.5 355.5 355.5 352.5 355.5 358.5 358.5 355.5 -1.44 1.44 1.44 -1.44 1.44000011444 4.32000011444 4.32000011444 1.44000011444 4.32000022888 7.20000022888 7.20000022888 4.32000022888 7.20000034332 10.0800003433 10.0800003433 7.20000034332 10.0800004578 12.9600004578 12.9600004578 10.0800004578 12.9599996185 15.8399996185 15.8399996185 12.9599996185 15.8400006866 18.7200006866 18.7200006866 15.8400006866 18.7199998474 21.5999998474 21.5999998474 18.7199998474 21.6000009155 24.4800009155 24.4800009155 21.6000009155 24.4800000763 27.3600000763 27.3600000763 24.4800000763 27.3599992371 30.2399992371 30.2399992371 27.3599992371 30.2400003052 33.1200003052 33.1200003052 30.2400003052 33.1200013733 36.0000013733 36.0000013733 33.1200013733 35.9999986267 38.8799986267 38.8799986267 35.9999986267 38.8799996948 41.7599996948 41.7599996948 38.8799996948 41.7600007629 44.6400007629 44.6400007629 41.7600007629 44.6400018311 47.5200018311 47.5200018311 44.6400018311 47.5199990845 50.3999990845 50.3999990845 47.5199990845 50.4000001526 53.2800001526 53.2800001526 50.4000001526 53.2800012207 56.1600012207 56.1600012207 53.2800012207 56.1599984741 59.0399984741 59.0399984741 56.1599984741 59.0399995422 61.9199995422 61.9199995422 59.0399995422 61.9200006104 64.8000006104 64.8000006104 61.9200006104 64.7999978638 67.6799978638 67.6799978638 64.7999978638 67.6800027466 70.5600027466 70.5600027466 67.6800027466 70.56 73.44 73.44 70.56 73.4399972534 76.3199972534 76.3199972534 73.4399972534 76.3200021362 79.2000021362 79.2000021362 76.3200021362 79.1999993896 82.0799993896 82.0799993896 79.1999993896 82.0799966431 84.9599966431 84.9599966431 82.0799966431 84.9600015259 87.8400015259 87.8400015259 84.9600015259 87.8399987793 90.7199987793 90.7199987793 87.8399987793 90.7200036621 93.6000036621 93.6000036621 90.7200036621 93.6000009155 96.4800009155 96.4800009155 93.6000009155 96.4799981689 99.3599981689 99.3599981689 96.4799981689 99.3600030518 102.240003052 102.240003052 99.3600030518 102.240000305 105.120000305 105.120000305 102.240000305 105.119997559 107.999997559 107.999997559 105.119997559 108.000002441 110.880002441 110.880002441 108.000002441 110.879999695 113.759999695 113.759999695 110.879999695 113.759996948 116.639996948 116.639996948 113.759996948 116.640001831 119.520001831 119.520001831 116.640001831 119.519999084 122.399999084 122.399999084 119.519999084 122.399996338 125.279996338 125.279996338 122.399996338 125.280001221 128.160001221 128.160001221 125.280001221 128.160006104 131.040006104 131.040006104 128.160006104 131.039995728 133.919995728 133.919995728 131.039995728 133.92000061 136.80000061 136.80000061 133.92000061 136.800005493 139.680005493 139.680005493 136.800005493 139.679995117 142.559995117 142.559995117 139.679995117 142.56 145.44 145.44 142.56 145.440004883 148.320004883 148.320004883 145.440004883 148.319994507 151.199994507 151.199994507 148.319994507 151.19999939 154.07999939 154.07999939 151.19999939 154.080004272 156.960004272 156.960004272 154.080004272 156.959993896 159.839993896 159.839993896 156.959993896 159.839998779 162.719998779 162.719998779 159.839998779 162.720003662 165.600003662 165.600003662 162.720003662 165.599993286 168.479993286 168.479993286 165.599993286 168.479998169 171.359998169 171.359998169 168.479998169 171.360003052 174.240003052 174.240003052 171.360003052 174.239992676 177.119992676 177.119992676 174.239992676 177.119997559 179.999997559 179.999997559 177.119997559 180.000002441 182.880002441 182.880002441 180.000002441 182.880007324 185.760007324 185.760007324 182.880007324 185.759996948 188.639996948 188.639996948 185.759996948 188.640001831 191.520001831 191.520001831 188.640001831 191.520006714 194.400006714 194.400006714 191.520006714 194.399996338 197.279996338 197.279996338 194.399996338 197.280001221 200.160001221 200.160001221 197.280001221 200.160006104 203.040006104 203.040006104 200.160006104 203.039995728 205.919995728 205.919995728 203.039995728 205.92000061 208.80000061 208.80000061 205.92000061 208.800005493 211.680005493 211.680005493 208.800005493 211.679995117 214.559995117 214.559995117 211.679995117 214.56 217.44 217.44 214.56 217.440004883 220.320004883 220.320004883 217.440004883 220.319994507 223.199994507 223.199994507 220.319994507 223.19999939 226.07999939 226.07999939 223.19999939 226.080004272 228.960004272 228.960004272 226.080004272 228.959993896 231.839993896 231.839993896 228.959993896 231.839998779 234.719998779 234.719998779 231.839998779 234.720003662 237.600003662 237.600003662 234.720003662 237.599993286 240.479993286 240.479993286 237.599993286 240.479998169 243.359998169 243.359998169 240.479998169 243.360003052 246.240003052 246.240003052 243.360003052 246.239992676 249.119992676 249.119992676 246.239992676 249.119997559 251.999997559 251.999997559 249.119997559 252.000002441 254.880002441 254.880002441 252.000002441 254.880007324 257.760007324 257.760007324 254.880007324 257.760012207 260.640012207 260.640012207 257.760012207 260.639986572 263.519986572 263.519986572 260.639986572 263.519991455 266.399991455 266.399991455 263.519991455 266.399996338 269.279996338 269.279996338 266.399996338 269.280001221 272.160001221 272.160001221 269.280001221 272.160006104 275.040006104 275.040006104 272.160006104 275.040010986 277.920010986 277.920010986 275.040010986 277.919985352 280.799985352 280.799985352 277.919985352 280.799990234 283.679990234 283.679990234 280.799990234 283.679995117 286.559995117 286.559995117 283.679995117 286.56 289.44 289.44 286.56 289.440004883 292.320004883 292.320004883 289.440004883 292.320009766 295.200009766 295.200009766 292.320009766 295.200014648 298.080014648 298.080014648 295.200014648 298.079989014 300.959989014 300.959989014 298.079989014 300.959993896 303.839993896 303.839993896 300.959993896 303.839998779 306.719998779 306.719998779 303.839998779 306.720003662 309.600003662 309.600003662 306.720003662 309.600008545 312.480008545 312.480008545 309.600008545 312.480013428 315.360013428 315.360013428 312.480013428 315.359987793 318.239987793 318.239987793 315.359987793 318.239992676 321.119992676 321.119992676 318.239992676 321.119997559 323.999997559 323.999997559 321.119997559 324.000002441 326.880002441 326.880002441 324.000002441 326.880007324 329.760007324 329.760007324 326.880007324 329.760012207 332.640012207 332.640012207 329.760012207 332.639986572 335.519986572 335.519986572 332.639986572 335.519991455 338.399991455 338.399991455 335.519991455 338.399996338 341.279996338 341.279996338 338.399996338 341.280001221 344.160001221 344.160001221 341.280001221 344.160006104 347.040006104 347.040006104 344.160006104 347.040010986 349.920010986 349.920010986 347.040010986 349.919985352 352.799985352 352.799985352 349.919985352 352.799990234 355.679990234 355.679990234 352.799990234 355.679995117 358.559995117 358.559995117 355.679995117 -1.40625 1.40625 1.40625 -1.40625 1.40625 4.21875 4.21875 1.40625 4.21875 7.03125 7.03125 4.21875 7.03125 9.84375 9.84375 7.03125 9.84375 12.65625 12.65625 9.84375 12.65625 15.46875 15.46875 12.65625 15.46875 18.28125 18.28125 15.46875 18.28125 21.09375 21.09375 18.28125 21.09375 23.90625 23.90625 21.09375 23.90625 26.71875 26.71875 23.90625 26.71875 29.53125 29.53125 26.71875 29.53125 32.34375 32.34375 29.53125 32.34375 35.15625 35.15625 32.34375 35.15625 37.96875 37.96875 35.15625 37.96875 40.78125 40.78125 37.96875 40.78125 43.59375 43.59375 40.78125 43.59375 46.40625 46.40625 43.59375 46.40625 49.21875 49.21875 46.40625 49.21875 52.03125 52.03125 49.21875 52.03125 54.84375 54.84375 52.03125 54.84375 57.65625 57.65625 54.84375 57.65625 60.46875 60.46875 57.65625 60.46875 63.28125 63.28125 60.46875 63.28125 66.09375 66.09375 63.28125 66.09375 68.90625 68.90625 66.09375 68.90625 71.71875 71.71875 68.90625 71.71875 74.53125 74.53125 71.71875 74.53125 77.34375 77.34375 74.53125 77.34375 80.15625 80.15625 77.34375 80.15625 82.96875 82.96875 80.15625 82.96875 85.78125 85.78125 82.96875 85.78125 88.59375 88.59375 85.78125 88.59375 91.40625 91.40625 88.59375 91.40625 94.21875 94.21875 91.40625 94.21875 97.03125 97.03125 94.21875 97.03125 99.84375 99.84375 97.03125 99.84375 102.65625 102.65625 99.84375 102.65625 105.46875 105.46875 102.65625 105.46875 108.28125 108.28125 105.46875 108.28125 111.09375 111.09375 108.28125 111.09375 113.90625 113.90625 111.09375 113.90625 116.71875 116.71875 113.90625 116.71875 119.53125 119.53125 116.71875 119.53125 122.34375 122.34375 119.53125 122.34375 125.15625 125.15625 122.34375 125.15625 127.96875 127.96875 125.15625 127.96875 130.78125 130.78125 127.96875 130.78125 133.59375 133.59375 130.78125 133.59375 136.40625 136.40625 133.59375 136.40625 139.21875 139.21875 136.40625 139.21875 142.03125 142.03125 139.21875 142.03125 144.84375 144.84375 142.03125 144.84375 147.65625 147.65625 144.84375 147.65625 150.46875 150.46875 147.65625 150.46875 153.28125 153.28125 150.46875 153.28125 156.09375 156.09375 153.28125 156.09375 158.90625 158.90625 156.09375 158.90625 161.71875 161.71875 158.90625 161.71875 164.53125 164.53125 161.71875 164.53125 167.34375 167.34375 164.53125 167.34375 170.15625 170.15625 167.34375 170.15625 172.96875 172.96875 170.15625 172.96875 175.78125 175.78125 172.96875 175.78125 178.59375 178.59375 175.78125 178.59375 181.40625 181.40625 178.59375 181.40625 184.21875 184.21875 181.40625 184.21875 187.03125 187.03125 184.21875 187.03125 189.84375 189.84375 187.03125 189.84375 192.65625 192.65625 189.84375 192.65625 195.46875 195.46875 192.65625 195.46875 198.28125 198.28125 195.46875 198.28125 201.09375 201.09375 198.28125 201.09375 203.90625 203.90625 201.09375 203.90625 206.71875 206.71875 203.90625 206.71875 209.53125 209.53125 206.71875 209.53125 212.34375 212.34375 209.53125 212.34375 215.15625 215.15625 212.34375 215.15625 217.96875 217.96875 215.15625 217.96875 220.78125 220.78125 217.96875 220.78125 223.59375 223.59375 220.78125 223.59375 226.40625 226.40625 223.59375 226.40625 229.21875 229.21875 226.40625 229.21875 232.03125 232.03125 229.21875 232.03125 234.84375 234.84375 232.03125 234.84375 237.65625 237.65625 234.84375 237.65625 240.46875 240.46875 237.65625 240.46875 243.28125 243.28125 240.46875 243.28125 246.09375 246.09375 243.28125 246.09375 248.90625 248.90625 246.09375 248.90625 251.71875 251.71875 248.90625 251.71875 254.53125 254.53125 251.71875 254.53125 257.34375 257.34375 254.53125 257.34375 260.15625 260.15625 257.34375 260.15625 262.96875 262.96875 260.15625 262.96875 265.78125 265.78125 262.96875 265.78125 268.59375 268.59375 265.78125 268.59375 271.40625 271.40625 268.59375 271.40625 274.21875 274.21875 271.40625 274.21875 277.03125 277.03125 274.21875 277.03125 279.84375 279.84375 277.03125 279.84375 282.65625 282.65625 279.84375 282.65625 285.46875 285.46875 282.65625 285.46875 288.28125 288.28125 285.46875 288.28125 291.09375 291.09375 288.28125 291.09375 293.90625 293.90625 291.09375 293.90625 296.71875 296.71875 293.90625 296.71875 299.53125 299.53125 296.71875 299.53125 302.34375 302.34375 299.53125 302.34375 305.15625 305.15625 302.34375 305.15625 307.96875 307.96875 305.15625 307.96875 310.78125 310.78125 307.96875 310.78125 313.59375 313.59375 310.78125 313.59375 316.40625 316.40625 313.59375 316.40625 319.21875 319.21875 316.40625 319.21875 322.03125 322.03125 319.21875 322.03125 324.84375 324.84375 322.03125 324.84375 327.65625 327.65625 324.84375 327.65625 330.46875 330.46875 327.65625 330.46875 333.28125 333.28125 330.46875 333.28125 336.09375 336.09375 333.28125 336.09375 338.90625 338.90625 336.09375 338.90625 341.71875 341.71875 338.90625 341.71875 344.53125 344.53125 341.71875 344.53125 347.34375 347.34375 344.53125 347.34375 350.15625 350.15625 347.34375 350.15625 352.96875 352.96875 350.15625 352.96875 355.78125 355.78125 352.96875 355.78125 358.59375 358.59375 355.78125 -1.25 1.25 1.25 -1.25 1.25 3.75 3.75 1.25 3.75 6.25 6.25 3.75 6.25 8.75 8.75 6.25 8.75 11.25 11.25 8.75 11.25 13.75 13.75 11.25 13.75 16.25 16.25 13.75 16.25 18.75 18.75 16.25 18.75 21.25 21.25 18.75 21.25 23.75 23.75 21.25 23.75 26.25 26.25 23.75 26.25 28.75 28.75 26.25 28.75 31.25 31.25 28.75 31.25 33.75 33.75 31.25 33.75 36.25 36.25 33.75 36.25 38.75 38.75 36.25 38.75 41.25 41.25 38.75 41.25 43.75 43.75 41.25 43.75 46.25 46.25 43.75 46.25 48.75 48.75 46.25 48.75 51.25 51.25 48.75 51.25 53.75 53.75 51.25 53.75 56.25 56.25 53.75 56.25 58.75 58.75 56.25 58.75 61.25 61.25 58.75 61.25 63.75 63.75 61.25 63.75 66.25 66.25 63.75 66.25 68.75 68.75 66.25 68.75 71.25 71.25 68.75 71.25 73.75 73.75 71.25 73.75 76.25 76.25 73.75 76.25 78.75 78.75 76.25 78.75 81.25 81.25 78.75 81.25 83.75 83.75 81.25 83.75 86.25 86.25 83.75 86.25 88.75 88.75 86.25 88.75 91.25 91.25 88.75 91.25 93.75 93.75 91.25 93.75 96.25 96.25 93.75 96.25 98.75 98.75 96.25 98.75 101.25 101.25 98.75 101.25 103.75 103.75 101.25 103.75 106.25 106.25 103.75 106.25 108.75 108.75 106.25 108.75 111.25 111.25 108.75 111.25 113.75 113.75 111.25 113.75 116.25 116.25 113.75 116.25 118.75 118.75 116.25 118.75 121.25 121.25 118.75 121.25 123.75 123.75 121.25 123.75 126.25 126.25 123.75 126.25 128.75 128.75 126.25 128.75 131.25 131.25 128.75 131.25 133.75 133.75 131.25 133.75 136.25 136.25 133.75 136.25 138.75 138.75 136.25 138.75 141.25 141.25 138.75 +141.25 143.75 143.75 141.25 143.75 146.25 146.25 143.75 146.25 148.75 148.75 146.25 148.75 151.25 151.25 148.75 151.25 153.75 153.75 151.25 153.75 156.25 156.25 153.75 156.25 158.75 158.75 156.25 158.75 161.25 161.25 158.75 161.25 163.75 163.75 161.25 163.75 166.25 166.25 163.75 166.25 168.75 168.75 166.25 168.75 171.25 171.25 168.75 171.25 173.75 173.75 171.25 173.75 176.25 176.25 173.75 176.25 178.75 178.75 176.25 178.75 181.25 181.25 178.75 181.25 183.75 183.75 181.25 183.75 186.25 186.25 183.75 186.25 188.75 188.75 186.25 188.75 191.25 191.25 188.75 191.25 193.75 193.75 191.25 193.75 196.25 196.25 193.75 196.25 198.75 198.75 196.25 198.75 201.25 201.25 198.75 201.25 203.75 203.75 201.25 203.75 206.25 206.25 203.75 206.25 208.75 208.75 206.25 208.75 211.25 211.25 208.75 211.25 213.75 213.75 211.25 213.75 216.25 216.25 213.75 216.25 218.75 218.75 216.25 218.75 221.25 221.25 218.75 221.25 223.75 223.75 221.25 223.75 226.25 226.25 223.75 226.25 228.75 228.75 226.25 228.75 231.25 231.25 228.75 231.25 233.75 233.75 231.25 233.75 236.25 236.25 233.75 236.25 238.75 238.75 236.25 238.75 241.25 241.25 238.75 241.25 243.75 243.75 241.25 243.75 246.25 246.25 243.75 246.25 248.75 248.75 246.25 248.75 251.25 251.25 248.75 251.25 253.75 253.75 251.25 253.75 256.25 256.25 253.75 256.25 258.75 258.75 256.25 258.75 261.25 261.25 258.75 261.25 263.75 263.75 261.25 263.75 266.25 266.25 263.75 266.25 268.75 268.75 266.25 268.75 271.25 271.25 268.75 271.25 273.75 273.75 271.25 273.75 276.25 276.25 273.75 276.25 278.75 278.75 276.25 278.75 281.25 281.25 278.75 281.25 283.75 283.75 281.25 283.75 286.25 286.25 283.75 286.25 288.75 288.75 286.25 288.75 291.25 291.25 288.75 291.25 293.75 293.75 291.25 293.75 296.25 296.25 293.75 296.25 298.75 298.75 296.25 298.75 301.25 301.25 298.75 301.25 303.75 303.75 301.25 303.75 306.25 306.25 303.75 306.25 308.75 308.75 306.25 308.75 311.25 311.25 308.75 311.25 313.75 313.75 311.25 313.75 316.25 316.25 313.75 316.25 318.75 318.75 316.25 318.75 321.25 321.25 318.75 321.25 323.75 323.75 321.25 323.75 326.25 326.25 323.75 326.25 328.75 328.75 326.25 328.75 331.25 331.25 328.75 331.25 333.75 333.75 331.25 333.75 336.25 336.25 333.75 336.25 338.75 338.75 336.25 338.75 341.25 341.25 338.75 341.25 343.75 343.75 341.25 343.75 346.25 346.25 343.75 346.25 348.75 348.75 346.25 348.75 351.25 351.25 348.75 351.25 353.75 353.75 351.25 353.75 356.25 356.25 353.75 356.25 358.75 358.75 356.25 -1.25 1.25 1.25 -1.25 1.25 3.75 3.75 1.25 3.75 6.25 6.25 3.75 6.25 8.75 8.75 6.25 8.75 11.25 11.25 8.75 11.25 13.75 13.75 11.25 13.75 16.25 16.25 13.75 16.25 18.75 18.75 16.25 18.75 21.25 21.25 18.75 21.25 23.75 23.75 21.25 23.75 26.25 26.25 23.75 26.25 28.75 28.75 26.25 28.75 31.25 31.25 28.75 31.25 33.75 33.75 31.25 33.75 36.25 36.25 33.75 36.25 38.75 38.75 36.25 38.75 41.25 41.25 38.75 41.25 43.75 43.75 41.25 43.75 46.25 46.25 43.75 46.25 48.75 48.75 46.25 48.75 51.25 51.25 48.75 51.25 53.75 53.75 51.25 53.75 56.25 56.25 53.75 56.25 58.75 58.75 56.25 58.75 61.25 61.25 58.75 61.25 63.75 63.75 61.25 63.75 66.25 66.25 63.75 66.25 68.75 68.75 66.25 68.75 71.25 71.25 68.75 71.25 73.75 73.75 71.25 73.75 76.25 76.25 73.75 76.25 78.75 78.75 76.25 78.75 81.25 81.25 78.75 81.25 83.75 83.75 81.25 83.75 86.25 86.25 83.75 86.25 88.75 88.75 86.25 88.75 91.25 91.25 88.75 91.25 93.75 93.75 91.25 93.75 96.25 96.25 93.75 96.25 98.75 98.75 96.25 98.75 101.25 101.25 98.75 101.25 103.75 103.75 101.25 103.75 106.25 106.25 103.75 106.25 108.75 108.75 106.25 108.75 111.25 111.25 108.75 111.25 113.75 113.75 111.25 113.75 116.25 116.25 113.75 116.25 118.75 118.75 116.25 118.75 121.25 121.25 118.75 121.25 123.75 123.75 121.25 123.75 126.25 126.25 123.75 126.25 128.75 128.75 126.25 128.75 131.25 131.25 128.75 131.25 133.75 133.75 131.25 133.75 136.25 136.25 133.75 136.25 138.75 138.75 136.25 138.75 141.25 141.25 138.75 141.25 143.75 143.75 141.25 143.75 146.25 146.25 143.75 146.25 148.75 148.75 146.25 148.75 151.25 151.25 148.75 151.25 153.75 153.75 151.25 153.75 156.25 156.25 153.75 156.25 158.75 158.75 156.25 158.75 161.25 161.25 158.75 161.25 163.75 163.75 161.25 163.75 166.25 166.25 163.75 166.25 168.75 168.75 166.25 168.75 171.25 171.25 168.75 171.25 173.75 173.75 171.25 173.75 176.25 176.25 173.75 176.25 178.75 178.75 176.25 178.75 181.25 181.25 178.75 181.25 183.75 183.75 181.25 183.75 186.25 186.25 183.75 186.25 188.75 188.75 186.25 188.75 191.25 191.25 188.75 191.25 193.75 193.75 191.25 193.75 196.25 196.25 193.75 196.25 198.75 198.75 196.25 198.75 201.25 201.25 198.75 201.25 203.75 203.75 201.25 203.75 206.25 206.25 203.75 206.25 208.75 208.75 206.25 208.75 211.25 211.25 208.75 211.25 213.75 213.75 211.25 213.75 216.25 216.25 213.75 216.25 218.75 218.75 216.25 218.75 221.25 221.25 218.75 221.25 223.75 223.75 221.25 223.75 226.25 226.25 223.75 226.25 228.75 228.75 226.25 228.75 231.25 231.25 228.75 231.25 233.75 233.75 231.25 233.75 236.25 236.25 233.75 236.25 238.75 238.75 236.25 238.75 241.25 241.25 238.75 241.25 243.75 243.75 241.25 243.75 246.25 246.25 243.75 246.25 248.75 248.75 246.25 248.75 251.25 251.25 248.75 251.25 253.75 253.75 251.25 253.75 256.25 256.25 253.75 256.25 258.75 258.75 256.25 258.75 261.25 261.25 258.75 261.25 263.75 263.75 261.25 263.75 266.25 266.25 263.75 266.25 268.75 268.75 266.25 268.75 271.25 271.25 268.75 271.25 273.75 273.75 271.25 273.75 276.25 276.25 273.75 276.25 278.75 278.75 276.25 278.75 281.25 281.25 278.75 281.25 283.75 283.75 281.25 283.75 286.25 286.25 283.75 286.25 288.75 288.75 286.25 288.75 291.25 291.25 288.75 291.25 293.75 293.75 291.25 293.75 296.25 296.25 293.75 296.25 298.75 298.75 296.25 298.75 301.25 301.25 298.75 301.25 303.75 303.75 301.25 303.75 306.25 306.25 303.75 306.25 308.75 308.75 306.25 308.75 311.25 311.25 308.75 311.25 313.75 313.75 311.25 313.75 316.25 316.25 313.75 316.25 318.75 318.75 316.25 318.75 321.25 321.25 318.75 321.25 323.75 323.75 321.25 323.75 326.25 326.25 323.75 326.25 328.75 328.75 326.25 328.75 331.25 331.25 328.75 331.25 333.75 333.75 331.25 333.75 336.25 336.25 333.75 336.25 338.75 338.75 336.25 338.75 341.25 341.25 338.75 341.25 343.75 343.75 341.25 343.75 346.25 346.25 343.75 346.25 348.75 348.75 346.25 348.75 351.25 351.25 348.75 351.25 353.75 353.75 351.25 353.75 356.25 356.25 353.75 356.25 358.75 358.75 356.25 -1.2 1.2 1.2 -1.2 1.20000009537 3.60000009537 3.60000009537 1.20000009537 3.60000019073 6.00000019073 6.00000019073 3.60000019073 5.99999980927 8.39999980927 8.39999980927 5.99999980927 8.40000038147 10.8000003815 10.8000003815 8.40000038147 10.8 13.2 13.2 10.8 13.1999996185 15.5999996185 15.5999996185 13.1999996185 15.5999992371 17.9999992371 17.9999992371 15.5999992371 18.0000007629 20.4000007629 20.4000007629 18.0000007629 20.4000003815 22.8000003815 22.8000003815 20.4000003815 22.8 25.2 25.2 22.8 25.1999996185 27.5999996185 27.5999996185 25.1999996185 27.5999992371 29.9999992371 29.9999992371 27.5999992371 30.0000007629 32.4000007629 32.4000007629 30.0000007629 32.3999984741 34.7999984741 34.7999984741 32.3999984741 34.8 37.2 37.2 34.8 37.2000015259 39.6000015259 39.6000015259 37.2000015259 39.5999992371 41.9999992371 41.9999992371 39.5999992371 42.0000007629 44.4000007629 44.4000007629 42.0000007629 44.3999984741 46.7999984741 46.7999984741 44.3999984741 46.8 49.2 49.2 46.8 49.2000015259 51.6000015259 51.6000015259 49.2000015259 51.5999992371 53.9999992371 53.9999992371 51.5999992371 54.0000007629 56.4000007629 56.4000007629 54.0000007629 56.3999984741 58.7999984741 58.7999984741 56.3999984741 58.8 61.2 61.2 58.8 61.2000015259 63.6000015259 63.6000015259 61.2000015259 63.6000030518 66.0000030518 66.0000030518 63.6000030518 65.9999969482 68.3999969482 68.3999969482 65.9999969482 68.3999984741 70.7999984741 70.7999984741 68.3999984741 70.8 73.2 73.2 70.8 73.2000015259 75.6000015259 75.6000015259 73.2000015259 75.6000030518 78.0000030518 78.0000030518 75.6000030518 77.9999969482 80.3999969482 80.3999969482 77.9999969482 80.3999984741 82.7999984741 82.7999984741 80.3999984741 82.8 85.2 85.2 82.8 85.2000015259 87.6000015259 87.6000015259 85.2000015259 87.6000030518 90.0000030518 90.0000030518 87.6000030518 89.9999969482 92.3999969482 92.3999969482 89.9999969482 92.3999984741 94.7999984741 94.7999984741 92.3999984741 94.8 97.2 97.2 94.8 97.2000015259 99.6000015259 99.6000015259 97.2000015259 99.6000030518 102.000003052 102.000003052 99.6000030518 101.999996948 104.399996948 104.399996948 101.999996948 104.399998474 106.799998474 106.799998474 104.399998474 106.8 109.2 109.2 106.8 109.200001526 111.600001526 111.600001526 109.200001526 111.600003052 114.000003052 114.000003052 111.600003052 113.999996948 116.399996948 116.399996948 113.999996948 116.399998474 118.799998474 118.799998474 116.399998474 118.8 121.2 121.2 118.8 121.200001526 123.600001526 123.600001526 121.200001526 123.600003052 126.000003052 126.000003052 123.600003052 125.999996948 128.399996948 128.399996948 125.999996948 128.400006104 130.800006104 130.800006104 128.400006104 130.8 133.2 133.2 130.8 133.199993896 135.599993896 135.599993896 133.199993896 135.600003052 138.000003052 138.000003052 135.600003052 137.999996948 140.399996948 140.399996948 137.999996948 140.400006104 142.800006104 142.800006104 140.400006104 142.8 145.2 145.2 142.8 145.199993896 147.599993896 147.599993896 145.199993896 147.600003052 150.000003052 150.000003052 147.600003052 149.999996948 152.399996948 152.399996948 149.999996948 152.400006104 154.800006104 154.800006104 152.400006104 154.8 157.2 157.2 154.8 157.199993896 159.599993896 159.599993896 157.199993896 159.600003052 162.000003052 162.000003052 159.600003052 161.999996948 164.399996948 164.399996948 161.999996948 164.400006104 166.800006104 166.800006104 164.400006104 166.8 169.2 169.2 166.8 169.199993896 171.599993896 171.599993896 169.199993896 171.600003052 174.000003052 174.000003052 171.600003052 173.999996948 176.399996948 176.399996948 173.999996948 176.400006104 178.800006104 178.800006104 176.400006104 178.8 181.2 181.2 178.8 181.199993896 183.599993896 183.599993896 181.199993896 183.600003052 186.000003052 186.000003052 183.600003052 185.999996948 188.399996948 188.399996948 185.999996948 188.400006104 190.800006104 190.800006104 188.400006104 190.8 193.2 193.2 190.8 193.199993896 195.599993896 195.599993896 193.199993896 195.600003052 198.000003052 198.000003052 195.600003052 197.999996948 200.399996948 200.399996948 197.999996948 200.400006104 202.800006104 202.800006104 200.400006104 202.8 205.2 205.2 202.8 205.199993896 207.599993896 207.599993896 205.199993896 207.600003052 210.000003052 210.000003052 207.600003052 209.999996948 212.399996948 212.399996948 209.999996948 212.400006104 214.800006104 214.800006104 212.400006104 214.8 217.2 217.2 214.8 217.199993896 219.599993896 219.599993896 217.199993896 219.600003052 222.000003052 222.000003052 219.600003052 221.999996948 224.399996948 224.399996948 221.999996948 224.400006104 226.800006104 226.800006104 224.400006104 226.8 229.2 229.2 226.8 229.199993896 231.599993896 231.599993896 229.199993896 231.600003052 234.000003052 234.000003052 231.600003052 233.999996948 236.399996948 236.399996948 233.999996948 236.400006104 238.800006104 238.800006104 236.400006104 238.8 241.2 241.2 238.8 241.199993896 243.599993896 243.599993896 241.199993896 243.600003052 246.000003052 246.000003052 243.600003052 245.999996948 248.399996948 248.399996948 245.999996948 248.400006104 250.800006104 250.800006104 248.400006104 250.8 253.2 253.2 250.8 253.199993896 255.599993896 255.599993896 253.199993896 255.599987793 257.999987793 257.999987793 255.599987793 258.000012207 260.400012207 260.400012207 258.000012207 260.400006104 262.800006104 262.800006104 260.400006104 262.8 265.2 265.2 262.8 265.199993896 267.599993896 267.599993896 265.199993896 267.599987793 269.999987793 269.999987793 267.599987793 270.000012207 272.400012207 272.400012207 270.000012207 272.400006104 274.800006104 274.800006104 272.400006104 274.8 277.2 277.2 274.8 277.199993896 279.599993896 279.599993896 277.199993896 279.599987793 281.999987793 281.999987793 279.599987793 282.000012207 284.400012207 284.400012207 282.000012207 284.400006104 286.800006104 286.800006104 284.400006104 286.8 289.2 289.2 286.8 289.199993896 291.599993896 291.599993896 289.199993896 291.599987793 293.999987793 293.999987793 291.599987793 294.000012207 296.400012207 296.400012207 294.000012207 296.400006104 298.800006104 298.800006104 296.400006104 298.8 301.2 301.2 298.8 301.199993896 303.599993896 303.599993896 301.199993896 303.599987793 305.999987793 305.999987793 303.599987793 306.000012207 308.400012207 308.400012207 306.000012207 308.400006104 310.800006104 310.800006104 308.400006104 310.8 313.2 313.2 310.8 313.199993896 315.599993896 315.599993896 313.199993896 315.599987793 317.999987793 317.999987793 315.599987793 318.000012207 320.400012207 320.400012207 318.000012207 320.400006104 322.800006104 322.800006104 320.400006104 322.8 325.2 325.2 322.8 325.199993896 327.599993896 327.599993896 325.199993896 327.599987793 329.999987793 329.999987793 327.599987793 330.000012207 332.400012207 332.400012207 330.000012207 332.400006104 334.800006104 334.800006104 332.400006104 334.8 337.2 337.2 334.8 337.199993896 339.599993896 339.599993896 337.199993896 339.599987793 341.999987793 341.999987793 339.599987793 342.000012207 344.400012207 344.400012207 342.000012207 344.400006104 346.800006104 346.800006104 344.400006104 346.8 349.2 349.2 346.8 349.199993896 351.599993896 351.599993896 349.199993896 351.599987793 353.999987793 353.999987793 351.599987793 354.000012207 356.400012207 356.400012207 354.000012207 356.400006104 358.800006104 358.800006104 356.400006104 -1.125 1.125 1.125 -1.125 1.125 3.375 3.375 1.125 3.375 5.625 5.625 3.375 5.625 7.875 7.875 5.625 7.875 10.125 10.125 7.875 10.125 12.375 12.375 10.125 12.375 14.625 14.625 12.375 14.625 16.875 16.875 14.625 16.875 19.125 19.125 16.875 19.125 21.375 21.375 19.125 21.375 23.625 23.625 21.375 23.625 25.875 25.875 23.625 25.875 28.125 28.125 25.875 28.125 30.375 30.375 28.125 30.375 32.625 32.625 30.375 32.625 34.875 34.875 32.625 34.875 37.125 37.125 34.875 37.125 39.375 39.375 37.125 39.375 41.625 41.625 39.375 41.625 43.875 43.875 41.625 43.875 46.125 46.125 43.875 46.125 48.375 48.375 46.125 48.375 50.625 50.625 48.375 50.625 52.875 52.875 50.625 52.875 55.125 55.125 52.875 55.125 57.375 57.375 55.125 57.375 59.625 59.625 57.375 59.625 61.875 61.875 59.625 61.875 64.125 64.125 61.875 64.125 66.375 66.375 64.125 66.375 68.625 68.625 66.375 68.625 70.875 70.875 68.625 70.875 73.125 73.125 70.875 73.125 75.375 75.375 73.125 75.375 77.625 77.625 75.375 77.625 79.875 79.875 77.625 79.875 82.125 82.125 79.875 82.125 84.375 84.375 82.125 84.375 86.625 86.625 84.375 86.625 88.875 88.875 86.625 88.875 91.125 91.125 88.875 91.125 93.375 93.375 91.125 93.375 95.625 95.625 93.375 95.625 97.875 97.875 95.625 97.875 100.125 100.125 97.875 100.125 102.375 102.375 100.125 102.375 104.625 104.625 102.375 104.625 106.875 106.875 104.625 106.875 109.125 109.125 106.875 109.125 111.375 111.375 109.125 111.375 113.625 113.625 111.375 113.625 115.875 115.875 113.625 115.875 118.125 118.125 115.875 118.125 120.375 120.375 118.125 120.375 122.625 122.625 120.375 122.625 124.875 124.875 122.625 124.875 127.125 127.125 124.875 127.125 129.375 129.375 127.125 129.375 131.625 131.625 129.375 131.625 133.875 133.875 131.625 133.875 136.125 136.125 133.875 136.125 138.375 138.375 136.125 138.375 140.625 140.625 138.375 140.625 142.875 142.875 140.625 142.875 145.125 145.125 142.875 145.125 147.375 147.375 145.125 147.375 149.625 149.625 147.375 149.625 151.875 151.875 149.625 151.875 154.125 154.125 151.875 154.125 156.375 156.375 154.125 156.375 158.625 158.625 156.375 158.625 160.875 160.875 158.625 160.875 163.125 163.125 160.875 163.125 165.375 165.375 163.125 165.375 167.625 167.625 165.375 167.625 169.875 169.875 167.625 169.875 172.125 172.125 169.875 172.125 174.375 174.375 172.125 174.375 176.625 176.625 174.375 176.625 178.875 178.875 176.625 178.875 181.125 181.125 178.875 181.125 183.375 183.375 181.125 183.375 185.625 185.625 183.375 185.625 187.875 187.875 185.625 187.875 190.125 190.125 187.875 190.125 192.375 192.375 190.125 192.375 194.625 194.625 192.375 194.625 196.875 196.875 194.625 196.875 199.125 199.125 196.875 199.125 201.375 201.375 199.125 201.375 203.625 203.625 201.375 203.625 205.875 205.875 203.625 205.875 208.125 208.125 205.875 208.125 210.375 210.375 208.125 210.375 212.625 212.625 210.375 212.625 214.875 214.875 212.625 214.875 217.125 217.125 214.875 217.125 219.375 219.375 217.125 219.375 221.625 221.625 219.375 221.625 223.875 223.875 221.625 223.875 226.125 226.125 223.875 226.125 228.375 228.375 226.125 228.375 230.625 230.625 228.375 230.625 232.875 232.875 230.625 232.875 235.125 235.125 232.875 235.125 237.375 237.375 235.125 237.375 239.625 239.625 237.375 239.625 241.875 241.875 239.625 241.875 244.125 244.125 241.875 244.125 246.375 246.375 244.125 246.375 248.625 248.625 246.375 248.625 250.875 250.875 248.625 250.875 253.125 253.125 250.875 253.125 255.375 255.375 253.125 255.375 257.625 257.625 255.375 257.625 259.875 259.875 257.625 259.875 262.125 262.125 259.875 262.125 264.375 264.375 262.125 264.375 266.625 266.625 264.375 +266.625 268.875 268.875 266.625 268.875 271.125 271.125 268.875 271.125 273.375 273.375 271.125 273.375 275.625 275.625 273.375 275.625 277.875 277.875 275.625 277.875 280.125 280.125 277.875 280.125 282.375 282.375 280.125 282.375 284.625 284.625 282.375 284.625 286.875 286.875 284.625 286.875 289.125 289.125 286.875 289.125 291.375 291.375 289.125 291.375 293.625 293.625 291.375 293.625 295.875 295.875 293.625 295.875 298.125 298.125 295.875 298.125 300.375 300.375 298.125 300.375 302.625 302.625 300.375 302.625 304.875 304.875 302.625 304.875 307.125 307.125 304.875 307.125 309.375 309.375 307.125 309.375 311.625 311.625 309.375 311.625 313.875 313.875 311.625 313.875 316.125 316.125 313.875 316.125 318.375 318.375 316.125 318.375 320.625 320.625 318.375 320.625 322.875 322.875 320.625 322.875 325.125 325.125 322.875 325.125 327.375 327.375 325.125 327.375 329.625 329.625 327.375 329.625 331.875 331.875 329.625 331.875 334.125 334.125 331.875 334.125 336.375 336.375 334.125 336.375 338.625 338.625 336.375 338.625 340.875 340.875 338.625 340.875 343.125 343.125 340.875 343.125 345.375 345.375 343.125 345.375 347.625 347.625 345.375 347.625 349.875 349.875 347.625 349.875 352.125 352.125 349.875 352.125 354.375 354.375 352.125 354.375 356.625 356.625 354.375 356.625 358.875 358.875 356.625 -1.125 1.125 1.125 -1.125 1.125 3.375 3.375 1.125 3.375 5.625 5.625 3.375 5.625 7.875 7.875 5.625 7.875 10.125 10.125 7.875 10.125 12.375 12.375 10.125 12.375 14.625 14.625 12.375 14.625 16.875 16.875 14.625 16.875 19.125 19.125 16.875 19.125 21.375 21.375 19.125 21.375 23.625 23.625 21.375 23.625 25.875 25.875 23.625 25.875 28.125 28.125 25.875 28.125 30.375 30.375 28.125 30.375 32.625 32.625 30.375 32.625 34.875 34.875 32.625 34.875 37.125 37.125 34.875 37.125 39.375 39.375 37.125 39.375 41.625 41.625 39.375 41.625 43.875 43.875 41.625 43.875 46.125 46.125 43.875 46.125 48.375 48.375 46.125 48.375 50.625 50.625 48.375 50.625 52.875 52.875 50.625 52.875 55.125 55.125 52.875 55.125 57.375 57.375 55.125 57.375 59.625 59.625 57.375 59.625 61.875 61.875 59.625 61.875 64.125 64.125 61.875 64.125 66.375 66.375 64.125 66.375 68.625 68.625 66.375 68.625 70.875 70.875 68.625 70.875 73.125 73.125 70.875 73.125 75.375 75.375 73.125 75.375 77.625 77.625 75.375 77.625 79.875 79.875 77.625 79.875 82.125 82.125 79.875 82.125 84.375 84.375 82.125 84.375 86.625 86.625 84.375 86.625 88.875 88.875 86.625 88.875 91.125 91.125 88.875 91.125 93.375 93.375 91.125 93.375 95.625 95.625 93.375 95.625 97.875 97.875 95.625 97.875 100.125 100.125 97.875 100.125 102.375 102.375 100.125 102.375 104.625 104.625 102.375 104.625 106.875 106.875 104.625 106.875 109.125 109.125 106.875 109.125 111.375 111.375 109.125 111.375 113.625 113.625 111.375 113.625 115.875 115.875 113.625 115.875 118.125 118.125 115.875 118.125 120.375 120.375 118.125 120.375 122.625 122.625 120.375 122.625 124.875 124.875 122.625 124.875 127.125 127.125 124.875 127.125 129.375 129.375 127.125 129.375 131.625 131.625 129.375 131.625 133.875 133.875 131.625 133.875 136.125 136.125 133.875 136.125 138.375 138.375 136.125 138.375 140.625 140.625 138.375 140.625 142.875 142.875 140.625 142.875 145.125 145.125 142.875 145.125 147.375 147.375 145.125 147.375 149.625 149.625 147.375 149.625 151.875 151.875 149.625 151.875 154.125 154.125 151.875 154.125 156.375 156.375 154.125 156.375 158.625 158.625 156.375 158.625 160.875 160.875 158.625 160.875 163.125 163.125 160.875 163.125 165.375 165.375 163.125 165.375 167.625 167.625 165.375 167.625 169.875 169.875 167.625 169.875 172.125 172.125 169.875 172.125 174.375 174.375 172.125 174.375 176.625 176.625 174.375 176.625 178.875 178.875 176.625 178.875 181.125 181.125 178.875 181.125 183.375 183.375 181.125 183.375 185.625 185.625 183.375 185.625 187.875 187.875 185.625 187.875 190.125 190.125 187.875 190.125 192.375 192.375 190.125 192.375 194.625 194.625 192.375 194.625 196.875 196.875 194.625 196.875 199.125 199.125 196.875 199.125 201.375 201.375 199.125 201.375 203.625 203.625 201.375 203.625 205.875 205.875 203.625 205.875 208.125 208.125 205.875 208.125 210.375 210.375 208.125 210.375 212.625 212.625 210.375 212.625 214.875 214.875 212.625 214.875 217.125 217.125 214.875 217.125 219.375 219.375 217.125 219.375 221.625 221.625 219.375 221.625 223.875 223.875 221.625 223.875 226.125 226.125 223.875 226.125 228.375 228.375 226.125 228.375 230.625 230.625 228.375 230.625 232.875 232.875 230.625 232.875 235.125 235.125 232.875 235.125 237.375 237.375 235.125 237.375 239.625 239.625 237.375 239.625 241.875 241.875 239.625 241.875 244.125 244.125 241.875 244.125 246.375 246.375 244.125 246.375 248.625 248.625 246.375 248.625 250.875 250.875 248.625 250.875 253.125 253.125 250.875 253.125 255.375 255.375 253.125 255.375 257.625 257.625 255.375 257.625 259.875 259.875 257.625 259.875 262.125 262.125 259.875 262.125 264.375 264.375 262.125 264.375 266.625 266.625 264.375 266.625 268.875 268.875 266.625 268.875 271.125 271.125 268.875 271.125 273.375 273.375 271.125 273.375 275.625 275.625 273.375 275.625 277.875 277.875 275.625 277.875 280.125 280.125 277.875 280.125 282.375 282.375 280.125 282.375 284.625 284.625 282.375 284.625 286.875 286.875 284.625 286.875 289.125 289.125 286.875 289.125 291.375 291.375 289.125 291.375 293.625 293.625 291.375 293.625 295.875 295.875 293.625 295.875 298.125 298.125 295.875 298.125 300.375 300.375 298.125 300.375 302.625 302.625 300.375 302.625 304.875 304.875 302.625 304.875 307.125 307.125 304.875 307.125 309.375 309.375 307.125 309.375 311.625 311.625 309.375 311.625 313.875 313.875 311.625 313.875 316.125 316.125 313.875 316.125 318.375 318.375 316.125 318.375 320.625 320.625 318.375 320.625 322.875 322.875 320.625 322.875 325.125 325.125 322.875 325.125 327.375 327.375 325.125 327.375 329.625 329.625 327.375 329.625 331.875 331.875 329.625 331.875 334.125 334.125 331.875 334.125 336.375 336.375 334.125 336.375 338.625 338.625 336.375 338.625 340.875 340.875 338.625 340.875 343.125 343.125 340.875 343.125 345.375 345.375 343.125 345.375 347.625 347.625 345.375 347.625 349.875 349.875 347.625 349.875 352.125 352.125 349.875 352.125 354.375 354.375 352.125 354.375 356.625 356.625 354.375 356.625 358.875 358.875 356.625 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 +237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -0.9375 0.9375 0.9375 -0.9375 0.9375 2.8125 2.8125 0.9375 2.8125 4.6875 4.6875 2.8125 4.6875 6.5625 6.5625 4.6875 6.5625 8.4375 8.4375 6.5625 8.4375 10.3125 10.3125 8.4375 10.3125 12.1875 12.1875 10.3125 12.1875 14.0625 14.0625 12.1875 14.0625 15.9375 15.9375 14.0625 15.9375 17.8125 17.8125 15.9375 17.8125 19.6875 19.6875 17.8125 19.6875 21.5625 21.5625 19.6875 21.5625 23.4375 23.4375 21.5625 23.4375 25.3125 25.3125 23.4375 25.3125 27.1875 27.1875 25.3125 27.1875 29.0625 29.0625 27.1875 29.0625 30.9375 30.9375 29.0625 30.9375 32.8125 32.8125 30.9375 32.8125 34.6875 34.6875 32.8125 34.6875 36.5625 36.5625 34.6875 36.5625 38.4375 38.4375 36.5625 38.4375 40.3125 40.3125 38.4375 40.3125 42.1875 42.1875 40.3125 42.1875 44.0625 44.0625 42.1875 44.0625 45.9375 45.9375 44.0625 45.9375 47.8125 47.8125 45.9375 47.8125 49.6875 49.6875 47.8125 49.6875 51.5625 51.5625 49.6875 51.5625 53.4375 53.4375 51.5625 53.4375 55.3125 55.3125 53.4375 55.3125 57.1875 57.1875 55.3125 57.1875 59.0625 59.0625 57.1875 59.0625 60.9375 60.9375 59.0625 60.9375 62.8125 62.8125 60.9375 62.8125 64.6875 64.6875 62.8125 64.6875 66.5625 66.5625 64.6875 66.5625 68.4375 68.4375 66.5625 68.4375 70.3125 70.3125 68.4375 70.3125 72.1875 72.1875 70.3125 72.1875 74.0625 74.0625 72.1875 74.0625 75.9375 75.9375 74.0625 75.9375 77.8125 77.8125 75.9375 77.8125 79.6875 79.6875 77.8125 79.6875 81.5625 81.5625 79.6875 81.5625 83.4375 83.4375 81.5625 83.4375 85.3125 85.3125 83.4375 85.3125 87.1875 87.1875 85.3125 87.1875 89.0625 89.0625 87.1875 89.0625 90.9375 90.9375 89.0625 90.9375 92.8125 92.8125 90.9375 92.8125 94.6875 94.6875 92.8125 94.6875 96.5625 96.5625 94.6875 96.5625 98.4375 98.4375 96.5625 98.4375 100.3125 100.3125 98.4375 100.3125 102.1875 102.1875 100.3125 102.1875 104.0625 104.0625 102.1875 104.0625 105.9375 105.9375 104.0625 105.9375 107.8125 107.8125 105.9375 107.8125 109.6875 109.6875 107.8125 109.6875 111.5625 111.5625 109.6875 111.5625 113.4375 113.4375 111.5625 113.4375 115.3125 115.3125 113.4375 115.3125 117.1875 117.1875 115.3125 117.1875 119.0625 119.0625 117.1875 119.0625 120.9375 120.9375 119.0625 120.9375 122.8125 122.8125 120.9375 122.8125 124.6875 124.6875 122.8125 124.6875 126.5625 126.5625 124.6875 126.5625 128.4375 128.4375 126.5625 128.4375 130.3125 130.3125 128.4375 130.3125 132.1875 132.1875 130.3125 132.1875 134.0625 134.0625 132.1875 134.0625 135.9375 135.9375 134.0625 135.9375 137.8125 137.8125 135.9375 137.8125 139.6875 139.6875 137.8125 139.6875 141.5625 141.5625 139.6875 141.5625 143.4375 143.4375 141.5625 143.4375 145.3125 145.3125 143.4375 145.3125 147.1875 147.1875 145.3125 147.1875 149.0625 149.0625 147.1875 149.0625 150.9375 150.9375 149.0625 150.9375 152.8125 152.8125 150.9375 152.8125 154.6875 154.6875 152.8125 154.6875 156.5625 156.5625 154.6875 156.5625 158.4375 158.4375 156.5625 158.4375 160.3125 160.3125 158.4375 160.3125 162.1875 162.1875 160.3125 162.1875 164.0625 164.0625 162.1875 164.0625 165.9375 165.9375 164.0625 165.9375 167.8125 167.8125 165.9375 167.8125 169.6875 169.6875 167.8125 169.6875 171.5625 171.5625 169.6875 171.5625 173.4375 173.4375 171.5625 173.4375 175.3125 175.3125 173.4375 175.3125 177.1875 177.1875 175.3125 177.1875 179.0625 179.0625 177.1875 179.0625 180.9375 180.9375 179.0625 180.9375 182.8125 182.8125 180.9375 182.8125 184.6875 184.6875 182.8125 184.6875 186.5625 186.5625 184.6875 186.5625 188.4375 188.4375 186.5625 188.4375 190.3125 190.3125 188.4375 190.3125 192.1875 192.1875 190.3125 192.1875 194.0625 194.0625 192.1875 194.0625 195.9375 195.9375 194.0625 195.9375 197.8125 197.8125 195.9375 197.8125 199.6875 199.6875 197.8125 199.6875 201.5625 201.5625 199.6875 201.5625 203.4375 203.4375 201.5625 203.4375 205.3125 205.3125 203.4375 205.3125 207.1875 207.1875 205.3125 207.1875 209.0625 209.0625 207.1875 209.0625 210.9375 210.9375 209.0625 210.9375 212.8125 212.8125 210.9375 212.8125 214.6875 214.6875 212.8125 214.6875 216.5625 216.5625 214.6875 216.5625 218.4375 218.4375 216.5625 218.4375 220.3125 220.3125 218.4375 220.3125 222.1875 222.1875 220.3125 222.1875 224.0625 224.0625 222.1875 224.0625 225.9375 225.9375 224.0625 225.9375 227.8125 227.8125 225.9375 227.8125 229.6875 229.6875 227.8125 229.6875 231.5625 231.5625 229.6875 231.5625 233.4375 233.4375 231.5625 233.4375 235.3125 235.3125 233.4375 235.3125 237.1875 237.1875 235.3125 237.1875 239.0625 239.0625 237.1875 239.0625 240.9375 240.9375 239.0625 240.9375 242.8125 242.8125 240.9375 242.8125 244.6875 244.6875 242.8125 244.6875 246.5625 246.5625 244.6875 246.5625 248.4375 248.4375 246.5625 248.4375 250.3125 250.3125 248.4375 250.3125 252.1875 252.1875 250.3125 252.1875 254.0625 254.0625 252.1875 254.0625 255.9375 255.9375 254.0625 255.9375 257.8125 257.8125 255.9375 257.8125 259.6875 259.6875 257.8125 259.6875 261.5625 261.5625 259.6875 261.5625 263.4375 263.4375 261.5625 263.4375 265.3125 265.3125 263.4375 265.3125 267.1875 267.1875 265.3125 267.1875 269.0625 269.0625 267.1875 269.0625 270.9375 270.9375 269.0625 270.9375 272.8125 272.8125 270.9375 272.8125 274.6875 274.6875 272.8125 274.6875 276.5625 276.5625 274.6875 276.5625 278.4375 278.4375 276.5625 278.4375 280.3125 280.3125 278.4375 280.3125 282.1875 282.1875 280.3125 282.1875 284.0625 284.0625 282.1875 284.0625 285.9375 285.9375 284.0625 285.9375 287.8125 287.8125 285.9375 287.8125 289.6875 289.6875 287.8125 289.6875 291.5625 291.5625 289.6875 291.5625 293.4375 293.4375 291.5625 293.4375 295.3125 295.3125 293.4375 295.3125 297.1875 297.1875 295.3125 297.1875 299.0625 299.0625 297.1875 299.0625 300.9375 300.9375 299.0625 300.9375 302.8125 302.8125 300.9375 302.8125 304.6875 304.6875 302.8125 304.6875 306.5625 306.5625 304.6875 306.5625 308.4375 308.4375 306.5625 308.4375 310.3125 310.3125 308.4375 310.3125 312.1875 312.1875 310.3125 312.1875 314.0625 314.0625 312.1875 314.0625 315.9375 315.9375 314.0625 315.9375 317.8125 317.8125 315.9375 317.8125 319.6875 319.6875 317.8125 319.6875 321.5625 321.5625 319.6875 321.5625 323.4375 323.4375 321.5625 323.4375 325.3125 325.3125 323.4375 325.3125 327.1875 327.1875 325.3125 327.1875 329.0625 329.0625 327.1875 329.0625 330.9375 330.9375 329.0625 330.9375 332.8125 332.8125 330.9375 332.8125 334.6875 334.6875 332.8125 334.6875 336.5625 336.5625 334.6875 336.5625 338.4375 338.4375 336.5625 338.4375 340.3125 340.3125 338.4375 340.3125 342.1875 342.1875 340.3125 342.1875 344.0625 344.0625 342.1875 344.0625 345.9375 345.9375 344.0625 345.9375 347.8125 347.8125 345.9375 347.8125 349.6875 349.6875 347.8125 349.6875 351.5625 351.5625 349.6875 351.5625 353.4375 353.4375 351.5625 353.4375 355.3125 355.3125 353.4375 355.3125 357.1875 357.1875 355.3125 357.1875 359.0625 359.0625 357.1875 -0.9375 0.9375 0.9375 -0.9375 0.9375 2.8125 2.8125 0.9375 2.8125 4.6875 4.6875 2.8125 4.6875 6.5625 6.5625 4.6875 6.5625 8.4375 8.4375 6.5625 8.4375 10.3125 10.3125 8.4375 10.3125 12.1875 12.1875 10.3125 12.1875 14.0625 14.0625 12.1875 14.0625 15.9375 15.9375 14.0625 15.9375 17.8125 17.8125 15.9375 17.8125 19.6875 19.6875 17.8125 19.6875 21.5625 21.5625 19.6875 21.5625 23.4375 23.4375 21.5625 23.4375 25.3125 25.3125 23.4375 25.3125 27.1875 27.1875 25.3125 27.1875 29.0625 29.0625 27.1875 29.0625 30.9375 30.9375 29.0625 30.9375 32.8125 32.8125 30.9375 32.8125 34.6875 34.6875 32.8125 34.6875 36.5625 36.5625 34.6875 36.5625 38.4375 38.4375 36.5625 38.4375 40.3125 40.3125 38.4375 40.3125 42.1875 42.1875 40.3125 42.1875 44.0625 44.0625 42.1875 44.0625 45.9375 45.9375 44.0625 45.9375 47.8125 47.8125 45.9375 47.8125 49.6875 49.6875 47.8125 49.6875 51.5625 51.5625 49.6875 51.5625 53.4375 53.4375 51.5625 53.4375 55.3125 55.3125 53.4375 55.3125 57.1875 57.1875 55.3125 57.1875 59.0625 59.0625 57.1875 59.0625 60.9375 60.9375 59.0625 60.9375 62.8125 62.8125 60.9375 62.8125 64.6875 64.6875 62.8125 64.6875 66.5625 66.5625 64.6875 66.5625 68.4375 68.4375 66.5625 68.4375 70.3125 70.3125 68.4375 70.3125 72.1875 72.1875 70.3125 72.1875 74.0625 74.0625 72.1875 74.0625 75.9375 75.9375 74.0625 75.9375 77.8125 77.8125 75.9375 77.8125 79.6875 79.6875 77.8125 79.6875 81.5625 81.5625 79.6875 81.5625 83.4375 83.4375 81.5625 83.4375 85.3125 85.3125 83.4375 85.3125 87.1875 87.1875 85.3125 87.1875 89.0625 89.0625 87.1875 89.0625 90.9375 90.9375 89.0625 90.9375 92.8125 92.8125 90.9375 92.8125 94.6875 94.6875 92.8125 94.6875 96.5625 96.5625 94.6875 96.5625 98.4375 98.4375 96.5625 98.4375 100.3125 100.3125 98.4375 100.3125 102.1875 102.1875 100.3125 102.1875 104.0625 104.0625 102.1875 104.0625 105.9375 105.9375 104.0625 105.9375 107.8125 107.8125 105.9375 107.8125 109.6875 109.6875 107.8125 109.6875 111.5625 111.5625 109.6875 111.5625 113.4375 113.4375 111.5625 113.4375 115.3125 115.3125 113.4375 115.3125 117.1875 117.1875 115.3125 117.1875 119.0625 119.0625 117.1875 119.0625 120.9375 120.9375 119.0625 120.9375 122.8125 122.8125 120.9375 122.8125 124.6875 124.6875 122.8125 +124.6875 126.5625 126.5625 124.6875 126.5625 128.4375 128.4375 126.5625 128.4375 130.3125 130.3125 128.4375 130.3125 132.1875 132.1875 130.3125 132.1875 134.0625 134.0625 132.1875 134.0625 135.9375 135.9375 134.0625 135.9375 137.8125 137.8125 135.9375 137.8125 139.6875 139.6875 137.8125 139.6875 141.5625 141.5625 139.6875 141.5625 143.4375 143.4375 141.5625 143.4375 145.3125 145.3125 143.4375 145.3125 147.1875 147.1875 145.3125 147.1875 149.0625 149.0625 147.1875 149.0625 150.9375 150.9375 149.0625 150.9375 152.8125 152.8125 150.9375 152.8125 154.6875 154.6875 152.8125 154.6875 156.5625 156.5625 154.6875 156.5625 158.4375 158.4375 156.5625 158.4375 160.3125 160.3125 158.4375 160.3125 162.1875 162.1875 160.3125 162.1875 164.0625 164.0625 162.1875 164.0625 165.9375 165.9375 164.0625 165.9375 167.8125 167.8125 165.9375 167.8125 169.6875 169.6875 167.8125 169.6875 171.5625 171.5625 169.6875 171.5625 173.4375 173.4375 171.5625 173.4375 175.3125 175.3125 173.4375 175.3125 177.1875 177.1875 175.3125 177.1875 179.0625 179.0625 177.1875 179.0625 180.9375 180.9375 179.0625 180.9375 182.8125 182.8125 180.9375 182.8125 184.6875 184.6875 182.8125 184.6875 186.5625 186.5625 184.6875 186.5625 188.4375 188.4375 186.5625 188.4375 190.3125 190.3125 188.4375 190.3125 192.1875 192.1875 190.3125 192.1875 194.0625 194.0625 192.1875 194.0625 195.9375 195.9375 194.0625 195.9375 197.8125 197.8125 195.9375 197.8125 199.6875 199.6875 197.8125 199.6875 201.5625 201.5625 199.6875 201.5625 203.4375 203.4375 201.5625 203.4375 205.3125 205.3125 203.4375 205.3125 207.1875 207.1875 205.3125 207.1875 209.0625 209.0625 207.1875 209.0625 210.9375 210.9375 209.0625 210.9375 212.8125 212.8125 210.9375 212.8125 214.6875 214.6875 212.8125 214.6875 216.5625 216.5625 214.6875 216.5625 218.4375 218.4375 216.5625 218.4375 220.3125 220.3125 218.4375 220.3125 222.1875 222.1875 220.3125 222.1875 224.0625 224.0625 222.1875 224.0625 225.9375 225.9375 224.0625 225.9375 227.8125 227.8125 225.9375 227.8125 229.6875 229.6875 227.8125 229.6875 231.5625 231.5625 229.6875 231.5625 233.4375 233.4375 231.5625 233.4375 235.3125 235.3125 233.4375 235.3125 237.1875 237.1875 235.3125 237.1875 239.0625 239.0625 237.1875 239.0625 240.9375 240.9375 239.0625 240.9375 242.8125 242.8125 240.9375 242.8125 244.6875 244.6875 242.8125 244.6875 246.5625 246.5625 244.6875 246.5625 248.4375 248.4375 246.5625 248.4375 250.3125 250.3125 248.4375 250.3125 252.1875 252.1875 250.3125 252.1875 254.0625 254.0625 252.1875 254.0625 255.9375 255.9375 254.0625 255.9375 257.8125 257.8125 255.9375 257.8125 259.6875 259.6875 257.8125 259.6875 261.5625 261.5625 259.6875 261.5625 263.4375 263.4375 261.5625 263.4375 265.3125 265.3125 263.4375 265.3125 267.1875 267.1875 265.3125 267.1875 269.0625 269.0625 267.1875 269.0625 270.9375 270.9375 269.0625 270.9375 272.8125 272.8125 270.9375 272.8125 274.6875 274.6875 272.8125 274.6875 276.5625 276.5625 274.6875 276.5625 278.4375 278.4375 276.5625 278.4375 280.3125 280.3125 278.4375 280.3125 282.1875 282.1875 280.3125 282.1875 284.0625 284.0625 282.1875 284.0625 285.9375 285.9375 284.0625 285.9375 287.8125 287.8125 285.9375 287.8125 289.6875 289.6875 287.8125 289.6875 291.5625 291.5625 289.6875 291.5625 293.4375 293.4375 291.5625 293.4375 295.3125 295.3125 293.4375 295.3125 297.1875 297.1875 295.3125 297.1875 299.0625 299.0625 297.1875 299.0625 300.9375 300.9375 299.0625 300.9375 302.8125 302.8125 300.9375 302.8125 304.6875 304.6875 302.8125 304.6875 306.5625 306.5625 304.6875 306.5625 308.4375 308.4375 306.5625 308.4375 310.3125 310.3125 308.4375 310.3125 312.1875 312.1875 310.3125 312.1875 314.0625 314.0625 312.1875 314.0625 315.9375 315.9375 314.0625 315.9375 317.8125 317.8125 315.9375 317.8125 319.6875 319.6875 317.8125 319.6875 321.5625 321.5625 319.6875 321.5625 323.4375 323.4375 321.5625 323.4375 325.3125 325.3125 323.4375 325.3125 327.1875 327.1875 325.3125 327.1875 329.0625 329.0625 327.1875 329.0625 330.9375 330.9375 329.0625 330.9375 332.8125 332.8125 330.9375 332.8125 334.6875 334.6875 332.8125 334.6875 336.5625 336.5625 334.6875 336.5625 338.4375 338.4375 336.5625 338.4375 340.3125 340.3125 338.4375 340.3125 342.1875 342.1875 340.3125 342.1875 344.0625 344.0625 342.1875 344.0625 345.9375 345.9375 344.0625 345.9375 347.8125 347.8125 345.9375 347.8125 349.6875 349.6875 347.8125 349.6875 351.5625 351.5625 349.6875 351.5625 353.4375 353.4375 351.5625 353.4375 355.3125 355.3125 353.4375 355.3125 357.1875 357.1875 355.3125 357.1875 359.0625 359.0625 357.1875 -0.9 0.9 0.9 -0.9 0.899999952316 2.69999995232 2.69999995232 0.899999952316 2.69999990463 4.49999990463 4.49999990463 2.69999990463 4.50000009537 6.30000009537 6.30000009537 4.50000009537 6.29999980927 8.09999980927 8.09999980927 6.29999980927 8.1 9.9 9.9 8.1 9.90000019073 11.7000001907 11.7000001907 9.90000019073 11.7000003815 13.5000003815 13.5000003815 11.7000003815 13.4999996185 15.2999996185 15.2999996185 13.4999996185 15.3000007629 17.1000007629 17.1000007629 15.3000007629 17.1 18.9 18.9 17.1 18.8999992371 20.6999992371 20.6999992371 18.8999992371 20.7000003815 22.5000003815 22.5000003815 20.7000003815 22.4999996185 24.2999996185 24.2999996185 22.4999996185 24.3000007629 26.1000007629 26.1000007629 24.3000007629 26.1 27.9 27.9 26.1 27.8999992371 29.6999992371 29.6999992371 27.8999992371 29.7000003815 31.5000003815 31.5000003815 29.7000003815 31.5000015259 33.3000015259 33.3000015259 31.5000015259 33.3000007629 35.1000007629 35.1000007629 33.3000007629 35.1 36.9 36.9 35.1 36.8999992371 38.6999992371 38.6999992371 36.8999992371 38.6999984741 40.4999984741 40.4999984741 38.6999984741 40.5000015259 42.3000015259 42.3000015259 40.5000015259 42.3000007629 44.1000007629 44.1000007629 42.3000007629 44.1 45.9 45.9 44.1 45.8999992371 47.6999992371 47.6999992371 45.8999992371 47.6999984741 49.4999984741 49.4999984741 47.6999984741 49.5000015259 51.3000015259 51.3000015259 49.5000015259 51.3000007629 53.1000007629 53.1000007629 51.3000007629 53.1 54.9 54.9 53.1 54.8999992371 56.6999992371 56.6999992371 54.8999992371 56.6999984741 58.4999984741 58.4999984741 56.6999984741 58.5000015259 60.3000015259 60.3000015259 58.5000015259 60.3000007629 62.1000007629 62.1000007629 60.3000007629 62.1 63.9 63.9 62.1 63.9000030518 65.7000030518 65.7000030518 63.9000030518 65.6999984741 67.4999984741 67.4999984741 65.6999984741 67.5000015259 69.3000015259 69.3000015259 67.5000015259 69.2999969482 71.0999969482 71.0999969482 69.2999969482 71.1 72.9 72.9 71.1 72.9000030518 74.7000030518 74.7000030518 72.9000030518 74.6999984741 76.4999984741 76.4999984741 74.6999984741 76.5000015259 78.3000015259 78.3000015259 76.5000015259 78.2999969482 80.0999969482 80.0999969482 78.2999969482 80.1 81.9 81.9 80.1 81.9000030518 83.7000030518 83.7000030518 81.9000030518 83.6999984741 85.4999984741 85.4999984741 83.6999984741 85.5000015259 87.3000015259 87.3000015259 85.5000015259 87.2999969482 89.0999969482 89.0999969482 87.2999969482 89.1 90.9 90.9 89.1 90.9000030518 92.7000030518 92.7000030518 90.9000030518 92.6999984741 94.4999984741 94.4999984741 92.6999984741 94.5000015259 96.3000015259 96.3000015259 94.5000015259 96.2999969482 98.0999969482 98.0999969482 96.2999969482 98.1 99.9 99.9 98.1 99.9000030518 101.700003052 101.700003052 99.9000030518 101.699998474 103.499998474 103.499998474 101.699998474 103.500001526 105.300001526 105.300001526 103.500001526 105.299996948 107.099996948 107.099996948 105.299996948 107.1 108.9 108.9 107.1 108.900003052 110.700003052 110.700003052 108.900003052 110.699998474 112.499998474 112.499998474 110.699998474 112.500001526 114.300001526 114.300001526 112.500001526 114.299996948 116.099996948 116.099996948 114.299996948 116.1 117.9 117.9 116.1 117.900003052 119.700003052 119.700003052 117.900003052 119.699998474 121.499998474 121.499998474 119.699998474 121.500001526 123.300001526 123.300001526 121.500001526 123.299996948 125.099996948 125.099996948 123.299996948 125.1 126.9 126.9 125.1 126.900003052 128.700003052 128.700003052 126.900003052 128.700006104 130.500006104 130.500006104 128.700006104 130.499993896 132.299993896 132.299993896 130.499993896 132.299996948 134.099996948 134.099996948 132.299996948 134.1 135.9 135.9 134.1 135.900003052 137.700003052 137.700003052 135.900003052 137.700006104 139.500006104 139.500006104 137.700006104 139.499993896 141.299993896 141.299993896 139.499993896 141.299996948 143.099996948 143.099996948 141.299996948 143.1 144.9 144.9 143.1 144.900003052 146.700003052 146.700003052 144.900003052 146.700006104 148.500006104 148.500006104 146.700006104 148.499993896 150.299993896 150.299993896 148.499993896 150.299996948 152.099996948 152.099996948 150.299996948 152.1 153.9 153.9 152.1 153.900003052 155.700003052 155.700003052 153.900003052 155.700006104 157.500006104 157.500006104 155.700006104 157.499993896 159.299993896 159.299993896 157.499993896 159.299996948 161.099996948 161.099996948 159.299996948 161.1 162.9 162.9 161.1 162.900003052 164.700003052 164.700003052 162.900003052 164.700006104 166.500006104 166.500006104 164.700006104 166.499993896 168.299993896 168.299993896 166.499993896 168.299996948 170.099996948 170.099996948 168.299996948 170.1 171.9 171.9 170.1 171.900003052 173.700003052 173.700003052 171.900003052 173.700006104 175.500006104 175.500006104 173.700006104 175.499993896 177.299993896 177.299993896 175.499993896 177.299996948 179.099996948 179.099996948 177.299996948 179.1 180.9 180.9 179.1 180.900003052 182.700003052 182.700003052 180.900003052 182.700006104 184.500006104 184.500006104 182.700006104 184.499993896 186.299993896 186.299993896 184.499993896 186.299996948 188.099996948 188.099996948 186.299996948 188.1 189.9 189.9 188.1 189.900003052 191.700003052 191.700003052 189.900003052 191.700006104 193.500006104 193.500006104 191.700006104 193.499993896 195.299993896 195.299993896 193.499993896 195.299996948 197.099996948 197.099996948 195.299996948 197.1 198.9 198.9 197.1 198.900003052 200.700003052 200.700003052 198.900003052 200.700006104 202.500006104 202.500006104 200.700006104 202.499993896 204.299993896 204.299993896 202.499993896 204.299996948 206.099996948 206.099996948 204.299996948 206.1 207.9 207.9 206.1 207.900003052 209.700003052 209.700003052 207.900003052 209.700006104 211.500006104 211.500006104 209.700006104 211.499993896 213.299993896 213.299993896 211.499993896 213.299996948 215.099996948 215.099996948 213.299996948 215.1 216.9 216.9 215.1 216.900003052 218.700003052 218.700003052 216.900003052 218.700006104 220.500006104 220.500006104 218.700006104 220.499993896 222.299993896 222.299993896 220.499993896 222.299996948 224.099996948 224.099996948 222.299996948 224.1 225.9 225.9 224.1 225.900003052 227.700003052 227.700003052 225.900003052 227.700006104 229.500006104 229.500006104 227.700006104 229.499993896 231.299993896 231.299993896 229.499993896 231.299996948 233.099996948 233.099996948 231.299996948 233.1 234.9 234.9 233.1 234.900003052 236.700003052 236.700003052 234.900003052 236.700006104 238.500006104 238.500006104 236.700006104 238.499993896 240.299993896 240.299993896 238.499993896 240.299996948 242.099996948 242.099996948 240.299996948 242.1 243.9 243.9 242.1 243.900003052 245.700003052 245.700003052 243.900003052 245.700006104 247.500006104 247.500006104 245.700006104 247.499993896 249.299993896 249.299993896 247.499993896 249.299996948 251.099996948 251.099996948 249.299996948 251.1 252.9 252.9 251.1 252.900003052 254.700003052 254.700003052 252.900003052 254.700006104 256.500006104 256.500006104 254.700006104 256.499993896 258.299993896 258.299993896 256.499993896 258.300012207 260.100012207 260.100012207 258.300012207 260.1 261.9 261.9 260.1 261.899987793 263.699987793 263.699987793 261.899987793 263.700006104 265.500006104 265.500006104 263.700006104 265.499993896 267.299993896 267.299993896 265.499993896 267.300012207 269.100012207 269.100012207 267.300012207 269.1 270.9 270.9 269.1 270.899987793 272.699987793 272.699987793 270.899987793 272.700006104 274.500006104 274.500006104 272.700006104 274.499993896 276.299993896 276.299993896 274.499993896 276.300012207 278.100012207 278.100012207 276.300012207 278.1 279.9 279.9 278.1 279.899987793 281.699987793 281.699987793 279.899987793 281.700006104 283.500006104 283.500006104 281.700006104 283.499993896 285.299993896 285.299993896 283.499993896 285.300012207 287.100012207 287.100012207 285.300012207 287.1 288.9 288.9 287.1 288.899987793 290.699987793 290.699987793 288.899987793 290.700006104 292.500006104 292.500006104 290.700006104 292.499993896 294.299993896 294.299993896 292.499993896 294.300012207 296.100012207 296.100012207 294.300012207 296.1 297.9 297.9 296.1 297.899987793 299.699987793 299.699987793 297.899987793 299.700006104 301.500006104 301.500006104 299.700006104 301.499993896 303.299993896 303.299993896 301.499993896 303.300012207 305.100012207 305.100012207 303.300012207 305.1 306.9 306.9 305.1 306.899987793 308.699987793 308.699987793 306.899987793 308.700006104 310.500006104 310.500006104 308.700006104 310.499993896 312.299993896 312.299993896 310.499993896 312.300012207 314.100012207 314.100012207 312.300012207 314.1 315.9 315.9 314.1 315.899987793 317.699987793 317.699987793 315.899987793 317.700006104 319.500006104 319.500006104 317.700006104 319.499993896 321.299993896 321.299993896 319.499993896 321.300012207 323.100012207 323.100012207 321.300012207 323.1 324.9 324.9 323.1 324.899987793 326.699987793 326.699987793 324.899987793 326.700006104 328.500006104 328.500006104 326.700006104 328.499993896 330.299993896 330.299993896 328.499993896 330.300012207 332.100012207 332.100012207 330.300012207 332.1 333.9 333.9 332.1 333.899987793 335.699987793 335.699987793 333.899987793 335.700006104 337.500006104 337.500006104 335.700006104 337.499993896 339.299993896 339.299993896 337.499993896 339.300012207 341.100012207 341.100012207 339.300012207 341.1 342.9 342.9 341.1 342.899987793 344.699987793 344.699987793 342.899987793 344.700006104 346.500006104 346.500006104 344.700006104 346.499993896 348.299993896 348.299993896 346.499993896 348.300012207 350.100012207 350.100012207 348.300012207 350.1 351.9 351.9 350.1 351.899987793 353.699987793 353.699987793 351.899987793 353.700006104 355.500006104 355.500006104 353.700006104 355.499993896 357.299993896 357.299993896 355.499993896 357.300012207 359.100012207 359.100012207 357.300012207 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 +290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.8 0.8 0.8 -0.8 0.800000023842 2.40000002384 2.40000002384 0.800000023842 2.40000004768 4.00000004768 4.00000004768 2.40000004768 4.00000019073 5.60000019073 5.60000019073 4.00000019073 5.60000009537 7.20000009537 7.20000009537 5.60000009537 7.2 8.8 8.8 7.2 8.80000038147 10.4000003815 10.4000003815 8.80000038147 10.3999998093 11.9999998093 11.9999998093 10.3999998093 12.0000001907 13.6000001907 13.6000001907 12.0000001907 13.5999996185 15.1999996185 15.1999996185 13.5999996185 15.2 16.8 16.8 15.2 16.8000003815 18.4000003815 18.4000003815 16.8000003815 18.4000007629 20.0000007629 20.0000007629 18.4000007629 19.9999992371 21.5999992371 21.5999992371 19.9999992371 21.5999996185 23.1999996185 23.1999996185 21.5999996185 23.2 24.8 24.8 23.2 24.8000003815 26.4000003815 26.4000003815 24.8000003815 26.4000007629 28.0000007629 28.0000007629 26.4000007629 27.9999992371 29.5999992371 29.5999992371 27.9999992371 29.5999996185 31.1999996185 31.1999996185 29.5999996185 31.2 32.8 32.8 31.2 32.7999984741 34.3999984741 34.3999984741 32.7999984741 34.4000007629 36.0000007629 36.0000007629 34.4000007629 35.9999992371 37.5999992371 37.5999992371 35.9999992371 37.6000015259 39.2000015259 39.2000015259 37.6000015259 39.2 40.8 40.8 39.2 40.7999984741 42.3999984741 42.3999984741 40.7999984741 +42.4000007629 44.0000007629 44.0000007629 42.4000007629 43.9999992371 45.5999992371 45.5999992371 43.9999992371 45.6000015259 47.2000015259 47.2000015259 45.6000015259 47.2 48.8 48.8 47.2 48.7999984741 50.3999984741 50.3999984741 48.7999984741 50.4000007629 52.0000007629 52.0000007629 50.4000007629 51.9999992371 53.5999992371 53.5999992371 51.9999992371 53.6000015259 55.2000015259 55.2000015259 53.6000015259 55.2 56.8 56.8 55.2 56.7999984741 58.3999984741 58.3999984741 56.7999984741 58.4000007629 60.0000007629 60.0000007629 58.4000007629 59.9999992371 61.5999992371 61.5999992371 59.9999992371 61.6000015259 63.2000015259 63.2000015259 61.6000015259 63.2 64.8 64.8 63.2 64.7999984741 66.3999984741 66.3999984741 64.7999984741 66.3999969482 67.9999969482 67.9999969482 66.3999969482 68.0000030518 69.6000030518 69.6000030518 68.0000030518 69.6000015259 71.2000015259 71.2000015259 69.6000015259 71.2 72.8 72.8 71.2 72.7999984741 74.3999984741 74.3999984741 72.7999984741 74.3999969482 75.9999969482 75.9999969482 74.3999969482 76.0000030518 77.6000030518 77.6000030518 76.0000030518 77.6000015259 79.2000015259 79.2000015259 77.6000015259 79.2 80.8 80.8 79.2 80.7999984741 82.3999984741 82.3999984741 80.7999984741 82.3999969482 83.9999969482 83.9999969482 82.3999969482 84.0000030518 85.6000030518 85.6000030518 84.0000030518 85.6000015259 87.2000015259 87.2000015259 85.6000015259 87.2 88.8 88.8 87.2 88.7999984741 90.3999984741 90.3999984741 88.7999984741 90.3999969482 91.9999969482 91.9999969482 90.3999969482 92.0000030518 93.6000030518 93.6000030518 92.0000030518 93.6000015259 95.2000015259 95.2000015259 93.6000015259 95.2 96.8 96.8 95.2 96.7999984741 98.3999984741 98.3999984741 96.7999984741 98.3999969482 99.9999969482 99.9999969482 98.3999969482 100.000003052 101.600003052 101.600003052 100.000003052 101.600001526 103.200001526 103.200001526 101.600001526 103.2 104.8 104.8 103.2 104.799998474 106.399998474 106.399998474 104.799998474 106.399996948 107.999996948 107.999996948 106.399996948 108.000003052 109.600003052 109.600003052 108.000003052 109.600001526 111.200001526 111.200001526 109.600001526 111.2 112.8 112.8 111.2 112.799998474 114.399998474 114.399998474 112.799998474 114.399996948 115.999996948 115.999996948 114.399996948 116.000003052 117.600003052 117.600003052 116.000003052 117.600001526 119.200001526 119.200001526 117.600001526 119.2 120.8 120.8 119.2 120.799998474 122.399998474 122.399998474 120.799998474 122.399996948 123.999996948 123.999996948 122.399996948 124.000003052 125.600003052 125.600003052 124.000003052 125.600001526 127.200001526 127.200001526 125.600001526 127.2 128.8 128.8 127.2 128.800006104 130.400006104 130.400006104 128.800006104 130.399996948 131.999996948 131.999996948 130.399996948 132.000003052 133.600003052 133.600003052 132.000003052 133.599993896 135.199993896 135.199993896 133.599993896 135.2 136.8 136.8 135.2 136.800006104 138.400006104 138.400006104 136.800006104 138.399996948 139.999996948 139.999996948 138.399996948 140.000003052 141.600003052 141.600003052 140.000003052 141.599993896 143.199993896 143.199993896 141.599993896 143.2 144.8 144.8 143.2 144.800006104 146.400006104 146.400006104 144.800006104 146.399996948 147.999996948 147.999996948 146.399996948 148.000003052 149.600003052 149.600003052 148.000003052 149.599993896 151.199993896 151.199993896 149.599993896 151.2 152.8 152.8 151.2 152.800006104 154.400006104 154.400006104 152.800006104 154.399996948 155.999996948 155.999996948 154.399996948 156.000003052 157.600003052 157.600003052 156.000003052 157.599993896 159.199993896 159.199993896 157.599993896 159.2 160.8 160.8 159.2 160.800006104 162.400006104 162.400006104 160.800006104 162.399996948 163.999996948 163.999996948 162.399996948 164.000003052 165.600003052 165.600003052 164.000003052 165.599993896 167.199993896 167.199993896 165.599993896 167.2 168.8 168.8 167.2 168.800006104 170.400006104 170.400006104 168.800006104 170.399996948 171.999996948 171.999996948 170.399996948 172.000003052 173.600003052 173.600003052 172.000003052 173.599993896 175.199993896 175.199993896 173.599993896 175.2 176.8 176.8 175.2 176.800006104 178.400006104 178.400006104 176.800006104 178.399996948 179.999996948 179.999996948 178.399996948 180.000003052 181.600003052 181.600003052 180.000003052 181.599993896 183.199993896 183.199993896 181.599993896 183.2 184.8 184.8 183.2 184.800006104 186.400006104 186.400006104 184.800006104 186.399996948 187.999996948 187.999996948 186.399996948 188.000003052 189.600003052 189.600003052 188.000003052 189.599993896 191.199993896 191.199993896 189.599993896 191.2 192.8 192.8 191.2 192.800006104 194.400006104 194.400006104 192.800006104 194.399996948 195.999996948 195.999996948 194.399996948 196.000003052 197.600003052 197.600003052 196.000003052 197.599993896 199.199993896 199.199993896 197.599993896 199.2 200.8 200.8 199.2 200.800006104 202.400006104 202.400006104 200.800006104 202.399996948 203.999996948 203.999996948 202.399996948 204.000003052 205.600003052 205.600003052 204.000003052 205.599993896 207.199993896 207.199993896 205.599993896 207.2 208.8 208.8 207.2 208.800006104 210.400006104 210.400006104 208.800006104 210.399996948 211.999996948 211.999996948 210.399996948 212.000003052 213.600003052 213.600003052 212.000003052 213.599993896 215.199993896 215.199993896 213.599993896 215.2 216.8 216.8 215.2 216.800006104 218.400006104 218.400006104 216.800006104 218.399996948 219.999996948 219.999996948 218.399996948 220.000003052 221.600003052 221.600003052 220.000003052 221.599993896 223.199993896 223.199993896 221.599993896 223.2 224.8 224.8 223.2 224.800006104 226.400006104 226.400006104 224.800006104 226.399996948 227.999996948 227.999996948 226.399996948 228.000003052 229.600003052 229.600003052 228.000003052 229.599993896 231.199993896 231.199993896 229.599993896 231.2 232.8 232.8 231.2 232.800006104 234.400006104 234.400006104 232.800006104 234.399996948 235.999996948 235.999996948 234.399996948 236.000003052 237.600003052 237.600003052 236.000003052 237.599993896 239.199993896 239.199993896 237.599993896 239.2 240.8 240.8 239.2 240.800006104 242.400006104 242.400006104 240.800006104 242.399996948 243.999996948 243.999996948 242.399996948 244.000003052 245.600003052 245.600003052 244.000003052 245.599993896 247.199993896 247.199993896 245.599993896 247.2 248.8 248.8 247.2 248.800006104 250.400006104 250.400006104 248.800006104 250.399996948 251.999996948 251.999996948 250.399996948 252.000003052 253.600003052 253.600003052 252.000003052 253.599993896 255.199993896 255.199993896 253.599993896 255.2 256.8 256.8 255.2 256.800006104 258.400006104 258.400006104 256.800006104 258.400012207 260.000012207 260.000012207 258.400012207 259.999987793 261.599987793 261.599987793 259.999987793 261.599993896 263.199993896 263.199993896 261.599993896 263.2 264.8 264.8 263.2 264.800006104 266.400006104 266.400006104 264.800006104 266.400012207 268.000012207 268.000012207 266.400012207 267.999987793 269.599987793 269.599987793 267.999987793 269.599993896 271.199993896 271.199993896 269.599993896 271.2 272.8 272.8 271.2 272.800006104 274.400006104 274.400006104 272.800006104 274.400012207 276.000012207 276.000012207 274.400012207 275.999987793 277.599987793 277.599987793 275.999987793 277.599993896 279.199993896 279.199993896 277.599993896 279.2 280.8 280.8 279.2 280.800006104 282.400006104 282.400006104 280.800006104 282.400012207 284.000012207 284.000012207 282.400012207 283.999987793 285.599987793 285.599987793 283.999987793 285.599993896 287.199993896 287.199993896 285.599993896 287.2 288.8 288.8 287.2 288.800006104 290.400006104 290.400006104 288.800006104 290.400012207 292.000012207 292.000012207 290.400012207 291.999987793 293.599987793 293.599987793 291.999987793 293.599993896 295.199993896 295.199993896 293.599993896 295.2 296.8 296.8 295.2 296.800006104 298.400006104 298.400006104 296.800006104 298.400012207 300.000012207 300.000012207 298.400012207 299.999987793 301.599987793 301.599987793 299.999987793 301.599993896 303.199993896 303.199993896 301.599993896 303.2 304.8 304.8 303.2 304.800006104 306.400006104 306.400006104 304.800006104 306.400012207 308.000012207 308.000012207 306.400012207 307.999987793 309.599987793 309.599987793 307.999987793 309.599993896 311.199993896 311.199993896 309.599993896 311.2 312.8 312.8 311.2 312.800006104 314.400006104 314.400006104 312.800006104 314.400012207 316.000012207 316.000012207 314.400012207 315.999987793 317.599987793 317.599987793 315.999987793 317.599993896 319.199993896 319.199993896 317.599993896 319.2 320.8 320.8 319.2 320.800006104 322.400006104 322.400006104 320.800006104 322.400012207 324.000012207 324.000012207 322.400012207 323.999987793 325.599987793 325.599987793 323.999987793 325.599993896 327.199993896 327.199993896 325.599993896 327.2 328.8 328.8 327.2 328.800006104 330.400006104 330.400006104 328.800006104 330.400012207 332.000012207 332.000012207 330.400012207 331.999987793 333.599987793 333.599987793 331.999987793 333.599993896 335.199993896 335.199993896 333.599993896 335.2 336.8 336.8 335.2 336.800006104 338.400006104 338.400006104 336.800006104 338.400012207 340.000012207 340.000012207 338.400012207 339.999987793 341.599987793 341.599987793 339.999987793 341.599993896 343.199993896 343.199993896 341.599993896 343.2 344.8 344.8 343.2 344.800006104 346.400006104 346.400006104 344.800006104 346.400012207 348.000012207 348.000012207 346.400012207 347.999987793 349.599987793 349.599987793 347.999987793 349.599993896 351.199993896 351.199993896 349.599993896 351.2 352.8 352.8 351.2 352.800006104 354.400006104 354.400006104 352.800006104 354.400012207 356.000012207 356.000012207 354.400012207 355.999987793 357.599987793 357.599987793 355.999987793 357.599993896 359.199993896 359.199993896 357.599993896 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 +92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.72 0.72 0.72 -0.72 0.72000005722 2.16000005722 2.16000005722 0.72000005722 2.16000011444 3.60000011444 3.60000011444 2.16000011444 3.60000017166 5.04000017166 5.04000017166 3.60000017166 5.04000022888 6.48000022888 6.48000022888 5.04000022888 6.47999980927 7.91999980927 7.91999980927 6.47999980927 7.92000034332 9.36000034332 9.36000034332 7.92000034332 9.35999992371 10.7999999237 10.7999999237 9.35999992371 10.8000004578 12.2400004578 12.2400004578 10.8000004578 12.2400000381 13.6800000381 13.6800000381 12.2400000381 13.6799996185 15.1199996185 15.1199996185 13.6799996185 15.1200001526 16.5600001526 16.5600001526 15.1200001526 16.5600006866 18.0000006866 18.0000006866 16.5600006866 17.9999993134 19.4399993134 19.4399993134 17.9999993134 19.4399998474 20.8799998474 20.8799998474 19.4399998474 20.8800003815 22.3200003815 22.3200003815 20.8800003815 22.3200009155 23.7600009155 23.7600009155 22.3200009155 23.7599995422 25.1999995422 25.1999995422 23.7599995422 25.2000000763 26.6400000763 26.6400000763 25.2000000763 26.6400006104 28.0800006104 28.0800006104 26.6400006104 28.0799992371 29.5199992371 29.5199992371 28.0799992371 29.5199997711 30.9599997711 30.9599997711 29.5199997711 30.9600003052 32.4000003052 32.4000003052 30.9600003052 32.3999989319 33.8399989319 33.8399989319 32.3999989319 33.8400013733 35.2800013733 35.2800013733 33.8400013733 35.28 36.72 36.72 35.28 36.7199986267 38.1599986267 38.1599986267 36.7199986267 38.1600010681 39.6000010681 39.6000010681 38.1600010681 39.5999996948 41.0399996948 41.0399996948 39.5999996948 41.0399983215 42.4799983215 42.4799983215 41.0399983215 42.4800007629 43.9200007629 43.9200007629 42.4800007629 43.9199993896 45.3599993896 45.3599993896 43.9199993896 45.3600018311 46.8000018311 46.8000018311 45.3600018311 46.8000004578 48.2400004578 48.2400004578 46.8000004578 48.2399990845 49.6799990845 49.6799990845 48.2399990845 49.6800015259 51.1200015259 51.1200015259 49.6800015259 51.1200001526 52.5600001526 52.5600001526 51.1200001526 52.5599987793 53.9999987793 53.9999987793 52.5599987793 54.0000012207 55.4400012207 55.4400012207 54.0000012207 55.4399998474 56.8799998474 56.8799998474 55.4399998474 56.8799984741 58.3199984741 58.3199984741 56.8799984741 58.3200009155 59.7600009155 59.7600009155 58.3200009155 59.7599995422 61.1999995422 61.1999995422 59.7599995422 61.1999981689 62.6399981689 62.6399981689 61.1999981689 62.6400006104 64.0800006104 64.0800006104 62.6400006104 64.0800030518 65.5200030518 65.5200030518 64.0800030518 65.5199978638 66.9599978638 66.9599978638 65.5199978638 66.9600003052 68.4000003052 68.4000003052 66.9600003052 68.4000027466 69.8400027466 69.8400027466 68.4000027466 69.8399975586 71.2799975586 71.2799975586 69.8399975586 71.28 72.72 72.72 71.28 72.7200024414 74.1600024414 74.1600024414 72.7200024414 74.1599972534 75.5999972534 75.5999972534 74.1599972534 75.5999996948 77.0399996948 77.0399996948 75.5999996948 77.0400021362 78.4800021362 78.4800021362 77.0400021362 78.4799969482 79.9199969482 79.9199969482 78.4799969482 79.9199993896 81.3599993896 81.3599993896 79.9199993896 81.3600018311 82.8000018311 82.8000018311 81.3600018311 82.7999966431 84.2399966431 84.2399966431 82.7999966431 84.2399990845 85.6799990845 85.6799990845 84.2399990845 85.6800015259 87.1200015259 87.1200015259 85.6800015259 87.1199963379 88.5599963379 88.5599963379 87.1199963379 88.5599987793 89.9999987793 89.9999987793 88.5599987793 90.0000012207 91.4400012207 91.4400012207 90.0000012207 91.4400036621 92.8800036621 92.8800036621 91.4400036621 92.8799984741 94.3199984741 94.3199984741 92.8799984741 94.3200009155 95.7600009155 95.7600009155 94.3200009155 95.7600033569 97.2000033569 97.2000033569 95.7600033569 97.1999981689 98.6399981689 98.6399981689 97.1999981689 98.6400006104 100.08000061 100.08000061 98.6400006104 100.080003052 101.520003052 101.520003052 100.080003052 101.519997864 102.959997864 102.959997864 101.519997864 102.960000305 104.400000305 104.400000305 102.960000305 104.400002747 105.840002747 105.840002747 104.400002747 105.839997559 107.279997559 107.279997559 105.839997559 107.28 108.72 108.72 107.28 108.720002441 110.160002441 110.160002441 108.720002441 110.159997253 111.599997253 111.599997253 110.159997253 111.599999695 113.039999695 113.039999695 111.599999695 113.040002136 114.480002136 114.480002136 113.040002136 114.479996948 115.919996948 115.919996948 114.479996948 115.91999939 117.35999939 117.35999939 115.91999939 +117.360001831 118.800001831 118.800001831 117.360001831 118.799996643 120.239996643 120.239996643 118.799996643 120.239999084 121.679999084 121.679999084 120.239999084 121.680001526 123.120001526 123.120001526 121.680001526 123.119996338 124.559996338 124.559996338 123.119996338 124.559998779 125.999998779 125.999998779 124.559998779 126.000001221 127.440001221 127.440001221 126.000001221 127.440003662 128.880003662 128.880003662 127.440003662 128.880006104 130.320006104 130.320006104 128.880006104 130.319993286 131.759993286 131.759993286 130.319993286 131.759995728 133.199995728 133.199995728 131.759995728 133.199998169 134.639998169 134.639998169 133.199998169 134.64000061 136.08000061 136.08000061 134.64000061 136.080003052 137.520003052 137.520003052 136.080003052 137.520005493 138.960005493 138.960005493 137.520005493 138.959992676 140.399992676 140.399992676 138.959992676 140.399995117 141.839995117 141.839995117 140.399995117 141.839997559 143.279997559 143.279997559 141.839997559 143.28 144.72 144.72 143.28 144.720002441 146.160002441 146.160002441 144.720002441 146.160004883 147.600004883 147.600004883 146.160004883 147.600007324 149.040007324 149.040007324 147.600007324 149.039994507 150.479994507 150.479994507 149.039994507 150.479996948 151.919996948 151.919996948 150.479996948 151.91999939 153.35999939 153.35999939 151.91999939 153.360001831 154.800001831 154.800001831 153.360001831 154.800004272 156.240004272 156.240004272 154.800004272 156.240006714 157.680006714 157.680006714 156.240006714 157.679993896 159.119993896 159.119993896 157.679993896 159.119996338 160.559996338 160.559996338 159.119996338 160.559998779 161.999998779 161.999998779 160.559998779 162.000001221 163.440001221 163.440001221 162.000001221 163.440003662 164.880003662 164.880003662 163.440003662 164.880006104 166.320006104 166.320006104 164.880006104 166.319993286 167.759993286 167.759993286 166.319993286 167.759995728 169.199995728 169.199995728 167.759995728 169.199998169 170.639998169 170.639998169 169.199998169 170.64000061 172.08000061 172.08000061 170.64000061 172.080003052 173.520003052 173.520003052 172.080003052 173.520005493 174.960005493 174.960005493 173.520005493 174.959992676 176.399992676 176.399992676 174.959992676 176.399995117 177.839995117 177.839995117 176.399995117 177.839997559 179.279997559 179.279997559 177.839997559 179.28 180.72 180.72 179.28 180.720002441 182.160002441 182.160002441 180.720002441 182.160004883 183.600004883 183.600004883 182.160004883 183.600007324 185.040007324 185.040007324 183.600007324 185.039994507 186.479994507 186.479994507 185.039994507 186.479996948 187.919996948 187.919996948 186.479996948 187.91999939 189.35999939 189.35999939 187.91999939 189.360001831 190.800001831 190.800001831 189.360001831 190.800004272 192.240004272 192.240004272 190.800004272 192.240006714 193.680006714 193.680006714 192.240006714 193.679993896 195.119993896 195.119993896 193.679993896 195.119996338 196.559996338 196.559996338 195.119996338 196.559998779 197.999998779 197.999998779 196.559998779 198.000001221 199.440001221 199.440001221 198.000001221 199.440003662 200.880003662 200.880003662 199.440003662 200.880006104 202.320006104 202.320006104 200.880006104 202.319993286 203.759993286 203.759993286 202.319993286 203.759995728 205.199995728 205.199995728 203.759995728 205.199998169 206.639998169 206.639998169 205.199998169 206.64000061 208.08000061 208.08000061 206.64000061 208.080003052 209.520003052 209.520003052 208.080003052 209.520005493 210.960005493 210.960005493 209.520005493 210.959992676 212.399992676 212.399992676 210.959992676 212.399995117 213.839995117 213.839995117 212.399995117 213.839997559 215.279997559 215.279997559 213.839997559 215.28 216.72 216.72 215.28 216.720002441 218.160002441 218.160002441 216.720002441 218.160004883 219.600004883 219.600004883 218.160004883 219.600007324 221.040007324 221.040007324 219.600007324 221.039994507 222.479994507 222.479994507 221.039994507 222.479996948 223.919996948 223.919996948 222.479996948 223.91999939 225.35999939 225.35999939 223.91999939 225.360001831 226.800001831 226.800001831 225.360001831 226.800004272 228.240004272 228.240004272 226.800004272 228.240006714 229.680006714 229.680006714 228.240006714 229.679993896 231.119993896 231.119993896 229.679993896 231.119996338 232.559996338 232.559996338 231.119996338 232.559998779 233.999998779 233.999998779 232.559998779 234.000001221 235.440001221 235.440001221 234.000001221 235.440003662 236.880003662 236.880003662 235.440003662 236.880006104 238.320006104 238.320006104 236.880006104 238.319993286 239.759993286 239.759993286 238.319993286 239.759995728 241.199995728 241.199995728 239.759995728 241.199998169 242.639998169 242.639998169 241.199998169 242.64000061 244.08000061 244.08000061 242.64000061 244.080003052 245.520003052 245.520003052 244.080003052 245.520005493 246.960005493 246.960005493 245.520005493 246.959992676 248.399992676 248.399992676 246.959992676 248.399995117 249.839995117 249.839995117 248.399995117 249.839997559 251.279997559 251.279997559 249.839997559 251.28 252.72 252.72 251.28 252.720002441 254.160002441 254.160002441 252.720002441 254.160004883 255.600004883 255.600004883 254.160004883 255.600007324 257.040007324 257.040007324 255.600007324 257.040009766 258.480009766 258.480009766 257.040009766 258.480012207 259.920012207 259.920012207 258.480012207 259.920014648 261.360014648 261.360014648 259.920014648 261.359986572 262.799986572 262.799986572 261.359986572 262.799989014 264.239989014 264.239989014 262.799989014 264.239991455 265.679991455 265.679991455 264.239991455 265.679993896 267.119993896 267.119993896 265.679993896 267.119996338 268.559996338 268.559996338 267.119996338 268.559998779 269.999998779 269.999998779 268.559998779 270.000001221 271.440001221 271.440001221 270.000001221 271.440003662 272.880003662 272.880003662 271.440003662 272.880006104 274.320006104 274.320006104 272.880006104 274.320008545 275.760008545 275.760008545 274.320008545 275.760010986 277.200010986 277.200010986 275.760010986 277.200013428 278.640013428 278.640013428 277.200013428 278.639985352 280.079985352 280.079985352 278.639985352 280.079987793 281.519987793 281.519987793 280.079987793 281.519990234 282.959990234 282.959990234 281.519990234 282.959992676 284.399992676 284.399992676 282.959992676 284.399995117 285.839995117 285.839995117 284.399995117 285.839997559 287.279997559 287.279997559 285.839997559 287.28 288.72 288.72 287.28 288.720002441 290.160002441 290.160002441 288.720002441 290.160004883 291.600004883 291.600004883 290.160004883 291.600007324 293.040007324 293.040007324 291.600007324 293.040009766 294.480009766 294.480009766 293.040009766 294.480012207 295.920012207 295.920012207 294.480012207 295.920014648 297.360014648 297.360014648 295.920014648 297.359986572 298.799986572 298.799986572 297.359986572 298.799989014 300.239989014 300.239989014 298.799989014 300.239991455 301.679991455 301.679991455 300.239991455 301.679993896 303.119993896 303.119993896 301.679993896 303.119996338 304.559996338 304.559996338 303.119996338 304.559998779 305.999998779 305.999998779 304.559998779 306.000001221 307.440001221 307.440001221 306.000001221 307.440003662 308.880003662 308.880003662 307.440003662 308.880006104 310.320006104 310.320006104 308.880006104 310.320008545 311.760008545 311.760008545 310.320008545 311.760010986 313.200010986 313.200010986 311.760010986 313.200013428 314.640013428 314.640013428 313.200013428 314.639985352 316.079985352 316.079985352 314.639985352 316.079987793 317.519987793 317.519987793 316.079987793 317.519990234 318.959990234 318.959990234 317.519990234 318.959992676 320.399992676 320.399992676 318.959992676 320.399995117 321.839995117 321.839995117 320.399995117 321.839997559 323.279997559 323.279997559 321.839997559 323.28 324.72 324.72 323.28 324.720002441 326.160002441 326.160002441 324.720002441 326.160004883 327.600004883 327.600004883 326.160004883 327.600007324 329.040007324 329.040007324 327.600007324 329.040009766 330.480009766 330.480009766 329.040009766 330.480012207 331.920012207 331.920012207 330.480012207 331.920014648 333.360014648 333.360014648 331.920014648 333.359986572 334.799986572 334.799986572 333.359986572 334.799989014 336.239989014 336.239989014 334.799989014 336.239991455 337.679991455 337.679991455 336.239991455 337.679993896 339.119993896 339.119993896 337.679993896 339.119996338 340.559996338 340.559996338 339.119996338 340.559998779 341.999998779 341.999998779 340.559998779 342.000001221 343.440001221 343.440001221 342.000001221 343.440003662 344.880003662 344.880003662 343.440003662 344.880006104 346.320006104 346.320006104 344.880006104 346.320008545 347.760008545 347.760008545 346.320008545 347.760010986 349.200010986 349.200010986 347.760010986 349.200013428 350.640013428 350.640013428 349.200013428 350.639985352 352.079985352 352.079985352 350.639985352 352.079987793 353.519987793 353.519987793 352.079987793 353.519990234 354.959990234 354.959990234 353.519990234 354.959992676 356.399992676 356.399992676 354.959992676 356.399995117 357.839995117 357.839995117 356.399995117 357.839997559 359.279997559 359.279997559 357.839997559 -0.72 0.72 0.72 -0.72 0.72000005722 2.16000005722 2.16000005722 0.72000005722 2.16000011444 3.60000011444 3.60000011444 2.16000011444 3.60000017166 5.04000017166 5.04000017166 3.60000017166 5.04000022888 6.48000022888 6.48000022888 5.04000022888 6.47999980927 7.91999980927 7.91999980927 6.47999980927 7.92000034332 9.36000034332 9.36000034332 7.92000034332 9.35999992371 10.7999999237 10.7999999237 9.35999992371 10.8000004578 12.2400004578 12.2400004578 10.8000004578 12.2400000381 13.6800000381 13.6800000381 12.2400000381 13.6799996185 15.1199996185 15.1199996185 13.6799996185 15.1200001526 16.5600001526 16.5600001526 15.1200001526 16.5600006866 18.0000006866 18.0000006866 16.5600006866 17.9999993134 19.4399993134 19.4399993134 17.9999993134 19.4399998474 20.8799998474 20.8799998474 19.4399998474 20.8800003815 22.3200003815 22.3200003815 20.8800003815 22.3200009155 23.7600009155 23.7600009155 22.3200009155 23.7599995422 25.1999995422 25.1999995422 23.7599995422 25.2000000763 26.6400000763 26.6400000763 25.2000000763 26.6400006104 28.0800006104 28.0800006104 26.6400006104 28.0799992371 29.5199992371 29.5199992371 28.0799992371 29.5199997711 30.9599997711 30.9599997711 29.5199997711 30.9600003052 32.4000003052 32.4000003052 30.9600003052 32.3999989319 33.8399989319 33.8399989319 32.3999989319 33.8400013733 35.2800013733 35.2800013733 33.8400013733 35.28 36.72 36.72 35.28 36.7199986267 38.1599986267 38.1599986267 36.7199986267 38.1600010681 39.6000010681 39.6000010681 38.1600010681 39.5999996948 41.0399996948 41.0399996948 39.5999996948 41.0399983215 42.4799983215 42.4799983215 41.0399983215 42.4800007629 43.9200007629 43.9200007629 42.4800007629 43.9199993896 45.3599993896 45.3599993896 43.9199993896 45.3600018311 46.8000018311 46.8000018311 45.3600018311 46.8000004578 48.2400004578 48.2400004578 46.8000004578 48.2399990845 49.6799990845 49.6799990845 48.2399990845 49.6800015259 51.1200015259 51.1200015259 49.6800015259 51.1200001526 52.5600001526 52.5600001526 51.1200001526 52.5599987793 53.9999987793 53.9999987793 52.5599987793 54.0000012207 55.4400012207 55.4400012207 54.0000012207 55.4399998474 56.8799998474 56.8799998474 55.4399998474 56.8799984741 58.3199984741 58.3199984741 56.8799984741 58.3200009155 59.7600009155 59.7600009155 58.3200009155 59.7599995422 61.1999995422 61.1999995422 59.7599995422 61.1999981689 62.6399981689 62.6399981689 61.1999981689 62.6400006104 64.0800006104 64.0800006104 62.6400006104 64.0800030518 65.5200030518 65.5200030518 64.0800030518 65.5199978638 66.9599978638 66.9599978638 65.5199978638 66.9600003052 68.4000003052 68.4000003052 66.9600003052 68.4000027466 69.8400027466 69.8400027466 68.4000027466 69.8399975586 71.2799975586 71.2799975586 69.8399975586 71.28 72.72 72.72 71.28 72.7200024414 74.1600024414 74.1600024414 72.7200024414 74.1599972534 75.5999972534 75.5999972534 74.1599972534 75.5999996948 77.0399996948 77.0399996948 75.5999996948 77.0400021362 78.4800021362 78.4800021362 77.0400021362 78.4799969482 79.9199969482 79.9199969482 78.4799969482 79.9199993896 81.3599993896 81.3599993896 79.9199993896 81.3600018311 82.8000018311 82.8000018311 81.3600018311 82.7999966431 84.2399966431 84.2399966431 82.7999966431 84.2399990845 85.6799990845 85.6799990845 84.2399990845 85.6800015259 87.1200015259 87.1200015259 85.6800015259 87.1199963379 88.5599963379 88.5599963379 87.1199963379 88.5599987793 89.9999987793 89.9999987793 88.5599987793 90.0000012207 91.4400012207 91.4400012207 90.0000012207 91.4400036621 92.8800036621 92.8800036621 91.4400036621 92.8799984741 94.3199984741 94.3199984741 92.8799984741 94.3200009155 95.7600009155 95.7600009155 94.3200009155 95.7600033569 97.2000033569 97.2000033569 95.7600033569 97.1999981689 98.6399981689 98.6399981689 97.1999981689 98.6400006104 100.08000061 100.08000061 98.6400006104 100.080003052 101.520003052 101.520003052 100.080003052 101.519997864 102.959997864 102.959997864 101.519997864 102.960000305 104.400000305 104.400000305 102.960000305 104.400002747 105.840002747 105.840002747 104.400002747 105.839997559 107.279997559 107.279997559 105.839997559 107.28 108.72 108.72 107.28 108.720002441 110.160002441 110.160002441 108.720002441 110.159997253 111.599997253 111.599997253 110.159997253 111.599999695 113.039999695 113.039999695 111.599999695 113.040002136 114.480002136 114.480002136 113.040002136 114.479996948 115.919996948 115.919996948 114.479996948 115.91999939 117.35999939 117.35999939 115.91999939 117.360001831 118.800001831 118.800001831 117.360001831 118.799996643 120.239996643 120.239996643 118.799996643 120.239999084 121.679999084 121.679999084 120.239999084 121.680001526 123.120001526 123.120001526 121.680001526 123.119996338 124.559996338 124.559996338 123.119996338 124.559998779 125.999998779 125.999998779 124.559998779 126.000001221 127.440001221 127.440001221 126.000001221 127.440003662 128.880003662 128.880003662 127.440003662 128.880006104 130.320006104 130.320006104 128.880006104 130.319993286 131.759993286 131.759993286 130.319993286 131.759995728 133.199995728 133.199995728 131.759995728 133.199998169 134.639998169 134.639998169 133.199998169 134.64000061 136.08000061 136.08000061 134.64000061 136.080003052 137.520003052 137.520003052 136.080003052 137.520005493 138.960005493 138.960005493 137.520005493 138.959992676 140.399992676 140.399992676 138.959992676 140.399995117 141.839995117 141.839995117 140.399995117 141.839997559 143.279997559 143.279997559 141.839997559 143.28 144.72 144.72 143.28 144.720002441 146.160002441 146.160002441 144.720002441 146.160004883 147.600004883 147.600004883 146.160004883 147.600007324 149.040007324 149.040007324 147.600007324 149.039994507 150.479994507 150.479994507 149.039994507 150.479996948 151.919996948 151.919996948 150.479996948 151.91999939 153.35999939 153.35999939 151.91999939 153.360001831 154.800001831 154.800001831 153.360001831 154.800004272 156.240004272 156.240004272 154.800004272 156.240006714 157.680006714 157.680006714 156.240006714 157.679993896 159.119993896 159.119993896 157.679993896 159.119996338 160.559996338 160.559996338 159.119996338 160.559998779 161.999998779 161.999998779 160.559998779 162.000001221 163.440001221 163.440001221 162.000001221 163.440003662 164.880003662 164.880003662 163.440003662 164.880006104 166.320006104 166.320006104 164.880006104 166.319993286 167.759993286 167.759993286 166.319993286 167.759995728 169.199995728 169.199995728 167.759995728 169.199998169 170.639998169 170.639998169 169.199998169 170.64000061 172.08000061 172.08000061 170.64000061 172.080003052 173.520003052 173.520003052 172.080003052 173.520005493 174.960005493 174.960005493 173.520005493 174.959992676 176.399992676 176.399992676 174.959992676 176.399995117 177.839995117 177.839995117 176.399995117 177.839997559 179.279997559 179.279997559 177.839997559 179.28 180.72 180.72 179.28 180.720002441 182.160002441 182.160002441 180.720002441 182.160004883 183.600004883 183.600004883 182.160004883 183.600007324 185.040007324 185.040007324 183.600007324 185.039994507 186.479994507 186.479994507 185.039994507 186.479996948 187.919996948 187.919996948 186.479996948 187.91999939 189.35999939 189.35999939 187.91999939 189.360001831 190.800001831 190.800001831 189.360001831 190.800004272 192.240004272 192.240004272 190.800004272 192.240006714 193.680006714 193.680006714 192.240006714 193.679993896 195.119993896 195.119993896 193.679993896 195.119996338 196.559996338 196.559996338 195.119996338 196.559998779 197.999998779 197.999998779 196.559998779 198.000001221 199.440001221 199.440001221 198.000001221 199.440003662 200.880003662 200.880003662 199.440003662 200.880006104 202.320006104 202.320006104 200.880006104 202.319993286 203.759993286 203.759993286 202.319993286 203.759995728 205.199995728 205.199995728 203.759995728 205.199998169 206.639998169 206.639998169 205.199998169 206.64000061 208.08000061 208.08000061 206.64000061 208.080003052 209.520003052 209.520003052 208.080003052 209.520005493 210.960005493 210.960005493 209.520005493 210.959992676 212.399992676 212.399992676 210.959992676 212.399995117 213.839995117 213.839995117 212.399995117 213.839997559 215.279997559 215.279997559 213.839997559 215.28 216.72 216.72 215.28 216.720002441 218.160002441 218.160002441 216.720002441 218.160004883 219.600004883 219.600004883 218.160004883 219.600007324 221.040007324 221.040007324 219.600007324 221.039994507 222.479994507 222.479994507 221.039994507 222.479996948 223.919996948 223.919996948 222.479996948 223.91999939 225.35999939 225.35999939 223.91999939 225.360001831 226.800001831 226.800001831 225.360001831 226.800004272 228.240004272 228.240004272 226.800004272 228.240006714 229.680006714 229.680006714 228.240006714 229.679993896 231.119993896 231.119993896 229.679993896 231.119996338 232.559996338 232.559996338 231.119996338 232.559998779 233.999998779 233.999998779 232.559998779 234.000001221 235.440001221 235.440001221 234.000001221 235.440003662 236.880003662 236.880003662 235.440003662 236.880006104 238.320006104 238.320006104 236.880006104 238.319993286 239.759993286 239.759993286 238.319993286 239.759995728 241.199995728 241.199995728 239.759995728 241.199998169 242.639998169 242.639998169 241.199998169 242.64000061 244.08000061 244.08000061 242.64000061 244.080003052 245.520003052 245.520003052 244.080003052 245.520005493 246.960005493 246.960005493 245.520005493 246.959992676 248.399992676 248.399992676 246.959992676 248.399995117 249.839995117 249.839995117 248.399995117 249.839997559 251.279997559 251.279997559 249.839997559 251.28 252.72 252.72 251.28 252.720002441 254.160002441 254.160002441 252.720002441 254.160004883 255.600004883 255.600004883 254.160004883 255.600007324 257.040007324 257.040007324 255.600007324 257.040009766 258.480009766 258.480009766 257.040009766 258.480012207 259.920012207 259.920012207 258.480012207 259.920014648 261.360014648 261.360014648 259.920014648 261.359986572 262.799986572 262.799986572 261.359986572 262.799989014 264.239989014 264.239989014 262.799989014 264.239991455 265.679991455 265.679991455 264.239991455 265.679993896 267.119993896 267.119993896 265.679993896 267.119996338 268.559996338 268.559996338 267.119996338 268.559998779 269.999998779 269.999998779 268.559998779 270.000001221 271.440001221 271.440001221 270.000001221 271.440003662 272.880003662 272.880003662 271.440003662 272.880006104 274.320006104 274.320006104 272.880006104 274.320008545 275.760008545 275.760008545 274.320008545 275.760010986 277.200010986 277.200010986 275.760010986 277.200013428 278.640013428 278.640013428 277.200013428 278.639985352 280.079985352 280.079985352 278.639985352 280.079987793 281.519987793 281.519987793 280.079987793 281.519990234 282.959990234 282.959990234 281.519990234 282.959992676 284.399992676 284.399992676 282.959992676 284.399995117 285.839995117 285.839995117 284.399995117 285.839997559 287.279997559 287.279997559 285.839997559 287.28 288.72 288.72 287.28 288.720002441 290.160002441 290.160002441 288.720002441 290.160004883 291.600004883 291.600004883 290.160004883 291.600007324 293.040007324 293.040007324 291.600007324 293.040009766 294.480009766 294.480009766 293.040009766 294.480012207 295.920012207 295.920012207 294.480012207 295.920014648 297.360014648 297.360014648 295.920014648 297.359986572 298.799986572 298.799986572 297.359986572 298.799989014 300.239989014 300.239989014 298.799989014 300.239991455 301.679991455 301.679991455 300.239991455 301.679993896 303.119993896 303.119993896 301.679993896 303.119996338 304.559996338 304.559996338 303.119996338 304.559998779 305.999998779 305.999998779 304.559998779 306.000001221 307.440001221 307.440001221 306.000001221 307.440003662 308.880003662 308.880003662 307.440003662 308.880006104 310.320006104 310.320006104 308.880006104 310.320008545 311.760008545 311.760008545 310.320008545 311.760010986 313.200010986 313.200010986 311.760010986 313.200013428 314.640013428 314.640013428 313.200013428 314.639985352 316.079985352 316.079985352 314.639985352 316.079987793 317.519987793 317.519987793 316.079987793 317.519990234 318.959990234 318.959990234 317.519990234 318.959992676 320.399992676 320.399992676 318.959992676 320.399995117 321.839995117 321.839995117 320.399995117 321.839997559 323.279997559 323.279997559 321.839997559 323.28 324.72 324.72 323.28 324.720002441 326.160002441 326.160002441 324.720002441 326.160004883 327.600004883 327.600004883 326.160004883 327.600007324 329.040007324 329.040007324 327.600007324 329.040009766 330.480009766 330.480009766 329.040009766 330.480012207 331.920012207 331.920012207 330.480012207 331.920014648 333.360014648 333.360014648 331.920014648 333.359986572 334.799986572 334.799986572 333.359986572 334.799989014 336.239989014 336.239989014 334.799989014 336.239991455 337.679991455 337.679991455 336.239991455 337.679993896 339.119993896 339.119993896 337.679993896 339.119996338 340.559996338 340.559996338 339.119996338 340.559998779 341.999998779 341.999998779 340.559998779 342.000001221 343.440001221 343.440001221 342.000001221 343.440003662 344.880003662 344.880003662 343.440003662 344.880006104 346.320006104 346.320006104 344.880006104 346.320008545 347.760008545 347.760008545 346.320008545 347.760010986 349.200010986 349.200010986 347.760010986 349.200013428 350.640013428 350.640013428 349.200013428 350.639985352 352.079985352 352.079985352 350.639985352 352.079987793 353.519987793 353.519987793 352.079987793 353.519990234 354.959990234 354.959990234 353.519990234 354.959992676 356.399992676 356.399992676 354.959992676 356.399995117 357.839995117 357.839995117 356.399995117 357.839997559 359.279997559 359.279997559 357.839997559 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 +114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.666666666667 0.666666666667 0.666666666667 -0.666666666667 0.666666706403 2.00000003974 2.00000003974 0.666666706403 2.00000007947 3.33333341281 3.33333341281 2.00000007947 3.33333333333 4.66666666667 4.66666666667 3.33333333333 4.66666682561 6.00000015895 6.00000015895 4.66666682561 5.99999984105 7.33333317439 7.33333317439 5.99999984105 7.33333333333 8.66666666667 8.66666666667 7.33333333333 8.66666634878 9.99999968211 9.99999968211 8.66666634878 10.0000003179 11.3333336512 11.3333336512 10.0000003179 11.3333333333 12.6666666667 12.6666666667 11.3333333333 12.6666663488 13.9999996821 13.9999996821 12.6666663488 14.0000003179 15.3333336512 15.3333336512 14.0000003179 15.3333333333 16.6666666667 16.6666666667 15.3333333333 16.6666673024 18.0000006358 18.0000006358 16.6666673024 17.9999993642 19.3333326976 19.3333326976 17.9999993642 19.3333333333 20.6666666667 20.6666666667 19.3333333333 20.6666673024 22.0000006358 22.0000006358 20.6666673024 21.9999993642 23.3333326976 23.3333326976 21.9999993642 23.3333333333 24.6666666667 24.6666666667 23.3333333333 24.6666673024 26.0000006358 26.0000006358 24.6666673024 25.9999993642 27.3333326976 27.3333326976 25.9999993642 27.3333333333 28.6666666667 28.6666666667 27.3333333333 28.6666673024 30.0000006358 30.0000006358 28.6666673024 29.9999993642 31.3333326976 31.3333326976 29.9999993642 31.3333333333 32.6666666667 32.6666666667 31.3333333333 32.6666653951 33.9999987284 33.9999987284 32.6666653951 34.0000012716 35.3333346049 35.3333346049 34.0000012716 35.3333333333 36.6666666667 36.6666666667 35.3333333333 36.6666653951 37.9999987284 37.9999987284 36.6666653951 38.0000012716 39.3333346049 39.3333346049 38.0000012716 39.3333333333 40.6666666667 40.6666666667 39.3333333333 40.6666653951 41.9999987284 41.9999987284 40.6666653951 42.0000012716 43.3333346049 43.3333346049 42.0000012716 43.3333333333 44.6666666667 44.6666666667 43.3333333333 44.6666653951 45.9999987284 45.9999987284 44.6666653951 46.0000012716 47.3333346049 47.3333346049 46.0000012716 47.3333333333 48.6666666667 48.6666666667 47.3333333333 48.6666653951 49.9999987284 49.9999987284 48.6666653951 50.0000012716 51.3333346049 51.3333346049 50.0000012716 51.3333333333 52.6666666667 52.6666666667 51.3333333333 52.6666653951 53.9999987284 53.9999987284 52.6666653951 54.0000012716 55.3333346049 55.3333346049 54.0000012716 55.3333333333 56.6666666667 56.6666666667 55.3333333333 56.6666653951 57.9999987284 57.9999987284 56.6666653951 58.0000012716 59.3333346049 59.3333346049 58.0000012716 59.3333333333 60.6666666667 60.6666666667 59.3333333333 60.6666653951 61.9999987284 61.9999987284 60.6666653951 62.0000012716 63.3333346049 63.3333346049 62.0000012716 63.3333333333 64.6666666667 64.6666666667 63.3333333333 64.6666692098 66.0000025431 66.0000025431 64.6666692098 65.9999974569 67.3333307902 67.3333307902 65.9999974569 67.3333333333 68.6666666667 68.6666666667 67.3333333333 68.6666692098 70.0000025431 70.0000025431 68.6666692098 69.9999974569 71.3333307902 71.3333307902 69.9999974569 71.3333333333 72.6666666667 72.6666666667 71.3333333333 72.6666692098 74.0000025431 74.0000025431 72.6666692098 73.9999974569 75.3333307902 75.3333307902 73.9999974569 75.3333333333 76.6666666667 76.6666666667 75.3333333333 76.6666692098 78.0000025431 78.0000025431 76.6666692098 77.9999974569 79.3333307902 79.3333307902 77.9999974569 79.3333333333 80.6666666667 80.6666666667 79.3333333333 80.6666692098 82.0000025431 82.0000025431 80.6666692098 81.9999974569 83.3333307902 83.3333307902 81.9999974569 83.3333333333 84.6666666667 84.6666666667 83.3333333333 84.6666692098 86.0000025431 86.0000025431 84.6666692098 85.9999974569 87.3333307902 87.3333307902 85.9999974569 87.3333333333 88.6666666667 88.6666666667 87.3333333333 88.6666692098 90.0000025431 90.0000025431 88.6666692098 89.9999974569 91.3333307902 91.3333307902 89.9999974569 91.3333333333 92.6666666667 92.6666666667 91.3333333333 92.6666692098 94.0000025431 94.0000025431 92.6666692098 93.9999974569 95.3333307902 95.3333307902 93.9999974569 95.3333333333 96.6666666667 96.6666666667 95.3333333333 96.6666692098 98.0000025431 98.0000025431 96.6666692098 97.9999974569 99.3333307902 99.3333307902 97.9999974569 99.3333333333 100.666666667 100.666666667 99.3333333333 100.66666921 102.000002543 102.000002543 100.66666921 101.999997457 103.33333079 103.33333079 101.999997457 103.333333333 104.666666667 104.666666667 103.333333333 104.66666921 106.000002543 106.000002543 104.66666921 105.999997457 107.33333079 107.33333079 105.999997457 107.333333333 108.666666667 108.666666667 107.333333333 108.66666921 110.000002543 110.000002543 108.66666921 109.999997457 111.33333079 111.33333079 109.999997457 111.333333333 112.666666667 112.666666667 111.333333333 112.66666921 114.000002543 114.000002543 112.66666921 113.999997457 115.33333079 115.33333079 113.999997457 115.333333333 116.666666667 116.666666667 115.333333333 116.66666921 118.000002543 118.000002543 116.66666921 117.999997457 119.33333079 119.33333079 117.999997457 119.333333333 120.666666667 120.666666667 119.333333333 120.66666921 122.000002543 122.000002543 120.66666921 121.999997457 123.33333079 123.33333079 121.999997457 123.333333333 124.666666667 124.666666667 123.333333333 124.66666921 126.000002543 126.000002543 124.66666921 125.999997457 127.33333079 127.33333079 125.999997457 127.333333333 128.666666667 128.666666667 127.333333333 128.66666158 129.999994914 129.999994914 128.66666158 130.000005086 131.33333842 131.33333842 130.000005086 131.333333333 132.666666667 132.666666667 131.333333333 132.66666158 133.999994914 133.999994914 132.66666158 134.000005086 135.33333842 135.33333842 134.000005086 135.333333333 136.666666667 136.666666667 135.333333333 136.66666158 137.999994914 137.999994914 136.66666158 138.000005086 139.33333842 139.33333842 138.000005086 139.333333333 140.666666667 140.666666667 139.333333333 140.66666158 141.999994914 141.999994914 140.66666158 142.000005086 143.33333842 143.33333842 142.000005086 143.333333333 144.666666667 144.666666667 143.333333333 144.66666158 145.999994914 145.999994914 144.66666158 146.000005086 147.33333842 147.33333842 146.000005086 147.333333333 148.666666667 148.666666667 147.333333333 148.66666158 149.999994914 149.999994914 148.66666158 150.000005086 151.33333842 151.33333842 150.000005086 151.333333333 152.666666667 152.666666667 151.333333333 152.66666158 153.999994914 153.999994914 152.66666158 154.000005086 155.33333842 155.33333842 154.000005086 155.333333333 156.666666667 156.666666667 155.333333333 156.66666158 157.999994914 157.999994914 156.66666158 158.000005086 159.33333842 159.33333842 158.000005086 159.333333333 160.666666667 160.666666667 159.333333333 160.66666158 161.999994914 161.999994914 160.66666158 162.000005086 163.33333842 163.33333842 162.000005086 163.333333333 164.666666667 164.666666667 163.333333333 164.66666158 165.999994914 165.999994914 164.66666158 166.000005086 167.33333842 167.33333842 166.000005086 167.333333333 168.666666667 168.666666667 167.333333333 168.66666158 169.999994914 169.999994914 168.66666158 170.000005086 171.33333842 171.33333842 170.000005086 171.333333333 172.666666667 172.666666667 171.333333333 172.66666158 173.999994914 173.999994914 172.66666158 174.000005086 175.33333842 175.33333842 174.000005086 175.333333333 176.666666667 176.666666667 175.333333333 176.66666158 177.999994914 177.999994914 176.66666158 178.000005086 179.33333842 179.33333842 178.000005086 179.333333333 180.666666667 180.666666667 179.333333333 180.66666158 181.999994914 181.999994914 180.66666158 182.000005086 183.33333842 183.33333842 182.000005086 183.333333333 184.666666667 184.666666667 183.333333333 184.66666158 185.999994914 185.999994914 184.66666158 186.000005086 187.33333842 187.33333842 186.000005086 187.333333333 188.666666667 188.666666667 187.333333333 188.66666158 189.999994914 189.999994914 188.66666158 190.000005086 191.33333842 191.33333842 190.000005086 191.333333333 192.666666667 192.666666667 191.333333333 192.66666158 193.999994914 193.999994914 192.66666158 194.000005086 195.33333842 195.33333842 194.000005086 195.333333333 196.666666667 196.666666667 195.333333333 196.66666158 197.999994914 197.999994914 196.66666158 198.000005086 199.33333842 199.33333842 198.000005086 199.333333333 200.666666667 200.666666667 199.333333333 200.66666158 201.999994914 201.999994914 200.66666158 202.000005086 203.33333842 203.33333842 202.000005086 203.333333333 204.666666667 204.666666667 203.333333333 204.66666158 205.999994914 205.999994914 204.66666158 206.000005086 207.33333842 207.33333842 206.000005086 207.333333333 208.666666667 208.666666667 207.333333333 208.66666158 209.999994914 209.999994914 208.66666158 210.000005086 211.33333842 211.33333842 210.000005086 211.333333333 212.666666667 212.666666667 211.333333333 212.66666158 213.999994914 213.999994914 212.66666158 214.000005086 215.33333842 215.33333842 214.000005086 215.333333333 216.666666667 216.666666667 215.333333333 216.66666158 217.999994914 217.999994914 216.66666158 218.000005086 219.33333842 219.33333842 218.000005086 219.333333333 220.666666667 220.666666667 219.333333333 220.66666158 221.999994914 221.999994914 220.66666158 222.000005086 223.33333842 223.33333842 222.000005086 223.333333333 224.666666667 224.666666667 223.333333333 224.66666158 225.999994914 225.999994914 224.66666158 226.000005086 227.33333842 227.33333842 226.000005086 227.333333333 228.666666667 228.666666667 227.333333333 228.66666158 229.999994914 229.999994914 228.66666158 230.000005086 231.33333842 231.33333842 230.000005086 231.333333333 232.666666667 232.666666667 231.333333333 232.66666158 233.999994914 233.999994914 232.66666158 234.000005086 235.33333842 235.33333842 234.000005086 235.333333333 236.666666667 236.666666667 235.333333333 236.66666158 237.999994914 237.999994914 236.66666158 238.000005086 239.33333842 239.33333842 238.000005086 239.333333333 240.666666667 240.666666667 239.333333333 240.66666158 241.999994914 241.999994914 240.66666158 242.000005086 243.33333842 243.33333842 242.000005086 243.333333333 244.666666667 244.666666667 243.333333333 244.66666158 245.999994914 245.999994914 244.66666158 246.000005086 247.33333842 247.33333842 246.000005086 247.333333333 248.666666667 248.666666667 247.333333333 248.66666158 249.999994914 249.999994914 248.66666158 250.000005086 251.33333842 251.33333842 250.000005086 251.333333333 252.666666667 252.666666667 251.333333333 252.66666158 253.999994914 253.999994914 252.66666158 254.000005086 255.33333842 255.33333842 254.000005086 255.333333333 256.666666667 256.666666667 255.333333333 256.666676839 258.000010173 258.000010173 256.666676839 257.999989827 259.333323161 259.333323161 257.999989827 259.333333333 260.666666667 260.666666667 259.333333333 260.666676839 262.000010173 262.000010173 260.666676839 261.999989827 263.333323161 263.333323161 261.999989827 263.333333333 264.666666667 264.666666667 263.333333333 264.666676839 266.000010173 266.000010173 264.666676839 265.999989827 267.333323161 267.333323161 265.999989827 267.333333333 268.666666667 268.666666667 267.333333333 268.666676839 270.000010173 270.000010173 268.666676839 269.999989827 271.333323161 271.333323161 269.999989827 271.333333333 272.666666667 272.666666667 271.333333333 272.666676839 274.000010173 274.000010173 272.666676839 273.999989827 275.333323161 275.333323161 273.999989827 275.333333333 276.666666667 276.666666667 275.333333333 276.666676839 278.000010173 278.000010173 276.666676839 277.999989827 279.333323161 279.333323161 277.999989827 279.333333333 280.666666667 280.666666667 279.333333333 280.666676839 282.000010173 282.000010173 280.666676839 281.999989827 283.333323161 283.333323161 281.999989827 283.333333333 284.666666667 284.666666667 283.333333333 284.666676839 286.000010173 286.000010173 284.666676839 285.999989827 287.333323161 287.333323161 285.999989827 287.333333333 288.666666667 288.666666667 287.333333333 288.666676839 290.000010173 290.000010173 288.666676839 289.999989827 291.333323161 291.333323161 289.999989827 291.333333333 292.666666667 292.666666667 291.333333333 292.666676839 294.000010173 294.000010173 292.666676839 293.999989827 295.333323161 295.333323161 293.999989827 295.333333333 296.666666667 296.666666667 295.333333333 296.666676839 298.000010173 298.000010173 296.666676839 297.999989827 299.333323161 299.333323161 297.999989827 299.333333333 300.666666667 300.666666667 299.333333333 300.666676839 302.000010173 302.000010173 300.666676839 301.999989827 303.333323161 303.333323161 301.999989827 303.333333333 304.666666667 304.666666667 303.333333333 304.666676839 306.000010173 306.000010173 304.666676839 305.999989827 307.333323161 307.333323161 305.999989827 307.333333333 308.666666667 308.666666667 307.333333333 308.666676839 310.000010173 310.000010173 308.666676839 309.999989827 311.333323161 311.333323161 309.999989827 311.333333333 312.666666667 312.666666667 311.333333333 312.666676839 314.000010173 314.000010173 312.666676839 313.999989827 315.333323161 315.333323161 313.999989827 315.333333333 316.666666667 316.666666667 315.333333333 316.666676839 318.000010173 318.000010173 316.666676839 317.999989827 319.333323161 319.333323161 317.999989827 319.333333333 320.666666667 320.666666667 319.333333333 320.666676839 322.000010173 322.000010173 320.666676839 321.999989827 323.333323161 323.333323161 321.999989827 323.333333333 324.666666667 324.666666667 323.333333333 324.666676839 326.000010173 326.000010173 324.666676839 325.999989827 327.333323161 327.333323161 325.999989827 327.333333333 328.666666667 328.666666667 327.333333333 328.666676839 330.000010173 330.000010173 328.666676839 329.999989827 331.333323161 331.333323161 329.999989827 331.333333333 332.666666667 332.666666667 331.333333333 332.666676839 334.000010173 334.000010173 332.666676839 333.999989827 335.333323161 335.333323161 333.999989827 335.333333333 336.666666667 336.666666667 335.333333333 336.666676839 338.000010173 338.000010173 336.666676839 337.999989827 339.333323161 339.333323161 337.999989827 339.333333333 340.666666667 340.666666667 339.333333333 340.666676839 342.000010173 342.000010173 340.666676839 341.999989827 343.333323161 343.333323161 341.999989827 343.333333333 344.666666667 344.666666667 343.333333333 344.666676839 346.000010173 346.000010173 344.666676839 345.999989827 347.333323161 347.333323161 345.999989827 347.333333333 348.666666667 348.666666667 347.333333333 348.666676839 350.000010173 350.000010173 348.666676839 349.999989827 351.333323161 351.333323161 349.999989827 351.333333333 352.666666667 352.666666667 351.333333333 352.666676839 354.000010173 354.000010173 352.666676839 353.999989827 355.333323161 355.333323161 353.999989827 355.333333333 356.666666667 356.666666667 355.333333333 356.666676839 358.000010173 358.000010173 356.666676839 357.999989827 359.333323161 359.333323161 357.999989827 -0.666666666667 0.666666666667 0.666666666667 -0.666666666667 0.666666706403 2.00000003974 2.00000003974 0.666666706403 2.00000007947 3.33333341281 3.33333341281 2.00000007947 3.33333333333 4.66666666667 4.66666666667 3.33333333333 4.66666682561 6.00000015895 6.00000015895 4.66666682561 5.99999984105 7.33333317439 7.33333317439 5.99999984105 7.33333333333 8.66666666667 8.66666666667 7.33333333333 8.66666634878 9.99999968211 9.99999968211 8.66666634878 10.0000003179 11.3333336512 11.3333336512 10.0000003179 11.3333333333 12.6666666667 12.6666666667 11.3333333333 12.6666663488 13.9999996821 13.9999996821 12.6666663488 14.0000003179 15.3333336512 15.3333336512 14.0000003179 15.3333333333 16.6666666667 16.6666666667 15.3333333333 16.6666673024 18.0000006358 18.0000006358 16.6666673024 17.9999993642 19.3333326976 19.3333326976 17.9999993642 19.3333333333 20.6666666667 20.6666666667 19.3333333333 20.6666673024 22.0000006358 22.0000006358 20.6666673024 21.9999993642 23.3333326976 23.3333326976 21.9999993642 23.3333333333 24.6666666667 24.6666666667 23.3333333333 24.6666673024 26.0000006358 26.0000006358 24.6666673024 25.9999993642 27.3333326976 27.3333326976 25.9999993642 27.3333333333 28.6666666667 28.6666666667 27.3333333333 28.6666673024 30.0000006358 30.0000006358 28.6666673024 29.9999993642 31.3333326976 31.3333326976 29.9999993642 31.3333333333 32.6666666667 32.6666666667 31.3333333333 32.6666653951 33.9999987284 33.9999987284 32.6666653951 34.0000012716 35.3333346049 35.3333346049 34.0000012716 35.3333333333 36.6666666667 36.6666666667 35.3333333333 36.6666653951 37.9999987284 37.9999987284 36.6666653951 38.0000012716 39.3333346049 39.3333346049 38.0000012716 39.3333333333 40.6666666667 40.6666666667 39.3333333333 40.6666653951 41.9999987284 41.9999987284 40.6666653951 42.0000012716 43.3333346049 43.3333346049 42.0000012716 43.3333333333 44.6666666667 44.6666666667 43.3333333333 44.6666653951 45.9999987284 45.9999987284 44.6666653951 46.0000012716 47.3333346049 47.3333346049 46.0000012716 47.3333333333 48.6666666667 48.6666666667 47.3333333333 48.6666653951 49.9999987284 49.9999987284 48.6666653951 50.0000012716 51.3333346049 51.3333346049 50.0000012716 51.3333333333 52.6666666667 52.6666666667 51.3333333333 52.6666653951 53.9999987284 53.9999987284 52.6666653951 54.0000012716 55.3333346049 55.3333346049 54.0000012716 55.3333333333 56.6666666667 56.6666666667 55.3333333333 56.6666653951 57.9999987284 57.9999987284 56.6666653951 58.0000012716 59.3333346049 59.3333346049 58.0000012716 59.3333333333 60.6666666667 60.6666666667 59.3333333333 60.6666653951 61.9999987284 61.9999987284 60.6666653951 62.0000012716 63.3333346049 63.3333346049 62.0000012716 63.3333333333 64.6666666667 64.6666666667 63.3333333333 64.6666692098 66.0000025431 66.0000025431 64.6666692098 65.9999974569 67.3333307902 67.3333307902 65.9999974569 67.3333333333 68.6666666667 68.6666666667 67.3333333333 68.6666692098 70.0000025431 70.0000025431 68.6666692098 69.9999974569 71.3333307902 71.3333307902 69.9999974569 71.3333333333 72.6666666667 72.6666666667 71.3333333333 72.6666692098 74.0000025431 74.0000025431 72.6666692098 +73.9999974569 75.3333307902 75.3333307902 73.9999974569 75.3333333333 76.6666666667 76.6666666667 75.3333333333 76.6666692098 78.0000025431 78.0000025431 76.6666692098 77.9999974569 79.3333307902 79.3333307902 77.9999974569 79.3333333333 80.6666666667 80.6666666667 79.3333333333 80.6666692098 82.0000025431 82.0000025431 80.6666692098 81.9999974569 83.3333307902 83.3333307902 81.9999974569 83.3333333333 84.6666666667 84.6666666667 83.3333333333 84.6666692098 86.0000025431 86.0000025431 84.6666692098 85.9999974569 87.3333307902 87.3333307902 85.9999974569 87.3333333333 88.6666666667 88.6666666667 87.3333333333 88.6666692098 90.0000025431 90.0000025431 88.6666692098 89.9999974569 91.3333307902 91.3333307902 89.9999974569 91.3333333333 92.6666666667 92.6666666667 91.3333333333 92.6666692098 94.0000025431 94.0000025431 92.6666692098 93.9999974569 95.3333307902 95.3333307902 93.9999974569 95.3333333333 96.6666666667 96.6666666667 95.3333333333 96.6666692098 98.0000025431 98.0000025431 96.6666692098 97.9999974569 99.3333307902 99.3333307902 97.9999974569 99.3333333333 100.666666667 100.666666667 99.3333333333 100.66666921 102.000002543 102.000002543 100.66666921 101.999997457 103.33333079 103.33333079 101.999997457 103.333333333 104.666666667 104.666666667 103.333333333 104.66666921 106.000002543 106.000002543 104.66666921 105.999997457 107.33333079 107.33333079 105.999997457 107.333333333 108.666666667 108.666666667 107.333333333 108.66666921 110.000002543 110.000002543 108.66666921 109.999997457 111.33333079 111.33333079 109.999997457 111.333333333 112.666666667 112.666666667 111.333333333 112.66666921 114.000002543 114.000002543 112.66666921 113.999997457 115.33333079 115.33333079 113.999997457 115.333333333 116.666666667 116.666666667 115.333333333 116.66666921 118.000002543 118.000002543 116.66666921 117.999997457 119.33333079 119.33333079 117.999997457 119.333333333 120.666666667 120.666666667 119.333333333 120.66666921 122.000002543 122.000002543 120.66666921 121.999997457 123.33333079 123.33333079 121.999997457 123.333333333 124.666666667 124.666666667 123.333333333 124.66666921 126.000002543 126.000002543 124.66666921 125.999997457 127.33333079 127.33333079 125.999997457 127.333333333 128.666666667 128.666666667 127.333333333 128.66666158 129.999994914 129.999994914 128.66666158 130.000005086 131.33333842 131.33333842 130.000005086 131.333333333 132.666666667 132.666666667 131.333333333 132.66666158 133.999994914 133.999994914 132.66666158 134.000005086 135.33333842 135.33333842 134.000005086 135.333333333 136.666666667 136.666666667 135.333333333 136.66666158 137.999994914 137.999994914 136.66666158 138.000005086 139.33333842 139.33333842 138.000005086 139.333333333 140.666666667 140.666666667 139.333333333 140.66666158 141.999994914 141.999994914 140.66666158 142.000005086 143.33333842 143.33333842 142.000005086 143.333333333 144.666666667 144.666666667 143.333333333 144.66666158 145.999994914 145.999994914 144.66666158 146.000005086 147.33333842 147.33333842 146.000005086 147.333333333 148.666666667 148.666666667 147.333333333 148.66666158 149.999994914 149.999994914 148.66666158 150.000005086 151.33333842 151.33333842 150.000005086 151.333333333 152.666666667 152.666666667 151.333333333 152.66666158 153.999994914 153.999994914 152.66666158 154.000005086 155.33333842 155.33333842 154.000005086 155.333333333 156.666666667 156.666666667 155.333333333 156.66666158 157.999994914 157.999994914 156.66666158 158.000005086 159.33333842 159.33333842 158.000005086 159.333333333 160.666666667 160.666666667 159.333333333 160.66666158 161.999994914 161.999994914 160.66666158 162.000005086 163.33333842 163.33333842 162.000005086 163.333333333 164.666666667 164.666666667 163.333333333 164.66666158 165.999994914 165.999994914 164.66666158 166.000005086 167.33333842 167.33333842 166.000005086 167.333333333 168.666666667 168.666666667 167.333333333 168.66666158 169.999994914 169.999994914 168.66666158 170.000005086 171.33333842 171.33333842 170.000005086 171.333333333 172.666666667 172.666666667 171.333333333 172.66666158 173.999994914 173.999994914 172.66666158 174.000005086 175.33333842 175.33333842 174.000005086 175.333333333 176.666666667 176.666666667 175.333333333 176.66666158 177.999994914 177.999994914 176.66666158 178.000005086 179.33333842 179.33333842 178.000005086 179.333333333 180.666666667 180.666666667 179.333333333 180.66666158 181.999994914 181.999994914 180.66666158 182.000005086 183.33333842 183.33333842 182.000005086 183.333333333 184.666666667 184.666666667 183.333333333 184.66666158 185.999994914 185.999994914 184.66666158 186.000005086 187.33333842 187.33333842 186.000005086 187.333333333 188.666666667 188.666666667 187.333333333 188.66666158 189.999994914 189.999994914 188.66666158 190.000005086 191.33333842 191.33333842 190.000005086 191.333333333 192.666666667 192.666666667 191.333333333 192.66666158 193.999994914 193.999994914 192.66666158 194.000005086 195.33333842 195.33333842 194.000005086 195.333333333 196.666666667 196.666666667 195.333333333 196.66666158 197.999994914 197.999994914 196.66666158 198.000005086 199.33333842 199.33333842 198.000005086 199.333333333 200.666666667 200.666666667 199.333333333 200.66666158 201.999994914 201.999994914 200.66666158 202.000005086 203.33333842 203.33333842 202.000005086 203.333333333 204.666666667 204.666666667 203.333333333 204.66666158 205.999994914 205.999994914 204.66666158 206.000005086 207.33333842 207.33333842 206.000005086 207.333333333 208.666666667 208.666666667 207.333333333 208.66666158 209.999994914 209.999994914 208.66666158 210.000005086 211.33333842 211.33333842 210.000005086 211.333333333 212.666666667 212.666666667 211.333333333 212.66666158 213.999994914 213.999994914 212.66666158 214.000005086 215.33333842 215.33333842 214.000005086 215.333333333 216.666666667 216.666666667 215.333333333 216.66666158 217.999994914 217.999994914 216.66666158 218.000005086 219.33333842 219.33333842 218.000005086 219.333333333 220.666666667 220.666666667 219.333333333 220.66666158 221.999994914 221.999994914 220.66666158 222.000005086 223.33333842 223.33333842 222.000005086 223.333333333 224.666666667 224.666666667 223.333333333 224.66666158 225.999994914 225.999994914 224.66666158 226.000005086 227.33333842 227.33333842 226.000005086 227.333333333 228.666666667 228.666666667 227.333333333 228.66666158 229.999994914 229.999994914 228.66666158 230.000005086 231.33333842 231.33333842 230.000005086 231.333333333 232.666666667 232.666666667 231.333333333 232.66666158 233.999994914 233.999994914 232.66666158 234.000005086 235.33333842 235.33333842 234.000005086 235.333333333 236.666666667 236.666666667 235.333333333 236.66666158 237.999994914 237.999994914 236.66666158 238.000005086 239.33333842 239.33333842 238.000005086 239.333333333 240.666666667 240.666666667 239.333333333 240.66666158 241.999994914 241.999994914 240.66666158 242.000005086 243.33333842 243.33333842 242.000005086 243.333333333 244.666666667 244.666666667 243.333333333 244.66666158 245.999994914 245.999994914 244.66666158 246.000005086 247.33333842 247.33333842 246.000005086 247.333333333 248.666666667 248.666666667 247.333333333 248.66666158 249.999994914 249.999994914 248.66666158 250.000005086 251.33333842 251.33333842 250.000005086 251.333333333 252.666666667 252.666666667 251.333333333 252.66666158 253.999994914 253.999994914 252.66666158 254.000005086 255.33333842 255.33333842 254.000005086 255.333333333 256.666666667 256.666666667 255.333333333 256.666676839 258.000010173 258.000010173 256.666676839 257.999989827 259.333323161 259.333323161 257.999989827 259.333333333 260.666666667 260.666666667 259.333333333 260.666676839 262.000010173 262.000010173 260.666676839 261.999989827 263.333323161 263.333323161 261.999989827 263.333333333 264.666666667 264.666666667 263.333333333 264.666676839 266.000010173 266.000010173 264.666676839 265.999989827 267.333323161 267.333323161 265.999989827 267.333333333 268.666666667 268.666666667 267.333333333 268.666676839 270.000010173 270.000010173 268.666676839 269.999989827 271.333323161 271.333323161 269.999989827 271.333333333 272.666666667 272.666666667 271.333333333 272.666676839 274.000010173 274.000010173 272.666676839 273.999989827 275.333323161 275.333323161 273.999989827 275.333333333 276.666666667 276.666666667 275.333333333 276.666676839 278.000010173 278.000010173 276.666676839 277.999989827 279.333323161 279.333323161 277.999989827 279.333333333 280.666666667 280.666666667 279.333333333 280.666676839 282.000010173 282.000010173 280.666676839 281.999989827 283.333323161 283.333323161 281.999989827 283.333333333 284.666666667 284.666666667 283.333333333 284.666676839 286.000010173 286.000010173 284.666676839 285.999989827 287.333323161 287.333323161 285.999989827 287.333333333 288.666666667 288.666666667 287.333333333 288.666676839 290.000010173 290.000010173 288.666676839 289.999989827 291.333323161 291.333323161 289.999989827 291.333333333 292.666666667 292.666666667 291.333333333 292.666676839 294.000010173 294.000010173 292.666676839 293.999989827 295.333323161 295.333323161 293.999989827 295.333333333 296.666666667 296.666666667 295.333333333 296.666676839 298.000010173 298.000010173 296.666676839 297.999989827 299.333323161 299.333323161 297.999989827 299.333333333 300.666666667 300.666666667 299.333333333 300.666676839 302.000010173 302.000010173 300.666676839 301.999989827 303.333323161 303.333323161 301.999989827 303.333333333 304.666666667 304.666666667 303.333333333 304.666676839 306.000010173 306.000010173 304.666676839 305.999989827 307.333323161 307.333323161 305.999989827 307.333333333 308.666666667 308.666666667 307.333333333 308.666676839 310.000010173 310.000010173 308.666676839 309.999989827 311.333323161 311.333323161 309.999989827 311.333333333 312.666666667 312.666666667 311.333333333 312.666676839 314.000010173 314.000010173 312.666676839 313.999989827 315.333323161 315.333323161 313.999989827 315.333333333 316.666666667 316.666666667 315.333333333 316.666676839 318.000010173 318.000010173 316.666676839 317.999989827 319.333323161 319.333323161 317.999989827 319.333333333 320.666666667 320.666666667 319.333333333 320.666676839 322.000010173 322.000010173 320.666676839 321.999989827 323.333323161 323.333323161 321.999989827 323.333333333 324.666666667 324.666666667 323.333333333 324.666676839 326.000010173 326.000010173 324.666676839 325.999989827 327.333323161 327.333323161 325.999989827 327.333333333 328.666666667 328.666666667 327.333333333 328.666676839 330.000010173 330.000010173 328.666676839 329.999989827 331.333323161 331.333323161 329.999989827 331.333333333 332.666666667 332.666666667 331.333333333 332.666676839 334.000010173 334.000010173 332.666676839 333.999989827 335.333323161 335.333323161 333.999989827 335.333333333 336.666666667 336.666666667 335.333333333 336.666676839 338.000010173 338.000010173 336.666676839 337.999989827 339.333323161 339.333323161 337.999989827 339.333333333 340.666666667 340.666666667 339.333333333 340.666676839 342.000010173 342.000010173 340.666676839 341.999989827 343.333323161 343.333323161 341.999989827 343.333333333 344.666666667 344.666666667 343.333333333 344.666676839 346.000010173 346.000010173 344.666676839 345.999989827 347.333323161 347.333323161 345.999989827 347.333333333 348.666666667 348.666666667 347.333333333 348.666676839 350.000010173 350.000010173 348.666676839 349.999989827 351.333323161 351.333323161 349.999989827 351.333333333 352.666666667 352.666666667 351.333333333 352.666676839 354.000010173 354.000010173 352.666676839 353.999989827 355.333323161 355.333323161 353.999989827 355.333333333 356.666666667 356.666666667 355.333333333 356.666676839 358.000010173 358.000010173 356.666676839 357.999989827 359.333323161 359.333323161 357.999989827 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 +356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 +261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 +145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 +1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 +204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.555555555556 0.555555555556 0.555555555556 -0.555555555556 0.555555608537 1.66666671965 1.66666671965 0.555555608537 1.66666677263 2.77777788374 2.77777788374 1.66666677263 2.7777776983 3.88888880942 3.88888880942 2.7777776983 3.88888910082 5.00000021193 5.00000021193 3.88888910082 4.99999978807 6.11111089918 6.11111089918 4.99999978807 6.11111095217 7.22222206328 7.22222206328 6.11111095217 7.22222211626 8.33333322737 8.33333322737 7.22222211626 8.33333375719 9.4444448683 9.4444448683 8.33333375719 9.44444444444 10.5555555556 10.5555555556 9.44444444444 10.5555551317 11.6666662428 11.6666662428 10.5555551317 11.6666667726 12.7777778837 12.7777778837 11.6666667726 12.7777774599 13.888888571 13.888888571 12.7777774599 13.8888891008 15.0000002119 15.0000002119 13.8888891008 14.9999997881 16.1111108992 16.1111108992 14.9999997881 16.1111104753 17.2222215864 17.2222215864 16.1111104753 17.2222230699 18.333334181 18.333334181 17.2222230699 18.3333337572 19.4444448683 19.4444448683 18.3333337572 19.4444444444 20.5555555556 20.5555555556 19.4444444444 20.5555551317 21.6666662428 21.6666662428 20.5555551317 21.666665819 22.7777769301 22.7777769301 21.666665819 22.7777784136 23.8888895247 23.8888895247 22.7777784136 23.8888891008 25.0000002119 25.0000002119 23.8888891008 24.9999997881 26.1111108992 26.1111108992 24.9999997881 26.1111104753 27.2222215864 27.2222215864 26.1111104753 27.2222230699 28.333334181 28.333334181 27.2222230699 28.3333337572 29.4444448683 29.4444448683 28.3333337572 29.4444444444 30.5555555556 30.5555555556 29.4444444444 30.5555551317 31.6666662428 31.6666662428 30.5555551317 31.666665819 32.7777769301 32.7777769301 31.666665819 32.7777765062 33.8888876173 33.8888876173 32.7777765062 33.8888871935 34.9999983046 34.9999983046 33.8888871935 35.0000016954 36.1111128065 36.1111128065 35.0000016954 36.1111123827 37.2222234938 37.2222234938 36.1111123827 37.2222230699 38.333334181 38.333334181 37.2222230699 38.3333337572 39.4444448683 39.4444448683 38.3333337572 39.4444444444 40.5555555556 40.5555555556 39.4444444444 40.5555551317 41.6666662428 41.6666662428 40.5555551317 41.666665819 42.7777769301 42.7777769301 41.666665819 42.7777765062 43.8888876173 43.8888876173 42.7777765062 43.8888871935 44.9999983046 44.9999983046 43.8888871935 45.0000016954 46.1111128065 46.1111128065 45.0000016954 +46.1111123827 47.2222234938 47.2222234938 46.1111123827 47.2222230699 48.333334181 48.333334181 47.2222230699 48.3333337572 49.4444448683 49.4444448683 48.3333337572 49.4444444444 50.5555555556 50.5555555556 49.4444444444 50.5555551317 51.6666662428 51.6666662428 50.5555551317 51.666665819 52.7777769301 52.7777769301 51.666665819 52.7777765062 53.8888876173 53.8888876173 52.7777765062 53.8888871935 54.9999983046 54.9999983046 53.8888871935 55.0000016954 56.1111128065 56.1111128065 55.0000016954 56.1111123827 57.2222234938 57.2222234938 56.1111123827 57.2222230699 58.333334181 58.333334181 57.2222230699 58.3333337572 59.4444448683 59.4444448683 58.3333337572 59.4444444444 60.5555555556 60.5555555556 59.4444444444 60.5555551317 61.6666662428 61.6666662428 60.5555551317 61.666665819 62.7777769301 62.7777769301 61.666665819 62.7777765062 63.8888876173 63.8888876173 62.7777765062 63.8888871935 64.9999983046 64.9999983046 63.8888871935 65.0000016954 66.1111128065 66.1111128065 65.0000016954 66.111108568 67.2222196791 67.2222196791 66.111108568 67.2222230699 68.333334181 68.333334181 67.2222230699 68.3333299425 69.4444410536 69.4444410536 68.3333299425 69.4444444444 70.5555555556 70.5555555556 69.4444444444 70.5555589464 71.6666700575 71.6666700575 70.5555589464 71.666665819 72.7777769301 72.7777769301 71.666665819 72.7777803209 73.888891432 73.888891432 72.7777803209 73.8888871935 74.9999983046 74.9999983046 73.8888871935 75.0000016954 76.1111128065 76.1111128065 75.0000016954 76.111108568 77.2222196791 77.2222196791 76.111108568 77.2222230699 78.333334181 78.333334181 77.2222230699 78.3333299425 79.4444410536 79.4444410536 78.3333299425 79.4444444444 80.5555555556 80.5555555556 79.4444444444 80.5555589464 81.6666700575 81.6666700575 80.5555589464 81.666665819 82.7777769301 82.7777769301 81.666665819 82.7777803209 83.888891432 83.888891432 82.7777803209 83.8888871935 84.9999983046 84.9999983046 83.8888871935 85.0000016954 86.1111128065 86.1111128065 85.0000016954 86.111108568 87.2222196791 87.2222196791 86.111108568 87.2222230699 88.333334181 88.333334181 87.2222230699 88.3333299425 89.4444410536 89.4444410536 88.3333299425 89.4444444444 90.5555555556 90.5555555556 89.4444444444 90.5555589464 91.6666700575 91.6666700575 90.5555589464 91.666665819 92.7777769301 92.7777769301 91.666665819 92.7777803209 93.888891432 93.888891432 92.7777803209 93.8888871935 94.9999983046 94.9999983046 93.8888871935 95.0000016954 96.1111128065 96.1111128065 95.0000016954 96.111108568 97.2222196791 97.2222196791 96.111108568 97.2222230699 98.333334181 98.333334181 97.2222230699 98.3333299425 99.4444410536 99.4444410536 98.3333299425 99.4444444444 100.555555556 100.555555556 99.4444444444 100.555558946 101.666670058 101.666670058 100.555558946 101.666665819 102.77777693 102.77777693 101.666665819 102.777780321 103.888891432 103.888891432 102.777780321 103.888887193 104.999998305 104.999998305 103.888887193 105.000001695 106.111112807 106.111112807 105.000001695 106.111108568 107.222219679 107.222219679 106.111108568 107.22222307 108.333334181 108.333334181 107.22222307 108.333329942 109.444441054 109.444441054 108.333329942 109.444444444 110.555555556 110.555555556 109.444444444 110.555558946 111.666670058 111.666670058 110.555558946 111.666665819 112.77777693 112.77777693 111.666665819 112.777780321 113.888891432 113.888891432 112.777780321 113.888887193 114.999998305 114.999998305 113.888887193 115.000001695 116.111112807 116.111112807 115.000001695 116.111108568 117.222219679 117.222219679 116.111108568 117.22222307 118.333334181 118.333334181 117.22222307 118.333329942 119.444441054 119.444441054 118.333329942 119.444444444 120.555555556 120.555555556 119.444444444 120.555558946 121.666670058 121.666670058 120.555558946 121.666665819 122.77777693 122.77777693 121.666665819 122.777780321 123.888891432 123.888891432 122.777780321 123.888887193 124.999998305 124.999998305 123.888887193 125.000001695 126.111112807 126.111112807 125.000001695 126.111108568 127.222219679 127.222219679 126.111108568 127.22222307 128.333334181 128.333334181 127.22222307 128.333329942 129.444441054 129.444441054 128.333329942 129.444444444 130.555555556 130.555555556 129.444444444 130.555558946 131.666670058 131.666670058 130.555558946 131.666673448 132.777784559 132.777784559 131.666673448 132.777772692 133.888883803 133.888883803 132.777772692 133.888887193 134.999998305 134.999998305 133.888887193 135.000001695 136.111112807 136.111112807 135.000001695 136.111116197 137.222227308 137.222227308 136.111116197 137.222215441 138.333326552 138.333326552 137.222215441 138.333329942 139.444441054 139.444441054 138.333329942 139.444444444 140.555555556 140.555555556 139.444444444 140.555558946 141.666670058 141.666670058 140.555558946 141.666673448 142.777784559 142.777784559 141.666673448 142.777772692 143.888883803 143.888883803 142.777772692 143.888887193 144.999998305 144.999998305 143.888887193 145.000001695 146.111112807 146.111112807 145.000001695 146.111116197 147.222227308 147.222227308 146.111116197 147.222215441 148.333326552 148.333326552 147.222215441 148.333329942 149.444441054 149.444441054 148.333329942 149.444444444 150.555555556 150.555555556 149.444444444 150.555558946 151.666670058 151.666670058 150.555558946 151.666673448 152.777784559 152.777784559 151.666673448 152.777772692 153.888883803 153.888883803 152.777772692 153.888887193 154.999998305 154.999998305 153.888887193 155.000001695 156.111112807 156.111112807 155.000001695 156.111116197 157.222227308 157.222227308 156.111116197 157.222215441 158.333326552 158.333326552 157.222215441 158.333329942 159.444441054 159.444441054 158.333329942 159.444444444 160.555555556 160.555555556 159.444444444 160.555558946 161.666670058 161.666670058 160.555558946 161.666673448 162.777784559 162.777784559 161.666673448 162.777772692 163.888883803 163.888883803 162.777772692 163.888887193 164.999998305 164.999998305 163.888887193 165.000001695 166.111112807 166.111112807 165.000001695 166.111116197 167.222227308 167.222227308 166.111116197 167.222215441 168.333326552 168.333326552 167.222215441 168.333329942 169.444441054 169.444441054 168.333329942 169.444444444 170.555555556 170.555555556 169.444444444 170.555558946 171.666670058 171.666670058 170.555558946 171.666673448 172.777784559 172.777784559 171.666673448 172.777772692 173.888883803 173.888883803 172.777772692 173.888887193 174.999998305 174.999998305 173.888887193 175.000001695 176.111112807 176.111112807 175.000001695 176.111116197 177.222227308 177.222227308 176.111116197 177.222215441 178.333326552 178.333326552 177.222215441 178.333329942 179.444441054 179.444441054 178.333329942 179.444444444 180.555555556 180.555555556 179.444444444 180.555558946 181.666670058 181.666670058 180.555558946 181.666673448 182.777784559 182.777784559 181.666673448 182.777772692 183.888883803 183.888883803 182.777772692 183.888887193 184.999998305 184.999998305 183.888887193 185.000001695 186.111112807 186.111112807 185.000001695 186.111116197 187.222227308 187.222227308 186.111116197 187.222215441 188.333326552 188.333326552 187.222215441 188.333329942 189.444441054 189.444441054 188.333329942 189.444444444 190.555555556 190.555555556 189.444444444 190.555558946 191.666670058 191.666670058 190.555558946 191.666673448 192.777784559 192.777784559 191.666673448 192.777772692 193.888883803 193.888883803 192.777772692 193.888887193 194.999998305 194.999998305 193.888887193 195.000001695 196.111112807 196.111112807 195.000001695 196.111116197 197.222227308 197.222227308 196.111116197 197.222215441 198.333326552 198.333326552 197.222215441 198.333329942 199.444441054 199.444441054 198.333329942 199.444444444 200.555555556 200.555555556 199.444444444 200.555558946 201.666670058 201.666670058 200.555558946 201.666673448 202.777784559 202.777784559 201.666673448 202.777772692 203.888883803 203.888883803 202.777772692 203.888887193 204.999998305 204.999998305 203.888887193 205.000001695 206.111112807 206.111112807 205.000001695 206.111116197 207.222227308 207.222227308 206.111116197 207.222215441 208.333326552 208.333326552 207.222215441 208.333329942 209.444441054 209.444441054 208.333329942 209.444444444 210.555555556 210.555555556 209.444444444 210.555558946 211.666670058 211.666670058 210.555558946 211.666673448 212.777784559 212.777784559 211.666673448 212.777772692 213.888883803 213.888883803 212.777772692 213.888887193 214.999998305 214.999998305 213.888887193 215.000001695 216.111112807 216.111112807 215.000001695 216.111116197 217.222227308 217.222227308 216.111116197 217.222215441 218.333326552 218.333326552 217.222215441 218.333329942 219.444441054 219.444441054 218.333329942 219.444444444 220.555555556 220.555555556 219.444444444 220.555558946 221.666670058 221.666670058 220.555558946 221.666673448 222.777784559 222.777784559 221.666673448 222.777772692 223.888883803 223.888883803 222.777772692 223.888887193 224.999998305 224.999998305 223.888887193 225.000001695 226.111112807 226.111112807 225.000001695 226.111116197 227.222227308 227.222227308 226.111116197 227.222215441 228.333326552 228.333326552 227.222215441 228.333329942 229.444441054 229.444441054 228.333329942 229.444444444 230.555555556 230.555555556 229.444444444 230.555558946 231.666670058 231.666670058 230.555558946 231.666673448 232.777784559 232.777784559 231.666673448 232.777772692 233.888883803 233.888883803 232.777772692 233.888887193 234.999998305 234.999998305 233.888887193 235.000001695 236.111112807 236.111112807 235.000001695 236.111116197 237.222227308 237.222227308 236.111116197 237.222215441 238.333326552 238.333326552 237.222215441 238.333329942 239.444441054 239.444441054 238.333329942 239.444444444 240.555555556 240.555555556 239.444444444 240.555558946 241.666670058 241.666670058 240.555558946 241.666673448 242.777784559 242.777784559 241.666673448 242.777772692 243.888883803 243.888883803 242.777772692 243.888887193 244.999998305 244.999998305 243.888887193 245.000001695 246.111112807 246.111112807 245.000001695 246.111116197 247.222227308 247.222227308 246.111116197 247.222215441 248.333326552 248.333326552 247.222215441 248.333329942 249.444441054 249.444441054 248.333329942 249.444444444 250.555555556 250.555555556 249.444444444 250.555558946 251.666670058 251.666670058 250.555558946 251.666673448 252.777784559 252.777784559 251.666673448 252.777772692 253.888883803 253.888883803 252.777772692 253.888887193 254.999998305 254.999998305 253.888887193 255.000001695 256.111112807 256.111112807 255.000001695 256.111100939 257.22221205 257.22221205 256.111100939 257.222215441 258.333326552 258.333326552 257.222215441 258.333329942 259.444441054 259.444441054 258.333329942 259.444444444 260.555555556 260.555555556 259.444444444 260.555558946 261.666670058 261.666670058 260.555558946 261.666673448 262.777784559 262.777784559 261.666673448 262.77778795 263.888899061 263.888899061 262.77778795 263.888902452 265.000013563 265.000013563 263.888902452 264.999986437 266.111097548 266.111097548 264.999986437 266.111100939 267.22221205 267.22221205 266.111100939 267.222215441 268.333326552 268.333326552 267.222215441 268.333329942 269.444441054 269.444441054 268.333329942 269.444444444 270.555555556 270.555555556 269.444444444 270.555558946 271.666670058 271.666670058 270.555558946 271.666673448 272.777784559 272.777784559 271.666673448 272.77778795 273.888899061 273.888899061 272.77778795 273.888902452 275.000013563 275.000013563 273.888902452 274.999986437 276.111097548 276.111097548 274.999986437 276.111100939 277.22221205 277.22221205 276.111100939 277.222215441 278.333326552 278.333326552 277.222215441 278.333329942 279.444441054 279.444441054 278.333329942 279.444444444 280.555555556 280.555555556 279.444444444 280.555558946 281.666670058 281.666670058 280.555558946 281.666673448 282.777784559 282.777784559 281.666673448 282.77778795 283.888899061 283.888899061 282.77778795 283.888902452 285.000013563 285.000013563 283.888902452 284.999986437 286.111097548 286.111097548 284.999986437 286.111100939 287.22221205 287.22221205 286.111100939 287.222215441 288.333326552 288.333326552 287.222215441 288.333329942 289.444441054 289.444441054 288.333329942 289.444444444 290.555555556 290.555555556 289.444444444 290.555558946 291.666670058 291.666670058 290.555558946 291.666673448 292.777784559 292.777784559 291.666673448 292.77778795 293.888899061 293.888899061 292.77778795 293.888902452 295.000013563 295.000013563 293.888902452 294.999986437 296.111097548 296.111097548 294.999986437 296.111100939 297.22221205 297.22221205 296.111100939 297.222215441 298.333326552 298.333326552 297.222215441 298.333329942 299.444441054 299.444441054 298.333329942 299.444444444 300.555555556 300.555555556 299.444444444 300.555558946 301.666670058 301.666670058 300.555558946 301.666673448 302.777784559 302.777784559 301.666673448 302.77778795 303.888899061 303.888899061 302.77778795 303.888902452 305.000013563 305.000013563 303.888902452 304.999986437 306.111097548 306.111097548 304.999986437 306.111100939 307.22221205 307.22221205 306.111100939 307.222215441 308.333326552 308.333326552 307.222215441 308.333329942 309.444441054 309.444441054 308.333329942 309.444444444 310.555555556 310.555555556 309.444444444 310.555558946 311.666670058 311.666670058 310.555558946 311.666673448 312.777784559 312.777784559 311.666673448 312.77778795 313.888899061 313.888899061 312.77778795 313.888902452 315.000013563 315.000013563 313.888902452 314.999986437 316.111097548 316.111097548 314.999986437 316.111100939 317.22221205 317.22221205 316.111100939 317.222215441 318.333326552 318.333326552 317.222215441 318.333329942 319.444441054 319.444441054 318.333329942 319.444444444 320.555555556 320.555555556 319.444444444 320.555558946 321.666670058 321.666670058 320.555558946 321.666673448 322.777784559 322.777784559 321.666673448 322.77778795 323.888899061 323.888899061 322.77778795 323.888902452 325.000013563 325.000013563 323.888902452 324.999986437 326.111097548 326.111097548 324.999986437 326.111100939 327.22221205 327.22221205 326.111100939 327.222215441 328.333326552 328.333326552 327.222215441 328.333329942 329.444441054 329.444441054 328.333329942 329.444444444 330.555555556 330.555555556 329.444444444 330.555558946 331.666670058 331.666670058 330.555558946 331.666673448 332.777784559 332.777784559 331.666673448 332.77778795 333.888899061 333.888899061 332.77778795 333.888902452 335.000013563 335.000013563 333.888902452 334.999986437 336.111097548 336.111097548 334.999986437 336.111100939 337.22221205 337.22221205 336.111100939 337.222215441 338.333326552 338.333326552 337.222215441 338.333329942 339.444441054 339.444441054 338.333329942 339.444444444 340.555555556 340.555555556 339.444444444 340.555558946 341.666670058 341.666670058 340.555558946 341.666673448 342.777784559 342.777784559 341.666673448 342.77778795 343.888899061 343.888899061 342.77778795 343.888902452 345.000013563 345.000013563 343.888902452 344.999986437 346.111097548 346.111097548 344.999986437 346.111100939 347.22221205 347.22221205 346.111100939 347.222215441 348.333326552 348.333326552 347.222215441 348.333329942 349.444441054 349.444441054 348.333329942 349.444444444 350.555555556 350.555555556 349.444444444 350.555558946 351.666670058 351.666670058 350.555558946 351.666673448 352.777784559 352.777784559 351.666673448 352.77778795 353.888899061 353.888899061 352.77778795 353.888902452 355.000013563 355.000013563 353.888902452 354.999986437 356.111097548 356.111097548 354.999986437 356.111100939 357.22221205 357.22221205 356.111100939 357.222215441 358.333326552 358.333326552 357.222215441 358.333329942 359.444441054 359.444441054 358.333329942 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 +217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 +357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 +137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 +277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 +57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.48 0.48 0.48 -0.48 0.479999978542 1.43999997854 1.43999997854 0.479999978542 1.43999995708 2.39999995708 2.39999995708 1.43999995708 2.40000011444 3.36000011444 3.36000011444 2.40000011444 3.35999991417 4.31999991417 4.31999991417 3.35999991417 4.32000019073 5.28000019073 5.28000019073 4.32000019073 5.28000022888 6.24000022888 6.24000022888 5.28000022888 6.23999979019 7.19999979019 7.19999979019 6.23999979019 7.19999982834 8.15999982834 8.15999982834 7.19999982834 8.16000034332 9.12000034332 9.12000034332 8.16000034332 9.12000038147 10.0800003815 10.0800003815 9.12000038147 10.0800004196 11.0400004196 11.0400004196 10.0800004196 11.0400004578 12.0000004578 12.0000004578 11.0400004578 11.9999995422 12.9599995422 12.9599995422 11.9999995422 12.9599995804 13.9199995804 13.9199995804 12.9599995804 13.9199996185 14.8799996185 14.8799996185 13.9199996185 14.8799996567 15.8399996567 15.8399996567 14.8799996567 15.8399996948 16.7999996948 16.7999996948 15.8399996948 16.8000006866 17.7600006866 17.7600006866 16.8000006866 17.7599997711 18.7199997711 18.7199997711 17.7599997711 18.7200007629 19.6800007629 19.6800007629 18.7200007629 19.6799998474 20.6399998474 20.6399998474 19.6799998474 20.6400008392 21.6000008392 21.6000008392 20.6400008392 21.5999999237 22.5599999237 22.5599999237 21.5999999237 22.5600009155 23.5200009155 23.5200009155 22.5600009155 23.52 24.48 24.48 23.52 24.4799990845 25.4399990845 25.4399990845 24.4799990845 25.4400000763 26.4000000763 26.4000000763 25.4400000763 26.3999991608 27.3599991608 27.3599991608 26.3999991608 27.3600001526 28.3200001526 28.3200001526 27.3600001526 28.3199992371 29.2799992371 29.2799992371 28.3199992371 29.2800002289 30.2400002289 30.2400002289 29.2800002289 30.2399993134 31.1999993134 31.1999993134 30.2399993134 31.2000003052 32.1600003052 32.1600003052 31.2000003052 32.1599993896 33.1199993896 33.1199993896 32.1599993896 33.1199984741 34.0799984741 34.0799984741 33.1199984741 34.0800013733 35.0400013733 35.0400013733 34.0800013733 35.0400004578 36.0000004578 36.0000004578 35.0400004578 35.9999995422 36.9599995422 36.9599995422 35.9999995422 36.9599986267 37.9199986267 37.9199986267 36.9599986267 37.9200015259 38.8800015259 38.8800015259 37.9200015259 38.8800006104 39.8400006104 39.8400006104 38.8800006104 39.8399996948 40.7999996948 40.7999996948 39.8399996948 40.7999987793 41.7599987793 41.7599987793 40.7999987793 41.7600016785 42.7200016785 42.7200016785 41.7600016785 42.7200007629 43.6800007629 43.6800007629 42.7200007629 43.6799998474 44.6399998474 44.6399998474 43.6799998474 44.6399989319 45.5999989319 45.5999989319 44.6399989319 45.6000018311 46.5600018311 46.5600018311 45.6000018311 46.5600009155 47.5200009155 47.5200009155 46.5600009155 47.52 48.48 48.48 47.52 48.4799990845 49.4399990845 49.4399990845 48.4799990845 49.4399981689 50.3999981689 50.3999981689 49.4399981689 50.4000010681 51.3600010681 51.3600010681 50.4000010681 51.3600001526 52.3200001526 52.3200001526 51.3600001526 52.3199992371 53.2799992371 53.2799992371 52.3199992371 53.2799983215 54.2399983215 54.2399983215 53.2799983215 54.2400012207 55.2000012207 55.2000012207 54.2400012207 55.2000003052 56.1600003052 56.1600003052 55.2000003052 56.1599993896 57.1199993896 57.1199993896 56.1599993896 57.1199984741 58.0799984741 58.0799984741 57.1199984741 58.0800013733 59.0400013733 59.0400013733 58.0800013733 59.0400004578 60.0000004578 60.0000004578 59.0400004578 59.9999995422 60.9599995422 60.9599995422 59.9999995422 60.9599986267 61.9199986267 61.9199986267 60.9599986267 61.9200015259 62.8800015259 62.8800015259 61.9200015259 62.8800006104 63.8400006104 63.8400006104 62.8800006104 63.8399996948 64.7999996948 64.7999996948 63.8399996948 64.7999987793 65.7599987793 65.7599987793 64.7999987793 65.7599978638 66.7199978638 66.7199978638 65.7599978638 66.7199969482 67.6799969482 67.6799969482 66.7199969482 67.6800036621 68.6400036621 68.6400036621 67.6800036621 68.6400027466 69.6000027466 69.6000027466 68.6400027466 69.6000018311 70.5600018311 70.5600018311 69.6000018311 70.5600009155 71.5200009155 71.5200009155 70.5600009155 71.52 72.48 72.48 71.52 72.4799990845 73.4399990845 73.4399990845 72.4799990845 73.4399981689 74.3999981689 74.3999981689 73.4399981689 74.3999972534 75.3599972534 75.3599972534 74.3999972534 75.3599963379 76.3199963379 76.3199963379 75.3599963379 76.3200030518 77.2800030518 77.2800030518 76.3200030518 77.2800021362 78.2400021362 78.2400021362 77.2800021362 78.2400012207 79.2000012207 79.2000012207 78.2400012207 79.2000003052 80.1600003052 80.1600003052 79.2000003052 80.1599993896 81.1199993896 81.1199993896 80.1599993896 81.1199984741 82.0799984741 82.0799984741 81.1199984741 82.0799975586 83.0399975586 83.0399975586 82.0799975586 83.0399966431 83.9999966431 83.9999966431 83.0399966431 84.0000033569 84.9600033569 84.9600033569 84.0000033569 84.9600024414 85.9200024414 85.9200024414 84.9600024414 85.9200015259 86.8800015259 86.8800015259 85.9200015259 86.8800006104 87.8400006104 87.8400006104 86.8800006104 87.8399996948 88.7999996948 88.7999996948 87.8399996948 88.7999987793 89.7599987793 89.7599987793 88.7999987793 89.7599978638 90.7199978638 90.7199978638 89.7599978638 90.7199969482 91.6799969482 91.6799969482 90.7199969482 91.6800036621 92.6400036621 92.6400036621 91.6800036621 92.6400027466 93.6000027466 93.6000027466 92.6400027466 93.6000018311 94.5600018311 94.5600018311 93.6000018311 94.5600009155 95.5200009155 95.5200009155 94.5600009155 95.52 96.48 96.48 95.52 96.4799990845 97.4399990845 97.4399990845 96.4799990845 97.4399981689 98.3999981689 98.3999981689 97.4399981689 98.3999972534 99.3599972534 99.3599972534 98.3999972534 99.3599963379 100.319996338 100.319996338 99.3599963379 100.320003052 101.280003052 101.280003052 100.320003052 101.280002136 102.240002136 102.240002136 101.280002136 102.240001221 103.200001221 103.200001221 102.240001221 103.200000305 104.160000305 104.160000305 103.200000305 104.15999939 105.11999939 105.11999939 104.15999939 105.119998474 106.079998474 106.079998474 105.119998474 106.079997559 107.039997559 107.039997559 106.079997559 107.039996643 107.999996643 107.999996643 107.039996643 108.000003357 108.960003357 108.960003357 108.000003357 108.960002441 109.920002441 109.920002441 108.960002441 109.920001526 110.880001526 110.880001526 109.920001526 110.88000061 111.84000061 111.84000061 110.88000061 111.839999695 112.799999695 112.799999695 111.839999695 112.799998779 113.759998779 113.759998779 112.799998779 113.759997864 114.719997864 114.719997864 113.759997864 114.719996948 115.679996948 115.679996948 114.719996948 115.680003662 116.640003662 116.640003662 115.680003662 116.640002747 117.600002747 117.600002747 116.640002747 117.600001831 118.560001831 118.560001831 117.600001831 118.560000916 119.520000916 119.520000916 118.560000916 119.52 120.48 120.48 119.52 120.479999084 121.439999084 121.439999084 120.479999084 121.439998169 122.399998169 122.399998169 121.439998169 122.399997253 123.359997253 123.359997253 122.399997253 123.359996338 124.319996338 124.319996338 123.359996338 124.320003052 125.280003052 125.280003052 124.320003052 125.280002136 126.240002136 126.240002136 125.280002136 126.240001221 127.200001221 127.200001221 126.240001221 127.200000305 128.160000305 128.160000305 127.200000305 128.15999939 129.11999939 129.11999939 128.15999939 129.120006104 130.080006104 130.080006104 129.120006104 130.079997559 131.039997559 131.039997559 130.079997559 131.040004272 132.000004272 132.000004272 131.040004272 131.999995728 132.959995728 132.959995728 131.999995728 132.960002441 133.920002441 133.920002441 132.960002441 133.919993896 134.879993896 134.879993896 133.919993896 134.88000061 135.84000061 135.84000061 134.88000061 135.840007324 136.800007324 136.800007324 135.840007324 136.799998779 137.759998779 137.759998779 136.799998779 137.760005493 138.720005493 138.720005493 137.760005493 138.719996948 139.679996948 139.679996948 138.719996948 139.680003662 140.640003662 140.640003662 139.680003662 140.639995117 141.599995117 141.599995117 140.639995117 141.600001831 142.560001831 142.560001831 141.600001831 142.559993286 143.519993286 143.519993286 142.559993286 143.52 144.48 144.48 143.52 144.480006714 145.440006714 145.440006714 144.480006714 145.439998169 146.399998169 146.399998169 145.439998169 146.400004883 147.360004883 147.360004883 146.400004883 147.359996338 148.319996338 148.319996338 147.359996338 148.320003052 149.280003052 149.280003052 148.320003052 149.279994507 150.239994507 150.239994507 149.279994507 150.240001221 151.200001221 151.200001221 150.240001221 151.199992676 152.159992676 152.159992676 151.199992676 152.15999939 153.11999939 153.11999939 152.15999939 153.120006104 154.080006104 154.080006104 153.120006104 154.079997559 155.039997559 155.039997559 154.079997559 155.040004272 156.000004272 156.000004272 155.040004272 155.999995728 156.959995728 156.959995728 155.999995728 156.960002441 157.920002441 157.920002441 156.960002441 157.919993896 158.879993896 158.879993896 157.919993896 158.88000061 159.84000061 159.84000061 158.88000061 159.840007324 160.800007324 160.800007324 159.840007324 160.799998779 161.759998779 161.759998779 160.799998779 161.760005493 162.720005493 162.720005493 161.760005493 162.719996948 163.679996948 163.679996948 162.719996948 163.680003662 164.640003662 164.640003662 163.680003662 164.639995117 165.599995117 165.599995117 164.639995117 165.600001831 166.560001831 166.560001831 165.600001831 166.559993286 167.519993286 167.519993286 166.559993286 167.52 168.48 168.48 167.52 168.480006714 169.440006714 169.440006714 168.480006714 169.439998169 170.399998169 170.399998169 169.439998169 170.400004883 171.360004883 171.360004883 170.400004883 171.359996338 172.319996338 172.319996338 171.359996338 172.320003052 173.280003052 173.280003052 172.320003052 173.279994507 174.239994507 174.239994507 173.279994507 174.240001221 175.200001221 175.200001221 174.240001221 175.199992676 176.159992676 176.159992676 175.199992676 176.15999939 177.11999939 177.11999939 176.15999939 177.120006104 178.080006104 178.080006104 177.120006104 178.079997559 179.039997559 179.039997559 178.079997559 179.040004272 180.000004272 180.000004272 179.040004272 179.999995728 180.959995728 180.959995728 179.999995728 180.960002441 181.920002441 181.920002441 180.960002441 181.919993896 182.879993896 182.879993896 181.919993896 182.88000061 183.84000061 183.84000061 182.88000061 183.840007324 184.800007324 184.800007324 183.840007324 184.799998779 185.759998779 185.759998779 184.799998779 185.760005493 186.720005493 186.720005493 185.760005493 186.719996948 187.679996948 187.679996948 186.719996948 187.680003662 188.640003662 188.640003662 187.680003662 188.639995117 189.599995117 189.599995117 188.639995117 +189.600001831 190.560001831 190.560001831 189.600001831 190.559993286 191.519993286 191.519993286 190.559993286 191.52 192.48 192.48 191.52 192.480006714 193.440006714 193.440006714 192.480006714 193.439998169 194.399998169 194.399998169 193.439998169 194.400004883 195.360004883 195.360004883 194.400004883 195.359996338 196.319996338 196.319996338 195.359996338 196.320003052 197.280003052 197.280003052 196.320003052 197.279994507 198.239994507 198.239994507 197.279994507 198.240001221 199.200001221 199.200001221 198.240001221 199.199992676 200.159992676 200.159992676 199.199992676 200.15999939 201.11999939 201.11999939 200.15999939 201.120006104 202.080006104 202.080006104 201.120006104 202.079997559 203.039997559 203.039997559 202.079997559 203.040004272 204.000004272 204.000004272 203.040004272 203.999995728 204.959995728 204.959995728 203.999995728 204.960002441 205.920002441 205.920002441 204.960002441 205.919993896 206.879993896 206.879993896 205.919993896 206.88000061 207.84000061 207.84000061 206.88000061 207.840007324 208.800007324 208.800007324 207.840007324 208.799998779 209.759998779 209.759998779 208.799998779 209.760005493 210.720005493 210.720005493 209.760005493 210.719996948 211.679996948 211.679996948 210.719996948 211.680003662 212.640003662 212.640003662 211.680003662 212.639995117 213.599995117 213.599995117 212.639995117 213.600001831 214.560001831 214.560001831 213.600001831 214.559993286 215.519993286 215.519993286 214.559993286 215.52 216.48 216.48 215.52 216.480006714 217.440006714 217.440006714 216.480006714 217.439998169 218.399998169 218.399998169 217.439998169 218.400004883 219.360004883 219.360004883 218.400004883 219.359996338 220.319996338 220.319996338 219.359996338 220.320003052 221.280003052 221.280003052 220.320003052 221.279994507 222.239994507 222.239994507 221.279994507 222.240001221 223.200001221 223.200001221 222.240001221 223.199992676 224.159992676 224.159992676 223.199992676 224.15999939 225.11999939 225.11999939 224.15999939 225.120006104 226.080006104 226.080006104 225.120006104 226.079997559 227.039997559 227.039997559 226.079997559 227.040004272 228.000004272 228.000004272 227.040004272 227.999995728 228.959995728 228.959995728 227.999995728 228.960002441 229.920002441 229.920002441 228.960002441 229.919993896 230.879993896 230.879993896 229.919993896 230.88000061 231.84000061 231.84000061 230.88000061 231.840007324 232.800007324 232.800007324 231.840007324 232.799998779 233.759998779 233.759998779 232.799998779 233.760005493 234.720005493 234.720005493 233.760005493 234.719996948 235.679996948 235.679996948 234.719996948 235.680003662 236.640003662 236.640003662 235.680003662 236.639995117 237.599995117 237.599995117 236.639995117 237.600001831 238.560001831 238.560001831 237.600001831 238.559993286 239.519993286 239.519993286 238.559993286 239.52 240.48 240.48 239.52 240.480006714 241.440006714 241.440006714 240.480006714 241.439998169 242.399998169 242.399998169 241.439998169 242.400004883 243.360004883 243.360004883 242.400004883 243.359996338 244.319996338 244.319996338 243.359996338 244.320003052 245.280003052 245.280003052 244.320003052 245.279994507 246.239994507 246.239994507 245.279994507 246.240001221 247.200001221 247.200001221 246.240001221 247.199992676 248.159992676 248.159992676 247.199992676 248.15999939 249.11999939 249.11999939 248.15999939 249.120006104 250.080006104 250.080006104 249.120006104 250.079997559 251.039997559 251.039997559 250.079997559 251.040004272 252.000004272 252.000004272 251.040004272 251.999995728 252.959995728 252.959995728 251.999995728 252.960002441 253.920002441 253.920002441 252.960002441 253.919993896 254.879993896 254.879993896 253.919993896 254.88000061 255.84000061 255.84000061 254.88000061 255.840007324 256.800007324 256.800007324 255.840007324 256.799998779 257.759998779 257.759998779 256.799998779 257.759990234 258.719990234 258.719990234 257.759990234 258.720012207 259.680012207 259.680012207 258.720012207 259.680003662 260.640003662 260.640003662 259.680003662 260.639995117 261.599995117 261.599995117 260.639995117 261.599986572 262.559986572 262.559986572 261.599986572 262.560008545 263.520008545 263.520008545 262.560008545 263.52 264.48 264.48 263.52 264.479991455 265.439991455 265.439991455 264.479991455 265.440013428 266.400013428 266.400013428 265.440013428 266.400004883 267.360004883 267.360004883 266.400004883 267.359996338 268.319996338 268.319996338 267.359996338 268.319987793 269.279987793 269.279987793 268.319987793 269.280009766 270.240009766 270.240009766 269.280009766 270.240001221 271.200001221 271.200001221 270.240001221 271.199992676 272.159992676 272.159992676 271.199992676 272.160014648 273.120014648 273.120014648 272.160014648 273.120006104 274.080006104 274.080006104 273.120006104 274.079997559 275.039997559 275.039997559 274.079997559 275.039989014 275.999989014 275.999989014 275.039989014 276.000010986 276.960010986 276.960010986 276.000010986 276.960002441 277.920002441 277.920002441 276.960002441 277.919993896 278.879993896 278.879993896 277.919993896 278.879985352 279.839985352 279.839985352 278.879985352 279.840007324 280.800007324 280.800007324 279.840007324 280.799998779 281.759998779 281.759998779 280.799998779 281.759990234 282.719990234 282.719990234 281.759990234 282.720012207 283.680012207 283.680012207 282.720012207 283.680003662 284.640003662 284.640003662 283.680003662 284.639995117 285.599995117 285.599995117 284.639995117 285.599986572 286.559986572 286.559986572 285.599986572 286.560008545 287.520008545 287.520008545 286.560008545 287.52 288.48 288.48 287.52 288.479991455 289.439991455 289.439991455 288.479991455 289.440013428 290.400013428 290.400013428 289.440013428 290.400004883 291.360004883 291.360004883 290.400004883 291.359996338 292.319996338 292.319996338 291.359996338 292.319987793 293.279987793 293.279987793 292.319987793 293.280009766 294.240009766 294.240009766 293.280009766 294.240001221 295.200001221 295.200001221 294.240001221 295.199992676 296.159992676 296.159992676 295.199992676 296.160014648 297.120014648 297.120014648 296.160014648 297.120006104 298.080006104 298.080006104 297.120006104 298.079997559 299.039997559 299.039997559 298.079997559 299.039989014 299.999989014 299.999989014 299.039989014 300.000010986 300.960010986 300.960010986 300.000010986 300.960002441 301.920002441 301.920002441 300.960002441 301.919993896 302.879993896 302.879993896 301.919993896 302.879985352 303.839985352 303.839985352 302.879985352 303.840007324 304.800007324 304.800007324 303.840007324 304.799998779 305.759998779 305.759998779 304.799998779 305.759990234 306.719990234 306.719990234 305.759990234 306.720012207 307.680012207 307.680012207 306.720012207 307.680003662 308.640003662 308.640003662 307.680003662 308.639995117 309.599995117 309.599995117 308.639995117 309.599986572 310.559986572 310.559986572 309.599986572 310.560008545 311.520008545 311.520008545 310.560008545 311.52 312.48 312.48 311.52 312.479991455 313.439991455 313.439991455 312.479991455 313.440013428 314.400013428 314.400013428 313.440013428 314.400004883 315.360004883 315.360004883 314.400004883 315.359996338 316.319996338 316.319996338 315.359996338 316.319987793 317.279987793 317.279987793 316.319987793 317.280009766 318.240009766 318.240009766 317.280009766 318.240001221 319.200001221 319.200001221 318.240001221 319.199992676 320.159992676 320.159992676 319.199992676 320.160014648 321.120014648 321.120014648 320.160014648 321.120006104 322.080006104 322.080006104 321.120006104 322.079997559 323.039997559 323.039997559 322.079997559 323.039989014 323.999989014 323.999989014 323.039989014 324.000010986 324.960010986 324.960010986 324.000010986 324.960002441 325.920002441 325.920002441 324.960002441 325.919993896 326.879993896 326.879993896 325.919993896 326.879985352 327.839985352 327.839985352 326.879985352 327.840007324 328.800007324 328.800007324 327.840007324 328.799998779 329.759998779 329.759998779 328.799998779 329.759990234 330.719990234 330.719990234 329.759990234 330.720012207 331.680012207 331.680012207 330.720012207 331.680003662 332.640003662 332.640003662 331.680003662 332.639995117 333.599995117 333.599995117 332.639995117 333.599986572 334.559986572 334.559986572 333.599986572 334.560008545 335.520008545 335.520008545 334.560008545 335.52 336.48 336.48 335.52 336.479991455 337.439991455 337.439991455 336.479991455 337.440013428 338.400013428 338.400013428 337.440013428 338.400004883 339.360004883 339.360004883 338.400004883 339.359996338 340.319996338 340.319996338 339.359996338 340.319987793 341.279987793 341.279987793 340.319987793 341.280009766 342.240009766 342.240009766 341.280009766 342.240001221 343.200001221 343.200001221 342.240001221 343.199992676 344.159992676 344.159992676 343.199992676 344.160014648 345.120014648 345.120014648 344.160014648 345.120006104 346.080006104 346.080006104 345.120006104 346.079997559 347.039997559 347.039997559 346.079997559 347.039989014 347.999989014 347.999989014 347.039989014 348.000010986 348.960010986 348.960010986 348.000010986 348.960002441 349.920002441 349.920002441 348.960002441 349.919993896 350.879993896 350.879993896 349.919993896 350.879985352 351.839985352 351.839985352 350.879985352 351.840007324 352.800007324 352.800007324 351.840007324 352.799998779 353.759998779 353.759998779 352.799998779 353.759990234 354.719990234 354.719990234 353.759990234 354.720012207 355.680012207 355.680012207 354.720012207 355.680003662 356.640003662 356.640003662 355.680003662 356.639995117 357.599995117 357.599995117 356.639995117 357.599986572 358.559986572 358.559986572 357.599986572 358.560008545 359.520008545 359.520008545 358.560008545 -0.48 0.48 0.48 -0.48 0.479999978542 1.43999997854 1.43999997854 0.479999978542 1.43999995708 2.39999995708 2.39999995708 1.43999995708 2.40000011444 3.36000011444 3.36000011444 2.40000011444 3.35999991417 4.31999991417 4.31999991417 3.35999991417 4.32000019073 5.28000019073 5.28000019073 4.32000019073 5.28000022888 6.24000022888 6.24000022888 5.28000022888 6.23999979019 7.19999979019 7.19999979019 6.23999979019 7.19999982834 8.15999982834 8.15999982834 7.19999982834 8.16000034332 9.12000034332 9.12000034332 8.16000034332 9.12000038147 10.0800003815 10.0800003815 9.12000038147 10.0800004196 11.0400004196 11.0400004196 10.0800004196 11.0400004578 12.0000004578 12.0000004578 11.0400004578 11.9999995422 12.9599995422 12.9599995422 11.9999995422 12.9599995804 13.9199995804 13.9199995804 12.9599995804 13.9199996185 14.8799996185 14.8799996185 13.9199996185 14.8799996567 15.8399996567 15.8399996567 14.8799996567 15.8399996948 16.7999996948 16.7999996948 15.8399996948 16.8000006866 17.7600006866 17.7600006866 16.8000006866 17.7599997711 18.7199997711 18.7199997711 17.7599997711 18.7200007629 19.6800007629 19.6800007629 18.7200007629 19.6799998474 20.6399998474 20.6399998474 19.6799998474 20.6400008392 21.6000008392 21.6000008392 20.6400008392 21.5999999237 22.5599999237 22.5599999237 21.5999999237 22.5600009155 23.5200009155 23.5200009155 22.5600009155 23.52 24.48 24.48 23.52 24.4799990845 25.4399990845 25.4399990845 24.4799990845 25.4400000763 26.4000000763 26.4000000763 25.4400000763 26.3999991608 27.3599991608 27.3599991608 26.3999991608 27.3600001526 28.3200001526 28.3200001526 27.3600001526 28.3199992371 29.2799992371 29.2799992371 28.3199992371 29.2800002289 30.2400002289 30.2400002289 29.2800002289 30.2399993134 31.1999993134 31.1999993134 30.2399993134 31.2000003052 32.1600003052 32.1600003052 31.2000003052 32.1599993896 33.1199993896 33.1199993896 32.1599993896 33.1199984741 34.0799984741 34.0799984741 33.1199984741 34.0800013733 35.0400013733 35.0400013733 34.0800013733 35.0400004578 36.0000004578 36.0000004578 35.0400004578 35.9999995422 36.9599995422 36.9599995422 35.9999995422 36.9599986267 37.9199986267 37.9199986267 36.9599986267 37.9200015259 38.8800015259 38.8800015259 37.9200015259 38.8800006104 39.8400006104 39.8400006104 38.8800006104 39.8399996948 40.7999996948 40.7999996948 39.8399996948 40.7999987793 41.7599987793 41.7599987793 40.7999987793 41.7600016785 42.7200016785 42.7200016785 41.7600016785 42.7200007629 43.6800007629 43.6800007629 42.7200007629 43.6799998474 44.6399998474 44.6399998474 43.6799998474 44.6399989319 45.5999989319 45.5999989319 44.6399989319 45.6000018311 46.5600018311 46.5600018311 45.6000018311 46.5600009155 47.5200009155 47.5200009155 46.5600009155 47.52 48.48 48.48 47.52 48.4799990845 49.4399990845 49.4399990845 48.4799990845 49.4399981689 50.3999981689 50.3999981689 49.4399981689 50.4000010681 51.3600010681 51.3600010681 50.4000010681 51.3600001526 52.3200001526 52.3200001526 51.3600001526 52.3199992371 53.2799992371 53.2799992371 52.3199992371 53.2799983215 54.2399983215 54.2399983215 53.2799983215 54.2400012207 55.2000012207 55.2000012207 54.2400012207 55.2000003052 56.1600003052 56.1600003052 55.2000003052 56.1599993896 57.1199993896 57.1199993896 56.1599993896 57.1199984741 58.0799984741 58.0799984741 57.1199984741 58.0800013733 59.0400013733 59.0400013733 58.0800013733 59.0400004578 60.0000004578 60.0000004578 59.0400004578 59.9999995422 60.9599995422 60.9599995422 59.9999995422 60.9599986267 61.9199986267 61.9199986267 60.9599986267 61.9200015259 62.8800015259 62.8800015259 61.9200015259 62.8800006104 63.8400006104 63.8400006104 62.8800006104 63.8399996948 64.7999996948 64.7999996948 63.8399996948 64.7999987793 65.7599987793 65.7599987793 64.7999987793 65.7599978638 66.7199978638 66.7199978638 65.7599978638 66.7199969482 67.6799969482 67.6799969482 66.7199969482 67.6800036621 68.6400036621 68.6400036621 67.6800036621 68.6400027466 69.6000027466 69.6000027466 68.6400027466 69.6000018311 70.5600018311 70.5600018311 69.6000018311 70.5600009155 71.5200009155 71.5200009155 70.5600009155 71.52 72.48 72.48 71.52 72.4799990845 73.4399990845 73.4399990845 72.4799990845 73.4399981689 74.3999981689 74.3999981689 73.4399981689 74.3999972534 75.3599972534 75.3599972534 74.3999972534 75.3599963379 76.3199963379 76.3199963379 75.3599963379 76.3200030518 77.2800030518 77.2800030518 76.3200030518 77.2800021362 78.2400021362 78.2400021362 77.2800021362 78.2400012207 79.2000012207 79.2000012207 78.2400012207 79.2000003052 80.1600003052 80.1600003052 79.2000003052 80.1599993896 81.1199993896 81.1199993896 80.1599993896 81.1199984741 82.0799984741 82.0799984741 81.1199984741 82.0799975586 83.0399975586 83.0399975586 82.0799975586 83.0399966431 83.9999966431 83.9999966431 83.0399966431 84.0000033569 84.9600033569 84.9600033569 84.0000033569 84.9600024414 85.9200024414 85.9200024414 84.9600024414 85.9200015259 86.8800015259 86.8800015259 85.9200015259 86.8800006104 87.8400006104 87.8400006104 86.8800006104 87.8399996948 88.7999996948 88.7999996948 87.8399996948 88.7999987793 89.7599987793 89.7599987793 88.7999987793 89.7599978638 90.7199978638 90.7199978638 89.7599978638 90.7199969482 91.6799969482 91.6799969482 90.7199969482 91.6800036621 92.6400036621 92.6400036621 91.6800036621 92.6400027466 93.6000027466 93.6000027466 92.6400027466 93.6000018311 94.5600018311 94.5600018311 93.6000018311 94.5600009155 95.5200009155 95.5200009155 94.5600009155 95.52 96.48 96.48 95.52 96.4799990845 97.4399990845 97.4399990845 96.4799990845 97.4399981689 98.3999981689 98.3999981689 97.4399981689 98.3999972534 99.3599972534 99.3599972534 98.3999972534 99.3599963379 100.319996338 100.319996338 99.3599963379 100.320003052 101.280003052 101.280003052 100.320003052 101.280002136 102.240002136 102.240002136 101.280002136 102.240001221 103.200001221 103.200001221 102.240001221 103.200000305 104.160000305 104.160000305 103.200000305 104.15999939 105.11999939 105.11999939 104.15999939 105.119998474 106.079998474 106.079998474 105.119998474 106.079997559 107.039997559 107.039997559 106.079997559 107.039996643 107.999996643 107.999996643 107.039996643 108.000003357 108.960003357 108.960003357 108.000003357 108.960002441 109.920002441 109.920002441 108.960002441 109.920001526 110.880001526 110.880001526 109.920001526 110.88000061 111.84000061 111.84000061 110.88000061 111.839999695 112.799999695 112.799999695 111.839999695 112.799998779 113.759998779 113.759998779 112.799998779 113.759997864 114.719997864 114.719997864 113.759997864 114.719996948 115.679996948 115.679996948 114.719996948 115.680003662 116.640003662 116.640003662 115.680003662 116.640002747 117.600002747 117.600002747 116.640002747 117.600001831 118.560001831 118.560001831 117.600001831 118.560000916 119.520000916 119.520000916 118.560000916 119.52 120.48 120.48 119.52 120.479999084 121.439999084 121.439999084 120.479999084 121.439998169 122.399998169 122.399998169 121.439998169 122.399997253 123.359997253 123.359997253 122.399997253 123.359996338 124.319996338 124.319996338 123.359996338 124.320003052 125.280003052 125.280003052 124.320003052 125.280002136 126.240002136 126.240002136 125.280002136 126.240001221 127.200001221 127.200001221 126.240001221 127.200000305 128.160000305 128.160000305 127.200000305 128.15999939 129.11999939 129.11999939 128.15999939 129.120006104 130.080006104 130.080006104 129.120006104 130.079997559 131.039997559 131.039997559 130.079997559 131.040004272 132.000004272 132.000004272 131.040004272 131.999995728 132.959995728 132.959995728 131.999995728 132.960002441 133.920002441 133.920002441 132.960002441 133.919993896 134.879993896 134.879993896 133.919993896 134.88000061 135.84000061 135.84000061 134.88000061 135.840007324 136.800007324 136.800007324 135.840007324 136.799998779 137.759998779 137.759998779 136.799998779 137.760005493 138.720005493 138.720005493 137.760005493 138.719996948 139.679996948 139.679996948 138.719996948 139.680003662 140.640003662 140.640003662 139.680003662 140.639995117 141.599995117 141.599995117 140.639995117 141.600001831 142.560001831 142.560001831 141.600001831 142.559993286 143.519993286 143.519993286 142.559993286 143.52 144.48 144.48 143.52 144.480006714 145.440006714 145.440006714 144.480006714 145.439998169 146.399998169 146.399998169 145.439998169 146.400004883 147.360004883 147.360004883 146.400004883 147.359996338 148.319996338 148.319996338 147.359996338 148.320003052 149.280003052 149.280003052 148.320003052 149.279994507 150.239994507 150.239994507 149.279994507 150.240001221 151.200001221 151.200001221 150.240001221 151.199992676 152.159992676 152.159992676 151.199992676 152.15999939 153.11999939 153.11999939 152.15999939 153.120006104 154.080006104 154.080006104 153.120006104 154.079997559 155.039997559 155.039997559 154.079997559 155.040004272 156.000004272 156.000004272 155.040004272 155.999995728 156.959995728 156.959995728 155.999995728 156.960002441 157.920002441 157.920002441 156.960002441 157.919993896 158.879993896 158.879993896 157.919993896 158.88000061 159.84000061 159.84000061 158.88000061 159.840007324 160.800007324 160.800007324 159.840007324 160.799998779 161.759998779 161.759998779 160.799998779 161.760005493 162.720005493 162.720005493 161.760005493 162.719996948 163.679996948 163.679996948 162.719996948 163.680003662 164.640003662 164.640003662 163.680003662 164.639995117 165.599995117 165.599995117 164.639995117 165.600001831 166.560001831 166.560001831 165.600001831 166.559993286 167.519993286 167.519993286 166.559993286 167.52 168.48 168.48 167.52 168.480006714 169.440006714 169.440006714 168.480006714 169.439998169 170.399998169 170.399998169 169.439998169 170.400004883 171.360004883 171.360004883 170.400004883 171.359996338 172.319996338 172.319996338 171.359996338 172.320003052 173.280003052 173.280003052 172.320003052 173.279994507 174.239994507 174.239994507 173.279994507 174.240001221 175.200001221 175.200001221 174.240001221 175.199992676 176.159992676 176.159992676 175.199992676 176.15999939 177.11999939 177.11999939 176.15999939 177.120006104 178.080006104 178.080006104 177.120006104 178.079997559 179.039997559 179.039997559 178.079997559 179.040004272 180.000004272 180.000004272 179.040004272 179.999995728 180.959995728 180.959995728 179.999995728 180.960002441 181.920002441 181.920002441 180.960002441 181.919993896 182.879993896 182.879993896 181.919993896 182.88000061 183.84000061 183.84000061 182.88000061 183.840007324 184.800007324 184.800007324 183.840007324 184.799998779 185.759998779 185.759998779 184.799998779 185.760005493 186.720005493 186.720005493 185.760005493 186.719996948 187.679996948 187.679996948 186.719996948 187.680003662 188.640003662 188.640003662 187.680003662 188.639995117 189.599995117 189.599995117 188.639995117 189.600001831 190.560001831 190.560001831 189.600001831 190.559993286 191.519993286 191.519993286 190.559993286 191.52 192.48 192.48 191.52 192.480006714 193.440006714 193.440006714 192.480006714 193.439998169 194.399998169 194.399998169 193.439998169 194.400004883 195.360004883 195.360004883 194.400004883 195.359996338 196.319996338 196.319996338 195.359996338 196.320003052 197.280003052 197.280003052 196.320003052 197.279994507 198.239994507 198.239994507 197.279994507 198.240001221 199.200001221 199.200001221 198.240001221 199.199992676 200.159992676 200.159992676 199.199992676 200.15999939 201.11999939 201.11999939 200.15999939 201.120006104 202.080006104 202.080006104 201.120006104 202.079997559 203.039997559 203.039997559 202.079997559 203.040004272 204.000004272 204.000004272 203.040004272 203.999995728 204.959995728 204.959995728 203.999995728 204.960002441 205.920002441 205.920002441 204.960002441 205.919993896 206.879993896 206.879993896 205.919993896 206.88000061 207.84000061 207.84000061 206.88000061 207.840007324 208.800007324 208.800007324 207.840007324 208.799998779 209.759998779 209.759998779 208.799998779 209.760005493 210.720005493 210.720005493 209.760005493 210.719996948 211.679996948 211.679996948 210.719996948 211.680003662 212.640003662 212.640003662 211.680003662 212.639995117 213.599995117 213.599995117 212.639995117 213.600001831 214.560001831 214.560001831 213.600001831 214.559993286 215.519993286 215.519993286 214.559993286 215.52 216.48 216.48 215.52 216.480006714 217.440006714 217.440006714 216.480006714 217.439998169 218.399998169 218.399998169 217.439998169 218.400004883 219.360004883 219.360004883 218.400004883 219.359996338 220.319996338 220.319996338 219.359996338 220.320003052 221.280003052 221.280003052 220.320003052 221.279994507 222.239994507 222.239994507 221.279994507 222.240001221 223.200001221 223.200001221 222.240001221 223.199992676 224.159992676 224.159992676 223.199992676 224.15999939 225.11999939 225.11999939 224.15999939 225.120006104 226.080006104 226.080006104 225.120006104 226.079997559 227.039997559 227.039997559 226.079997559 227.040004272 228.000004272 228.000004272 227.040004272 227.999995728 228.959995728 228.959995728 227.999995728 228.960002441 229.920002441 229.920002441 228.960002441 229.919993896 230.879993896 230.879993896 229.919993896 230.88000061 231.84000061 231.84000061 230.88000061 231.840007324 232.800007324 232.800007324 231.840007324 232.799998779 233.759998779 233.759998779 232.799998779 233.760005493 234.720005493 234.720005493 233.760005493 234.719996948 235.679996948 235.679996948 234.719996948 235.680003662 236.640003662 236.640003662 235.680003662 236.639995117 237.599995117 237.599995117 236.639995117 237.600001831 238.560001831 238.560001831 237.600001831 238.559993286 239.519993286 239.519993286 238.559993286 239.52 240.48 240.48 239.52 240.480006714 241.440006714 241.440006714 240.480006714 241.439998169 242.399998169 242.399998169 241.439998169 242.400004883 243.360004883 243.360004883 242.400004883 243.359996338 244.319996338 244.319996338 243.359996338 244.320003052 245.280003052 245.280003052 244.320003052 245.279994507 246.239994507 246.239994507 245.279994507 246.240001221 247.200001221 247.200001221 246.240001221 247.199992676 248.159992676 248.159992676 247.199992676 248.15999939 249.11999939 249.11999939 248.15999939 249.120006104 250.080006104 250.080006104 249.120006104 250.079997559 251.039997559 251.039997559 250.079997559 251.040004272 252.000004272 252.000004272 251.040004272 251.999995728 252.959995728 252.959995728 251.999995728 252.960002441 253.920002441 253.920002441 252.960002441 253.919993896 254.879993896 254.879993896 253.919993896 254.88000061 255.84000061 255.84000061 254.88000061 255.840007324 256.800007324 256.800007324 255.840007324 256.799998779 257.759998779 257.759998779 256.799998779 257.759990234 258.719990234 258.719990234 257.759990234 258.720012207 259.680012207 259.680012207 258.720012207 259.680003662 260.640003662 260.640003662 259.680003662 260.639995117 261.599995117 261.599995117 260.639995117 261.599986572 262.559986572 262.559986572 261.599986572 262.560008545 263.520008545 263.520008545 262.560008545 263.52 264.48 264.48 263.52 264.479991455 265.439991455 265.439991455 264.479991455 265.440013428 266.400013428 266.400013428 265.440013428 266.400004883 267.360004883 267.360004883 266.400004883 267.359996338 268.319996338 268.319996338 267.359996338 268.319987793 269.279987793 269.279987793 268.319987793 269.280009766 270.240009766 270.240009766 269.280009766 270.240001221 271.200001221 271.200001221 270.240001221 271.199992676 272.159992676 272.159992676 271.199992676 272.160014648 273.120014648 273.120014648 272.160014648 273.120006104 274.080006104 274.080006104 273.120006104 274.079997559 275.039997559 275.039997559 274.079997559 275.039989014 275.999989014 275.999989014 275.039989014 276.000010986 276.960010986 276.960010986 276.000010986 276.960002441 277.920002441 277.920002441 276.960002441 277.919993896 278.879993896 278.879993896 277.919993896 278.879985352 279.839985352 279.839985352 278.879985352 279.840007324 280.800007324 280.800007324 279.840007324 280.799998779 281.759998779 281.759998779 280.799998779 281.759990234 282.719990234 282.719990234 281.759990234 282.720012207 283.680012207 283.680012207 282.720012207 283.680003662 284.640003662 284.640003662 283.680003662 284.639995117 285.599995117 285.599995117 284.639995117 285.599986572 286.559986572 286.559986572 285.599986572 286.560008545 287.520008545 287.520008545 286.560008545 287.52 288.48 288.48 287.52 288.479991455 289.439991455 289.439991455 288.479991455 289.440013428 290.400013428 290.400013428 289.440013428 290.400004883 291.360004883 291.360004883 290.400004883 291.359996338 292.319996338 292.319996338 291.359996338 292.319987793 293.279987793 293.279987793 292.319987793 293.280009766 294.240009766 294.240009766 293.280009766 294.240001221 295.200001221 295.200001221 294.240001221 295.199992676 296.159992676 296.159992676 295.199992676 296.160014648 297.120014648 297.120014648 296.160014648 297.120006104 298.080006104 298.080006104 297.120006104 298.079997559 299.039997559 299.039997559 298.079997559 299.039989014 299.999989014 299.999989014 299.039989014 300.000010986 300.960010986 300.960010986 300.000010986 300.960002441 301.920002441 301.920002441 300.960002441 301.919993896 302.879993896 302.879993896 301.919993896 302.879985352 303.839985352 303.839985352 302.879985352 303.840007324 304.800007324 304.800007324 303.840007324 304.799998779 305.759998779 305.759998779 304.799998779 305.759990234 306.719990234 306.719990234 305.759990234 306.720012207 307.680012207 307.680012207 306.720012207 307.680003662 308.640003662 308.640003662 307.680003662 308.639995117 309.599995117 309.599995117 308.639995117 +309.599986572 310.559986572 310.559986572 309.599986572 310.560008545 311.520008545 311.520008545 310.560008545 311.52 312.48 312.48 311.52 312.479991455 313.439991455 313.439991455 312.479991455 313.440013428 314.400013428 314.400013428 313.440013428 314.400004883 315.360004883 315.360004883 314.400004883 315.359996338 316.319996338 316.319996338 315.359996338 316.319987793 317.279987793 317.279987793 316.319987793 317.280009766 318.240009766 318.240009766 317.280009766 318.240001221 319.200001221 319.200001221 318.240001221 319.199992676 320.159992676 320.159992676 319.199992676 320.160014648 321.120014648 321.120014648 320.160014648 321.120006104 322.080006104 322.080006104 321.120006104 322.079997559 323.039997559 323.039997559 322.079997559 323.039989014 323.999989014 323.999989014 323.039989014 324.000010986 324.960010986 324.960010986 324.000010986 324.960002441 325.920002441 325.920002441 324.960002441 325.919993896 326.879993896 326.879993896 325.919993896 326.879985352 327.839985352 327.839985352 326.879985352 327.840007324 328.800007324 328.800007324 327.840007324 328.799998779 329.759998779 329.759998779 328.799998779 329.759990234 330.719990234 330.719990234 329.759990234 330.720012207 331.680012207 331.680012207 330.720012207 331.680003662 332.640003662 332.640003662 331.680003662 332.639995117 333.599995117 333.599995117 332.639995117 333.599986572 334.559986572 334.559986572 333.599986572 334.560008545 335.520008545 335.520008545 334.560008545 335.52 336.48 336.48 335.52 336.479991455 337.439991455 337.439991455 336.479991455 337.440013428 338.400013428 338.400013428 337.440013428 338.400004883 339.360004883 339.360004883 338.400004883 339.359996338 340.319996338 340.319996338 339.359996338 340.319987793 341.279987793 341.279987793 340.319987793 341.280009766 342.240009766 342.240009766 341.280009766 342.240001221 343.200001221 343.200001221 342.240001221 343.199992676 344.159992676 344.159992676 343.199992676 344.160014648 345.120014648 345.120014648 344.160014648 345.120006104 346.080006104 346.080006104 345.120006104 346.079997559 347.039997559 347.039997559 346.079997559 347.039989014 347.999989014 347.999989014 347.039989014 348.000010986 348.960010986 348.960010986 348.000010986 348.960002441 349.920002441 349.920002441 348.960002441 349.919993896 350.879993896 350.879993896 349.919993896 350.879985352 351.839985352 351.839985352 350.879985352 351.840007324 352.800007324 352.800007324 351.840007324 352.799998779 353.759998779 353.759998779 352.799998779 353.759990234 354.719990234 354.719990234 353.759990234 354.720012207 355.680012207 355.680012207 354.720012207 355.680003662 356.640003662 356.640003662 355.680003662 356.639995117 357.599995117 357.599995117 356.639995117 357.599986572 358.559986572 358.559986572 357.599986572 358.560008545 359.520008545 359.520008545 358.560008545 -0.48 0.48 0.48 -0.48 0.479999978542 1.43999997854 1.43999997854 0.479999978542 1.43999995708 2.39999995708 2.39999995708 1.43999995708 2.40000011444 3.36000011444 3.36000011444 2.40000011444 3.35999991417 4.31999991417 4.31999991417 3.35999991417 4.32000019073 5.28000019073 5.28000019073 4.32000019073 5.28000022888 6.24000022888 6.24000022888 5.28000022888 6.23999979019 7.19999979019 7.19999979019 6.23999979019 7.19999982834 8.15999982834 8.15999982834 7.19999982834 8.16000034332 9.12000034332 9.12000034332 8.16000034332 9.12000038147 10.0800003815 10.0800003815 9.12000038147 10.0800004196 11.0400004196 11.0400004196 10.0800004196 11.0400004578 12.0000004578 12.0000004578 11.0400004578 11.9999995422 12.9599995422 12.9599995422 11.9999995422 12.9599995804 13.9199995804 13.9199995804 12.9599995804 13.9199996185 14.8799996185 14.8799996185 13.9199996185 14.8799996567 15.8399996567 15.8399996567 14.8799996567 15.8399996948 16.7999996948 16.7999996948 15.8399996948 16.8000006866 17.7600006866 17.7600006866 16.8000006866 17.7599997711 18.7199997711 18.7199997711 17.7599997711 18.7200007629 19.6800007629 19.6800007629 18.7200007629 19.6799998474 20.6399998474 20.6399998474 19.6799998474 20.6400008392 21.6000008392 21.6000008392 20.6400008392 21.5999999237 22.5599999237 22.5599999237 21.5999999237 22.5600009155 23.5200009155 23.5200009155 22.5600009155 23.52 24.48 24.48 23.52 24.4799990845 25.4399990845 25.4399990845 24.4799990845 25.4400000763 26.4000000763 26.4000000763 25.4400000763 26.3999991608 27.3599991608 27.3599991608 26.3999991608 27.3600001526 28.3200001526 28.3200001526 27.3600001526 28.3199992371 29.2799992371 29.2799992371 28.3199992371 29.2800002289 30.2400002289 30.2400002289 29.2800002289 30.2399993134 31.1999993134 31.1999993134 30.2399993134 31.2000003052 32.1600003052 32.1600003052 31.2000003052 32.1599993896 33.1199993896 33.1199993896 32.1599993896 33.1199984741 34.0799984741 34.0799984741 33.1199984741 34.0800013733 35.0400013733 35.0400013733 34.0800013733 35.0400004578 36.0000004578 36.0000004578 35.0400004578 35.9999995422 36.9599995422 36.9599995422 35.9999995422 36.9599986267 37.9199986267 37.9199986267 36.9599986267 37.9200015259 38.8800015259 38.8800015259 37.9200015259 38.8800006104 39.8400006104 39.8400006104 38.8800006104 39.8399996948 40.7999996948 40.7999996948 39.8399996948 40.7999987793 41.7599987793 41.7599987793 40.7999987793 41.7600016785 42.7200016785 42.7200016785 41.7600016785 42.7200007629 43.6800007629 43.6800007629 42.7200007629 43.6799998474 44.6399998474 44.6399998474 43.6799998474 44.6399989319 45.5999989319 45.5999989319 44.6399989319 45.6000018311 46.5600018311 46.5600018311 45.6000018311 46.5600009155 47.5200009155 47.5200009155 46.5600009155 47.52 48.48 48.48 47.52 48.4799990845 49.4399990845 49.4399990845 48.4799990845 49.4399981689 50.3999981689 50.3999981689 49.4399981689 50.4000010681 51.3600010681 51.3600010681 50.4000010681 51.3600001526 52.3200001526 52.3200001526 51.3600001526 52.3199992371 53.2799992371 53.2799992371 52.3199992371 53.2799983215 54.2399983215 54.2399983215 53.2799983215 54.2400012207 55.2000012207 55.2000012207 54.2400012207 55.2000003052 56.1600003052 56.1600003052 55.2000003052 56.1599993896 57.1199993896 57.1199993896 56.1599993896 57.1199984741 58.0799984741 58.0799984741 57.1199984741 58.0800013733 59.0400013733 59.0400013733 58.0800013733 59.0400004578 60.0000004578 60.0000004578 59.0400004578 59.9999995422 60.9599995422 60.9599995422 59.9999995422 60.9599986267 61.9199986267 61.9199986267 60.9599986267 61.9200015259 62.8800015259 62.8800015259 61.9200015259 62.8800006104 63.8400006104 63.8400006104 62.8800006104 63.8399996948 64.7999996948 64.7999996948 63.8399996948 64.7999987793 65.7599987793 65.7599987793 64.7999987793 65.7599978638 66.7199978638 66.7199978638 65.7599978638 66.7199969482 67.6799969482 67.6799969482 66.7199969482 67.6800036621 68.6400036621 68.6400036621 67.6800036621 68.6400027466 69.6000027466 69.6000027466 68.6400027466 69.6000018311 70.5600018311 70.5600018311 69.6000018311 70.5600009155 71.5200009155 71.5200009155 70.5600009155 71.52 72.48 72.48 71.52 72.4799990845 73.4399990845 73.4399990845 72.4799990845 73.4399981689 74.3999981689 74.3999981689 73.4399981689 74.3999972534 75.3599972534 75.3599972534 74.3999972534 75.3599963379 76.3199963379 76.3199963379 75.3599963379 76.3200030518 77.2800030518 77.2800030518 76.3200030518 77.2800021362 78.2400021362 78.2400021362 77.2800021362 78.2400012207 79.2000012207 79.2000012207 78.2400012207 79.2000003052 80.1600003052 80.1600003052 79.2000003052 80.1599993896 81.1199993896 81.1199993896 80.1599993896 81.1199984741 82.0799984741 82.0799984741 81.1199984741 82.0799975586 83.0399975586 83.0399975586 82.0799975586 83.0399966431 83.9999966431 83.9999966431 83.0399966431 84.0000033569 84.9600033569 84.9600033569 84.0000033569 84.9600024414 85.9200024414 85.9200024414 84.9600024414 85.9200015259 86.8800015259 86.8800015259 85.9200015259 86.8800006104 87.8400006104 87.8400006104 86.8800006104 87.8399996948 88.7999996948 88.7999996948 87.8399996948 88.7999987793 89.7599987793 89.7599987793 88.7999987793 89.7599978638 90.7199978638 90.7199978638 89.7599978638 90.7199969482 91.6799969482 91.6799969482 90.7199969482 91.6800036621 92.6400036621 92.6400036621 91.6800036621 92.6400027466 93.6000027466 93.6000027466 92.6400027466 93.6000018311 94.5600018311 94.5600018311 93.6000018311 94.5600009155 95.5200009155 95.5200009155 94.5600009155 95.52 96.48 96.48 95.52 96.4799990845 97.4399990845 97.4399990845 96.4799990845 97.4399981689 98.3999981689 98.3999981689 97.4399981689 98.3999972534 99.3599972534 99.3599972534 98.3999972534 99.3599963379 100.319996338 100.319996338 99.3599963379 100.320003052 101.280003052 101.280003052 100.320003052 101.280002136 102.240002136 102.240002136 101.280002136 102.240001221 103.200001221 103.200001221 102.240001221 103.200000305 104.160000305 104.160000305 103.200000305 104.15999939 105.11999939 105.11999939 104.15999939 105.119998474 106.079998474 106.079998474 105.119998474 106.079997559 107.039997559 107.039997559 106.079997559 107.039996643 107.999996643 107.999996643 107.039996643 108.000003357 108.960003357 108.960003357 108.000003357 108.960002441 109.920002441 109.920002441 108.960002441 109.920001526 110.880001526 110.880001526 109.920001526 110.88000061 111.84000061 111.84000061 110.88000061 111.839999695 112.799999695 112.799999695 111.839999695 112.799998779 113.759998779 113.759998779 112.799998779 113.759997864 114.719997864 114.719997864 113.759997864 114.719996948 115.679996948 115.679996948 114.719996948 115.680003662 116.640003662 116.640003662 115.680003662 116.640002747 117.600002747 117.600002747 116.640002747 117.600001831 118.560001831 118.560001831 117.600001831 118.560000916 119.520000916 119.520000916 118.560000916 119.52 120.48 120.48 119.52 120.479999084 121.439999084 121.439999084 120.479999084 121.439998169 122.399998169 122.399998169 121.439998169 122.399997253 123.359997253 123.359997253 122.399997253 123.359996338 124.319996338 124.319996338 123.359996338 124.320003052 125.280003052 125.280003052 124.320003052 125.280002136 126.240002136 126.240002136 125.280002136 126.240001221 127.200001221 127.200001221 126.240001221 127.200000305 128.160000305 128.160000305 127.200000305 128.15999939 129.11999939 129.11999939 128.15999939 129.120006104 130.080006104 130.080006104 129.120006104 130.079997559 131.039997559 131.039997559 130.079997559 131.040004272 132.000004272 132.000004272 131.040004272 131.999995728 132.959995728 132.959995728 131.999995728 132.960002441 133.920002441 133.920002441 132.960002441 133.919993896 134.879993896 134.879993896 133.919993896 134.88000061 135.84000061 135.84000061 134.88000061 135.840007324 136.800007324 136.800007324 135.840007324 136.799998779 137.759998779 137.759998779 136.799998779 137.760005493 138.720005493 138.720005493 137.760005493 138.719996948 139.679996948 139.679996948 138.719996948 139.680003662 140.640003662 140.640003662 139.680003662 140.639995117 141.599995117 141.599995117 140.639995117 141.600001831 142.560001831 142.560001831 141.600001831 142.559993286 143.519993286 143.519993286 142.559993286 143.52 144.48 144.48 143.52 144.480006714 145.440006714 145.440006714 144.480006714 145.439998169 146.399998169 146.399998169 145.439998169 146.400004883 147.360004883 147.360004883 146.400004883 147.359996338 148.319996338 148.319996338 147.359996338 148.320003052 149.280003052 149.280003052 148.320003052 149.279994507 150.239994507 150.239994507 149.279994507 150.240001221 151.200001221 151.200001221 150.240001221 151.199992676 152.159992676 152.159992676 151.199992676 152.15999939 153.11999939 153.11999939 152.15999939 153.120006104 154.080006104 154.080006104 153.120006104 154.079997559 155.039997559 155.039997559 154.079997559 155.040004272 156.000004272 156.000004272 155.040004272 155.999995728 156.959995728 156.959995728 155.999995728 156.960002441 157.920002441 157.920002441 156.960002441 157.919993896 158.879993896 158.879993896 157.919993896 158.88000061 159.84000061 159.84000061 158.88000061 159.840007324 160.800007324 160.800007324 159.840007324 160.799998779 161.759998779 161.759998779 160.799998779 161.760005493 162.720005493 162.720005493 161.760005493 162.719996948 163.679996948 163.679996948 162.719996948 163.680003662 164.640003662 164.640003662 163.680003662 164.639995117 165.599995117 165.599995117 164.639995117 165.600001831 166.560001831 166.560001831 165.600001831 166.559993286 167.519993286 167.519993286 166.559993286 167.52 168.48 168.48 167.52 168.480006714 169.440006714 169.440006714 168.480006714 169.439998169 170.399998169 170.399998169 169.439998169 170.400004883 171.360004883 171.360004883 170.400004883 171.359996338 172.319996338 172.319996338 171.359996338 172.320003052 173.280003052 173.280003052 172.320003052 173.279994507 174.239994507 174.239994507 173.279994507 174.240001221 175.200001221 175.200001221 174.240001221 175.199992676 176.159992676 176.159992676 175.199992676 176.15999939 177.11999939 177.11999939 176.15999939 177.120006104 178.080006104 178.080006104 177.120006104 178.079997559 179.039997559 179.039997559 178.079997559 179.040004272 180.000004272 180.000004272 179.040004272 179.999995728 180.959995728 180.959995728 179.999995728 180.960002441 181.920002441 181.920002441 180.960002441 181.919993896 182.879993896 182.879993896 181.919993896 182.88000061 183.84000061 183.84000061 182.88000061 183.840007324 184.800007324 184.800007324 183.840007324 184.799998779 185.759998779 185.759998779 184.799998779 185.760005493 186.720005493 186.720005493 185.760005493 186.719996948 187.679996948 187.679996948 186.719996948 187.680003662 188.640003662 188.640003662 187.680003662 188.639995117 189.599995117 189.599995117 188.639995117 189.600001831 190.560001831 190.560001831 189.600001831 190.559993286 191.519993286 191.519993286 190.559993286 191.52 192.48 192.48 191.52 192.480006714 193.440006714 193.440006714 192.480006714 193.439998169 194.399998169 194.399998169 193.439998169 194.400004883 195.360004883 195.360004883 194.400004883 195.359996338 196.319996338 196.319996338 195.359996338 196.320003052 197.280003052 197.280003052 196.320003052 197.279994507 198.239994507 198.239994507 197.279994507 198.240001221 199.200001221 199.200001221 198.240001221 199.199992676 200.159992676 200.159992676 199.199992676 200.15999939 201.11999939 201.11999939 200.15999939 201.120006104 202.080006104 202.080006104 201.120006104 202.079997559 203.039997559 203.039997559 202.079997559 203.040004272 204.000004272 204.000004272 203.040004272 203.999995728 204.959995728 204.959995728 203.999995728 204.960002441 205.920002441 205.920002441 204.960002441 205.919993896 206.879993896 206.879993896 205.919993896 206.88000061 207.84000061 207.84000061 206.88000061 207.840007324 208.800007324 208.800007324 207.840007324 208.799998779 209.759998779 209.759998779 208.799998779 209.760005493 210.720005493 210.720005493 209.760005493 210.719996948 211.679996948 211.679996948 210.719996948 211.680003662 212.640003662 212.640003662 211.680003662 212.639995117 213.599995117 213.599995117 212.639995117 213.600001831 214.560001831 214.560001831 213.600001831 214.559993286 215.519993286 215.519993286 214.559993286 215.52 216.48 216.48 215.52 216.480006714 217.440006714 217.440006714 216.480006714 217.439998169 218.399998169 218.399998169 217.439998169 218.400004883 219.360004883 219.360004883 218.400004883 219.359996338 220.319996338 220.319996338 219.359996338 220.320003052 221.280003052 221.280003052 220.320003052 221.279994507 222.239994507 222.239994507 221.279994507 222.240001221 223.200001221 223.200001221 222.240001221 223.199992676 224.159992676 224.159992676 223.199992676 224.15999939 225.11999939 225.11999939 224.15999939 225.120006104 226.080006104 226.080006104 225.120006104 226.079997559 227.039997559 227.039997559 226.079997559 227.040004272 228.000004272 228.000004272 227.040004272 227.999995728 228.959995728 228.959995728 227.999995728 228.960002441 229.920002441 229.920002441 228.960002441 229.919993896 230.879993896 230.879993896 229.919993896 230.88000061 231.84000061 231.84000061 230.88000061 231.840007324 232.800007324 232.800007324 231.840007324 232.799998779 233.759998779 233.759998779 232.799998779 233.760005493 234.720005493 234.720005493 233.760005493 234.719996948 235.679996948 235.679996948 234.719996948 235.680003662 236.640003662 236.640003662 235.680003662 236.639995117 237.599995117 237.599995117 236.639995117 237.600001831 238.560001831 238.560001831 237.600001831 238.559993286 239.519993286 239.519993286 238.559993286 239.52 240.48 240.48 239.52 240.480006714 241.440006714 241.440006714 240.480006714 241.439998169 242.399998169 242.399998169 241.439998169 242.400004883 243.360004883 243.360004883 242.400004883 243.359996338 244.319996338 244.319996338 243.359996338 244.320003052 245.280003052 245.280003052 244.320003052 245.279994507 246.239994507 246.239994507 245.279994507 246.240001221 247.200001221 247.200001221 246.240001221 247.199992676 248.159992676 248.159992676 247.199992676 248.15999939 249.11999939 249.11999939 248.15999939 249.120006104 250.080006104 250.080006104 249.120006104 250.079997559 251.039997559 251.039997559 250.079997559 251.040004272 252.000004272 252.000004272 251.040004272 251.999995728 252.959995728 252.959995728 251.999995728 252.960002441 253.920002441 253.920002441 252.960002441 253.919993896 254.879993896 254.879993896 253.919993896 254.88000061 255.84000061 255.84000061 254.88000061 255.840007324 256.800007324 256.800007324 255.840007324 256.799998779 257.759998779 257.759998779 256.799998779 257.759990234 258.719990234 258.719990234 257.759990234 258.720012207 259.680012207 259.680012207 258.720012207 259.680003662 260.640003662 260.640003662 259.680003662 260.639995117 261.599995117 261.599995117 260.639995117 261.599986572 262.559986572 262.559986572 261.599986572 262.560008545 263.520008545 263.520008545 262.560008545 263.52 264.48 264.48 263.52 264.479991455 265.439991455 265.439991455 264.479991455 265.440013428 266.400013428 266.400013428 265.440013428 266.400004883 267.360004883 267.360004883 266.400004883 267.359996338 268.319996338 268.319996338 267.359996338 268.319987793 269.279987793 269.279987793 268.319987793 269.280009766 270.240009766 270.240009766 269.280009766 270.240001221 271.200001221 271.200001221 270.240001221 271.199992676 272.159992676 272.159992676 271.199992676 272.160014648 273.120014648 273.120014648 272.160014648 273.120006104 274.080006104 274.080006104 273.120006104 274.079997559 275.039997559 275.039997559 274.079997559 275.039989014 275.999989014 275.999989014 275.039989014 276.000010986 276.960010986 276.960010986 276.000010986 276.960002441 277.920002441 277.920002441 276.960002441 277.919993896 278.879993896 278.879993896 277.919993896 278.879985352 279.839985352 279.839985352 278.879985352 279.840007324 280.800007324 280.800007324 279.840007324 280.799998779 281.759998779 281.759998779 280.799998779 281.759990234 282.719990234 282.719990234 281.759990234 282.720012207 283.680012207 283.680012207 282.720012207 283.680003662 284.640003662 284.640003662 283.680003662 284.639995117 285.599995117 285.599995117 284.639995117 285.599986572 286.559986572 286.559986572 285.599986572 286.560008545 287.520008545 287.520008545 286.560008545 287.52 288.48 288.48 287.52 288.479991455 289.439991455 289.439991455 288.479991455 289.440013428 290.400013428 290.400013428 289.440013428 290.400004883 291.360004883 291.360004883 290.400004883 291.359996338 292.319996338 292.319996338 291.359996338 292.319987793 293.279987793 293.279987793 292.319987793 293.280009766 294.240009766 294.240009766 293.280009766 294.240001221 295.200001221 295.200001221 294.240001221 295.199992676 296.159992676 296.159992676 295.199992676 296.160014648 297.120014648 297.120014648 296.160014648 297.120006104 298.080006104 298.080006104 297.120006104 298.079997559 299.039997559 299.039997559 298.079997559 299.039989014 299.999989014 299.999989014 299.039989014 300.000010986 300.960010986 300.960010986 300.000010986 300.960002441 301.920002441 301.920002441 300.960002441 301.919993896 302.879993896 302.879993896 301.919993896 302.879985352 303.839985352 303.839985352 302.879985352 303.840007324 304.800007324 304.800007324 303.840007324 304.799998779 305.759998779 305.759998779 304.799998779 305.759990234 306.719990234 306.719990234 305.759990234 306.720012207 307.680012207 307.680012207 306.720012207 307.680003662 308.640003662 308.640003662 307.680003662 308.639995117 309.599995117 309.599995117 308.639995117 309.599986572 310.559986572 310.559986572 309.599986572 310.560008545 311.520008545 311.520008545 310.560008545 311.52 312.48 312.48 311.52 312.479991455 313.439991455 313.439991455 312.479991455 313.440013428 314.400013428 314.400013428 313.440013428 314.400004883 315.360004883 315.360004883 314.400004883 315.359996338 316.319996338 316.319996338 315.359996338 316.319987793 317.279987793 317.279987793 316.319987793 317.280009766 318.240009766 318.240009766 317.280009766 318.240001221 319.200001221 319.200001221 318.240001221 319.199992676 320.159992676 320.159992676 319.199992676 320.160014648 321.120014648 321.120014648 320.160014648 321.120006104 322.080006104 322.080006104 321.120006104 322.079997559 323.039997559 323.039997559 322.079997559 323.039989014 323.999989014 323.999989014 323.039989014 324.000010986 324.960010986 324.960010986 324.000010986 324.960002441 325.920002441 325.920002441 324.960002441 325.919993896 326.879993896 326.879993896 325.919993896 326.879985352 327.839985352 327.839985352 326.879985352 327.840007324 328.800007324 328.800007324 327.840007324 328.799998779 329.759998779 329.759998779 328.799998779 329.759990234 330.719990234 330.719990234 329.759990234 330.720012207 331.680012207 331.680012207 330.720012207 331.680003662 332.640003662 332.640003662 331.680003662 332.639995117 333.599995117 333.599995117 332.639995117 333.599986572 334.559986572 334.559986572 333.599986572 334.560008545 335.520008545 335.520008545 334.560008545 335.52 336.48 336.48 335.52 336.479991455 337.439991455 337.439991455 336.479991455 337.440013428 338.400013428 338.400013428 337.440013428 338.400004883 339.360004883 339.360004883 338.400004883 339.359996338 340.319996338 340.319996338 339.359996338 340.319987793 341.279987793 341.279987793 340.319987793 341.280009766 342.240009766 342.240009766 341.280009766 342.240001221 343.200001221 343.200001221 342.240001221 343.199992676 344.159992676 344.159992676 343.199992676 344.160014648 345.120014648 345.120014648 344.160014648 345.120006104 346.080006104 346.080006104 345.120006104 346.079997559 347.039997559 347.039997559 346.079997559 347.039989014 347.999989014 347.999989014 347.039989014 348.000010986 348.960010986 348.960010986 348.000010986 348.960002441 349.920002441 349.920002441 348.960002441 349.919993896 350.879993896 350.879993896 349.919993896 350.879985352 351.839985352 351.839985352 350.879985352 351.840007324 352.800007324 352.800007324 351.840007324 352.799998779 353.759998779 353.759998779 352.799998779 353.759990234 354.719990234 354.719990234 353.759990234 354.720012207 355.680012207 355.680012207 354.720012207 355.680003662 356.640003662 356.640003662 355.680003662 356.639995117 357.599995117 357.599995117 356.639995117 357.599986572 358.559986572 358.559986572 357.599986572 358.560008545 359.520008545 359.520008545 358.560008545 -0.48 0.48 0.48 -0.48 0.479999978542 1.43999997854 1.43999997854 0.479999978542 1.43999995708 2.39999995708 2.39999995708 1.43999995708 2.40000011444 3.36000011444 3.36000011444 2.40000011444 3.35999991417 4.31999991417 4.31999991417 3.35999991417 4.32000019073 5.28000019073 5.28000019073 4.32000019073 5.28000022888 6.24000022888 6.24000022888 5.28000022888 6.23999979019 7.19999979019 7.19999979019 6.23999979019 7.19999982834 8.15999982834 8.15999982834 7.19999982834 8.16000034332 9.12000034332 9.12000034332 8.16000034332 9.12000038147 10.0800003815 10.0800003815 9.12000038147 10.0800004196 11.0400004196 11.0400004196 10.0800004196 11.0400004578 12.0000004578 12.0000004578 11.0400004578 11.9999995422 12.9599995422 12.9599995422 11.9999995422 12.9599995804 13.9199995804 13.9199995804 12.9599995804 13.9199996185 14.8799996185 14.8799996185 13.9199996185 14.8799996567 15.8399996567 15.8399996567 14.8799996567 15.8399996948 16.7999996948 16.7999996948 15.8399996948 16.8000006866 17.7600006866 17.7600006866 16.8000006866 17.7599997711 18.7199997711 18.7199997711 17.7599997711 18.7200007629 19.6800007629 19.6800007629 18.7200007629 19.6799998474 20.6399998474 20.6399998474 19.6799998474 20.6400008392 21.6000008392 21.6000008392 20.6400008392 21.5999999237 22.5599999237 22.5599999237 21.5999999237 22.5600009155 23.5200009155 23.5200009155 22.5600009155 23.52 24.48 24.48 23.52 24.4799990845 25.4399990845 25.4399990845 24.4799990845 25.4400000763 26.4000000763 26.4000000763 25.4400000763 26.3999991608 27.3599991608 27.3599991608 26.3999991608 27.3600001526 28.3200001526 28.3200001526 27.3600001526 28.3199992371 29.2799992371 29.2799992371 28.3199992371 29.2800002289 30.2400002289 30.2400002289 29.2800002289 30.2399993134 31.1999993134 31.1999993134 30.2399993134 31.2000003052 32.1600003052 32.1600003052 31.2000003052 32.1599993896 33.1199993896 33.1199993896 32.1599993896 33.1199984741 34.0799984741 34.0799984741 33.1199984741 34.0800013733 35.0400013733 35.0400013733 34.0800013733 35.0400004578 36.0000004578 36.0000004578 35.0400004578 35.9999995422 36.9599995422 36.9599995422 35.9999995422 36.9599986267 37.9199986267 37.9199986267 36.9599986267 37.9200015259 38.8800015259 38.8800015259 37.9200015259 38.8800006104 39.8400006104 39.8400006104 38.8800006104 39.8399996948 40.7999996948 40.7999996948 39.8399996948 40.7999987793 41.7599987793 41.7599987793 40.7999987793 41.7600016785 42.7200016785 42.7200016785 41.7600016785 42.7200007629 43.6800007629 43.6800007629 42.7200007629 43.6799998474 44.6399998474 44.6399998474 43.6799998474 44.6399989319 45.5999989319 45.5999989319 44.6399989319 45.6000018311 46.5600018311 46.5600018311 45.6000018311 46.5600009155 47.5200009155 47.5200009155 46.5600009155 47.52 48.48 48.48 47.52 48.4799990845 49.4399990845 49.4399990845 48.4799990845 49.4399981689 50.3999981689 50.3999981689 49.4399981689 50.4000010681 51.3600010681 51.3600010681 50.4000010681 51.3600001526 52.3200001526 52.3200001526 51.3600001526 52.3199992371 53.2799992371 53.2799992371 52.3199992371 53.2799983215 54.2399983215 54.2399983215 53.2799983215 54.2400012207 55.2000012207 55.2000012207 54.2400012207 55.2000003052 56.1600003052 56.1600003052 55.2000003052 56.1599993896 57.1199993896 57.1199993896 56.1599993896 57.1199984741 58.0799984741 58.0799984741 57.1199984741 58.0800013733 59.0400013733 59.0400013733 58.0800013733 59.0400004578 60.0000004578 60.0000004578 59.0400004578 59.9999995422 60.9599995422 60.9599995422 59.9999995422 60.9599986267 61.9199986267 61.9199986267 60.9599986267 61.9200015259 62.8800015259 62.8800015259 61.9200015259 62.8800006104 63.8400006104 63.8400006104 62.8800006104 63.8399996948 64.7999996948 64.7999996948 63.8399996948 64.7999987793 65.7599987793 65.7599987793 64.7999987793 65.7599978638 66.7199978638 66.7199978638 65.7599978638 66.7199969482 67.6799969482 67.6799969482 66.7199969482 67.6800036621 68.6400036621 68.6400036621 67.6800036621 68.6400027466 69.6000027466 69.6000027466 68.6400027466 +69.6000018311 70.5600018311 70.5600018311 69.6000018311 70.5600009155 71.5200009155 71.5200009155 70.5600009155 71.52 72.48 72.48 71.52 72.4799990845 73.4399990845 73.4399990845 72.4799990845 73.4399981689 74.3999981689 74.3999981689 73.4399981689 74.3999972534 75.3599972534 75.3599972534 74.3999972534 75.3599963379 76.3199963379 76.3199963379 75.3599963379 76.3200030518 77.2800030518 77.2800030518 76.3200030518 77.2800021362 78.2400021362 78.2400021362 77.2800021362 78.2400012207 79.2000012207 79.2000012207 78.2400012207 79.2000003052 80.1600003052 80.1600003052 79.2000003052 80.1599993896 81.1199993896 81.1199993896 80.1599993896 81.1199984741 82.0799984741 82.0799984741 81.1199984741 82.0799975586 83.0399975586 83.0399975586 82.0799975586 83.0399966431 83.9999966431 83.9999966431 83.0399966431 84.0000033569 84.9600033569 84.9600033569 84.0000033569 84.9600024414 85.9200024414 85.9200024414 84.9600024414 85.9200015259 86.8800015259 86.8800015259 85.9200015259 86.8800006104 87.8400006104 87.8400006104 86.8800006104 87.8399996948 88.7999996948 88.7999996948 87.8399996948 88.7999987793 89.7599987793 89.7599987793 88.7999987793 89.7599978638 90.7199978638 90.7199978638 89.7599978638 90.7199969482 91.6799969482 91.6799969482 90.7199969482 91.6800036621 92.6400036621 92.6400036621 91.6800036621 92.6400027466 93.6000027466 93.6000027466 92.6400027466 93.6000018311 94.5600018311 94.5600018311 93.6000018311 94.5600009155 95.5200009155 95.5200009155 94.5600009155 95.52 96.48 96.48 95.52 96.4799990845 97.4399990845 97.4399990845 96.4799990845 97.4399981689 98.3999981689 98.3999981689 97.4399981689 98.3999972534 99.3599972534 99.3599972534 98.3999972534 99.3599963379 100.319996338 100.319996338 99.3599963379 100.320003052 101.280003052 101.280003052 100.320003052 101.280002136 102.240002136 102.240002136 101.280002136 102.240001221 103.200001221 103.200001221 102.240001221 103.200000305 104.160000305 104.160000305 103.200000305 104.15999939 105.11999939 105.11999939 104.15999939 105.119998474 106.079998474 106.079998474 105.119998474 106.079997559 107.039997559 107.039997559 106.079997559 107.039996643 107.999996643 107.999996643 107.039996643 108.000003357 108.960003357 108.960003357 108.000003357 108.960002441 109.920002441 109.920002441 108.960002441 109.920001526 110.880001526 110.880001526 109.920001526 110.88000061 111.84000061 111.84000061 110.88000061 111.839999695 112.799999695 112.799999695 111.839999695 112.799998779 113.759998779 113.759998779 112.799998779 113.759997864 114.719997864 114.719997864 113.759997864 114.719996948 115.679996948 115.679996948 114.719996948 115.680003662 116.640003662 116.640003662 115.680003662 116.640002747 117.600002747 117.600002747 116.640002747 117.600001831 118.560001831 118.560001831 117.600001831 118.560000916 119.520000916 119.520000916 118.560000916 119.52 120.48 120.48 119.52 120.479999084 121.439999084 121.439999084 120.479999084 121.439998169 122.399998169 122.399998169 121.439998169 122.399997253 123.359997253 123.359997253 122.399997253 123.359996338 124.319996338 124.319996338 123.359996338 124.320003052 125.280003052 125.280003052 124.320003052 125.280002136 126.240002136 126.240002136 125.280002136 126.240001221 127.200001221 127.200001221 126.240001221 127.200000305 128.160000305 128.160000305 127.200000305 128.15999939 129.11999939 129.11999939 128.15999939 129.120006104 130.080006104 130.080006104 129.120006104 130.079997559 131.039997559 131.039997559 130.079997559 131.040004272 132.000004272 132.000004272 131.040004272 131.999995728 132.959995728 132.959995728 131.999995728 132.960002441 133.920002441 133.920002441 132.960002441 133.919993896 134.879993896 134.879993896 133.919993896 134.88000061 135.84000061 135.84000061 134.88000061 135.840007324 136.800007324 136.800007324 135.840007324 136.799998779 137.759998779 137.759998779 136.799998779 137.760005493 138.720005493 138.720005493 137.760005493 138.719996948 139.679996948 139.679996948 138.719996948 139.680003662 140.640003662 140.640003662 139.680003662 140.639995117 141.599995117 141.599995117 140.639995117 141.600001831 142.560001831 142.560001831 141.600001831 142.559993286 143.519993286 143.519993286 142.559993286 143.52 144.48 144.48 143.52 144.480006714 145.440006714 145.440006714 144.480006714 145.439998169 146.399998169 146.399998169 145.439998169 146.400004883 147.360004883 147.360004883 146.400004883 147.359996338 148.319996338 148.319996338 147.359996338 148.320003052 149.280003052 149.280003052 148.320003052 149.279994507 150.239994507 150.239994507 149.279994507 150.240001221 151.200001221 151.200001221 150.240001221 151.199992676 152.159992676 152.159992676 151.199992676 152.15999939 153.11999939 153.11999939 152.15999939 153.120006104 154.080006104 154.080006104 153.120006104 154.079997559 155.039997559 155.039997559 154.079997559 155.040004272 156.000004272 156.000004272 155.040004272 155.999995728 156.959995728 156.959995728 155.999995728 156.960002441 157.920002441 157.920002441 156.960002441 157.919993896 158.879993896 158.879993896 157.919993896 158.88000061 159.84000061 159.84000061 158.88000061 159.840007324 160.800007324 160.800007324 159.840007324 160.799998779 161.759998779 161.759998779 160.799998779 161.760005493 162.720005493 162.720005493 161.760005493 162.719996948 163.679996948 163.679996948 162.719996948 163.680003662 164.640003662 164.640003662 163.680003662 164.639995117 165.599995117 165.599995117 164.639995117 165.600001831 166.560001831 166.560001831 165.600001831 166.559993286 167.519993286 167.519993286 166.559993286 167.52 168.48 168.48 167.52 168.480006714 169.440006714 169.440006714 168.480006714 169.439998169 170.399998169 170.399998169 169.439998169 170.400004883 171.360004883 171.360004883 170.400004883 171.359996338 172.319996338 172.319996338 171.359996338 172.320003052 173.280003052 173.280003052 172.320003052 173.279994507 174.239994507 174.239994507 173.279994507 174.240001221 175.200001221 175.200001221 174.240001221 175.199992676 176.159992676 176.159992676 175.199992676 176.15999939 177.11999939 177.11999939 176.15999939 177.120006104 178.080006104 178.080006104 177.120006104 178.079997559 179.039997559 179.039997559 178.079997559 179.040004272 180.000004272 180.000004272 179.040004272 179.999995728 180.959995728 180.959995728 179.999995728 180.960002441 181.920002441 181.920002441 180.960002441 181.919993896 182.879993896 182.879993896 181.919993896 182.88000061 183.84000061 183.84000061 182.88000061 183.840007324 184.800007324 184.800007324 183.840007324 184.799998779 185.759998779 185.759998779 184.799998779 185.760005493 186.720005493 186.720005493 185.760005493 186.719996948 187.679996948 187.679996948 186.719996948 187.680003662 188.640003662 188.640003662 187.680003662 188.639995117 189.599995117 189.599995117 188.639995117 189.600001831 190.560001831 190.560001831 189.600001831 190.559993286 191.519993286 191.519993286 190.559993286 191.52 192.48 192.48 191.52 192.480006714 193.440006714 193.440006714 192.480006714 193.439998169 194.399998169 194.399998169 193.439998169 194.400004883 195.360004883 195.360004883 194.400004883 195.359996338 196.319996338 196.319996338 195.359996338 196.320003052 197.280003052 197.280003052 196.320003052 197.279994507 198.239994507 198.239994507 197.279994507 198.240001221 199.200001221 199.200001221 198.240001221 199.199992676 200.159992676 200.159992676 199.199992676 200.15999939 201.11999939 201.11999939 200.15999939 201.120006104 202.080006104 202.080006104 201.120006104 202.079997559 203.039997559 203.039997559 202.079997559 203.040004272 204.000004272 204.000004272 203.040004272 203.999995728 204.959995728 204.959995728 203.999995728 204.960002441 205.920002441 205.920002441 204.960002441 205.919993896 206.879993896 206.879993896 205.919993896 206.88000061 207.84000061 207.84000061 206.88000061 207.840007324 208.800007324 208.800007324 207.840007324 208.799998779 209.759998779 209.759998779 208.799998779 209.760005493 210.720005493 210.720005493 209.760005493 210.719996948 211.679996948 211.679996948 210.719996948 211.680003662 212.640003662 212.640003662 211.680003662 212.639995117 213.599995117 213.599995117 212.639995117 213.600001831 214.560001831 214.560001831 213.600001831 214.559993286 215.519993286 215.519993286 214.559993286 215.52 216.48 216.48 215.52 216.480006714 217.440006714 217.440006714 216.480006714 217.439998169 218.399998169 218.399998169 217.439998169 218.400004883 219.360004883 219.360004883 218.400004883 219.359996338 220.319996338 220.319996338 219.359996338 220.320003052 221.280003052 221.280003052 220.320003052 221.279994507 222.239994507 222.239994507 221.279994507 222.240001221 223.200001221 223.200001221 222.240001221 223.199992676 224.159992676 224.159992676 223.199992676 224.15999939 225.11999939 225.11999939 224.15999939 225.120006104 226.080006104 226.080006104 225.120006104 226.079997559 227.039997559 227.039997559 226.079997559 227.040004272 228.000004272 228.000004272 227.040004272 227.999995728 228.959995728 228.959995728 227.999995728 228.960002441 229.920002441 229.920002441 228.960002441 229.919993896 230.879993896 230.879993896 229.919993896 230.88000061 231.84000061 231.84000061 230.88000061 231.840007324 232.800007324 232.800007324 231.840007324 232.799998779 233.759998779 233.759998779 232.799998779 233.760005493 234.720005493 234.720005493 233.760005493 234.719996948 235.679996948 235.679996948 234.719996948 235.680003662 236.640003662 236.640003662 235.680003662 236.639995117 237.599995117 237.599995117 236.639995117 237.600001831 238.560001831 238.560001831 237.600001831 238.559993286 239.519993286 239.519993286 238.559993286 239.52 240.48 240.48 239.52 240.480006714 241.440006714 241.440006714 240.480006714 241.439998169 242.399998169 242.399998169 241.439998169 242.400004883 243.360004883 243.360004883 242.400004883 243.359996338 244.319996338 244.319996338 243.359996338 244.320003052 245.280003052 245.280003052 244.320003052 245.279994507 246.239994507 246.239994507 245.279994507 246.240001221 247.200001221 247.200001221 246.240001221 247.199992676 248.159992676 248.159992676 247.199992676 248.15999939 249.11999939 249.11999939 248.15999939 249.120006104 250.080006104 250.080006104 249.120006104 250.079997559 251.039997559 251.039997559 250.079997559 251.040004272 252.000004272 252.000004272 251.040004272 251.999995728 252.959995728 252.959995728 251.999995728 252.960002441 253.920002441 253.920002441 252.960002441 253.919993896 254.879993896 254.879993896 253.919993896 254.88000061 255.84000061 255.84000061 254.88000061 255.840007324 256.800007324 256.800007324 255.840007324 256.799998779 257.759998779 257.759998779 256.799998779 257.759990234 258.719990234 258.719990234 257.759990234 258.720012207 259.680012207 259.680012207 258.720012207 259.680003662 260.640003662 260.640003662 259.680003662 260.639995117 261.599995117 261.599995117 260.639995117 261.599986572 262.559986572 262.559986572 261.599986572 262.560008545 263.520008545 263.520008545 262.560008545 263.52 264.48 264.48 263.52 264.479991455 265.439991455 265.439991455 264.479991455 265.440013428 266.400013428 266.400013428 265.440013428 266.400004883 267.360004883 267.360004883 266.400004883 267.359996338 268.319996338 268.319996338 267.359996338 268.319987793 269.279987793 269.279987793 268.319987793 269.280009766 270.240009766 270.240009766 269.280009766 270.240001221 271.200001221 271.200001221 270.240001221 271.199992676 272.159992676 272.159992676 271.199992676 272.160014648 273.120014648 273.120014648 272.160014648 273.120006104 274.080006104 274.080006104 273.120006104 274.079997559 275.039997559 275.039997559 274.079997559 275.039989014 275.999989014 275.999989014 275.039989014 276.000010986 276.960010986 276.960010986 276.000010986 276.960002441 277.920002441 277.920002441 276.960002441 277.919993896 278.879993896 278.879993896 277.919993896 278.879985352 279.839985352 279.839985352 278.879985352 279.840007324 280.800007324 280.800007324 279.840007324 280.799998779 281.759998779 281.759998779 280.799998779 281.759990234 282.719990234 282.719990234 281.759990234 282.720012207 283.680012207 283.680012207 282.720012207 283.680003662 284.640003662 284.640003662 283.680003662 284.639995117 285.599995117 285.599995117 284.639995117 285.599986572 286.559986572 286.559986572 285.599986572 286.560008545 287.520008545 287.520008545 286.560008545 287.52 288.48 288.48 287.52 288.479991455 289.439991455 289.439991455 288.479991455 289.440013428 290.400013428 290.400013428 289.440013428 290.400004883 291.360004883 291.360004883 290.400004883 291.359996338 292.319996338 292.319996338 291.359996338 292.319987793 293.279987793 293.279987793 292.319987793 293.280009766 294.240009766 294.240009766 293.280009766 294.240001221 295.200001221 295.200001221 294.240001221 295.199992676 296.159992676 296.159992676 295.199992676 296.160014648 297.120014648 297.120014648 296.160014648 297.120006104 298.080006104 298.080006104 297.120006104 298.079997559 299.039997559 299.039997559 298.079997559 299.039989014 299.999989014 299.999989014 299.039989014 300.000010986 300.960010986 300.960010986 300.000010986 300.960002441 301.920002441 301.920002441 300.960002441 301.919993896 302.879993896 302.879993896 301.919993896 302.879985352 303.839985352 303.839985352 302.879985352 303.840007324 304.800007324 304.800007324 303.840007324 304.799998779 305.759998779 305.759998779 304.799998779 305.759990234 306.719990234 306.719990234 305.759990234 306.720012207 307.680012207 307.680012207 306.720012207 307.680003662 308.640003662 308.640003662 307.680003662 308.639995117 309.599995117 309.599995117 308.639995117 309.599986572 310.559986572 310.559986572 309.599986572 310.560008545 311.520008545 311.520008545 310.560008545 311.52 312.48 312.48 311.52 312.479991455 313.439991455 313.439991455 312.479991455 313.440013428 314.400013428 314.400013428 313.440013428 314.400004883 315.360004883 315.360004883 314.400004883 315.359996338 316.319996338 316.319996338 315.359996338 316.319987793 317.279987793 317.279987793 316.319987793 317.280009766 318.240009766 318.240009766 317.280009766 318.240001221 319.200001221 319.200001221 318.240001221 319.199992676 320.159992676 320.159992676 319.199992676 320.160014648 321.120014648 321.120014648 320.160014648 321.120006104 322.080006104 322.080006104 321.120006104 322.079997559 323.039997559 323.039997559 322.079997559 323.039989014 323.999989014 323.999989014 323.039989014 324.000010986 324.960010986 324.960010986 324.000010986 324.960002441 325.920002441 325.920002441 324.960002441 325.919993896 326.879993896 326.879993896 325.919993896 326.879985352 327.839985352 327.839985352 326.879985352 327.840007324 328.800007324 328.800007324 327.840007324 328.799998779 329.759998779 329.759998779 328.799998779 329.759990234 330.719990234 330.719990234 329.759990234 330.720012207 331.680012207 331.680012207 330.720012207 331.680003662 332.640003662 332.640003662 331.680003662 332.639995117 333.599995117 333.599995117 332.639995117 333.599986572 334.559986572 334.559986572 333.599986572 334.560008545 335.520008545 335.520008545 334.560008545 335.52 336.48 336.48 335.52 336.479991455 337.439991455 337.439991455 336.479991455 337.440013428 338.400013428 338.400013428 337.440013428 338.400004883 339.360004883 339.360004883 338.400004883 339.359996338 340.319996338 340.319996338 339.359996338 340.319987793 341.279987793 341.279987793 340.319987793 341.280009766 342.240009766 342.240009766 341.280009766 342.240001221 343.200001221 343.200001221 342.240001221 343.199992676 344.159992676 344.159992676 343.199992676 344.160014648 345.120014648 345.120014648 344.160014648 345.120006104 346.080006104 346.080006104 345.120006104 346.079997559 347.039997559 347.039997559 346.079997559 347.039989014 347.999989014 347.999989014 347.039989014 348.000010986 348.960010986 348.960010986 348.000010986 348.960002441 349.920002441 349.920002441 348.960002441 349.919993896 350.879993896 350.879993896 349.919993896 350.879985352 351.839985352 351.839985352 350.879985352 351.840007324 352.800007324 352.800007324 351.840007324 352.799998779 353.759998779 353.759998779 352.799998779 353.759990234 354.719990234 354.719990234 353.759990234 354.720012207 355.680012207 355.680012207 354.720012207 355.680003662 356.640003662 356.640003662 355.680003662 356.639995117 357.599995117 357.599995117 356.639995117 357.599986572 358.559986572 358.559986572 357.599986572 358.560008545 359.520008545 359.520008545 358.560008545 -0.46875 0.46875 0.46875 -0.46875 0.46875 1.40625 1.40625 0.46875 1.40625 2.34375 2.34375 1.40625 2.34375 3.28125 3.28125 2.34375 3.28125 4.21875 4.21875 3.28125 4.21875 5.15625 5.15625 4.21875 5.15625 6.09375 6.09375 5.15625 6.09375 7.03125 7.03125 6.09375 7.03125 7.96875 7.96875 7.03125 7.96875 8.90625 8.90625 7.96875 8.90625 9.84375 9.84375 8.90625 9.84375 10.78125 10.78125 9.84375 10.78125 11.71875 11.71875 10.78125 11.71875 12.65625 12.65625 11.71875 12.65625 13.59375 13.59375 12.65625 13.59375 14.53125 14.53125 13.59375 14.53125 15.46875 15.46875 14.53125 15.46875 16.40625 16.40625 15.46875 16.40625 17.34375 17.34375 16.40625 17.34375 18.28125 18.28125 17.34375 18.28125 19.21875 19.21875 18.28125 19.21875 20.15625 20.15625 19.21875 20.15625 21.09375 21.09375 20.15625 21.09375 22.03125 22.03125 21.09375 22.03125 22.96875 22.96875 22.03125 22.96875 23.90625 23.90625 22.96875 23.90625 24.84375 24.84375 23.90625 24.84375 25.78125 25.78125 24.84375 25.78125 26.71875 26.71875 25.78125 26.71875 27.65625 27.65625 26.71875 27.65625 28.59375 28.59375 27.65625 28.59375 29.53125 29.53125 28.59375 29.53125 30.46875 30.46875 29.53125 30.46875 31.40625 31.40625 30.46875 31.40625 32.34375 32.34375 31.40625 32.34375 33.28125 33.28125 32.34375 33.28125 34.21875 34.21875 33.28125 34.21875 35.15625 35.15625 34.21875 35.15625 36.09375 36.09375 35.15625 36.09375 37.03125 37.03125 36.09375 37.03125 37.96875 37.96875 37.03125 37.96875 38.90625 38.90625 37.96875 38.90625 39.84375 39.84375 38.90625 39.84375 40.78125 40.78125 39.84375 40.78125 41.71875 41.71875 40.78125 41.71875 42.65625 42.65625 41.71875 42.65625 43.59375 43.59375 42.65625 43.59375 44.53125 44.53125 43.59375 44.53125 45.46875 45.46875 44.53125 45.46875 46.40625 46.40625 45.46875 46.40625 47.34375 47.34375 46.40625 47.34375 48.28125 48.28125 47.34375 48.28125 49.21875 49.21875 48.28125 49.21875 50.15625 50.15625 49.21875 50.15625 51.09375 51.09375 50.15625 51.09375 52.03125 52.03125 51.09375 52.03125 52.96875 52.96875 52.03125 52.96875 53.90625 53.90625 52.96875 53.90625 54.84375 54.84375 53.90625 54.84375 55.78125 55.78125 54.84375 55.78125 56.71875 56.71875 55.78125 56.71875 57.65625 57.65625 56.71875 57.65625 58.59375 58.59375 57.65625 58.59375 59.53125 59.53125 58.59375 59.53125 60.46875 60.46875 59.53125 60.46875 61.40625 61.40625 60.46875 61.40625 62.34375 62.34375 61.40625 62.34375 63.28125 63.28125 62.34375 63.28125 64.21875 64.21875 63.28125 64.21875 65.15625 65.15625 64.21875 65.15625 66.09375 66.09375 65.15625 66.09375 67.03125 67.03125 66.09375 67.03125 67.96875 67.96875 67.03125 67.96875 68.90625 68.90625 67.96875 68.90625 69.84375 69.84375 68.90625 69.84375 70.78125 70.78125 69.84375 70.78125 71.71875 71.71875 70.78125 71.71875 72.65625 72.65625 71.71875 72.65625 73.59375 73.59375 72.65625 73.59375 74.53125 74.53125 73.59375 74.53125 75.46875 75.46875 74.53125 75.46875 76.40625 76.40625 75.46875 76.40625 77.34375 77.34375 76.40625 77.34375 78.28125 78.28125 77.34375 78.28125 79.21875 79.21875 78.28125 79.21875 80.15625 80.15625 79.21875 80.15625 81.09375 81.09375 80.15625 81.09375 82.03125 82.03125 81.09375 82.03125 82.96875 82.96875 82.03125 82.96875 83.90625 83.90625 82.96875 83.90625 84.84375 84.84375 83.90625 84.84375 85.78125 85.78125 84.84375 85.78125 86.71875 86.71875 85.78125 86.71875 87.65625 87.65625 86.71875 87.65625 88.59375 88.59375 87.65625 88.59375 89.53125 89.53125 88.59375 89.53125 90.46875 90.46875 89.53125 90.46875 91.40625 91.40625 90.46875 91.40625 92.34375 92.34375 91.40625 92.34375 93.28125 93.28125 92.34375 93.28125 94.21875 94.21875 93.28125 94.21875 95.15625 95.15625 94.21875 95.15625 96.09375 96.09375 95.15625 96.09375 97.03125 97.03125 96.09375 97.03125 97.96875 97.96875 97.03125 97.96875 98.90625 98.90625 97.96875 98.90625 99.84375 99.84375 98.90625 99.84375 100.78125 100.78125 99.84375 100.78125 101.71875 101.71875 100.78125 101.71875 102.65625 102.65625 101.71875 102.65625 103.59375 103.59375 102.65625 103.59375 104.53125 104.53125 103.59375 104.53125 105.46875 105.46875 104.53125 105.46875 106.40625 106.40625 105.46875 106.40625 107.34375 107.34375 106.40625 107.34375 108.28125 108.28125 107.34375 108.28125 109.21875 109.21875 108.28125 109.21875 110.15625 110.15625 109.21875 110.15625 111.09375 111.09375 110.15625 111.09375 112.03125 112.03125 111.09375 112.03125 112.96875 112.96875 112.03125 112.96875 113.90625 113.90625 112.96875 113.90625 114.84375 114.84375 113.90625 114.84375 115.78125 115.78125 114.84375 115.78125 116.71875 116.71875 115.78125 116.71875 117.65625 117.65625 116.71875 117.65625 118.59375 118.59375 117.65625 118.59375 119.53125 119.53125 118.59375 119.53125 120.46875 120.46875 119.53125 120.46875 121.40625 121.40625 120.46875 121.40625 122.34375 122.34375 121.40625 122.34375 123.28125 123.28125 122.34375 123.28125 124.21875 124.21875 123.28125 124.21875 125.15625 125.15625 124.21875 125.15625 126.09375 126.09375 125.15625 126.09375 127.03125 127.03125 126.09375 127.03125 127.96875 127.96875 127.03125 127.96875 128.90625 128.90625 127.96875 128.90625 129.84375 129.84375 128.90625 129.84375 130.78125 130.78125 129.84375 130.78125 131.71875 131.71875 130.78125 131.71875 132.65625 132.65625 131.71875 132.65625 133.59375 133.59375 132.65625 133.59375 134.53125 134.53125 133.59375 134.53125 135.46875 135.46875 134.53125 135.46875 136.40625 136.40625 135.46875 136.40625 137.34375 137.34375 136.40625 137.34375 138.28125 138.28125 137.34375 138.28125 139.21875 139.21875 138.28125 139.21875 140.15625 140.15625 139.21875 140.15625 141.09375 141.09375 140.15625 141.09375 142.03125 142.03125 141.09375 142.03125 142.96875 142.96875 142.03125 142.96875 143.90625 143.90625 142.96875 143.90625 144.84375 144.84375 143.90625 144.84375 145.78125 145.78125 144.84375 145.78125 146.71875 146.71875 145.78125 146.71875 147.65625 147.65625 146.71875 147.65625 148.59375 148.59375 147.65625 148.59375 149.53125 149.53125 148.59375 149.53125 150.46875 150.46875 149.53125 150.46875 151.40625 151.40625 150.46875 151.40625 152.34375 152.34375 151.40625 152.34375 153.28125 153.28125 152.34375 153.28125 154.21875 154.21875 153.28125 154.21875 155.15625 155.15625 154.21875 155.15625 156.09375 156.09375 155.15625 156.09375 157.03125 157.03125 156.09375 157.03125 157.96875 157.96875 157.03125 157.96875 158.90625 158.90625 157.96875 158.90625 159.84375 159.84375 158.90625 159.84375 160.78125 160.78125 159.84375 160.78125 161.71875 161.71875 160.78125 161.71875 162.65625 162.65625 161.71875 162.65625 163.59375 163.59375 162.65625 163.59375 164.53125 164.53125 163.59375 164.53125 165.46875 165.46875 164.53125 165.46875 166.40625 166.40625 165.46875 166.40625 167.34375 167.34375 166.40625 167.34375 168.28125 168.28125 167.34375 168.28125 169.21875 169.21875 168.28125 169.21875 170.15625 170.15625 169.21875 170.15625 171.09375 171.09375 170.15625 171.09375 172.03125 172.03125 171.09375 172.03125 172.96875 172.96875 172.03125 172.96875 173.90625 173.90625 172.96875 173.90625 174.84375 174.84375 173.90625 174.84375 175.78125 175.78125 174.84375 175.78125 176.71875 176.71875 175.78125 176.71875 177.65625 177.65625 176.71875 177.65625 178.59375 178.59375 177.65625 178.59375 179.53125 179.53125 178.59375 179.53125 180.46875 180.46875 179.53125 180.46875 181.40625 181.40625 180.46875 181.40625 182.34375 182.34375 181.40625 182.34375 183.28125 183.28125 182.34375 183.28125 184.21875 184.21875 183.28125 184.21875 185.15625 185.15625 184.21875 +185.15625 186.09375 186.09375 185.15625 186.09375 187.03125 187.03125 186.09375 187.03125 187.96875 187.96875 187.03125 187.96875 188.90625 188.90625 187.96875 188.90625 189.84375 189.84375 188.90625 189.84375 190.78125 190.78125 189.84375 190.78125 191.71875 191.71875 190.78125 191.71875 192.65625 192.65625 191.71875 192.65625 193.59375 193.59375 192.65625 193.59375 194.53125 194.53125 193.59375 194.53125 195.46875 195.46875 194.53125 195.46875 196.40625 196.40625 195.46875 196.40625 197.34375 197.34375 196.40625 197.34375 198.28125 198.28125 197.34375 198.28125 199.21875 199.21875 198.28125 199.21875 200.15625 200.15625 199.21875 200.15625 201.09375 201.09375 200.15625 201.09375 202.03125 202.03125 201.09375 202.03125 202.96875 202.96875 202.03125 202.96875 203.90625 203.90625 202.96875 203.90625 204.84375 204.84375 203.90625 204.84375 205.78125 205.78125 204.84375 205.78125 206.71875 206.71875 205.78125 206.71875 207.65625 207.65625 206.71875 207.65625 208.59375 208.59375 207.65625 208.59375 209.53125 209.53125 208.59375 209.53125 210.46875 210.46875 209.53125 210.46875 211.40625 211.40625 210.46875 211.40625 212.34375 212.34375 211.40625 212.34375 213.28125 213.28125 212.34375 213.28125 214.21875 214.21875 213.28125 214.21875 215.15625 215.15625 214.21875 215.15625 216.09375 216.09375 215.15625 216.09375 217.03125 217.03125 216.09375 217.03125 217.96875 217.96875 217.03125 217.96875 218.90625 218.90625 217.96875 218.90625 219.84375 219.84375 218.90625 219.84375 220.78125 220.78125 219.84375 220.78125 221.71875 221.71875 220.78125 221.71875 222.65625 222.65625 221.71875 222.65625 223.59375 223.59375 222.65625 223.59375 224.53125 224.53125 223.59375 224.53125 225.46875 225.46875 224.53125 225.46875 226.40625 226.40625 225.46875 226.40625 227.34375 227.34375 226.40625 227.34375 228.28125 228.28125 227.34375 228.28125 229.21875 229.21875 228.28125 229.21875 230.15625 230.15625 229.21875 230.15625 231.09375 231.09375 230.15625 231.09375 232.03125 232.03125 231.09375 232.03125 232.96875 232.96875 232.03125 232.96875 233.90625 233.90625 232.96875 233.90625 234.84375 234.84375 233.90625 234.84375 235.78125 235.78125 234.84375 235.78125 236.71875 236.71875 235.78125 236.71875 237.65625 237.65625 236.71875 237.65625 238.59375 238.59375 237.65625 238.59375 239.53125 239.53125 238.59375 239.53125 240.46875 240.46875 239.53125 240.46875 241.40625 241.40625 240.46875 241.40625 242.34375 242.34375 241.40625 242.34375 243.28125 243.28125 242.34375 243.28125 244.21875 244.21875 243.28125 244.21875 245.15625 245.15625 244.21875 245.15625 246.09375 246.09375 245.15625 246.09375 247.03125 247.03125 246.09375 247.03125 247.96875 247.96875 247.03125 247.96875 248.90625 248.90625 247.96875 248.90625 249.84375 249.84375 248.90625 249.84375 250.78125 250.78125 249.84375 250.78125 251.71875 251.71875 250.78125 251.71875 252.65625 252.65625 251.71875 252.65625 253.59375 253.59375 252.65625 253.59375 254.53125 254.53125 253.59375 254.53125 255.46875 255.46875 254.53125 255.46875 256.40625 256.40625 255.46875 256.40625 257.34375 257.34375 256.40625 257.34375 258.28125 258.28125 257.34375 258.28125 259.21875 259.21875 258.28125 259.21875 260.15625 260.15625 259.21875 260.15625 261.09375 261.09375 260.15625 261.09375 262.03125 262.03125 261.09375 262.03125 262.96875 262.96875 262.03125 262.96875 263.90625 263.90625 262.96875 263.90625 264.84375 264.84375 263.90625 264.84375 265.78125 265.78125 264.84375 265.78125 266.71875 266.71875 265.78125 266.71875 267.65625 267.65625 266.71875 267.65625 268.59375 268.59375 267.65625 268.59375 269.53125 269.53125 268.59375 269.53125 270.46875 270.46875 269.53125 270.46875 271.40625 271.40625 270.46875 271.40625 272.34375 272.34375 271.40625 272.34375 273.28125 273.28125 272.34375 273.28125 274.21875 274.21875 273.28125 274.21875 275.15625 275.15625 274.21875 275.15625 276.09375 276.09375 275.15625 276.09375 277.03125 277.03125 276.09375 277.03125 277.96875 277.96875 277.03125 277.96875 278.90625 278.90625 277.96875 278.90625 279.84375 279.84375 278.90625 279.84375 280.78125 280.78125 279.84375 280.78125 281.71875 281.71875 280.78125 281.71875 282.65625 282.65625 281.71875 282.65625 283.59375 283.59375 282.65625 283.59375 284.53125 284.53125 283.59375 284.53125 285.46875 285.46875 284.53125 285.46875 286.40625 286.40625 285.46875 286.40625 287.34375 287.34375 286.40625 287.34375 288.28125 288.28125 287.34375 288.28125 289.21875 289.21875 288.28125 289.21875 290.15625 290.15625 289.21875 290.15625 291.09375 291.09375 290.15625 291.09375 292.03125 292.03125 291.09375 292.03125 292.96875 292.96875 292.03125 292.96875 293.90625 293.90625 292.96875 293.90625 294.84375 294.84375 293.90625 294.84375 295.78125 295.78125 294.84375 295.78125 296.71875 296.71875 295.78125 296.71875 297.65625 297.65625 296.71875 297.65625 298.59375 298.59375 297.65625 298.59375 299.53125 299.53125 298.59375 299.53125 300.46875 300.46875 299.53125 300.46875 301.40625 301.40625 300.46875 301.40625 302.34375 302.34375 301.40625 302.34375 303.28125 303.28125 302.34375 303.28125 304.21875 304.21875 303.28125 304.21875 305.15625 305.15625 304.21875 305.15625 306.09375 306.09375 305.15625 306.09375 307.03125 307.03125 306.09375 307.03125 307.96875 307.96875 307.03125 307.96875 308.90625 308.90625 307.96875 308.90625 309.84375 309.84375 308.90625 309.84375 310.78125 310.78125 309.84375 310.78125 311.71875 311.71875 310.78125 311.71875 312.65625 312.65625 311.71875 312.65625 313.59375 313.59375 312.65625 313.59375 314.53125 314.53125 313.59375 314.53125 315.46875 315.46875 314.53125 315.46875 316.40625 316.40625 315.46875 316.40625 317.34375 317.34375 316.40625 317.34375 318.28125 318.28125 317.34375 318.28125 319.21875 319.21875 318.28125 319.21875 320.15625 320.15625 319.21875 320.15625 321.09375 321.09375 320.15625 321.09375 322.03125 322.03125 321.09375 322.03125 322.96875 322.96875 322.03125 322.96875 323.90625 323.90625 322.96875 323.90625 324.84375 324.84375 323.90625 324.84375 325.78125 325.78125 324.84375 325.78125 326.71875 326.71875 325.78125 326.71875 327.65625 327.65625 326.71875 327.65625 328.59375 328.59375 327.65625 328.59375 329.53125 329.53125 328.59375 329.53125 330.46875 330.46875 329.53125 330.46875 331.40625 331.40625 330.46875 331.40625 332.34375 332.34375 331.40625 332.34375 333.28125 333.28125 332.34375 333.28125 334.21875 334.21875 333.28125 334.21875 335.15625 335.15625 334.21875 335.15625 336.09375 336.09375 335.15625 336.09375 337.03125 337.03125 336.09375 337.03125 337.96875 337.96875 337.03125 337.96875 338.90625 338.90625 337.96875 338.90625 339.84375 339.84375 338.90625 339.84375 340.78125 340.78125 339.84375 340.78125 341.71875 341.71875 340.78125 341.71875 342.65625 342.65625 341.71875 342.65625 343.59375 343.59375 342.65625 343.59375 344.53125 344.53125 343.59375 344.53125 345.46875 345.46875 344.53125 345.46875 346.40625 346.40625 345.46875 346.40625 347.34375 347.34375 346.40625 347.34375 348.28125 348.28125 347.34375 348.28125 349.21875 349.21875 348.28125 349.21875 350.15625 350.15625 349.21875 350.15625 351.09375 351.09375 350.15625 351.09375 352.03125 352.03125 351.09375 352.03125 352.96875 352.96875 352.03125 352.96875 353.90625 353.90625 352.96875 353.90625 354.84375 354.84375 353.90625 354.84375 355.78125 355.78125 354.84375 355.78125 356.71875 356.71875 355.78125 356.71875 357.65625 357.65625 356.71875 357.65625 358.59375 358.59375 357.65625 358.59375 359.53125 359.53125 358.59375 -0.46875 0.46875 0.46875 -0.46875 0.46875 1.40625 1.40625 0.46875 1.40625 2.34375 2.34375 1.40625 2.34375 3.28125 3.28125 2.34375 3.28125 4.21875 4.21875 3.28125 4.21875 5.15625 5.15625 4.21875 5.15625 6.09375 6.09375 5.15625 6.09375 7.03125 7.03125 6.09375 7.03125 7.96875 7.96875 7.03125 7.96875 8.90625 8.90625 7.96875 8.90625 9.84375 9.84375 8.90625 9.84375 10.78125 10.78125 9.84375 10.78125 11.71875 11.71875 10.78125 11.71875 12.65625 12.65625 11.71875 12.65625 13.59375 13.59375 12.65625 13.59375 14.53125 14.53125 13.59375 14.53125 15.46875 15.46875 14.53125 15.46875 16.40625 16.40625 15.46875 16.40625 17.34375 17.34375 16.40625 17.34375 18.28125 18.28125 17.34375 18.28125 19.21875 19.21875 18.28125 19.21875 20.15625 20.15625 19.21875 20.15625 21.09375 21.09375 20.15625 21.09375 22.03125 22.03125 21.09375 22.03125 22.96875 22.96875 22.03125 22.96875 23.90625 23.90625 22.96875 23.90625 24.84375 24.84375 23.90625 24.84375 25.78125 25.78125 24.84375 25.78125 26.71875 26.71875 25.78125 26.71875 27.65625 27.65625 26.71875 27.65625 28.59375 28.59375 27.65625 28.59375 29.53125 29.53125 28.59375 29.53125 30.46875 30.46875 29.53125 30.46875 31.40625 31.40625 30.46875 31.40625 32.34375 32.34375 31.40625 32.34375 33.28125 33.28125 32.34375 33.28125 34.21875 34.21875 33.28125 34.21875 35.15625 35.15625 34.21875 35.15625 36.09375 36.09375 35.15625 36.09375 37.03125 37.03125 36.09375 37.03125 37.96875 37.96875 37.03125 37.96875 38.90625 38.90625 37.96875 38.90625 39.84375 39.84375 38.90625 39.84375 40.78125 40.78125 39.84375 40.78125 41.71875 41.71875 40.78125 41.71875 42.65625 42.65625 41.71875 42.65625 43.59375 43.59375 42.65625 43.59375 44.53125 44.53125 43.59375 44.53125 45.46875 45.46875 44.53125 45.46875 46.40625 46.40625 45.46875 46.40625 47.34375 47.34375 46.40625 47.34375 48.28125 48.28125 47.34375 48.28125 49.21875 49.21875 48.28125 49.21875 50.15625 50.15625 49.21875 50.15625 51.09375 51.09375 50.15625 51.09375 52.03125 52.03125 51.09375 52.03125 52.96875 52.96875 52.03125 52.96875 53.90625 53.90625 52.96875 53.90625 54.84375 54.84375 53.90625 54.84375 55.78125 55.78125 54.84375 55.78125 56.71875 56.71875 55.78125 56.71875 57.65625 57.65625 56.71875 57.65625 58.59375 58.59375 57.65625 58.59375 59.53125 59.53125 58.59375 59.53125 60.46875 60.46875 59.53125 60.46875 61.40625 61.40625 60.46875 61.40625 62.34375 62.34375 61.40625 62.34375 63.28125 63.28125 62.34375 63.28125 64.21875 64.21875 63.28125 64.21875 65.15625 65.15625 64.21875 65.15625 66.09375 66.09375 65.15625 66.09375 67.03125 67.03125 66.09375 67.03125 67.96875 67.96875 67.03125 67.96875 68.90625 68.90625 67.96875 68.90625 69.84375 69.84375 68.90625 69.84375 70.78125 70.78125 69.84375 70.78125 71.71875 71.71875 70.78125 71.71875 72.65625 72.65625 71.71875 72.65625 73.59375 73.59375 72.65625 73.59375 74.53125 74.53125 73.59375 74.53125 75.46875 75.46875 74.53125 75.46875 76.40625 76.40625 75.46875 76.40625 77.34375 77.34375 76.40625 77.34375 78.28125 78.28125 77.34375 78.28125 79.21875 79.21875 78.28125 79.21875 80.15625 80.15625 79.21875 80.15625 81.09375 81.09375 80.15625 81.09375 82.03125 82.03125 81.09375 82.03125 82.96875 82.96875 82.03125 82.96875 83.90625 83.90625 82.96875 83.90625 84.84375 84.84375 83.90625 84.84375 85.78125 85.78125 84.84375 85.78125 86.71875 86.71875 85.78125 86.71875 87.65625 87.65625 86.71875 87.65625 88.59375 88.59375 87.65625 88.59375 89.53125 89.53125 88.59375 89.53125 90.46875 90.46875 89.53125 90.46875 91.40625 91.40625 90.46875 91.40625 92.34375 92.34375 91.40625 92.34375 93.28125 93.28125 92.34375 93.28125 94.21875 94.21875 93.28125 94.21875 95.15625 95.15625 94.21875 95.15625 96.09375 96.09375 95.15625 96.09375 97.03125 97.03125 96.09375 97.03125 97.96875 97.96875 97.03125 97.96875 98.90625 98.90625 97.96875 98.90625 99.84375 99.84375 98.90625 99.84375 100.78125 100.78125 99.84375 100.78125 101.71875 101.71875 100.78125 101.71875 102.65625 102.65625 101.71875 102.65625 103.59375 103.59375 102.65625 103.59375 104.53125 104.53125 103.59375 104.53125 105.46875 105.46875 104.53125 105.46875 106.40625 106.40625 105.46875 106.40625 107.34375 107.34375 106.40625 107.34375 108.28125 108.28125 107.34375 108.28125 109.21875 109.21875 108.28125 109.21875 110.15625 110.15625 109.21875 110.15625 111.09375 111.09375 110.15625 111.09375 112.03125 112.03125 111.09375 112.03125 112.96875 112.96875 112.03125 112.96875 113.90625 113.90625 112.96875 113.90625 114.84375 114.84375 113.90625 114.84375 115.78125 115.78125 114.84375 115.78125 116.71875 116.71875 115.78125 116.71875 117.65625 117.65625 116.71875 117.65625 118.59375 118.59375 117.65625 118.59375 119.53125 119.53125 118.59375 119.53125 120.46875 120.46875 119.53125 120.46875 121.40625 121.40625 120.46875 121.40625 122.34375 122.34375 121.40625 122.34375 123.28125 123.28125 122.34375 123.28125 124.21875 124.21875 123.28125 124.21875 125.15625 125.15625 124.21875 125.15625 126.09375 126.09375 125.15625 126.09375 127.03125 127.03125 126.09375 127.03125 127.96875 127.96875 127.03125 127.96875 128.90625 128.90625 127.96875 128.90625 129.84375 129.84375 128.90625 129.84375 130.78125 130.78125 129.84375 130.78125 131.71875 131.71875 130.78125 131.71875 132.65625 132.65625 131.71875 132.65625 133.59375 133.59375 132.65625 133.59375 134.53125 134.53125 133.59375 134.53125 135.46875 135.46875 134.53125 135.46875 136.40625 136.40625 135.46875 136.40625 137.34375 137.34375 136.40625 137.34375 138.28125 138.28125 137.34375 138.28125 139.21875 139.21875 138.28125 139.21875 140.15625 140.15625 139.21875 140.15625 141.09375 141.09375 140.15625 141.09375 142.03125 142.03125 141.09375 142.03125 142.96875 142.96875 142.03125 142.96875 143.90625 143.90625 142.96875 143.90625 144.84375 144.84375 143.90625 144.84375 145.78125 145.78125 144.84375 145.78125 146.71875 146.71875 145.78125 146.71875 147.65625 147.65625 146.71875 147.65625 148.59375 148.59375 147.65625 148.59375 149.53125 149.53125 148.59375 149.53125 150.46875 150.46875 149.53125 150.46875 151.40625 151.40625 150.46875 151.40625 152.34375 152.34375 151.40625 152.34375 153.28125 153.28125 152.34375 153.28125 154.21875 154.21875 153.28125 154.21875 155.15625 155.15625 154.21875 155.15625 156.09375 156.09375 155.15625 156.09375 157.03125 157.03125 156.09375 157.03125 157.96875 157.96875 157.03125 157.96875 158.90625 158.90625 157.96875 158.90625 159.84375 159.84375 158.90625 159.84375 160.78125 160.78125 159.84375 160.78125 161.71875 161.71875 160.78125 161.71875 162.65625 162.65625 161.71875 162.65625 163.59375 163.59375 162.65625 163.59375 164.53125 164.53125 163.59375 164.53125 165.46875 165.46875 164.53125 165.46875 166.40625 166.40625 165.46875 166.40625 167.34375 167.34375 166.40625 167.34375 168.28125 168.28125 167.34375 168.28125 169.21875 169.21875 168.28125 169.21875 170.15625 170.15625 169.21875 170.15625 171.09375 171.09375 170.15625 171.09375 172.03125 172.03125 171.09375 172.03125 172.96875 172.96875 172.03125 172.96875 173.90625 173.90625 172.96875 173.90625 174.84375 174.84375 173.90625 174.84375 175.78125 175.78125 174.84375 175.78125 176.71875 176.71875 175.78125 176.71875 177.65625 177.65625 176.71875 177.65625 178.59375 178.59375 177.65625 178.59375 179.53125 179.53125 178.59375 179.53125 180.46875 180.46875 179.53125 180.46875 181.40625 181.40625 180.46875 181.40625 182.34375 182.34375 181.40625 182.34375 183.28125 183.28125 182.34375 183.28125 184.21875 184.21875 183.28125 184.21875 185.15625 185.15625 184.21875 185.15625 186.09375 186.09375 185.15625 186.09375 187.03125 187.03125 186.09375 187.03125 187.96875 187.96875 187.03125 187.96875 188.90625 188.90625 187.96875 188.90625 189.84375 189.84375 188.90625 189.84375 190.78125 190.78125 189.84375 190.78125 191.71875 191.71875 190.78125 191.71875 192.65625 192.65625 191.71875 192.65625 193.59375 193.59375 192.65625 193.59375 194.53125 194.53125 193.59375 194.53125 195.46875 195.46875 194.53125 195.46875 196.40625 196.40625 195.46875 196.40625 197.34375 197.34375 196.40625 197.34375 198.28125 198.28125 197.34375 198.28125 199.21875 199.21875 198.28125 199.21875 200.15625 200.15625 199.21875 200.15625 201.09375 201.09375 200.15625 201.09375 202.03125 202.03125 201.09375 202.03125 202.96875 202.96875 202.03125 202.96875 203.90625 203.90625 202.96875 203.90625 204.84375 204.84375 203.90625 204.84375 205.78125 205.78125 204.84375 205.78125 206.71875 206.71875 205.78125 206.71875 207.65625 207.65625 206.71875 207.65625 208.59375 208.59375 207.65625 208.59375 209.53125 209.53125 208.59375 209.53125 210.46875 210.46875 209.53125 210.46875 211.40625 211.40625 210.46875 211.40625 212.34375 212.34375 211.40625 212.34375 213.28125 213.28125 212.34375 213.28125 214.21875 214.21875 213.28125 214.21875 215.15625 215.15625 214.21875 215.15625 216.09375 216.09375 215.15625 216.09375 217.03125 217.03125 216.09375 217.03125 217.96875 217.96875 217.03125 217.96875 218.90625 218.90625 217.96875 218.90625 219.84375 219.84375 218.90625 219.84375 220.78125 220.78125 219.84375 220.78125 221.71875 221.71875 220.78125 221.71875 222.65625 222.65625 221.71875 222.65625 223.59375 223.59375 222.65625 223.59375 224.53125 224.53125 223.59375 224.53125 225.46875 225.46875 224.53125 225.46875 226.40625 226.40625 225.46875 226.40625 227.34375 227.34375 226.40625 227.34375 228.28125 228.28125 227.34375 228.28125 229.21875 229.21875 228.28125 229.21875 230.15625 230.15625 229.21875 230.15625 231.09375 231.09375 230.15625 231.09375 232.03125 232.03125 231.09375 232.03125 232.96875 232.96875 232.03125 232.96875 233.90625 233.90625 232.96875 233.90625 234.84375 234.84375 233.90625 234.84375 235.78125 235.78125 234.84375 235.78125 236.71875 236.71875 235.78125 236.71875 237.65625 237.65625 236.71875 237.65625 238.59375 238.59375 237.65625 238.59375 239.53125 239.53125 238.59375 239.53125 240.46875 240.46875 239.53125 240.46875 241.40625 241.40625 240.46875 241.40625 242.34375 242.34375 241.40625 242.34375 243.28125 243.28125 242.34375 243.28125 244.21875 244.21875 243.28125 244.21875 245.15625 245.15625 244.21875 245.15625 246.09375 246.09375 245.15625 246.09375 247.03125 247.03125 246.09375 247.03125 247.96875 247.96875 247.03125 247.96875 248.90625 248.90625 247.96875 248.90625 249.84375 249.84375 248.90625 249.84375 250.78125 250.78125 249.84375 250.78125 251.71875 251.71875 250.78125 251.71875 252.65625 252.65625 251.71875 252.65625 253.59375 253.59375 252.65625 253.59375 254.53125 254.53125 253.59375 254.53125 255.46875 255.46875 254.53125 255.46875 256.40625 256.40625 255.46875 256.40625 257.34375 257.34375 256.40625 257.34375 258.28125 258.28125 257.34375 258.28125 259.21875 259.21875 258.28125 259.21875 260.15625 260.15625 259.21875 260.15625 261.09375 261.09375 260.15625 261.09375 262.03125 262.03125 261.09375 262.03125 262.96875 262.96875 262.03125 262.96875 263.90625 263.90625 262.96875 263.90625 264.84375 264.84375 263.90625 264.84375 265.78125 265.78125 264.84375 265.78125 266.71875 266.71875 265.78125 266.71875 267.65625 267.65625 266.71875 267.65625 268.59375 268.59375 267.65625 268.59375 269.53125 269.53125 268.59375 269.53125 270.46875 270.46875 269.53125 270.46875 271.40625 271.40625 270.46875 271.40625 272.34375 272.34375 271.40625 272.34375 273.28125 273.28125 272.34375 273.28125 274.21875 274.21875 273.28125 274.21875 275.15625 275.15625 274.21875 275.15625 276.09375 276.09375 275.15625 276.09375 277.03125 277.03125 276.09375 277.03125 277.96875 277.96875 277.03125 277.96875 278.90625 278.90625 277.96875 278.90625 279.84375 279.84375 278.90625 279.84375 280.78125 280.78125 279.84375 280.78125 281.71875 281.71875 280.78125 281.71875 282.65625 282.65625 281.71875 282.65625 283.59375 283.59375 282.65625 283.59375 284.53125 284.53125 283.59375 284.53125 285.46875 285.46875 284.53125 285.46875 286.40625 286.40625 285.46875 286.40625 287.34375 287.34375 286.40625 287.34375 288.28125 288.28125 287.34375 288.28125 289.21875 289.21875 288.28125 289.21875 290.15625 290.15625 289.21875 290.15625 291.09375 291.09375 290.15625 291.09375 292.03125 292.03125 291.09375 292.03125 292.96875 292.96875 292.03125 292.96875 293.90625 293.90625 292.96875 +293.90625 294.84375 294.84375 293.90625 294.84375 295.78125 295.78125 294.84375 295.78125 296.71875 296.71875 295.78125 296.71875 297.65625 297.65625 296.71875 297.65625 298.59375 298.59375 297.65625 298.59375 299.53125 299.53125 298.59375 299.53125 300.46875 300.46875 299.53125 300.46875 301.40625 301.40625 300.46875 301.40625 302.34375 302.34375 301.40625 302.34375 303.28125 303.28125 302.34375 303.28125 304.21875 304.21875 303.28125 304.21875 305.15625 305.15625 304.21875 305.15625 306.09375 306.09375 305.15625 306.09375 307.03125 307.03125 306.09375 307.03125 307.96875 307.96875 307.03125 307.96875 308.90625 308.90625 307.96875 308.90625 309.84375 309.84375 308.90625 309.84375 310.78125 310.78125 309.84375 310.78125 311.71875 311.71875 310.78125 311.71875 312.65625 312.65625 311.71875 312.65625 313.59375 313.59375 312.65625 313.59375 314.53125 314.53125 313.59375 314.53125 315.46875 315.46875 314.53125 315.46875 316.40625 316.40625 315.46875 316.40625 317.34375 317.34375 316.40625 317.34375 318.28125 318.28125 317.34375 318.28125 319.21875 319.21875 318.28125 319.21875 320.15625 320.15625 319.21875 320.15625 321.09375 321.09375 320.15625 321.09375 322.03125 322.03125 321.09375 322.03125 322.96875 322.96875 322.03125 322.96875 323.90625 323.90625 322.96875 323.90625 324.84375 324.84375 323.90625 324.84375 325.78125 325.78125 324.84375 325.78125 326.71875 326.71875 325.78125 326.71875 327.65625 327.65625 326.71875 327.65625 328.59375 328.59375 327.65625 328.59375 329.53125 329.53125 328.59375 329.53125 330.46875 330.46875 329.53125 330.46875 331.40625 331.40625 330.46875 331.40625 332.34375 332.34375 331.40625 332.34375 333.28125 333.28125 332.34375 333.28125 334.21875 334.21875 333.28125 334.21875 335.15625 335.15625 334.21875 335.15625 336.09375 336.09375 335.15625 336.09375 337.03125 337.03125 336.09375 337.03125 337.96875 337.96875 337.03125 337.96875 338.90625 338.90625 337.96875 338.90625 339.84375 339.84375 338.90625 339.84375 340.78125 340.78125 339.84375 340.78125 341.71875 341.71875 340.78125 341.71875 342.65625 342.65625 341.71875 342.65625 343.59375 343.59375 342.65625 343.59375 344.53125 344.53125 343.59375 344.53125 345.46875 345.46875 344.53125 345.46875 346.40625 346.40625 345.46875 346.40625 347.34375 347.34375 346.40625 347.34375 348.28125 348.28125 347.34375 348.28125 349.21875 349.21875 348.28125 349.21875 350.15625 350.15625 349.21875 350.15625 351.09375 351.09375 350.15625 351.09375 352.03125 352.03125 351.09375 352.03125 352.96875 352.96875 352.03125 352.96875 353.90625 353.90625 352.96875 353.90625 354.84375 354.84375 353.90625 354.84375 355.78125 355.78125 354.84375 355.78125 356.71875 356.71875 355.78125 356.71875 357.65625 357.65625 356.71875 357.65625 358.59375 358.59375 357.65625 358.59375 359.53125 359.53125 358.59375 -0.45 0.45 0.45 -0.45 0.449999976158 1.34999997616 1.34999997616 0.449999976158 1.34999995232 2.24999995232 2.24999995232 1.34999995232 2.25000004768 3.15000004768 3.15000004768 2.25000004768 3.14999990463 4.04999990463 4.04999990463 3.14999990463 4.05 4.95 4.95 4.05 4.95000009537 5.85000009537 5.85000009537 4.95000009537 5.85000019073 6.75000019073 6.75000019073 5.85000019073 6.74999980927 7.64999980927 7.64999980927 6.74999980927 7.65000038147 8.55000038147 8.55000038147 7.65000038147 8.55 9.45 9.45 8.55 9.44999961853 10.3499996185 10.3499996185 9.44999961853 10.3500001907 11.2500001907 11.2500001907 10.3500001907 11.2499998093 12.1499998093 12.1499998093 11.2499998093 12.1500003815 13.0500003815 13.0500003815 12.1500003815 13.05 13.95 13.95 13.05 13.9499996185 14.8499996185 14.8499996185 13.9499996185 14.8500001907 15.7500001907 15.7500001907 14.8500001907 15.7500007629 16.6500007629 16.6500007629 15.7500007629 16.6500003815 17.5500003815 17.5500003815 16.6500003815 17.55 18.45 18.45 17.55 18.4499996185 19.3499996185 19.3499996185 18.4499996185 19.3499992371 20.2499992371 20.2499992371 19.3499992371 20.2500007629 21.1500007629 21.1500007629 20.2500007629 21.1500003815 22.0500003815 22.0500003815 21.1500003815 22.05 22.95 22.95 22.05 22.9499996185 23.8499996185 23.8499996185 22.9499996185 23.8499992371 24.7499992371 24.7499992371 23.8499992371 24.7500007629 25.6500007629 25.6500007629 24.7500007629 25.6500003815 26.5500003815 26.5500003815 25.6500003815 26.55 27.45 27.45 26.55 27.4499996185 28.3499996185 28.3499996185 27.4499996185 28.3499992371 29.2499992371 29.2499992371 28.3499992371 29.2500007629 30.1500007629 30.1500007629 29.2500007629 30.1500003815 31.0500003815 31.0500003815 30.1500003815 31.05 31.95 31.95 31.05 31.9500015259 32.8500015259 32.8500015259 31.9500015259 32.8499992371 33.7499992371 33.7499992371 32.8499992371 33.7500007629 34.6500007629 34.6500007629 33.7500007629 34.6499984741 35.5499984741 35.5499984741 34.6499984741 35.55 36.45 36.45 35.55 36.4500015259 37.3500015259 37.3500015259 36.4500015259 37.3499992371 38.2499992371 38.2499992371 37.3499992371 38.2500007629 39.1500007629 39.1500007629 38.2500007629 39.1499984741 40.0499984741 40.0499984741 39.1499984741 40.05 40.95 40.95 40.05 40.9500015259 41.8500015259 41.8500015259 40.9500015259 41.8499992371 42.7499992371 42.7499992371 41.8499992371 42.7500007629 43.6500007629 43.6500007629 42.7500007629 43.6499984741 44.5499984741 44.5499984741 43.6499984741 44.55 45.45 45.45 44.55 45.4500015259 46.3500015259 46.3500015259 45.4500015259 46.3499992371 47.2499992371 47.2499992371 46.3499992371 47.2500007629 48.1500007629 48.1500007629 47.2500007629 48.1499984741 49.0499984741 49.0499984741 48.1499984741 49.05 49.95 49.95 49.05 49.9500015259 50.8500015259 50.8500015259 49.9500015259 50.8499992371 51.7499992371 51.7499992371 50.8499992371 51.7500007629 52.6500007629 52.6500007629 51.7500007629 52.6499984741 53.5499984741 53.5499984741 52.6499984741 53.55 54.45 54.45 53.55 54.4500015259 55.3500015259 55.3500015259 54.4500015259 55.3499992371 56.2499992371 56.2499992371 55.3499992371 56.2500007629 57.1500007629 57.1500007629 56.2500007629 57.1499984741 58.0499984741 58.0499984741 57.1499984741 58.05 58.95 58.95 58.05 58.9500015259 59.8500015259 59.8500015259 58.9500015259 59.8499992371 60.7499992371 60.7499992371 59.8499992371 60.7500007629 61.6500007629 61.6500007629 60.7500007629 61.6499984741 62.5499984741 62.5499984741 61.6499984741 62.55 63.45 63.45 62.55 63.4500015259 64.3500015259 64.3500015259 63.4500015259 64.3500030518 65.2500030518 65.2500030518 64.3500030518 65.2499969482 66.1499969482 66.1499969482 65.2499969482 66.1499984741 67.0499984741 67.0499984741 66.1499984741 67.05 67.95 67.95 67.05 67.9500015259 68.8500015259 68.8500015259 67.9500015259 68.8500030518 69.7500030518 69.7500030518 68.8500030518 69.7499969482 70.6499969482 70.6499969482 69.7499969482 70.6499984741 71.5499984741 71.5499984741 70.6499984741 71.55 72.45 72.45 71.55 72.4500015259 73.3500015259 73.3500015259 72.4500015259 73.3500030518 74.2500030518 74.2500030518 73.3500030518 74.2499969482 75.1499969482 75.1499969482 74.2499969482 75.1499984741 76.0499984741 76.0499984741 75.1499984741 76.05 76.95 76.95 76.05 76.9500015259 77.8500015259 77.8500015259 76.9500015259 77.8500030518 78.7500030518 78.7500030518 77.8500030518 78.7499969482 79.6499969482 79.6499969482 78.7499969482 79.6499984741 80.5499984741 80.5499984741 79.6499984741 80.55 81.45 81.45 80.55 81.4500015259 82.3500015259 82.3500015259 81.4500015259 82.3500030518 83.2500030518 83.2500030518 82.3500030518 83.2499969482 84.1499969482 84.1499969482 83.2499969482 84.1499984741 85.0499984741 85.0499984741 84.1499984741 85.05 85.95 85.95 85.05 85.9500015259 86.8500015259 86.8500015259 85.9500015259 86.8500030518 87.7500030518 87.7500030518 86.8500030518 87.7499969482 88.6499969482 88.6499969482 87.7499969482 88.6499984741 89.5499984741 89.5499984741 88.6499984741 89.55 90.45 90.45 89.55 90.4500015259 91.3500015259 91.3500015259 90.4500015259 91.3500030518 92.2500030518 92.2500030518 91.3500030518 92.2499969482 93.1499969482 93.1499969482 92.2499969482 93.1499984741 94.0499984741 94.0499984741 93.1499984741 94.05 94.95 94.95 94.05 94.9500015259 95.8500015259 95.8500015259 94.9500015259 95.8500030518 96.7500030518 96.7500030518 95.8500030518 96.7499969482 97.6499969482 97.6499969482 96.7499969482 97.6499984741 98.5499984741 98.5499984741 97.6499984741 98.55 99.45 99.45 98.55 99.4500015259 100.350001526 100.350001526 99.4500015259 100.350003052 101.250003052 101.250003052 100.350003052 101.249996948 102.149996948 102.149996948 101.249996948 102.149998474 103.049998474 103.049998474 102.149998474 103.05 103.95 103.95 103.05 103.950001526 104.850001526 104.850001526 103.950001526 104.850003052 105.750003052 105.750003052 104.850003052 105.749996948 106.649996948 106.649996948 105.749996948 106.649998474 107.549998474 107.549998474 106.649998474 107.55 108.45 108.45 107.55 108.450001526 109.350001526 109.350001526 108.450001526 109.350003052 110.250003052 110.250003052 109.350003052 110.249996948 111.149996948 111.149996948 110.249996948 111.149998474 112.049998474 112.049998474 111.149998474 112.05 112.95 112.95 112.05 112.950001526 113.850001526 113.850001526 112.950001526 113.850003052 114.750003052 114.750003052 113.850003052 114.749996948 115.649996948 115.649996948 114.749996948 115.649998474 116.549998474 116.549998474 115.649998474 116.55 117.45 117.45 116.55 117.450001526 118.350001526 118.350001526 117.450001526 118.350003052 119.250003052 119.250003052 118.350003052 119.249996948 120.149996948 120.149996948 119.249996948 120.149998474 121.049998474 121.049998474 120.149998474 121.05 121.95 121.95 121.05 121.950001526 122.850001526 122.850001526 121.950001526 122.850003052 123.750003052 123.750003052 122.850003052 123.749996948 124.649996948 124.649996948 123.749996948 124.649998474 125.549998474 125.549998474 124.649998474 125.55 126.45 126.45 125.55 126.450001526 127.350001526 127.350001526 126.450001526 127.350003052 128.250003052 128.250003052 127.350003052 128.249996948 129.149996948 129.149996948 128.249996948 129.150006104 130.050006104 130.050006104 129.150006104 130.05 130.95 130.95 130.05 130.949993896 131.849993896 131.849993896 130.949993896 131.850003052 132.750003052 132.750003052 131.850003052 132.749996948 133.649996948 133.649996948 132.749996948 133.650006104 134.550006104 134.550006104 133.650006104 134.55 135.45 135.45 134.55 135.449993896 136.349993896 136.349993896 135.449993896 136.350003052 137.250003052 137.250003052 136.350003052 137.249996948 138.149996948 138.149996948 137.249996948 138.150006104 139.050006104 139.050006104 138.150006104 139.05 139.95 139.95 139.05 139.949993896 140.849993896 140.849993896 139.949993896 140.850003052 141.750003052 141.750003052 140.850003052 141.749996948 142.649996948 142.649996948 141.749996948 142.650006104 143.550006104 143.550006104 142.650006104 143.55 144.45 144.45 143.55 144.449993896 145.349993896 145.349993896 144.449993896 145.350003052 146.250003052 146.250003052 145.350003052 146.249996948 147.149996948 147.149996948 146.249996948 147.150006104 148.050006104 148.050006104 147.150006104 148.05 148.95 148.95 148.05 148.949993896 149.849993896 149.849993896 148.949993896 149.850003052 150.750003052 150.750003052 149.850003052 150.749996948 151.649996948 151.649996948 150.749996948 151.650006104 152.550006104 152.550006104 151.650006104 152.55 153.45 153.45 152.55 153.449993896 154.349993896 154.349993896 153.449993896 154.350003052 155.250003052 155.250003052 154.350003052 155.249996948 156.149996948 156.149996948 155.249996948 156.150006104 157.050006104 157.050006104 156.150006104 157.05 157.95 157.95 157.05 157.949993896 158.849993896 158.849993896 157.949993896 158.850003052 159.750003052 159.750003052 158.850003052 159.749996948 160.649996948 160.649996948 159.749996948 160.650006104 161.550006104 161.550006104 160.650006104 161.55 162.45 162.45 161.55 162.449993896 163.349993896 163.349993896 162.449993896 163.350003052 164.250003052 164.250003052 163.350003052 164.249996948 165.149996948 165.149996948 164.249996948 165.150006104 166.050006104 166.050006104 165.150006104 166.05 166.95 166.95 166.05 166.949993896 167.849993896 167.849993896 166.949993896 167.850003052 168.750003052 168.750003052 167.850003052 168.749996948 169.649996948 169.649996948 168.749996948 169.650006104 170.550006104 170.550006104 169.650006104 170.55 171.45 171.45 170.55 171.449993896 172.349993896 172.349993896 171.449993896 172.350003052 173.250003052 173.250003052 172.350003052 173.249996948 174.149996948 174.149996948 173.249996948 174.150006104 175.050006104 175.050006104 174.150006104 175.05 175.95 175.95 175.05 175.949993896 176.849993896 176.849993896 175.949993896 176.850003052 177.750003052 177.750003052 176.850003052 177.749996948 178.649996948 178.649996948 177.749996948 178.650006104 179.550006104 179.550006104 178.650006104 179.55 180.45 180.45 179.55 180.449993896 181.349993896 181.349993896 180.449993896 181.350003052 182.250003052 182.250003052 181.350003052 182.249996948 183.149996948 183.149996948 182.249996948 183.150006104 184.050006104 184.050006104 183.150006104 184.05 184.95 184.95 184.05 184.949993896 185.849993896 185.849993896 184.949993896 185.850003052 186.750003052 186.750003052 185.850003052 186.749996948 187.649996948 187.649996948 186.749996948 187.650006104 188.550006104 188.550006104 187.650006104 188.55 189.45 189.45 188.55 189.449993896 190.349993896 190.349993896 189.449993896 190.350003052 191.250003052 191.250003052 190.350003052 191.249996948 192.149996948 192.149996948 191.249996948 192.150006104 193.050006104 193.050006104 192.150006104 193.05 193.95 193.95 193.05 193.949993896 194.849993896 194.849993896 193.949993896 194.850003052 195.750003052 195.750003052 194.850003052 195.749996948 196.649996948 196.649996948 195.749996948 196.650006104 197.550006104 197.550006104 196.650006104 197.55 198.45 198.45 197.55 198.449993896 199.349993896 199.349993896 198.449993896 199.350003052 200.250003052 200.250003052 199.350003052 200.249996948 201.149996948 201.149996948 200.249996948 201.150006104 202.050006104 202.050006104 201.150006104 202.05 202.95 202.95 202.05 202.949993896 203.849993896 203.849993896 202.949993896 203.850003052 204.750003052 204.750003052 203.850003052 204.749996948 205.649996948 205.649996948 204.749996948 205.650006104 206.550006104 206.550006104 205.650006104 206.55 207.45 207.45 206.55 207.449993896 208.349993896 208.349993896 207.449993896 208.350003052 209.250003052 209.250003052 208.350003052 209.249996948 210.149996948 210.149996948 209.249996948 210.150006104 211.050006104 211.050006104 210.150006104 211.05 211.95 211.95 211.05 211.949993896 212.849993896 212.849993896 211.949993896 212.850003052 213.750003052 213.750003052 212.850003052 213.749996948 214.649996948 214.649996948 213.749996948 214.650006104 215.550006104 215.550006104 214.650006104 215.55 216.45 216.45 215.55 216.449993896 217.349993896 217.349993896 216.449993896 217.350003052 218.250003052 218.250003052 217.350003052 218.249996948 219.149996948 219.149996948 218.249996948 219.150006104 220.050006104 220.050006104 219.150006104 220.05 220.95 220.95 220.05 220.949993896 221.849993896 221.849993896 220.949993896 221.850003052 222.750003052 222.750003052 221.850003052 222.749996948 223.649996948 223.649996948 222.749996948 223.650006104 224.550006104 224.550006104 223.650006104 224.55 225.45 225.45 224.55 225.449993896 226.349993896 226.349993896 225.449993896 226.350003052 227.250003052 227.250003052 226.350003052 227.249996948 228.149996948 228.149996948 227.249996948 228.150006104 229.050006104 229.050006104 228.150006104 229.05 229.95 229.95 229.05 229.949993896 230.849993896 230.849993896 229.949993896 230.850003052 231.750003052 231.750003052 230.850003052 231.749996948 232.649996948 232.649996948 231.749996948 232.650006104 233.550006104 233.550006104 232.650006104 233.55 234.45 234.45 233.55 234.449993896 235.349993896 235.349993896 234.449993896 235.350003052 236.250003052 236.250003052 235.350003052 236.249996948 237.149996948 237.149996948 236.249996948 237.150006104 238.050006104 238.050006104 237.150006104 238.05 238.95 238.95 238.05 238.949993896 239.849993896 239.849993896 238.949993896 239.850003052 240.750003052 240.750003052 239.850003052 240.749996948 241.649996948 241.649996948 240.749996948 241.650006104 242.550006104 242.550006104 241.650006104 242.55 243.45 243.45 242.55 243.449993896 244.349993896 244.349993896 243.449993896 244.350003052 245.250003052 245.250003052 244.350003052 245.249996948 246.149996948 246.149996948 245.249996948 246.150006104 247.050006104 247.050006104 246.150006104 247.05 247.95 247.95 247.05 247.949993896 248.849993896 248.849993896 247.949993896 248.850003052 249.750003052 249.750003052 248.850003052 249.749996948 250.649996948 250.649996948 249.749996948 250.650006104 251.550006104 251.550006104 250.650006104 251.55 252.45 252.45 251.55 252.449993896 253.349993896 253.349993896 252.449993896 253.350003052 254.250003052 254.250003052 253.350003052 254.249996948 255.149996948 255.149996948 254.249996948 255.150006104 256.050006104 256.050006104 255.150006104 256.05 256.95 256.95 256.05 256.949993896 257.849993896 257.849993896 256.949993896 257.849987793 258.749987793 258.749987793 257.849987793 258.750012207 259.650012207 259.650012207 258.750012207 259.650006104 260.550006104 260.550006104 259.650006104 260.55 261.45 261.45 260.55 261.449993896 262.349993896 262.349993896 261.449993896 262.349987793 263.249987793 263.249987793 262.349987793 263.250012207 264.150012207 264.150012207 263.250012207 264.150006104 265.050006104 265.050006104 264.150006104 265.05 265.95 265.95 265.05 265.949993896 266.849993896 266.849993896 265.949993896 266.849987793 267.749987793 267.749987793 266.849987793 267.750012207 268.650012207 268.650012207 267.750012207 268.650006104 269.550006104 269.550006104 268.650006104 269.55 270.45 270.45 269.55 270.449993896 271.349993896 271.349993896 270.449993896 271.349987793 272.249987793 272.249987793 271.349987793 272.250012207 273.150012207 273.150012207 272.250012207 273.150006104 274.050006104 274.050006104 273.150006104 274.05 274.95 274.95 274.05 274.949993896 275.849993896 275.849993896 274.949993896 275.849987793 276.749987793 276.749987793 275.849987793 276.750012207 277.650012207 277.650012207 276.750012207 277.650006104 278.550006104 278.550006104 277.650006104 278.55 279.45 279.45 278.55 279.449993896 280.349993896 280.349993896 279.449993896 280.349987793 281.249987793 281.249987793 280.349987793 281.250012207 282.150012207 282.150012207 281.250012207 282.150006104 283.050006104 283.050006104 282.150006104 283.05 283.95 283.95 283.05 283.949993896 284.849993896 284.849993896 283.949993896 284.849987793 285.749987793 285.749987793 284.849987793 285.750012207 286.650012207 286.650012207 285.750012207 286.650006104 287.550006104 287.550006104 286.650006104 287.55 288.45 288.45 287.55 288.449993896 289.349993896 289.349993896 288.449993896 289.349987793 290.249987793 290.249987793 289.349987793 290.250012207 291.150012207 291.150012207 290.250012207 291.150006104 292.050006104 292.050006104 291.150006104 292.05 292.95 292.95 292.05 292.949993896 293.849993896 293.849993896 292.949993896 293.849987793 294.749987793 294.749987793 293.849987793 294.750012207 295.650012207 295.650012207 294.750012207 295.650006104 296.550006104 296.550006104 295.650006104 296.55 297.45 297.45 296.55 297.449993896 298.349993896 298.349993896 297.449993896 298.349987793 299.249987793 299.249987793 298.349987793 299.250012207 300.150012207 300.150012207 299.250012207 300.150006104 301.050006104 301.050006104 300.150006104 301.05 301.95 301.95 301.05 301.949993896 302.849993896 302.849993896 301.949993896 302.849987793 303.749987793 303.749987793 302.849987793 303.750012207 304.650012207 304.650012207 303.750012207 304.650006104 305.550006104 305.550006104 304.650006104 305.55 306.45 306.45 305.55 306.449993896 307.349993896 307.349993896 306.449993896 307.349987793 308.249987793 308.249987793 307.349987793 308.250012207 309.150012207 309.150012207 308.250012207 309.150006104 310.050006104 310.050006104 309.150006104 310.05 310.95 310.95 310.05 310.949993896 311.849993896 311.849993896 310.949993896 311.849987793 312.749987793 312.749987793 311.849987793 312.750012207 313.650012207 313.650012207 312.750012207 313.650006104 314.550006104 314.550006104 313.650006104 314.55 315.45 315.45 314.55 315.449993896 316.349993896 316.349993896 315.449993896 316.349987793 317.249987793 317.249987793 316.349987793 317.250012207 318.150012207 318.150012207 317.250012207 318.150006104 319.050006104 319.050006104 318.150006104 319.05 319.95 319.95 319.05 319.949993896 320.849993896 320.849993896 319.949993896 320.849987793 321.749987793 321.749987793 320.849987793 321.750012207 322.650012207 322.650012207 321.750012207 322.650006104 323.550006104 323.550006104 322.650006104 323.55 324.45 324.45 323.55 324.449993896 325.349993896 325.349993896 324.449993896 325.349987793 326.249987793 326.249987793 325.349987793 326.250012207 327.150012207 327.150012207 326.250012207 327.150006104 328.050006104 328.050006104 327.150006104 328.05 328.95 328.95 328.05 328.949993896 329.849993896 329.849993896 328.949993896 329.849987793 330.749987793 330.749987793 329.849987793 330.750012207 331.650012207 331.650012207 330.750012207 331.650006104 332.550006104 332.550006104 331.650006104 332.55 333.45 333.45 332.55 333.449993896 334.349993896 334.349993896 333.449993896 334.349987793 335.249987793 335.249987793 334.349987793 335.250012207 336.150012207 336.150012207 335.250012207 336.150006104 337.050006104 337.050006104 336.150006104 337.05 337.95 337.95 337.05 337.949993896 338.849993896 338.849993896 337.949993896 338.849987793 339.749987793 339.749987793 338.849987793 339.750012207 340.650012207 340.650012207 339.750012207 340.650006104 341.550006104 341.550006104 340.650006104 341.55 342.45 342.45 341.55 342.449993896 343.349993896 343.349993896 342.449993896 343.349987793 344.249987793 344.249987793 343.349987793 344.250012207 345.150012207 345.150012207 344.250012207 345.150006104 346.050006104 346.050006104 345.150006104 346.05 346.95 346.95 346.05 346.949993896 347.849993896 347.849993896 346.949993896 347.849987793 348.749987793 348.749987793 347.849987793 348.750012207 349.650012207 349.650012207 348.750012207 349.650006104 350.550006104 350.550006104 349.650006104 350.55 351.45 351.45 350.55 351.449993896 352.349993896 352.349993896 351.449993896 352.349987793 353.249987793 353.249987793 352.349987793 353.250012207 354.150012207 354.150012207 353.250012207 354.150006104 355.050006104 355.050006104 354.150006104 355.05 355.95 355.95 355.05 355.949993896 356.849993896 356.849993896 355.949993896 356.849987793 357.749987793 357.749987793 356.849987793 357.750012207 358.650012207 358.650012207 357.750012207 358.650006104 359.550006104 359.550006104 358.650006104 -0.45 0.45 0.45 -0.45 0.449999976158 1.34999997616 1.34999997616 0.449999976158 1.34999995232 2.24999995232 2.24999995232 1.34999995232 2.25000004768 3.15000004768 3.15000004768 2.25000004768 3.14999990463 4.04999990463 4.04999990463 3.14999990463 4.05 4.95 4.95 4.05 4.95000009537 5.85000009537 5.85000009537 4.95000009537 5.85000019073 6.75000019073 6.75000019073 5.85000019073 6.74999980927 7.64999980927 7.64999980927 6.74999980927 7.65000038147 8.55000038147 8.55000038147 7.65000038147 8.55 9.45 9.45 8.55 9.44999961853 10.3499996185 10.3499996185 9.44999961853 10.3500001907 11.2500001907 11.2500001907 10.3500001907 11.2499998093 12.1499998093 12.1499998093 11.2499998093 12.1500003815 13.0500003815 13.0500003815 12.1500003815 13.05 13.95 13.95 13.05 13.9499996185 14.8499996185 14.8499996185 13.9499996185 14.8500001907 15.7500001907 15.7500001907 14.8500001907 15.7500007629 16.6500007629 16.6500007629 15.7500007629 16.6500003815 17.5500003815 17.5500003815 16.6500003815 17.55 18.45 18.45 17.55 18.4499996185 19.3499996185 19.3499996185 18.4499996185 19.3499992371 20.2499992371 20.2499992371 19.3499992371 20.2500007629 21.1500007629 21.1500007629 20.2500007629 21.1500003815 22.0500003815 22.0500003815 21.1500003815 22.05 22.95 22.95 22.05 22.9499996185 23.8499996185 23.8499996185 22.9499996185 23.8499992371 24.7499992371 24.7499992371 23.8499992371 24.7500007629 25.6500007629 25.6500007629 24.7500007629 25.6500003815 26.5500003815 26.5500003815 25.6500003815 +26.55 27.45 27.45 26.55 27.4499996185 28.3499996185 28.3499996185 27.4499996185 28.3499992371 29.2499992371 29.2499992371 28.3499992371 29.2500007629 30.1500007629 30.1500007629 29.2500007629 30.1500003815 31.0500003815 31.0500003815 30.1500003815 31.05 31.95 31.95 31.05 31.9500015259 32.8500015259 32.8500015259 31.9500015259 32.8499992371 33.7499992371 33.7499992371 32.8499992371 33.7500007629 34.6500007629 34.6500007629 33.7500007629 34.6499984741 35.5499984741 35.5499984741 34.6499984741 35.55 36.45 36.45 35.55 36.4500015259 37.3500015259 37.3500015259 36.4500015259 37.3499992371 38.2499992371 38.2499992371 37.3499992371 38.2500007629 39.1500007629 39.1500007629 38.2500007629 39.1499984741 40.0499984741 40.0499984741 39.1499984741 40.05 40.95 40.95 40.05 40.9500015259 41.8500015259 41.8500015259 40.9500015259 41.8499992371 42.7499992371 42.7499992371 41.8499992371 42.7500007629 43.6500007629 43.6500007629 42.7500007629 43.6499984741 44.5499984741 44.5499984741 43.6499984741 44.55 45.45 45.45 44.55 45.4500015259 46.3500015259 46.3500015259 45.4500015259 46.3499992371 47.2499992371 47.2499992371 46.3499992371 47.2500007629 48.1500007629 48.1500007629 47.2500007629 48.1499984741 49.0499984741 49.0499984741 48.1499984741 49.05 49.95 49.95 49.05 49.9500015259 50.8500015259 50.8500015259 49.9500015259 50.8499992371 51.7499992371 51.7499992371 50.8499992371 51.7500007629 52.6500007629 52.6500007629 51.7500007629 52.6499984741 53.5499984741 53.5499984741 52.6499984741 53.55 54.45 54.45 53.55 54.4500015259 55.3500015259 55.3500015259 54.4500015259 55.3499992371 56.2499992371 56.2499992371 55.3499992371 56.2500007629 57.1500007629 57.1500007629 56.2500007629 57.1499984741 58.0499984741 58.0499984741 57.1499984741 58.05 58.95 58.95 58.05 58.9500015259 59.8500015259 59.8500015259 58.9500015259 59.8499992371 60.7499992371 60.7499992371 59.8499992371 60.7500007629 61.6500007629 61.6500007629 60.7500007629 61.6499984741 62.5499984741 62.5499984741 61.6499984741 62.55 63.45 63.45 62.55 63.4500015259 64.3500015259 64.3500015259 63.4500015259 64.3500030518 65.2500030518 65.2500030518 64.3500030518 65.2499969482 66.1499969482 66.1499969482 65.2499969482 66.1499984741 67.0499984741 67.0499984741 66.1499984741 67.05 67.95 67.95 67.05 67.9500015259 68.8500015259 68.8500015259 67.9500015259 68.8500030518 69.7500030518 69.7500030518 68.8500030518 69.7499969482 70.6499969482 70.6499969482 69.7499969482 70.6499984741 71.5499984741 71.5499984741 70.6499984741 71.55 72.45 72.45 71.55 72.4500015259 73.3500015259 73.3500015259 72.4500015259 73.3500030518 74.2500030518 74.2500030518 73.3500030518 74.2499969482 75.1499969482 75.1499969482 74.2499969482 75.1499984741 76.0499984741 76.0499984741 75.1499984741 76.05 76.95 76.95 76.05 76.9500015259 77.8500015259 77.8500015259 76.9500015259 77.8500030518 78.7500030518 78.7500030518 77.8500030518 78.7499969482 79.6499969482 79.6499969482 78.7499969482 79.6499984741 80.5499984741 80.5499984741 79.6499984741 80.55 81.45 81.45 80.55 81.4500015259 82.3500015259 82.3500015259 81.4500015259 82.3500030518 83.2500030518 83.2500030518 82.3500030518 83.2499969482 84.1499969482 84.1499969482 83.2499969482 84.1499984741 85.0499984741 85.0499984741 84.1499984741 85.05 85.95 85.95 85.05 85.9500015259 86.8500015259 86.8500015259 85.9500015259 86.8500030518 87.7500030518 87.7500030518 86.8500030518 87.7499969482 88.6499969482 88.6499969482 87.7499969482 88.6499984741 89.5499984741 89.5499984741 88.6499984741 89.55 90.45 90.45 89.55 90.4500015259 91.3500015259 91.3500015259 90.4500015259 91.3500030518 92.2500030518 92.2500030518 91.3500030518 92.2499969482 93.1499969482 93.1499969482 92.2499969482 93.1499984741 94.0499984741 94.0499984741 93.1499984741 94.05 94.95 94.95 94.05 94.9500015259 95.8500015259 95.8500015259 94.9500015259 95.8500030518 96.7500030518 96.7500030518 95.8500030518 96.7499969482 97.6499969482 97.6499969482 96.7499969482 97.6499984741 98.5499984741 98.5499984741 97.6499984741 98.55 99.45 99.45 98.55 99.4500015259 100.350001526 100.350001526 99.4500015259 100.350003052 101.250003052 101.250003052 100.350003052 101.249996948 102.149996948 102.149996948 101.249996948 102.149998474 103.049998474 103.049998474 102.149998474 103.05 103.95 103.95 103.05 103.950001526 104.850001526 104.850001526 103.950001526 104.850003052 105.750003052 105.750003052 104.850003052 105.749996948 106.649996948 106.649996948 105.749996948 106.649998474 107.549998474 107.549998474 106.649998474 107.55 108.45 108.45 107.55 108.450001526 109.350001526 109.350001526 108.450001526 109.350003052 110.250003052 110.250003052 109.350003052 110.249996948 111.149996948 111.149996948 110.249996948 111.149998474 112.049998474 112.049998474 111.149998474 112.05 112.95 112.95 112.05 112.950001526 113.850001526 113.850001526 112.950001526 113.850003052 114.750003052 114.750003052 113.850003052 114.749996948 115.649996948 115.649996948 114.749996948 115.649998474 116.549998474 116.549998474 115.649998474 116.55 117.45 117.45 116.55 117.450001526 118.350001526 118.350001526 117.450001526 118.350003052 119.250003052 119.250003052 118.350003052 119.249996948 120.149996948 120.149996948 119.249996948 120.149998474 121.049998474 121.049998474 120.149998474 121.05 121.95 121.95 121.05 121.950001526 122.850001526 122.850001526 121.950001526 122.850003052 123.750003052 123.750003052 122.850003052 123.749996948 124.649996948 124.649996948 123.749996948 124.649998474 125.549998474 125.549998474 124.649998474 125.55 126.45 126.45 125.55 126.450001526 127.350001526 127.350001526 126.450001526 127.350003052 128.250003052 128.250003052 127.350003052 128.249996948 129.149996948 129.149996948 128.249996948 129.150006104 130.050006104 130.050006104 129.150006104 130.05 130.95 130.95 130.05 130.949993896 131.849993896 131.849993896 130.949993896 131.850003052 132.750003052 132.750003052 131.850003052 132.749996948 133.649996948 133.649996948 132.749996948 133.650006104 134.550006104 134.550006104 133.650006104 134.55 135.45 135.45 134.55 135.449993896 136.349993896 136.349993896 135.449993896 136.350003052 137.250003052 137.250003052 136.350003052 137.249996948 138.149996948 138.149996948 137.249996948 138.150006104 139.050006104 139.050006104 138.150006104 139.05 139.95 139.95 139.05 139.949993896 140.849993896 140.849993896 139.949993896 140.850003052 141.750003052 141.750003052 140.850003052 141.749996948 142.649996948 142.649996948 141.749996948 142.650006104 143.550006104 143.550006104 142.650006104 143.55 144.45 144.45 143.55 144.449993896 145.349993896 145.349993896 144.449993896 145.350003052 146.250003052 146.250003052 145.350003052 146.249996948 147.149996948 147.149996948 146.249996948 147.150006104 148.050006104 148.050006104 147.150006104 148.05 148.95 148.95 148.05 148.949993896 149.849993896 149.849993896 148.949993896 149.850003052 150.750003052 150.750003052 149.850003052 150.749996948 151.649996948 151.649996948 150.749996948 151.650006104 152.550006104 152.550006104 151.650006104 152.55 153.45 153.45 152.55 153.449993896 154.349993896 154.349993896 153.449993896 154.350003052 155.250003052 155.250003052 154.350003052 155.249996948 156.149996948 156.149996948 155.249996948 156.150006104 157.050006104 157.050006104 156.150006104 157.05 157.95 157.95 157.05 157.949993896 158.849993896 158.849993896 157.949993896 158.850003052 159.750003052 159.750003052 158.850003052 159.749996948 160.649996948 160.649996948 159.749996948 160.650006104 161.550006104 161.550006104 160.650006104 161.55 162.45 162.45 161.55 162.449993896 163.349993896 163.349993896 162.449993896 163.350003052 164.250003052 164.250003052 163.350003052 164.249996948 165.149996948 165.149996948 164.249996948 165.150006104 166.050006104 166.050006104 165.150006104 166.05 166.95 166.95 166.05 166.949993896 167.849993896 167.849993896 166.949993896 167.850003052 168.750003052 168.750003052 167.850003052 168.749996948 169.649996948 169.649996948 168.749996948 169.650006104 170.550006104 170.550006104 169.650006104 170.55 171.45 171.45 170.55 171.449993896 172.349993896 172.349993896 171.449993896 172.350003052 173.250003052 173.250003052 172.350003052 173.249996948 174.149996948 174.149996948 173.249996948 174.150006104 175.050006104 175.050006104 174.150006104 175.05 175.95 175.95 175.05 175.949993896 176.849993896 176.849993896 175.949993896 176.850003052 177.750003052 177.750003052 176.850003052 177.749996948 178.649996948 178.649996948 177.749996948 178.650006104 179.550006104 179.550006104 178.650006104 179.55 180.45 180.45 179.55 180.449993896 181.349993896 181.349993896 180.449993896 181.350003052 182.250003052 182.250003052 181.350003052 182.249996948 183.149996948 183.149996948 182.249996948 183.150006104 184.050006104 184.050006104 183.150006104 184.05 184.95 184.95 184.05 184.949993896 185.849993896 185.849993896 184.949993896 185.850003052 186.750003052 186.750003052 185.850003052 186.749996948 187.649996948 187.649996948 186.749996948 187.650006104 188.550006104 188.550006104 187.650006104 188.55 189.45 189.45 188.55 189.449993896 190.349993896 190.349993896 189.449993896 190.350003052 191.250003052 191.250003052 190.350003052 191.249996948 192.149996948 192.149996948 191.249996948 192.150006104 193.050006104 193.050006104 192.150006104 193.05 193.95 193.95 193.05 193.949993896 194.849993896 194.849993896 193.949993896 194.850003052 195.750003052 195.750003052 194.850003052 195.749996948 196.649996948 196.649996948 195.749996948 196.650006104 197.550006104 197.550006104 196.650006104 197.55 198.45 198.45 197.55 198.449993896 199.349993896 199.349993896 198.449993896 199.350003052 200.250003052 200.250003052 199.350003052 200.249996948 201.149996948 201.149996948 200.249996948 201.150006104 202.050006104 202.050006104 201.150006104 202.05 202.95 202.95 202.05 202.949993896 203.849993896 203.849993896 202.949993896 203.850003052 204.750003052 204.750003052 203.850003052 204.749996948 205.649996948 205.649996948 204.749996948 205.650006104 206.550006104 206.550006104 205.650006104 206.55 207.45 207.45 206.55 207.449993896 208.349993896 208.349993896 207.449993896 208.350003052 209.250003052 209.250003052 208.350003052 209.249996948 210.149996948 210.149996948 209.249996948 210.150006104 211.050006104 211.050006104 210.150006104 211.05 211.95 211.95 211.05 211.949993896 212.849993896 212.849993896 211.949993896 212.850003052 213.750003052 213.750003052 212.850003052 213.749996948 214.649996948 214.649996948 213.749996948 214.650006104 215.550006104 215.550006104 214.650006104 215.55 216.45 216.45 215.55 216.449993896 217.349993896 217.349993896 216.449993896 217.350003052 218.250003052 218.250003052 217.350003052 218.249996948 219.149996948 219.149996948 218.249996948 219.150006104 220.050006104 220.050006104 219.150006104 220.05 220.95 220.95 220.05 220.949993896 221.849993896 221.849993896 220.949993896 221.850003052 222.750003052 222.750003052 221.850003052 222.749996948 223.649996948 223.649996948 222.749996948 223.650006104 224.550006104 224.550006104 223.650006104 224.55 225.45 225.45 224.55 225.449993896 226.349993896 226.349993896 225.449993896 226.350003052 227.250003052 227.250003052 226.350003052 227.249996948 228.149996948 228.149996948 227.249996948 228.150006104 229.050006104 229.050006104 228.150006104 229.05 229.95 229.95 229.05 229.949993896 230.849993896 230.849993896 229.949993896 230.850003052 231.750003052 231.750003052 230.850003052 231.749996948 232.649996948 232.649996948 231.749996948 232.650006104 233.550006104 233.550006104 232.650006104 233.55 234.45 234.45 233.55 234.449993896 235.349993896 235.349993896 234.449993896 235.350003052 236.250003052 236.250003052 235.350003052 236.249996948 237.149996948 237.149996948 236.249996948 237.150006104 238.050006104 238.050006104 237.150006104 238.05 238.95 238.95 238.05 238.949993896 239.849993896 239.849993896 238.949993896 239.850003052 240.750003052 240.750003052 239.850003052 240.749996948 241.649996948 241.649996948 240.749996948 241.650006104 242.550006104 242.550006104 241.650006104 242.55 243.45 243.45 242.55 243.449993896 244.349993896 244.349993896 243.449993896 244.350003052 245.250003052 245.250003052 244.350003052 245.249996948 246.149996948 246.149996948 245.249996948 246.150006104 247.050006104 247.050006104 246.150006104 247.05 247.95 247.95 247.05 247.949993896 248.849993896 248.849993896 247.949993896 248.850003052 249.750003052 249.750003052 248.850003052 249.749996948 250.649996948 250.649996948 249.749996948 250.650006104 251.550006104 251.550006104 250.650006104 251.55 252.45 252.45 251.55 252.449993896 253.349993896 253.349993896 252.449993896 253.350003052 254.250003052 254.250003052 253.350003052 254.249996948 255.149996948 255.149996948 254.249996948 255.150006104 256.050006104 256.050006104 255.150006104 256.05 256.95 256.95 256.05 256.949993896 257.849993896 257.849993896 256.949993896 257.849987793 258.749987793 258.749987793 257.849987793 258.750012207 259.650012207 259.650012207 258.750012207 259.650006104 260.550006104 260.550006104 259.650006104 260.55 261.45 261.45 260.55 261.449993896 262.349993896 262.349993896 261.449993896 262.349987793 263.249987793 263.249987793 262.349987793 263.250012207 264.150012207 264.150012207 263.250012207 264.150006104 265.050006104 265.050006104 264.150006104 265.05 265.95 265.95 265.05 265.949993896 266.849993896 266.849993896 265.949993896 266.849987793 267.749987793 267.749987793 266.849987793 267.750012207 268.650012207 268.650012207 267.750012207 268.650006104 269.550006104 269.550006104 268.650006104 269.55 270.45 270.45 269.55 270.449993896 271.349993896 271.349993896 270.449993896 271.349987793 272.249987793 272.249987793 271.349987793 272.250012207 273.150012207 273.150012207 272.250012207 273.150006104 274.050006104 274.050006104 273.150006104 274.05 274.95 274.95 274.05 274.949993896 275.849993896 275.849993896 274.949993896 275.849987793 276.749987793 276.749987793 275.849987793 276.750012207 277.650012207 277.650012207 276.750012207 277.650006104 278.550006104 278.550006104 277.650006104 278.55 279.45 279.45 278.55 279.449993896 280.349993896 280.349993896 279.449993896 280.349987793 281.249987793 281.249987793 280.349987793 281.250012207 282.150012207 282.150012207 281.250012207 282.150006104 283.050006104 283.050006104 282.150006104 283.05 283.95 283.95 283.05 283.949993896 284.849993896 284.849993896 283.949993896 284.849987793 285.749987793 285.749987793 284.849987793 285.750012207 286.650012207 286.650012207 285.750012207 286.650006104 287.550006104 287.550006104 286.650006104 287.55 288.45 288.45 287.55 288.449993896 289.349993896 289.349993896 288.449993896 289.349987793 290.249987793 290.249987793 289.349987793 290.250012207 291.150012207 291.150012207 290.250012207 291.150006104 292.050006104 292.050006104 291.150006104 292.05 292.95 292.95 292.05 292.949993896 293.849993896 293.849993896 292.949993896 293.849987793 294.749987793 294.749987793 293.849987793 294.750012207 295.650012207 295.650012207 294.750012207 295.650006104 296.550006104 296.550006104 295.650006104 296.55 297.45 297.45 296.55 297.449993896 298.349993896 298.349993896 297.449993896 298.349987793 299.249987793 299.249987793 298.349987793 299.250012207 300.150012207 300.150012207 299.250012207 300.150006104 301.050006104 301.050006104 300.150006104 301.05 301.95 301.95 301.05 301.949993896 302.849993896 302.849993896 301.949993896 302.849987793 303.749987793 303.749987793 302.849987793 303.750012207 304.650012207 304.650012207 303.750012207 304.650006104 305.550006104 305.550006104 304.650006104 305.55 306.45 306.45 305.55 306.449993896 307.349993896 307.349993896 306.449993896 307.349987793 308.249987793 308.249987793 307.349987793 308.250012207 309.150012207 309.150012207 308.250012207 309.150006104 310.050006104 310.050006104 309.150006104 310.05 310.95 310.95 310.05 310.949993896 311.849993896 311.849993896 310.949993896 311.849987793 312.749987793 312.749987793 311.849987793 312.750012207 313.650012207 313.650012207 312.750012207 313.650006104 314.550006104 314.550006104 313.650006104 314.55 315.45 315.45 314.55 315.449993896 316.349993896 316.349993896 315.449993896 316.349987793 317.249987793 317.249987793 316.349987793 317.250012207 318.150012207 318.150012207 317.250012207 318.150006104 319.050006104 319.050006104 318.150006104 319.05 319.95 319.95 319.05 319.949993896 320.849993896 320.849993896 319.949993896 320.849987793 321.749987793 321.749987793 320.849987793 321.750012207 322.650012207 322.650012207 321.750012207 322.650006104 323.550006104 323.550006104 322.650006104 323.55 324.45 324.45 323.55 324.449993896 325.349993896 325.349993896 324.449993896 325.349987793 326.249987793 326.249987793 325.349987793 326.250012207 327.150012207 327.150012207 326.250012207 327.150006104 328.050006104 328.050006104 327.150006104 328.05 328.95 328.95 328.05 328.949993896 329.849993896 329.849993896 328.949993896 329.849987793 330.749987793 330.749987793 329.849987793 330.750012207 331.650012207 331.650012207 330.750012207 331.650006104 332.550006104 332.550006104 331.650006104 332.55 333.45 333.45 332.55 333.449993896 334.349993896 334.349993896 333.449993896 334.349987793 335.249987793 335.249987793 334.349987793 335.250012207 336.150012207 336.150012207 335.250012207 336.150006104 337.050006104 337.050006104 336.150006104 337.05 337.95 337.95 337.05 337.949993896 338.849993896 338.849993896 337.949993896 338.849987793 339.749987793 339.749987793 338.849987793 339.750012207 340.650012207 340.650012207 339.750012207 340.650006104 341.550006104 341.550006104 340.650006104 341.55 342.45 342.45 341.55 342.449993896 343.349993896 343.349993896 342.449993896 343.349987793 344.249987793 344.249987793 343.349987793 344.250012207 345.150012207 345.150012207 344.250012207 345.150006104 346.050006104 346.050006104 345.150006104 346.05 346.95 346.95 346.05 346.949993896 347.849993896 347.849993896 346.949993896 347.849987793 348.749987793 348.749987793 347.849987793 348.750012207 349.650012207 349.650012207 348.750012207 349.650006104 350.550006104 350.550006104 349.650006104 350.55 351.45 351.45 350.55 351.449993896 352.349993896 352.349993896 351.449993896 352.349987793 353.249987793 353.249987793 352.349987793 353.250012207 354.150012207 354.150012207 353.250012207 354.150006104 355.050006104 355.050006104 354.150006104 355.05 355.95 355.95 355.05 355.949993896 356.849993896 356.849993896 355.949993896 356.849987793 357.749987793 357.749987793 356.849987793 357.750012207 358.650012207 358.650012207 357.750012207 358.650006104 359.550006104 359.550006104 358.650006104 -0.45 0.45 0.45 -0.45 0.449999976158 1.34999997616 1.34999997616 0.449999976158 1.34999995232 2.24999995232 2.24999995232 1.34999995232 2.25000004768 3.15000004768 3.15000004768 2.25000004768 3.14999990463 4.04999990463 4.04999990463 3.14999990463 4.05 4.95 4.95 4.05 4.95000009537 5.85000009537 5.85000009537 4.95000009537 5.85000019073 6.75000019073 6.75000019073 5.85000019073 6.74999980927 7.64999980927 7.64999980927 6.74999980927 7.65000038147 8.55000038147 8.55000038147 7.65000038147 8.55 9.45 9.45 8.55 9.44999961853 10.3499996185 10.3499996185 9.44999961853 10.3500001907 11.2500001907 11.2500001907 10.3500001907 11.2499998093 12.1499998093 12.1499998093 11.2499998093 12.1500003815 13.0500003815 13.0500003815 12.1500003815 13.05 13.95 13.95 13.05 13.9499996185 14.8499996185 14.8499996185 13.9499996185 14.8500001907 15.7500001907 15.7500001907 14.8500001907 15.7500007629 16.6500007629 16.6500007629 15.7500007629 16.6500003815 17.5500003815 17.5500003815 16.6500003815 17.55 18.45 18.45 17.55 18.4499996185 19.3499996185 19.3499996185 18.4499996185 19.3499992371 20.2499992371 20.2499992371 19.3499992371 20.2500007629 21.1500007629 21.1500007629 20.2500007629 21.1500003815 22.0500003815 22.0500003815 21.1500003815 22.05 22.95 22.95 22.05 22.9499996185 23.8499996185 23.8499996185 22.9499996185 23.8499992371 24.7499992371 24.7499992371 23.8499992371 24.7500007629 25.6500007629 25.6500007629 24.7500007629 25.6500003815 26.5500003815 26.5500003815 25.6500003815 26.55 27.45 27.45 26.55 27.4499996185 28.3499996185 28.3499996185 27.4499996185 28.3499992371 29.2499992371 29.2499992371 28.3499992371 29.2500007629 30.1500007629 30.1500007629 29.2500007629 30.1500003815 31.0500003815 31.0500003815 30.1500003815 31.05 31.95 31.95 31.05 31.9500015259 32.8500015259 32.8500015259 31.9500015259 32.8499992371 33.7499992371 33.7499992371 32.8499992371 33.7500007629 34.6500007629 34.6500007629 33.7500007629 34.6499984741 35.5499984741 35.5499984741 34.6499984741 35.55 36.45 36.45 35.55 36.4500015259 37.3500015259 37.3500015259 36.4500015259 37.3499992371 38.2499992371 38.2499992371 37.3499992371 38.2500007629 39.1500007629 39.1500007629 38.2500007629 39.1499984741 40.0499984741 40.0499984741 39.1499984741 40.05 40.95 40.95 40.05 40.9500015259 41.8500015259 41.8500015259 40.9500015259 41.8499992371 42.7499992371 42.7499992371 41.8499992371 42.7500007629 43.6500007629 43.6500007629 42.7500007629 43.6499984741 44.5499984741 44.5499984741 43.6499984741 44.55 45.45 45.45 44.55 45.4500015259 46.3500015259 46.3500015259 45.4500015259 46.3499992371 47.2499992371 47.2499992371 46.3499992371 47.2500007629 48.1500007629 48.1500007629 47.2500007629 48.1499984741 49.0499984741 49.0499984741 48.1499984741 49.05 49.95 49.95 49.05 49.9500015259 50.8500015259 50.8500015259 49.9500015259 50.8499992371 51.7499992371 51.7499992371 50.8499992371 51.7500007629 52.6500007629 52.6500007629 51.7500007629 52.6499984741 53.5499984741 53.5499984741 52.6499984741 53.55 54.45 54.45 53.55 54.4500015259 55.3500015259 55.3500015259 54.4500015259 55.3499992371 56.2499992371 56.2499992371 55.3499992371 56.2500007629 57.1500007629 57.1500007629 56.2500007629 57.1499984741 58.0499984741 58.0499984741 57.1499984741 58.05 58.95 58.95 58.05 58.9500015259 59.8500015259 59.8500015259 58.9500015259 59.8499992371 60.7499992371 60.7499992371 59.8499992371 60.7500007629 61.6500007629 61.6500007629 60.7500007629 61.6499984741 62.5499984741 62.5499984741 61.6499984741 62.55 63.45 63.45 62.55 63.4500015259 64.3500015259 64.3500015259 63.4500015259 64.3500030518 65.2500030518 65.2500030518 64.3500030518 65.2499969482 66.1499969482 66.1499969482 65.2499969482 66.1499984741 67.0499984741 67.0499984741 66.1499984741 67.05 67.95 67.95 67.05 67.9500015259 68.8500015259 68.8500015259 67.9500015259 68.8500030518 69.7500030518 69.7500030518 68.8500030518 69.7499969482 70.6499969482 70.6499969482 69.7499969482 70.6499984741 71.5499984741 71.5499984741 70.6499984741 71.55 72.45 72.45 71.55 72.4500015259 73.3500015259 73.3500015259 72.4500015259 73.3500030518 74.2500030518 74.2500030518 73.3500030518 74.2499969482 75.1499969482 75.1499969482 74.2499969482 75.1499984741 76.0499984741 76.0499984741 75.1499984741 76.05 76.95 76.95 76.05 76.9500015259 77.8500015259 77.8500015259 76.9500015259 77.8500030518 78.7500030518 78.7500030518 77.8500030518 78.7499969482 79.6499969482 79.6499969482 78.7499969482 79.6499984741 80.5499984741 80.5499984741 79.6499984741 80.55 81.45 81.45 80.55 81.4500015259 82.3500015259 82.3500015259 81.4500015259 82.3500030518 83.2500030518 83.2500030518 82.3500030518 83.2499969482 84.1499969482 84.1499969482 83.2499969482 84.1499984741 85.0499984741 85.0499984741 84.1499984741 85.05 85.95 85.95 85.05 85.9500015259 86.8500015259 86.8500015259 85.9500015259 86.8500030518 87.7500030518 87.7500030518 86.8500030518 87.7499969482 88.6499969482 88.6499969482 87.7499969482 88.6499984741 89.5499984741 89.5499984741 88.6499984741 89.55 90.45 90.45 89.55 90.4500015259 91.3500015259 91.3500015259 90.4500015259 91.3500030518 92.2500030518 92.2500030518 91.3500030518 92.2499969482 93.1499969482 93.1499969482 92.2499969482 93.1499984741 94.0499984741 94.0499984741 93.1499984741 94.05 94.95 94.95 94.05 94.9500015259 95.8500015259 95.8500015259 94.9500015259 95.8500030518 96.7500030518 96.7500030518 95.8500030518 96.7499969482 97.6499969482 97.6499969482 96.7499969482 97.6499984741 98.5499984741 98.5499984741 97.6499984741 98.55 99.45 99.45 98.55 99.4500015259 100.350001526 100.350001526 99.4500015259 100.350003052 101.250003052 101.250003052 100.350003052 101.249996948 102.149996948 102.149996948 101.249996948 102.149998474 103.049998474 103.049998474 102.149998474 103.05 103.95 103.95 103.05 103.950001526 104.850001526 104.850001526 103.950001526 104.850003052 105.750003052 105.750003052 104.850003052 105.749996948 106.649996948 106.649996948 105.749996948 106.649998474 107.549998474 107.549998474 106.649998474 107.55 108.45 108.45 107.55 108.450001526 109.350001526 109.350001526 108.450001526 109.350003052 110.250003052 110.250003052 109.350003052 110.249996948 111.149996948 111.149996948 110.249996948 111.149998474 112.049998474 112.049998474 111.149998474 112.05 112.95 112.95 112.05 112.950001526 113.850001526 113.850001526 112.950001526 113.850003052 114.750003052 114.750003052 113.850003052 114.749996948 115.649996948 115.649996948 114.749996948 115.649998474 116.549998474 116.549998474 115.649998474 +116.55 117.45 117.45 116.55 117.450001526 118.350001526 118.350001526 117.450001526 118.350003052 119.250003052 119.250003052 118.350003052 119.249996948 120.149996948 120.149996948 119.249996948 120.149998474 121.049998474 121.049998474 120.149998474 121.05 121.95 121.95 121.05 121.950001526 122.850001526 122.850001526 121.950001526 122.850003052 123.750003052 123.750003052 122.850003052 123.749996948 124.649996948 124.649996948 123.749996948 124.649998474 125.549998474 125.549998474 124.649998474 125.55 126.45 126.45 125.55 126.450001526 127.350001526 127.350001526 126.450001526 127.350003052 128.250003052 128.250003052 127.350003052 128.249996948 129.149996948 129.149996948 128.249996948 129.150006104 130.050006104 130.050006104 129.150006104 130.05 130.95 130.95 130.05 130.949993896 131.849993896 131.849993896 130.949993896 131.850003052 132.750003052 132.750003052 131.850003052 132.749996948 133.649996948 133.649996948 132.749996948 133.650006104 134.550006104 134.550006104 133.650006104 134.55 135.45 135.45 134.55 135.449993896 136.349993896 136.349993896 135.449993896 136.350003052 137.250003052 137.250003052 136.350003052 137.249996948 138.149996948 138.149996948 137.249996948 138.150006104 139.050006104 139.050006104 138.150006104 139.05 139.95 139.95 139.05 139.949993896 140.849993896 140.849993896 139.949993896 140.850003052 141.750003052 141.750003052 140.850003052 141.749996948 142.649996948 142.649996948 141.749996948 142.650006104 143.550006104 143.550006104 142.650006104 143.55 144.45 144.45 143.55 144.449993896 145.349993896 145.349993896 144.449993896 145.350003052 146.250003052 146.250003052 145.350003052 146.249996948 147.149996948 147.149996948 146.249996948 147.150006104 148.050006104 148.050006104 147.150006104 148.05 148.95 148.95 148.05 148.949993896 149.849993896 149.849993896 148.949993896 149.850003052 150.750003052 150.750003052 149.850003052 150.749996948 151.649996948 151.649996948 150.749996948 151.650006104 152.550006104 152.550006104 151.650006104 152.55 153.45 153.45 152.55 153.449993896 154.349993896 154.349993896 153.449993896 154.350003052 155.250003052 155.250003052 154.350003052 155.249996948 156.149996948 156.149996948 155.249996948 156.150006104 157.050006104 157.050006104 156.150006104 157.05 157.95 157.95 157.05 157.949993896 158.849993896 158.849993896 157.949993896 158.850003052 159.750003052 159.750003052 158.850003052 159.749996948 160.649996948 160.649996948 159.749996948 160.650006104 161.550006104 161.550006104 160.650006104 161.55 162.45 162.45 161.55 162.449993896 163.349993896 163.349993896 162.449993896 163.350003052 164.250003052 164.250003052 163.350003052 164.249996948 165.149996948 165.149996948 164.249996948 165.150006104 166.050006104 166.050006104 165.150006104 166.05 166.95 166.95 166.05 166.949993896 167.849993896 167.849993896 166.949993896 167.850003052 168.750003052 168.750003052 167.850003052 168.749996948 169.649996948 169.649996948 168.749996948 169.650006104 170.550006104 170.550006104 169.650006104 170.55 171.45 171.45 170.55 171.449993896 172.349993896 172.349993896 171.449993896 172.350003052 173.250003052 173.250003052 172.350003052 173.249996948 174.149996948 174.149996948 173.249996948 174.150006104 175.050006104 175.050006104 174.150006104 175.05 175.95 175.95 175.05 175.949993896 176.849993896 176.849993896 175.949993896 176.850003052 177.750003052 177.750003052 176.850003052 177.749996948 178.649996948 178.649996948 177.749996948 178.650006104 179.550006104 179.550006104 178.650006104 179.55 180.45 180.45 179.55 180.449993896 181.349993896 181.349993896 180.449993896 181.350003052 182.250003052 182.250003052 181.350003052 182.249996948 183.149996948 183.149996948 182.249996948 183.150006104 184.050006104 184.050006104 183.150006104 184.05 184.95 184.95 184.05 184.949993896 185.849993896 185.849993896 184.949993896 185.850003052 186.750003052 186.750003052 185.850003052 186.749996948 187.649996948 187.649996948 186.749996948 187.650006104 188.550006104 188.550006104 187.650006104 188.55 189.45 189.45 188.55 189.449993896 190.349993896 190.349993896 189.449993896 190.350003052 191.250003052 191.250003052 190.350003052 191.249996948 192.149996948 192.149996948 191.249996948 192.150006104 193.050006104 193.050006104 192.150006104 193.05 193.95 193.95 193.05 193.949993896 194.849993896 194.849993896 193.949993896 194.850003052 195.750003052 195.750003052 194.850003052 195.749996948 196.649996948 196.649996948 195.749996948 196.650006104 197.550006104 197.550006104 196.650006104 197.55 198.45 198.45 197.55 198.449993896 199.349993896 199.349993896 198.449993896 199.350003052 200.250003052 200.250003052 199.350003052 200.249996948 201.149996948 201.149996948 200.249996948 201.150006104 202.050006104 202.050006104 201.150006104 202.05 202.95 202.95 202.05 202.949993896 203.849993896 203.849993896 202.949993896 203.850003052 204.750003052 204.750003052 203.850003052 204.749996948 205.649996948 205.649996948 204.749996948 205.650006104 206.550006104 206.550006104 205.650006104 206.55 207.45 207.45 206.55 207.449993896 208.349993896 208.349993896 207.449993896 208.350003052 209.250003052 209.250003052 208.350003052 209.249996948 210.149996948 210.149996948 209.249996948 210.150006104 211.050006104 211.050006104 210.150006104 211.05 211.95 211.95 211.05 211.949993896 212.849993896 212.849993896 211.949993896 212.850003052 213.750003052 213.750003052 212.850003052 213.749996948 214.649996948 214.649996948 213.749996948 214.650006104 215.550006104 215.550006104 214.650006104 215.55 216.45 216.45 215.55 216.449993896 217.349993896 217.349993896 216.449993896 217.350003052 218.250003052 218.250003052 217.350003052 218.249996948 219.149996948 219.149996948 218.249996948 219.150006104 220.050006104 220.050006104 219.150006104 220.05 220.95 220.95 220.05 220.949993896 221.849993896 221.849993896 220.949993896 221.850003052 222.750003052 222.750003052 221.850003052 222.749996948 223.649996948 223.649996948 222.749996948 223.650006104 224.550006104 224.550006104 223.650006104 224.55 225.45 225.45 224.55 225.449993896 226.349993896 226.349993896 225.449993896 226.350003052 227.250003052 227.250003052 226.350003052 227.249996948 228.149996948 228.149996948 227.249996948 228.150006104 229.050006104 229.050006104 228.150006104 229.05 229.95 229.95 229.05 229.949993896 230.849993896 230.849993896 229.949993896 230.850003052 231.750003052 231.750003052 230.850003052 231.749996948 232.649996948 232.649996948 231.749996948 232.650006104 233.550006104 233.550006104 232.650006104 233.55 234.45 234.45 233.55 234.449993896 235.349993896 235.349993896 234.449993896 235.350003052 236.250003052 236.250003052 235.350003052 236.249996948 237.149996948 237.149996948 236.249996948 237.150006104 238.050006104 238.050006104 237.150006104 238.05 238.95 238.95 238.05 238.949993896 239.849993896 239.849993896 238.949993896 239.850003052 240.750003052 240.750003052 239.850003052 240.749996948 241.649996948 241.649996948 240.749996948 241.650006104 242.550006104 242.550006104 241.650006104 242.55 243.45 243.45 242.55 243.449993896 244.349993896 244.349993896 243.449993896 244.350003052 245.250003052 245.250003052 244.350003052 245.249996948 246.149996948 246.149996948 245.249996948 246.150006104 247.050006104 247.050006104 246.150006104 247.05 247.95 247.95 247.05 247.949993896 248.849993896 248.849993896 247.949993896 248.850003052 249.750003052 249.750003052 248.850003052 249.749996948 250.649996948 250.649996948 249.749996948 250.650006104 251.550006104 251.550006104 250.650006104 251.55 252.45 252.45 251.55 252.449993896 253.349993896 253.349993896 252.449993896 253.350003052 254.250003052 254.250003052 253.350003052 254.249996948 255.149996948 255.149996948 254.249996948 255.150006104 256.050006104 256.050006104 255.150006104 256.05 256.95 256.95 256.05 256.949993896 257.849993896 257.849993896 256.949993896 257.849987793 258.749987793 258.749987793 257.849987793 258.750012207 259.650012207 259.650012207 258.750012207 259.650006104 260.550006104 260.550006104 259.650006104 260.55 261.45 261.45 260.55 261.449993896 262.349993896 262.349993896 261.449993896 262.349987793 263.249987793 263.249987793 262.349987793 263.250012207 264.150012207 264.150012207 263.250012207 264.150006104 265.050006104 265.050006104 264.150006104 265.05 265.95 265.95 265.05 265.949993896 266.849993896 266.849993896 265.949993896 266.849987793 267.749987793 267.749987793 266.849987793 267.750012207 268.650012207 268.650012207 267.750012207 268.650006104 269.550006104 269.550006104 268.650006104 269.55 270.45 270.45 269.55 270.449993896 271.349993896 271.349993896 270.449993896 271.349987793 272.249987793 272.249987793 271.349987793 272.250012207 273.150012207 273.150012207 272.250012207 273.150006104 274.050006104 274.050006104 273.150006104 274.05 274.95 274.95 274.05 274.949993896 275.849993896 275.849993896 274.949993896 275.849987793 276.749987793 276.749987793 275.849987793 276.750012207 277.650012207 277.650012207 276.750012207 277.650006104 278.550006104 278.550006104 277.650006104 278.55 279.45 279.45 278.55 279.449993896 280.349993896 280.349993896 279.449993896 280.349987793 281.249987793 281.249987793 280.349987793 281.250012207 282.150012207 282.150012207 281.250012207 282.150006104 283.050006104 283.050006104 282.150006104 283.05 283.95 283.95 283.05 283.949993896 284.849993896 284.849993896 283.949993896 284.849987793 285.749987793 285.749987793 284.849987793 285.750012207 286.650012207 286.650012207 285.750012207 286.650006104 287.550006104 287.550006104 286.650006104 287.55 288.45 288.45 287.55 288.449993896 289.349993896 289.349993896 288.449993896 289.349987793 290.249987793 290.249987793 289.349987793 290.250012207 291.150012207 291.150012207 290.250012207 291.150006104 292.050006104 292.050006104 291.150006104 292.05 292.95 292.95 292.05 292.949993896 293.849993896 293.849993896 292.949993896 293.849987793 294.749987793 294.749987793 293.849987793 294.750012207 295.650012207 295.650012207 294.750012207 295.650006104 296.550006104 296.550006104 295.650006104 296.55 297.45 297.45 296.55 297.449993896 298.349993896 298.349993896 297.449993896 298.349987793 299.249987793 299.249987793 298.349987793 299.250012207 300.150012207 300.150012207 299.250012207 300.150006104 301.050006104 301.050006104 300.150006104 301.05 301.95 301.95 301.05 301.949993896 302.849993896 302.849993896 301.949993896 302.849987793 303.749987793 303.749987793 302.849987793 303.750012207 304.650012207 304.650012207 303.750012207 304.650006104 305.550006104 305.550006104 304.650006104 305.55 306.45 306.45 305.55 306.449993896 307.349993896 307.349993896 306.449993896 307.349987793 308.249987793 308.249987793 307.349987793 308.250012207 309.150012207 309.150012207 308.250012207 309.150006104 310.050006104 310.050006104 309.150006104 310.05 310.95 310.95 310.05 310.949993896 311.849993896 311.849993896 310.949993896 311.849987793 312.749987793 312.749987793 311.849987793 312.750012207 313.650012207 313.650012207 312.750012207 313.650006104 314.550006104 314.550006104 313.650006104 314.55 315.45 315.45 314.55 315.449993896 316.349993896 316.349993896 315.449993896 316.349987793 317.249987793 317.249987793 316.349987793 317.250012207 318.150012207 318.150012207 317.250012207 318.150006104 319.050006104 319.050006104 318.150006104 319.05 319.95 319.95 319.05 319.949993896 320.849993896 320.849993896 319.949993896 320.849987793 321.749987793 321.749987793 320.849987793 321.750012207 322.650012207 322.650012207 321.750012207 322.650006104 323.550006104 323.550006104 322.650006104 323.55 324.45 324.45 323.55 324.449993896 325.349993896 325.349993896 324.449993896 325.349987793 326.249987793 326.249987793 325.349987793 326.250012207 327.150012207 327.150012207 326.250012207 327.150006104 328.050006104 328.050006104 327.150006104 328.05 328.95 328.95 328.05 328.949993896 329.849993896 329.849993896 328.949993896 329.849987793 330.749987793 330.749987793 329.849987793 330.750012207 331.650012207 331.650012207 330.750012207 331.650006104 332.550006104 332.550006104 331.650006104 332.55 333.45 333.45 332.55 333.449993896 334.349993896 334.349993896 333.449993896 334.349987793 335.249987793 335.249987793 334.349987793 335.250012207 336.150012207 336.150012207 335.250012207 336.150006104 337.050006104 337.050006104 336.150006104 337.05 337.95 337.95 337.05 337.949993896 338.849993896 338.849993896 337.949993896 338.849987793 339.749987793 339.749987793 338.849987793 339.750012207 340.650012207 340.650012207 339.750012207 340.650006104 341.550006104 341.550006104 340.650006104 341.55 342.45 342.45 341.55 342.449993896 343.349993896 343.349993896 342.449993896 343.349987793 344.249987793 344.249987793 343.349987793 344.250012207 345.150012207 345.150012207 344.250012207 345.150006104 346.050006104 346.050006104 345.150006104 346.05 346.95 346.95 346.05 346.949993896 347.849993896 347.849993896 346.949993896 347.849987793 348.749987793 348.749987793 347.849987793 348.750012207 349.650012207 349.650012207 348.750012207 349.650006104 350.550006104 350.550006104 349.650006104 350.55 351.45 351.45 350.55 351.449993896 352.349993896 352.349993896 351.449993896 352.349987793 353.249987793 353.249987793 352.349987793 353.250012207 354.150012207 354.150012207 353.250012207 354.150006104 355.050006104 355.050006104 354.150006104 355.05 355.95 355.95 355.05 355.949993896 356.849993896 356.849993896 355.949993896 356.849987793 357.749987793 357.749987793 356.849987793 357.750012207 358.650012207 358.650012207 357.750012207 358.650006104 359.550006104 359.550006104 358.650006104 -0.45 0.45 0.45 -0.45 0.449999976158 1.34999997616 1.34999997616 0.449999976158 1.34999995232 2.24999995232 2.24999995232 1.34999995232 2.25000004768 3.15000004768 3.15000004768 2.25000004768 3.14999990463 4.04999990463 4.04999990463 3.14999990463 4.05 4.95 4.95 4.05 4.95000009537 5.85000009537 5.85000009537 4.95000009537 5.85000019073 6.75000019073 6.75000019073 5.85000019073 6.74999980927 7.64999980927 7.64999980927 6.74999980927 7.65000038147 8.55000038147 8.55000038147 7.65000038147 8.55 9.45 9.45 8.55 9.44999961853 10.3499996185 10.3499996185 9.44999961853 10.3500001907 11.2500001907 11.2500001907 10.3500001907 11.2499998093 12.1499998093 12.1499998093 11.2499998093 12.1500003815 13.0500003815 13.0500003815 12.1500003815 13.05 13.95 13.95 13.05 13.9499996185 14.8499996185 14.8499996185 13.9499996185 14.8500001907 15.7500001907 15.7500001907 14.8500001907 15.7500007629 16.6500007629 16.6500007629 15.7500007629 16.6500003815 17.5500003815 17.5500003815 16.6500003815 17.55 18.45 18.45 17.55 18.4499996185 19.3499996185 19.3499996185 18.4499996185 19.3499992371 20.2499992371 20.2499992371 19.3499992371 20.2500007629 21.1500007629 21.1500007629 20.2500007629 21.1500003815 22.0500003815 22.0500003815 21.1500003815 22.05 22.95 22.95 22.05 22.9499996185 23.8499996185 23.8499996185 22.9499996185 23.8499992371 24.7499992371 24.7499992371 23.8499992371 24.7500007629 25.6500007629 25.6500007629 24.7500007629 25.6500003815 26.5500003815 26.5500003815 25.6500003815 26.55 27.45 27.45 26.55 27.4499996185 28.3499996185 28.3499996185 27.4499996185 28.3499992371 29.2499992371 29.2499992371 28.3499992371 29.2500007629 30.1500007629 30.1500007629 29.2500007629 30.1500003815 31.0500003815 31.0500003815 30.1500003815 31.05 31.95 31.95 31.05 31.9500015259 32.8500015259 32.8500015259 31.9500015259 32.8499992371 33.7499992371 33.7499992371 32.8499992371 33.7500007629 34.6500007629 34.6500007629 33.7500007629 34.6499984741 35.5499984741 35.5499984741 34.6499984741 35.55 36.45 36.45 35.55 36.4500015259 37.3500015259 37.3500015259 36.4500015259 37.3499992371 38.2499992371 38.2499992371 37.3499992371 38.2500007629 39.1500007629 39.1500007629 38.2500007629 39.1499984741 40.0499984741 40.0499984741 39.1499984741 40.05 40.95 40.95 40.05 40.9500015259 41.8500015259 41.8500015259 40.9500015259 41.8499992371 42.7499992371 42.7499992371 41.8499992371 42.7500007629 43.6500007629 43.6500007629 42.7500007629 43.6499984741 44.5499984741 44.5499984741 43.6499984741 44.55 45.45 45.45 44.55 45.4500015259 46.3500015259 46.3500015259 45.4500015259 46.3499992371 47.2499992371 47.2499992371 46.3499992371 47.2500007629 48.1500007629 48.1500007629 47.2500007629 48.1499984741 49.0499984741 49.0499984741 48.1499984741 49.05 49.95 49.95 49.05 49.9500015259 50.8500015259 50.8500015259 49.9500015259 50.8499992371 51.7499992371 51.7499992371 50.8499992371 51.7500007629 52.6500007629 52.6500007629 51.7500007629 52.6499984741 53.5499984741 53.5499984741 52.6499984741 53.55 54.45 54.45 53.55 54.4500015259 55.3500015259 55.3500015259 54.4500015259 55.3499992371 56.2499992371 56.2499992371 55.3499992371 56.2500007629 57.1500007629 57.1500007629 56.2500007629 57.1499984741 58.0499984741 58.0499984741 57.1499984741 58.05 58.95 58.95 58.05 58.9500015259 59.8500015259 59.8500015259 58.9500015259 59.8499992371 60.7499992371 60.7499992371 59.8499992371 60.7500007629 61.6500007629 61.6500007629 60.7500007629 61.6499984741 62.5499984741 62.5499984741 61.6499984741 62.55 63.45 63.45 62.55 63.4500015259 64.3500015259 64.3500015259 63.4500015259 64.3500030518 65.2500030518 65.2500030518 64.3500030518 65.2499969482 66.1499969482 66.1499969482 65.2499969482 66.1499984741 67.0499984741 67.0499984741 66.1499984741 67.05 67.95 67.95 67.05 67.9500015259 68.8500015259 68.8500015259 67.9500015259 68.8500030518 69.7500030518 69.7500030518 68.8500030518 69.7499969482 70.6499969482 70.6499969482 69.7499969482 70.6499984741 71.5499984741 71.5499984741 70.6499984741 71.55 72.45 72.45 71.55 72.4500015259 73.3500015259 73.3500015259 72.4500015259 73.3500030518 74.2500030518 74.2500030518 73.3500030518 74.2499969482 75.1499969482 75.1499969482 74.2499969482 75.1499984741 76.0499984741 76.0499984741 75.1499984741 76.05 76.95 76.95 76.05 76.9500015259 77.8500015259 77.8500015259 76.9500015259 77.8500030518 78.7500030518 78.7500030518 77.8500030518 78.7499969482 79.6499969482 79.6499969482 78.7499969482 79.6499984741 80.5499984741 80.5499984741 79.6499984741 80.55 81.45 81.45 80.55 81.4500015259 82.3500015259 82.3500015259 81.4500015259 82.3500030518 83.2500030518 83.2500030518 82.3500030518 83.2499969482 84.1499969482 84.1499969482 83.2499969482 84.1499984741 85.0499984741 85.0499984741 84.1499984741 85.05 85.95 85.95 85.05 85.9500015259 86.8500015259 86.8500015259 85.9500015259 86.8500030518 87.7500030518 87.7500030518 86.8500030518 87.7499969482 88.6499969482 88.6499969482 87.7499969482 88.6499984741 89.5499984741 89.5499984741 88.6499984741 89.55 90.45 90.45 89.55 90.4500015259 91.3500015259 91.3500015259 90.4500015259 91.3500030518 92.2500030518 92.2500030518 91.3500030518 92.2499969482 93.1499969482 93.1499969482 92.2499969482 93.1499984741 94.0499984741 94.0499984741 93.1499984741 94.05 94.95 94.95 94.05 94.9500015259 95.8500015259 95.8500015259 94.9500015259 95.8500030518 96.7500030518 96.7500030518 95.8500030518 96.7499969482 97.6499969482 97.6499969482 96.7499969482 97.6499984741 98.5499984741 98.5499984741 97.6499984741 98.55 99.45 99.45 98.55 99.4500015259 100.350001526 100.350001526 99.4500015259 100.350003052 101.250003052 101.250003052 100.350003052 101.249996948 102.149996948 102.149996948 101.249996948 102.149998474 103.049998474 103.049998474 102.149998474 103.05 103.95 103.95 103.05 103.950001526 104.850001526 104.850001526 103.950001526 104.850003052 105.750003052 105.750003052 104.850003052 105.749996948 106.649996948 106.649996948 105.749996948 106.649998474 107.549998474 107.549998474 106.649998474 107.55 108.45 108.45 107.55 108.450001526 109.350001526 109.350001526 108.450001526 109.350003052 110.250003052 110.250003052 109.350003052 110.249996948 111.149996948 111.149996948 110.249996948 111.149998474 112.049998474 112.049998474 111.149998474 112.05 112.95 112.95 112.05 112.950001526 113.850001526 113.850001526 112.950001526 113.850003052 114.750003052 114.750003052 113.850003052 114.749996948 115.649996948 115.649996948 114.749996948 115.649998474 116.549998474 116.549998474 115.649998474 116.55 117.45 117.45 116.55 117.450001526 118.350001526 118.350001526 117.450001526 118.350003052 119.250003052 119.250003052 118.350003052 119.249996948 120.149996948 120.149996948 119.249996948 120.149998474 121.049998474 121.049998474 120.149998474 121.05 121.95 121.95 121.05 121.950001526 122.850001526 122.850001526 121.950001526 122.850003052 123.750003052 123.750003052 122.850003052 123.749996948 124.649996948 124.649996948 123.749996948 124.649998474 125.549998474 125.549998474 124.649998474 125.55 126.45 126.45 125.55 126.450001526 127.350001526 127.350001526 126.450001526 127.350003052 128.250003052 128.250003052 127.350003052 128.249996948 129.149996948 129.149996948 128.249996948 129.150006104 130.050006104 130.050006104 129.150006104 130.05 130.95 130.95 130.05 130.949993896 131.849993896 131.849993896 130.949993896 131.850003052 132.750003052 132.750003052 131.850003052 132.749996948 133.649996948 133.649996948 132.749996948 133.650006104 134.550006104 134.550006104 133.650006104 134.55 135.45 135.45 134.55 135.449993896 136.349993896 136.349993896 135.449993896 136.350003052 137.250003052 137.250003052 136.350003052 137.249996948 138.149996948 138.149996948 137.249996948 138.150006104 139.050006104 139.050006104 138.150006104 139.05 139.95 139.95 139.05 139.949993896 140.849993896 140.849993896 139.949993896 140.850003052 141.750003052 141.750003052 140.850003052 141.749996948 142.649996948 142.649996948 141.749996948 142.650006104 143.550006104 143.550006104 142.650006104 143.55 144.45 144.45 143.55 144.449993896 145.349993896 145.349993896 144.449993896 145.350003052 146.250003052 146.250003052 145.350003052 146.249996948 147.149996948 147.149996948 146.249996948 147.150006104 148.050006104 148.050006104 147.150006104 148.05 148.95 148.95 148.05 148.949993896 149.849993896 149.849993896 148.949993896 149.850003052 150.750003052 150.750003052 149.850003052 150.749996948 151.649996948 151.649996948 150.749996948 151.650006104 152.550006104 152.550006104 151.650006104 152.55 153.45 153.45 152.55 153.449993896 154.349993896 154.349993896 153.449993896 154.350003052 155.250003052 155.250003052 154.350003052 155.249996948 156.149996948 156.149996948 155.249996948 156.150006104 157.050006104 157.050006104 156.150006104 157.05 157.95 157.95 157.05 157.949993896 158.849993896 158.849993896 157.949993896 158.850003052 159.750003052 159.750003052 158.850003052 159.749996948 160.649996948 160.649996948 159.749996948 160.650006104 161.550006104 161.550006104 160.650006104 161.55 162.45 162.45 161.55 162.449993896 163.349993896 163.349993896 162.449993896 163.350003052 164.250003052 164.250003052 163.350003052 164.249996948 165.149996948 165.149996948 164.249996948 165.150006104 166.050006104 166.050006104 165.150006104 166.05 166.95 166.95 166.05 166.949993896 167.849993896 167.849993896 166.949993896 167.850003052 168.750003052 168.750003052 167.850003052 168.749996948 169.649996948 169.649996948 168.749996948 169.650006104 170.550006104 170.550006104 169.650006104 170.55 171.45 171.45 170.55 171.449993896 172.349993896 172.349993896 171.449993896 172.350003052 173.250003052 173.250003052 172.350003052 173.249996948 174.149996948 174.149996948 173.249996948 174.150006104 175.050006104 175.050006104 174.150006104 175.05 175.95 175.95 175.05 175.949993896 176.849993896 176.849993896 175.949993896 176.850003052 177.750003052 177.750003052 176.850003052 177.749996948 178.649996948 178.649996948 177.749996948 178.650006104 179.550006104 179.550006104 178.650006104 179.55 180.45 180.45 179.55 180.449993896 181.349993896 181.349993896 180.449993896 181.350003052 182.250003052 182.250003052 181.350003052 182.249996948 183.149996948 183.149996948 182.249996948 183.150006104 184.050006104 184.050006104 183.150006104 184.05 184.95 184.95 184.05 184.949993896 185.849993896 185.849993896 184.949993896 185.850003052 186.750003052 186.750003052 185.850003052 186.749996948 187.649996948 187.649996948 186.749996948 187.650006104 188.550006104 188.550006104 187.650006104 188.55 189.45 189.45 188.55 189.449993896 190.349993896 190.349993896 189.449993896 190.350003052 191.250003052 191.250003052 190.350003052 191.249996948 192.149996948 192.149996948 191.249996948 192.150006104 193.050006104 193.050006104 192.150006104 193.05 193.95 193.95 193.05 193.949993896 194.849993896 194.849993896 193.949993896 194.850003052 195.750003052 195.750003052 194.850003052 195.749996948 196.649996948 196.649996948 195.749996948 196.650006104 197.550006104 197.550006104 196.650006104 197.55 198.45 198.45 197.55 198.449993896 199.349993896 199.349993896 198.449993896 199.350003052 200.250003052 200.250003052 199.350003052 200.249996948 201.149996948 201.149996948 200.249996948 201.150006104 202.050006104 202.050006104 201.150006104 202.05 202.95 202.95 202.05 202.949993896 203.849993896 203.849993896 202.949993896 203.850003052 204.750003052 204.750003052 203.850003052 204.749996948 205.649996948 205.649996948 204.749996948 205.650006104 206.550006104 206.550006104 205.650006104 +206.55 207.45 207.45 206.55 207.449993896 208.349993896 208.349993896 207.449993896 208.350003052 209.250003052 209.250003052 208.350003052 209.249996948 210.149996948 210.149996948 209.249996948 210.150006104 211.050006104 211.050006104 210.150006104 211.05 211.95 211.95 211.05 211.949993896 212.849993896 212.849993896 211.949993896 212.850003052 213.750003052 213.750003052 212.850003052 213.749996948 214.649996948 214.649996948 213.749996948 214.650006104 215.550006104 215.550006104 214.650006104 215.55 216.45 216.45 215.55 216.449993896 217.349993896 217.349993896 216.449993896 217.350003052 218.250003052 218.250003052 217.350003052 218.249996948 219.149996948 219.149996948 218.249996948 219.150006104 220.050006104 220.050006104 219.150006104 220.05 220.95 220.95 220.05 220.949993896 221.849993896 221.849993896 220.949993896 221.850003052 222.750003052 222.750003052 221.850003052 222.749996948 223.649996948 223.649996948 222.749996948 223.650006104 224.550006104 224.550006104 223.650006104 224.55 225.45 225.45 224.55 225.449993896 226.349993896 226.349993896 225.449993896 226.350003052 227.250003052 227.250003052 226.350003052 227.249996948 228.149996948 228.149996948 227.249996948 228.150006104 229.050006104 229.050006104 228.150006104 229.05 229.95 229.95 229.05 229.949993896 230.849993896 230.849993896 229.949993896 230.850003052 231.750003052 231.750003052 230.850003052 231.749996948 232.649996948 232.649996948 231.749996948 232.650006104 233.550006104 233.550006104 232.650006104 233.55 234.45 234.45 233.55 234.449993896 235.349993896 235.349993896 234.449993896 235.350003052 236.250003052 236.250003052 235.350003052 236.249996948 237.149996948 237.149996948 236.249996948 237.150006104 238.050006104 238.050006104 237.150006104 238.05 238.95 238.95 238.05 238.949993896 239.849993896 239.849993896 238.949993896 239.850003052 240.750003052 240.750003052 239.850003052 240.749996948 241.649996948 241.649996948 240.749996948 241.650006104 242.550006104 242.550006104 241.650006104 242.55 243.45 243.45 242.55 243.449993896 244.349993896 244.349993896 243.449993896 244.350003052 245.250003052 245.250003052 244.350003052 245.249996948 246.149996948 246.149996948 245.249996948 246.150006104 247.050006104 247.050006104 246.150006104 247.05 247.95 247.95 247.05 247.949993896 248.849993896 248.849993896 247.949993896 248.850003052 249.750003052 249.750003052 248.850003052 249.749996948 250.649996948 250.649996948 249.749996948 250.650006104 251.550006104 251.550006104 250.650006104 251.55 252.45 252.45 251.55 252.449993896 253.349993896 253.349993896 252.449993896 253.350003052 254.250003052 254.250003052 253.350003052 254.249996948 255.149996948 255.149996948 254.249996948 255.150006104 256.050006104 256.050006104 255.150006104 256.05 256.95 256.95 256.05 256.949993896 257.849993896 257.849993896 256.949993896 257.849987793 258.749987793 258.749987793 257.849987793 258.750012207 259.650012207 259.650012207 258.750012207 259.650006104 260.550006104 260.550006104 259.650006104 260.55 261.45 261.45 260.55 261.449993896 262.349993896 262.349993896 261.449993896 262.349987793 263.249987793 263.249987793 262.349987793 263.250012207 264.150012207 264.150012207 263.250012207 264.150006104 265.050006104 265.050006104 264.150006104 265.05 265.95 265.95 265.05 265.949993896 266.849993896 266.849993896 265.949993896 266.849987793 267.749987793 267.749987793 266.849987793 267.750012207 268.650012207 268.650012207 267.750012207 268.650006104 269.550006104 269.550006104 268.650006104 269.55 270.45 270.45 269.55 270.449993896 271.349993896 271.349993896 270.449993896 271.349987793 272.249987793 272.249987793 271.349987793 272.250012207 273.150012207 273.150012207 272.250012207 273.150006104 274.050006104 274.050006104 273.150006104 274.05 274.95 274.95 274.05 274.949993896 275.849993896 275.849993896 274.949993896 275.849987793 276.749987793 276.749987793 275.849987793 276.750012207 277.650012207 277.650012207 276.750012207 277.650006104 278.550006104 278.550006104 277.650006104 278.55 279.45 279.45 278.55 279.449993896 280.349993896 280.349993896 279.449993896 280.349987793 281.249987793 281.249987793 280.349987793 281.250012207 282.150012207 282.150012207 281.250012207 282.150006104 283.050006104 283.050006104 282.150006104 283.05 283.95 283.95 283.05 283.949993896 284.849993896 284.849993896 283.949993896 284.849987793 285.749987793 285.749987793 284.849987793 285.750012207 286.650012207 286.650012207 285.750012207 286.650006104 287.550006104 287.550006104 286.650006104 287.55 288.45 288.45 287.55 288.449993896 289.349993896 289.349993896 288.449993896 289.349987793 290.249987793 290.249987793 289.349987793 290.250012207 291.150012207 291.150012207 290.250012207 291.150006104 292.050006104 292.050006104 291.150006104 292.05 292.95 292.95 292.05 292.949993896 293.849993896 293.849993896 292.949993896 293.849987793 294.749987793 294.749987793 293.849987793 294.750012207 295.650012207 295.650012207 294.750012207 295.650006104 296.550006104 296.550006104 295.650006104 296.55 297.45 297.45 296.55 297.449993896 298.349993896 298.349993896 297.449993896 298.349987793 299.249987793 299.249987793 298.349987793 299.250012207 300.150012207 300.150012207 299.250012207 300.150006104 301.050006104 301.050006104 300.150006104 301.05 301.95 301.95 301.05 301.949993896 302.849993896 302.849993896 301.949993896 302.849987793 303.749987793 303.749987793 302.849987793 303.750012207 304.650012207 304.650012207 303.750012207 304.650006104 305.550006104 305.550006104 304.650006104 305.55 306.45 306.45 305.55 306.449993896 307.349993896 307.349993896 306.449993896 307.349987793 308.249987793 308.249987793 307.349987793 308.250012207 309.150012207 309.150012207 308.250012207 309.150006104 310.050006104 310.050006104 309.150006104 310.05 310.95 310.95 310.05 310.949993896 311.849993896 311.849993896 310.949993896 311.849987793 312.749987793 312.749987793 311.849987793 312.750012207 313.650012207 313.650012207 312.750012207 313.650006104 314.550006104 314.550006104 313.650006104 314.55 315.45 315.45 314.55 315.449993896 316.349993896 316.349993896 315.449993896 316.349987793 317.249987793 317.249987793 316.349987793 317.250012207 318.150012207 318.150012207 317.250012207 318.150006104 319.050006104 319.050006104 318.150006104 319.05 319.95 319.95 319.05 319.949993896 320.849993896 320.849993896 319.949993896 320.849987793 321.749987793 321.749987793 320.849987793 321.750012207 322.650012207 322.650012207 321.750012207 322.650006104 323.550006104 323.550006104 322.650006104 323.55 324.45 324.45 323.55 324.449993896 325.349993896 325.349993896 324.449993896 325.349987793 326.249987793 326.249987793 325.349987793 326.250012207 327.150012207 327.150012207 326.250012207 327.150006104 328.050006104 328.050006104 327.150006104 328.05 328.95 328.95 328.05 328.949993896 329.849993896 329.849993896 328.949993896 329.849987793 330.749987793 330.749987793 329.849987793 330.750012207 331.650012207 331.650012207 330.750012207 331.650006104 332.550006104 332.550006104 331.650006104 332.55 333.45 333.45 332.55 333.449993896 334.349993896 334.349993896 333.449993896 334.349987793 335.249987793 335.249987793 334.349987793 335.250012207 336.150012207 336.150012207 335.250012207 336.150006104 337.050006104 337.050006104 336.150006104 337.05 337.95 337.95 337.05 337.949993896 338.849993896 338.849993896 337.949993896 338.849987793 339.749987793 339.749987793 338.849987793 339.750012207 340.650012207 340.650012207 339.750012207 340.650006104 341.550006104 341.550006104 340.650006104 341.55 342.45 342.45 341.55 342.449993896 343.349993896 343.349993896 342.449993896 343.349987793 344.249987793 344.249987793 343.349987793 344.250012207 345.150012207 345.150012207 344.250012207 345.150006104 346.050006104 346.050006104 345.150006104 346.05 346.95 346.95 346.05 346.949993896 347.849993896 347.849993896 346.949993896 347.849987793 348.749987793 348.749987793 347.849987793 348.750012207 349.650012207 349.650012207 348.750012207 349.650006104 350.550006104 350.550006104 349.650006104 350.55 351.45 351.45 350.55 351.449993896 352.349993896 352.349993896 351.449993896 352.349987793 353.249987793 353.249987793 352.349987793 353.250012207 354.150012207 354.150012207 353.250012207 354.150006104 355.050006104 355.050006104 354.150006104 355.05 355.95 355.95 355.05 355.949993896 356.849993896 356.849993896 355.949993896 356.849987793 357.749987793 357.749987793 356.849987793 357.750012207 358.650012207 358.650012207 357.750012207 358.650006104 359.550006104 359.550006104 358.650006104 -0.444444444444 0.444444444444 0.444444444444 -0.444444444444 0.444444451067 1.33333333996 1.33333333996 0.444444451067 1.33333334658 2.22222223547 2.22222223547 1.33333334658 2.2222223017 3.11111119058 3.11111119058 2.2222223017 3.1111111376 4.00000002649 4.00000002649 3.1111111376 4.00000021193 4.88888910082 4.88888910082 4.00000021193 4.88888904783 5.77777793672 5.77777793672 4.88888904783 5.77777788374 6.66666677263 6.66666677263 5.77777788374 6.66666671965 7.55555560854 7.55555560854 6.66666671965 7.55555555556 8.44444444444 8.44444444444 7.55555555556 8.4444448683 9.33333375719 9.33333375719 8.4444448683 9.33333322737 10.2222221163 10.2222221163 9.33333322737 10.2222225401 11.111111429 11.111111429 10.2222225401 11.1111108992 11.9999997881 11.9999997881 11.1111108992 12.0000002119 12.8888891008 12.8888891008 12.0000002119 12.888888571 13.7777774599 13.7777774599 12.888888571 13.7777778837 14.6666667726 14.6666667726 13.7777778837 14.6666662428 15.5555551317 15.5555551317 14.6666662428 15.5555555556 16.4444444444 16.4444444444 15.5555555556 16.4444448683 17.3333337572 17.3333337572 16.4444448683 17.333334181 18.2222230699 18.2222230699 17.333334181 18.2222215864 19.1111104753 19.1111104753 18.2222215864 19.1111108992 19.9999997881 19.9999997881 19.1111108992 20.0000002119 20.8888891008 20.8888891008 20.0000002119 20.8888895247 21.7777784136 21.7777784136 20.8888895247 21.7777769301 22.666665819 22.666665819 21.7777769301 22.6666662428 23.5555551317 23.5555551317 22.6666662428 23.5555555556 24.4444444444 24.4444444444 23.5555555556 24.4444448683 25.3333337572 25.3333337572 24.4444448683 25.333334181 26.2222230699 26.2222230699 25.333334181 26.2222215864 27.1111104753 27.1111104753 26.2222215864 27.1111108992 27.9999997881 27.9999997881 27.1111108992 28.0000002119 28.8888891008 28.8888891008 28.0000002119 28.8888895247 29.7777784136 29.7777784136 28.8888895247 29.7777769301 30.666665819 30.666665819 29.7777769301 30.6666662428 31.5555551317 31.5555551317 30.6666662428 31.5555555556 32.4444444444 32.4444444444 31.5555555556 32.4444448683 33.3333337572 33.3333337572 32.4444448683 33.333334181 34.2222230699 34.2222230699 33.333334181 34.2222234938 35.1111123827 35.1111123827 34.2222234938 35.1111128065 36.0000016954 36.0000016954 35.1111128065 35.9999983046 36.8888871935 36.8888871935 35.9999983046 36.8888876173 37.7777765062 37.7777765062 36.8888876173 37.7777769301 38.666665819 38.666665819 37.7777769301 38.6666662428 39.5555551317 39.5555551317 38.6666662428 39.5555555556 40.4444444444 40.4444444444 39.5555555556 40.4444448683 41.3333337572 41.3333337572 40.4444448683 41.333334181 42.2222230699 42.2222230699 41.333334181 42.2222234938 43.1111123827 43.1111123827 42.2222234938 43.1111128065 44.0000016954 44.0000016954 43.1111128065 43.9999983046 44.8888871935 44.8888871935 43.9999983046 44.8888876173 45.7777765062 45.7777765062 44.8888876173 45.7777769301 46.666665819 46.666665819 45.7777769301 46.6666662428 47.5555551317 47.5555551317 46.6666662428 47.5555555556 48.4444444444 48.4444444444 47.5555555556 48.4444448683 49.3333337572 49.3333337572 48.4444448683 49.333334181 50.2222230699 50.2222230699 49.333334181 50.2222234938 51.1111123827 51.1111123827 50.2222234938 51.1111128065 52.0000016954 52.0000016954 51.1111128065 51.9999983046 52.8888871935 52.8888871935 51.9999983046 52.8888876173 53.7777765062 53.7777765062 52.8888876173 53.7777769301 54.666665819 54.666665819 53.7777769301 54.6666662428 55.5555551317 55.5555551317 54.6666662428 55.5555555556 56.4444444444 56.4444444444 55.5555555556 56.4444448683 57.3333337572 57.3333337572 56.4444448683 57.333334181 58.2222230699 58.2222230699 57.333334181 58.2222234938 59.1111123827 59.1111123827 58.2222234938 59.1111128065 60.0000016954 60.0000016954 59.1111128065 59.9999983046 60.8888871935 60.8888871935 59.9999983046 60.8888876173 61.7777765062 61.7777765062 60.8888876173 61.7777769301 62.666665819 62.666665819 61.7777769301 62.6666662428 63.5555551317 63.5555551317 62.6666662428 63.5555555556 64.4444444444 64.4444444444 63.5555555556 64.4444410536 65.3333299425 65.3333299425 64.4444410536 65.333334181 66.2222230699 66.2222230699 65.333334181 66.2222196791 67.111108568 67.111108568 66.2222196791 67.1111128065 68.0000016954 68.0000016954 67.1111128065 67.9999983046 68.8888871935 68.8888871935 67.9999983046 68.888891432 69.7777803209 69.7777803209 68.888891432 69.7777769301 70.666665819 70.666665819 69.7777769301 70.6666700575 71.5555589464 71.5555589464 70.6666700575 71.5555555556 72.4444444444 72.4444444444 71.5555555556 72.4444410536 73.3333299425 73.3333299425 72.4444410536 73.333334181 74.2222230699 74.2222230699 73.333334181 74.2222196791 75.111108568 75.111108568 74.2222196791 75.1111128065 76.0000016954 76.0000016954 75.1111128065 75.9999983046 76.8888871935 76.8888871935 75.9999983046 76.888891432 77.7777803209 77.7777803209 76.888891432 77.7777769301 78.666665819 78.666665819 77.7777769301 78.6666700575 79.5555589464 79.5555589464 78.6666700575 79.5555555556 80.4444444444 80.4444444444 79.5555555556 80.4444410536 81.3333299425 81.3333299425 80.4444410536 81.333334181 82.2222230699 82.2222230699 81.333334181 82.2222196791 83.111108568 83.111108568 82.2222196791 83.1111128065 84.0000016954 84.0000016954 83.1111128065 83.9999983046 84.8888871935 84.8888871935 83.9999983046 84.888891432 85.7777803209 85.7777803209 84.888891432 85.7777769301 86.666665819 86.666665819 85.7777769301 86.6666700575 87.5555589464 87.5555589464 86.6666700575 87.5555555556 88.4444444444 88.4444444444 87.5555555556 88.4444410536 89.3333299425 89.3333299425 88.4444410536 89.333334181 90.2222230699 90.2222230699 89.333334181 90.2222196791 91.111108568 91.111108568 90.2222196791 91.1111128065 92.0000016954 92.0000016954 91.1111128065 91.9999983046 92.8888871935 92.8888871935 91.9999983046 92.888891432 93.7777803209 93.7777803209 92.888891432 93.7777769301 94.666665819 94.666665819 93.7777769301 94.6666700575 95.5555589464 95.5555589464 94.6666700575 95.5555555556 96.4444444444 96.4444444444 95.5555555556 96.4444410536 97.3333299425 97.3333299425 96.4444410536 97.333334181 98.2222230699 98.2222230699 97.333334181 98.2222196791 99.111108568 99.111108568 98.2222196791 99.1111128065 100.000001695 100.000001695 99.1111128065 99.9999983046 100.888887193 100.888887193 99.9999983046 100.888891432 101.777780321 101.777780321 100.888891432 101.77777693 102.666665819 102.666665819 101.77777693 102.666670058 103.555558946 103.555558946 102.666670058 103.555555556 104.444444444 104.444444444 103.555555556 104.444441054 105.333329942 105.333329942 104.444441054 105.333334181 106.22222307 106.22222307 105.333334181 106.222219679 107.111108568 107.111108568 106.222219679 107.111112807 108.000001695 108.000001695 107.111112807 107.999998305 108.888887193 108.888887193 107.999998305 108.888891432 109.777780321 109.777780321 108.888891432 109.77777693 110.666665819 110.666665819 109.77777693 110.666670058 111.555558946 111.555558946 110.666670058 111.555555556 112.444444444 112.444444444 111.555555556 112.444441054 113.333329942 113.333329942 112.444441054 113.333334181 114.22222307 114.22222307 113.333334181 114.222219679 115.111108568 115.111108568 114.222219679 115.111112807 116.000001695 116.000001695 115.111112807 115.999998305 116.888887193 116.888887193 115.999998305 116.888891432 117.777780321 117.777780321 116.888891432 117.77777693 118.666665819 118.666665819 117.77777693 118.666670058 119.555558946 119.555558946 118.666670058 119.555555556 120.444444444 120.444444444 119.555555556 120.444441054 121.333329942 121.333329942 120.444441054 121.333334181 122.22222307 122.22222307 121.333334181 122.222219679 123.111108568 123.111108568 122.222219679 123.111112807 124.000001695 124.000001695 123.111112807 123.999998305 124.888887193 124.888887193 123.999998305 124.888891432 125.777780321 125.777780321 124.888891432 125.77777693 126.666665819 126.666665819 125.77777693 126.666670058 127.555558946 127.555558946 126.666670058 127.555555556 128.444444444 128.444444444 127.555555556 128.444441054 129.333329942 129.333329942 128.444441054 129.333326552 130.222215441 130.222215441 129.333326552 130.222227308 131.111116197 131.111116197 130.222227308 131.111112807 132.000001695 132.000001695 131.111112807 131.999998305 132.888887193 132.888887193 131.999998305 132.888883803 133.777772692 133.777772692 132.888883803 133.777784559 134.666673448 134.666673448 133.777784559 134.666670058 135.555558946 135.555558946 134.666670058 135.555555556 136.444444444 136.444444444 135.555555556 136.444441054 137.333329942 137.333329942 136.444441054 137.333326552 138.222215441 138.222215441 137.333326552 138.222227308 139.111116197 139.111116197 138.222227308 139.111112807 140.000001695 140.000001695 139.111112807 139.999998305 140.888887193 140.888887193 139.999998305 140.888883803 141.777772692 141.777772692 140.888883803 141.777784559 142.666673448 142.666673448 141.777784559 142.666670058 143.555558946 143.555558946 142.666670058 143.555555556 144.444444444 144.444444444 143.555555556 144.444441054 145.333329942 145.333329942 144.444441054 145.333326552 146.222215441 146.222215441 145.333326552 146.222227308 147.111116197 147.111116197 146.222227308 147.111112807 148.000001695 148.000001695 147.111112807 147.999998305 148.888887193 148.888887193 147.999998305 148.888883803 149.777772692 149.777772692 148.888883803 149.777784559 150.666673448 150.666673448 149.777784559 150.666670058 151.555558946 151.555558946 150.666670058 151.555555556 152.444444444 152.444444444 151.555555556 152.444441054 153.333329942 153.333329942 152.444441054 153.333326552 154.222215441 154.222215441 153.333326552 154.222227308 155.111116197 155.111116197 154.222227308 155.111112807 156.000001695 156.000001695 155.111112807 155.999998305 156.888887193 156.888887193 155.999998305 156.888883803 157.777772692 157.777772692 156.888883803 157.777784559 158.666673448 158.666673448 157.777784559 158.666670058 159.555558946 159.555558946 158.666670058 159.555555556 160.444444444 160.444444444 159.555555556 160.444441054 161.333329942 161.333329942 160.444441054 161.333326552 162.222215441 162.222215441 161.333326552 162.222227308 163.111116197 163.111116197 162.222227308 163.111112807 164.000001695 164.000001695 163.111112807 163.999998305 164.888887193 164.888887193 163.999998305 164.888883803 165.777772692 165.777772692 164.888883803 165.777784559 166.666673448 166.666673448 165.777784559 166.666670058 167.555558946 167.555558946 166.666670058 167.555555556 168.444444444 168.444444444 167.555555556 168.444441054 169.333329942 169.333329942 168.444441054 169.333326552 170.222215441 170.222215441 169.333326552 170.222227308 171.111116197 171.111116197 170.222227308 171.111112807 172.000001695 172.000001695 171.111112807 171.999998305 172.888887193 172.888887193 171.999998305 172.888883803 173.777772692 173.777772692 172.888883803 173.777784559 174.666673448 174.666673448 173.777784559 174.666670058 175.555558946 175.555558946 174.666670058 175.555555556 176.444444444 176.444444444 175.555555556 176.444441054 177.333329942 177.333329942 176.444441054 177.333326552 178.222215441 178.222215441 177.333326552 178.222227308 179.111116197 179.111116197 178.222227308 179.111112807 180.000001695 180.000001695 179.111112807 179.999998305 180.888887193 180.888887193 179.999998305 180.888883803 181.777772692 181.777772692 180.888883803 181.777784559 182.666673448 182.666673448 181.777784559 182.666670058 183.555558946 183.555558946 182.666670058 183.555555556 184.444444444 184.444444444 183.555555556 184.444441054 185.333329942 185.333329942 184.444441054 185.333326552 186.222215441 186.222215441 185.333326552 186.222227308 187.111116197 187.111116197 186.222227308 187.111112807 188.000001695 188.000001695 187.111112807 187.999998305 188.888887193 188.888887193 187.999998305 188.888883803 189.777772692 189.777772692 188.888883803 189.777784559 190.666673448 190.666673448 189.777784559 190.666670058 191.555558946 191.555558946 190.666670058 191.555555556 192.444444444 192.444444444 191.555555556 192.444441054 193.333329942 193.333329942 192.444441054 193.333326552 194.222215441 194.222215441 193.333326552 194.222227308 195.111116197 195.111116197 194.222227308 195.111112807 196.000001695 196.000001695 195.111112807 195.999998305 196.888887193 196.888887193 195.999998305 196.888883803 197.777772692 197.777772692 196.888883803 197.777784559 198.666673448 198.666673448 197.777784559 198.666670058 199.555558946 199.555558946 198.666670058 199.555555556 200.444444444 200.444444444 199.555555556 200.444441054 201.333329942 201.333329942 200.444441054 201.333326552 202.222215441 202.222215441 201.333326552 202.222227308 203.111116197 203.111116197 202.222227308 203.111112807 204.000001695 204.000001695 203.111112807 203.999998305 204.888887193 204.888887193 203.999998305 204.888883803 205.777772692 205.777772692 204.888883803 205.777784559 206.666673448 206.666673448 205.777784559 206.666670058 207.555558946 207.555558946 206.666670058 207.555555556 208.444444444 208.444444444 207.555555556 208.444441054 209.333329942 209.333329942 208.444441054 209.333326552 210.222215441 210.222215441 209.333326552 210.222227308 211.111116197 211.111116197 210.222227308 211.111112807 212.000001695 212.000001695 211.111112807 211.999998305 212.888887193 212.888887193 211.999998305 212.888883803 213.777772692 213.777772692 212.888883803 213.777784559 214.666673448 214.666673448 213.777784559 214.666670058 215.555558946 215.555558946 214.666670058 215.555555556 216.444444444 216.444444444 215.555555556 216.444441054 217.333329942 217.333329942 216.444441054 217.333326552 218.222215441 218.222215441 217.333326552 218.222227308 219.111116197 219.111116197 218.222227308 219.111112807 220.000001695 220.000001695 219.111112807 219.999998305 220.888887193 220.888887193 219.999998305 220.888883803 221.777772692 221.777772692 220.888883803 221.777784559 222.666673448 222.666673448 221.777784559 222.666670058 223.555558946 223.555558946 222.666670058 223.555555556 224.444444444 224.444444444 223.555555556 224.444441054 225.333329942 225.333329942 224.444441054 225.333326552 226.222215441 226.222215441 225.333326552 226.222227308 227.111116197 227.111116197 226.222227308 227.111112807 228.000001695 228.000001695 227.111112807 227.999998305 228.888887193 228.888887193 227.999998305 228.888883803 229.777772692 229.777772692 228.888883803 229.777784559 230.666673448 230.666673448 229.777784559 230.666670058 231.555558946 231.555558946 230.666670058 231.555555556 232.444444444 232.444444444 231.555555556 232.444441054 233.333329942 233.333329942 232.444441054 233.333326552 234.222215441 234.222215441 233.333326552 234.222227308 235.111116197 235.111116197 234.222227308 235.111112807 236.000001695 236.000001695 235.111112807 235.999998305 236.888887193 236.888887193 235.999998305 236.888883803 237.777772692 237.777772692 236.888883803 237.777784559 238.666673448 238.666673448 237.777784559 238.666670058 239.555558946 239.555558946 238.666670058 239.555555556 240.444444444 240.444444444 239.555555556 240.444441054 241.333329942 241.333329942 240.444441054 241.333326552 242.222215441 242.222215441 241.333326552 242.222227308 243.111116197 243.111116197 242.222227308 243.111112807 244.000001695 244.000001695 243.111112807 243.999998305 244.888887193 244.888887193 243.999998305 244.888883803 245.777772692 245.777772692 244.888883803 245.777784559 246.666673448 246.666673448 245.777784559 246.666670058 247.555558946 247.555558946 246.666670058 247.555555556 248.444444444 248.444444444 247.555555556 248.444441054 249.333329942 249.333329942 248.444441054 249.333326552 250.222215441 250.222215441 249.333326552 250.222227308 251.111116197 251.111116197 250.222227308 251.111112807 252.000001695 252.000001695 251.111112807 251.999998305 252.888887193 252.888887193 251.999998305 252.888883803 253.777772692 253.777772692 252.888883803 253.777784559 254.666673448 254.666673448 253.777784559 254.666670058 255.555558946 255.555558946 254.666670058 255.555555556 256.444444444 256.444444444 255.555555556 256.444441054 257.333329942 257.333329942 256.444441054 257.333326552 258.222215441 258.222215441 257.333326552 258.22221205 259.111100939 259.111100939 258.22221205 259.111097548 259.999986437 259.999986437 259.111097548 260.000013563 260.888902452 260.888902452 260.000013563 260.888899061 261.77778795 261.77778795 260.888899061 261.777784559 262.666673448 262.666673448 261.777784559 262.666670058 263.555558946 263.555558946 262.666670058 263.555555556 264.444444444 264.444444444 263.555555556 264.444441054 265.333329942 265.333329942 264.444441054 265.333326552 266.222215441 266.222215441 265.333326552 266.22221205 267.111100939 267.111100939 266.22221205 267.111097548 267.999986437 267.999986437 267.111097548 268.000013563 268.888902452 268.888902452 268.000013563 268.888899061 269.77778795 269.77778795 268.888899061 269.777784559 270.666673448 270.666673448 269.777784559 270.666670058 271.555558946 271.555558946 270.666670058 271.555555556 272.444444444 272.444444444 271.555555556 272.444441054 273.333329942 273.333329942 272.444441054 273.333326552 274.222215441 274.222215441 273.333326552 274.22221205 275.111100939 275.111100939 274.22221205 275.111097548 275.999986437 275.999986437 275.111097548 276.000013563 276.888902452 276.888902452 276.000013563 276.888899061 277.77778795 277.77778795 276.888899061 277.777784559 278.666673448 278.666673448 277.777784559 278.666670058 279.555558946 279.555558946 278.666670058 279.555555556 280.444444444 280.444444444 279.555555556 280.444441054 281.333329942 281.333329942 280.444441054 281.333326552 282.222215441 282.222215441 281.333326552 282.22221205 283.111100939 283.111100939 282.22221205 283.111097548 283.999986437 283.999986437 283.111097548 284.000013563 284.888902452 284.888902452 284.000013563 284.888899061 285.77778795 285.77778795 284.888899061 285.777784559 286.666673448 286.666673448 285.777784559 286.666670058 287.555558946 287.555558946 286.666670058 287.555555556 288.444444444 288.444444444 287.555555556 288.444441054 289.333329942 289.333329942 288.444441054 289.333326552 290.222215441 290.222215441 289.333326552 290.22221205 291.111100939 291.111100939 290.22221205 291.111097548 291.999986437 291.999986437 291.111097548 292.000013563 292.888902452 292.888902452 292.000013563 +292.888899061 293.77778795 293.77778795 292.888899061 293.777784559 294.666673448 294.666673448 293.777784559 294.666670058 295.555558946 295.555558946 294.666670058 295.555555556 296.444444444 296.444444444 295.555555556 296.444441054 297.333329942 297.333329942 296.444441054 297.333326552 298.222215441 298.222215441 297.333326552 298.22221205 299.111100939 299.111100939 298.22221205 299.111097548 299.999986437 299.999986437 299.111097548 300.000013563 300.888902452 300.888902452 300.000013563 300.888899061 301.77778795 301.77778795 300.888899061 301.777784559 302.666673448 302.666673448 301.777784559 302.666670058 303.555558946 303.555558946 302.666670058 303.555555556 304.444444444 304.444444444 303.555555556 304.444441054 305.333329942 305.333329942 304.444441054 305.333326552 306.222215441 306.222215441 305.333326552 306.22221205 307.111100939 307.111100939 306.22221205 307.111097548 307.999986437 307.999986437 307.111097548 308.000013563 308.888902452 308.888902452 308.000013563 308.888899061 309.77778795 309.77778795 308.888899061 309.777784559 310.666673448 310.666673448 309.777784559 310.666670058 311.555558946 311.555558946 310.666670058 311.555555556 312.444444444 312.444444444 311.555555556 312.444441054 313.333329942 313.333329942 312.444441054 313.333326552 314.222215441 314.222215441 313.333326552 314.22221205 315.111100939 315.111100939 314.22221205 315.111097548 315.999986437 315.999986437 315.111097548 316.000013563 316.888902452 316.888902452 316.000013563 316.888899061 317.77778795 317.77778795 316.888899061 317.777784559 318.666673448 318.666673448 317.777784559 318.666670058 319.555558946 319.555558946 318.666670058 319.555555556 320.444444444 320.444444444 319.555555556 320.444441054 321.333329942 321.333329942 320.444441054 321.333326552 322.222215441 322.222215441 321.333326552 322.22221205 323.111100939 323.111100939 322.22221205 323.111097548 323.999986437 323.999986437 323.111097548 324.000013563 324.888902452 324.888902452 324.000013563 324.888899061 325.77778795 325.77778795 324.888899061 325.777784559 326.666673448 326.666673448 325.777784559 326.666670058 327.555558946 327.555558946 326.666670058 327.555555556 328.444444444 328.444444444 327.555555556 328.444441054 329.333329942 329.333329942 328.444441054 329.333326552 330.222215441 330.222215441 329.333326552 330.22221205 331.111100939 331.111100939 330.22221205 331.111097548 331.999986437 331.999986437 331.111097548 332.000013563 332.888902452 332.888902452 332.000013563 332.888899061 333.77778795 333.77778795 332.888899061 333.777784559 334.666673448 334.666673448 333.777784559 334.666670058 335.555558946 335.555558946 334.666670058 335.555555556 336.444444444 336.444444444 335.555555556 336.444441054 337.333329942 337.333329942 336.444441054 337.333326552 338.222215441 338.222215441 337.333326552 338.22221205 339.111100939 339.111100939 338.22221205 339.111097548 339.999986437 339.999986437 339.111097548 340.000013563 340.888902452 340.888902452 340.000013563 340.888899061 341.77778795 341.77778795 340.888899061 341.777784559 342.666673448 342.666673448 341.777784559 342.666670058 343.555558946 343.555558946 342.666670058 343.555555556 344.444444444 344.444444444 343.555555556 344.444441054 345.333329942 345.333329942 344.444441054 345.333326552 346.222215441 346.222215441 345.333326552 346.22221205 347.111100939 347.111100939 346.22221205 347.111097548 347.999986437 347.999986437 347.111097548 348.000013563 348.888902452 348.888902452 348.000013563 348.888899061 349.77778795 349.77778795 348.888899061 349.777784559 350.666673448 350.666673448 349.777784559 350.666670058 351.555558946 351.555558946 350.666670058 351.555555556 352.444444444 352.444444444 351.555555556 352.444441054 353.333329942 353.333329942 352.444441054 353.333326552 354.222215441 354.222215441 353.333326552 354.22221205 355.111100939 355.111100939 354.22221205 355.111097548 355.999986437 355.999986437 355.111097548 356.000013563 356.888902452 356.888902452 356.000013563 356.888899061 357.77778795 357.77778795 356.888899061 357.777784559 358.666673448 358.666673448 357.777784559 358.666670058 359.555558946 359.555558946 358.666670058 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 +353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 +50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 +107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 +163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 +220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 +277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.4 0.4 0.4 -0.4 0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 +320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.4 0.4 0.4 -0.4 0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.4 0.4 0.4 -0.4 +0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.4 0.4 0.4 -0.4 0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 +40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.4 0.4 0.4 -0.4 0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 +80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 +112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 +127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 +142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 +157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 +172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 +187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 +202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 +217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 +232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 +247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.37037037037 0.37037037037 0.37037037037 -0.37037037037 0.370370346087 1.11111108683 1.11111108683 0.370370346087 1.11111106254 1.85185180329 1.85185180329 1.11111106254 1.85185195782 2.59259269856 2.59259269856 1.85185195782 2.59259249546 3.3333332362 3.3333332362 2.59259249546 3.33333327152 4.07407401226 4.07407401226 3.33333327152 4.074074286 4.81481502674 4.81481502674 4.074074286 4.81481458523 5.55555532597 5.55555532597 4.81481458523 5.55555536129 6.29629610203 6.29629610203 5.55555536129 6.29629613735 7.03703687809 7.03703687809 6.29629613735 7.03703691341 7.77777765415 7.77777765415 7.03703691341 7.77777816631 8.51851890705 8.51851890705 7.77777816631 8.51851894237 9.25925968311 9.25925968311 8.51851894237 9.25925971844 10.0000004592 10.0000004592 9.25925971844 9.99999954082 10.7407402816 10.7407402816 9.99999954082 10.7407403169 11.4814810576 11.4814810576 10.7407403169 11.4814810929 12.2222218337 12.2222218337 11.4814810929 12.222221869 12.9629626098 12.9629626098 12.222221869 12.9629626451 13.7037033858 13.7037033858 12.9629626451 13.7037034211 14.4444441619 14.4444441619 13.7037034211 14.4444441972 15.1851849379 15.1851849379 14.4444441972 15.1851849733 15.925925714 15.925925714 15.1851849733 15.925926703 16.6666674437 16.6666674437 15.925926703 16.6666665254 17.4074072661 17.4074072661 16.6666665254 17.4074082551 18.1481489959 18.1481489959 17.4074082551 18.1481480775 18.8888888182 18.8888888182 18.1481480775 18.8888898072 19.629630548 19.629630548 18.8888898072 19.6296296296 20.3703703704 20.3703703704 19.6296296296 20.370369452 21.1111101928 21.1111101928 20.370369452 21.1111111818 21.8518519225 21.8518519225 21.1111111818 21.8518510041 22.5925917449 22.5925917449 21.8518510041 22.5925927339 23.3333334746 23.3333334746 22.5925927339 23.3333325563 24.074073297 24.074073297 23.3333325563 24.074074286 24.8148150267 24.8148150267 24.074074286 24.8148141084 25.5555548491 25.5555548491 24.8148141084 25.5555558381 26.2962965789 26.2962965789 25.5555558381 26.2962956605 27.0370364013 27.0370364013 26.2962956605 27.0370373902 27.777778131 27.777778131 27.0370373902 27.7777772126 28.5185179534 28.5185179534 27.7777772126 28.5185189424 29.2592596831 29.2592596831 28.5185189424 29.2592587648 29.9999995055 29.9999995055 29.2592587648 30.0000004945 30.7407412352 30.7407412352 30.0000004945 30.7407403169 31.4814810576 31.4814810576 30.7407403169 31.4814820466 32.2222227874 32.2222227874 31.4814820466 32.2222237764 32.9629645171 32.9629645171 32.2222237764 32.9629616914 33.7037024321 33.7037024321 32.9629616914 33.7037034211 34.4444441619 34.4444441619 33.7037034211 34.4444451509 35.1851858916 35.1851858916 34.4444451509 35.1851868806 35.9259276213 35.9259276213 35.1851868806 35.9259247956 36.6666655364 36.6666655364 35.9259247956 36.6666665254 37.4074072661 37.4074072661 36.6666665254 37.4074082551 38.1481489959 38.1481489959 37.4074082551 38.1481499849 38.8888907256 38.8888907256 38.1481499849 38.8888878999 39.6296286406 39.6296286406 38.8888878999 39.6296296296 40.3703703704 40.3703703704 39.6296296296 40.3703713594 41.1111121001 41.1111121001 40.3703713594 41.1111092744 41.8518500151 41.8518500151 41.1111092744 41.8518510041 42.5925917449 42.5925917449 41.8518510041 42.5925927339 43.3333334746 43.3333334746 42.5925927339 43.3333344636 44.0740752044 44.0740752044 43.3333344636 44.0740723787 44.8148131194 44.8148131194 44.0740723787 44.8148141084 45.5555548491 45.5555548491 44.8148141084 45.5555558381 46.2962965789 46.2962965789 45.5555558381 46.2962975679 47.0370383086 47.0370383086 46.2962975679 47.0370354829 47.7777762236 47.7777762236 47.0370354829 47.7777772126 48.5185179534 48.5185179534 47.7777772126 48.5185189424 49.2592596831 49.2592596831 48.5185189424 49.2592606721 50.0000014129 50.0000014129 49.2592606721 49.9999985871 50.7407393279 50.7407393279 49.9999985871 50.7407403169 51.4814810576 51.4814810576 50.7407403169 51.4814820466 52.2222227874 52.2222227874 51.4814820466 52.2222237764 52.9629645171 52.9629645171 52.2222237764 52.9629616914 53.7037024321 53.7037024321 52.9629616914 53.7037034211 54.4444441619 54.4444441619 53.7037034211 54.4444451509 55.1851858916 55.1851858916 54.4444451509 55.1851868806 55.9259276213 55.9259276213 55.1851868806 55.9259247956 56.6666655364 56.6666655364 55.9259247956 56.6666665254 57.4074072661 57.4074072661 56.6666665254 57.4074082551 58.1481489959 58.1481489959 57.4074082551 58.1481499849 58.8888907256 58.8888907256 58.1481499849 58.8888878999 59.6296286406 59.6296286406 58.8888878999 59.6296296296 60.3703703704 60.3703703704 59.6296296296 60.3703713594 61.1111121001 61.1111121001 60.3703713594 61.1111092744 61.8518500151 61.8518500151 61.1111092744 61.8518510041 62.5925917449 62.5925917449 61.8518510041 62.5925927339 63.3333334746 63.3333334746 62.5925927339 63.3333344636 64.0740752044 64.0740752044 63.3333344636 64.0740723787 64.8148131194 64.8148131194 64.0740723787 64.8148179231 65.5555586638 65.5555586638 64.8148179231 65.5555558381 66.2962965789 66.2962965789 65.5555558381 66.2962937532 67.0370344939 67.0370344939 66.2962937532 67.0370392976 67.7777800383 67.7777800383 67.0370392976 67.7777772126 68.5185179534 68.5185179534 67.7777772126 68.5185151277 69.2592558684 69.2592558684 68.5185151277 69.2592606721 70.0000014129 70.0000014129 69.2592606721 69.9999985871 70.7407393279 70.7407393279 69.9999985871 70.7407441316 71.4814848723 71.4814848723 70.7407441316 71.4814820466 72.2222227874 72.2222227874 71.4814820466 72.2222199617 72.9629607024 72.9629607024 72.2222199617 72.9629655061 73.7037062468 73.7037062468 72.9629655061 73.7037034211 74.4444441619 74.4444441619 73.7037034211 74.4444413362 75.1851820769 75.1851820769 74.4444413362 75.1851868806 75.9259276213 75.9259276213 75.1851868806 75.9259247956 76.6666655364 76.6666655364 75.9259247956 76.6666703401 77.4074110808 77.4074110808 76.6666703401 77.4074082551 78.1481489959 78.1481489959 77.4074082551 78.1481461702 78.8888869109 78.8888869109 78.1481461702 78.8888917146 79.6296324553 79.6296324553 78.8888917146 79.6296296296 80.3703703704 80.3703703704 79.6296296296 80.3703675447 81.1111082854 81.1111082854 80.3703675447 81.1111130891 81.8518538298 81.8518538298 81.1111130891 81.8518510041 82.5925917449 82.5925917449 81.8518510041 82.5925889192 83.3333296599 83.3333296599 82.5925889192 83.3333344636 84.0740752044 84.0740752044 83.3333344636 84.0740723787 84.8148131194 84.8148131194 84.0740723787 84.8148179231 85.5555586638 85.5555586638 84.8148179231 85.5555558381 86.2962965789 86.2962965789 85.5555558381 86.2962937532 87.0370344939 87.0370344939 86.2962937532 87.0370392976 87.7777800383 87.7777800383 87.0370392976 87.7777772126 88.5185179534 88.5185179534 87.7777772126 88.5185151277 89.2592558684 89.2592558684 88.5185151277 89.2592606721 90.0000014129 90.0000014129 89.2592606721 89.9999985871 90.7407393279 90.7407393279 89.9999985871 90.7407441316 91.4814848723 91.4814848723 90.7407441316 91.4814820466 92.2222227874 92.2222227874 91.4814820466 92.2222199617 92.9629607024 92.9629607024 92.2222199617 92.9629655061 93.7037062468 93.7037062468 92.9629655061 93.7037034211 94.4444441619 94.4444441619 93.7037034211 94.4444413362 95.1851820769 95.1851820769 94.4444413362 95.1851868806 95.9259276213 95.9259276213 95.1851868806 95.9259247956 96.6666655364 96.6666655364 95.9259247956 96.6666703401 97.4074110808 97.4074110808 96.6666703401 97.4074082551 98.1481489959 98.1481489959 97.4074082551 98.1481461702 98.8888869109 98.8888869109 98.1481461702 98.8888917146 99.6296324553 99.6296324553 98.8888917146 99.6296296296 100.37037037 100.37037037 99.6296296296 100.370367545 101.111108285 101.111108285 100.370367545 101.111113089 101.85185383 101.85185383 101.111113089 101.851851004 102.592591745 102.592591745 101.851851004 102.592588919 103.33332966 103.33332966 102.592588919 103.333334464 104.074075204 104.074075204 103.333334464 104.074072379 104.814813119 104.814813119 104.074072379 104.814817923 105.555558664 105.555558664 104.814817923 105.555555838 106.296296579 106.296296579 105.555555838 106.296293753 107.037034494 107.037034494 106.296293753 107.037039298 107.777780038 107.777780038 107.037039298 107.777777213 108.518517953 108.518517953 107.777777213 108.518515128 109.259255868 109.259255868 108.518515128 109.259260672 110.000001413 110.000001413 109.259260672 109.999998587 110.740739328 110.740739328 109.999998587 110.740744132 111.481484872 111.481484872 110.740744132 111.481482047 112.222222787 112.222222787 111.481482047 112.222219962 112.962960702 112.962960702 112.222219962 112.962965506 113.703706247 113.703706247 112.962965506 113.703703421 114.444444162 114.444444162 113.703703421 114.444441336 115.185182077 115.185182077 114.444441336 115.185186881 115.925927621 115.925927621 115.185186881 115.925924796 116.666665536 116.666665536 115.925924796 116.66667034 117.407411081 117.407411081 116.66667034 117.407408255 118.148148996 118.148148996 117.407408255 118.14814617 118.888886911 118.888886911 118.14814617 118.888891715 119.629632455 119.629632455 118.888891715 119.62962963 120.37037037 120.37037037 119.62962963 120.370367545 121.111108285 121.111108285 120.370367545 121.111113089 121.85185383 121.85185383 121.111113089 121.851851004 122.592591745 122.592591745 121.851851004 122.592588919 123.33332966 123.33332966 122.592588919 123.333334464 124.074075204 124.074075204 123.333334464 124.074072379 124.814813119 124.814813119 124.074072379 124.814817923 125.555558664 125.555558664 124.814817923 125.555555838 126.296296579 126.296296579 125.555555838 126.296293753 127.037034494 127.037034494 126.296293753 127.037039298 127.777780038 127.777780038 127.037039298 127.777777213 128.518517953 128.518517953 127.777777213 128.518515128 129.259255868 129.259255868 128.518515128 129.259253043 129.999993783 129.999993783 129.259253043 130.000006217 130.740746957 130.740746957 130.000006217 130.740744132 131.481484872 131.481484872 130.740744132 131.481482047 132.222222787 132.222222787 131.481482047 132.222219962 132.962960702 132.962960702 132.222219962 132.962957877 133.703698617 133.703698617 132.962957877 133.703711051 134.444451791 134.444451791 133.703711051 134.444448966 135.185189706 135.185189706 134.444448966 135.185186881 135.925927621 135.925927621 135.185186881 135.925924796 136.666665536 136.666665536 135.925924796 136.666662711 137.407403451 137.407403451 136.666662711 137.407400626 138.148141366 138.148141366 137.407400626 138.1481538 138.88889454 138.88889454 138.1481538 138.888891715 139.629632455 139.629632455 138.888891715 139.62962963 140.37037037 140.37037037 139.62962963 140.370367545 141.111108285 141.111108285 140.370367545 141.11110546 141.8518462 141.8518462 141.11110546 141.851858634 142.592599374 142.592599374 141.851858634 142.592596549 143.333337289 143.333337289 142.592596549 143.333334464 144.074075204 144.074075204 143.333334464 144.074072379 144.814813119 144.814813119 144.074072379 144.814810294 145.555551034 145.555551034 144.814810294 145.555548209 146.296288949 146.296288949 145.555548209 146.296301383 147.037042123 147.037042123 146.296301383 147.037039298 147.777780038 147.777780038 147.037039298 147.777777213 148.518517953 148.518517953 147.777777213 148.518515128 149.259255868 149.259255868 148.518515128 149.259253043 149.999993783 149.999993783 149.259253043 150.000006217 150.740746957 150.740746957 150.000006217 150.740744132 151.481484872 151.481484872 150.740744132 151.481482047 152.222222787 152.222222787 151.481482047 152.222219962 152.962960702 152.962960702 152.222219962 152.962957877 153.703698617 153.703698617 152.962957877 153.703711051 154.444451791 154.444451791 153.703711051 154.444448966 155.185189706 155.185189706 154.444448966 155.185186881 155.925927621 155.925927621 155.185186881 155.925924796 156.666665536 156.666665536 155.925924796 156.666662711 157.407403451 157.407403451 156.666662711 157.407400626 158.148141366 158.148141366 157.407400626 158.1481538 158.88889454 158.88889454 158.1481538 158.888891715 159.629632455 159.629632455 158.888891715 159.62962963 160.37037037 160.37037037 159.62962963 160.370367545 161.111108285 161.111108285 160.370367545 161.11110546 161.8518462 161.8518462 161.11110546 161.851858634 162.592599374 162.592599374 161.851858634 162.592596549 163.333337289 163.333337289 162.592596549 163.333334464 164.074075204 164.074075204 163.333334464 164.074072379 164.814813119 164.814813119 164.074072379 164.814810294 165.555551034 165.555551034 164.814810294 165.555548209 166.296288949 166.296288949 165.555548209 166.296301383 167.037042123 167.037042123 166.296301383 167.037039298 167.777780038 167.777780038 167.037039298 167.777777213 168.518517953 168.518517953 167.777777213 168.518515128 169.259255868 169.259255868 168.518515128 169.259253043 169.999993783 169.999993783 169.259253043 170.000006217 170.740746957 170.740746957 170.000006217 170.740744132 171.481484872 171.481484872 170.740744132 171.481482047 172.222222787 172.222222787 171.481482047 172.222219962 172.962960702 172.962960702 172.222219962 172.962957877 173.703698617 173.703698617 172.962957877 173.703711051 174.444451791 174.444451791 173.703711051 174.444448966 175.185189706 175.185189706 174.444448966 175.185186881 175.925927621 175.925927621 175.185186881 175.925924796 176.666665536 176.666665536 175.925924796 176.666662711 177.407403451 177.407403451 176.666662711 177.407400626 178.148141366 178.148141366 177.407400626 178.1481538 178.88889454 178.88889454 178.1481538 178.888891715 179.629632455 179.629632455 178.888891715 179.62962963 180.37037037 180.37037037 179.62962963 180.370367545 181.111108285 181.111108285 180.370367545 181.11110546 181.8518462 181.8518462 181.11110546 181.851858634 182.592599374 182.592599374 181.851858634 182.592596549 183.333337289 183.333337289 182.592596549 183.333334464 184.074075204 184.074075204 183.333334464 184.074072379 184.814813119 184.814813119 184.074072379 184.814810294 185.555551034 185.555551034 184.814810294 185.555548209 186.296288949 186.296288949 185.555548209 186.296301383 187.037042123 187.037042123 186.296301383 187.037039298 187.777780038 187.777780038 187.037039298 187.777777213 188.518517953 188.518517953 187.777777213 188.518515128 189.259255868 189.259255868 188.518515128 189.259253043 189.999993783 189.999993783 189.259253043 190.000006217 190.740746957 190.740746957 190.000006217 190.740744132 191.481484872 191.481484872 190.740744132 191.481482047 192.222222787 192.222222787 191.481482047 192.222219962 192.962960702 192.962960702 192.222219962 192.962957877 193.703698617 193.703698617 192.962957877 193.703711051 194.444451791 194.444451791 193.703711051 194.444448966 195.185189706 195.185189706 194.444448966 195.185186881 195.925927621 195.925927621 195.185186881 195.925924796 196.666665536 196.666665536 195.925924796 196.666662711 197.407403451 197.407403451 196.666662711 197.407400626 198.148141366 198.148141366 197.407400626 198.1481538 198.88889454 198.88889454 198.1481538 198.888891715 199.629632455 199.629632455 198.888891715 199.62962963 200.37037037 200.37037037 199.62962963 200.370367545 201.111108285 201.111108285 200.370367545 201.11110546 201.8518462 201.8518462 201.11110546 201.851858634 202.592599374 202.592599374 201.851858634 202.592596549 203.333337289 203.333337289 202.592596549 203.333334464 204.074075204 204.074075204 203.333334464 204.074072379 204.814813119 204.814813119 204.074072379 204.814810294 205.555551034 205.555551034 204.814810294 205.555548209 206.296288949 206.296288949 205.555548209 206.296301383 207.037042123 207.037042123 206.296301383 207.037039298 207.777780038 207.777780038 207.037039298 207.777777213 208.518517953 208.518517953 207.777777213 208.518515128 209.259255868 209.259255868 208.518515128 209.259253043 209.999993783 209.999993783 209.259253043 210.000006217 210.740746957 210.740746957 210.000006217 210.740744132 211.481484872 211.481484872 210.740744132 211.481482047 212.222222787 212.222222787 211.481482047 212.222219962 212.962960702 212.962960702 212.222219962 212.962957877 213.703698617 213.703698617 212.962957877 213.703711051 214.444451791 214.444451791 213.703711051 214.444448966 215.185189706 215.185189706 214.444448966 215.185186881 215.925927621 215.925927621 215.185186881 215.925924796 216.666665536 216.666665536 215.925924796 216.666662711 217.407403451 217.407403451 216.666662711 217.407400626 218.148141366 218.148141366 217.407400626 218.1481538 218.88889454 218.88889454 218.1481538 218.888891715 219.629632455 219.629632455 218.888891715 219.62962963 220.37037037 220.37037037 219.62962963 220.370367545 221.111108285 221.111108285 220.370367545 221.11110546 221.8518462 221.8518462 221.11110546 221.851858634 222.592599374 222.592599374 221.851858634 222.592596549 223.333337289 223.333337289 222.592596549 223.333334464 224.074075204 224.074075204 223.333334464 224.074072379 224.814813119 224.814813119 224.074072379 224.814810294 225.555551034 225.555551034 224.814810294 225.555548209 226.296288949 226.296288949 225.555548209 226.296301383 227.037042123 227.037042123 226.296301383 227.037039298 227.777780038 227.777780038 227.037039298 227.777777213 228.518517953 228.518517953 227.777777213 228.518515128 229.259255868 229.259255868 228.518515128 229.259253043 229.999993783 229.999993783 229.259253043 230.000006217 230.740746957 230.740746957 230.000006217 230.740744132 231.481484872 231.481484872 230.740744132 231.481482047 232.222222787 232.222222787 231.481482047 232.222219962 232.962960702 232.962960702 232.222219962 232.962957877 233.703698617 233.703698617 232.962957877 233.703711051 234.444451791 234.444451791 233.703711051 234.444448966 235.185189706 235.185189706 234.444448966 235.185186881 235.925927621 235.925927621 235.185186881 235.925924796 236.666665536 236.666665536 235.925924796 236.666662711 237.407403451 237.407403451 236.666662711 237.407400626 238.148141366 238.148141366 237.407400626 238.1481538 238.88889454 238.88889454 238.1481538 238.888891715 239.629632455 239.629632455 238.888891715 239.62962963 240.37037037 240.37037037 239.62962963 240.370367545 241.111108285 241.111108285 240.370367545 241.11110546 241.8518462 241.8518462 241.11110546 241.851858634 242.592599374 242.592599374 241.851858634 242.592596549 243.333337289 243.333337289 242.592596549 243.333334464 244.074075204 244.074075204 243.333334464 244.074072379 244.814813119 244.814813119 244.074072379 244.814810294 245.555551034 245.555551034 244.814810294 245.555548209 246.296288949 246.296288949 245.555548209 246.296301383 247.037042123 247.037042123 246.296301383 247.037039298 247.777780038 247.777780038 247.037039298 247.777777213 248.518517953 248.518517953 247.777777213 248.518515128 249.259255868 249.259255868 248.518515128 249.259253043 249.999993783 249.999993783 249.259253043 250.000006217 250.740746957 250.740746957 250.000006217 250.740744132 251.481484872 251.481484872 250.740744132 251.481482047 252.222222787 252.222222787 251.481482047 252.222219962 252.962960702 252.962960702 252.222219962 252.962957877 253.703698617 253.703698617 252.962957877 253.703711051 254.444451791 254.444451791 253.703711051 254.444448966 255.185189706 255.185189706 254.444448966 255.185186881 255.925927621 255.925927621 255.185186881 255.925924796 256.666665536 256.666665536 255.925924796 256.666677969 257.40741871 257.40741871 256.666677969 257.407400626 258.148141366 258.148141366 257.407400626 258.1481538 258.88889454 258.88889454 258.1481538 258.888876456 259.629617197 259.629617197 258.888876456 +259.62962963 260.37037037 260.37037037 259.62962963 260.370382803 261.111123544 261.111123544 260.370382803 261.11110546 261.8518462 261.8518462 261.11110546 261.851858634 262.592599374 262.592599374 261.851858634 262.59258129 263.333322031 263.333322031 262.59258129 263.333334464 264.074075204 264.074075204 263.333334464 264.074087637 264.814828378 264.814828378 264.074087637 264.814810294 265.555551034 265.555551034 264.814810294 265.555563468 266.296304208 266.296304208 265.555563468 266.296286124 267.037026865 267.037026865 266.296286124 267.037039298 267.777780038 267.777780038 267.037039298 267.777792471 268.518533212 268.518533212 267.777792471 268.518515128 269.259255868 269.259255868 268.518515128 269.259268302 270.000009042 270.000009042 269.259268302 269.999990958 270.740731698 270.740731698 269.999990958 270.740744132 271.481484872 271.481484872 270.740744132 271.481466788 272.222207529 272.222207529 271.481466788 272.222219962 272.962960702 272.962960702 272.222219962 272.962973135 273.703713876 273.703713876 272.962973135 273.703695792 274.444436532 274.444436532 273.703695792 274.444448966 275.185189706 275.185189706 274.444448966 275.185171622 275.925912363 275.925912363 275.185171622 275.925924796 276.666665536 276.666665536 275.925924796 276.666677969 277.40741871 277.40741871 276.666677969 277.407400626 278.148141366 278.148141366 277.407400626 278.1481538 278.88889454 278.88889454 278.1481538 278.888876456 279.629617197 279.629617197 278.888876456 279.62962963 280.37037037 280.37037037 279.62962963 280.370382803 281.111123544 281.111123544 280.370382803 281.11110546 281.8518462 281.8518462 281.11110546 281.851858634 282.592599374 282.592599374 281.851858634 282.59258129 283.333322031 283.333322031 282.59258129 283.333334464 284.074075204 284.074075204 283.333334464 284.074087637 284.814828378 284.814828378 284.074087637 284.814810294 285.555551034 285.555551034 284.814810294 285.555563468 286.296304208 286.296304208 285.555563468 286.296286124 287.037026865 287.037026865 286.296286124 287.037039298 287.777780038 287.777780038 287.037039298 287.777792471 288.518533212 288.518533212 287.777792471 288.518515128 289.259255868 289.259255868 288.518515128 289.259268302 290.000009042 290.000009042 289.259268302 289.999990958 290.740731698 290.740731698 289.999990958 290.740744132 291.481484872 291.481484872 290.740744132 291.481466788 292.222207529 292.222207529 291.481466788 292.222219962 292.962960702 292.962960702 292.222219962 292.962973135 293.703713876 293.703713876 292.962973135 293.703695792 294.444436532 294.444436532 293.703695792 294.444448966 295.185189706 295.185189706 294.444448966 295.185171622 295.925912363 295.925912363 295.185171622 295.925924796 296.666665536 296.666665536 295.925924796 296.666677969 297.40741871 297.40741871 296.666677969 297.407400626 298.148141366 298.148141366 297.407400626 298.1481538 298.88889454 298.88889454 298.1481538 298.888876456 299.629617197 299.629617197 298.888876456 299.62962963 300.37037037 300.37037037 299.62962963 300.370382803 301.111123544 301.111123544 300.370382803 301.11110546 301.8518462 301.8518462 301.11110546 301.851858634 302.592599374 302.592599374 301.851858634 302.59258129 303.333322031 303.333322031 302.59258129 303.333334464 304.074075204 304.074075204 303.333334464 304.074087637 304.814828378 304.814828378 304.074087637 304.814810294 305.555551034 305.555551034 304.814810294 305.555563468 306.296304208 306.296304208 305.555563468 306.296286124 307.037026865 307.037026865 306.296286124 307.037039298 307.777780038 307.777780038 307.037039298 307.777792471 308.518533212 308.518533212 307.777792471 308.518515128 309.259255868 309.259255868 308.518515128 309.259268302 310.000009042 310.000009042 309.259268302 309.999990958 310.740731698 310.740731698 309.999990958 310.740744132 311.481484872 311.481484872 310.740744132 311.481466788 312.222207529 312.222207529 311.481466788 312.222219962 312.962960702 312.962960702 312.222219962 312.962973135 313.703713876 313.703713876 312.962973135 313.703695792 314.444436532 314.444436532 313.703695792 314.444448966 315.185189706 315.185189706 314.444448966 315.185171622 315.925912363 315.925912363 315.185171622 315.925924796 316.666665536 316.666665536 315.925924796 316.666677969 317.40741871 317.40741871 316.666677969 317.407400626 318.148141366 318.148141366 317.407400626 318.1481538 318.88889454 318.88889454 318.1481538 318.888876456 319.629617197 319.629617197 318.888876456 319.62962963 320.37037037 320.37037037 319.62962963 320.370382803 321.111123544 321.111123544 320.370382803 321.11110546 321.8518462 321.8518462 321.11110546 321.851858634 322.592599374 322.592599374 321.851858634 322.59258129 323.333322031 323.333322031 322.59258129 323.333334464 324.074075204 324.074075204 323.333334464 324.074087637 324.814828378 324.814828378 324.074087637 324.814810294 325.555551034 325.555551034 324.814810294 325.555563468 326.296304208 326.296304208 325.555563468 326.296286124 327.037026865 327.037026865 326.296286124 327.037039298 327.777780038 327.777780038 327.037039298 327.777792471 328.518533212 328.518533212 327.777792471 328.518515128 329.259255868 329.259255868 328.518515128 329.259268302 330.000009042 330.000009042 329.259268302 329.999990958 330.740731698 330.740731698 329.999990958 330.740744132 331.481484872 331.481484872 330.740744132 331.481466788 332.222207529 332.222207529 331.481466788 332.222219962 332.962960702 332.962960702 332.222219962 332.962973135 333.703713876 333.703713876 332.962973135 333.703695792 334.444436532 334.444436532 333.703695792 334.444448966 335.185189706 335.185189706 334.444448966 335.185171622 335.925912363 335.925912363 335.185171622 335.925924796 336.666665536 336.666665536 335.925924796 336.666677969 337.40741871 337.40741871 336.666677969 337.407400626 338.148141366 338.148141366 337.407400626 338.1481538 338.88889454 338.88889454 338.1481538 338.888876456 339.629617197 339.629617197 338.888876456 339.62962963 340.37037037 340.37037037 339.62962963 340.370382803 341.111123544 341.111123544 340.370382803 341.11110546 341.8518462 341.8518462 341.11110546 341.851858634 342.592599374 342.592599374 341.851858634 342.59258129 343.333322031 343.333322031 342.59258129 343.333334464 344.074075204 344.074075204 343.333334464 344.074087637 344.814828378 344.814828378 344.074087637 344.814810294 345.555551034 345.555551034 344.814810294 345.555563468 346.296304208 346.296304208 345.555563468 346.296286124 347.037026865 347.037026865 346.296286124 347.037039298 347.777780038 347.777780038 347.037039298 347.777792471 348.518533212 348.518533212 347.777792471 348.518515128 349.259255868 349.259255868 348.518515128 349.259268302 350.000009042 350.000009042 349.259268302 349.999990958 350.740731698 350.740731698 349.999990958 350.740744132 351.481484872 351.481484872 350.740744132 351.481466788 352.222207529 352.222207529 351.481466788 352.222219962 352.962960702 352.962960702 352.222219962 352.962973135 353.703713876 353.703713876 352.962973135 353.703695792 354.444436532 354.444436532 353.703695792 354.444448966 355.185189706 355.185189706 354.444448966 355.185171622 355.925912363 355.925912363 355.185171622 355.925924796 356.666665536 356.666665536 355.925924796 356.666677969 357.40741871 357.40741871 356.666677969 357.407400626 358.148141366 358.148141366 357.407400626 358.1481538 358.88889454 358.88889454 358.1481538 358.888876456 359.629617197 359.629617197 358.888876456 -0.37037037037 0.37037037037 0.37037037037 -0.37037037037 0.370370346087 1.11111108683 1.11111108683 0.370370346087 1.11111106254 1.85185180329 1.85185180329 1.11111106254 1.85185195782 2.59259269856 2.59259269856 1.85185195782 2.59259249546 3.3333332362 3.3333332362 2.59259249546 3.33333327152 4.07407401226 4.07407401226 3.33333327152 4.074074286 4.81481502674 4.81481502674 4.074074286 4.81481458523 5.55555532597 5.55555532597 4.81481458523 5.55555536129 6.29629610203 6.29629610203 5.55555536129 6.29629613735 7.03703687809 7.03703687809 6.29629613735 7.03703691341 7.77777765415 7.77777765415 7.03703691341 7.77777816631 8.51851890705 8.51851890705 7.77777816631 8.51851894237 9.25925968311 9.25925968311 8.51851894237 9.25925971844 10.0000004592 10.0000004592 9.25925971844 9.99999954082 10.7407402816 10.7407402816 9.99999954082 10.7407403169 11.4814810576 11.4814810576 10.7407403169 11.4814810929 12.2222218337 12.2222218337 11.4814810929 12.222221869 12.9629626098 12.9629626098 12.222221869 12.9629626451 13.7037033858 13.7037033858 12.9629626451 13.7037034211 14.4444441619 14.4444441619 13.7037034211 14.4444441972 15.1851849379 15.1851849379 14.4444441972 15.1851849733 15.925925714 15.925925714 15.1851849733 15.925926703 16.6666674437 16.6666674437 15.925926703 16.6666665254 17.4074072661 17.4074072661 16.6666665254 17.4074082551 18.1481489959 18.1481489959 17.4074082551 18.1481480775 18.8888888182 18.8888888182 18.1481480775 18.8888898072 19.629630548 19.629630548 18.8888898072 19.6296296296 20.3703703704 20.3703703704 19.6296296296 20.370369452 21.1111101928 21.1111101928 20.370369452 21.1111111818 21.8518519225 21.8518519225 21.1111111818 21.8518510041 22.5925917449 22.5925917449 21.8518510041 22.5925927339 23.3333334746 23.3333334746 22.5925927339 23.3333325563 24.074073297 24.074073297 23.3333325563 24.074074286 24.8148150267 24.8148150267 24.074074286 24.8148141084 25.5555548491 25.5555548491 24.8148141084 25.5555558381 26.2962965789 26.2962965789 25.5555558381 26.2962956605 27.0370364013 27.0370364013 26.2962956605 27.0370373902 27.777778131 27.777778131 27.0370373902 27.7777772126 28.5185179534 28.5185179534 27.7777772126 28.5185189424 29.2592596831 29.2592596831 28.5185189424 29.2592587648 29.9999995055 29.9999995055 29.2592587648 30.0000004945 30.7407412352 30.7407412352 30.0000004945 30.7407403169 31.4814810576 31.4814810576 30.7407403169 31.4814820466 32.2222227874 32.2222227874 31.4814820466 32.2222237764 32.9629645171 32.9629645171 32.2222237764 32.9629616914 33.7037024321 33.7037024321 32.9629616914 33.7037034211 34.4444441619 34.4444441619 33.7037034211 34.4444451509 35.1851858916 35.1851858916 34.4444451509 35.1851868806 35.9259276213 35.9259276213 35.1851868806 35.9259247956 36.6666655364 36.6666655364 35.9259247956 36.6666665254 37.4074072661 37.4074072661 36.6666665254 37.4074082551 38.1481489959 38.1481489959 37.4074082551 38.1481499849 38.8888907256 38.8888907256 38.1481499849 38.8888878999 39.6296286406 39.6296286406 38.8888878999 39.6296296296 40.3703703704 40.3703703704 39.6296296296 40.3703713594 41.1111121001 41.1111121001 40.3703713594 41.1111092744 41.8518500151 41.8518500151 41.1111092744 41.8518510041 42.5925917449 42.5925917449 41.8518510041 42.5925927339 43.3333334746 43.3333334746 42.5925927339 43.3333344636 44.0740752044 44.0740752044 43.3333344636 44.0740723787 44.8148131194 44.8148131194 44.0740723787 44.8148141084 45.5555548491 45.5555548491 44.8148141084 45.5555558381 46.2962965789 46.2962965789 45.5555558381 46.2962975679 47.0370383086 47.0370383086 46.2962975679 47.0370354829 47.7777762236 47.7777762236 47.0370354829 47.7777772126 48.5185179534 48.5185179534 47.7777772126 48.5185189424 49.2592596831 49.2592596831 48.5185189424 49.2592606721 50.0000014129 50.0000014129 49.2592606721 49.9999985871 50.7407393279 50.7407393279 49.9999985871 50.7407403169 51.4814810576 51.4814810576 50.7407403169 51.4814820466 52.2222227874 52.2222227874 51.4814820466 52.2222237764 52.9629645171 52.9629645171 52.2222237764 52.9629616914 53.7037024321 53.7037024321 52.9629616914 53.7037034211 54.4444441619 54.4444441619 53.7037034211 54.4444451509 55.1851858916 55.1851858916 54.4444451509 55.1851868806 55.9259276213 55.9259276213 55.1851868806 55.9259247956 56.6666655364 56.6666655364 55.9259247956 56.6666665254 57.4074072661 57.4074072661 56.6666665254 57.4074082551 58.1481489959 58.1481489959 57.4074082551 58.1481499849 58.8888907256 58.8888907256 58.1481499849 58.8888878999 59.6296286406 59.6296286406 58.8888878999 59.6296296296 60.3703703704 60.3703703704 59.6296296296 60.3703713594 61.1111121001 61.1111121001 60.3703713594 61.1111092744 61.8518500151 61.8518500151 61.1111092744 61.8518510041 62.5925917449 62.5925917449 61.8518510041 62.5925927339 63.3333334746 63.3333334746 62.5925927339 63.3333344636 64.0740752044 64.0740752044 63.3333344636 64.0740723787 64.8148131194 64.8148131194 64.0740723787 64.8148179231 65.5555586638 65.5555586638 64.8148179231 65.5555558381 66.2962965789 66.2962965789 65.5555558381 66.2962937532 67.0370344939 67.0370344939 66.2962937532 67.0370392976 67.7777800383 67.7777800383 67.0370392976 67.7777772126 68.5185179534 68.5185179534 67.7777772126 68.5185151277 69.2592558684 69.2592558684 68.5185151277 69.2592606721 70.0000014129 70.0000014129 69.2592606721 69.9999985871 70.7407393279 70.7407393279 69.9999985871 70.7407441316 71.4814848723 71.4814848723 70.7407441316 71.4814820466 72.2222227874 72.2222227874 71.4814820466 72.2222199617 72.9629607024 72.9629607024 72.2222199617 72.9629655061 73.7037062468 73.7037062468 72.9629655061 73.7037034211 74.4444441619 74.4444441619 73.7037034211 74.4444413362 75.1851820769 75.1851820769 74.4444413362 75.1851868806 75.9259276213 75.9259276213 75.1851868806 75.9259247956 76.6666655364 76.6666655364 75.9259247956 76.6666703401 77.4074110808 77.4074110808 76.6666703401 77.4074082551 78.1481489959 78.1481489959 77.4074082551 78.1481461702 78.8888869109 78.8888869109 78.1481461702 78.8888917146 79.6296324553 79.6296324553 78.8888917146 79.6296296296 80.3703703704 80.3703703704 79.6296296296 80.3703675447 81.1111082854 81.1111082854 80.3703675447 81.1111130891 81.8518538298 81.8518538298 81.1111130891 81.8518510041 82.5925917449 82.5925917449 81.8518510041 82.5925889192 83.3333296599 83.3333296599 82.5925889192 83.3333344636 84.0740752044 84.0740752044 83.3333344636 84.0740723787 84.8148131194 84.8148131194 84.0740723787 84.8148179231 85.5555586638 85.5555586638 84.8148179231 85.5555558381 86.2962965789 86.2962965789 85.5555558381 86.2962937532 87.0370344939 87.0370344939 86.2962937532 87.0370392976 87.7777800383 87.7777800383 87.0370392976 87.7777772126 88.5185179534 88.5185179534 87.7777772126 88.5185151277 89.2592558684 89.2592558684 88.5185151277 89.2592606721 90.0000014129 90.0000014129 89.2592606721 89.9999985871 90.7407393279 90.7407393279 89.9999985871 90.7407441316 91.4814848723 91.4814848723 90.7407441316 91.4814820466 92.2222227874 92.2222227874 91.4814820466 92.2222199617 92.9629607024 92.9629607024 92.2222199617 92.9629655061 93.7037062468 93.7037062468 92.9629655061 93.7037034211 94.4444441619 94.4444441619 93.7037034211 94.4444413362 95.1851820769 95.1851820769 94.4444413362 95.1851868806 95.9259276213 95.9259276213 95.1851868806 95.9259247956 96.6666655364 96.6666655364 95.9259247956 96.6666703401 97.4074110808 97.4074110808 96.6666703401 97.4074082551 98.1481489959 98.1481489959 97.4074082551 98.1481461702 98.8888869109 98.8888869109 98.1481461702 98.8888917146 99.6296324553 99.6296324553 98.8888917146 99.6296296296 100.37037037 100.37037037 99.6296296296 100.370367545 101.111108285 101.111108285 100.370367545 101.111113089 101.85185383 101.85185383 101.111113089 101.851851004 102.592591745 102.592591745 101.851851004 102.592588919 103.33332966 103.33332966 102.592588919 103.333334464 104.074075204 104.074075204 103.333334464 104.074072379 104.814813119 104.814813119 104.074072379 104.814817923 105.555558664 105.555558664 104.814817923 105.555555838 106.296296579 106.296296579 105.555555838 106.296293753 107.037034494 107.037034494 106.296293753 107.037039298 107.777780038 107.777780038 107.037039298 107.777777213 108.518517953 108.518517953 107.777777213 108.518515128 109.259255868 109.259255868 108.518515128 109.259260672 110.000001413 110.000001413 109.259260672 109.999998587 110.740739328 110.740739328 109.999998587 110.740744132 111.481484872 111.481484872 110.740744132 111.481482047 112.222222787 112.222222787 111.481482047 112.222219962 112.962960702 112.962960702 112.222219962 112.962965506 113.703706247 113.703706247 112.962965506 113.703703421 114.444444162 114.444444162 113.703703421 114.444441336 115.185182077 115.185182077 114.444441336 115.185186881 115.925927621 115.925927621 115.185186881 115.925924796 116.666665536 116.666665536 115.925924796 116.66667034 117.407411081 117.407411081 116.66667034 117.407408255 118.148148996 118.148148996 117.407408255 118.14814617 118.888886911 118.888886911 118.14814617 118.888891715 119.629632455 119.629632455 118.888891715 119.62962963 120.37037037 120.37037037 119.62962963 120.370367545 121.111108285 121.111108285 120.370367545 121.111113089 121.85185383 121.85185383 121.111113089 121.851851004 122.592591745 122.592591745 121.851851004 122.592588919 123.33332966 123.33332966 122.592588919 123.333334464 124.074075204 124.074075204 123.333334464 124.074072379 124.814813119 124.814813119 124.074072379 124.814817923 125.555558664 125.555558664 124.814817923 125.555555838 126.296296579 126.296296579 125.555555838 126.296293753 127.037034494 127.037034494 126.296293753 127.037039298 127.777780038 127.777780038 127.037039298 127.777777213 128.518517953 128.518517953 127.777777213 128.518515128 129.259255868 129.259255868 128.518515128 129.259253043 129.999993783 129.999993783 129.259253043 130.000006217 130.740746957 130.740746957 130.000006217 130.740744132 131.481484872 131.481484872 130.740744132 131.481482047 132.222222787 132.222222787 131.481482047 132.222219962 132.962960702 132.962960702 132.222219962 132.962957877 133.703698617 133.703698617 132.962957877 133.703711051 134.444451791 134.444451791 133.703711051 134.444448966 135.185189706 135.185189706 134.444448966 135.185186881 135.925927621 135.925927621 135.185186881 135.925924796 136.666665536 136.666665536 135.925924796 136.666662711 137.407403451 137.407403451 136.666662711 137.407400626 138.148141366 138.148141366 137.407400626 138.1481538 138.88889454 138.88889454 138.1481538 138.888891715 139.629632455 139.629632455 138.888891715 139.62962963 140.37037037 140.37037037 139.62962963 140.370367545 141.111108285 141.111108285 140.370367545 141.11110546 141.8518462 141.8518462 141.11110546 141.851858634 142.592599374 142.592599374 141.851858634 142.592596549 143.333337289 143.333337289 142.592596549 143.333334464 144.074075204 144.074075204 143.333334464 144.074072379 144.814813119 144.814813119 144.074072379 144.814810294 145.555551034 145.555551034 144.814810294 145.555548209 146.296288949 146.296288949 145.555548209 146.296301383 147.037042123 147.037042123 146.296301383 147.037039298 147.777780038 147.777780038 147.037039298 147.777777213 148.518517953 148.518517953 147.777777213 148.518515128 149.259255868 149.259255868 148.518515128 149.259253043 149.999993783 149.999993783 149.259253043 150.000006217 150.740746957 150.740746957 150.000006217 150.740744132 151.481484872 151.481484872 150.740744132 151.481482047 152.222222787 152.222222787 151.481482047 152.222219962 152.962960702 152.962960702 152.222219962 152.962957877 153.703698617 153.703698617 152.962957877 153.703711051 154.444451791 154.444451791 153.703711051 154.444448966 155.185189706 155.185189706 154.444448966 155.185186881 155.925927621 155.925927621 155.185186881 155.925924796 156.666665536 156.666665536 155.925924796 156.666662711 157.407403451 157.407403451 156.666662711 157.407400626 158.148141366 158.148141366 157.407400626 158.1481538 158.88889454 158.88889454 158.1481538 158.888891715 159.629632455 159.629632455 158.888891715 159.62962963 160.37037037 160.37037037 159.62962963 160.370367545 161.111108285 161.111108285 160.370367545 161.11110546 161.8518462 161.8518462 161.11110546 161.851858634 162.592599374 162.592599374 161.851858634 162.592596549 163.333337289 163.333337289 162.592596549 163.333334464 164.074075204 164.074075204 163.333334464 164.074072379 164.814813119 164.814813119 164.074072379 164.814810294 165.555551034 165.555551034 164.814810294 165.555548209 166.296288949 166.296288949 165.555548209 166.296301383 167.037042123 167.037042123 166.296301383 167.037039298 167.777780038 167.777780038 167.037039298 167.777777213 168.518517953 168.518517953 167.777777213 168.518515128 169.259255868 169.259255868 168.518515128 169.259253043 169.999993783 169.999993783 169.259253043 170.000006217 170.740746957 170.740746957 170.000006217 170.740744132 171.481484872 171.481484872 170.740744132 171.481482047 172.222222787 172.222222787 171.481482047 172.222219962 172.962960702 172.962960702 172.222219962 172.962957877 173.703698617 173.703698617 172.962957877 173.703711051 174.444451791 174.444451791 173.703711051 174.444448966 175.185189706 175.185189706 174.444448966 175.185186881 175.925927621 175.925927621 175.185186881 175.925924796 176.666665536 176.666665536 175.925924796 176.666662711 177.407403451 177.407403451 176.666662711 177.407400626 178.148141366 178.148141366 177.407400626 178.1481538 178.88889454 178.88889454 178.1481538 178.888891715 179.629632455 179.629632455 178.888891715 179.62962963 180.37037037 180.37037037 179.62962963 180.370367545 181.111108285 181.111108285 180.370367545 181.11110546 181.8518462 181.8518462 181.11110546 181.851858634 182.592599374 182.592599374 181.851858634 182.592596549 183.333337289 183.333337289 182.592596549 183.333334464 184.074075204 184.074075204 183.333334464 184.074072379 184.814813119 184.814813119 184.074072379 184.814810294 185.555551034 185.555551034 184.814810294 185.555548209 186.296288949 186.296288949 185.555548209 186.296301383 187.037042123 187.037042123 186.296301383 187.037039298 187.777780038 187.777780038 187.037039298 187.777777213 188.518517953 188.518517953 187.777777213 188.518515128 189.259255868 189.259255868 188.518515128 189.259253043 189.999993783 189.999993783 189.259253043 190.000006217 190.740746957 190.740746957 190.000006217 190.740744132 191.481484872 191.481484872 190.740744132 191.481482047 192.222222787 192.222222787 191.481482047 192.222219962 192.962960702 192.962960702 192.222219962 192.962957877 193.703698617 193.703698617 192.962957877 193.703711051 194.444451791 194.444451791 193.703711051 194.444448966 195.185189706 195.185189706 194.444448966 195.185186881 195.925927621 195.925927621 195.185186881 195.925924796 196.666665536 196.666665536 195.925924796 196.666662711 197.407403451 197.407403451 196.666662711 197.407400626 198.148141366 198.148141366 197.407400626 198.1481538 198.88889454 198.88889454 198.1481538 198.888891715 199.629632455 199.629632455 198.888891715 199.62962963 200.37037037 200.37037037 199.62962963 200.370367545 201.111108285 201.111108285 200.370367545 201.11110546 201.8518462 201.8518462 201.11110546 201.851858634 202.592599374 202.592599374 201.851858634 202.592596549 203.333337289 203.333337289 202.592596549 203.333334464 204.074075204 204.074075204 203.333334464 204.074072379 204.814813119 204.814813119 204.074072379 204.814810294 205.555551034 205.555551034 204.814810294 205.555548209 206.296288949 206.296288949 205.555548209 206.296301383 207.037042123 207.037042123 206.296301383 207.037039298 207.777780038 207.777780038 207.037039298 207.777777213 208.518517953 208.518517953 207.777777213 208.518515128 209.259255868 209.259255868 208.518515128 209.259253043 209.999993783 209.999993783 209.259253043 210.000006217 210.740746957 210.740746957 210.000006217 210.740744132 211.481484872 211.481484872 210.740744132 211.481482047 212.222222787 212.222222787 211.481482047 212.222219962 212.962960702 212.962960702 212.222219962 212.962957877 213.703698617 213.703698617 212.962957877 213.703711051 214.444451791 214.444451791 213.703711051 214.444448966 215.185189706 215.185189706 214.444448966 215.185186881 215.925927621 215.925927621 215.185186881 215.925924796 216.666665536 216.666665536 215.925924796 216.666662711 217.407403451 217.407403451 216.666662711 217.407400626 218.148141366 218.148141366 217.407400626 218.1481538 218.88889454 218.88889454 218.1481538 218.888891715 219.629632455 219.629632455 218.888891715 219.62962963 220.37037037 220.37037037 219.62962963 220.370367545 221.111108285 221.111108285 220.370367545 221.11110546 221.8518462 221.8518462 221.11110546 221.851858634 222.592599374 222.592599374 221.851858634 222.592596549 223.333337289 223.333337289 222.592596549 223.333334464 224.074075204 224.074075204 223.333334464 224.074072379 224.814813119 224.814813119 224.074072379 224.814810294 225.555551034 225.555551034 224.814810294 225.555548209 226.296288949 226.296288949 225.555548209 226.296301383 227.037042123 227.037042123 226.296301383 227.037039298 227.777780038 227.777780038 227.037039298 227.777777213 228.518517953 228.518517953 227.777777213 228.518515128 229.259255868 229.259255868 228.518515128 229.259253043 229.999993783 229.999993783 229.259253043 230.000006217 230.740746957 230.740746957 230.000006217 230.740744132 231.481484872 231.481484872 230.740744132 231.481482047 232.222222787 232.222222787 231.481482047 232.222219962 232.962960702 232.962960702 232.222219962 232.962957877 233.703698617 233.703698617 232.962957877 233.703711051 234.444451791 234.444451791 233.703711051 234.444448966 235.185189706 235.185189706 234.444448966 235.185186881 235.925927621 235.925927621 235.185186881 235.925924796 236.666665536 236.666665536 235.925924796 236.666662711 237.407403451 237.407403451 236.666662711 237.407400626 238.148141366 238.148141366 237.407400626 238.1481538 238.88889454 238.88889454 238.1481538 238.888891715 239.629632455 239.629632455 238.888891715 239.62962963 240.37037037 240.37037037 239.62962963 240.370367545 241.111108285 241.111108285 240.370367545 241.11110546 241.8518462 241.8518462 241.11110546 241.851858634 242.592599374 242.592599374 241.851858634 242.592596549 243.333337289 243.333337289 242.592596549 243.333334464 244.074075204 244.074075204 243.333334464 244.074072379 244.814813119 244.814813119 244.074072379 244.814810294 245.555551034 245.555551034 244.814810294 245.555548209 246.296288949 246.296288949 245.555548209 246.296301383 247.037042123 247.037042123 246.296301383 247.037039298 247.777780038 247.777780038 247.037039298 247.777777213 248.518517953 248.518517953 247.777777213 248.518515128 249.259255868 249.259255868 248.518515128 249.259253043 249.999993783 249.999993783 249.259253043 250.000006217 250.740746957 250.740746957 250.000006217 250.740744132 251.481484872 251.481484872 250.740744132 251.481482047 252.222222787 252.222222787 251.481482047 252.222219962 252.962960702 252.962960702 252.222219962 252.962957877 253.703698617 253.703698617 252.962957877 253.703711051 254.444451791 254.444451791 253.703711051 254.444448966 255.185189706 255.185189706 254.444448966 255.185186881 255.925927621 255.925927621 255.185186881 255.925924796 256.666665536 256.666665536 255.925924796 256.666677969 257.40741871 257.40741871 256.666677969 257.407400626 258.148141366 258.148141366 257.407400626 258.1481538 258.88889454 258.88889454 258.1481538 258.888876456 259.629617197 259.629617197 258.888876456 259.62962963 260.37037037 260.37037037 259.62962963 260.370382803 261.111123544 261.111123544 260.370382803 261.11110546 261.8518462 261.8518462 261.11110546 261.851858634 262.592599374 262.592599374 261.851858634 262.59258129 263.333322031 263.333322031 262.59258129 263.333334464 264.074075204 264.074075204 263.333334464 264.074087637 264.814828378 264.814828378 264.074087637 264.814810294 265.555551034 265.555551034 264.814810294 265.555563468 266.296304208 266.296304208 265.555563468 266.296286124 267.037026865 267.037026865 266.296286124 267.037039298 267.777780038 267.777780038 267.037039298 267.777792471 268.518533212 268.518533212 267.777792471 268.518515128 269.259255868 269.259255868 268.518515128 269.259268302 270.000009042 270.000009042 269.259268302 +269.999990958 270.740731698 270.740731698 269.999990958 270.740744132 271.481484872 271.481484872 270.740744132 271.481466788 272.222207529 272.222207529 271.481466788 272.222219962 272.962960702 272.962960702 272.222219962 272.962973135 273.703713876 273.703713876 272.962973135 273.703695792 274.444436532 274.444436532 273.703695792 274.444448966 275.185189706 275.185189706 274.444448966 275.185171622 275.925912363 275.925912363 275.185171622 275.925924796 276.666665536 276.666665536 275.925924796 276.666677969 277.40741871 277.40741871 276.666677969 277.407400626 278.148141366 278.148141366 277.407400626 278.1481538 278.88889454 278.88889454 278.1481538 278.888876456 279.629617197 279.629617197 278.888876456 279.62962963 280.37037037 280.37037037 279.62962963 280.370382803 281.111123544 281.111123544 280.370382803 281.11110546 281.8518462 281.8518462 281.11110546 281.851858634 282.592599374 282.592599374 281.851858634 282.59258129 283.333322031 283.333322031 282.59258129 283.333334464 284.074075204 284.074075204 283.333334464 284.074087637 284.814828378 284.814828378 284.074087637 284.814810294 285.555551034 285.555551034 284.814810294 285.555563468 286.296304208 286.296304208 285.555563468 286.296286124 287.037026865 287.037026865 286.296286124 287.037039298 287.777780038 287.777780038 287.037039298 287.777792471 288.518533212 288.518533212 287.777792471 288.518515128 289.259255868 289.259255868 288.518515128 289.259268302 290.000009042 290.000009042 289.259268302 289.999990958 290.740731698 290.740731698 289.999990958 290.740744132 291.481484872 291.481484872 290.740744132 291.481466788 292.222207529 292.222207529 291.481466788 292.222219962 292.962960702 292.962960702 292.222219962 292.962973135 293.703713876 293.703713876 292.962973135 293.703695792 294.444436532 294.444436532 293.703695792 294.444448966 295.185189706 295.185189706 294.444448966 295.185171622 295.925912363 295.925912363 295.185171622 295.925924796 296.666665536 296.666665536 295.925924796 296.666677969 297.40741871 297.40741871 296.666677969 297.407400626 298.148141366 298.148141366 297.407400626 298.1481538 298.88889454 298.88889454 298.1481538 298.888876456 299.629617197 299.629617197 298.888876456 299.62962963 300.37037037 300.37037037 299.62962963 300.370382803 301.111123544 301.111123544 300.370382803 301.11110546 301.8518462 301.8518462 301.11110546 301.851858634 302.592599374 302.592599374 301.851858634 302.59258129 303.333322031 303.333322031 302.59258129 303.333334464 304.074075204 304.074075204 303.333334464 304.074087637 304.814828378 304.814828378 304.074087637 304.814810294 305.555551034 305.555551034 304.814810294 305.555563468 306.296304208 306.296304208 305.555563468 306.296286124 307.037026865 307.037026865 306.296286124 307.037039298 307.777780038 307.777780038 307.037039298 307.777792471 308.518533212 308.518533212 307.777792471 308.518515128 309.259255868 309.259255868 308.518515128 309.259268302 310.000009042 310.000009042 309.259268302 309.999990958 310.740731698 310.740731698 309.999990958 310.740744132 311.481484872 311.481484872 310.740744132 311.481466788 312.222207529 312.222207529 311.481466788 312.222219962 312.962960702 312.962960702 312.222219962 312.962973135 313.703713876 313.703713876 312.962973135 313.703695792 314.444436532 314.444436532 313.703695792 314.444448966 315.185189706 315.185189706 314.444448966 315.185171622 315.925912363 315.925912363 315.185171622 315.925924796 316.666665536 316.666665536 315.925924796 316.666677969 317.40741871 317.40741871 316.666677969 317.407400626 318.148141366 318.148141366 317.407400626 318.1481538 318.88889454 318.88889454 318.1481538 318.888876456 319.629617197 319.629617197 318.888876456 319.62962963 320.37037037 320.37037037 319.62962963 320.370382803 321.111123544 321.111123544 320.370382803 321.11110546 321.8518462 321.8518462 321.11110546 321.851858634 322.592599374 322.592599374 321.851858634 322.59258129 323.333322031 323.333322031 322.59258129 323.333334464 324.074075204 324.074075204 323.333334464 324.074087637 324.814828378 324.814828378 324.074087637 324.814810294 325.555551034 325.555551034 324.814810294 325.555563468 326.296304208 326.296304208 325.555563468 326.296286124 327.037026865 327.037026865 326.296286124 327.037039298 327.777780038 327.777780038 327.037039298 327.777792471 328.518533212 328.518533212 327.777792471 328.518515128 329.259255868 329.259255868 328.518515128 329.259268302 330.000009042 330.000009042 329.259268302 329.999990958 330.740731698 330.740731698 329.999990958 330.740744132 331.481484872 331.481484872 330.740744132 331.481466788 332.222207529 332.222207529 331.481466788 332.222219962 332.962960702 332.962960702 332.222219962 332.962973135 333.703713876 333.703713876 332.962973135 333.703695792 334.444436532 334.444436532 333.703695792 334.444448966 335.185189706 335.185189706 334.444448966 335.185171622 335.925912363 335.925912363 335.185171622 335.925924796 336.666665536 336.666665536 335.925924796 336.666677969 337.40741871 337.40741871 336.666677969 337.407400626 338.148141366 338.148141366 337.407400626 338.1481538 338.88889454 338.88889454 338.1481538 338.888876456 339.629617197 339.629617197 338.888876456 339.62962963 340.37037037 340.37037037 339.62962963 340.370382803 341.111123544 341.111123544 340.370382803 341.11110546 341.8518462 341.8518462 341.11110546 341.851858634 342.592599374 342.592599374 341.851858634 342.59258129 343.333322031 343.333322031 342.59258129 343.333334464 344.074075204 344.074075204 343.333334464 344.074087637 344.814828378 344.814828378 344.074087637 344.814810294 345.555551034 345.555551034 344.814810294 345.555563468 346.296304208 346.296304208 345.555563468 346.296286124 347.037026865 347.037026865 346.296286124 347.037039298 347.777780038 347.777780038 347.037039298 347.777792471 348.518533212 348.518533212 347.777792471 348.518515128 349.259255868 349.259255868 348.518515128 349.259268302 350.000009042 350.000009042 349.259268302 349.999990958 350.740731698 350.740731698 349.999990958 350.740744132 351.481484872 351.481484872 350.740744132 351.481466788 352.222207529 352.222207529 351.481466788 352.222219962 352.962960702 352.962960702 352.222219962 352.962973135 353.703713876 353.703713876 352.962973135 353.703695792 354.444436532 354.444436532 353.703695792 354.444448966 355.185189706 355.185189706 354.444448966 355.185171622 355.925912363 355.925912363 355.185171622 355.925924796 356.666665536 356.666665536 355.925924796 356.666677969 357.40741871 357.40741871 356.666677969 357.407400626 358.148141366 358.148141366 357.407400626 358.1481538 358.88889454 358.88889454 358.1481538 358.888876456 359.629617197 359.629617197 358.888876456 -0.37037037037 0.37037037037 0.37037037037 -0.37037037037 0.370370346087 1.11111108683 1.11111108683 0.370370346087 1.11111106254 1.85185180329 1.85185180329 1.11111106254 1.85185195782 2.59259269856 2.59259269856 1.85185195782 2.59259249546 3.3333332362 3.3333332362 2.59259249546 3.33333327152 4.07407401226 4.07407401226 3.33333327152 4.074074286 4.81481502674 4.81481502674 4.074074286 4.81481458523 5.55555532597 5.55555532597 4.81481458523 5.55555536129 6.29629610203 6.29629610203 5.55555536129 6.29629613735 7.03703687809 7.03703687809 6.29629613735 7.03703691341 7.77777765415 7.77777765415 7.03703691341 7.77777816631 8.51851890705 8.51851890705 7.77777816631 8.51851894237 9.25925968311 9.25925968311 8.51851894237 9.25925971844 10.0000004592 10.0000004592 9.25925971844 9.99999954082 10.7407402816 10.7407402816 9.99999954082 10.7407403169 11.4814810576 11.4814810576 10.7407403169 11.4814810929 12.2222218337 12.2222218337 11.4814810929 12.222221869 12.9629626098 12.9629626098 12.222221869 12.9629626451 13.7037033858 13.7037033858 12.9629626451 13.7037034211 14.4444441619 14.4444441619 13.7037034211 14.4444441972 15.1851849379 15.1851849379 14.4444441972 15.1851849733 15.925925714 15.925925714 15.1851849733 15.925926703 16.6666674437 16.6666674437 15.925926703 16.6666665254 17.4074072661 17.4074072661 16.6666665254 17.4074082551 18.1481489959 18.1481489959 17.4074082551 18.1481480775 18.8888888182 18.8888888182 18.1481480775 18.8888898072 19.629630548 19.629630548 18.8888898072 19.6296296296 20.3703703704 20.3703703704 19.6296296296 20.370369452 21.1111101928 21.1111101928 20.370369452 21.1111111818 21.8518519225 21.8518519225 21.1111111818 21.8518510041 22.5925917449 22.5925917449 21.8518510041 22.5925927339 23.3333334746 23.3333334746 22.5925927339 23.3333325563 24.074073297 24.074073297 23.3333325563 24.074074286 24.8148150267 24.8148150267 24.074074286 24.8148141084 25.5555548491 25.5555548491 24.8148141084 25.5555558381 26.2962965789 26.2962965789 25.5555558381 26.2962956605 27.0370364013 27.0370364013 26.2962956605 27.0370373902 27.777778131 27.777778131 27.0370373902 27.7777772126 28.5185179534 28.5185179534 27.7777772126 28.5185189424 29.2592596831 29.2592596831 28.5185189424 29.2592587648 29.9999995055 29.9999995055 29.2592587648 30.0000004945 30.7407412352 30.7407412352 30.0000004945 30.7407403169 31.4814810576 31.4814810576 30.7407403169 31.4814820466 32.2222227874 32.2222227874 31.4814820466 32.2222237764 32.9629645171 32.9629645171 32.2222237764 32.9629616914 33.7037024321 33.7037024321 32.9629616914 33.7037034211 34.4444441619 34.4444441619 33.7037034211 34.4444451509 35.1851858916 35.1851858916 34.4444451509 35.1851868806 35.9259276213 35.9259276213 35.1851868806 35.9259247956 36.6666655364 36.6666655364 35.9259247956 36.6666665254 37.4074072661 37.4074072661 36.6666665254 37.4074082551 38.1481489959 38.1481489959 37.4074082551 38.1481499849 38.8888907256 38.8888907256 38.1481499849 38.8888878999 39.6296286406 39.6296286406 38.8888878999 39.6296296296 40.3703703704 40.3703703704 39.6296296296 40.3703713594 41.1111121001 41.1111121001 40.3703713594 41.1111092744 41.8518500151 41.8518500151 41.1111092744 41.8518510041 42.5925917449 42.5925917449 41.8518510041 42.5925927339 43.3333334746 43.3333334746 42.5925927339 43.3333344636 44.0740752044 44.0740752044 43.3333344636 44.0740723787 44.8148131194 44.8148131194 44.0740723787 44.8148141084 45.5555548491 45.5555548491 44.8148141084 45.5555558381 46.2962965789 46.2962965789 45.5555558381 46.2962975679 47.0370383086 47.0370383086 46.2962975679 47.0370354829 47.7777762236 47.7777762236 47.0370354829 47.7777772126 48.5185179534 48.5185179534 47.7777772126 48.5185189424 49.2592596831 49.2592596831 48.5185189424 49.2592606721 50.0000014129 50.0000014129 49.2592606721 49.9999985871 50.7407393279 50.7407393279 49.9999985871 50.7407403169 51.4814810576 51.4814810576 50.7407403169 51.4814820466 52.2222227874 52.2222227874 51.4814820466 52.2222237764 52.9629645171 52.9629645171 52.2222237764 52.9629616914 53.7037024321 53.7037024321 52.9629616914 53.7037034211 54.4444441619 54.4444441619 53.7037034211 54.4444451509 55.1851858916 55.1851858916 54.4444451509 55.1851868806 55.9259276213 55.9259276213 55.1851868806 55.9259247956 56.6666655364 56.6666655364 55.9259247956 56.6666665254 57.4074072661 57.4074072661 56.6666665254 57.4074082551 58.1481489959 58.1481489959 57.4074082551 58.1481499849 58.8888907256 58.8888907256 58.1481499849 58.8888878999 59.6296286406 59.6296286406 58.8888878999 59.6296296296 60.3703703704 60.3703703704 59.6296296296 60.3703713594 61.1111121001 61.1111121001 60.3703713594 61.1111092744 61.8518500151 61.8518500151 61.1111092744 61.8518510041 62.5925917449 62.5925917449 61.8518510041 62.5925927339 63.3333334746 63.3333334746 62.5925927339 63.3333344636 64.0740752044 64.0740752044 63.3333344636 64.0740723787 64.8148131194 64.8148131194 64.0740723787 64.8148179231 65.5555586638 65.5555586638 64.8148179231 65.5555558381 66.2962965789 66.2962965789 65.5555558381 66.2962937532 67.0370344939 67.0370344939 66.2962937532 67.0370392976 67.7777800383 67.7777800383 67.0370392976 67.7777772126 68.5185179534 68.5185179534 67.7777772126 68.5185151277 69.2592558684 69.2592558684 68.5185151277 69.2592606721 70.0000014129 70.0000014129 69.2592606721 69.9999985871 70.7407393279 70.7407393279 69.9999985871 70.7407441316 71.4814848723 71.4814848723 70.7407441316 71.4814820466 72.2222227874 72.2222227874 71.4814820466 72.2222199617 72.9629607024 72.9629607024 72.2222199617 72.9629655061 73.7037062468 73.7037062468 72.9629655061 73.7037034211 74.4444441619 74.4444441619 73.7037034211 74.4444413362 75.1851820769 75.1851820769 74.4444413362 75.1851868806 75.9259276213 75.9259276213 75.1851868806 75.9259247956 76.6666655364 76.6666655364 75.9259247956 76.6666703401 77.4074110808 77.4074110808 76.6666703401 77.4074082551 78.1481489959 78.1481489959 77.4074082551 78.1481461702 78.8888869109 78.8888869109 78.1481461702 78.8888917146 79.6296324553 79.6296324553 78.8888917146 79.6296296296 80.3703703704 80.3703703704 79.6296296296 80.3703675447 81.1111082854 81.1111082854 80.3703675447 81.1111130891 81.8518538298 81.8518538298 81.1111130891 81.8518510041 82.5925917449 82.5925917449 81.8518510041 82.5925889192 83.3333296599 83.3333296599 82.5925889192 83.3333344636 84.0740752044 84.0740752044 83.3333344636 84.0740723787 84.8148131194 84.8148131194 84.0740723787 84.8148179231 85.5555586638 85.5555586638 84.8148179231 85.5555558381 86.2962965789 86.2962965789 85.5555558381 86.2962937532 87.0370344939 87.0370344939 86.2962937532 87.0370392976 87.7777800383 87.7777800383 87.0370392976 87.7777772126 88.5185179534 88.5185179534 87.7777772126 88.5185151277 89.2592558684 89.2592558684 88.5185151277 89.2592606721 90.0000014129 90.0000014129 89.2592606721 89.9999985871 90.7407393279 90.7407393279 89.9999985871 90.7407441316 91.4814848723 91.4814848723 90.7407441316 91.4814820466 92.2222227874 92.2222227874 91.4814820466 92.2222199617 92.9629607024 92.9629607024 92.2222199617 92.9629655061 93.7037062468 93.7037062468 92.9629655061 93.7037034211 94.4444441619 94.4444441619 93.7037034211 94.4444413362 95.1851820769 95.1851820769 94.4444413362 95.1851868806 95.9259276213 95.9259276213 95.1851868806 95.9259247956 96.6666655364 96.6666655364 95.9259247956 96.6666703401 97.4074110808 97.4074110808 96.6666703401 97.4074082551 98.1481489959 98.1481489959 97.4074082551 98.1481461702 98.8888869109 98.8888869109 98.1481461702 98.8888917146 99.6296324553 99.6296324553 98.8888917146 99.6296296296 100.37037037 100.37037037 99.6296296296 100.370367545 101.111108285 101.111108285 100.370367545 101.111113089 101.85185383 101.85185383 101.111113089 101.851851004 102.592591745 102.592591745 101.851851004 102.592588919 103.33332966 103.33332966 102.592588919 103.333334464 104.074075204 104.074075204 103.333334464 104.074072379 104.814813119 104.814813119 104.074072379 104.814817923 105.555558664 105.555558664 104.814817923 105.555555838 106.296296579 106.296296579 105.555555838 106.296293753 107.037034494 107.037034494 106.296293753 107.037039298 107.777780038 107.777780038 107.037039298 107.777777213 108.518517953 108.518517953 107.777777213 108.518515128 109.259255868 109.259255868 108.518515128 109.259260672 110.000001413 110.000001413 109.259260672 109.999998587 110.740739328 110.740739328 109.999998587 110.740744132 111.481484872 111.481484872 110.740744132 111.481482047 112.222222787 112.222222787 111.481482047 112.222219962 112.962960702 112.962960702 112.222219962 112.962965506 113.703706247 113.703706247 112.962965506 113.703703421 114.444444162 114.444444162 113.703703421 114.444441336 115.185182077 115.185182077 114.444441336 115.185186881 115.925927621 115.925927621 115.185186881 115.925924796 116.666665536 116.666665536 115.925924796 116.66667034 117.407411081 117.407411081 116.66667034 117.407408255 118.148148996 118.148148996 117.407408255 118.14814617 118.888886911 118.888886911 118.14814617 118.888891715 119.629632455 119.629632455 118.888891715 119.62962963 120.37037037 120.37037037 119.62962963 120.370367545 121.111108285 121.111108285 120.370367545 121.111113089 121.85185383 121.85185383 121.111113089 121.851851004 122.592591745 122.592591745 121.851851004 122.592588919 123.33332966 123.33332966 122.592588919 123.333334464 124.074075204 124.074075204 123.333334464 124.074072379 124.814813119 124.814813119 124.074072379 124.814817923 125.555558664 125.555558664 124.814817923 125.555555838 126.296296579 126.296296579 125.555555838 126.296293753 127.037034494 127.037034494 126.296293753 127.037039298 127.777780038 127.777780038 127.037039298 127.777777213 128.518517953 128.518517953 127.777777213 128.518515128 129.259255868 129.259255868 128.518515128 129.259253043 129.999993783 129.999993783 129.259253043 130.000006217 130.740746957 130.740746957 130.000006217 130.740744132 131.481484872 131.481484872 130.740744132 131.481482047 132.222222787 132.222222787 131.481482047 132.222219962 132.962960702 132.962960702 132.222219962 132.962957877 133.703698617 133.703698617 132.962957877 133.703711051 134.444451791 134.444451791 133.703711051 134.444448966 135.185189706 135.185189706 134.444448966 135.185186881 135.925927621 135.925927621 135.185186881 135.925924796 136.666665536 136.666665536 135.925924796 136.666662711 137.407403451 137.407403451 136.666662711 137.407400626 138.148141366 138.148141366 137.407400626 138.1481538 138.88889454 138.88889454 138.1481538 138.888891715 139.629632455 139.629632455 138.888891715 139.62962963 140.37037037 140.37037037 139.62962963 140.370367545 141.111108285 141.111108285 140.370367545 141.11110546 141.8518462 141.8518462 141.11110546 141.851858634 142.592599374 142.592599374 141.851858634 142.592596549 143.333337289 143.333337289 142.592596549 143.333334464 144.074075204 144.074075204 143.333334464 144.074072379 144.814813119 144.814813119 144.074072379 144.814810294 145.555551034 145.555551034 144.814810294 145.555548209 146.296288949 146.296288949 145.555548209 146.296301383 147.037042123 147.037042123 146.296301383 147.037039298 147.777780038 147.777780038 147.037039298 147.777777213 148.518517953 148.518517953 147.777777213 148.518515128 149.259255868 149.259255868 148.518515128 149.259253043 149.999993783 149.999993783 149.259253043 150.000006217 150.740746957 150.740746957 150.000006217 150.740744132 151.481484872 151.481484872 150.740744132 151.481482047 152.222222787 152.222222787 151.481482047 152.222219962 152.962960702 152.962960702 152.222219962 152.962957877 153.703698617 153.703698617 152.962957877 153.703711051 154.444451791 154.444451791 153.703711051 154.444448966 155.185189706 155.185189706 154.444448966 155.185186881 155.925927621 155.925927621 155.185186881 155.925924796 156.666665536 156.666665536 155.925924796 156.666662711 157.407403451 157.407403451 156.666662711 157.407400626 158.148141366 158.148141366 157.407400626 158.1481538 158.88889454 158.88889454 158.1481538 158.888891715 159.629632455 159.629632455 158.888891715 159.62962963 160.37037037 160.37037037 159.62962963 160.370367545 161.111108285 161.111108285 160.370367545 161.11110546 161.8518462 161.8518462 161.11110546 161.851858634 162.592599374 162.592599374 161.851858634 162.592596549 163.333337289 163.333337289 162.592596549 163.333334464 164.074075204 164.074075204 163.333334464 164.074072379 164.814813119 164.814813119 164.074072379 164.814810294 165.555551034 165.555551034 164.814810294 165.555548209 166.296288949 166.296288949 165.555548209 166.296301383 167.037042123 167.037042123 166.296301383 167.037039298 167.777780038 167.777780038 167.037039298 167.777777213 168.518517953 168.518517953 167.777777213 168.518515128 169.259255868 169.259255868 168.518515128 169.259253043 169.999993783 169.999993783 169.259253043 170.000006217 170.740746957 170.740746957 170.000006217 170.740744132 171.481484872 171.481484872 170.740744132 171.481482047 172.222222787 172.222222787 171.481482047 172.222219962 172.962960702 172.962960702 172.222219962 172.962957877 173.703698617 173.703698617 172.962957877 173.703711051 174.444451791 174.444451791 173.703711051 174.444448966 175.185189706 175.185189706 174.444448966 175.185186881 175.925927621 175.925927621 175.185186881 175.925924796 176.666665536 176.666665536 175.925924796 176.666662711 177.407403451 177.407403451 176.666662711 177.407400626 178.148141366 178.148141366 177.407400626 178.1481538 178.88889454 178.88889454 178.1481538 178.888891715 179.629632455 179.629632455 178.888891715 179.62962963 180.37037037 180.37037037 179.62962963 180.370367545 181.111108285 181.111108285 180.370367545 181.11110546 181.8518462 181.8518462 181.11110546 181.851858634 182.592599374 182.592599374 181.851858634 182.592596549 183.333337289 183.333337289 182.592596549 183.333334464 184.074075204 184.074075204 183.333334464 184.074072379 184.814813119 184.814813119 184.074072379 184.814810294 185.555551034 185.555551034 184.814810294 185.555548209 186.296288949 186.296288949 185.555548209 186.296301383 187.037042123 187.037042123 186.296301383 187.037039298 187.777780038 187.777780038 187.037039298 187.777777213 188.518517953 188.518517953 187.777777213 188.518515128 189.259255868 189.259255868 188.518515128 189.259253043 189.999993783 189.999993783 189.259253043 190.000006217 190.740746957 190.740746957 190.000006217 190.740744132 191.481484872 191.481484872 190.740744132 191.481482047 192.222222787 192.222222787 191.481482047 192.222219962 192.962960702 192.962960702 192.222219962 192.962957877 193.703698617 193.703698617 192.962957877 193.703711051 194.444451791 194.444451791 193.703711051 194.444448966 195.185189706 195.185189706 194.444448966 195.185186881 195.925927621 195.925927621 195.185186881 195.925924796 196.666665536 196.666665536 195.925924796 196.666662711 197.407403451 197.407403451 196.666662711 197.407400626 198.148141366 198.148141366 197.407400626 198.1481538 198.88889454 198.88889454 198.1481538 198.888891715 199.629632455 199.629632455 198.888891715 199.62962963 200.37037037 200.37037037 199.62962963 200.370367545 201.111108285 201.111108285 200.370367545 201.11110546 201.8518462 201.8518462 201.11110546 201.851858634 202.592599374 202.592599374 201.851858634 202.592596549 203.333337289 203.333337289 202.592596549 203.333334464 204.074075204 204.074075204 203.333334464 204.074072379 204.814813119 204.814813119 204.074072379 204.814810294 205.555551034 205.555551034 204.814810294 205.555548209 206.296288949 206.296288949 205.555548209 206.296301383 207.037042123 207.037042123 206.296301383 207.037039298 207.777780038 207.777780038 207.037039298 207.777777213 208.518517953 208.518517953 207.777777213 208.518515128 209.259255868 209.259255868 208.518515128 209.259253043 209.999993783 209.999993783 209.259253043 210.000006217 210.740746957 210.740746957 210.000006217 210.740744132 211.481484872 211.481484872 210.740744132 211.481482047 212.222222787 212.222222787 211.481482047 212.222219962 212.962960702 212.962960702 212.222219962 212.962957877 213.703698617 213.703698617 212.962957877 213.703711051 214.444451791 214.444451791 213.703711051 214.444448966 215.185189706 215.185189706 214.444448966 215.185186881 215.925927621 215.925927621 215.185186881 215.925924796 216.666665536 216.666665536 215.925924796 216.666662711 217.407403451 217.407403451 216.666662711 217.407400626 218.148141366 218.148141366 217.407400626 218.1481538 218.88889454 218.88889454 218.1481538 218.888891715 219.629632455 219.629632455 218.888891715 219.62962963 220.37037037 220.37037037 219.62962963 220.370367545 221.111108285 221.111108285 220.370367545 221.11110546 221.8518462 221.8518462 221.11110546 221.851858634 222.592599374 222.592599374 221.851858634 222.592596549 223.333337289 223.333337289 222.592596549 223.333334464 224.074075204 224.074075204 223.333334464 224.074072379 224.814813119 224.814813119 224.074072379 224.814810294 225.555551034 225.555551034 224.814810294 225.555548209 226.296288949 226.296288949 225.555548209 226.296301383 227.037042123 227.037042123 226.296301383 227.037039298 227.777780038 227.777780038 227.037039298 227.777777213 228.518517953 228.518517953 227.777777213 228.518515128 229.259255868 229.259255868 228.518515128 229.259253043 229.999993783 229.999993783 229.259253043 230.000006217 230.740746957 230.740746957 230.000006217 230.740744132 231.481484872 231.481484872 230.740744132 231.481482047 232.222222787 232.222222787 231.481482047 232.222219962 232.962960702 232.962960702 232.222219962 232.962957877 233.703698617 233.703698617 232.962957877 233.703711051 234.444451791 234.444451791 233.703711051 234.444448966 235.185189706 235.185189706 234.444448966 235.185186881 235.925927621 235.925927621 235.185186881 235.925924796 236.666665536 236.666665536 235.925924796 236.666662711 237.407403451 237.407403451 236.666662711 237.407400626 238.148141366 238.148141366 237.407400626 238.1481538 238.88889454 238.88889454 238.1481538 238.888891715 239.629632455 239.629632455 238.888891715 239.62962963 240.37037037 240.37037037 239.62962963 240.370367545 241.111108285 241.111108285 240.370367545 241.11110546 241.8518462 241.8518462 241.11110546 241.851858634 242.592599374 242.592599374 241.851858634 242.592596549 243.333337289 243.333337289 242.592596549 243.333334464 244.074075204 244.074075204 243.333334464 244.074072379 244.814813119 244.814813119 244.074072379 244.814810294 245.555551034 245.555551034 244.814810294 245.555548209 246.296288949 246.296288949 245.555548209 246.296301383 247.037042123 247.037042123 246.296301383 247.037039298 247.777780038 247.777780038 247.037039298 247.777777213 248.518517953 248.518517953 247.777777213 248.518515128 249.259255868 249.259255868 248.518515128 249.259253043 249.999993783 249.999993783 249.259253043 250.000006217 250.740746957 250.740746957 250.000006217 250.740744132 251.481484872 251.481484872 250.740744132 251.481482047 252.222222787 252.222222787 251.481482047 252.222219962 252.962960702 252.962960702 252.222219962 252.962957877 253.703698617 253.703698617 252.962957877 253.703711051 254.444451791 254.444451791 253.703711051 254.444448966 255.185189706 255.185189706 254.444448966 255.185186881 255.925927621 255.925927621 255.185186881 255.925924796 256.666665536 256.666665536 255.925924796 256.666677969 257.40741871 257.40741871 256.666677969 257.407400626 258.148141366 258.148141366 257.407400626 258.1481538 258.88889454 258.88889454 258.1481538 258.888876456 259.629617197 259.629617197 258.888876456 259.62962963 260.37037037 260.37037037 259.62962963 260.370382803 261.111123544 261.111123544 260.370382803 261.11110546 261.8518462 261.8518462 261.11110546 261.851858634 262.592599374 262.592599374 261.851858634 262.59258129 263.333322031 263.333322031 262.59258129 263.333334464 264.074075204 264.074075204 263.333334464 264.074087637 264.814828378 264.814828378 264.074087637 264.814810294 265.555551034 265.555551034 264.814810294 265.555563468 266.296304208 266.296304208 265.555563468 266.296286124 267.037026865 267.037026865 266.296286124 267.037039298 267.777780038 267.777780038 267.037039298 267.777792471 268.518533212 268.518533212 267.777792471 268.518515128 269.259255868 269.259255868 268.518515128 269.259268302 270.000009042 270.000009042 269.259268302 269.999990958 270.740731698 270.740731698 269.999990958 270.740744132 271.481484872 271.481484872 270.740744132 271.481466788 272.222207529 272.222207529 271.481466788 272.222219962 272.962960702 272.962960702 272.222219962 272.962973135 273.703713876 273.703713876 272.962973135 273.703695792 274.444436532 274.444436532 273.703695792 274.444448966 275.185189706 275.185189706 274.444448966 275.185171622 275.925912363 275.925912363 275.185171622 275.925924796 276.666665536 276.666665536 275.925924796 276.666677969 277.40741871 277.40741871 276.666677969 277.407400626 278.148141366 278.148141366 277.407400626 278.1481538 278.88889454 278.88889454 278.1481538 278.888876456 279.629617197 279.629617197 278.888876456 279.62962963 280.37037037 280.37037037 279.62962963 +280.370382803 281.111123544 281.111123544 280.370382803 281.11110546 281.8518462 281.8518462 281.11110546 281.851858634 282.592599374 282.592599374 281.851858634 282.59258129 283.333322031 283.333322031 282.59258129 283.333334464 284.074075204 284.074075204 283.333334464 284.074087637 284.814828378 284.814828378 284.074087637 284.814810294 285.555551034 285.555551034 284.814810294 285.555563468 286.296304208 286.296304208 285.555563468 286.296286124 287.037026865 287.037026865 286.296286124 287.037039298 287.777780038 287.777780038 287.037039298 287.777792471 288.518533212 288.518533212 287.777792471 288.518515128 289.259255868 289.259255868 288.518515128 289.259268302 290.000009042 290.000009042 289.259268302 289.999990958 290.740731698 290.740731698 289.999990958 290.740744132 291.481484872 291.481484872 290.740744132 291.481466788 292.222207529 292.222207529 291.481466788 292.222219962 292.962960702 292.962960702 292.222219962 292.962973135 293.703713876 293.703713876 292.962973135 293.703695792 294.444436532 294.444436532 293.703695792 294.444448966 295.185189706 295.185189706 294.444448966 295.185171622 295.925912363 295.925912363 295.185171622 295.925924796 296.666665536 296.666665536 295.925924796 296.666677969 297.40741871 297.40741871 296.666677969 297.407400626 298.148141366 298.148141366 297.407400626 298.1481538 298.88889454 298.88889454 298.1481538 298.888876456 299.629617197 299.629617197 298.888876456 299.62962963 300.37037037 300.37037037 299.62962963 300.370382803 301.111123544 301.111123544 300.370382803 301.11110546 301.8518462 301.8518462 301.11110546 301.851858634 302.592599374 302.592599374 301.851858634 302.59258129 303.333322031 303.333322031 302.59258129 303.333334464 304.074075204 304.074075204 303.333334464 304.074087637 304.814828378 304.814828378 304.074087637 304.814810294 305.555551034 305.555551034 304.814810294 305.555563468 306.296304208 306.296304208 305.555563468 306.296286124 307.037026865 307.037026865 306.296286124 307.037039298 307.777780038 307.777780038 307.037039298 307.777792471 308.518533212 308.518533212 307.777792471 308.518515128 309.259255868 309.259255868 308.518515128 309.259268302 310.000009042 310.000009042 309.259268302 309.999990958 310.740731698 310.740731698 309.999990958 310.740744132 311.481484872 311.481484872 310.740744132 311.481466788 312.222207529 312.222207529 311.481466788 312.222219962 312.962960702 312.962960702 312.222219962 312.962973135 313.703713876 313.703713876 312.962973135 313.703695792 314.444436532 314.444436532 313.703695792 314.444448966 315.185189706 315.185189706 314.444448966 315.185171622 315.925912363 315.925912363 315.185171622 315.925924796 316.666665536 316.666665536 315.925924796 316.666677969 317.40741871 317.40741871 316.666677969 317.407400626 318.148141366 318.148141366 317.407400626 318.1481538 318.88889454 318.88889454 318.1481538 318.888876456 319.629617197 319.629617197 318.888876456 319.62962963 320.37037037 320.37037037 319.62962963 320.370382803 321.111123544 321.111123544 320.370382803 321.11110546 321.8518462 321.8518462 321.11110546 321.851858634 322.592599374 322.592599374 321.851858634 322.59258129 323.333322031 323.333322031 322.59258129 323.333334464 324.074075204 324.074075204 323.333334464 324.074087637 324.814828378 324.814828378 324.074087637 324.814810294 325.555551034 325.555551034 324.814810294 325.555563468 326.296304208 326.296304208 325.555563468 326.296286124 327.037026865 327.037026865 326.296286124 327.037039298 327.777780038 327.777780038 327.037039298 327.777792471 328.518533212 328.518533212 327.777792471 328.518515128 329.259255868 329.259255868 328.518515128 329.259268302 330.000009042 330.000009042 329.259268302 329.999990958 330.740731698 330.740731698 329.999990958 330.740744132 331.481484872 331.481484872 330.740744132 331.481466788 332.222207529 332.222207529 331.481466788 332.222219962 332.962960702 332.962960702 332.222219962 332.962973135 333.703713876 333.703713876 332.962973135 333.703695792 334.444436532 334.444436532 333.703695792 334.444448966 335.185189706 335.185189706 334.444448966 335.185171622 335.925912363 335.925912363 335.185171622 335.925924796 336.666665536 336.666665536 335.925924796 336.666677969 337.40741871 337.40741871 336.666677969 337.407400626 338.148141366 338.148141366 337.407400626 338.1481538 338.88889454 338.88889454 338.1481538 338.888876456 339.629617197 339.629617197 338.888876456 339.62962963 340.37037037 340.37037037 339.62962963 340.370382803 341.111123544 341.111123544 340.370382803 341.11110546 341.8518462 341.8518462 341.11110546 341.851858634 342.592599374 342.592599374 341.851858634 342.59258129 343.333322031 343.333322031 342.59258129 343.333334464 344.074075204 344.074075204 343.333334464 344.074087637 344.814828378 344.814828378 344.074087637 344.814810294 345.555551034 345.555551034 344.814810294 345.555563468 346.296304208 346.296304208 345.555563468 346.296286124 347.037026865 347.037026865 346.296286124 347.037039298 347.777780038 347.777780038 347.037039298 347.777792471 348.518533212 348.518533212 347.777792471 348.518515128 349.259255868 349.259255868 348.518515128 349.259268302 350.000009042 350.000009042 349.259268302 349.999990958 350.740731698 350.740731698 349.999990958 350.740744132 351.481484872 351.481484872 350.740744132 351.481466788 352.222207529 352.222207529 351.481466788 352.222219962 352.962960702 352.962960702 352.222219962 352.962973135 353.703713876 353.703713876 352.962973135 353.703695792 354.444436532 354.444436532 353.703695792 354.444448966 355.185189706 355.185189706 354.444448966 355.185171622 355.925912363 355.925912363 355.185171622 355.925924796 356.666665536 356.666665536 355.925924796 356.666677969 357.40741871 357.40741871 356.666677969 357.407400626 358.148141366 358.148141366 357.407400626 358.1481538 358.88889454 358.88889454 358.1481538 358.888876456 359.629617197 359.629617197 358.888876456 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 +282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 +282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 +282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 +282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 +282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 +282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 +282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 +275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 +267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 +259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 +250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 +242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 +233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 +225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 +216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 +208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 +200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 +191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 +183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 +174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 +166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 +157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 +149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 +140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 +132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 +124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 +115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 +107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 +98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 +90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 +81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 +73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 +65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 +56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 +48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 +39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 +31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 +22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 +14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 +5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 +357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 +349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 +340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 +332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 +323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 +315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 +306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 +298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 +290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 +281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 +273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 +264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 +256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 +247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 +239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 +230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 +222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 +214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 +205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.3515625 0.3515625 0.3515625 -0.3515625 0.3515625 1.0546875 1.0546875 0.3515625 1.0546875 1.7578125 1.7578125 1.0546875 1.7578125 2.4609375 2.4609375 1.7578125 2.4609375 3.1640625 3.1640625 2.4609375 3.1640625 3.8671875 3.8671875 3.1640625 3.8671875 4.5703125 4.5703125 3.8671875 4.5703125 5.2734375 5.2734375 4.5703125 5.2734375 5.9765625 5.9765625 5.2734375 5.9765625 6.6796875 6.6796875 5.9765625 6.6796875 7.3828125 7.3828125 6.6796875 7.3828125 8.0859375 8.0859375 7.3828125 8.0859375 8.7890625 8.7890625 8.0859375 8.7890625 9.4921875 9.4921875 8.7890625 9.4921875 10.1953125 10.1953125 9.4921875 10.1953125 10.8984375 10.8984375 10.1953125 10.8984375 11.6015625 11.6015625 10.8984375 11.6015625 12.3046875 12.3046875 11.6015625 12.3046875 13.0078125 13.0078125 12.3046875 13.0078125 13.7109375 13.7109375 13.0078125 13.7109375 14.4140625 14.4140625 13.7109375 14.4140625 15.1171875 15.1171875 14.4140625 15.1171875 15.8203125 15.8203125 15.1171875 15.8203125 16.5234375 16.5234375 15.8203125 16.5234375 17.2265625 17.2265625 16.5234375 17.2265625 17.9296875 17.9296875 17.2265625 17.9296875 18.6328125 18.6328125 17.9296875 18.6328125 19.3359375 19.3359375 18.6328125 19.3359375 20.0390625 20.0390625 19.3359375 20.0390625 20.7421875 20.7421875 20.0390625 20.7421875 21.4453125 21.4453125 20.7421875 21.4453125 22.1484375 22.1484375 21.4453125 22.1484375 22.8515625 22.8515625 22.1484375 22.8515625 23.5546875 23.5546875 22.8515625 23.5546875 24.2578125 24.2578125 23.5546875 24.2578125 24.9609375 24.9609375 24.2578125 24.9609375 25.6640625 25.6640625 24.9609375 25.6640625 26.3671875 26.3671875 25.6640625 26.3671875 27.0703125 27.0703125 26.3671875 27.0703125 27.7734375 27.7734375 27.0703125 27.7734375 28.4765625 28.4765625 27.7734375 28.4765625 29.1796875 29.1796875 28.4765625 29.1796875 29.8828125 29.8828125 29.1796875 29.8828125 30.5859375 30.5859375 29.8828125 30.5859375 31.2890625 31.2890625 30.5859375 31.2890625 31.9921875 31.9921875 31.2890625 31.9921875 32.6953125 32.6953125 31.9921875 32.6953125 33.3984375 33.3984375 32.6953125 33.3984375 34.1015625 34.1015625 33.3984375 34.1015625 34.8046875 34.8046875 34.1015625 34.8046875 35.5078125 35.5078125 34.8046875 35.5078125 36.2109375 36.2109375 35.5078125 36.2109375 36.9140625 36.9140625 36.2109375 36.9140625 37.6171875 37.6171875 36.9140625 37.6171875 38.3203125 38.3203125 37.6171875 38.3203125 39.0234375 39.0234375 38.3203125 39.0234375 39.7265625 39.7265625 39.0234375 39.7265625 40.4296875 40.4296875 39.7265625 40.4296875 41.1328125 41.1328125 40.4296875 41.1328125 41.8359375 41.8359375 41.1328125 41.8359375 42.5390625 42.5390625 41.8359375 42.5390625 43.2421875 43.2421875 42.5390625 43.2421875 43.9453125 43.9453125 43.2421875 43.9453125 44.6484375 44.6484375 43.9453125 44.6484375 45.3515625 45.3515625 44.6484375 45.3515625 46.0546875 46.0546875 45.3515625 46.0546875 46.7578125 46.7578125 46.0546875 46.7578125 47.4609375 47.4609375 46.7578125 47.4609375 48.1640625 48.1640625 47.4609375 48.1640625 48.8671875 48.8671875 48.1640625 48.8671875 49.5703125 49.5703125 48.8671875 49.5703125 50.2734375 50.2734375 49.5703125 50.2734375 50.9765625 50.9765625 50.2734375 50.9765625 51.6796875 51.6796875 50.9765625 51.6796875 52.3828125 52.3828125 51.6796875 52.3828125 53.0859375 53.0859375 52.3828125 53.0859375 53.7890625 53.7890625 53.0859375 53.7890625 54.4921875 54.4921875 53.7890625 54.4921875 55.1953125 55.1953125 54.4921875 55.1953125 55.8984375 55.8984375 55.1953125 55.8984375 56.6015625 56.6015625 55.8984375 56.6015625 57.3046875 57.3046875 56.6015625 57.3046875 58.0078125 58.0078125 57.3046875 58.0078125 58.7109375 58.7109375 58.0078125 58.7109375 59.4140625 59.4140625 58.7109375 59.4140625 60.1171875 60.1171875 59.4140625 60.1171875 60.8203125 60.8203125 60.1171875 60.8203125 61.5234375 61.5234375 60.8203125 61.5234375 62.2265625 62.2265625 61.5234375 62.2265625 62.9296875 62.9296875 62.2265625 62.9296875 63.6328125 63.6328125 62.9296875 63.6328125 64.3359375 64.3359375 63.6328125 64.3359375 65.0390625 65.0390625 64.3359375 65.0390625 65.7421875 65.7421875 65.0390625 65.7421875 66.4453125 66.4453125 65.7421875 66.4453125 67.1484375 67.1484375 66.4453125 67.1484375 67.8515625 67.8515625 67.1484375 67.8515625 68.5546875 68.5546875 67.8515625 68.5546875 69.2578125 69.2578125 68.5546875 69.2578125 69.9609375 69.9609375 69.2578125 69.9609375 70.6640625 70.6640625 69.9609375 70.6640625 71.3671875 71.3671875 70.6640625 71.3671875 72.0703125 72.0703125 71.3671875 72.0703125 72.7734375 72.7734375 72.0703125 72.7734375 73.4765625 73.4765625 72.7734375 73.4765625 74.1796875 74.1796875 73.4765625 74.1796875 74.8828125 74.8828125 74.1796875 74.8828125 75.5859375 75.5859375 74.8828125 75.5859375 76.2890625 76.2890625 75.5859375 76.2890625 76.9921875 76.9921875 76.2890625 76.9921875 77.6953125 77.6953125 76.9921875 77.6953125 78.3984375 78.3984375 77.6953125 78.3984375 79.1015625 79.1015625 78.3984375 79.1015625 79.8046875 79.8046875 79.1015625 79.8046875 80.5078125 80.5078125 79.8046875 80.5078125 81.2109375 81.2109375 80.5078125 81.2109375 81.9140625 81.9140625 81.2109375 81.9140625 82.6171875 82.6171875 81.9140625 82.6171875 83.3203125 83.3203125 82.6171875 83.3203125 84.0234375 84.0234375 83.3203125 84.0234375 84.7265625 84.7265625 84.0234375 84.7265625 85.4296875 85.4296875 84.7265625 85.4296875 86.1328125 86.1328125 85.4296875 86.1328125 86.8359375 86.8359375 86.1328125 86.8359375 87.5390625 87.5390625 86.8359375 87.5390625 88.2421875 88.2421875 87.5390625 88.2421875 88.9453125 88.9453125 88.2421875 88.9453125 89.6484375 89.6484375 88.9453125 89.6484375 90.3515625 90.3515625 89.6484375 90.3515625 91.0546875 91.0546875 90.3515625 91.0546875 91.7578125 91.7578125 91.0546875 91.7578125 92.4609375 92.4609375 91.7578125 92.4609375 93.1640625 93.1640625 92.4609375 93.1640625 93.8671875 93.8671875 93.1640625 93.8671875 94.5703125 94.5703125 93.8671875 94.5703125 95.2734375 95.2734375 94.5703125 95.2734375 95.9765625 95.9765625 95.2734375 95.9765625 96.6796875 96.6796875 95.9765625 96.6796875 97.3828125 97.3828125 96.6796875 97.3828125 98.0859375 98.0859375 97.3828125 98.0859375 98.7890625 98.7890625 98.0859375 98.7890625 99.4921875 99.4921875 98.7890625 99.4921875 100.1953125 100.1953125 99.4921875 100.1953125 100.8984375 100.8984375 100.1953125 100.8984375 101.6015625 101.6015625 100.8984375 101.6015625 102.3046875 102.3046875 101.6015625 102.3046875 103.0078125 103.0078125 102.3046875 103.0078125 103.7109375 103.7109375 103.0078125 103.7109375 104.4140625 104.4140625 103.7109375 104.4140625 105.1171875 105.1171875 104.4140625 105.1171875 105.8203125 105.8203125 105.1171875 105.8203125 106.5234375 106.5234375 105.8203125 106.5234375 107.2265625 107.2265625 106.5234375 107.2265625 107.9296875 107.9296875 107.2265625 107.9296875 108.6328125 108.6328125 107.9296875 108.6328125 109.3359375 109.3359375 108.6328125 109.3359375 110.0390625 110.0390625 109.3359375 110.0390625 110.7421875 110.7421875 110.0390625 110.7421875 111.4453125 111.4453125 110.7421875 111.4453125 112.1484375 112.1484375 111.4453125 112.1484375 112.8515625 112.8515625 112.1484375 112.8515625 113.5546875 113.5546875 112.8515625 113.5546875 114.2578125 114.2578125 113.5546875 114.2578125 114.9609375 114.9609375 114.2578125 114.9609375 115.6640625 115.6640625 114.9609375 115.6640625 116.3671875 116.3671875 115.6640625 116.3671875 117.0703125 117.0703125 116.3671875 117.0703125 117.7734375 117.7734375 117.0703125 117.7734375 118.4765625 118.4765625 117.7734375 118.4765625 119.1796875 119.1796875 118.4765625 119.1796875 119.8828125 119.8828125 119.1796875 119.8828125 120.5859375 120.5859375 119.8828125 120.5859375 121.2890625 121.2890625 120.5859375 121.2890625 121.9921875 121.9921875 121.2890625 121.9921875 122.6953125 122.6953125 121.9921875 122.6953125 123.3984375 123.3984375 122.6953125 123.3984375 124.1015625 124.1015625 123.3984375 124.1015625 124.8046875 124.8046875 124.1015625 124.8046875 125.5078125 125.5078125 124.8046875 125.5078125 126.2109375 126.2109375 125.5078125 126.2109375 126.9140625 126.9140625 126.2109375 126.9140625 127.6171875 127.6171875 126.9140625 127.6171875 128.3203125 128.3203125 127.6171875 128.3203125 129.0234375 129.0234375 128.3203125 129.0234375 129.7265625 129.7265625 129.0234375 129.7265625 130.4296875 130.4296875 129.7265625 130.4296875 131.1328125 131.1328125 130.4296875 131.1328125 131.8359375 131.8359375 131.1328125 131.8359375 132.5390625 132.5390625 131.8359375 132.5390625 133.2421875 133.2421875 132.5390625 133.2421875 133.9453125 133.9453125 133.2421875 133.9453125 134.6484375 134.6484375 133.9453125 134.6484375 135.3515625 135.3515625 134.6484375 135.3515625 136.0546875 136.0546875 135.3515625 136.0546875 136.7578125 136.7578125 136.0546875 136.7578125 137.4609375 137.4609375 136.7578125 137.4609375 138.1640625 138.1640625 137.4609375 138.1640625 138.8671875 138.8671875 138.1640625 138.8671875 139.5703125 139.5703125 138.8671875 139.5703125 140.2734375 140.2734375 139.5703125 140.2734375 140.9765625 140.9765625 140.2734375 140.9765625 141.6796875 141.6796875 140.9765625 141.6796875 142.3828125 142.3828125 141.6796875 142.3828125 143.0859375 143.0859375 142.3828125 143.0859375 143.7890625 143.7890625 143.0859375 143.7890625 144.4921875 144.4921875 143.7890625 144.4921875 145.1953125 145.1953125 144.4921875 145.1953125 145.8984375 145.8984375 145.1953125 145.8984375 146.6015625 146.6015625 145.8984375 146.6015625 147.3046875 147.3046875 146.6015625 147.3046875 148.0078125 148.0078125 147.3046875 148.0078125 148.7109375 148.7109375 148.0078125 148.7109375 149.4140625 149.4140625 148.7109375 149.4140625 150.1171875 150.1171875 149.4140625 150.1171875 150.8203125 150.8203125 150.1171875 150.8203125 151.5234375 151.5234375 150.8203125 151.5234375 152.2265625 152.2265625 151.5234375 152.2265625 152.9296875 152.9296875 152.2265625 152.9296875 153.6328125 153.6328125 152.9296875 153.6328125 154.3359375 154.3359375 153.6328125 154.3359375 155.0390625 155.0390625 154.3359375 155.0390625 155.7421875 155.7421875 155.0390625 155.7421875 156.4453125 156.4453125 155.7421875 156.4453125 157.1484375 157.1484375 156.4453125 157.1484375 157.8515625 157.8515625 157.1484375 157.8515625 158.5546875 158.5546875 157.8515625 158.5546875 159.2578125 159.2578125 158.5546875 159.2578125 159.9609375 159.9609375 159.2578125 159.9609375 160.6640625 160.6640625 159.9609375 160.6640625 161.3671875 161.3671875 160.6640625 161.3671875 162.0703125 162.0703125 161.3671875 162.0703125 162.7734375 162.7734375 162.0703125 162.7734375 163.4765625 163.4765625 162.7734375 163.4765625 164.1796875 164.1796875 163.4765625 164.1796875 164.8828125 164.8828125 164.1796875 164.8828125 165.5859375 165.5859375 164.8828125 165.5859375 166.2890625 166.2890625 165.5859375 166.2890625 166.9921875 166.9921875 166.2890625 166.9921875 167.6953125 167.6953125 166.9921875 167.6953125 168.3984375 168.3984375 167.6953125 168.3984375 169.1015625 169.1015625 168.3984375 169.1015625 169.8046875 169.8046875 169.1015625 169.8046875 170.5078125 170.5078125 169.8046875 170.5078125 171.2109375 171.2109375 170.5078125 171.2109375 171.9140625 171.9140625 171.2109375 171.9140625 172.6171875 172.6171875 171.9140625 172.6171875 173.3203125 173.3203125 172.6171875 173.3203125 174.0234375 174.0234375 173.3203125 174.0234375 174.7265625 174.7265625 174.0234375 174.7265625 175.4296875 175.4296875 174.7265625 175.4296875 176.1328125 176.1328125 175.4296875 176.1328125 176.8359375 176.8359375 176.1328125 176.8359375 177.5390625 177.5390625 176.8359375 177.5390625 178.2421875 178.2421875 177.5390625 178.2421875 178.9453125 178.9453125 178.2421875 178.9453125 179.6484375 179.6484375 178.9453125 179.6484375 180.3515625 180.3515625 179.6484375 180.3515625 181.0546875 181.0546875 180.3515625 181.0546875 181.7578125 181.7578125 181.0546875 181.7578125 182.4609375 182.4609375 181.7578125 182.4609375 183.1640625 183.1640625 182.4609375 183.1640625 183.8671875 183.8671875 183.1640625 183.8671875 184.5703125 184.5703125 183.8671875 184.5703125 185.2734375 185.2734375 184.5703125 185.2734375 185.9765625 185.9765625 185.2734375 185.9765625 186.6796875 186.6796875 185.9765625 186.6796875 187.3828125 187.3828125 186.6796875 187.3828125 188.0859375 188.0859375 187.3828125 188.0859375 188.7890625 188.7890625 188.0859375 188.7890625 189.4921875 189.4921875 188.7890625 189.4921875 190.1953125 190.1953125 189.4921875 190.1953125 190.8984375 190.8984375 190.1953125 190.8984375 191.6015625 191.6015625 190.8984375 191.6015625 192.3046875 192.3046875 191.6015625 192.3046875 193.0078125 193.0078125 192.3046875 193.0078125 193.7109375 193.7109375 193.0078125 193.7109375 194.4140625 194.4140625 193.7109375 194.4140625 195.1171875 195.1171875 194.4140625 195.1171875 195.8203125 195.8203125 195.1171875 195.8203125 196.5234375 196.5234375 195.8203125 196.5234375 197.2265625 197.2265625 196.5234375 +197.2265625 197.9296875 197.9296875 197.2265625 197.9296875 198.6328125 198.6328125 197.9296875 198.6328125 199.3359375 199.3359375 198.6328125 199.3359375 200.0390625 200.0390625 199.3359375 200.0390625 200.7421875 200.7421875 200.0390625 200.7421875 201.4453125 201.4453125 200.7421875 201.4453125 202.1484375 202.1484375 201.4453125 202.1484375 202.8515625 202.8515625 202.1484375 202.8515625 203.5546875 203.5546875 202.8515625 203.5546875 204.2578125 204.2578125 203.5546875 204.2578125 204.9609375 204.9609375 204.2578125 204.9609375 205.6640625 205.6640625 204.9609375 205.6640625 206.3671875 206.3671875 205.6640625 206.3671875 207.0703125 207.0703125 206.3671875 207.0703125 207.7734375 207.7734375 207.0703125 207.7734375 208.4765625 208.4765625 207.7734375 208.4765625 209.1796875 209.1796875 208.4765625 209.1796875 209.8828125 209.8828125 209.1796875 209.8828125 210.5859375 210.5859375 209.8828125 210.5859375 211.2890625 211.2890625 210.5859375 211.2890625 211.9921875 211.9921875 211.2890625 211.9921875 212.6953125 212.6953125 211.9921875 212.6953125 213.3984375 213.3984375 212.6953125 213.3984375 214.1015625 214.1015625 213.3984375 214.1015625 214.8046875 214.8046875 214.1015625 214.8046875 215.5078125 215.5078125 214.8046875 215.5078125 216.2109375 216.2109375 215.5078125 216.2109375 216.9140625 216.9140625 216.2109375 216.9140625 217.6171875 217.6171875 216.9140625 217.6171875 218.3203125 218.3203125 217.6171875 218.3203125 219.0234375 219.0234375 218.3203125 219.0234375 219.7265625 219.7265625 219.0234375 219.7265625 220.4296875 220.4296875 219.7265625 220.4296875 221.1328125 221.1328125 220.4296875 221.1328125 221.8359375 221.8359375 221.1328125 221.8359375 222.5390625 222.5390625 221.8359375 222.5390625 223.2421875 223.2421875 222.5390625 223.2421875 223.9453125 223.9453125 223.2421875 223.9453125 224.6484375 224.6484375 223.9453125 224.6484375 225.3515625 225.3515625 224.6484375 225.3515625 226.0546875 226.0546875 225.3515625 226.0546875 226.7578125 226.7578125 226.0546875 226.7578125 227.4609375 227.4609375 226.7578125 227.4609375 228.1640625 228.1640625 227.4609375 228.1640625 228.8671875 228.8671875 228.1640625 228.8671875 229.5703125 229.5703125 228.8671875 229.5703125 230.2734375 230.2734375 229.5703125 230.2734375 230.9765625 230.9765625 230.2734375 230.9765625 231.6796875 231.6796875 230.9765625 231.6796875 232.3828125 232.3828125 231.6796875 232.3828125 233.0859375 233.0859375 232.3828125 233.0859375 233.7890625 233.7890625 233.0859375 233.7890625 234.4921875 234.4921875 233.7890625 234.4921875 235.1953125 235.1953125 234.4921875 235.1953125 235.8984375 235.8984375 235.1953125 235.8984375 236.6015625 236.6015625 235.8984375 236.6015625 237.3046875 237.3046875 236.6015625 237.3046875 238.0078125 238.0078125 237.3046875 238.0078125 238.7109375 238.7109375 238.0078125 238.7109375 239.4140625 239.4140625 238.7109375 239.4140625 240.1171875 240.1171875 239.4140625 240.1171875 240.8203125 240.8203125 240.1171875 240.8203125 241.5234375 241.5234375 240.8203125 241.5234375 242.2265625 242.2265625 241.5234375 242.2265625 242.9296875 242.9296875 242.2265625 242.9296875 243.6328125 243.6328125 242.9296875 243.6328125 244.3359375 244.3359375 243.6328125 244.3359375 245.0390625 245.0390625 244.3359375 245.0390625 245.7421875 245.7421875 245.0390625 245.7421875 246.4453125 246.4453125 245.7421875 246.4453125 247.1484375 247.1484375 246.4453125 247.1484375 247.8515625 247.8515625 247.1484375 247.8515625 248.5546875 248.5546875 247.8515625 248.5546875 249.2578125 249.2578125 248.5546875 249.2578125 249.9609375 249.9609375 249.2578125 249.9609375 250.6640625 250.6640625 249.9609375 250.6640625 251.3671875 251.3671875 250.6640625 251.3671875 252.0703125 252.0703125 251.3671875 252.0703125 252.7734375 252.7734375 252.0703125 252.7734375 253.4765625 253.4765625 252.7734375 253.4765625 254.1796875 254.1796875 253.4765625 254.1796875 254.8828125 254.8828125 254.1796875 254.8828125 255.5859375 255.5859375 254.8828125 255.5859375 256.2890625 256.2890625 255.5859375 256.2890625 256.9921875 256.9921875 256.2890625 256.9921875 257.6953125 257.6953125 256.9921875 257.6953125 258.3984375 258.3984375 257.6953125 258.3984375 259.1015625 259.1015625 258.3984375 259.1015625 259.8046875 259.8046875 259.1015625 259.8046875 260.5078125 260.5078125 259.8046875 260.5078125 261.2109375 261.2109375 260.5078125 261.2109375 261.9140625 261.9140625 261.2109375 261.9140625 262.6171875 262.6171875 261.9140625 262.6171875 263.3203125 263.3203125 262.6171875 263.3203125 264.0234375 264.0234375 263.3203125 264.0234375 264.7265625 264.7265625 264.0234375 264.7265625 265.4296875 265.4296875 264.7265625 265.4296875 266.1328125 266.1328125 265.4296875 266.1328125 266.8359375 266.8359375 266.1328125 266.8359375 267.5390625 267.5390625 266.8359375 267.5390625 268.2421875 268.2421875 267.5390625 268.2421875 268.9453125 268.9453125 268.2421875 268.9453125 269.6484375 269.6484375 268.9453125 269.6484375 270.3515625 270.3515625 269.6484375 270.3515625 271.0546875 271.0546875 270.3515625 271.0546875 271.7578125 271.7578125 271.0546875 271.7578125 272.4609375 272.4609375 271.7578125 272.4609375 273.1640625 273.1640625 272.4609375 273.1640625 273.8671875 273.8671875 273.1640625 273.8671875 274.5703125 274.5703125 273.8671875 274.5703125 275.2734375 275.2734375 274.5703125 275.2734375 275.9765625 275.9765625 275.2734375 275.9765625 276.6796875 276.6796875 275.9765625 276.6796875 277.3828125 277.3828125 276.6796875 277.3828125 278.0859375 278.0859375 277.3828125 278.0859375 278.7890625 278.7890625 278.0859375 278.7890625 279.4921875 279.4921875 278.7890625 279.4921875 280.1953125 280.1953125 279.4921875 280.1953125 280.8984375 280.8984375 280.1953125 280.8984375 281.6015625 281.6015625 280.8984375 281.6015625 282.3046875 282.3046875 281.6015625 282.3046875 283.0078125 283.0078125 282.3046875 283.0078125 283.7109375 283.7109375 283.0078125 283.7109375 284.4140625 284.4140625 283.7109375 284.4140625 285.1171875 285.1171875 284.4140625 285.1171875 285.8203125 285.8203125 285.1171875 285.8203125 286.5234375 286.5234375 285.8203125 286.5234375 287.2265625 287.2265625 286.5234375 287.2265625 287.9296875 287.9296875 287.2265625 287.9296875 288.6328125 288.6328125 287.9296875 288.6328125 289.3359375 289.3359375 288.6328125 289.3359375 290.0390625 290.0390625 289.3359375 290.0390625 290.7421875 290.7421875 290.0390625 290.7421875 291.4453125 291.4453125 290.7421875 291.4453125 292.1484375 292.1484375 291.4453125 292.1484375 292.8515625 292.8515625 292.1484375 292.8515625 293.5546875 293.5546875 292.8515625 293.5546875 294.2578125 294.2578125 293.5546875 294.2578125 294.9609375 294.9609375 294.2578125 294.9609375 295.6640625 295.6640625 294.9609375 295.6640625 296.3671875 296.3671875 295.6640625 296.3671875 297.0703125 297.0703125 296.3671875 297.0703125 297.7734375 297.7734375 297.0703125 297.7734375 298.4765625 298.4765625 297.7734375 298.4765625 299.1796875 299.1796875 298.4765625 299.1796875 299.8828125 299.8828125 299.1796875 299.8828125 300.5859375 300.5859375 299.8828125 300.5859375 301.2890625 301.2890625 300.5859375 301.2890625 301.9921875 301.9921875 301.2890625 301.9921875 302.6953125 302.6953125 301.9921875 302.6953125 303.3984375 303.3984375 302.6953125 303.3984375 304.1015625 304.1015625 303.3984375 304.1015625 304.8046875 304.8046875 304.1015625 304.8046875 305.5078125 305.5078125 304.8046875 305.5078125 306.2109375 306.2109375 305.5078125 306.2109375 306.9140625 306.9140625 306.2109375 306.9140625 307.6171875 307.6171875 306.9140625 307.6171875 308.3203125 308.3203125 307.6171875 308.3203125 309.0234375 309.0234375 308.3203125 309.0234375 309.7265625 309.7265625 309.0234375 309.7265625 310.4296875 310.4296875 309.7265625 310.4296875 311.1328125 311.1328125 310.4296875 311.1328125 311.8359375 311.8359375 311.1328125 311.8359375 312.5390625 312.5390625 311.8359375 312.5390625 313.2421875 313.2421875 312.5390625 313.2421875 313.9453125 313.9453125 313.2421875 313.9453125 314.6484375 314.6484375 313.9453125 314.6484375 315.3515625 315.3515625 314.6484375 315.3515625 316.0546875 316.0546875 315.3515625 316.0546875 316.7578125 316.7578125 316.0546875 316.7578125 317.4609375 317.4609375 316.7578125 317.4609375 318.1640625 318.1640625 317.4609375 318.1640625 318.8671875 318.8671875 318.1640625 318.8671875 319.5703125 319.5703125 318.8671875 319.5703125 320.2734375 320.2734375 319.5703125 320.2734375 320.9765625 320.9765625 320.2734375 320.9765625 321.6796875 321.6796875 320.9765625 321.6796875 322.3828125 322.3828125 321.6796875 322.3828125 323.0859375 323.0859375 322.3828125 323.0859375 323.7890625 323.7890625 323.0859375 323.7890625 324.4921875 324.4921875 323.7890625 324.4921875 325.1953125 325.1953125 324.4921875 325.1953125 325.8984375 325.8984375 325.1953125 325.8984375 326.6015625 326.6015625 325.8984375 326.6015625 327.3046875 327.3046875 326.6015625 327.3046875 328.0078125 328.0078125 327.3046875 328.0078125 328.7109375 328.7109375 328.0078125 328.7109375 329.4140625 329.4140625 328.7109375 329.4140625 330.1171875 330.1171875 329.4140625 330.1171875 330.8203125 330.8203125 330.1171875 330.8203125 331.5234375 331.5234375 330.8203125 331.5234375 332.2265625 332.2265625 331.5234375 332.2265625 332.9296875 332.9296875 332.2265625 332.9296875 333.6328125 333.6328125 332.9296875 333.6328125 334.3359375 334.3359375 333.6328125 334.3359375 335.0390625 335.0390625 334.3359375 335.0390625 335.7421875 335.7421875 335.0390625 335.7421875 336.4453125 336.4453125 335.7421875 336.4453125 337.1484375 337.1484375 336.4453125 337.1484375 337.8515625 337.8515625 337.1484375 337.8515625 338.5546875 338.5546875 337.8515625 338.5546875 339.2578125 339.2578125 338.5546875 339.2578125 339.9609375 339.9609375 339.2578125 339.9609375 340.6640625 340.6640625 339.9609375 340.6640625 341.3671875 341.3671875 340.6640625 341.3671875 342.0703125 342.0703125 341.3671875 342.0703125 342.7734375 342.7734375 342.0703125 342.7734375 343.4765625 343.4765625 342.7734375 343.4765625 344.1796875 344.1796875 343.4765625 344.1796875 344.8828125 344.8828125 344.1796875 344.8828125 345.5859375 345.5859375 344.8828125 345.5859375 346.2890625 346.2890625 345.5859375 346.2890625 346.9921875 346.9921875 346.2890625 346.9921875 347.6953125 347.6953125 346.9921875 347.6953125 348.3984375 348.3984375 347.6953125 348.3984375 349.1015625 349.1015625 348.3984375 349.1015625 349.8046875 349.8046875 349.1015625 349.8046875 350.5078125 350.5078125 349.8046875 350.5078125 351.2109375 351.2109375 350.5078125 351.2109375 351.9140625 351.9140625 351.2109375 351.9140625 352.6171875 352.6171875 351.9140625 352.6171875 353.3203125 353.3203125 352.6171875 353.3203125 354.0234375 354.0234375 353.3203125 354.0234375 354.7265625 354.7265625 354.0234375 354.7265625 355.4296875 355.4296875 354.7265625 355.4296875 356.1328125 356.1328125 355.4296875 356.1328125 356.8359375 356.8359375 356.1328125 356.8359375 357.5390625 357.5390625 356.8359375 357.5390625 358.2421875 358.2421875 357.5390625 358.2421875 358.9453125 358.9453125 358.2421875 358.9453125 359.6484375 359.6484375 358.9453125 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 +193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 +193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 +193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 +193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 +193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 +193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.36 0.36 0.36 -0.36 0.36000002861 1.08000002861 1.08000002861 0.36000002861 1.08000005722 1.80000005722 1.80000005722 1.08000005722 1.80000008583 2.52000008583 2.52000008583 1.80000008583 2.52000011444 3.24000011444 3.24000011444 2.52000011444 3.23999990463 3.95999990463 3.95999990463 3.23999990463 3.96000017166 4.68000017166 4.68000017166 3.96000017166 4.67999996185 5.39999996185 5.39999996185 4.67999996185 5.40000022888 6.12000022888 6.12000022888 5.40000022888 6.12000001907 6.84000001907 6.84000001907 6.12000001907 6.83999980927 7.55999980927 7.55999980927 6.83999980927 7.56000007629 8.28000007629 8.28000007629 7.56000007629 8.28000034332 9.00000034332 9.00000034332 8.28000034332 8.99999965668 9.71999965668 9.71999965668 8.99999965668 9.71999992371 10.4399999237 10.4399999237 9.71999992371 10.4400001907 11.1600001907 11.1600001907 10.4400001907 11.1600004578 11.8800004578 11.8800004578 11.1600004578 11.8799997711 12.5999997711 12.5999997711 11.8799997711 12.6000000381 13.3200000381 13.3200000381 12.6000000381 13.3200003052 14.0400003052 14.0400003052 13.3200003052 14.0399996185 14.7599996185 14.7599996185 14.0399996185 14.7599998856 15.4799998856 15.4799998856 14.7599998856 15.4800001526 16.2000001526 16.2000001526 15.4800001526 16.1999994659 16.9199994659 16.9199994659 16.1999994659 16.9200006866 17.6400006866 17.6400006866 16.9200006866 17.64 18.36 18.36 17.64 18.3599993134 19.0799993134 19.0799993134 18.3599993134 19.0800005341 19.8000005341 19.8000005341 19.0800005341 19.7999998474 20.5199998474 20.5199998474 19.7999998474 20.5199991608 21.2399991608 21.2399991608 20.5199991608 21.2400003815 21.9600003815 21.9600003815 21.2400003815 21.9599996948 22.6799996948 22.6799996948 21.9599996948 22.6800009155 23.4000009155 23.4000009155 22.6800009155 23.4000002289 24.1200002289 24.1200002289 23.4000002289 24.1199995422 24.8399995422 24.8399995422 24.1199995422 24.8400007629 25.5600007629 25.5600007629 24.8400007629 25.5600000763 26.2800000763 26.2800000763 25.5600000763 26.2799993896 26.9999993896 26.9999993896 26.2799993896 27.0000006104 27.7200006104 27.7200006104 27.0000006104 27.7199999237 28.4399999237 28.4399999237 27.7199999237 28.4399992371 29.1599992371 29.1599992371 28.4399992371 29.1600004578 29.8800004578 29.8800004578 29.1600004578 29.8799997711 30.5999997711 30.5999997711 29.8799997711 30.5999990845 31.3199990845 31.3199990845 30.5999990845 31.3200003052 32.0400003052 32.0400003052 31.3200003052 32.0400015259 32.7600015259 32.7600015259 32.0400015259 32.7599989319 33.4799989319 33.4799989319 32.7599989319 33.4800001526 34.2000001526 34.2000001526 33.4800001526 34.2000013733 34.9200013733 34.9200013733 34.2000013733 34.9199987793 35.6399987793 35.6399987793 34.9199987793 35.64 36.36 36.36 35.64 36.3600012207 37.0800012207 37.0800012207 36.3600012207 37.0799986267 37.7999986267 37.7999986267 37.0799986267 37.7999998474 38.5199998474 38.5199998474 37.7999998474 38.5200010681 39.2400010681 39.2400010681 38.5200010681 39.2399984741 39.9599984741 39.9599984741 39.2399984741 39.9599996948 40.6799996948 40.6799996948 39.9599996948 40.6800009155 41.4000009155 41.4000009155 40.6800009155 41.3999983215 42.1199983215 42.1199983215 41.3999983215 42.1199995422 42.8399995422 42.8399995422 42.1199995422 42.8400007629 43.5600007629 43.5600007629 42.8400007629 43.5599981689 44.2799981689 44.2799981689 43.5599981689 44.2799993896 44.9999993896 44.9999993896 44.2799993896 45.0000006104 45.7200006104 45.7200006104 45.0000006104 45.7200018311 46.4400018311 46.4400018311 45.7200018311 46.4399992371 47.1599992371 47.1599992371 46.4399992371 47.1600004578 47.8800004578 47.8800004578 47.1600004578 47.8800016785 48.6000016785 48.6000016785 47.8800016785 48.5999990845 49.3199990845 49.3199990845 48.5999990845 49.3200003052 50.0400003052 50.0400003052 49.3200003052 50.0400015259 50.7600015259 50.7600015259 50.0400015259 50.7599989319 51.4799989319 51.4799989319 50.7599989319 51.4800001526 52.2000001526 52.2000001526 51.4800001526 52.2000013733 52.9200013733 52.9200013733 52.2000013733 52.9199987793 53.6399987793 53.6399987793 52.9199987793 53.64 54.36 54.36 53.64 54.3600012207 55.0800012207 55.0800012207 54.3600012207 55.0799986267 55.7999986267 55.7999986267 55.0799986267 55.7999998474 56.5199998474 56.5199998474 55.7999998474 56.5200010681 57.2400010681 57.2400010681 56.5200010681 57.2399984741 57.9599984741 57.9599984741 57.2399984741 57.9599996948 58.6799996948 58.6799996948 57.9599996948 58.6800009155 59.4000009155 59.4000009155 58.6800009155 59.3999983215 60.1199983215 60.1199983215 59.3999983215 60.1199995422 60.8399995422 60.8399995422 60.1199995422 60.8400007629 61.5600007629 61.5600007629 60.8400007629 61.5599981689 62.2799981689 62.2799981689 61.5599981689 62.2799993896 62.9999993896 62.9999993896 62.2799993896 63.0000006104 63.7200006104 63.7200006104 63.0000006104 63.7200018311 64.4400018311 64.4400018311 63.7200018311 64.4400030518 65.1600030518 65.1600030518 64.4400030518 65.1599966431 65.8799966431 65.8799966431 65.1599966431 65.8799978638 66.5999978638 66.5999978638 65.8799978638 66.5999990845 67.3199990845 67.3199990845 66.5999990845 67.3200003052 68.0400003052 68.0400003052 67.3200003052 68.0400015259 68.7600015259 68.7600015259 68.0400015259 68.7600027466 69.4800027466 69.4800027466 68.7600027466 69.4799963379 70.1999963379 70.1999963379 69.4799963379 70.1999975586 70.9199975586 70.9199975586 70.1999975586 70.9199987793 71.6399987793 71.6399987793 70.9199987793 71.64 72.36 72.36 71.64 72.3600012207 73.0800012207 73.0800012207 72.3600012207 73.0800024414 73.8000024414 73.8000024414 73.0800024414 73.8000036621 74.5200036621 74.5200036621 73.8000036621 74.5199972534 75.2399972534 75.2399972534 74.5199972534 75.2399984741 75.9599984741 75.9599984741 75.2399984741 75.9599996948 76.6799996948 76.6799996948 75.9599996948 76.6800009155 77.4000009155 77.4000009155 76.6800009155 77.4000021362 78.1200021362 78.1200021362 77.4000021362 78.1200033569 78.8400033569 78.8400033569 78.1200033569 78.8399969482 79.5599969482 79.5599969482 78.8399969482 79.5599981689 80.2799981689 80.2799981689 79.5599981689 80.2799993896 80.9999993896 80.9999993896 80.2799993896 81.0000006104 81.7200006104 81.7200006104 81.0000006104 81.7200018311 82.4400018311 82.4400018311 81.7200018311 82.4400030518 83.1600030518 83.1600030518 82.4400030518 83.1599966431 83.8799966431 83.8799966431 83.1599966431 83.8799978638 84.5999978638 84.5999978638 83.8799978638 84.5999990845 85.3199990845 85.3199990845 84.5999990845 85.3200003052 86.0400003052 86.0400003052 85.3200003052 86.0400015259 86.7600015259 86.7600015259 86.0400015259 86.7600027466 87.4800027466 87.4800027466 86.7600027466 87.4799963379 88.1999963379 88.1999963379 87.4799963379 88.1999975586 88.9199975586 88.9199975586 88.1999975586 88.9199987793 89.6399987793 89.6399987793 88.9199987793 89.64 90.36 90.36 89.64 90.3600012207 91.0800012207 91.0800012207 90.3600012207 91.0800024414 91.8000024414 91.8000024414 91.0800024414 91.8000036621 92.5200036621 92.5200036621 91.8000036621 92.5199972534 93.2399972534 93.2399972534 92.5199972534 93.2399984741 93.9599984741 93.9599984741 93.2399984741 93.9599996948 94.6799996948 94.6799996948 93.9599996948 94.6800009155 95.4000009155 95.4000009155 94.6800009155 95.4000021362 96.1200021362 96.1200021362 95.4000021362 96.1200033569 96.8400033569 96.8400033569 96.1200033569 96.8399969482 97.5599969482 97.5599969482 96.8399969482 97.5599981689 98.2799981689 98.2799981689 97.5599981689 98.2799993896 98.9999993896 98.9999993896 98.2799993896 99.0000006104 99.7200006104 99.7200006104 99.0000006104 99.7200018311 100.440001831 100.440001831 99.7200018311 100.440003052 101.160003052 101.160003052 100.440003052 101.159996643 101.879996643 101.879996643 101.159996643 101.879997864 102.599997864 102.599997864 101.879997864 102.599999084 103.319999084 103.319999084 102.599999084 103.320000305 104.040000305 104.040000305 103.320000305 104.040001526 104.760001526 104.760001526 104.040001526 104.760002747 105.480002747 105.480002747 104.760002747 105.479996338 106.199996338 106.199996338 105.479996338 106.199997559 106.919997559 106.919997559 106.199997559 106.919998779 107.639998779 107.639998779 106.919998779 107.64 108.36 108.36 107.64 108.360001221 109.080001221 109.080001221 108.360001221 109.080002441 109.800002441 109.800002441 109.080002441 109.800003662 110.520003662 110.520003662 109.800003662 110.519997253 111.239997253 111.239997253 110.519997253 111.239998474 111.959998474 111.959998474 111.239998474 111.959999695 112.679999695 112.679999695 111.959999695 112.680000916 113.400000916 113.400000916 112.680000916 113.400002136 114.120002136 114.120002136 113.400002136 114.120003357 114.840003357 114.840003357 114.120003357 114.839996948 115.559996948 115.559996948 114.839996948 115.559998169 116.279998169 116.279998169 115.559998169 116.27999939 116.99999939 116.99999939 116.27999939 117.00000061 117.72000061 117.72000061 117.00000061 117.720001831 118.440001831 118.440001831 117.720001831 118.440003052 119.160003052 119.160003052 118.440003052 119.159996643 119.879996643 119.879996643 119.159996643 119.879997864 120.599997864 120.599997864 119.879997864 120.599999084 121.319999084 121.319999084 120.599999084 121.320000305 122.040000305 122.040000305 121.320000305 122.040001526 122.760001526 122.760001526 122.040001526 122.760002747 123.480002747 123.480002747 122.760002747 123.479996338 124.199996338 124.199996338 123.479996338 124.199997559 124.919997559 124.919997559 124.199997559 124.919998779 125.639998779 125.639998779 124.919998779 125.64 126.36 126.36 125.64 126.360001221 127.080001221 127.080001221 126.360001221 127.080002441 127.800002441 127.800002441 127.080002441 127.800003662 128.520003662 128.520003662 127.800003662 128.520004883 129.240004883 129.240004883 128.520004883 129.240006104 129.960006104 129.960006104 129.240006104 129.960007324 130.680007324 130.680007324 129.960007324 130.679993286 131.399993286 131.399993286 130.679993286 131.399994507 132.119994507 132.119994507 131.399994507 132.119995728 132.839995728 132.839995728 132.119995728 132.839996948 133.559996948 133.559996948 132.839996948 133.559998169 134.279998169 134.279998169 133.559998169 134.27999939 134.99999939 134.99999939 134.27999939 135.00000061 135.72000061 135.72000061 135.00000061 135.720001831 136.440001831 136.440001831 135.720001831 136.440003052 137.160003052 137.160003052 136.440003052 137.160004272 137.880004272 137.880004272 137.160004272 137.880005493 138.600005493 138.600005493 137.880005493 138.600006714 139.320006714 139.320006714 138.600006714 139.319992676 140.039992676 140.039992676 139.319992676 140.039993896 140.759993896 140.759993896 140.039993896 140.759995117 141.479995117 141.479995117 140.759995117 141.479996338 142.199996338 142.199996338 141.479996338 142.199997559 142.919997559 142.919997559 142.199997559 142.919998779 143.639998779 143.639998779 142.919998779 143.64 144.36 144.36 143.64 144.360001221 145.080001221 145.080001221 144.360001221 145.080002441 145.800002441 145.800002441 145.080002441 145.800003662 146.520003662 146.520003662 145.800003662 146.520004883 147.240004883 147.240004883 146.520004883 147.240006104 147.960006104 147.960006104 147.240006104 147.960007324 148.680007324 148.680007324 147.960007324 148.679993286 149.399993286 149.399993286 148.679993286 149.399994507 150.119994507 150.119994507 149.399994507 150.119995728 150.839995728 150.839995728 150.119995728 150.839996948 151.559996948 151.559996948 150.839996948 151.559998169 152.279998169 152.279998169 151.559998169 152.27999939 152.99999939 152.99999939 152.27999939 153.00000061 153.72000061 153.72000061 153.00000061 153.720001831 154.440001831 154.440001831 153.720001831 154.440003052 155.160003052 155.160003052 154.440003052 155.160004272 155.880004272 155.880004272 155.160004272 155.880005493 156.600005493 156.600005493 155.880005493 156.600006714 157.320006714 157.320006714 156.600006714 157.319992676 158.039992676 158.039992676 157.319992676 158.039993896 158.759993896 158.759993896 158.039993896 158.759995117 159.479995117 159.479995117 158.759995117 159.479996338 160.199996338 160.199996338 159.479996338 160.199997559 160.919997559 160.919997559 160.199997559 160.919998779 161.639998779 161.639998779 160.919998779 161.64 162.36 162.36 161.64 162.360001221 163.080001221 163.080001221 162.360001221 163.080002441 163.800002441 163.800002441 163.080002441 163.800003662 164.520003662 164.520003662 163.800003662 164.520004883 165.240004883 165.240004883 164.520004883 165.240006104 165.960006104 165.960006104 165.240006104 165.960007324 166.680007324 166.680007324 165.960007324 166.679993286 167.399993286 167.399993286 166.679993286 167.399994507 168.119994507 168.119994507 167.399994507 168.119995728 168.839995728 168.839995728 168.119995728 168.839996948 169.559996948 169.559996948 168.839996948 169.559998169 170.279998169 170.279998169 169.559998169 170.27999939 170.99999939 170.99999939 170.27999939 171.00000061 171.72000061 171.72000061 171.00000061 171.720001831 172.440001831 172.440001831 171.720001831 172.440003052 173.160003052 173.160003052 172.440003052 173.160004272 173.880004272 173.880004272 173.160004272 173.880005493 174.600005493 174.600005493 173.880005493 174.600006714 175.320006714 175.320006714 174.600006714 175.319992676 176.039992676 176.039992676 175.319992676 176.039993896 176.759993896 176.759993896 176.039993896 176.759995117 177.479995117 177.479995117 176.759995117 177.479996338 178.199996338 178.199996338 177.479996338 178.199997559 178.919997559 178.919997559 178.199997559 178.919998779 179.639998779 179.639998779 178.919998779 179.64 180.36 180.36 179.64 180.360001221 181.080001221 181.080001221 180.360001221 181.080002441 181.800002441 181.800002441 181.080002441 181.800003662 182.520003662 182.520003662 181.800003662 182.520004883 183.240004883 183.240004883 182.520004883 183.240006104 183.960006104 183.960006104 183.240006104 183.960007324 184.680007324 184.680007324 183.960007324 184.679993286 185.399993286 185.399993286 184.679993286 185.399994507 186.119994507 186.119994507 185.399994507 186.119995728 186.839995728 186.839995728 186.119995728 186.839996948 187.559996948 187.559996948 186.839996948 187.559998169 188.279998169 188.279998169 187.559998169 188.27999939 188.99999939 188.99999939 188.27999939 189.00000061 189.72000061 189.72000061 189.00000061 189.720001831 190.440001831 190.440001831 189.720001831 190.440003052 191.160003052 191.160003052 190.440003052 191.160004272 191.880004272 191.880004272 191.160004272 191.880005493 192.600005493 192.600005493 191.880005493 192.600006714 193.320006714 193.320006714 192.600006714 +193.319992676 194.039992676 194.039992676 193.319992676 194.039993896 194.759993896 194.759993896 194.039993896 194.759995117 195.479995117 195.479995117 194.759995117 195.479996338 196.199996338 196.199996338 195.479996338 196.199997559 196.919997559 196.919997559 196.199997559 196.919998779 197.639998779 197.639998779 196.919998779 197.64 198.36 198.36 197.64 198.360001221 199.080001221 199.080001221 198.360001221 199.080002441 199.800002441 199.800002441 199.080002441 199.800003662 200.520003662 200.520003662 199.800003662 200.520004883 201.240004883 201.240004883 200.520004883 201.240006104 201.960006104 201.960006104 201.240006104 201.960007324 202.680007324 202.680007324 201.960007324 202.679993286 203.399993286 203.399993286 202.679993286 203.399994507 204.119994507 204.119994507 203.399994507 204.119995728 204.839995728 204.839995728 204.119995728 204.839996948 205.559996948 205.559996948 204.839996948 205.559998169 206.279998169 206.279998169 205.559998169 206.27999939 206.99999939 206.99999939 206.27999939 207.00000061 207.72000061 207.72000061 207.00000061 207.720001831 208.440001831 208.440001831 207.720001831 208.440003052 209.160003052 209.160003052 208.440003052 209.160004272 209.880004272 209.880004272 209.160004272 209.880005493 210.600005493 210.600005493 209.880005493 210.600006714 211.320006714 211.320006714 210.600006714 211.319992676 212.039992676 212.039992676 211.319992676 212.039993896 212.759993896 212.759993896 212.039993896 212.759995117 213.479995117 213.479995117 212.759995117 213.479996338 214.199996338 214.199996338 213.479996338 214.199997559 214.919997559 214.919997559 214.199997559 214.919998779 215.639998779 215.639998779 214.919998779 215.64 216.36 216.36 215.64 216.360001221 217.080001221 217.080001221 216.360001221 217.080002441 217.800002441 217.800002441 217.080002441 217.800003662 218.520003662 218.520003662 217.800003662 218.520004883 219.240004883 219.240004883 218.520004883 219.240006104 219.960006104 219.960006104 219.240006104 219.960007324 220.680007324 220.680007324 219.960007324 220.679993286 221.399993286 221.399993286 220.679993286 221.399994507 222.119994507 222.119994507 221.399994507 222.119995728 222.839995728 222.839995728 222.119995728 222.839996948 223.559996948 223.559996948 222.839996948 223.559998169 224.279998169 224.279998169 223.559998169 224.27999939 224.99999939 224.99999939 224.27999939 225.00000061 225.72000061 225.72000061 225.00000061 225.720001831 226.440001831 226.440001831 225.720001831 226.440003052 227.160003052 227.160003052 226.440003052 227.160004272 227.880004272 227.880004272 227.160004272 227.880005493 228.600005493 228.600005493 227.880005493 228.600006714 229.320006714 229.320006714 228.600006714 229.319992676 230.039992676 230.039992676 229.319992676 230.039993896 230.759993896 230.759993896 230.039993896 230.759995117 231.479995117 231.479995117 230.759995117 231.479996338 232.199996338 232.199996338 231.479996338 232.199997559 232.919997559 232.919997559 232.199997559 232.919998779 233.639998779 233.639998779 232.919998779 233.64 234.36 234.36 233.64 234.360001221 235.080001221 235.080001221 234.360001221 235.080002441 235.800002441 235.800002441 235.080002441 235.800003662 236.520003662 236.520003662 235.800003662 236.520004883 237.240004883 237.240004883 236.520004883 237.240006104 237.960006104 237.960006104 237.240006104 237.960007324 238.680007324 238.680007324 237.960007324 238.679993286 239.399993286 239.399993286 238.679993286 239.399994507 240.119994507 240.119994507 239.399994507 240.119995728 240.839995728 240.839995728 240.119995728 240.839996948 241.559996948 241.559996948 240.839996948 241.559998169 242.279998169 242.279998169 241.559998169 242.27999939 242.99999939 242.99999939 242.27999939 243.00000061 243.72000061 243.72000061 243.00000061 243.720001831 244.440001831 244.440001831 243.720001831 244.440003052 245.160003052 245.160003052 244.440003052 245.160004272 245.880004272 245.880004272 245.160004272 245.880005493 246.600005493 246.600005493 245.880005493 246.600006714 247.320006714 247.320006714 246.600006714 247.319992676 248.039992676 248.039992676 247.319992676 248.039993896 248.759993896 248.759993896 248.039993896 248.759995117 249.479995117 249.479995117 248.759995117 249.479996338 250.199996338 250.199996338 249.479996338 250.199997559 250.919997559 250.919997559 250.199997559 250.919998779 251.639998779 251.639998779 250.919998779 251.64 252.36 252.36 251.64 252.360001221 253.080001221 253.080001221 252.360001221 253.080002441 253.800002441 253.800002441 253.080002441 253.800003662 254.520003662 254.520003662 253.800003662 254.520004883 255.240004883 255.240004883 254.520004883 255.240006104 255.960006104 255.960006104 255.240006104 255.960007324 256.680007324 256.680007324 255.960007324 256.680008545 257.400008545 257.400008545 256.680008545 257.400009766 258.120009766 258.120009766 257.400009766 258.120010986 258.840010986 258.840010986 258.120010986 258.840012207 259.560012207 259.560012207 258.840012207 259.560013428 260.280013428 260.280013428 259.560013428 260.280014648 261.000014648 261.000014648 260.280014648 260.999985352 261.719985352 261.719985352 260.999985352 261.719986572 262.439986572 262.439986572 261.719986572 262.439987793 263.159987793 263.159987793 262.439987793 263.159989014 263.879989014 263.879989014 263.159989014 263.879990234 264.599990234 264.599990234 263.879990234 264.599991455 265.319991455 265.319991455 264.599991455 265.319992676 266.039992676 266.039992676 265.319992676 266.039993896 266.759993896 266.759993896 266.039993896 266.759995117 267.479995117 267.479995117 266.759995117 267.479996338 268.199996338 268.199996338 267.479996338 268.199997559 268.919997559 268.919997559 268.199997559 268.919998779 269.639998779 269.639998779 268.919998779 269.64 270.36 270.36 269.64 270.360001221 271.080001221 271.080001221 270.360001221 271.080002441 271.800002441 271.800002441 271.080002441 271.800003662 272.520003662 272.520003662 271.800003662 272.520004883 273.240004883 273.240004883 272.520004883 273.240006104 273.960006104 273.960006104 273.240006104 273.960007324 274.680007324 274.680007324 273.960007324 274.680008545 275.400008545 275.400008545 274.680008545 275.400009766 276.120009766 276.120009766 275.400009766 276.120010986 276.840010986 276.840010986 276.120010986 276.840012207 277.560012207 277.560012207 276.840012207 277.560013428 278.280013428 278.280013428 277.560013428 278.280014648 279.000014648 279.000014648 278.280014648 278.999985352 279.719985352 279.719985352 278.999985352 279.719986572 280.439986572 280.439986572 279.719986572 280.439987793 281.159987793 281.159987793 280.439987793 281.159989014 281.879989014 281.879989014 281.159989014 281.879990234 282.599990234 282.599990234 281.879990234 282.599991455 283.319991455 283.319991455 282.599991455 283.319992676 284.039992676 284.039992676 283.319992676 284.039993896 284.759993896 284.759993896 284.039993896 284.759995117 285.479995117 285.479995117 284.759995117 285.479996338 286.199996338 286.199996338 285.479996338 286.199997559 286.919997559 286.919997559 286.199997559 286.919998779 287.639998779 287.639998779 286.919998779 287.64 288.36 288.36 287.64 288.360001221 289.080001221 289.080001221 288.360001221 289.080002441 289.800002441 289.800002441 289.080002441 289.800003662 290.520003662 290.520003662 289.800003662 290.520004883 291.240004883 291.240004883 290.520004883 291.240006104 291.960006104 291.960006104 291.240006104 291.960007324 292.680007324 292.680007324 291.960007324 292.680008545 293.400008545 293.400008545 292.680008545 293.400009766 294.120009766 294.120009766 293.400009766 294.120010986 294.840010986 294.840010986 294.120010986 294.840012207 295.560012207 295.560012207 294.840012207 295.560013428 296.280013428 296.280013428 295.560013428 296.280014648 297.000014648 297.000014648 296.280014648 296.999985352 297.719985352 297.719985352 296.999985352 297.719986572 298.439986572 298.439986572 297.719986572 298.439987793 299.159987793 299.159987793 298.439987793 299.159989014 299.879989014 299.879989014 299.159989014 299.879990234 300.599990234 300.599990234 299.879990234 300.599991455 301.319991455 301.319991455 300.599991455 301.319992676 302.039992676 302.039992676 301.319992676 302.039993896 302.759993896 302.759993896 302.039993896 302.759995117 303.479995117 303.479995117 302.759995117 303.479996338 304.199996338 304.199996338 303.479996338 304.199997559 304.919997559 304.919997559 304.199997559 304.919998779 305.639998779 305.639998779 304.919998779 305.64 306.36 306.36 305.64 306.360001221 307.080001221 307.080001221 306.360001221 307.080002441 307.800002441 307.800002441 307.080002441 307.800003662 308.520003662 308.520003662 307.800003662 308.520004883 309.240004883 309.240004883 308.520004883 309.240006104 309.960006104 309.960006104 309.240006104 309.960007324 310.680007324 310.680007324 309.960007324 310.680008545 311.400008545 311.400008545 310.680008545 311.400009766 312.120009766 312.120009766 311.400009766 312.120010986 312.840010986 312.840010986 312.120010986 312.840012207 313.560012207 313.560012207 312.840012207 313.560013428 314.280013428 314.280013428 313.560013428 314.280014648 315.000014648 315.000014648 314.280014648 314.999985352 315.719985352 315.719985352 314.999985352 315.719986572 316.439986572 316.439986572 315.719986572 316.439987793 317.159987793 317.159987793 316.439987793 317.159989014 317.879989014 317.879989014 317.159989014 317.879990234 318.599990234 318.599990234 317.879990234 318.599991455 319.319991455 319.319991455 318.599991455 319.319992676 320.039992676 320.039992676 319.319992676 320.039993896 320.759993896 320.759993896 320.039993896 320.759995117 321.479995117 321.479995117 320.759995117 321.479996338 322.199996338 322.199996338 321.479996338 322.199997559 322.919997559 322.919997559 322.199997559 322.919998779 323.639998779 323.639998779 322.919998779 323.64 324.36 324.36 323.64 324.360001221 325.080001221 325.080001221 324.360001221 325.080002441 325.800002441 325.800002441 325.080002441 325.800003662 326.520003662 326.520003662 325.800003662 326.520004883 327.240004883 327.240004883 326.520004883 327.240006104 327.960006104 327.960006104 327.240006104 327.960007324 328.680007324 328.680007324 327.960007324 328.680008545 329.400008545 329.400008545 328.680008545 329.400009766 330.120009766 330.120009766 329.400009766 330.120010986 330.840010986 330.840010986 330.120010986 330.840012207 331.560012207 331.560012207 330.840012207 331.560013428 332.280013428 332.280013428 331.560013428 332.280014648 333.000014648 333.000014648 332.280014648 332.999985352 333.719985352 333.719985352 332.999985352 333.719986572 334.439986572 334.439986572 333.719986572 334.439987793 335.159987793 335.159987793 334.439987793 335.159989014 335.879989014 335.879989014 335.159989014 335.879990234 336.599990234 336.599990234 335.879990234 336.599991455 337.319991455 337.319991455 336.599991455 337.319992676 338.039992676 338.039992676 337.319992676 338.039993896 338.759993896 338.759993896 338.039993896 338.759995117 339.479995117 339.479995117 338.759995117 339.479996338 340.199996338 340.199996338 339.479996338 340.199997559 340.919997559 340.919997559 340.199997559 340.919998779 341.639998779 341.639998779 340.919998779 341.64 342.36 342.36 341.64 342.360001221 343.080001221 343.080001221 342.360001221 343.080002441 343.800002441 343.800002441 343.080002441 343.800003662 344.520003662 344.520003662 343.800003662 344.520004883 345.240004883 345.240004883 344.520004883 345.240006104 345.960006104 345.960006104 345.240006104 345.960007324 346.680007324 346.680007324 345.960007324 346.680008545 347.400008545 347.400008545 346.680008545 347.400009766 348.120009766 348.120009766 347.400009766 348.120010986 348.840010986 348.840010986 348.120010986 348.840012207 349.560012207 349.560012207 348.840012207 349.560013428 350.280013428 350.280013428 349.560013428 350.280014648 351.000014648 351.000014648 350.280014648 350.999985352 351.719985352 351.719985352 350.999985352 351.719986572 352.439986572 352.439986572 351.719986572 352.439987793 353.159987793 353.159987793 352.439987793 353.159989014 353.879989014 353.879989014 353.159989014 353.879990234 354.599990234 354.599990234 353.879990234 354.599991455 355.319991455 355.319991455 354.599991455 355.319992676 356.039992676 356.039992676 355.319992676 356.039993896 356.759993896 356.759993896 356.039993896 356.759995117 357.479995117 357.479995117 356.759995117 357.479996338 358.199996338 358.199996338 357.479996338 358.199997559 358.919997559 358.919997559 358.199997559 358.919998779 359.639998779 359.639998779 358.919998779 -0.37037037037 0.37037037037 0.37037037037 -0.37037037037 0.370370346087 1.11111108683 1.11111108683 0.370370346087 1.11111106254 1.85185180329 1.85185180329 1.11111106254 1.85185195782 2.59259269856 2.59259269856 1.85185195782 2.59259249546 3.3333332362 3.3333332362 2.59259249546 3.33333327152 4.07407401226 4.07407401226 3.33333327152 4.074074286 4.81481502674 4.81481502674 4.074074286 4.81481458523 5.55555532597 5.55555532597 4.81481458523 5.55555536129 6.29629610203 6.29629610203 5.55555536129 6.29629613735 7.03703687809 7.03703687809 6.29629613735 7.03703691341 7.77777765415 7.77777765415 7.03703691341 7.77777816631 8.51851890705 8.51851890705 7.77777816631 8.51851894237 9.25925968311 9.25925968311 8.51851894237 9.25925971844 10.0000004592 10.0000004592 9.25925971844 9.99999954082 10.7407402816 10.7407402816 9.99999954082 10.7407403169 11.4814810576 11.4814810576 10.7407403169 11.4814810929 12.2222218337 12.2222218337 11.4814810929 12.222221869 12.9629626098 12.9629626098 12.222221869 12.9629626451 13.7037033858 13.7037033858 12.9629626451 13.7037034211 14.4444441619 14.4444441619 13.7037034211 14.4444441972 15.1851849379 15.1851849379 14.4444441972 15.1851849733 15.925925714 15.925925714 15.1851849733 15.925926703 16.6666674437 16.6666674437 15.925926703 16.6666665254 17.4074072661 17.4074072661 16.6666665254 17.4074082551 18.1481489959 18.1481489959 17.4074082551 18.1481480775 18.8888888182 18.8888888182 18.1481480775 18.8888898072 19.629630548 19.629630548 18.8888898072 19.6296296296 20.3703703704 20.3703703704 19.6296296296 20.370369452 21.1111101928 21.1111101928 20.370369452 21.1111111818 21.8518519225 21.8518519225 21.1111111818 21.8518510041 22.5925917449 22.5925917449 21.8518510041 22.5925927339 23.3333334746 23.3333334746 22.5925927339 23.3333325563 24.074073297 24.074073297 23.3333325563 24.074074286 24.8148150267 24.8148150267 24.074074286 24.8148141084 25.5555548491 25.5555548491 24.8148141084 25.5555558381 26.2962965789 26.2962965789 25.5555558381 26.2962956605 27.0370364013 27.0370364013 26.2962956605 27.0370373902 27.777778131 27.777778131 27.0370373902 27.7777772126 28.5185179534 28.5185179534 27.7777772126 28.5185189424 29.2592596831 29.2592596831 28.5185189424 29.2592587648 29.9999995055 29.9999995055 29.2592587648 30.0000004945 30.7407412352 30.7407412352 30.0000004945 30.7407403169 31.4814810576 31.4814810576 30.7407403169 31.4814820466 32.2222227874 32.2222227874 31.4814820466 32.2222237764 32.9629645171 32.9629645171 32.2222237764 32.9629616914 33.7037024321 33.7037024321 32.9629616914 33.7037034211 34.4444441619 34.4444441619 33.7037034211 34.4444451509 35.1851858916 35.1851858916 34.4444451509 35.1851868806 35.9259276213 35.9259276213 35.1851868806 35.9259247956 36.6666655364 36.6666655364 35.9259247956 36.6666665254 37.4074072661 37.4074072661 36.6666665254 37.4074082551 38.1481489959 38.1481489959 37.4074082551 38.1481499849 38.8888907256 38.8888907256 38.1481499849 38.8888878999 39.6296286406 39.6296286406 38.8888878999 39.6296296296 40.3703703704 40.3703703704 39.6296296296 40.3703713594 41.1111121001 41.1111121001 40.3703713594 41.1111092744 41.8518500151 41.8518500151 41.1111092744 41.8518510041 42.5925917449 42.5925917449 41.8518510041 42.5925927339 43.3333334746 43.3333334746 42.5925927339 43.3333344636 44.0740752044 44.0740752044 43.3333344636 44.0740723787 44.8148131194 44.8148131194 44.0740723787 44.8148141084 45.5555548491 45.5555548491 44.8148141084 45.5555558381 46.2962965789 46.2962965789 45.5555558381 46.2962975679 47.0370383086 47.0370383086 46.2962975679 47.0370354829 47.7777762236 47.7777762236 47.0370354829 47.7777772126 48.5185179534 48.5185179534 47.7777772126 48.5185189424 49.2592596831 49.2592596831 48.5185189424 49.2592606721 50.0000014129 50.0000014129 49.2592606721 49.9999985871 50.7407393279 50.7407393279 49.9999985871 50.7407403169 51.4814810576 51.4814810576 50.7407403169 51.4814820466 52.2222227874 52.2222227874 51.4814820466 52.2222237764 52.9629645171 52.9629645171 52.2222237764 52.9629616914 53.7037024321 53.7037024321 52.9629616914 53.7037034211 54.4444441619 54.4444441619 53.7037034211 54.4444451509 55.1851858916 55.1851858916 54.4444451509 55.1851868806 55.9259276213 55.9259276213 55.1851868806 55.9259247956 56.6666655364 56.6666655364 55.9259247956 56.6666665254 57.4074072661 57.4074072661 56.6666665254 57.4074082551 58.1481489959 58.1481489959 57.4074082551 58.1481499849 58.8888907256 58.8888907256 58.1481499849 58.8888878999 59.6296286406 59.6296286406 58.8888878999 59.6296296296 60.3703703704 60.3703703704 59.6296296296 60.3703713594 61.1111121001 61.1111121001 60.3703713594 61.1111092744 61.8518500151 61.8518500151 61.1111092744 61.8518510041 62.5925917449 62.5925917449 61.8518510041 62.5925927339 63.3333334746 63.3333334746 62.5925927339 63.3333344636 64.0740752044 64.0740752044 63.3333344636 64.0740723787 64.8148131194 64.8148131194 64.0740723787 64.8148179231 65.5555586638 65.5555586638 64.8148179231 65.5555558381 66.2962965789 66.2962965789 65.5555558381 66.2962937532 67.0370344939 67.0370344939 66.2962937532 67.0370392976 67.7777800383 67.7777800383 67.0370392976 67.7777772126 68.5185179534 68.5185179534 67.7777772126 68.5185151277 69.2592558684 69.2592558684 68.5185151277 69.2592606721 70.0000014129 70.0000014129 69.2592606721 69.9999985871 70.7407393279 70.7407393279 69.9999985871 70.7407441316 71.4814848723 71.4814848723 70.7407441316 71.4814820466 72.2222227874 72.2222227874 71.4814820466 72.2222199617 72.9629607024 72.9629607024 72.2222199617 72.9629655061 73.7037062468 73.7037062468 72.9629655061 73.7037034211 74.4444441619 74.4444441619 73.7037034211 74.4444413362 75.1851820769 75.1851820769 74.4444413362 75.1851868806 75.9259276213 75.9259276213 75.1851868806 75.9259247956 76.6666655364 76.6666655364 75.9259247956 76.6666703401 77.4074110808 77.4074110808 76.6666703401 77.4074082551 78.1481489959 78.1481489959 77.4074082551 78.1481461702 78.8888869109 78.8888869109 78.1481461702 78.8888917146 79.6296324553 79.6296324553 78.8888917146 79.6296296296 80.3703703704 80.3703703704 79.6296296296 80.3703675447 81.1111082854 81.1111082854 80.3703675447 81.1111130891 81.8518538298 81.8518538298 81.1111130891 81.8518510041 82.5925917449 82.5925917449 81.8518510041 82.5925889192 83.3333296599 83.3333296599 82.5925889192 83.3333344636 84.0740752044 84.0740752044 83.3333344636 84.0740723787 84.8148131194 84.8148131194 84.0740723787 84.8148179231 85.5555586638 85.5555586638 84.8148179231 85.5555558381 86.2962965789 86.2962965789 85.5555558381 86.2962937532 87.0370344939 87.0370344939 86.2962937532 87.0370392976 87.7777800383 87.7777800383 87.0370392976 87.7777772126 88.5185179534 88.5185179534 87.7777772126 88.5185151277 89.2592558684 89.2592558684 88.5185151277 89.2592606721 90.0000014129 90.0000014129 89.2592606721 89.9999985871 90.7407393279 90.7407393279 89.9999985871 90.7407441316 91.4814848723 91.4814848723 90.7407441316 91.4814820466 92.2222227874 92.2222227874 91.4814820466 92.2222199617 92.9629607024 92.9629607024 92.2222199617 92.9629655061 93.7037062468 93.7037062468 92.9629655061 93.7037034211 94.4444441619 94.4444441619 93.7037034211 94.4444413362 95.1851820769 95.1851820769 94.4444413362 95.1851868806 95.9259276213 95.9259276213 95.1851868806 95.9259247956 96.6666655364 96.6666655364 95.9259247956 96.6666703401 97.4074110808 97.4074110808 96.6666703401 97.4074082551 98.1481489959 98.1481489959 97.4074082551 98.1481461702 98.8888869109 98.8888869109 98.1481461702 98.8888917146 99.6296324553 99.6296324553 98.8888917146 99.6296296296 100.37037037 100.37037037 99.6296296296 100.370367545 101.111108285 101.111108285 100.370367545 101.111113089 101.85185383 101.85185383 101.111113089 101.851851004 102.592591745 102.592591745 101.851851004 102.592588919 103.33332966 103.33332966 102.592588919 103.333334464 104.074075204 104.074075204 103.333334464 104.074072379 104.814813119 104.814813119 104.074072379 104.814817923 105.555558664 105.555558664 104.814817923 105.555555838 106.296296579 106.296296579 105.555555838 106.296293753 107.037034494 107.037034494 106.296293753 107.037039298 107.777780038 107.777780038 107.037039298 107.777777213 108.518517953 108.518517953 107.777777213 108.518515128 109.259255868 109.259255868 108.518515128 109.259260672 110.000001413 110.000001413 109.259260672 109.999998587 110.740739328 110.740739328 109.999998587 110.740744132 111.481484872 111.481484872 110.740744132 111.481482047 112.222222787 112.222222787 111.481482047 112.222219962 112.962960702 112.962960702 112.222219962 112.962965506 113.703706247 113.703706247 112.962965506 113.703703421 114.444444162 114.444444162 113.703703421 114.444441336 115.185182077 115.185182077 114.444441336 115.185186881 115.925927621 115.925927621 115.185186881 115.925924796 116.666665536 116.666665536 115.925924796 116.66667034 117.407411081 117.407411081 116.66667034 117.407408255 118.148148996 118.148148996 117.407408255 118.14814617 118.888886911 118.888886911 118.14814617 118.888891715 119.629632455 119.629632455 118.888891715 119.62962963 120.37037037 120.37037037 119.62962963 120.370367545 121.111108285 121.111108285 120.370367545 121.111113089 121.85185383 121.85185383 121.111113089 121.851851004 122.592591745 122.592591745 121.851851004 122.592588919 123.33332966 123.33332966 122.592588919 123.333334464 124.074075204 124.074075204 123.333334464 124.074072379 124.814813119 124.814813119 124.074072379 124.814817923 125.555558664 125.555558664 124.814817923 125.555555838 126.296296579 126.296296579 125.555555838 126.296293753 127.037034494 127.037034494 126.296293753 127.037039298 127.777780038 127.777780038 127.037039298 127.777777213 128.518517953 128.518517953 127.777777213 128.518515128 129.259255868 129.259255868 128.518515128 129.259253043 129.999993783 129.999993783 129.259253043 130.000006217 130.740746957 130.740746957 130.000006217 130.740744132 131.481484872 131.481484872 130.740744132 131.481482047 132.222222787 132.222222787 131.481482047 132.222219962 132.962960702 132.962960702 132.222219962 132.962957877 133.703698617 133.703698617 132.962957877 133.703711051 134.444451791 134.444451791 133.703711051 134.444448966 135.185189706 135.185189706 134.444448966 135.185186881 135.925927621 135.925927621 135.185186881 135.925924796 136.666665536 136.666665536 135.925924796 136.666662711 137.407403451 137.407403451 136.666662711 137.407400626 138.148141366 138.148141366 137.407400626 138.1481538 138.88889454 138.88889454 138.1481538 138.888891715 139.629632455 139.629632455 138.888891715 139.62962963 140.37037037 140.37037037 139.62962963 140.370367545 141.111108285 141.111108285 140.370367545 141.11110546 141.8518462 141.8518462 141.11110546 141.851858634 142.592599374 142.592599374 141.851858634 142.592596549 143.333337289 143.333337289 142.592596549 143.333334464 144.074075204 144.074075204 143.333334464 144.074072379 144.814813119 144.814813119 144.074072379 144.814810294 145.555551034 145.555551034 144.814810294 145.555548209 146.296288949 146.296288949 145.555548209 146.296301383 147.037042123 147.037042123 146.296301383 147.037039298 147.777780038 147.777780038 147.037039298 147.777777213 148.518517953 148.518517953 147.777777213 148.518515128 149.259255868 149.259255868 148.518515128 149.259253043 149.999993783 149.999993783 149.259253043 150.000006217 150.740746957 150.740746957 150.000006217 150.740744132 151.481484872 151.481484872 150.740744132 151.481482047 152.222222787 152.222222787 151.481482047 152.222219962 152.962960702 152.962960702 152.222219962 152.962957877 153.703698617 153.703698617 152.962957877 153.703711051 154.444451791 154.444451791 153.703711051 154.444448966 155.185189706 155.185189706 154.444448966 155.185186881 155.925927621 155.925927621 155.185186881 155.925924796 156.666665536 156.666665536 155.925924796 156.666662711 157.407403451 157.407403451 156.666662711 157.407400626 158.148141366 158.148141366 157.407400626 158.1481538 158.88889454 158.88889454 158.1481538 158.888891715 159.629632455 159.629632455 158.888891715 159.62962963 160.37037037 160.37037037 159.62962963 160.370367545 161.111108285 161.111108285 160.370367545 161.11110546 161.8518462 161.8518462 161.11110546 161.851858634 162.592599374 162.592599374 161.851858634 162.592596549 163.333337289 163.333337289 162.592596549 163.333334464 164.074075204 164.074075204 163.333334464 164.074072379 164.814813119 164.814813119 164.074072379 164.814810294 165.555551034 165.555551034 164.814810294 165.555548209 166.296288949 166.296288949 165.555548209 166.296301383 167.037042123 167.037042123 166.296301383 167.037039298 167.777780038 167.777780038 167.037039298 167.777777213 168.518517953 168.518517953 167.777777213 168.518515128 169.259255868 169.259255868 168.518515128 169.259253043 169.999993783 169.999993783 169.259253043 170.000006217 170.740746957 170.740746957 170.000006217 170.740744132 171.481484872 171.481484872 170.740744132 171.481482047 172.222222787 172.222222787 171.481482047 172.222219962 172.962960702 172.962960702 172.222219962 172.962957877 173.703698617 173.703698617 172.962957877 173.703711051 174.444451791 174.444451791 173.703711051 174.444448966 175.185189706 175.185189706 174.444448966 175.185186881 175.925927621 175.925927621 175.185186881 175.925924796 176.666665536 176.666665536 175.925924796 176.666662711 177.407403451 177.407403451 176.666662711 177.407400626 178.148141366 178.148141366 177.407400626 178.1481538 178.88889454 178.88889454 178.1481538 178.888891715 179.629632455 179.629632455 178.888891715 179.62962963 180.37037037 180.37037037 179.62962963 180.370367545 181.111108285 181.111108285 180.370367545 181.11110546 181.8518462 181.8518462 181.11110546 181.851858634 182.592599374 182.592599374 181.851858634 182.592596549 183.333337289 183.333337289 182.592596549 183.333334464 184.074075204 184.074075204 183.333334464 184.074072379 184.814813119 184.814813119 184.074072379 184.814810294 185.555551034 185.555551034 184.814810294 185.555548209 186.296288949 186.296288949 185.555548209 186.296301383 187.037042123 187.037042123 186.296301383 187.037039298 187.777780038 187.777780038 187.037039298 187.777777213 188.518517953 188.518517953 187.777777213 188.518515128 189.259255868 189.259255868 188.518515128 189.259253043 189.999993783 189.999993783 189.259253043 190.000006217 190.740746957 190.740746957 190.000006217 190.740744132 191.481484872 191.481484872 190.740744132 191.481482047 192.222222787 192.222222787 191.481482047 192.222219962 192.962960702 192.962960702 192.222219962 192.962957877 193.703698617 193.703698617 192.962957877 193.703711051 194.444451791 194.444451791 193.703711051 194.444448966 195.185189706 195.185189706 194.444448966 195.185186881 195.925927621 195.925927621 195.185186881 195.925924796 196.666665536 196.666665536 195.925924796 196.666662711 197.407403451 197.407403451 196.666662711 197.407400626 198.148141366 198.148141366 197.407400626 198.1481538 198.88889454 198.88889454 198.1481538 +198.888891715 199.629632455 199.629632455 198.888891715 199.62962963 200.37037037 200.37037037 199.62962963 200.370367545 201.111108285 201.111108285 200.370367545 201.11110546 201.8518462 201.8518462 201.11110546 201.851858634 202.592599374 202.592599374 201.851858634 202.592596549 203.333337289 203.333337289 202.592596549 203.333334464 204.074075204 204.074075204 203.333334464 204.074072379 204.814813119 204.814813119 204.074072379 204.814810294 205.555551034 205.555551034 204.814810294 205.555548209 206.296288949 206.296288949 205.555548209 206.296301383 207.037042123 207.037042123 206.296301383 207.037039298 207.777780038 207.777780038 207.037039298 207.777777213 208.518517953 208.518517953 207.777777213 208.518515128 209.259255868 209.259255868 208.518515128 209.259253043 209.999993783 209.999993783 209.259253043 210.000006217 210.740746957 210.740746957 210.000006217 210.740744132 211.481484872 211.481484872 210.740744132 211.481482047 212.222222787 212.222222787 211.481482047 212.222219962 212.962960702 212.962960702 212.222219962 212.962957877 213.703698617 213.703698617 212.962957877 213.703711051 214.444451791 214.444451791 213.703711051 214.444448966 215.185189706 215.185189706 214.444448966 215.185186881 215.925927621 215.925927621 215.185186881 215.925924796 216.666665536 216.666665536 215.925924796 216.666662711 217.407403451 217.407403451 216.666662711 217.407400626 218.148141366 218.148141366 217.407400626 218.1481538 218.88889454 218.88889454 218.1481538 218.888891715 219.629632455 219.629632455 218.888891715 219.62962963 220.37037037 220.37037037 219.62962963 220.370367545 221.111108285 221.111108285 220.370367545 221.11110546 221.8518462 221.8518462 221.11110546 221.851858634 222.592599374 222.592599374 221.851858634 222.592596549 223.333337289 223.333337289 222.592596549 223.333334464 224.074075204 224.074075204 223.333334464 224.074072379 224.814813119 224.814813119 224.074072379 224.814810294 225.555551034 225.555551034 224.814810294 225.555548209 226.296288949 226.296288949 225.555548209 226.296301383 227.037042123 227.037042123 226.296301383 227.037039298 227.777780038 227.777780038 227.037039298 227.777777213 228.518517953 228.518517953 227.777777213 228.518515128 229.259255868 229.259255868 228.518515128 229.259253043 229.999993783 229.999993783 229.259253043 230.000006217 230.740746957 230.740746957 230.000006217 230.740744132 231.481484872 231.481484872 230.740744132 231.481482047 232.222222787 232.222222787 231.481482047 232.222219962 232.962960702 232.962960702 232.222219962 232.962957877 233.703698617 233.703698617 232.962957877 233.703711051 234.444451791 234.444451791 233.703711051 234.444448966 235.185189706 235.185189706 234.444448966 235.185186881 235.925927621 235.925927621 235.185186881 235.925924796 236.666665536 236.666665536 235.925924796 236.666662711 237.407403451 237.407403451 236.666662711 237.407400626 238.148141366 238.148141366 237.407400626 238.1481538 238.88889454 238.88889454 238.1481538 238.888891715 239.629632455 239.629632455 238.888891715 239.62962963 240.37037037 240.37037037 239.62962963 240.370367545 241.111108285 241.111108285 240.370367545 241.11110546 241.8518462 241.8518462 241.11110546 241.851858634 242.592599374 242.592599374 241.851858634 242.592596549 243.333337289 243.333337289 242.592596549 243.333334464 244.074075204 244.074075204 243.333334464 244.074072379 244.814813119 244.814813119 244.074072379 244.814810294 245.555551034 245.555551034 244.814810294 245.555548209 246.296288949 246.296288949 245.555548209 246.296301383 247.037042123 247.037042123 246.296301383 247.037039298 247.777780038 247.777780038 247.037039298 247.777777213 248.518517953 248.518517953 247.777777213 248.518515128 249.259255868 249.259255868 248.518515128 249.259253043 249.999993783 249.999993783 249.259253043 250.000006217 250.740746957 250.740746957 250.000006217 250.740744132 251.481484872 251.481484872 250.740744132 251.481482047 252.222222787 252.222222787 251.481482047 252.222219962 252.962960702 252.962960702 252.222219962 252.962957877 253.703698617 253.703698617 252.962957877 253.703711051 254.444451791 254.444451791 253.703711051 254.444448966 255.185189706 255.185189706 254.444448966 255.185186881 255.925927621 255.925927621 255.185186881 255.925924796 256.666665536 256.666665536 255.925924796 256.666677969 257.40741871 257.40741871 256.666677969 257.407400626 258.148141366 258.148141366 257.407400626 258.1481538 258.88889454 258.88889454 258.1481538 258.888876456 259.629617197 259.629617197 258.888876456 259.62962963 260.37037037 260.37037037 259.62962963 260.370382803 261.111123544 261.111123544 260.370382803 261.11110546 261.8518462 261.8518462 261.11110546 261.851858634 262.592599374 262.592599374 261.851858634 262.59258129 263.333322031 263.333322031 262.59258129 263.333334464 264.074075204 264.074075204 263.333334464 264.074087637 264.814828378 264.814828378 264.074087637 264.814810294 265.555551034 265.555551034 264.814810294 265.555563468 266.296304208 266.296304208 265.555563468 266.296286124 267.037026865 267.037026865 266.296286124 267.037039298 267.777780038 267.777780038 267.037039298 267.777792471 268.518533212 268.518533212 267.777792471 268.518515128 269.259255868 269.259255868 268.518515128 269.259268302 270.000009042 270.000009042 269.259268302 269.999990958 270.740731698 270.740731698 269.999990958 270.740744132 271.481484872 271.481484872 270.740744132 271.481466788 272.222207529 272.222207529 271.481466788 272.222219962 272.962960702 272.962960702 272.222219962 272.962973135 273.703713876 273.703713876 272.962973135 273.703695792 274.444436532 274.444436532 273.703695792 274.444448966 275.185189706 275.185189706 274.444448966 275.185171622 275.925912363 275.925912363 275.185171622 275.925924796 276.666665536 276.666665536 275.925924796 276.666677969 277.40741871 277.40741871 276.666677969 277.407400626 278.148141366 278.148141366 277.407400626 278.1481538 278.88889454 278.88889454 278.1481538 278.888876456 279.629617197 279.629617197 278.888876456 279.62962963 280.37037037 280.37037037 279.62962963 280.370382803 281.111123544 281.111123544 280.370382803 281.11110546 281.8518462 281.8518462 281.11110546 281.851858634 282.592599374 282.592599374 281.851858634 282.59258129 283.333322031 283.333322031 282.59258129 283.333334464 284.074075204 284.074075204 283.333334464 284.074087637 284.814828378 284.814828378 284.074087637 284.814810294 285.555551034 285.555551034 284.814810294 285.555563468 286.296304208 286.296304208 285.555563468 286.296286124 287.037026865 287.037026865 286.296286124 287.037039298 287.777780038 287.777780038 287.037039298 287.777792471 288.518533212 288.518533212 287.777792471 288.518515128 289.259255868 289.259255868 288.518515128 289.259268302 290.000009042 290.000009042 289.259268302 289.999990958 290.740731698 290.740731698 289.999990958 290.740744132 291.481484872 291.481484872 290.740744132 291.481466788 292.222207529 292.222207529 291.481466788 292.222219962 292.962960702 292.962960702 292.222219962 292.962973135 293.703713876 293.703713876 292.962973135 293.703695792 294.444436532 294.444436532 293.703695792 294.444448966 295.185189706 295.185189706 294.444448966 295.185171622 295.925912363 295.925912363 295.185171622 295.925924796 296.666665536 296.666665536 295.925924796 296.666677969 297.40741871 297.40741871 296.666677969 297.407400626 298.148141366 298.148141366 297.407400626 298.1481538 298.88889454 298.88889454 298.1481538 298.888876456 299.629617197 299.629617197 298.888876456 299.62962963 300.37037037 300.37037037 299.62962963 300.370382803 301.111123544 301.111123544 300.370382803 301.11110546 301.8518462 301.8518462 301.11110546 301.851858634 302.592599374 302.592599374 301.851858634 302.59258129 303.333322031 303.333322031 302.59258129 303.333334464 304.074075204 304.074075204 303.333334464 304.074087637 304.814828378 304.814828378 304.074087637 304.814810294 305.555551034 305.555551034 304.814810294 305.555563468 306.296304208 306.296304208 305.555563468 306.296286124 307.037026865 307.037026865 306.296286124 307.037039298 307.777780038 307.777780038 307.037039298 307.777792471 308.518533212 308.518533212 307.777792471 308.518515128 309.259255868 309.259255868 308.518515128 309.259268302 310.000009042 310.000009042 309.259268302 309.999990958 310.740731698 310.740731698 309.999990958 310.740744132 311.481484872 311.481484872 310.740744132 311.481466788 312.222207529 312.222207529 311.481466788 312.222219962 312.962960702 312.962960702 312.222219962 312.962973135 313.703713876 313.703713876 312.962973135 313.703695792 314.444436532 314.444436532 313.703695792 314.444448966 315.185189706 315.185189706 314.444448966 315.185171622 315.925912363 315.925912363 315.185171622 315.925924796 316.666665536 316.666665536 315.925924796 316.666677969 317.40741871 317.40741871 316.666677969 317.407400626 318.148141366 318.148141366 317.407400626 318.1481538 318.88889454 318.88889454 318.1481538 318.888876456 319.629617197 319.629617197 318.888876456 319.62962963 320.37037037 320.37037037 319.62962963 320.370382803 321.111123544 321.111123544 320.370382803 321.11110546 321.8518462 321.8518462 321.11110546 321.851858634 322.592599374 322.592599374 321.851858634 322.59258129 323.333322031 323.333322031 322.59258129 323.333334464 324.074075204 324.074075204 323.333334464 324.074087637 324.814828378 324.814828378 324.074087637 324.814810294 325.555551034 325.555551034 324.814810294 325.555563468 326.296304208 326.296304208 325.555563468 326.296286124 327.037026865 327.037026865 326.296286124 327.037039298 327.777780038 327.777780038 327.037039298 327.777792471 328.518533212 328.518533212 327.777792471 328.518515128 329.259255868 329.259255868 328.518515128 329.259268302 330.000009042 330.000009042 329.259268302 329.999990958 330.740731698 330.740731698 329.999990958 330.740744132 331.481484872 331.481484872 330.740744132 331.481466788 332.222207529 332.222207529 331.481466788 332.222219962 332.962960702 332.962960702 332.222219962 332.962973135 333.703713876 333.703713876 332.962973135 333.703695792 334.444436532 334.444436532 333.703695792 334.444448966 335.185189706 335.185189706 334.444448966 335.185171622 335.925912363 335.925912363 335.185171622 335.925924796 336.666665536 336.666665536 335.925924796 336.666677969 337.40741871 337.40741871 336.666677969 337.407400626 338.148141366 338.148141366 337.407400626 338.1481538 338.88889454 338.88889454 338.1481538 338.888876456 339.629617197 339.629617197 338.888876456 339.62962963 340.37037037 340.37037037 339.62962963 340.370382803 341.111123544 341.111123544 340.370382803 341.11110546 341.8518462 341.8518462 341.11110546 341.851858634 342.592599374 342.592599374 341.851858634 342.59258129 343.333322031 343.333322031 342.59258129 343.333334464 344.074075204 344.074075204 343.333334464 344.074087637 344.814828378 344.814828378 344.074087637 344.814810294 345.555551034 345.555551034 344.814810294 345.555563468 346.296304208 346.296304208 345.555563468 346.296286124 347.037026865 347.037026865 346.296286124 347.037039298 347.777780038 347.777780038 347.037039298 347.777792471 348.518533212 348.518533212 347.777792471 348.518515128 349.259255868 349.259255868 348.518515128 349.259268302 350.000009042 350.000009042 349.259268302 349.999990958 350.740731698 350.740731698 349.999990958 350.740744132 351.481484872 351.481484872 350.740744132 351.481466788 352.222207529 352.222207529 351.481466788 352.222219962 352.962960702 352.962960702 352.222219962 352.962973135 353.703713876 353.703713876 352.962973135 353.703695792 354.444436532 354.444436532 353.703695792 354.444448966 355.185189706 355.185189706 354.444448966 355.185171622 355.925912363 355.925912363 355.185171622 355.925924796 356.666665536 356.666665536 355.925924796 356.666677969 357.40741871 357.40741871 356.666677969 357.407400626 358.148141366 358.148141366 357.407400626 358.1481538 358.88889454 358.88889454 358.1481538 358.888876456 359.629617197 359.629617197 358.888876456 -0.37037037037 0.37037037037 0.37037037037 -0.37037037037 0.370370346087 1.11111108683 1.11111108683 0.370370346087 1.11111106254 1.85185180329 1.85185180329 1.11111106254 1.85185195782 2.59259269856 2.59259269856 1.85185195782 2.59259249546 3.3333332362 3.3333332362 2.59259249546 3.33333327152 4.07407401226 4.07407401226 3.33333327152 4.074074286 4.81481502674 4.81481502674 4.074074286 4.81481458523 5.55555532597 5.55555532597 4.81481458523 5.55555536129 6.29629610203 6.29629610203 5.55555536129 6.29629613735 7.03703687809 7.03703687809 6.29629613735 7.03703691341 7.77777765415 7.77777765415 7.03703691341 7.77777816631 8.51851890705 8.51851890705 7.77777816631 8.51851894237 9.25925968311 9.25925968311 8.51851894237 9.25925971844 10.0000004592 10.0000004592 9.25925971844 9.99999954082 10.7407402816 10.7407402816 9.99999954082 10.7407403169 11.4814810576 11.4814810576 10.7407403169 11.4814810929 12.2222218337 12.2222218337 11.4814810929 12.222221869 12.9629626098 12.9629626098 12.222221869 12.9629626451 13.7037033858 13.7037033858 12.9629626451 13.7037034211 14.4444441619 14.4444441619 13.7037034211 14.4444441972 15.1851849379 15.1851849379 14.4444441972 15.1851849733 15.925925714 15.925925714 15.1851849733 15.925926703 16.6666674437 16.6666674437 15.925926703 16.6666665254 17.4074072661 17.4074072661 16.6666665254 17.4074082551 18.1481489959 18.1481489959 17.4074082551 18.1481480775 18.8888888182 18.8888888182 18.1481480775 18.8888898072 19.629630548 19.629630548 18.8888898072 19.6296296296 20.3703703704 20.3703703704 19.6296296296 20.370369452 21.1111101928 21.1111101928 20.370369452 21.1111111818 21.8518519225 21.8518519225 21.1111111818 21.8518510041 22.5925917449 22.5925917449 21.8518510041 22.5925927339 23.3333334746 23.3333334746 22.5925927339 23.3333325563 24.074073297 24.074073297 23.3333325563 24.074074286 24.8148150267 24.8148150267 24.074074286 24.8148141084 25.5555548491 25.5555548491 24.8148141084 25.5555558381 26.2962965789 26.2962965789 25.5555558381 26.2962956605 27.0370364013 27.0370364013 26.2962956605 27.0370373902 27.777778131 27.777778131 27.0370373902 27.7777772126 28.5185179534 28.5185179534 27.7777772126 28.5185189424 29.2592596831 29.2592596831 28.5185189424 29.2592587648 29.9999995055 29.9999995055 29.2592587648 30.0000004945 30.7407412352 30.7407412352 30.0000004945 30.7407403169 31.4814810576 31.4814810576 30.7407403169 31.4814820466 32.2222227874 32.2222227874 31.4814820466 32.2222237764 32.9629645171 32.9629645171 32.2222237764 32.9629616914 33.7037024321 33.7037024321 32.9629616914 33.7037034211 34.4444441619 34.4444441619 33.7037034211 34.4444451509 35.1851858916 35.1851858916 34.4444451509 35.1851868806 35.9259276213 35.9259276213 35.1851868806 35.9259247956 36.6666655364 36.6666655364 35.9259247956 36.6666665254 37.4074072661 37.4074072661 36.6666665254 37.4074082551 38.1481489959 38.1481489959 37.4074082551 38.1481499849 38.8888907256 38.8888907256 38.1481499849 38.8888878999 39.6296286406 39.6296286406 38.8888878999 39.6296296296 40.3703703704 40.3703703704 39.6296296296 40.3703713594 41.1111121001 41.1111121001 40.3703713594 41.1111092744 41.8518500151 41.8518500151 41.1111092744 41.8518510041 42.5925917449 42.5925917449 41.8518510041 42.5925927339 43.3333334746 43.3333334746 42.5925927339 43.3333344636 44.0740752044 44.0740752044 43.3333344636 44.0740723787 44.8148131194 44.8148131194 44.0740723787 44.8148141084 45.5555548491 45.5555548491 44.8148141084 45.5555558381 46.2962965789 46.2962965789 45.5555558381 46.2962975679 47.0370383086 47.0370383086 46.2962975679 47.0370354829 47.7777762236 47.7777762236 47.0370354829 47.7777772126 48.5185179534 48.5185179534 47.7777772126 48.5185189424 49.2592596831 49.2592596831 48.5185189424 49.2592606721 50.0000014129 50.0000014129 49.2592606721 49.9999985871 50.7407393279 50.7407393279 49.9999985871 50.7407403169 51.4814810576 51.4814810576 50.7407403169 51.4814820466 52.2222227874 52.2222227874 51.4814820466 52.2222237764 52.9629645171 52.9629645171 52.2222237764 52.9629616914 53.7037024321 53.7037024321 52.9629616914 53.7037034211 54.4444441619 54.4444441619 53.7037034211 54.4444451509 55.1851858916 55.1851858916 54.4444451509 55.1851868806 55.9259276213 55.9259276213 55.1851868806 55.9259247956 56.6666655364 56.6666655364 55.9259247956 56.6666665254 57.4074072661 57.4074072661 56.6666665254 57.4074082551 58.1481489959 58.1481489959 57.4074082551 58.1481499849 58.8888907256 58.8888907256 58.1481499849 58.8888878999 59.6296286406 59.6296286406 58.8888878999 59.6296296296 60.3703703704 60.3703703704 59.6296296296 60.3703713594 61.1111121001 61.1111121001 60.3703713594 61.1111092744 61.8518500151 61.8518500151 61.1111092744 61.8518510041 62.5925917449 62.5925917449 61.8518510041 62.5925927339 63.3333334746 63.3333334746 62.5925927339 63.3333344636 64.0740752044 64.0740752044 63.3333344636 64.0740723787 64.8148131194 64.8148131194 64.0740723787 64.8148179231 65.5555586638 65.5555586638 64.8148179231 65.5555558381 66.2962965789 66.2962965789 65.5555558381 66.2962937532 67.0370344939 67.0370344939 66.2962937532 67.0370392976 67.7777800383 67.7777800383 67.0370392976 67.7777772126 68.5185179534 68.5185179534 67.7777772126 68.5185151277 69.2592558684 69.2592558684 68.5185151277 69.2592606721 70.0000014129 70.0000014129 69.2592606721 69.9999985871 70.7407393279 70.7407393279 69.9999985871 70.7407441316 71.4814848723 71.4814848723 70.7407441316 71.4814820466 72.2222227874 72.2222227874 71.4814820466 72.2222199617 72.9629607024 72.9629607024 72.2222199617 72.9629655061 73.7037062468 73.7037062468 72.9629655061 73.7037034211 74.4444441619 74.4444441619 73.7037034211 74.4444413362 75.1851820769 75.1851820769 74.4444413362 75.1851868806 75.9259276213 75.9259276213 75.1851868806 75.9259247956 76.6666655364 76.6666655364 75.9259247956 76.6666703401 77.4074110808 77.4074110808 76.6666703401 77.4074082551 78.1481489959 78.1481489959 77.4074082551 78.1481461702 78.8888869109 78.8888869109 78.1481461702 78.8888917146 79.6296324553 79.6296324553 78.8888917146 79.6296296296 80.3703703704 80.3703703704 79.6296296296 80.3703675447 81.1111082854 81.1111082854 80.3703675447 81.1111130891 81.8518538298 81.8518538298 81.1111130891 81.8518510041 82.5925917449 82.5925917449 81.8518510041 82.5925889192 83.3333296599 83.3333296599 82.5925889192 83.3333344636 84.0740752044 84.0740752044 83.3333344636 84.0740723787 84.8148131194 84.8148131194 84.0740723787 84.8148179231 85.5555586638 85.5555586638 84.8148179231 85.5555558381 86.2962965789 86.2962965789 85.5555558381 86.2962937532 87.0370344939 87.0370344939 86.2962937532 87.0370392976 87.7777800383 87.7777800383 87.0370392976 87.7777772126 88.5185179534 88.5185179534 87.7777772126 88.5185151277 89.2592558684 89.2592558684 88.5185151277 89.2592606721 90.0000014129 90.0000014129 89.2592606721 89.9999985871 90.7407393279 90.7407393279 89.9999985871 90.7407441316 91.4814848723 91.4814848723 90.7407441316 91.4814820466 92.2222227874 92.2222227874 91.4814820466 92.2222199617 92.9629607024 92.9629607024 92.2222199617 92.9629655061 93.7037062468 93.7037062468 92.9629655061 93.7037034211 94.4444441619 94.4444441619 93.7037034211 94.4444413362 95.1851820769 95.1851820769 94.4444413362 95.1851868806 95.9259276213 95.9259276213 95.1851868806 95.9259247956 96.6666655364 96.6666655364 95.9259247956 96.6666703401 97.4074110808 97.4074110808 96.6666703401 97.4074082551 98.1481489959 98.1481489959 97.4074082551 98.1481461702 98.8888869109 98.8888869109 98.1481461702 98.8888917146 99.6296324553 99.6296324553 98.8888917146 99.6296296296 100.37037037 100.37037037 99.6296296296 100.370367545 101.111108285 101.111108285 100.370367545 101.111113089 101.85185383 101.85185383 101.111113089 101.851851004 102.592591745 102.592591745 101.851851004 102.592588919 103.33332966 103.33332966 102.592588919 103.333334464 104.074075204 104.074075204 103.333334464 104.074072379 104.814813119 104.814813119 104.074072379 104.814817923 105.555558664 105.555558664 104.814817923 105.555555838 106.296296579 106.296296579 105.555555838 106.296293753 107.037034494 107.037034494 106.296293753 107.037039298 107.777780038 107.777780038 107.037039298 107.777777213 108.518517953 108.518517953 107.777777213 108.518515128 109.259255868 109.259255868 108.518515128 109.259260672 110.000001413 110.000001413 109.259260672 109.999998587 110.740739328 110.740739328 109.999998587 110.740744132 111.481484872 111.481484872 110.740744132 111.481482047 112.222222787 112.222222787 111.481482047 112.222219962 112.962960702 112.962960702 112.222219962 112.962965506 113.703706247 113.703706247 112.962965506 113.703703421 114.444444162 114.444444162 113.703703421 114.444441336 115.185182077 115.185182077 114.444441336 115.185186881 115.925927621 115.925927621 115.185186881 115.925924796 116.666665536 116.666665536 115.925924796 116.66667034 117.407411081 117.407411081 116.66667034 117.407408255 118.148148996 118.148148996 117.407408255 118.14814617 118.888886911 118.888886911 118.14814617 118.888891715 119.629632455 119.629632455 118.888891715 119.62962963 120.37037037 120.37037037 119.62962963 120.370367545 121.111108285 121.111108285 120.370367545 121.111113089 121.85185383 121.85185383 121.111113089 121.851851004 122.592591745 122.592591745 121.851851004 122.592588919 123.33332966 123.33332966 122.592588919 123.333334464 124.074075204 124.074075204 123.333334464 124.074072379 124.814813119 124.814813119 124.074072379 124.814817923 125.555558664 125.555558664 124.814817923 125.555555838 126.296296579 126.296296579 125.555555838 126.296293753 127.037034494 127.037034494 126.296293753 127.037039298 127.777780038 127.777780038 127.037039298 127.777777213 128.518517953 128.518517953 127.777777213 128.518515128 129.259255868 129.259255868 128.518515128 129.259253043 129.999993783 129.999993783 129.259253043 130.000006217 130.740746957 130.740746957 130.000006217 130.740744132 131.481484872 131.481484872 130.740744132 131.481482047 132.222222787 132.222222787 131.481482047 132.222219962 132.962960702 132.962960702 132.222219962 132.962957877 133.703698617 133.703698617 132.962957877 133.703711051 134.444451791 134.444451791 133.703711051 134.444448966 135.185189706 135.185189706 134.444448966 135.185186881 135.925927621 135.925927621 135.185186881 135.925924796 136.666665536 136.666665536 135.925924796 136.666662711 137.407403451 137.407403451 136.666662711 137.407400626 138.148141366 138.148141366 137.407400626 138.1481538 138.88889454 138.88889454 138.1481538 138.888891715 139.629632455 139.629632455 138.888891715 139.62962963 140.37037037 140.37037037 139.62962963 140.370367545 141.111108285 141.111108285 140.370367545 141.11110546 141.8518462 141.8518462 141.11110546 141.851858634 142.592599374 142.592599374 141.851858634 142.592596549 143.333337289 143.333337289 142.592596549 143.333334464 144.074075204 144.074075204 143.333334464 144.074072379 144.814813119 144.814813119 144.074072379 144.814810294 145.555551034 145.555551034 144.814810294 145.555548209 146.296288949 146.296288949 145.555548209 146.296301383 147.037042123 147.037042123 146.296301383 147.037039298 147.777780038 147.777780038 147.037039298 147.777777213 148.518517953 148.518517953 147.777777213 148.518515128 149.259255868 149.259255868 148.518515128 149.259253043 149.999993783 149.999993783 149.259253043 150.000006217 150.740746957 150.740746957 150.000006217 150.740744132 151.481484872 151.481484872 150.740744132 151.481482047 152.222222787 152.222222787 151.481482047 152.222219962 152.962960702 152.962960702 152.222219962 152.962957877 153.703698617 153.703698617 152.962957877 153.703711051 154.444451791 154.444451791 153.703711051 154.444448966 155.185189706 155.185189706 154.444448966 155.185186881 155.925927621 155.925927621 155.185186881 155.925924796 156.666665536 156.666665536 155.925924796 156.666662711 157.407403451 157.407403451 156.666662711 157.407400626 158.148141366 158.148141366 157.407400626 158.1481538 158.88889454 158.88889454 158.1481538 158.888891715 159.629632455 159.629632455 158.888891715 159.62962963 160.37037037 160.37037037 159.62962963 160.370367545 161.111108285 161.111108285 160.370367545 161.11110546 161.8518462 161.8518462 161.11110546 161.851858634 162.592599374 162.592599374 161.851858634 162.592596549 163.333337289 163.333337289 162.592596549 163.333334464 164.074075204 164.074075204 163.333334464 164.074072379 164.814813119 164.814813119 164.074072379 164.814810294 165.555551034 165.555551034 164.814810294 165.555548209 166.296288949 166.296288949 165.555548209 166.296301383 167.037042123 167.037042123 166.296301383 167.037039298 167.777780038 167.777780038 167.037039298 167.777777213 168.518517953 168.518517953 167.777777213 168.518515128 169.259255868 169.259255868 168.518515128 169.259253043 169.999993783 169.999993783 169.259253043 170.000006217 170.740746957 170.740746957 170.000006217 170.740744132 171.481484872 171.481484872 170.740744132 171.481482047 172.222222787 172.222222787 171.481482047 172.222219962 172.962960702 172.962960702 172.222219962 172.962957877 173.703698617 173.703698617 172.962957877 173.703711051 174.444451791 174.444451791 173.703711051 174.444448966 175.185189706 175.185189706 174.444448966 175.185186881 175.925927621 175.925927621 175.185186881 175.925924796 176.666665536 176.666665536 175.925924796 176.666662711 177.407403451 177.407403451 176.666662711 177.407400626 178.148141366 178.148141366 177.407400626 178.1481538 178.88889454 178.88889454 178.1481538 178.888891715 179.629632455 179.629632455 178.888891715 179.62962963 180.37037037 180.37037037 179.62962963 180.370367545 181.111108285 181.111108285 180.370367545 181.11110546 181.8518462 181.8518462 181.11110546 181.851858634 182.592599374 182.592599374 181.851858634 182.592596549 183.333337289 183.333337289 182.592596549 183.333334464 184.074075204 184.074075204 183.333334464 184.074072379 184.814813119 184.814813119 184.074072379 184.814810294 185.555551034 185.555551034 184.814810294 185.555548209 186.296288949 186.296288949 185.555548209 186.296301383 187.037042123 187.037042123 186.296301383 187.037039298 187.777780038 187.777780038 187.037039298 187.777777213 188.518517953 188.518517953 187.777777213 188.518515128 189.259255868 189.259255868 188.518515128 189.259253043 189.999993783 189.999993783 189.259253043 190.000006217 190.740746957 190.740746957 190.000006217 190.740744132 191.481484872 191.481484872 190.740744132 191.481482047 192.222222787 192.222222787 191.481482047 192.222219962 192.962960702 192.962960702 192.222219962 192.962957877 193.703698617 193.703698617 192.962957877 193.703711051 194.444451791 194.444451791 193.703711051 194.444448966 195.185189706 195.185189706 194.444448966 195.185186881 195.925927621 195.925927621 195.185186881 195.925924796 196.666665536 196.666665536 195.925924796 196.666662711 197.407403451 197.407403451 196.666662711 197.407400626 198.148141366 198.148141366 197.407400626 198.1481538 198.88889454 198.88889454 198.1481538 198.888891715 199.629632455 199.629632455 198.888891715 199.62962963 200.37037037 200.37037037 199.62962963 200.370367545 201.111108285 201.111108285 200.370367545 201.11110546 201.8518462 201.8518462 201.11110546 201.851858634 202.592599374 202.592599374 201.851858634 202.592596549 203.333337289 203.333337289 202.592596549 203.333334464 204.074075204 204.074075204 203.333334464 204.074072379 204.814813119 204.814813119 204.074072379 204.814810294 205.555551034 205.555551034 204.814810294 205.555548209 206.296288949 206.296288949 205.555548209 206.296301383 207.037042123 207.037042123 206.296301383 207.037039298 207.777780038 207.777780038 207.037039298 207.777777213 208.518517953 208.518517953 207.777777213 208.518515128 209.259255868 209.259255868 208.518515128 +209.259253043 209.999993783 209.999993783 209.259253043 210.000006217 210.740746957 210.740746957 210.000006217 210.740744132 211.481484872 211.481484872 210.740744132 211.481482047 212.222222787 212.222222787 211.481482047 212.222219962 212.962960702 212.962960702 212.222219962 212.962957877 213.703698617 213.703698617 212.962957877 213.703711051 214.444451791 214.444451791 213.703711051 214.444448966 215.185189706 215.185189706 214.444448966 215.185186881 215.925927621 215.925927621 215.185186881 215.925924796 216.666665536 216.666665536 215.925924796 216.666662711 217.407403451 217.407403451 216.666662711 217.407400626 218.148141366 218.148141366 217.407400626 218.1481538 218.88889454 218.88889454 218.1481538 218.888891715 219.629632455 219.629632455 218.888891715 219.62962963 220.37037037 220.37037037 219.62962963 220.370367545 221.111108285 221.111108285 220.370367545 221.11110546 221.8518462 221.8518462 221.11110546 221.851858634 222.592599374 222.592599374 221.851858634 222.592596549 223.333337289 223.333337289 222.592596549 223.333334464 224.074075204 224.074075204 223.333334464 224.074072379 224.814813119 224.814813119 224.074072379 224.814810294 225.555551034 225.555551034 224.814810294 225.555548209 226.296288949 226.296288949 225.555548209 226.296301383 227.037042123 227.037042123 226.296301383 227.037039298 227.777780038 227.777780038 227.037039298 227.777777213 228.518517953 228.518517953 227.777777213 228.518515128 229.259255868 229.259255868 228.518515128 229.259253043 229.999993783 229.999993783 229.259253043 230.000006217 230.740746957 230.740746957 230.000006217 230.740744132 231.481484872 231.481484872 230.740744132 231.481482047 232.222222787 232.222222787 231.481482047 232.222219962 232.962960702 232.962960702 232.222219962 232.962957877 233.703698617 233.703698617 232.962957877 233.703711051 234.444451791 234.444451791 233.703711051 234.444448966 235.185189706 235.185189706 234.444448966 235.185186881 235.925927621 235.925927621 235.185186881 235.925924796 236.666665536 236.666665536 235.925924796 236.666662711 237.407403451 237.407403451 236.666662711 237.407400626 238.148141366 238.148141366 237.407400626 238.1481538 238.88889454 238.88889454 238.1481538 238.888891715 239.629632455 239.629632455 238.888891715 239.62962963 240.37037037 240.37037037 239.62962963 240.370367545 241.111108285 241.111108285 240.370367545 241.11110546 241.8518462 241.8518462 241.11110546 241.851858634 242.592599374 242.592599374 241.851858634 242.592596549 243.333337289 243.333337289 242.592596549 243.333334464 244.074075204 244.074075204 243.333334464 244.074072379 244.814813119 244.814813119 244.074072379 244.814810294 245.555551034 245.555551034 244.814810294 245.555548209 246.296288949 246.296288949 245.555548209 246.296301383 247.037042123 247.037042123 246.296301383 247.037039298 247.777780038 247.777780038 247.037039298 247.777777213 248.518517953 248.518517953 247.777777213 248.518515128 249.259255868 249.259255868 248.518515128 249.259253043 249.999993783 249.999993783 249.259253043 250.000006217 250.740746957 250.740746957 250.000006217 250.740744132 251.481484872 251.481484872 250.740744132 251.481482047 252.222222787 252.222222787 251.481482047 252.222219962 252.962960702 252.962960702 252.222219962 252.962957877 253.703698617 253.703698617 252.962957877 253.703711051 254.444451791 254.444451791 253.703711051 254.444448966 255.185189706 255.185189706 254.444448966 255.185186881 255.925927621 255.925927621 255.185186881 255.925924796 256.666665536 256.666665536 255.925924796 256.666677969 257.40741871 257.40741871 256.666677969 257.407400626 258.148141366 258.148141366 257.407400626 258.1481538 258.88889454 258.88889454 258.1481538 258.888876456 259.629617197 259.629617197 258.888876456 259.62962963 260.37037037 260.37037037 259.62962963 260.370382803 261.111123544 261.111123544 260.370382803 261.11110546 261.8518462 261.8518462 261.11110546 261.851858634 262.592599374 262.592599374 261.851858634 262.59258129 263.333322031 263.333322031 262.59258129 263.333334464 264.074075204 264.074075204 263.333334464 264.074087637 264.814828378 264.814828378 264.074087637 264.814810294 265.555551034 265.555551034 264.814810294 265.555563468 266.296304208 266.296304208 265.555563468 266.296286124 267.037026865 267.037026865 266.296286124 267.037039298 267.777780038 267.777780038 267.037039298 267.777792471 268.518533212 268.518533212 267.777792471 268.518515128 269.259255868 269.259255868 268.518515128 269.259268302 270.000009042 270.000009042 269.259268302 269.999990958 270.740731698 270.740731698 269.999990958 270.740744132 271.481484872 271.481484872 270.740744132 271.481466788 272.222207529 272.222207529 271.481466788 272.222219962 272.962960702 272.962960702 272.222219962 272.962973135 273.703713876 273.703713876 272.962973135 273.703695792 274.444436532 274.444436532 273.703695792 274.444448966 275.185189706 275.185189706 274.444448966 275.185171622 275.925912363 275.925912363 275.185171622 275.925924796 276.666665536 276.666665536 275.925924796 276.666677969 277.40741871 277.40741871 276.666677969 277.407400626 278.148141366 278.148141366 277.407400626 278.1481538 278.88889454 278.88889454 278.1481538 278.888876456 279.629617197 279.629617197 278.888876456 279.62962963 280.37037037 280.37037037 279.62962963 280.370382803 281.111123544 281.111123544 280.370382803 281.11110546 281.8518462 281.8518462 281.11110546 281.851858634 282.592599374 282.592599374 281.851858634 282.59258129 283.333322031 283.333322031 282.59258129 283.333334464 284.074075204 284.074075204 283.333334464 284.074087637 284.814828378 284.814828378 284.074087637 284.814810294 285.555551034 285.555551034 284.814810294 285.555563468 286.296304208 286.296304208 285.555563468 286.296286124 287.037026865 287.037026865 286.296286124 287.037039298 287.777780038 287.777780038 287.037039298 287.777792471 288.518533212 288.518533212 287.777792471 288.518515128 289.259255868 289.259255868 288.518515128 289.259268302 290.000009042 290.000009042 289.259268302 289.999990958 290.740731698 290.740731698 289.999990958 290.740744132 291.481484872 291.481484872 290.740744132 291.481466788 292.222207529 292.222207529 291.481466788 292.222219962 292.962960702 292.962960702 292.222219962 292.962973135 293.703713876 293.703713876 292.962973135 293.703695792 294.444436532 294.444436532 293.703695792 294.444448966 295.185189706 295.185189706 294.444448966 295.185171622 295.925912363 295.925912363 295.185171622 295.925924796 296.666665536 296.666665536 295.925924796 296.666677969 297.40741871 297.40741871 296.666677969 297.407400626 298.148141366 298.148141366 297.407400626 298.1481538 298.88889454 298.88889454 298.1481538 298.888876456 299.629617197 299.629617197 298.888876456 299.62962963 300.37037037 300.37037037 299.62962963 300.370382803 301.111123544 301.111123544 300.370382803 301.11110546 301.8518462 301.8518462 301.11110546 301.851858634 302.592599374 302.592599374 301.851858634 302.59258129 303.333322031 303.333322031 302.59258129 303.333334464 304.074075204 304.074075204 303.333334464 304.074087637 304.814828378 304.814828378 304.074087637 304.814810294 305.555551034 305.555551034 304.814810294 305.555563468 306.296304208 306.296304208 305.555563468 306.296286124 307.037026865 307.037026865 306.296286124 307.037039298 307.777780038 307.777780038 307.037039298 307.777792471 308.518533212 308.518533212 307.777792471 308.518515128 309.259255868 309.259255868 308.518515128 309.259268302 310.000009042 310.000009042 309.259268302 309.999990958 310.740731698 310.740731698 309.999990958 310.740744132 311.481484872 311.481484872 310.740744132 311.481466788 312.222207529 312.222207529 311.481466788 312.222219962 312.962960702 312.962960702 312.222219962 312.962973135 313.703713876 313.703713876 312.962973135 313.703695792 314.444436532 314.444436532 313.703695792 314.444448966 315.185189706 315.185189706 314.444448966 315.185171622 315.925912363 315.925912363 315.185171622 315.925924796 316.666665536 316.666665536 315.925924796 316.666677969 317.40741871 317.40741871 316.666677969 317.407400626 318.148141366 318.148141366 317.407400626 318.1481538 318.88889454 318.88889454 318.1481538 318.888876456 319.629617197 319.629617197 318.888876456 319.62962963 320.37037037 320.37037037 319.62962963 320.370382803 321.111123544 321.111123544 320.370382803 321.11110546 321.8518462 321.8518462 321.11110546 321.851858634 322.592599374 322.592599374 321.851858634 322.59258129 323.333322031 323.333322031 322.59258129 323.333334464 324.074075204 324.074075204 323.333334464 324.074087637 324.814828378 324.814828378 324.074087637 324.814810294 325.555551034 325.555551034 324.814810294 325.555563468 326.296304208 326.296304208 325.555563468 326.296286124 327.037026865 327.037026865 326.296286124 327.037039298 327.777780038 327.777780038 327.037039298 327.777792471 328.518533212 328.518533212 327.777792471 328.518515128 329.259255868 329.259255868 328.518515128 329.259268302 330.000009042 330.000009042 329.259268302 329.999990958 330.740731698 330.740731698 329.999990958 330.740744132 331.481484872 331.481484872 330.740744132 331.481466788 332.222207529 332.222207529 331.481466788 332.222219962 332.962960702 332.962960702 332.222219962 332.962973135 333.703713876 333.703713876 332.962973135 333.703695792 334.444436532 334.444436532 333.703695792 334.444448966 335.185189706 335.185189706 334.444448966 335.185171622 335.925912363 335.925912363 335.185171622 335.925924796 336.666665536 336.666665536 335.925924796 336.666677969 337.40741871 337.40741871 336.666677969 337.407400626 338.148141366 338.148141366 337.407400626 338.1481538 338.88889454 338.88889454 338.1481538 338.888876456 339.629617197 339.629617197 338.888876456 339.62962963 340.37037037 340.37037037 339.62962963 340.370382803 341.111123544 341.111123544 340.370382803 341.11110546 341.8518462 341.8518462 341.11110546 341.851858634 342.592599374 342.592599374 341.851858634 342.59258129 343.333322031 343.333322031 342.59258129 343.333334464 344.074075204 344.074075204 343.333334464 344.074087637 344.814828378 344.814828378 344.074087637 344.814810294 345.555551034 345.555551034 344.814810294 345.555563468 346.296304208 346.296304208 345.555563468 346.296286124 347.037026865 347.037026865 346.296286124 347.037039298 347.777780038 347.777780038 347.037039298 347.777792471 348.518533212 348.518533212 347.777792471 348.518515128 349.259255868 349.259255868 348.518515128 349.259268302 350.000009042 350.000009042 349.259268302 349.999990958 350.740731698 350.740731698 349.999990958 350.740744132 351.481484872 351.481484872 350.740744132 351.481466788 352.222207529 352.222207529 351.481466788 352.222219962 352.962960702 352.962960702 352.222219962 352.962973135 353.703713876 353.703713876 352.962973135 353.703695792 354.444436532 354.444436532 353.703695792 354.444448966 355.185189706 355.185189706 354.444448966 355.185171622 355.925912363 355.925912363 355.185171622 355.925924796 356.666665536 356.666665536 355.925924796 356.666677969 357.40741871 357.40741871 356.666677969 357.407400626 358.148141366 358.148141366 357.407400626 358.1481538 358.88889454 358.88889454 358.1481538 358.888876456 359.629617197 359.629617197 358.888876456 -0.37037037037 0.37037037037 0.37037037037 -0.37037037037 0.370370346087 1.11111108683 1.11111108683 0.370370346087 1.11111106254 1.85185180329 1.85185180329 1.11111106254 1.85185195782 2.59259269856 2.59259269856 1.85185195782 2.59259249546 3.3333332362 3.3333332362 2.59259249546 3.33333327152 4.07407401226 4.07407401226 3.33333327152 4.074074286 4.81481502674 4.81481502674 4.074074286 4.81481458523 5.55555532597 5.55555532597 4.81481458523 5.55555536129 6.29629610203 6.29629610203 5.55555536129 6.29629613735 7.03703687809 7.03703687809 6.29629613735 7.03703691341 7.77777765415 7.77777765415 7.03703691341 7.77777816631 8.51851890705 8.51851890705 7.77777816631 8.51851894237 9.25925968311 9.25925968311 8.51851894237 9.25925971844 10.0000004592 10.0000004592 9.25925971844 9.99999954082 10.7407402816 10.7407402816 9.99999954082 10.7407403169 11.4814810576 11.4814810576 10.7407403169 11.4814810929 12.2222218337 12.2222218337 11.4814810929 12.222221869 12.9629626098 12.9629626098 12.222221869 12.9629626451 13.7037033858 13.7037033858 12.9629626451 13.7037034211 14.4444441619 14.4444441619 13.7037034211 14.4444441972 15.1851849379 15.1851849379 14.4444441972 15.1851849733 15.925925714 15.925925714 15.1851849733 15.925926703 16.6666674437 16.6666674437 15.925926703 16.6666665254 17.4074072661 17.4074072661 16.6666665254 17.4074082551 18.1481489959 18.1481489959 17.4074082551 18.1481480775 18.8888888182 18.8888888182 18.1481480775 18.8888898072 19.629630548 19.629630548 18.8888898072 19.6296296296 20.3703703704 20.3703703704 19.6296296296 20.370369452 21.1111101928 21.1111101928 20.370369452 21.1111111818 21.8518519225 21.8518519225 21.1111111818 21.8518510041 22.5925917449 22.5925917449 21.8518510041 22.5925927339 23.3333334746 23.3333334746 22.5925927339 23.3333325563 24.074073297 24.074073297 23.3333325563 24.074074286 24.8148150267 24.8148150267 24.074074286 24.8148141084 25.5555548491 25.5555548491 24.8148141084 25.5555558381 26.2962965789 26.2962965789 25.5555558381 26.2962956605 27.0370364013 27.0370364013 26.2962956605 27.0370373902 27.777778131 27.777778131 27.0370373902 27.7777772126 28.5185179534 28.5185179534 27.7777772126 28.5185189424 29.2592596831 29.2592596831 28.5185189424 29.2592587648 29.9999995055 29.9999995055 29.2592587648 30.0000004945 30.7407412352 30.7407412352 30.0000004945 30.7407403169 31.4814810576 31.4814810576 30.7407403169 31.4814820466 32.2222227874 32.2222227874 31.4814820466 32.2222237764 32.9629645171 32.9629645171 32.2222237764 32.9629616914 33.7037024321 33.7037024321 32.9629616914 33.7037034211 34.4444441619 34.4444441619 33.7037034211 34.4444451509 35.1851858916 35.1851858916 34.4444451509 35.1851868806 35.9259276213 35.9259276213 35.1851868806 35.9259247956 36.6666655364 36.6666655364 35.9259247956 36.6666665254 37.4074072661 37.4074072661 36.6666665254 37.4074082551 38.1481489959 38.1481489959 37.4074082551 38.1481499849 38.8888907256 38.8888907256 38.1481499849 38.8888878999 39.6296286406 39.6296286406 38.8888878999 39.6296296296 40.3703703704 40.3703703704 39.6296296296 40.3703713594 41.1111121001 41.1111121001 40.3703713594 41.1111092744 41.8518500151 41.8518500151 41.1111092744 41.8518510041 42.5925917449 42.5925917449 41.8518510041 42.5925927339 43.3333334746 43.3333334746 42.5925927339 43.3333344636 44.0740752044 44.0740752044 43.3333344636 44.0740723787 44.8148131194 44.8148131194 44.0740723787 44.8148141084 45.5555548491 45.5555548491 44.8148141084 45.5555558381 46.2962965789 46.2962965789 45.5555558381 46.2962975679 47.0370383086 47.0370383086 46.2962975679 47.0370354829 47.7777762236 47.7777762236 47.0370354829 47.7777772126 48.5185179534 48.5185179534 47.7777772126 48.5185189424 49.2592596831 49.2592596831 48.5185189424 49.2592606721 50.0000014129 50.0000014129 49.2592606721 49.9999985871 50.7407393279 50.7407393279 49.9999985871 50.7407403169 51.4814810576 51.4814810576 50.7407403169 51.4814820466 52.2222227874 52.2222227874 51.4814820466 52.2222237764 52.9629645171 52.9629645171 52.2222237764 52.9629616914 53.7037024321 53.7037024321 52.9629616914 53.7037034211 54.4444441619 54.4444441619 53.7037034211 54.4444451509 55.1851858916 55.1851858916 54.4444451509 55.1851868806 55.9259276213 55.9259276213 55.1851868806 55.9259247956 56.6666655364 56.6666655364 55.9259247956 56.6666665254 57.4074072661 57.4074072661 56.6666665254 57.4074082551 58.1481489959 58.1481489959 57.4074082551 58.1481499849 58.8888907256 58.8888907256 58.1481499849 58.8888878999 59.6296286406 59.6296286406 58.8888878999 59.6296296296 60.3703703704 60.3703703704 59.6296296296 60.3703713594 61.1111121001 61.1111121001 60.3703713594 61.1111092744 61.8518500151 61.8518500151 61.1111092744 61.8518510041 62.5925917449 62.5925917449 61.8518510041 62.5925927339 63.3333334746 63.3333334746 62.5925927339 63.3333344636 64.0740752044 64.0740752044 63.3333344636 64.0740723787 64.8148131194 64.8148131194 64.0740723787 64.8148179231 65.5555586638 65.5555586638 64.8148179231 65.5555558381 66.2962965789 66.2962965789 65.5555558381 66.2962937532 67.0370344939 67.0370344939 66.2962937532 67.0370392976 67.7777800383 67.7777800383 67.0370392976 67.7777772126 68.5185179534 68.5185179534 67.7777772126 68.5185151277 69.2592558684 69.2592558684 68.5185151277 69.2592606721 70.0000014129 70.0000014129 69.2592606721 69.9999985871 70.7407393279 70.7407393279 69.9999985871 70.7407441316 71.4814848723 71.4814848723 70.7407441316 71.4814820466 72.2222227874 72.2222227874 71.4814820466 72.2222199617 72.9629607024 72.9629607024 72.2222199617 72.9629655061 73.7037062468 73.7037062468 72.9629655061 73.7037034211 74.4444441619 74.4444441619 73.7037034211 74.4444413362 75.1851820769 75.1851820769 74.4444413362 75.1851868806 75.9259276213 75.9259276213 75.1851868806 75.9259247956 76.6666655364 76.6666655364 75.9259247956 76.6666703401 77.4074110808 77.4074110808 76.6666703401 77.4074082551 78.1481489959 78.1481489959 77.4074082551 78.1481461702 78.8888869109 78.8888869109 78.1481461702 78.8888917146 79.6296324553 79.6296324553 78.8888917146 79.6296296296 80.3703703704 80.3703703704 79.6296296296 80.3703675447 81.1111082854 81.1111082854 80.3703675447 81.1111130891 81.8518538298 81.8518538298 81.1111130891 81.8518510041 82.5925917449 82.5925917449 81.8518510041 82.5925889192 83.3333296599 83.3333296599 82.5925889192 83.3333344636 84.0740752044 84.0740752044 83.3333344636 84.0740723787 84.8148131194 84.8148131194 84.0740723787 84.8148179231 85.5555586638 85.5555586638 84.8148179231 85.5555558381 86.2962965789 86.2962965789 85.5555558381 86.2962937532 87.0370344939 87.0370344939 86.2962937532 87.0370392976 87.7777800383 87.7777800383 87.0370392976 87.7777772126 88.5185179534 88.5185179534 87.7777772126 88.5185151277 89.2592558684 89.2592558684 88.5185151277 89.2592606721 90.0000014129 90.0000014129 89.2592606721 89.9999985871 90.7407393279 90.7407393279 89.9999985871 90.7407441316 91.4814848723 91.4814848723 90.7407441316 91.4814820466 92.2222227874 92.2222227874 91.4814820466 92.2222199617 92.9629607024 92.9629607024 92.2222199617 92.9629655061 93.7037062468 93.7037062468 92.9629655061 93.7037034211 94.4444441619 94.4444441619 93.7037034211 94.4444413362 95.1851820769 95.1851820769 94.4444413362 95.1851868806 95.9259276213 95.9259276213 95.1851868806 95.9259247956 96.6666655364 96.6666655364 95.9259247956 96.6666703401 97.4074110808 97.4074110808 96.6666703401 97.4074082551 98.1481489959 98.1481489959 97.4074082551 98.1481461702 98.8888869109 98.8888869109 98.1481461702 98.8888917146 99.6296324553 99.6296324553 98.8888917146 99.6296296296 100.37037037 100.37037037 99.6296296296 100.370367545 101.111108285 101.111108285 100.370367545 101.111113089 101.85185383 101.85185383 101.111113089 101.851851004 102.592591745 102.592591745 101.851851004 102.592588919 103.33332966 103.33332966 102.592588919 103.333334464 104.074075204 104.074075204 103.333334464 104.074072379 104.814813119 104.814813119 104.074072379 104.814817923 105.555558664 105.555558664 104.814817923 105.555555838 106.296296579 106.296296579 105.555555838 106.296293753 107.037034494 107.037034494 106.296293753 107.037039298 107.777780038 107.777780038 107.037039298 107.777777213 108.518517953 108.518517953 107.777777213 108.518515128 109.259255868 109.259255868 108.518515128 109.259260672 110.000001413 110.000001413 109.259260672 109.999998587 110.740739328 110.740739328 109.999998587 110.740744132 111.481484872 111.481484872 110.740744132 111.481482047 112.222222787 112.222222787 111.481482047 112.222219962 112.962960702 112.962960702 112.222219962 112.962965506 113.703706247 113.703706247 112.962965506 113.703703421 114.444444162 114.444444162 113.703703421 114.444441336 115.185182077 115.185182077 114.444441336 115.185186881 115.925927621 115.925927621 115.185186881 115.925924796 116.666665536 116.666665536 115.925924796 116.66667034 117.407411081 117.407411081 116.66667034 117.407408255 118.148148996 118.148148996 117.407408255 118.14814617 118.888886911 118.888886911 118.14814617 118.888891715 119.629632455 119.629632455 118.888891715 119.62962963 120.37037037 120.37037037 119.62962963 120.370367545 121.111108285 121.111108285 120.370367545 121.111113089 121.85185383 121.85185383 121.111113089 121.851851004 122.592591745 122.592591745 121.851851004 122.592588919 123.33332966 123.33332966 122.592588919 123.333334464 124.074075204 124.074075204 123.333334464 124.074072379 124.814813119 124.814813119 124.074072379 124.814817923 125.555558664 125.555558664 124.814817923 125.555555838 126.296296579 126.296296579 125.555555838 126.296293753 127.037034494 127.037034494 126.296293753 127.037039298 127.777780038 127.777780038 127.037039298 127.777777213 128.518517953 128.518517953 127.777777213 128.518515128 129.259255868 129.259255868 128.518515128 129.259253043 129.999993783 129.999993783 129.259253043 130.000006217 130.740746957 130.740746957 130.000006217 130.740744132 131.481484872 131.481484872 130.740744132 131.481482047 132.222222787 132.222222787 131.481482047 132.222219962 132.962960702 132.962960702 132.222219962 132.962957877 133.703698617 133.703698617 132.962957877 133.703711051 134.444451791 134.444451791 133.703711051 134.444448966 135.185189706 135.185189706 134.444448966 135.185186881 135.925927621 135.925927621 135.185186881 135.925924796 136.666665536 136.666665536 135.925924796 136.666662711 137.407403451 137.407403451 136.666662711 137.407400626 138.148141366 138.148141366 137.407400626 138.1481538 138.88889454 138.88889454 138.1481538 138.888891715 139.629632455 139.629632455 138.888891715 139.62962963 140.37037037 140.37037037 139.62962963 140.370367545 141.111108285 141.111108285 140.370367545 141.11110546 141.8518462 141.8518462 141.11110546 141.851858634 142.592599374 142.592599374 141.851858634 142.592596549 143.333337289 143.333337289 142.592596549 143.333334464 144.074075204 144.074075204 143.333334464 144.074072379 144.814813119 144.814813119 144.074072379 144.814810294 145.555551034 145.555551034 144.814810294 145.555548209 146.296288949 146.296288949 145.555548209 146.296301383 147.037042123 147.037042123 146.296301383 147.037039298 147.777780038 147.777780038 147.037039298 147.777777213 148.518517953 148.518517953 147.777777213 148.518515128 149.259255868 149.259255868 148.518515128 149.259253043 149.999993783 149.999993783 149.259253043 150.000006217 150.740746957 150.740746957 150.000006217 150.740744132 151.481484872 151.481484872 150.740744132 151.481482047 152.222222787 152.222222787 151.481482047 152.222219962 152.962960702 152.962960702 152.222219962 152.962957877 153.703698617 153.703698617 152.962957877 153.703711051 154.444451791 154.444451791 153.703711051 154.444448966 155.185189706 155.185189706 154.444448966 155.185186881 155.925927621 155.925927621 155.185186881 155.925924796 156.666665536 156.666665536 155.925924796 156.666662711 157.407403451 157.407403451 156.666662711 157.407400626 158.148141366 158.148141366 157.407400626 158.1481538 158.88889454 158.88889454 158.1481538 158.888891715 159.629632455 159.629632455 158.888891715 159.62962963 160.37037037 160.37037037 159.62962963 160.370367545 161.111108285 161.111108285 160.370367545 161.11110546 161.8518462 161.8518462 161.11110546 161.851858634 162.592599374 162.592599374 161.851858634 162.592596549 163.333337289 163.333337289 162.592596549 163.333334464 164.074075204 164.074075204 163.333334464 164.074072379 164.814813119 164.814813119 164.074072379 164.814810294 165.555551034 165.555551034 164.814810294 165.555548209 166.296288949 166.296288949 165.555548209 166.296301383 167.037042123 167.037042123 166.296301383 167.037039298 167.777780038 167.777780038 167.037039298 167.777777213 168.518517953 168.518517953 167.777777213 168.518515128 169.259255868 169.259255868 168.518515128 169.259253043 169.999993783 169.999993783 169.259253043 170.000006217 170.740746957 170.740746957 170.000006217 170.740744132 171.481484872 171.481484872 170.740744132 171.481482047 172.222222787 172.222222787 171.481482047 172.222219962 172.962960702 172.962960702 172.222219962 172.962957877 173.703698617 173.703698617 172.962957877 173.703711051 174.444451791 174.444451791 173.703711051 174.444448966 175.185189706 175.185189706 174.444448966 175.185186881 175.925927621 175.925927621 175.185186881 175.925924796 176.666665536 176.666665536 175.925924796 176.666662711 177.407403451 177.407403451 176.666662711 177.407400626 178.148141366 178.148141366 177.407400626 178.1481538 178.88889454 178.88889454 178.1481538 178.888891715 179.629632455 179.629632455 178.888891715 179.62962963 180.37037037 180.37037037 179.62962963 180.370367545 181.111108285 181.111108285 180.370367545 181.11110546 181.8518462 181.8518462 181.11110546 181.851858634 182.592599374 182.592599374 181.851858634 182.592596549 183.333337289 183.333337289 182.592596549 183.333334464 184.074075204 184.074075204 183.333334464 184.074072379 184.814813119 184.814813119 184.074072379 184.814810294 185.555551034 185.555551034 184.814810294 185.555548209 186.296288949 186.296288949 185.555548209 186.296301383 187.037042123 187.037042123 186.296301383 187.037039298 187.777780038 187.777780038 187.037039298 187.777777213 188.518517953 188.518517953 187.777777213 188.518515128 189.259255868 189.259255868 188.518515128 189.259253043 189.999993783 189.999993783 189.259253043 190.000006217 190.740746957 190.740746957 190.000006217 190.740744132 191.481484872 191.481484872 190.740744132 191.481482047 192.222222787 192.222222787 191.481482047 192.222219962 192.962960702 192.962960702 192.222219962 192.962957877 193.703698617 193.703698617 192.962957877 193.703711051 194.444451791 194.444451791 193.703711051 194.444448966 195.185189706 195.185189706 194.444448966 195.185186881 195.925927621 195.925927621 195.185186881 195.925924796 196.666665536 196.666665536 195.925924796 196.666662711 197.407403451 197.407403451 196.666662711 197.407400626 198.148141366 198.148141366 197.407400626 198.1481538 198.88889454 198.88889454 198.1481538 198.888891715 199.629632455 199.629632455 198.888891715 199.62962963 200.37037037 200.37037037 199.62962963 200.370367545 201.111108285 201.111108285 200.370367545 201.11110546 201.8518462 201.8518462 201.11110546 201.851858634 202.592599374 202.592599374 201.851858634 202.592596549 203.333337289 203.333337289 202.592596549 203.333334464 204.074075204 204.074075204 203.333334464 204.074072379 204.814813119 204.814813119 204.074072379 204.814810294 205.555551034 205.555551034 204.814810294 205.555548209 206.296288949 206.296288949 205.555548209 206.296301383 207.037042123 207.037042123 206.296301383 207.037039298 207.777780038 207.777780038 207.037039298 207.777777213 208.518517953 208.518517953 207.777777213 208.518515128 209.259255868 209.259255868 208.518515128 209.259253043 209.999993783 209.999993783 209.259253043 210.000006217 210.740746957 210.740746957 210.000006217 210.740744132 211.481484872 211.481484872 210.740744132 211.481482047 212.222222787 212.222222787 211.481482047 212.222219962 212.962960702 212.962960702 212.222219962 212.962957877 213.703698617 213.703698617 212.962957877 213.703711051 214.444451791 214.444451791 213.703711051 214.444448966 215.185189706 215.185189706 214.444448966 215.185186881 215.925927621 215.925927621 215.185186881 215.925924796 216.666665536 216.666665536 215.925924796 216.666662711 217.407403451 217.407403451 216.666662711 217.407400626 218.148141366 218.148141366 217.407400626 218.1481538 218.88889454 218.88889454 218.1481538 218.888891715 219.629632455 219.629632455 218.888891715 +219.62962963 220.37037037 220.37037037 219.62962963 220.370367545 221.111108285 221.111108285 220.370367545 221.11110546 221.8518462 221.8518462 221.11110546 221.851858634 222.592599374 222.592599374 221.851858634 222.592596549 223.333337289 223.333337289 222.592596549 223.333334464 224.074075204 224.074075204 223.333334464 224.074072379 224.814813119 224.814813119 224.074072379 224.814810294 225.555551034 225.555551034 224.814810294 225.555548209 226.296288949 226.296288949 225.555548209 226.296301383 227.037042123 227.037042123 226.296301383 227.037039298 227.777780038 227.777780038 227.037039298 227.777777213 228.518517953 228.518517953 227.777777213 228.518515128 229.259255868 229.259255868 228.518515128 229.259253043 229.999993783 229.999993783 229.259253043 230.000006217 230.740746957 230.740746957 230.000006217 230.740744132 231.481484872 231.481484872 230.740744132 231.481482047 232.222222787 232.222222787 231.481482047 232.222219962 232.962960702 232.962960702 232.222219962 232.962957877 233.703698617 233.703698617 232.962957877 233.703711051 234.444451791 234.444451791 233.703711051 234.444448966 235.185189706 235.185189706 234.444448966 235.185186881 235.925927621 235.925927621 235.185186881 235.925924796 236.666665536 236.666665536 235.925924796 236.666662711 237.407403451 237.407403451 236.666662711 237.407400626 238.148141366 238.148141366 237.407400626 238.1481538 238.88889454 238.88889454 238.1481538 238.888891715 239.629632455 239.629632455 238.888891715 239.62962963 240.37037037 240.37037037 239.62962963 240.370367545 241.111108285 241.111108285 240.370367545 241.11110546 241.8518462 241.8518462 241.11110546 241.851858634 242.592599374 242.592599374 241.851858634 242.592596549 243.333337289 243.333337289 242.592596549 243.333334464 244.074075204 244.074075204 243.333334464 244.074072379 244.814813119 244.814813119 244.074072379 244.814810294 245.555551034 245.555551034 244.814810294 245.555548209 246.296288949 246.296288949 245.555548209 246.296301383 247.037042123 247.037042123 246.296301383 247.037039298 247.777780038 247.777780038 247.037039298 247.777777213 248.518517953 248.518517953 247.777777213 248.518515128 249.259255868 249.259255868 248.518515128 249.259253043 249.999993783 249.999993783 249.259253043 250.000006217 250.740746957 250.740746957 250.000006217 250.740744132 251.481484872 251.481484872 250.740744132 251.481482047 252.222222787 252.222222787 251.481482047 252.222219962 252.962960702 252.962960702 252.222219962 252.962957877 253.703698617 253.703698617 252.962957877 253.703711051 254.444451791 254.444451791 253.703711051 254.444448966 255.185189706 255.185189706 254.444448966 255.185186881 255.925927621 255.925927621 255.185186881 255.925924796 256.666665536 256.666665536 255.925924796 256.666677969 257.40741871 257.40741871 256.666677969 257.407400626 258.148141366 258.148141366 257.407400626 258.1481538 258.88889454 258.88889454 258.1481538 258.888876456 259.629617197 259.629617197 258.888876456 259.62962963 260.37037037 260.37037037 259.62962963 260.370382803 261.111123544 261.111123544 260.370382803 261.11110546 261.8518462 261.8518462 261.11110546 261.851858634 262.592599374 262.592599374 261.851858634 262.59258129 263.333322031 263.333322031 262.59258129 263.333334464 264.074075204 264.074075204 263.333334464 264.074087637 264.814828378 264.814828378 264.074087637 264.814810294 265.555551034 265.555551034 264.814810294 265.555563468 266.296304208 266.296304208 265.555563468 266.296286124 267.037026865 267.037026865 266.296286124 267.037039298 267.777780038 267.777780038 267.037039298 267.777792471 268.518533212 268.518533212 267.777792471 268.518515128 269.259255868 269.259255868 268.518515128 269.259268302 270.000009042 270.000009042 269.259268302 269.999990958 270.740731698 270.740731698 269.999990958 270.740744132 271.481484872 271.481484872 270.740744132 271.481466788 272.222207529 272.222207529 271.481466788 272.222219962 272.962960702 272.962960702 272.222219962 272.962973135 273.703713876 273.703713876 272.962973135 273.703695792 274.444436532 274.444436532 273.703695792 274.444448966 275.185189706 275.185189706 274.444448966 275.185171622 275.925912363 275.925912363 275.185171622 275.925924796 276.666665536 276.666665536 275.925924796 276.666677969 277.40741871 277.40741871 276.666677969 277.407400626 278.148141366 278.148141366 277.407400626 278.1481538 278.88889454 278.88889454 278.1481538 278.888876456 279.629617197 279.629617197 278.888876456 279.62962963 280.37037037 280.37037037 279.62962963 280.370382803 281.111123544 281.111123544 280.370382803 281.11110546 281.8518462 281.8518462 281.11110546 281.851858634 282.592599374 282.592599374 281.851858634 282.59258129 283.333322031 283.333322031 282.59258129 283.333334464 284.074075204 284.074075204 283.333334464 284.074087637 284.814828378 284.814828378 284.074087637 284.814810294 285.555551034 285.555551034 284.814810294 285.555563468 286.296304208 286.296304208 285.555563468 286.296286124 287.037026865 287.037026865 286.296286124 287.037039298 287.777780038 287.777780038 287.037039298 287.777792471 288.518533212 288.518533212 287.777792471 288.518515128 289.259255868 289.259255868 288.518515128 289.259268302 290.000009042 290.000009042 289.259268302 289.999990958 290.740731698 290.740731698 289.999990958 290.740744132 291.481484872 291.481484872 290.740744132 291.481466788 292.222207529 292.222207529 291.481466788 292.222219962 292.962960702 292.962960702 292.222219962 292.962973135 293.703713876 293.703713876 292.962973135 293.703695792 294.444436532 294.444436532 293.703695792 294.444448966 295.185189706 295.185189706 294.444448966 295.185171622 295.925912363 295.925912363 295.185171622 295.925924796 296.666665536 296.666665536 295.925924796 296.666677969 297.40741871 297.40741871 296.666677969 297.407400626 298.148141366 298.148141366 297.407400626 298.1481538 298.88889454 298.88889454 298.1481538 298.888876456 299.629617197 299.629617197 298.888876456 299.62962963 300.37037037 300.37037037 299.62962963 300.370382803 301.111123544 301.111123544 300.370382803 301.11110546 301.8518462 301.8518462 301.11110546 301.851858634 302.592599374 302.592599374 301.851858634 302.59258129 303.333322031 303.333322031 302.59258129 303.333334464 304.074075204 304.074075204 303.333334464 304.074087637 304.814828378 304.814828378 304.074087637 304.814810294 305.555551034 305.555551034 304.814810294 305.555563468 306.296304208 306.296304208 305.555563468 306.296286124 307.037026865 307.037026865 306.296286124 307.037039298 307.777780038 307.777780038 307.037039298 307.777792471 308.518533212 308.518533212 307.777792471 308.518515128 309.259255868 309.259255868 308.518515128 309.259268302 310.000009042 310.000009042 309.259268302 309.999990958 310.740731698 310.740731698 309.999990958 310.740744132 311.481484872 311.481484872 310.740744132 311.481466788 312.222207529 312.222207529 311.481466788 312.222219962 312.962960702 312.962960702 312.222219962 312.962973135 313.703713876 313.703713876 312.962973135 313.703695792 314.444436532 314.444436532 313.703695792 314.444448966 315.185189706 315.185189706 314.444448966 315.185171622 315.925912363 315.925912363 315.185171622 315.925924796 316.666665536 316.666665536 315.925924796 316.666677969 317.40741871 317.40741871 316.666677969 317.407400626 318.148141366 318.148141366 317.407400626 318.1481538 318.88889454 318.88889454 318.1481538 318.888876456 319.629617197 319.629617197 318.888876456 319.62962963 320.37037037 320.37037037 319.62962963 320.370382803 321.111123544 321.111123544 320.370382803 321.11110546 321.8518462 321.8518462 321.11110546 321.851858634 322.592599374 322.592599374 321.851858634 322.59258129 323.333322031 323.333322031 322.59258129 323.333334464 324.074075204 324.074075204 323.333334464 324.074087637 324.814828378 324.814828378 324.074087637 324.814810294 325.555551034 325.555551034 324.814810294 325.555563468 326.296304208 326.296304208 325.555563468 326.296286124 327.037026865 327.037026865 326.296286124 327.037039298 327.777780038 327.777780038 327.037039298 327.777792471 328.518533212 328.518533212 327.777792471 328.518515128 329.259255868 329.259255868 328.518515128 329.259268302 330.000009042 330.000009042 329.259268302 329.999990958 330.740731698 330.740731698 329.999990958 330.740744132 331.481484872 331.481484872 330.740744132 331.481466788 332.222207529 332.222207529 331.481466788 332.222219962 332.962960702 332.962960702 332.222219962 332.962973135 333.703713876 333.703713876 332.962973135 333.703695792 334.444436532 334.444436532 333.703695792 334.444448966 335.185189706 335.185189706 334.444448966 335.185171622 335.925912363 335.925912363 335.185171622 335.925924796 336.666665536 336.666665536 335.925924796 336.666677969 337.40741871 337.40741871 336.666677969 337.407400626 338.148141366 338.148141366 337.407400626 338.1481538 338.88889454 338.88889454 338.1481538 338.888876456 339.629617197 339.629617197 338.888876456 339.62962963 340.37037037 340.37037037 339.62962963 340.370382803 341.111123544 341.111123544 340.370382803 341.11110546 341.8518462 341.8518462 341.11110546 341.851858634 342.592599374 342.592599374 341.851858634 342.59258129 343.333322031 343.333322031 342.59258129 343.333334464 344.074075204 344.074075204 343.333334464 344.074087637 344.814828378 344.814828378 344.074087637 344.814810294 345.555551034 345.555551034 344.814810294 345.555563468 346.296304208 346.296304208 345.555563468 346.296286124 347.037026865 347.037026865 346.296286124 347.037039298 347.777780038 347.777780038 347.037039298 347.777792471 348.518533212 348.518533212 347.777792471 348.518515128 349.259255868 349.259255868 348.518515128 349.259268302 350.000009042 350.000009042 349.259268302 349.999990958 350.740731698 350.740731698 349.999990958 350.740744132 351.481484872 351.481484872 350.740744132 351.481466788 352.222207529 352.222207529 351.481466788 352.222219962 352.962960702 352.962960702 352.222219962 352.962973135 353.703713876 353.703713876 352.962973135 353.703695792 354.444436532 354.444436532 353.703695792 354.444448966 355.185189706 355.185189706 354.444448966 355.185171622 355.925912363 355.925912363 355.185171622 355.925924796 356.666665536 356.666665536 355.925924796 356.666677969 357.40741871 357.40741871 356.666677969 357.407400626 358.148141366 358.148141366 357.407400626 358.1481538 358.88889454 358.88889454 358.1481538 358.888876456 359.629617197 359.629617197 358.888876456 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 +232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 +247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 +262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 +277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 +292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 +307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 +322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 +337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 +352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.375 0.375 0.375 -0.375 0.375 1.125 1.125 0.375 1.125 1.875 1.875 1.125 1.875 2.625 2.625 1.875 2.625 3.375 3.375 2.625 3.375 4.125 4.125 3.375 4.125 4.875 4.875 4.125 4.875 5.625 5.625 4.875 5.625 6.375 6.375 5.625 6.375 7.125 7.125 6.375 7.125 7.875 7.875 7.125 7.875 8.625 8.625 7.875 8.625 9.375 9.375 8.625 9.375 10.125 10.125 9.375 10.125 10.875 10.875 10.125 10.875 11.625 11.625 10.875 11.625 12.375 12.375 11.625 12.375 13.125 13.125 12.375 13.125 13.875 13.875 13.125 13.875 14.625 14.625 13.875 14.625 15.375 15.375 14.625 15.375 16.125 16.125 15.375 16.125 16.875 16.875 16.125 16.875 17.625 17.625 16.875 17.625 18.375 18.375 17.625 18.375 19.125 19.125 18.375 19.125 19.875 19.875 19.125 19.875 20.625 20.625 19.875 20.625 21.375 21.375 20.625 21.375 22.125 22.125 21.375 22.125 22.875 22.875 22.125 22.875 23.625 23.625 22.875 23.625 24.375 24.375 23.625 24.375 25.125 25.125 24.375 25.125 25.875 25.875 25.125 25.875 26.625 26.625 25.875 26.625 27.375 27.375 26.625 27.375 28.125 28.125 27.375 28.125 28.875 28.875 28.125 28.875 29.625 29.625 28.875 29.625 30.375 30.375 29.625 30.375 31.125 31.125 30.375 31.125 31.875 31.875 31.125 31.875 32.625 32.625 31.875 32.625 33.375 33.375 32.625 33.375 34.125 34.125 33.375 34.125 34.875 34.875 34.125 34.875 35.625 35.625 34.875 35.625 36.375 36.375 35.625 36.375 37.125 37.125 36.375 37.125 37.875 37.875 37.125 37.875 38.625 38.625 37.875 38.625 39.375 39.375 38.625 39.375 40.125 40.125 39.375 40.125 40.875 40.875 40.125 40.875 41.625 41.625 40.875 41.625 42.375 42.375 41.625 42.375 43.125 43.125 42.375 43.125 43.875 43.875 43.125 43.875 44.625 44.625 43.875 44.625 45.375 45.375 44.625 45.375 46.125 46.125 45.375 46.125 46.875 46.875 46.125 46.875 47.625 47.625 46.875 47.625 48.375 48.375 47.625 48.375 49.125 49.125 48.375 49.125 49.875 49.875 49.125 49.875 50.625 50.625 49.875 50.625 51.375 51.375 50.625 51.375 52.125 52.125 51.375 52.125 52.875 52.875 52.125 52.875 53.625 53.625 52.875 53.625 54.375 54.375 53.625 54.375 55.125 55.125 54.375 55.125 55.875 55.875 55.125 55.875 56.625 56.625 55.875 56.625 57.375 57.375 56.625 57.375 58.125 58.125 57.375 58.125 58.875 58.875 58.125 58.875 59.625 59.625 58.875 59.625 60.375 60.375 59.625 60.375 61.125 61.125 60.375 61.125 61.875 61.875 61.125 61.875 62.625 62.625 61.875 62.625 63.375 63.375 62.625 63.375 64.125 64.125 63.375 64.125 64.875 64.875 64.125 64.875 65.625 65.625 64.875 65.625 66.375 66.375 65.625 66.375 67.125 67.125 66.375 67.125 67.875 67.875 67.125 67.875 68.625 68.625 67.875 68.625 69.375 69.375 68.625 69.375 70.125 70.125 69.375 70.125 70.875 70.875 70.125 70.875 71.625 71.625 70.875 71.625 72.375 72.375 71.625 72.375 73.125 73.125 72.375 73.125 73.875 73.875 73.125 73.875 74.625 74.625 73.875 74.625 75.375 75.375 74.625 75.375 76.125 76.125 75.375 76.125 76.875 76.875 76.125 76.875 77.625 77.625 76.875 77.625 78.375 78.375 77.625 78.375 79.125 79.125 78.375 79.125 79.875 79.875 79.125 79.875 80.625 80.625 79.875 80.625 81.375 81.375 80.625 81.375 82.125 82.125 81.375 82.125 82.875 82.875 82.125 82.875 83.625 83.625 82.875 83.625 84.375 84.375 83.625 84.375 85.125 85.125 84.375 85.125 85.875 85.875 85.125 85.875 86.625 86.625 85.875 86.625 87.375 87.375 86.625 87.375 88.125 88.125 87.375 88.125 88.875 88.875 88.125 88.875 89.625 89.625 88.875 89.625 90.375 90.375 89.625 90.375 91.125 91.125 90.375 91.125 91.875 91.875 91.125 91.875 92.625 92.625 91.875 92.625 93.375 93.375 92.625 93.375 94.125 94.125 93.375 94.125 94.875 94.875 94.125 94.875 95.625 95.625 94.875 95.625 96.375 96.375 95.625 96.375 97.125 97.125 96.375 97.125 97.875 97.875 97.125 97.875 98.625 98.625 97.875 98.625 99.375 99.375 98.625 99.375 100.125 100.125 99.375 100.125 100.875 100.875 100.125 100.875 101.625 101.625 100.875 101.625 102.375 102.375 101.625 102.375 103.125 103.125 102.375 103.125 103.875 103.875 103.125 103.875 104.625 104.625 103.875 104.625 105.375 105.375 104.625 105.375 106.125 106.125 105.375 106.125 106.875 106.875 106.125 106.875 107.625 107.625 106.875 107.625 108.375 108.375 107.625 108.375 109.125 109.125 108.375 109.125 109.875 109.875 109.125 109.875 110.625 110.625 109.875 110.625 111.375 111.375 110.625 111.375 112.125 112.125 111.375 112.125 112.875 112.875 112.125 112.875 113.625 113.625 112.875 113.625 114.375 114.375 113.625 114.375 115.125 115.125 114.375 115.125 115.875 115.875 115.125 115.875 116.625 116.625 115.875 116.625 117.375 117.375 116.625 117.375 118.125 118.125 117.375 118.125 118.875 118.875 118.125 118.875 119.625 119.625 118.875 119.625 120.375 120.375 119.625 120.375 121.125 121.125 120.375 121.125 121.875 121.875 121.125 121.875 122.625 122.625 121.875 122.625 123.375 123.375 122.625 123.375 124.125 124.125 123.375 124.125 124.875 124.875 124.125 124.875 125.625 125.625 124.875 125.625 126.375 126.375 125.625 126.375 127.125 127.125 126.375 127.125 127.875 127.875 127.125 127.875 128.625 128.625 127.875 128.625 129.375 129.375 128.625 129.375 130.125 130.125 129.375 130.125 130.875 130.875 130.125 130.875 131.625 131.625 130.875 131.625 132.375 132.375 131.625 132.375 133.125 133.125 132.375 133.125 133.875 133.875 133.125 133.875 134.625 134.625 133.875 134.625 135.375 135.375 134.625 135.375 136.125 136.125 135.375 136.125 136.875 136.875 136.125 136.875 137.625 137.625 136.875 137.625 138.375 138.375 137.625 138.375 139.125 139.125 138.375 139.125 139.875 139.875 139.125 139.875 140.625 140.625 139.875 140.625 141.375 141.375 140.625 141.375 142.125 142.125 141.375 142.125 142.875 142.875 142.125 142.875 143.625 143.625 142.875 143.625 144.375 144.375 143.625 144.375 145.125 145.125 144.375 145.125 145.875 145.875 145.125 145.875 146.625 146.625 145.875 146.625 147.375 147.375 146.625 147.375 148.125 148.125 147.375 148.125 148.875 148.875 148.125 148.875 149.625 149.625 148.875 149.625 150.375 150.375 149.625 150.375 151.125 151.125 150.375 151.125 151.875 151.875 151.125 151.875 152.625 152.625 151.875 152.625 153.375 153.375 152.625 153.375 154.125 154.125 153.375 154.125 154.875 154.875 154.125 154.875 155.625 155.625 154.875 155.625 156.375 156.375 155.625 156.375 157.125 157.125 156.375 157.125 157.875 157.875 157.125 157.875 158.625 158.625 157.875 158.625 159.375 159.375 158.625 159.375 160.125 160.125 159.375 160.125 160.875 160.875 160.125 160.875 161.625 161.625 160.875 161.625 162.375 162.375 161.625 162.375 163.125 163.125 162.375 163.125 163.875 163.875 163.125 163.875 164.625 164.625 163.875 164.625 165.375 165.375 164.625 165.375 166.125 166.125 165.375 166.125 166.875 166.875 166.125 166.875 167.625 167.625 166.875 167.625 168.375 168.375 167.625 168.375 169.125 169.125 168.375 169.125 169.875 169.875 169.125 169.875 170.625 170.625 169.875 170.625 171.375 171.375 170.625 171.375 172.125 172.125 171.375 172.125 172.875 172.875 172.125 172.875 173.625 173.625 172.875 173.625 174.375 174.375 173.625 174.375 175.125 175.125 174.375 175.125 175.875 175.875 175.125 175.875 176.625 176.625 175.875 176.625 177.375 177.375 176.625 177.375 178.125 178.125 177.375 178.125 178.875 178.875 178.125 178.875 179.625 179.625 178.875 179.625 180.375 180.375 179.625 180.375 181.125 181.125 180.375 181.125 181.875 181.875 181.125 181.875 182.625 182.625 181.875 182.625 183.375 183.375 182.625 183.375 184.125 184.125 183.375 184.125 184.875 184.875 184.125 184.875 185.625 185.625 184.875 185.625 186.375 186.375 185.625 186.375 187.125 187.125 186.375 187.125 187.875 187.875 187.125 187.875 188.625 188.625 187.875 188.625 189.375 189.375 188.625 189.375 190.125 190.125 189.375 190.125 190.875 190.875 190.125 190.875 191.625 191.625 190.875 191.625 192.375 192.375 191.625 192.375 193.125 193.125 192.375 193.125 193.875 193.875 193.125 193.875 194.625 194.625 193.875 194.625 195.375 195.375 194.625 195.375 196.125 196.125 195.375 196.125 196.875 196.875 196.125 196.875 197.625 197.625 196.875 197.625 198.375 198.375 197.625 198.375 199.125 199.125 198.375 199.125 199.875 199.875 199.125 199.875 200.625 200.625 199.875 200.625 201.375 201.375 200.625 201.375 202.125 202.125 201.375 202.125 202.875 202.875 202.125 202.875 203.625 203.625 202.875 203.625 204.375 204.375 203.625 204.375 205.125 205.125 204.375 205.125 205.875 205.875 205.125 205.875 206.625 206.625 205.875 206.625 207.375 207.375 206.625 207.375 208.125 208.125 207.375 208.125 208.875 208.875 208.125 208.875 209.625 209.625 208.875 209.625 210.375 210.375 209.625 210.375 211.125 211.125 210.375 211.125 211.875 211.875 211.125 211.875 212.625 212.625 211.875 212.625 213.375 213.375 212.625 213.375 214.125 214.125 213.375 214.125 214.875 214.875 214.125 214.875 215.625 215.625 214.875 215.625 216.375 216.375 215.625 216.375 217.125 217.125 216.375 217.125 217.875 217.875 217.125 217.875 218.625 218.625 217.875 218.625 219.375 219.375 218.625 219.375 220.125 220.125 219.375 220.125 220.875 220.875 220.125 220.875 221.625 221.625 220.875 221.625 222.375 222.375 221.625 222.375 223.125 223.125 222.375 223.125 223.875 223.875 223.125 223.875 224.625 224.625 223.875 224.625 225.375 225.375 224.625 225.375 226.125 226.125 225.375 226.125 226.875 226.875 226.125 226.875 227.625 227.625 226.875 227.625 228.375 228.375 227.625 228.375 229.125 229.125 228.375 229.125 229.875 229.875 229.125 229.875 230.625 230.625 229.875 230.625 231.375 231.375 230.625 231.375 232.125 232.125 231.375 232.125 232.875 232.875 232.125 232.875 233.625 233.625 232.875 233.625 234.375 234.375 233.625 234.375 235.125 235.125 234.375 235.125 235.875 235.875 235.125 235.875 236.625 236.625 235.875 236.625 237.375 237.375 236.625 237.375 238.125 238.125 237.375 238.125 238.875 238.875 238.125 238.875 239.625 239.625 238.875 239.625 240.375 240.375 239.625 240.375 241.125 241.125 240.375 241.125 241.875 241.875 241.125 241.875 242.625 242.625 241.875 242.625 243.375 243.375 242.625 243.375 244.125 244.125 243.375 244.125 244.875 244.875 244.125 244.875 245.625 245.625 244.875 245.625 246.375 246.375 245.625 246.375 247.125 247.125 246.375 247.125 247.875 247.875 247.125 247.875 248.625 248.625 247.875 248.625 249.375 249.375 248.625 249.375 250.125 250.125 249.375 250.125 250.875 250.875 250.125 250.875 251.625 251.625 250.875 251.625 252.375 252.375 251.625 252.375 253.125 253.125 252.375 253.125 253.875 253.875 253.125 253.875 254.625 254.625 253.875 254.625 255.375 255.375 254.625 255.375 256.125 256.125 255.375 256.125 256.875 256.875 256.125 256.875 257.625 257.625 256.875 257.625 258.375 258.375 257.625 258.375 259.125 259.125 258.375 259.125 259.875 259.875 259.125 259.875 260.625 260.625 259.875 260.625 261.375 261.375 260.625 261.375 262.125 262.125 261.375 262.125 262.875 262.875 262.125 262.875 263.625 263.625 262.875 263.625 264.375 264.375 263.625 264.375 265.125 265.125 264.375 265.125 265.875 265.875 265.125 265.875 266.625 266.625 265.875 266.625 267.375 267.375 266.625 267.375 268.125 268.125 267.375 268.125 268.875 268.875 268.125 268.875 269.625 269.625 268.875 269.625 270.375 270.375 269.625 270.375 271.125 271.125 270.375 271.125 271.875 271.875 271.125 271.875 272.625 272.625 271.875 272.625 273.375 273.375 272.625 273.375 274.125 274.125 273.375 274.125 274.875 274.875 274.125 274.875 275.625 275.625 274.875 275.625 276.375 276.375 275.625 276.375 277.125 277.125 276.375 277.125 277.875 277.875 277.125 277.875 278.625 278.625 277.875 278.625 279.375 279.375 278.625 279.375 280.125 280.125 279.375 280.125 280.875 280.875 280.125 280.875 281.625 281.625 280.875 281.625 282.375 282.375 281.625 282.375 283.125 283.125 282.375 283.125 283.875 283.875 283.125 283.875 284.625 284.625 283.875 284.625 285.375 285.375 284.625 285.375 286.125 286.125 285.375 286.125 286.875 286.875 286.125 286.875 287.625 287.625 286.875 287.625 288.375 288.375 287.625 288.375 289.125 289.125 288.375 289.125 289.875 289.875 289.125 289.875 290.625 290.625 289.875 290.625 291.375 291.375 290.625 291.375 292.125 292.125 291.375 292.125 292.875 292.875 292.125 292.875 293.625 293.625 292.875 293.625 294.375 294.375 293.625 294.375 295.125 295.125 294.375 295.125 295.875 295.875 295.125 295.875 296.625 296.625 295.875 296.625 297.375 297.375 296.625 297.375 298.125 298.125 297.375 298.125 298.875 298.875 298.125 298.875 299.625 299.625 298.875 299.625 300.375 300.375 299.625 300.375 301.125 301.125 300.375 301.125 301.875 301.875 301.125 301.875 302.625 302.625 301.875 302.625 303.375 303.375 302.625 303.375 304.125 304.125 303.375 304.125 304.875 304.875 304.125 304.875 305.625 305.625 304.875 305.625 306.375 306.375 305.625 306.375 307.125 307.125 306.375 307.125 307.875 307.875 307.125 307.875 308.625 308.625 307.875 308.625 309.375 309.375 308.625 309.375 310.125 310.125 309.375 310.125 310.875 310.875 310.125 310.875 311.625 311.625 310.875 311.625 312.375 312.375 311.625 312.375 313.125 313.125 312.375 313.125 313.875 313.875 313.125 313.875 314.625 314.625 313.875 314.625 315.375 315.375 314.625 315.375 316.125 316.125 315.375 316.125 316.875 316.875 316.125 316.875 317.625 317.625 316.875 317.625 318.375 318.375 317.625 318.375 319.125 319.125 318.375 319.125 319.875 319.875 319.125 319.875 320.625 320.625 319.875 320.625 321.375 321.375 320.625 321.375 322.125 322.125 321.375 322.125 322.875 322.875 322.125 322.875 323.625 323.625 322.875 323.625 324.375 324.375 323.625 324.375 325.125 325.125 324.375 325.125 325.875 325.875 325.125 325.875 326.625 326.625 325.875 326.625 327.375 327.375 326.625 327.375 328.125 328.125 327.375 328.125 328.875 328.875 328.125 328.875 329.625 329.625 328.875 329.625 330.375 330.375 329.625 330.375 331.125 331.125 330.375 331.125 331.875 331.875 331.125 331.875 332.625 332.625 331.875 332.625 333.375 333.375 332.625 333.375 334.125 334.125 333.375 334.125 334.875 334.875 334.125 334.875 335.625 335.625 334.875 335.625 336.375 336.375 335.625 336.375 337.125 337.125 336.375 337.125 337.875 337.875 337.125 337.875 338.625 338.625 337.875 338.625 339.375 339.375 338.625 339.375 340.125 340.125 339.375 340.125 340.875 340.875 340.125 340.875 341.625 341.625 340.875 341.625 342.375 342.375 341.625 342.375 343.125 343.125 342.375 343.125 343.875 343.875 343.125 343.875 344.625 344.625 343.875 344.625 345.375 345.375 344.625 345.375 346.125 346.125 345.375 346.125 346.875 346.875 346.125 346.875 347.625 347.625 346.875 347.625 348.375 348.375 347.625 348.375 349.125 349.125 348.375 349.125 349.875 349.875 349.125 349.875 350.625 350.625 349.875 350.625 351.375 351.375 350.625 351.375 352.125 352.125 351.375 352.125 352.875 352.875 352.125 352.875 353.625 353.625 352.875 353.625 354.375 354.375 353.625 354.375 355.125 355.125 354.375 355.125 355.875 355.875 355.125 355.875 356.625 356.625 355.875 356.625 357.375 357.375 356.625 357.375 358.125 358.125 357.375 358.125 358.875 358.875 358.125 358.875 359.625 359.625 358.875 -0.4 0.4 0.4 -0.4 0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 +8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.4 0.4 0.4 -0.4 0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 +48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.4 0.4 0.4 -0.4 0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 +88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.4 0.4 0.4 -0.4 0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 +128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.4 0.4 0.4 -0.4 0.400000011921 1.20000001192 1.20000001192 0.400000011921 1.20000002384 2.00000002384 2.00000002384 1.20000002384 2.00000009537 2.80000009537 2.80000009537 2.00000009537 2.80000004768 3.60000004768 3.60000004768 2.80000004768 3.6 4.4 4.4 3.6 4.40000019073 5.20000019073 5.20000019073 4.40000019073 5.19999990463 5.99999990463 5.99999990463 5.19999990463 6.00000009537 6.80000009537 6.80000009537 6.00000009537 6.79999980927 7.59999980927 7.59999980927 6.79999980927 7.6 8.4 8.4 7.6 8.40000019073 9.20000019073 9.20000019073 8.40000019073 9.20000038147 10.0000003815 10.0000003815 9.20000038147 9.99999961853 10.7999996185 10.7999996185 9.99999961853 10.7999998093 11.5999998093 11.5999998093 10.7999998093 11.6 12.4 12.4 11.6 12.4000001907 13.2000001907 13.2000001907 12.4000001907 13.2000003815 14.0000003815 14.0000003815 13.2000003815 13.9999996185 14.7999996185 14.7999996185 13.9999996185 14.7999998093 15.5999998093 15.5999998093 14.7999998093 15.6 16.4 16.4 15.6 16.3999992371 17.1999992371 17.1999992371 16.3999992371 17.2000003815 18.0000003815 18.0000003815 17.2000003815 17.9999996185 18.7999996185 18.7999996185 17.9999996185 18.8000007629 19.6000007629 19.6000007629 18.8000007629 19.6 20.4 20.4 19.6 20.3999992371 21.1999992371 21.1999992371 20.3999992371 21.2000003815 22.0000003815 22.0000003815 21.2000003815 21.9999996185 22.7999996185 22.7999996185 21.9999996185 22.8000007629 23.6000007629 23.6000007629 22.8000007629 23.6 24.4 24.4 23.6 24.3999992371 25.1999992371 25.1999992371 24.3999992371 25.2000003815 26.0000003815 26.0000003815 25.2000003815 25.9999996185 26.7999996185 26.7999996185 25.9999996185 26.8000007629 27.6000007629 27.6000007629 26.8000007629 27.6 28.4 28.4 27.6 28.3999992371 29.1999992371 29.1999992371 28.3999992371 29.2000003815 30.0000003815 30.0000003815 29.2000003815 29.9999996185 30.7999996185 30.7999996185 29.9999996185 30.8000007629 31.6000007629 31.6000007629 30.8000007629 31.6 32.4 32.4 31.6 32.3999992371 33.1999992371 33.1999992371 32.3999992371 33.1999984741 33.9999984741 33.9999984741 33.1999984741 34.0000015259 34.8000015259 34.8000015259 34.0000015259 34.8000007629 35.6000007629 35.6000007629 34.8000007629 35.6 36.4 36.4 35.6 36.3999992371 37.1999992371 37.1999992371 36.3999992371 37.1999984741 37.9999984741 37.9999984741 37.1999984741 38.0000015259 38.8000015259 38.8000015259 38.0000015259 38.8000007629 39.6000007629 39.6000007629 38.8000007629 39.6 40.4 40.4 39.6 40.3999992371 41.1999992371 41.1999992371 40.3999992371 41.1999984741 41.9999984741 41.9999984741 41.1999984741 42.0000015259 42.8000015259 42.8000015259 42.0000015259 42.8000007629 43.6000007629 43.6000007629 42.8000007629 43.6 44.4 44.4 43.6 44.3999992371 45.1999992371 45.1999992371 44.3999992371 45.1999984741 45.9999984741 45.9999984741 45.1999984741 46.0000015259 46.8000015259 46.8000015259 46.0000015259 46.8000007629 47.6000007629 47.6000007629 46.8000007629 47.6 48.4 48.4 47.6 48.3999992371 49.1999992371 49.1999992371 48.3999992371 49.1999984741 49.9999984741 49.9999984741 49.1999984741 50.0000015259 50.8000015259 50.8000015259 50.0000015259 50.8000007629 51.6000007629 51.6000007629 50.8000007629 51.6 52.4 52.4 51.6 52.3999992371 53.1999992371 53.1999992371 52.3999992371 53.1999984741 53.9999984741 53.9999984741 53.1999984741 54.0000015259 54.8000015259 54.8000015259 54.0000015259 54.8000007629 55.6000007629 55.6000007629 54.8000007629 55.6 56.4 56.4 55.6 56.3999992371 57.1999992371 57.1999992371 56.3999992371 57.1999984741 57.9999984741 57.9999984741 57.1999984741 58.0000015259 58.8000015259 58.8000015259 58.0000015259 58.8000007629 59.6000007629 59.6000007629 58.8000007629 59.6 60.4 60.4 59.6 60.3999992371 61.1999992371 61.1999992371 60.3999992371 61.1999984741 61.9999984741 61.9999984741 61.1999984741 62.0000015259 62.8000015259 62.8000015259 62.0000015259 62.8000007629 63.6000007629 63.6000007629 62.8000007629 63.6 64.4 64.4 63.6 64.4000030518 65.2000030518 65.2000030518 64.4000030518 65.1999984741 65.9999984741 65.9999984741 65.1999984741 66.0000015259 66.8000015259 66.8000015259 66.0000015259 66.7999969482 67.5999969482 67.5999969482 66.7999969482 67.6 68.4 68.4 67.6 68.4000030518 69.2000030518 69.2000030518 68.4000030518 69.1999984741 69.9999984741 69.9999984741 69.1999984741 70.0000015259 70.8000015259 70.8000015259 70.0000015259 70.7999969482 71.5999969482 71.5999969482 70.7999969482 71.6 72.4 72.4 71.6 72.4000030518 73.2000030518 73.2000030518 72.4000030518 73.1999984741 73.9999984741 73.9999984741 73.1999984741 74.0000015259 74.8000015259 74.8000015259 74.0000015259 74.7999969482 75.5999969482 75.5999969482 74.7999969482 75.6 76.4 76.4 75.6 76.4000030518 77.2000030518 77.2000030518 76.4000030518 77.1999984741 77.9999984741 77.9999984741 77.1999984741 78.0000015259 78.8000015259 78.8000015259 78.0000015259 78.7999969482 79.5999969482 79.5999969482 78.7999969482 79.6 80.4 80.4 79.6 80.4000030518 81.2000030518 81.2000030518 80.4000030518 81.1999984741 81.9999984741 81.9999984741 81.1999984741 82.0000015259 82.8000015259 82.8000015259 82.0000015259 82.7999969482 83.5999969482 83.5999969482 82.7999969482 83.6 84.4 84.4 83.6 84.4000030518 85.2000030518 85.2000030518 84.4000030518 85.1999984741 85.9999984741 85.9999984741 85.1999984741 86.0000015259 86.8000015259 86.8000015259 86.0000015259 86.7999969482 87.5999969482 87.5999969482 86.7999969482 87.6 88.4 88.4 87.6 88.4000030518 89.2000030518 89.2000030518 88.4000030518 89.1999984741 89.9999984741 89.9999984741 89.1999984741 90.0000015259 90.8000015259 90.8000015259 90.0000015259 90.7999969482 91.5999969482 91.5999969482 90.7999969482 91.6 92.4 92.4 91.6 92.4000030518 93.2000030518 93.2000030518 92.4000030518 93.1999984741 93.9999984741 93.9999984741 93.1999984741 94.0000015259 94.8000015259 94.8000015259 94.0000015259 94.7999969482 95.5999969482 95.5999969482 94.7999969482 95.6 96.4 96.4 95.6 96.4000030518 97.2000030518 97.2000030518 96.4000030518 97.1999984741 97.9999984741 97.9999984741 97.1999984741 98.0000015259 98.8000015259 98.8000015259 98.0000015259 98.7999969482 99.5999969482 99.5999969482 98.7999969482 99.6 100.4 100.4 99.6 100.400003052 101.200003052 101.200003052 100.400003052 101.199998474 101.999998474 101.999998474 101.199998474 102.000001526 102.800001526 102.800001526 102.000001526 102.799996948 103.599996948 103.599996948 102.799996948 103.6 104.4 104.4 103.6 104.400003052 105.200003052 105.200003052 104.400003052 105.199998474 105.999998474 105.999998474 105.199998474 106.000001526 106.800001526 106.800001526 106.000001526 106.799996948 107.599996948 107.599996948 106.799996948 107.6 108.4 108.4 107.6 108.400003052 109.200003052 109.200003052 108.400003052 109.199998474 109.999998474 109.999998474 109.199998474 110.000001526 110.800001526 110.800001526 110.000001526 110.799996948 111.599996948 111.599996948 110.799996948 111.6 112.4 112.4 111.6 112.400003052 113.200003052 113.200003052 112.400003052 113.199998474 113.999998474 113.999998474 113.199998474 114.000001526 114.800001526 114.800001526 114.000001526 114.799996948 115.599996948 115.599996948 114.799996948 115.6 116.4 116.4 115.6 116.400003052 117.200003052 117.200003052 116.400003052 117.199998474 117.999998474 117.999998474 117.199998474 118.000001526 118.800001526 118.800001526 118.000001526 118.799996948 119.599996948 119.599996948 118.799996948 119.6 120.4 120.4 119.6 120.400003052 121.200003052 121.200003052 120.400003052 121.199998474 121.999998474 121.999998474 121.199998474 122.000001526 122.800001526 122.800001526 122.000001526 122.799996948 123.599996948 123.599996948 122.799996948 123.6 124.4 124.4 123.6 124.400003052 125.200003052 125.200003052 124.400003052 125.199998474 125.999998474 125.999998474 125.199998474 126.000001526 126.800001526 126.800001526 126.000001526 126.799996948 127.599996948 127.599996948 126.799996948 127.6 128.4 128.4 127.6 128.400003052 129.200003052 129.200003052 128.400003052 129.200006104 130.000006104 130.000006104 129.200006104 129.999993896 130.799993896 130.799993896 129.999993896 130.799996948 131.599996948 131.599996948 130.799996948 131.6 132.4 132.4 131.6 132.400003052 133.200003052 133.200003052 132.400003052 133.200006104 134.000006104 134.000006104 133.200006104 133.999993896 134.799993896 134.799993896 133.999993896 134.799996948 135.599996948 135.599996948 134.799996948 135.6 136.4 136.4 135.6 136.400003052 137.200003052 137.200003052 136.400003052 137.200006104 138.000006104 138.000006104 137.200006104 137.999993896 138.799993896 138.799993896 137.999993896 138.799996948 139.599996948 139.599996948 138.799996948 139.6 140.4 140.4 139.6 140.400003052 141.200003052 141.200003052 140.400003052 141.200006104 142.000006104 142.000006104 141.200006104 141.999993896 142.799993896 142.799993896 141.999993896 142.799996948 143.599996948 143.599996948 142.799996948 143.6 144.4 144.4 143.6 144.400003052 145.200003052 145.200003052 144.400003052 145.200006104 146.000006104 146.000006104 145.200006104 145.999993896 146.799993896 146.799993896 145.999993896 146.799996948 147.599996948 147.599996948 146.799996948 147.6 148.4 148.4 147.6 148.400003052 149.200003052 149.200003052 148.400003052 149.200006104 150.000006104 150.000006104 149.200006104 149.999993896 150.799993896 150.799993896 149.999993896 150.799996948 151.599996948 151.599996948 150.799996948 151.6 152.4 152.4 151.6 152.400003052 153.200003052 153.200003052 152.400003052 153.200006104 154.000006104 154.000006104 153.200006104 153.999993896 154.799993896 154.799993896 153.999993896 154.799996948 155.599996948 155.599996948 154.799996948 155.6 156.4 156.4 155.6 156.400003052 157.200003052 157.200003052 156.400003052 157.200006104 158.000006104 158.000006104 157.200006104 157.999993896 158.799993896 158.799993896 157.999993896 158.799996948 159.599996948 159.599996948 158.799996948 159.6 160.4 160.4 159.6 160.400003052 161.200003052 161.200003052 160.400003052 161.200006104 162.000006104 162.000006104 161.200006104 161.999993896 162.799993896 162.799993896 161.999993896 162.799996948 163.599996948 163.599996948 162.799996948 163.6 164.4 164.4 163.6 164.400003052 165.200003052 165.200003052 164.400003052 165.200006104 166.000006104 166.000006104 165.200006104 165.999993896 166.799993896 166.799993896 165.999993896 166.799996948 167.599996948 167.599996948 166.799996948 167.6 168.4 168.4 167.6 +168.400003052 169.200003052 169.200003052 168.400003052 169.200006104 170.000006104 170.000006104 169.200006104 169.999993896 170.799993896 170.799993896 169.999993896 170.799996948 171.599996948 171.599996948 170.799996948 171.6 172.4 172.4 171.6 172.400003052 173.200003052 173.200003052 172.400003052 173.200006104 174.000006104 174.000006104 173.200006104 173.999993896 174.799993896 174.799993896 173.999993896 174.799996948 175.599996948 175.599996948 174.799996948 175.6 176.4 176.4 175.6 176.400003052 177.200003052 177.200003052 176.400003052 177.200006104 178.000006104 178.000006104 177.200006104 177.999993896 178.799993896 178.799993896 177.999993896 178.799996948 179.599996948 179.599996948 178.799996948 179.6 180.4 180.4 179.6 180.400003052 181.200003052 181.200003052 180.400003052 181.200006104 182.000006104 182.000006104 181.200006104 181.999993896 182.799993896 182.799993896 181.999993896 182.799996948 183.599996948 183.599996948 182.799996948 183.6 184.4 184.4 183.6 184.400003052 185.200003052 185.200003052 184.400003052 185.200006104 186.000006104 186.000006104 185.200006104 185.999993896 186.799993896 186.799993896 185.999993896 186.799996948 187.599996948 187.599996948 186.799996948 187.6 188.4 188.4 187.6 188.400003052 189.200003052 189.200003052 188.400003052 189.200006104 190.000006104 190.000006104 189.200006104 189.999993896 190.799993896 190.799993896 189.999993896 190.799996948 191.599996948 191.599996948 190.799996948 191.6 192.4 192.4 191.6 192.400003052 193.200003052 193.200003052 192.400003052 193.200006104 194.000006104 194.000006104 193.200006104 193.999993896 194.799993896 194.799993896 193.999993896 194.799996948 195.599996948 195.599996948 194.799996948 195.6 196.4 196.4 195.6 196.400003052 197.200003052 197.200003052 196.400003052 197.200006104 198.000006104 198.000006104 197.200006104 197.999993896 198.799993896 198.799993896 197.999993896 198.799996948 199.599996948 199.599996948 198.799996948 199.6 200.4 200.4 199.6 200.400003052 201.200003052 201.200003052 200.400003052 201.200006104 202.000006104 202.000006104 201.200006104 201.999993896 202.799993896 202.799993896 201.999993896 202.799996948 203.599996948 203.599996948 202.799996948 203.6 204.4 204.4 203.6 204.400003052 205.200003052 205.200003052 204.400003052 205.200006104 206.000006104 206.000006104 205.200006104 205.999993896 206.799993896 206.799993896 205.999993896 206.799996948 207.599996948 207.599996948 206.799996948 207.6 208.4 208.4 207.6 208.400003052 209.200003052 209.200003052 208.400003052 209.200006104 210.000006104 210.000006104 209.200006104 209.999993896 210.799993896 210.799993896 209.999993896 210.799996948 211.599996948 211.599996948 210.799996948 211.6 212.4 212.4 211.6 212.400003052 213.200003052 213.200003052 212.400003052 213.200006104 214.000006104 214.000006104 213.200006104 213.999993896 214.799993896 214.799993896 213.999993896 214.799996948 215.599996948 215.599996948 214.799996948 215.6 216.4 216.4 215.6 216.400003052 217.200003052 217.200003052 216.400003052 217.200006104 218.000006104 218.000006104 217.200006104 217.999993896 218.799993896 218.799993896 217.999993896 218.799996948 219.599996948 219.599996948 218.799996948 219.6 220.4 220.4 219.6 220.400003052 221.200003052 221.200003052 220.400003052 221.200006104 222.000006104 222.000006104 221.200006104 221.999993896 222.799993896 222.799993896 221.999993896 222.799996948 223.599996948 223.599996948 222.799996948 223.6 224.4 224.4 223.6 224.400003052 225.200003052 225.200003052 224.400003052 225.200006104 226.000006104 226.000006104 225.200006104 225.999993896 226.799993896 226.799993896 225.999993896 226.799996948 227.599996948 227.599996948 226.799996948 227.6 228.4 228.4 227.6 228.400003052 229.200003052 229.200003052 228.400003052 229.200006104 230.000006104 230.000006104 229.200006104 229.999993896 230.799993896 230.799993896 229.999993896 230.799996948 231.599996948 231.599996948 230.799996948 231.6 232.4 232.4 231.6 232.400003052 233.200003052 233.200003052 232.400003052 233.200006104 234.000006104 234.000006104 233.200006104 233.999993896 234.799993896 234.799993896 233.999993896 234.799996948 235.599996948 235.599996948 234.799996948 235.6 236.4 236.4 235.6 236.400003052 237.200003052 237.200003052 236.400003052 237.200006104 238.000006104 238.000006104 237.200006104 237.999993896 238.799993896 238.799993896 237.999993896 238.799996948 239.599996948 239.599996948 238.799996948 239.6 240.4 240.4 239.6 240.400003052 241.200003052 241.200003052 240.400003052 241.200006104 242.000006104 242.000006104 241.200006104 241.999993896 242.799993896 242.799993896 241.999993896 242.799996948 243.599996948 243.599996948 242.799996948 243.6 244.4 244.4 243.6 244.400003052 245.200003052 245.200003052 244.400003052 245.200006104 246.000006104 246.000006104 245.200006104 245.999993896 246.799993896 246.799993896 245.999993896 246.799996948 247.599996948 247.599996948 246.799996948 247.6 248.4 248.4 247.6 248.400003052 249.200003052 249.200003052 248.400003052 249.200006104 250.000006104 250.000006104 249.200006104 249.999993896 250.799993896 250.799993896 249.999993896 250.799996948 251.599996948 251.599996948 250.799996948 251.6 252.4 252.4 251.6 252.400003052 253.200003052 253.200003052 252.400003052 253.200006104 254.000006104 254.000006104 253.200006104 253.999993896 254.799993896 254.799993896 253.999993896 254.799996948 255.599996948 255.599996948 254.799996948 255.6 256.4 256.4 255.6 256.399987793 257.199987793 257.199987793 256.399987793 257.200006104 258.000006104 258.000006104 257.200006104 257.999993896 258.799993896 258.799993896 257.999993896 258.800012207 259.600012207 259.600012207 258.800012207 259.6 260.4 260.4 259.6 260.399987793 261.199987793 261.199987793 260.399987793 261.200006104 262.000006104 262.000006104 261.200006104 261.999993896 262.799993896 262.799993896 261.999993896 262.800012207 263.600012207 263.600012207 262.800012207 263.6 264.4 264.4 263.6 264.399987793 265.199987793 265.199987793 264.399987793 265.200006104 266.000006104 266.000006104 265.200006104 265.999993896 266.799993896 266.799993896 265.999993896 266.800012207 267.600012207 267.600012207 266.800012207 267.6 268.4 268.4 267.6 268.399987793 269.199987793 269.199987793 268.399987793 269.200006104 270.000006104 270.000006104 269.200006104 269.999993896 270.799993896 270.799993896 269.999993896 270.800012207 271.600012207 271.600012207 270.800012207 271.6 272.4 272.4 271.6 272.399987793 273.199987793 273.199987793 272.399987793 273.200006104 274.000006104 274.000006104 273.200006104 273.999993896 274.799993896 274.799993896 273.999993896 274.800012207 275.600012207 275.600012207 274.800012207 275.6 276.4 276.4 275.6 276.399987793 277.199987793 277.199987793 276.399987793 277.200006104 278.000006104 278.000006104 277.200006104 277.999993896 278.799993896 278.799993896 277.999993896 278.800012207 279.600012207 279.600012207 278.800012207 279.6 280.4 280.4 279.6 280.399987793 281.199987793 281.199987793 280.399987793 281.200006104 282.000006104 282.000006104 281.200006104 281.999993896 282.799993896 282.799993896 281.999993896 282.800012207 283.600012207 283.600012207 282.800012207 283.6 284.4 284.4 283.6 284.399987793 285.199987793 285.199987793 284.399987793 285.200006104 286.000006104 286.000006104 285.200006104 285.999993896 286.799993896 286.799993896 285.999993896 286.800012207 287.600012207 287.600012207 286.800012207 287.6 288.4 288.4 287.6 288.399987793 289.199987793 289.199987793 288.399987793 289.200006104 290.000006104 290.000006104 289.200006104 289.999993896 290.799993896 290.799993896 289.999993896 290.800012207 291.600012207 291.600012207 290.800012207 291.6 292.4 292.4 291.6 292.399987793 293.199987793 293.199987793 292.399987793 293.200006104 294.000006104 294.000006104 293.200006104 293.999993896 294.799993896 294.799993896 293.999993896 294.800012207 295.600012207 295.600012207 294.800012207 295.6 296.4 296.4 295.6 296.399987793 297.199987793 297.199987793 296.399987793 297.200006104 298.000006104 298.000006104 297.200006104 297.999993896 298.799993896 298.799993896 297.999993896 298.800012207 299.600012207 299.600012207 298.800012207 299.6 300.4 300.4 299.6 300.399987793 301.199987793 301.199987793 300.399987793 301.200006104 302.000006104 302.000006104 301.200006104 301.999993896 302.799993896 302.799993896 301.999993896 302.800012207 303.600012207 303.600012207 302.800012207 303.6 304.4 304.4 303.6 304.399987793 305.199987793 305.199987793 304.399987793 305.200006104 306.000006104 306.000006104 305.200006104 305.999993896 306.799993896 306.799993896 305.999993896 306.800012207 307.600012207 307.600012207 306.800012207 307.6 308.4 308.4 307.6 308.399987793 309.199987793 309.199987793 308.399987793 309.200006104 310.000006104 310.000006104 309.200006104 309.999993896 310.799993896 310.799993896 309.999993896 310.800012207 311.600012207 311.600012207 310.800012207 311.6 312.4 312.4 311.6 312.399987793 313.199987793 313.199987793 312.399987793 313.200006104 314.000006104 314.000006104 313.200006104 313.999993896 314.799993896 314.799993896 313.999993896 314.800012207 315.600012207 315.600012207 314.800012207 315.6 316.4 316.4 315.6 316.399987793 317.199987793 317.199987793 316.399987793 317.200006104 318.000006104 318.000006104 317.200006104 317.999993896 318.799993896 318.799993896 317.999993896 318.800012207 319.600012207 319.600012207 318.800012207 319.6 320.4 320.4 319.6 320.399987793 321.199987793 321.199987793 320.399987793 321.200006104 322.000006104 322.000006104 321.200006104 321.999993896 322.799993896 322.799993896 321.999993896 322.800012207 323.600012207 323.600012207 322.800012207 323.6 324.4 324.4 323.6 324.399987793 325.199987793 325.199987793 324.399987793 325.200006104 326.000006104 326.000006104 325.200006104 325.999993896 326.799993896 326.799993896 325.999993896 326.800012207 327.600012207 327.600012207 326.800012207 327.6 328.4 328.4 327.6 328.399987793 329.199987793 329.199987793 328.399987793 329.200006104 330.000006104 330.000006104 329.200006104 329.999993896 330.799993896 330.799993896 329.999993896 330.800012207 331.600012207 331.600012207 330.800012207 331.6 332.4 332.4 331.6 332.399987793 333.199987793 333.199987793 332.399987793 333.200006104 334.000006104 334.000006104 333.200006104 333.999993896 334.799993896 334.799993896 333.999993896 334.800012207 335.600012207 335.600012207 334.800012207 335.6 336.4 336.4 335.6 336.399987793 337.199987793 337.199987793 336.399987793 337.200006104 338.000006104 338.000006104 337.200006104 337.999993896 338.799993896 338.799993896 337.999993896 338.800012207 339.600012207 339.600012207 338.800012207 339.6 340.4 340.4 339.6 340.399987793 341.199987793 341.199987793 340.399987793 341.200006104 342.000006104 342.000006104 341.200006104 341.999993896 342.799993896 342.799993896 341.999993896 342.800012207 343.600012207 343.600012207 342.800012207 343.6 344.4 344.4 343.6 344.399987793 345.199987793 345.199987793 344.399987793 345.200006104 346.000006104 346.000006104 345.200006104 345.999993896 346.799993896 346.799993896 345.999993896 346.800012207 347.600012207 347.600012207 346.800012207 347.6 348.4 348.4 347.6 348.399987793 349.199987793 349.199987793 348.399987793 349.200006104 350.000006104 350.000006104 349.200006104 349.999993896 350.799993896 350.799993896 349.999993896 350.800012207 351.600012207 351.600012207 350.800012207 351.6 352.4 352.4 351.6 352.399987793 353.199987793 353.199987793 352.399987793 353.200006104 354.000006104 354.000006104 353.200006104 353.999993896 354.799993896 354.799993896 353.999993896 354.800012207 355.600012207 355.600012207 354.800012207 355.6 356.4 356.4 355.6 356.399987793 357.199987793 357.199987793 356.399987793 357.200006104 358.000006104 358.000006104 357.200006104 357.999993896 358.799993896 358.799993896 357.999993896 358.800012207 359.600012207 359.600012207 358.800012207 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 +217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 +273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 +330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 +27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 +83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.416666666667 0.416666666667 0.416666666667 -0.416666666667 0.416666646798 1.24999998013 1.24999998013 0.416666646798 1.24999996026 2.0833332936 2.0833332936 1.24999996026 2.08333333333 2.91666666667 2.91666666667 2.08333333333 2.91666658719 3.74999992053 3.74999992053 2.91666658719 3.74999984105 4.58333317439 4.58333317439 3.74999984105 4.58333333333 5.41666666667 5.41666666667 4.58333333333 5.41666682561 6.25000015895 6.25000015895 5.41666682561 6.24999984105 7.08333317439 7.08333317439 6.24999984105 7.08333333333 7.91666666667 7.91666666667 7.08333333333 7.91666634878 8.74999968211 8.74999968211 7.91666634878 8.75000031789 9.58333365122 9.58333365122 8.75000031789 9.58333333333 10.4166666667 10.4166666667 9.58333333333 10.4166663488 11.2499996821 11.2499996821 10.4166663488 11.2500003179 12.0833336512 12.0833336512 11.2500003179 12.0833333333 12.9166666667 12.9166666667 12.0833333333 12.9166663488 13.7499996821 13.7499996821 12.9166663488 13.7500003179 14.5833336512 14.5833336512 13.7500003179 14.5833333333 15.4166666667 15.4166666667 14.5833333333 15.4166663488 16.2499996821 16.2499996821 15.4166663488 16.2499993642 17.0833326976 17.0833326976 16.2499993642 17.0833333333 17.9166666667 17.9166666667 17.0833333333 17.9166673024 18.7500006358 18.7500006358 17.9166673024 18.7499993642 19.5833326976 19.5833326976 18.7499993642 19.5833333333 20.4166666667 20.4166666667 19.5833333333 20.4166673024 21.2500006358 21.2500006358 20.4166673024 21.2499993642 22.0833326976 22.0833326976 21.2499993642 22.0833333333 22.9166666667 22.9166666667 22.0833333333 22.9166673024 23.7500006358 23.7500006358 22.9166673024 23.7499993642 24.5833326976 24.5833326976 23.7499993642 24.5833333333 25.4166666667 25.4166666667 24.5833333333 25.4166673024 26.2500006358 26.2500006358 25.4166673024 26.2499993642 27.0833326976 27.0833326976 26.2499993642 27.0833333333 27.9166666667 27.9166666667 27.0833333333 27.9166673024 28.7500006358 28.7500006358 27.9166673024 28.7499993642 29.5833326976 29.5833326976 28.7499993642 29.5833333333 30.4166666667 30.4166666667 29.5833333333 30.4166673024 31.2500006358 31.2500006358 30.4166673024 31.2499993642 32.0833326976 32.0833326976 31.2499993642 32.0833333333 32.9166666667 32.9166666667 32.0833333333 32.9166653951 33.7499987284 33.7499987284 32.9166653951 33.7500012716 34.5833346049 34.5833346049 33.7500012716 34.5833333333 35.4166666667 35.4166666667 34.5833333333 35.4166653951 36.2499987284 36.2499987284 35.4166653951 36.2500012716 37.0833346049 37.0833346049 36.2500012716 37.0833333333 37.9166666667 37.9166666667 37.0833333333 37.9166653951 38.7499987284 38.7499987284 37.9166653951 38.7500012716 39.5833346049 39.5833346049 38.7500012716 39.5833333333 40.4166666667 40.4166666667 39.5833333333 40.4166653951 41.2499987284 41.2499987284 40.4166653951 41.2500012716 42.0833346049 42.0833346049 41.2500012716 42.0833333333 42.9166666667 42.9166666667 42.0833333333 42.9166653951 43.7499987284 43.7499987284 42.9166653951 43.7500012716 44.5833346049 44.5833346049 43.7500012716 44.5833333333 45.4166666667 45.4166666667 44.5833333333 45.4166653951 46.2499987284 46.2499987284 45.4166653951 46.2500012716 47.0833346049 47.0833346049 46.2500012716 47.0833333333 47.9166666667 47.9166666667 47.0833333333 47.9166653951 48.7499987284 48.7499987284 47.9166653951 48.7500012716 49.5833346049 49.5833346049 48.7500012716 49.5833333333 50.4166666667 50.4166666667 49.5833333333 50.4166653951 51.2499987284 51.2499987284 50.4166653951 51.2500012716 52.0833346049 52.0833346049 51.2500012716 52.0833333333 52.9166666667 52.9166666667 52.0833333333 52.9166653951 53.7499987284 53.7499987284 52.9166653951 53.7500012716 54.5833346049 54.5833346049 53.7500012716 54.5833333333 55.4166666667 55.4166666667 54.5833333333 55.4166653951 56.2499987284 56.2499987284 55.4166653951 56.2500012716 57.0833346049 57.0833346049 56.2500012716 57.0833333333 57.9166666667 57.9166666667 57.0833333333 57.9166653951 58.7499987284 58.7499987284 57.9166653951 58.7500012716 59.5833346049 59.5833346049 58.7500012716 59.5833333333 60.4166666667 60.4166666667 59.5833333333 60.4166653951 61.2499987284 61.2499987284 60.4166653951 61.2500012716 62.0833346049 62.0833346049 61.2500012716 62.0833333333 62.9166666667 62.9166666667 62.0833333333 62.9166653951 63.7499987284 63.7499987284 62.9166653951 63.7499974569 64.5833307902 64.5833307902 63.7499974569 64.5833333333 65.4166666667 65.4166666667 64.5833333333 65.4166692098 66.2500025431 66.2500025431 65.4166692098 66.2499974569 67.0833307902 67.0833307902 66.2499974569 67.0833333333 67.9166666667 67.9166666667 67.0833333333 67.9166692098 68.7500025431 68.7500025431 67.9166692098 68.7499974569 69.5833307902 69.5833307902 68.7499974569 69.5833333333 70.4166666667 70.4166666667 69.5833333333 70.4166692098 71.2500025431 71.2500025431 70.4166692098 71.2499974569 72.0833307902 72.0833307902 71.2499974569 72.0833333333 72.9166666667 72.9166666667 72.0833333333 72.9166692098 73.7500025431 73.7500025431 72.9166692098 73.7499974569 74.5833307902 74.5833307902 73.7499974569 74.5833333333 75.4166666667 75.4166666667 74.5833333333 75.4166692098 76.2500025431 76.2500025431 75.4166692098 76.2499974569 77.0833307902 77.0833307902 76.2499974569 77.0833333333 77.9166666667 77.9166666667 77.0833333333 77.9166692098 78.7500025431 78.7500025431 77.9166692098 78.7499974569 79.5833307902 79.5833307902 78.7499974569 79.5833333333 80.4166666667 80.4166666667 79.5833333333 80.4166692098 81.2500025431 81.2500025431 80.4166692098 81.2499974569 82.0833307902 82.0833307902 81.2499974569 82.0833333333 82.9166666667 82.9166666667 82.0833333333 82.9166692098 83.7500025431 83.7500025431 82.9166692098 83.7499974569 84.5833307902 84.5833307902 83.7499974569 84.5833333333 85.4166666667 85.4166666667 84.5833333333 85.4166692098 86.2500025431 86.2500025431 85.4166692098 86.2499974569 87.0833307902 87.0833307902 86.2499974569 87.0833333333 87.9166666667 87.9166666667 87.0833333333 87.9166692098 88.7500025431 88.7500025431 87.9166692098 88.7499974569 89.5833307902 89.5833307902 88.7499974569 89.5833333333 90.4166666667 90.4166666667 89.5833333333 90.4166692098 91.2500025431 91.2500025431 90.4166692098 91.2499974569 92.0833307902 92.0833307902 91.2499974569 92.0833333333 92.9166666667 92.9166666667 92.0833333333 92.9166692098 93.7500025431 93.7500025431 92.9166692098 93.7499974569 94.5833307902 94.5833307902 93.7499974569 94.5833333333 95.4166666667 95.4166666667 94.5833333333 95.4166692098 96.2500025431 96.2500025431 95.4166692098 96.2499974569 97.0833307902 97.0833307902 96.2499974569 97.0833333333 97.9166666667 97.9166666667 97.0833333333 97.9166692098 98.7500025431 98.7500025431 97.9166692098 98.7499974569 99.5833307902 99.5833307902 98.7499974569 99.5833333333 100.416666667 100.416666667 99.5833333333 100.41666921 101.250002543 101.250002543 100.41666921 101.249997457 102.08333079 102.08333079 101.249997457 102.083333333 102.916666667 102.916666667 102.083333333 102.91666921 103.750002543 103.750002543 102.91666921 103.749997457 104.58333079 104.58333079 103.749997457 104.583333333 105.416666667 105.416666667 104.583333333 105.41666921 106.250002543 106.250002543 105.41666921 106.249997457 107.08333079 107.08333079 106.249997457 107.083333333 107.916666667 107.916666667 107.083333333 107.91666921 108.750002543 108.750002543 107.91666921 108.749997457 109.58333079 109.58333079 108.749997457 109.583333333 110.416666667 110.416666667 109.583333333 110.41666921 111.250002543 111.250002543 110.41666921 111.249997457 112.08333079 112.08333079 111.249997457 112.083333333 112.916666667 112.916666667 112.083333333 112.91666921 113.750002543 113.750002543 112.91666921 113.749997457 114.58333079 114.58333079 113.749997457 114.583333333 115.416666667 115.416666667 114.583333333 115.41666921 116.250002543 116.250002543 115.41666921 116.249997457 117.08333079 117.08333079 116.249997457 117.083333333 117.916666667 117.916666667 117.083333333 117.91666921 118.750002543 118.750002543 117.91666921 118.749997457 119.58333079 119.58333079 118.749997457 119.583333333 120.416666667 120.416666667 119.583333333 120.41666921 121.250002543 121.250002543 120.41666921 121.249997457 122.08333079 122.08333079 121.249997457 122.083333333 122.916666667 122.916666667 122.083333333 122.91666921 123.750002543 123.750002543 122.91666921 123.749997457 124.58333079 124.58333079 123.749997457 124.583333333 125.416666667 125.416666667 124.583333333 125.41666921 126.250002543 126.250002543 125.41666921 126.249997457 127.08333079 127.08333079 126.249997457 127.083333333 127.916666667 127.916666667 127.083333333 127.91666158 128.749994914 128.749994914 127.91666158 128.750005086 129.58333842 129.58333842 128.750005086 129.583333333 130.416666667 130.416666667 129.583333333 130.41666158 131.249994914 131.249994914 130.41666158 131.250005086 132.08333842 132.08333842 131.250005086 132.083333333 132.916666667 132.916666667 132.083333333 132.91666158 133.749994914 133.749994914 132.91666158 133.750005086 134.58333842 134.58333842 133.750005086 134.583333333 135.416666667 135.416666667 134.583333333 135.41666158 136.249994914 136.249994914 135.41666158 136.250005086 137.08333842 137.08333842 136.250005086 137.083333333 137.916666667 137.916666667 137.083333333 137.91666158 138.749994914 138.749994914 137.91666158 138.750005086 139.58333842 139.58333842 138.750005086 139.583333333 140.416666667 140.416666667 139.583333333 +140.41666158 141.249994914 141.249994914 140.41666158 141.250005086 142.08333842 142.08333842 141.250005086 142.083333333 142.916666667 142.916666667 142.083333333 142.91666158 143.749994914 143.749994914 142.91666158 143.750005086 144.58333842 144.58333842 143.750005086 144.583333333 145.416666667 145.416666667 144.583333333 145.41666158 146.249994914 146.249994914 145.41666158 146.250005086 147.08333842 147.08333842 146.250005086 147.083333333 147.916666667 147.916666667 147.083333333 147.91666158 148.749994914 148.749994914 147.91666158 148.750005086 149.58333842 149.58333842 148.750005086 149.583333333 150.416666667 150.416666667 149.583333333 150.41666158 151.249994914 151.249994914 150.41666158 151.250005086 152.08333842 152.08333842 151.250005086 152.083333333 152.916666667 152.916666667 152.083333333 152.91666158 153.749994914 153.749994914 152.91666158 153.750005086 154.58333842 154.58333842 153.750005086 154.583333333 155.416666667 155.416666667 154.583333333 155.41666158 156.249994914 156.249994914 155.41666158 156.250005086 157.08333842 157.08333842 156.250005086 157.083333333 157.916666667 157.916666667 157.083333333 157.91666158 158.749994914 158.749994914 157.91666158 158.750005086 159.58333842 159.58333842 158.750005086 159.583333333 160.416666667 160.416666667 159.583333333 160.41666158 161.249994914 161.249994914 160.41666158 161.250005086 162.08333842 162.08333842 161.250005086 162.083333333 162.916666667 162.916666667 162.083333333 162.91666158 163.749994914 163.749994914 162.91666158 163.750005086 164.58333842 164.58333842 163.750005086 164.583333333 165.416666667 165.416666667 164.583333333 165.41666158 166.249994914 166.249994914 165.41666158 166.250005086 167.08333842 167.08333842 166.250005086 167.083333333 167.916666667 167.916666667 167.083333333 167.91666158 168.749994914 168.749994914 167.91666158 168.750005086 169.58333842 169.58333842 168.750005086 169.583333333 170.416666667 170.416666667 169.583333333 170.41666158 171.249994914 171.249994914 170.41666158 171.250005086 172.08333842 172.08333842 171.250005086 172.083333333 172.916666667 172.916666667 172.083333333 172.91666158 173.749994914 173.749994914 172.91666158 173.750005086 174.58333842 174.58333842 173.750005086 174.583333333 175.416666667 175.416666667 174.583333333 175.41666158 176.249994914 176.249994914 175.41666158 176.250005086 177.08333842 177.08333842 176.250005086 177.083333333 177.916666667 177.916666667 177.083333333 177.91666158 178.749994914 178.749994914 177.91666158 178.750005086 179.58333842 179.58333842 178.750005086 179.583333333 180.416666667 180.416666667 179.583333333 180.41666158 181.249994914 181.249994914 180.41666158 181.250005086 182.08333842 182.08333842 181.250005086 182.083333333 182.916666667 182.916666667 182.083333333 182.91666158 183.749994914 183.749994914 182.91666158 183.750005086 184.58333842 184.58333842 183.750005086 184.583333333 185.416666667 185.416666667 184.583333333 185.41666158 186.249994914 186.249994914 185.41666158 186.250005086 187.08333842 187.08333842 186.250005086 187.083333333 187.916666667 187.916666667 187.083333333 187.91666158 188.749994914 188.749994914 187.91666158 188.750005086 189.58333842 189.58333842 188.750005086 189.583333333 190.416666667 190.416666667 189.583333333 190.41666158 191.249994914 191.249994914 190.41666158 191.250005086 192.08333842 192.08333842 191.250005086 192.083333333 192.916666667 192.916666667 192.083333333 192.91666158 193.749994914 193.749994914 192.91666158 193.750005086 194.58333842 194.58333842 193.750005086 194.583333333 195.416666667 195.416666667 194.583333333 195.41666158 196.249994914 196.249994914 195.41666158 196.250005086 197.08333842 197.08333842 196.250005086 197.083333333 197.916666667 197.916666667 197.083333333 197.91666158 198.749994914 198.749994914 197.91666158 198.750005086 199.58333842 199.58333842 198.750005086 199.583333333 200.416666667 200.416666667 199.583333333 200.41666158 201.249994914 201.249994914 200.41666158 201.250005086 202.08333842 202.08333842 201.250005086 202.083333333 202.916666667 202.916666667 202.083333333 202.91666158 203.749994914 203.749994914 202.91666158 203.750005086 204.58333842 204.58333842 203.750005086 204.583333333 205.416666667 205.416666667 204.583333333 205.41666158 206.249994914 206.249994914 205.41666158 206.250005086 207.08333842 207.08333842 206.250005086 207.083333333 207.916666667 207.916666667 207.083333333 207.91666158 208.749994914 208.749994914 207.91666158 208.750005086 209.58333842 209.58333842 208.750005086 209.583333333 210.416666667 210.416666667 209.583333333 210.41666158 211.249994914 211.249994914 210.41666158 211.250005086 212.08333842 212.08333842 211.250005086 212.083333333 212.916666667 212.916666667 212.083333333 212.91666158 213.749994914 213.749994914 212.91666158 213.750005086 214.58333842 214.58333842 213.750005086 214.583333333 215.416666667 215.416666667 214.583333333 215.41666158 216.249994914 216.249994914 215.41666158 216.250005086 217.08333842 217.08333842 216.250005086 217.083333333 217.916666667 217.916666667 217.083333333 217.91666158 218.749994914 218.749994914 217.91666158 218.750005086 219.58333842 219.58333842 218.750005086 219.583333333 220.416666667 220.416666667 219.583333333 220.41666158 221.249994914 221.249994914 220.41666158 221.250005086 222.08333842 222.08333842 221.250005086 222.083333333 222.916666667 222.916666667 222.083333333 222.91666158 223.749994914 223.749994914 222.91666158 223.750005086 224.58333842 224.58333842 223.750005086 224.583333333 225.416666667 225.416666667 224.583333333 225.41666158 226.249994914 226.249994914 225.41666158 226.250005086 227.08333842 227.08333842 226.250005086 227.083333333 227.916666667 227.916666667 227.083333333 227.91666158 228.749994914 228.749994914 227.91666158 228.750005086 229.58333842 229.58333842 228.750005086 229.583333333 230.416666667 230.416666667 229.583333333 230.41666158 231.249994914 231.249994914 230.41666158 231.250005086 232.08333842 232.08333842 231.250005086 232.083333333 232.916666667 232.916666667 232.083333333 232.91666158 233.749994914 233.749994914 232.91666158 233.750005086 234.58333842 234.58333842 233.750005086 234.583333333 235.416666667 235.416666667 234.583333333 235.41666158 236.249994914 236.249994914 235.41666158 236.250005086 237.08333842 237.08333842 236.250005086 237.083333333 237.916666667 237.916666667 237.083333333 237.91666158 238.749994914 238.749994914 237.91666158 238.750005086 239.58333842 239.58333842 238.750005086 239.583333333 240.416666667 240.416666667 239.583333333 240.41666158 241.249994914 241.249994914 240.41666158 241.250005086 242.08333842 242.08333842 241.250005086 242.083333333 242.916666667 242.916666667 242.083333333 242.91666158 243.749994914 243.749994914 242.91666158 243.750005086 244.58333842 244.58333842 243.750005086 244.583333333 245.416666667 245.416666667 244.583333333 245.41666158 246.249994914 246.249994914 245.41666158 246.250005086 247.08333842 247.08333842 246.250005086 247.083333333 247.916666667 247.916666667 247.083333333 247.91666158 248.749994914 248.749994914 247.91666158 248.750005086 249.58333842 249.58333842 248.750005086 249.583333333 250.416666667 250.416666667 249.583333333 250.41666158 251.249994914 251.249994914 250.41666158 251.250005086 252.08333842 252.08333842 251.250005086 252.083333333 252.916666667 252.916666667 252.083333333 252.91666158 253.749994914 253.749994914 252.91666158 253.750005086 254.58333842 254.58333842 253.750005086 254.583333333 255.416666667 255.416666667 254.583333333 255.41666158 256.249994914 256.249994914 255.41666158 256.249989827 257.083323161 257.083323161 256.249989827 257.083333333 257.916666667 257.916666667 257.083333333 257.916676839 258.750010173 258.750010173 257.916676839 258.749989827 259.583323161 259.583323161 258.749989827 259.583333333 260.416666667 260.416666667 259.583333333 260.416676839 261.250010173 261.250010173 260.416676839 261.249989827 262.083323161 262.083323161 261.249989827 262.083333333 262.916666667 262.916666667 262.083333333 262.916676839 263.750010173 263.750010173 262.916676839 263.749989827 264.583323161 264.583323161 263.749989827 264.583333333 265.416666667 265.416666667 264.583333333 265.416676839 266.250010173 266.250010173 265.416676839 266.249989827 267.083323161 267.083323161 266.249989827 267.083333333 267.916666667 267.916666667 267.083333333 267.916676839 268.750010173 268.750010173 267.916676839 268.749989827 269.583323161 269.583323161 268.749989827 269.583333333 270.416666667 270.416666667 269.583333333 270.416676839 271.250010173 271.250010173 270.416676839 271.249989827 272.083323161 272.083323161 271.249989827 272.083333333 272.916666667 272.916666667 272.083333333 272.916676839 273.750010173 273.750010173 272.916676839 273.749989827 274.583323161 274.583323161 273.749989827 274.583333333 275.416666667 275.416666667 274.583333333 275.416676839 276.250010173 276.250010173 275.416676839 276.249989827 277.083323161 277.083323161 276.249989827 277.083333333 277.916666667 277.916666667 277.083333333 277.916676839 278.750010173 278.750010173 277.916676839 278.749989827 279.583323161 279.583323161 278.749989827 279.583333333 280.416666667 280.416666667 279.583333333 280.416676839 281.250010173 281.250010173 280.416676839 281.249989827 282.083323161 282.083323161 281.249989827 282.083333333 282.916666667 282.916666667 282.083333333 282.916676839 283.750010173 283.750010173 282.916676839 283.749989827 284.583323161 284.583323161 283.749989827 284.583333333 285.416666667 285.416666667 284.583333333 285.416676839 286.250010173 286.250010173 285.416676839 286.249989827 287.083323161 287.083323161 286.249989827 287.083333333 287.916666667 287.916666667 287.083333333 287.916676839 288.750010173 288.750010173 287.916676839 288.749989827 289.583323161 289.583323161 288.749989827 289.583333333 290.416666667 290.416666667 289.583333333 290.416676839 291.250010173 291.250010173 290.416676839 291.249989827 292.083323161 292.083323161 291.249989827 292.083333333 292.916666667 292.916666667 292.083333333 292.916676839 293.750010173 293.750010173 292.916676839 293.749989827 294.583323161 294.583323161 293.749989827 294.583333333 295.416666667 295.416666667 294.583333333 295.416676839 296.250010173 296.250010173 295.416676839 296.249989827 297.083323161 297.083323161 296.249989827 297.083333333 297.916666667 297.916666667 297.083333333 297.916676839 298.750010173 298.750010173 297.916676839 298.749989827 299.583323161 299.583323161 298.749989827 299.583333333 300.416666667 300.416666667 299.583333333 300.416676839 301.250010173 301.250010173 300.416676839 301.249989827 302.083323161 302.083323161 301.249989827 302.083333333 302.916666667 302.916666667 302.083333333 302.916676839 303.750010173 303.750010173 302.916676839 303.749989827 304.583323161 304.583323161 303.749989827 304.583333333 305.416666667 305.416666667 304.583333333 305.416676839 306.250010173 306.250010173 305.416676839 306.249989827 307.083323161 307.083323161 306.249989827 307.083333333 307.916666667 307.916666667 307.083333333 307.916676839 308.750010173 308.750010173 307.916676839 308.749989827 309.583323161 309.583323161 308.749989827 309.583333333 310.416666667 310.416666667 309.583333333 310.416676839 311.250010173 311.250010173 310.416676839 311.249989827 312.083323161 312.083323161 311.249989827 312.083333333 312.916666667 312.916666667 312.083333333 312.916676839 313.750010173 313.750010173 312.916676839 313.749989827 314.583323161 314.583323161 313.749989827 314.583333333 315.416666667 315.416666667 314.583333333 315.416676839 316.250010173 316.250010173 315.416676839 316.249989827 317.083323161 317.083323161 316.249989827 317.083333333 317.916666667 317.916666667 317.083333333 317.916676839 318.750010173 318.750010173 317.916676839 318.749989827 319.583323161 319.583323161 318.749989827 319.583333333 320.416666667 320.416666667 319.583333333 320.416676839 321.250010173 321.250010173 320.416676839 321.249989827 322.083323161 322.083323161 321.249989827 322.083333333 322.916666667 322.916666667 322.083333333 322.916676839 323.750010173 323.750010173 322.916676839 323.749989827 324.583323161 324.583323161 323.749989827 324.583333333 325.416666667 325.416666667 324.583333333 325.416676839 326.250010173 326.250010173 325.416676839 326.249989827 327.083323161 327.083323161 326.249989827 327.083333333 327.916666667 327.916666667 327.083333333 327.916676839 328.750010173 328.750010173 327.916676839 328.749989827 329.583323161 329.583323161 328.749989827 329.583333333 330.416666667 330.416666667 329.583333333 330.416676839 331.250010173 331.250010173 330.416676839 331.249989827 332.083323161 332.083323161 331.249989827 332.083333333 332.916666667 332.916666667 332.083333333 332.916676839 333.750010173 333.750010173 332.916676839 333.749989827 334.583323161 334.583323161 333.749989827 334.583333333 335.416666667 335.416666667 334.583333333 335.416676839 336.250010173 336.250010173 335.416676839 336.249989827 337.083323161 337.083323161 336.249989827 337.083333333 337.916666667 337.916666667 337.083333333 337.916676839 338.750010173 338.750010173 337.916676839 338.749989827 339.583323161 339.583323161 338.749989827 339.583333333 340.416666667 340.416666667 339.583333333 340.416676839 341.250010173 341.250010173 340.416676839 341.249989827 342.083323161 342.083323161 341.249989827 342.083333333 342.916666667 342.916666667 342.083333333 342.916676839 343.750010173 343.750010173 342.916676839 343.749989827 344.583323161 344.583323161 343.749989827 344.583333333 345.416666667 345.416666667 344.583333333 345.416676839 346.250010173 346.250010173 345.416676839 346.249989827 347.083323161 347.083323161 346.249989827 347.083333333 347.916666667 347.916666667 347.083333333 347.916676839 348.750010173 348.750010173 347.916676839 348.749989827 349.583323161 349.583323161 348.749989827 349.583333333 350.416666667 350.416666667 349.583333333 350.416676839 351.250010173 351.250010173 350.416676839 351.249989827 352.083323161 352.083323161 351.249989827 352.083333333 352.916666667 352.916666667 352.083333333 352.916676839 353.750010173 353.750010173 352.916676839 353.749989827 354.583323161 354.583323161 353.749989827 354.583333333 355.416666667 355.416666667 354.583333333 355.416676839 356.250010173 356.250010173 355.416676839 356.249989827 357.083323161 357.083323161 356.249989827 357.083333333 357.916666667 357.916666667 357.083333333 357.916676839 358.750010173 358.750010173 357.916676839 358.749989827 359.583323161 359.583323161 358.749989827 -0.444444444444 0.444444444444 0.444444444444 -0.444444444444 0.444444451067 1.33333333996 1.33333333996 0.444444451067 1.33333334658 2.22222223547 2.22222223547 1.33333334658 2.2222223017 3.11111119058 3.11111119058 2.2222223017 3.1111111376 4.00000002649 4.00000002649 3.1111111376 4.00000021193 4.88888910082 4.88888910082 4.00000021193 4.88888904783 5.77777793672 5.77777793672 4.88888904783 5.77777788374 6.66666677263 6.66666677263 5.77777788374 6.66666671965 7.55555560854 7.55555560854 6.66666671965 7.55555555556 8.44444444444 8.44444444444 7.55555555556 8.4444448683 9.33333375719 9.33333375719 8.4444448683 9.33333322737 10.2222221163 10.2222221163 9.33333322737 10.2222225401 11.111111429 11.111111429 10.2222225401 11.1111108992 11.9999997881 11.9999997881 11.1111108992 12.0000002119 12.8888891008 12.8888891008 12.0000002119 12.888888571 13.7777774599 13.7777774599 12.888888571 13.7777778837 14.6666667726 14.6666667726 13.7777778837 14.6666662428 15.5555551317 15.5555551317 14.6666662428 15.5555555556 16.4444444444 16.4444444444 15.5555555556 16.4444448683 17.3333337572 17.3333337572 16.4444448683 17.333334181 18.2222230699 18.2222230699 17.333334181 18.2222215864 19.1111104753 19.1111104753 18.2222215864 19.1111108992 19.9999997881 19.9999997881 19.1111108992 20.0000002119 20.8888891008 20.8888891008 20.0000002119 20.8888895247 21.7777784136 21.7777784136 20.8888895247 21.7777769301 22.666665819 22.666665819 21.7777769301 22.6666662428 23.5555551317 23.5555551317 22.6666662428 23.5555555556 24.4444444444 24.4444444444 23.5555555556 24.4444448683 25.3333337572 25.3333337572 24.4444448683 25.333334181 26.2222230699 26.2222230699 25.333334181 26.2222215864 27.1111104753 27.1111104753 26.2222215864 27.1111108992 27.9999997881 27.9999997881 27.1111108992 28.0000002119 28.8888891008 28.8888891008 28.0000002119 28.8888895247 29.7777784136 29.7777784136 28.8888895247 29.7777769301 30.666665819 30.666665819 29.7777769301 30.6666662428 31.5555551317 31.5555551317 30.6666662428 31.5555555556 32.4444444444 32.4444444444 31.5555555556 32.4444448683 33.3333337572 33.3333337572 32.4444448683 33.333334181 34.2222230699 34.2222230699 33.333334181 34.2222234938 35.1111123827 35.1111123827 34.2222234938 35.1111128065 36.0000016954 36.0000016954 35.1111128065 35.9999983046 36.8888871935 36.8888871935 35.9999983046 36.8888876173 37.7777765062 37.7777765062 36.8888876173 37.7777769301 38.666665819 38.666665819 37.7777769301 38.6666662428 39.5555551317 39.5555551317 38.6666662428 39.5555555556 40.4444444444 40.4444444444 39.5555555556 40.4444448683 41.3333337572 41.3333337572 40.4444448683 41.333334181 42.2222230699 42.2222230699 41.333334181 42.2222234938 43.1111123827 43.1111123827 42.2222234938 43.1111128065 44.0000016954 44.0000016954 43.1111128065 43.9999983046 44.8888871935 44.8888871935 43.9999983046 44.8888876173 45.7777765062 45.7777765062 44.8888876173 45.7777769301 46.666665819 46.666665819 45.7777769301 46.6666662428 47.5555551317 47.5555551317 46.6666662428 47.5555555556 48.4444444444 48.4444444444 47.5555555556 48.4444448683 49.3333337572 49.3333337572 48.4444448683 49.333334181 50.2222230699 50.2222230699 49.333334181 50.2222234938 51.1111123827 51.1111123827 50.2222234938 51.1111128065 52.0000016954 52.0000016954 51.1111128065 51.9999983046 52.8888871935 52.8888871935 51.9999983046 52.8888876173 53.7777765062 53.7777765062 52.8888876173 53.7777769301 54.666665819 54.666665819 53.7777769301 54.6666662428 55.5555551317 55.5555551317 54.6666662428 55.5555555556 56.4444444444 56.4444444444 55.5555555556 56.4444448683 57.3333337572 57.3333337572 56.4444448683 57.333334181 58.2222230699 58.2222230699 57.333334181 58.2222234938 59.1111123827 59.1111123827 58.2222234938 59.1111128065 60.0000016954 60.0000016954 59.1111128065 59.9999983046 60.8888871935 60.8888871935 59.9999983046 60.8888876173 61.7777765062 61.7777765062 60.8888876173 61.7777769301 62.666665819 62.666665819 61.7777769301 62.6666662428 63.5555551317 63.5555551317 62.6666662428 63.5555555556 64.4444444444 64.4444444444 63.5555555556 64.4444410536 65.3333299425 65.3333299425 64.4444410536 65.333334181 66.2222230699 66.2222230699 65.333334181 66.2222196791 67.111108568 67.111108568 66.2222196791 67.1111128065 68.0000016954 68.0000016954 67.1111128065 67.9999983046 68.8888871935 68.8888871935 67.9999983046 68.888891432 69.7777803209 69.7777803209 68.888891432 69.7777769301 70.666665819 70.666665819 69.7777769301 70.6666700575 71.5555589464 71.5555589464 70.6666700575 71.5555555556 72.4444444444 72.4444444444 71.5555555556 72.4444410536 73.3333299425 73.3333299425 72.4444410536 73.333334181 74.2222230699 74.2222230699 73.333334181 74.2222196791 75.111108568 75.111108568 74.2222196791 75.1111128065 76.0000016954 76.0000016954 75.1111128065 75.9999983046 76.8888871935 76.8888871935 75.9999983046 76.888891432 77.7777803209 77.7777803209 76.888891432 77.7777769301 78.666665819 78.666665819 77.7777769301 78.6666700575 79.5555589464 79.5555589464 78.6666700575 79.5555555556 80.4444444444 80.4444444444 79.5555555556 80.4444410536 81.3333299425 81.3333299425 80.4444410536 81.333334181 82.2222230699 82.2222230699 81.333334181 82.2222196791 83.111108568 83.111108568 82.2222196791 83.1111128065 84.0000016954 84.0000016954 83.1111128065 83.9999983046 84.8888871935 84.8888871935 83.9999983046 84.888891432 85.7777803209 85.7777803209 84.888891432 85.7777769301 86.666665819 86.666665819 85.7777769301 86.6666700575 87.5555589464 87.5555589464 86.6666700575 87.5555555556 88.4444444444 88.4444444444 87.5555555556 88.4444410536 89.3333299425 89.3333299425 88.4444410536 89.333334181 90.2222230699 90.2222230699 89.333334181 90.2222196791 91.111108568 91.111108568 90.2222196791 91.1111128065 92.0000016954 92.0000016954 91.1111128065 91.9999983046 92.8888871935 92.8888871935 91.9999983046 92.888891432 93.7777803209 93.7777803209 92.888891432 93.7777769301 94.666665819 94.666665819 93.7777769301 94.6666700575 95.5555589464 95.5555589464 94.6666700575 95.5555555556 96.4444444444 96.4444444444 95.5555555556 96.4444410536 97.3333299425 97.3333299425 96.4444410536 97.333334181 98.2222230699 98.2222230699 97.333334181 98.2222196791 99.111108568 99.111108568 98.2222196791 99.1111128065 100.000001695 100.000001695 99.1111128065 99.9999983046 100.888887193 100.888887193 99.9999983046 100.888891432 101.777780321 101.777780321 100.888891432 101.77777693 102.666665819 102.666665819 101.77777693 102.666670058 103.555558946 103.555558946 102.666670058 103.555555556 104.444444444 104.444444444 103.555555556 104.444441054 105.333329942 105.333329942 104.444441054 105.333334181 106.22222307 106.22222307 105.333334181 106.222219679 107.111108568 107.111108568 106.222219679 107.111112807 108.000001695 108.000001695 107.111112807 107.999998305 108.888887193 108.888887193 107.999998305 108.888891432 109.777780321 109.777780321 108.888891432 109.77777693 110.666665819 110.666665819 109.77777693 110.666670058 111.555558946 111.555558946 110.666670058 111.555555556 112.444444444 112.444444444 111.555555556 112.444441054 113.333329942 113.333329942 112.444441054 113.333334181 114.22222307 114.22222307 113.333334181 114.222219679 115.111108568 115.111108568 114.222219679 115.111112807 116.000001695 116.000001695 115.111112807 115.999998305 116.888887193 116.888887193 115.999998305 116.888891432 117.777780321 117.777780321 116.888891432 117.77777693 118.666665819 118.666665819 117.77777693 118.666670058 119.555558946 119.555558946 118.666670058 119.555555556 120.444444444 120.444444444 119.555555556 120.444441054 121.333329942 121.333329942 120.444441054 121.333334181 122.22222307 122.22222307 121.333334181 122.222219679 123.111108568 123.111108568 122.222219679 123.111112807 124.000001695 124.000001695 123.111112807 123.999998305 124.888887193 124.888887193 123.999998305 124.888891432 125.777780321 125.777780321 124.888891432 125.77777693 126.666665819 126.666665819 125.77777693 126.666670058 127.555558946 127.555558946 126.666670058 127.555555556 128.444444444 128.444444444 127.555555556 128.444441054 129.333329942 129.333329942 128.444441054 129.333326552 130.222215441 130.222215441 129.333326552 130.222227308 131.111116197 131.111116197 130.222227308 131.111112807 132.000001695 132.000001695 131.111112807 131.999998305 132.888887193 132.888887193 131.999998305 132.888883803 133.777772692 133.777772692 132.888883803 133.777784559 134.666673448 134.666673448 133.777784559 134.666670058 135.555558946 135.555558946 134.666670058 135.555555556 136.444444444 136.444444444 135.555555556 136.444441054 137.333329942 137.333329942 136.444441054 137.333326552 138.222215441 138.222215441 137.333326552 138.222227308 139.111116197 139.111116197 138.222227308 139.111112807 140.000001695 140.000001695 139.111112807 139.999998305 140.888887193 140.888887193 139.999998305 140.888883803 141.777772692 141.777772692 140.888883803 141.777784559 142.666673448 142.666673448 141.777784559 142.666670058 143.555558946 143.555558946 142.666670058 143.555555556 144.444444444 144.444444444 143.555555556 144.444441054 145.333329942 145.333329942 144.444441054 145.333326552 146.222215441 146.222215441 145.333326552 146.222227308 147.111116197 147.111116197 146.222227308 147.111112807 148.000001695 148.000001695 147.111112807 147.999998305 148.888887193 148.888887193 147.999998305 148.888883803 149.777772692 149.777772692 148.888883803 149.777784559 150.666673448 150.666673448 149.777784559 150.666670058 151.555558946 151.555558946 150.666670058 151.555555556 152.444444444 152.444444444 151.555555556 152.444441054 153.333329942 153.333329942 152.444441054 153.333326552 154.222215441 154.222215441 153.333326552 154.222227308 155.111116197 155.111116197 154.222227308 155.111112807 156.000001695 156.000001695 155.111112807 155.999998305 156.888887193 156.888887193 155.999998305 156.888883803 157.777772692 157.777772692 156.888883803 157.777784559 158.666673448 158.666673448 157.777784559 158.666670058 159.555558946 159.555558946 158.666670058 159.555555556 160.444444444 160.444444444 159.555555556 160.444441054 161.333329942 161.333329942 160.444441054 161.333326552 162.222215441 162.222215441 161.333326552 162.222227308 163.111116197 163.111116197 162.222227308 163.111112807 164.000001695 164.000001695 163.111112807 163.999998305 164.888887193 164.888887193 163.999998305 164.888883803 165.777772692 165.777772692 164.888883803 165.777784559 166.666673448 166.666673448 165.777784559 166.666670058 167.555558946 167.555558946 166.666670058 167.555555556 168.444444444 168.444444444 167.555555556 168.444441054 169.333329942 169.333329942 168.444441054 169.333326552 170.222215441 170.222215441 169.333326552 170.222227308 171.111116197 171.111116197 170.222227308 171.111112807 172.000001695 172.000001695 171.111112807 171.999998305 172.888887193 172.888887193 171.999998305 172.888883803 173.777772692 173.777772692 172.888883803 173.777784559 174.666673448 174.666673448 173.777784559 174.666670058 175.555558946 175.555558946 174.666670058 175.555555556 176.444444444 176.444444444 175.555555556 176.444441054 177.333329942 177.333329942 176.444441054 177.333326552 178.222215441 178.222215441 177.333326552 178.222227308 179.111116197 179.111116197 178.222227308 179.111112807 180.000001695 180.000001695 179.111112807 179.999998305 180.888887193 180.888887193 179.999998305 180.888883803 181.777772692 181.777772692 180.888883803 181.777784559 182.666673448 182.666673448 181.777784559 182.666670058 183.555558946 183.555558946 182.666670058 183.555555556 184.444444444 184.444444444 183.555555556 184.444441054 185.333329942 185.333329942 184.444441054 185.333326552 186.222215441 186.222215441 185.333326552 186.222227308 187.111116197 187.111116197 186.222227308 187.111112807 188.000001695 188.000001695 187.111112807 187.999998305 188.888887193 188.888887193 187.999998305 188.888883803 189.777772692 189.777772692 188.888883803 189.777784559 190.666673448 190.666673448 189.777784559 190.666670058 191.555558946 191.555558946 190.666670058 191.555555556 192.444444444 192.444444444 191.555555556 192.444441054 193.333329942 193.333329942 192.444441054 193.333326552 194.222215441 194.222215441 193.333326552 194.222227308 195.111116197 195.111116197 194.222227308 195.111112807 196.000001695 196.000001695 195.111112807 195.999998305 196.888887193 196.888887193 195.999998305 196.888883803 197.777772692 197.777772692 196.888883803 197.777784559 198.666673448 198.666673448 197.777784559 198.666670058 199.555558946 199.555558946 198.666670058 199.555555556 200.444444444 200.444444444 199.555555556 200.444441054 201.333329942 201.333329942 200.444441054 201.333326552 202.222215441 202.222215441 201.333326552 202.222227308 203.111116197 203.111116197 202.222227308 203.111112807 204.000001695 204.000001695 203.111112807 203.999998305 204.888887193 204.888887193 203.999998305 204.888883803 205.777772692 205.777772692 204.888883803 205.777784559 206.666673448 206.666673448 205.777784559 206.666670058 207.555558946 207.555558946 206.666670058 207.555555556 208.444444444 208.444444444 207.555555556 208.444441054 209.333329942 209.333329942 208.444441054 209.333326552 210.222215441 210.222215441 209.333326552 +210.222227308 211.111116197 211.111116197 210.222227308 211.111112807 212.000001695 212.000001695 211.111112807 211.999998305 212.888887193 212.888887193 211.999998305 212.888883803 213.777772692 213.777772692 212.888883803 213.777784559 214.666673448 214.666673448 213.777784559 214.666670058 215.555558946 215.555558946 214.666670058 215.555555556 216.444444444 216.444444444 215.555555556 216.444441054 217.333329942 217.333329942 216.444441054 217.333326552 218.222215441 218.222215441 217.333326552 218.222227308 219.111116197 219.111116197 218.222227308 219.111112807 220.000001695 220.000001695 219.111112807 219.999998305 220.888887193 220.888887193 219.999998305 220.888883803 221.777772692 221.777772692 220.888883803 221.777784559 222.666673448 222.666673448 221.777784559 222.666670058 223.555558946 223.555558946 222.666670058 223.555555556 224.444444444 224.444444444 223.555555556 224.444441054 225.333329942 225.333329942 224.444441054 225.333326552 226.222215441 226.222215441 225.333326552 226.222227308 227.111116197 227.111116197 226.222227308 227.111112807 228.000001695 228.000001695 227.111112807 227.999998305 228.888887193 228.888887193 227.999998305 228.888883803 229.777772692 229.777772692 228.888883803 229.777784559 230.666673448 230.666673448 229.777784559 230.666670058 231.555558946 231.555558946 230.666670058 231.555555556 232.444444444 232.444444444 231.555555556 232.444441054 233.333329942 233.333329942 232.444441054 233.333326552 234.222215441 234.222215441 233.333326552 234.222227308 235.111116197 235.111116197 234.222227308 235.111112807 236.000001695 236.000001695 235.111112807 235.999998305 236.888887193 236.888887193 235.999998305 236.888883803 237.777772692 237.777772692 236.888883803 237.777784559 238.666673448 238.666673448 237.777784559 238.666670058 239.555558946 239.555558946 238.666670058 239.555555556 240.444444444 240.444444444 239.555555556 240.444441054 241.333329942 241.333329942 240.444441054 241.333326552 242.222215441 242.222215441 241.333326552 242.222227308 243.111116197 243.111116197 242.222227308 243.111112807 244.000001695 244.000001695 243.111112807 243.999998305 244.888887193 244.888887193 243.999998305 244.888883803 245.777772692 245.777772692 244.888883803 245.777784559 246.666673448 246.666673448 245.777784559 246.666670058 247.555558946 247.555558946 246.666670058 247.555555556 248.444444444 248.444444444 247.555555556 248.444441054 249.333329942 249.333329942 248.444441054 249.333326552 250.222215441 250.222215441 249.333326552 250.222227308 251.111116197 251.111116197 250.222227308 251.111112807 252.000001695 252.000001695 251.111112807 251.999998305 252.888887193 252.888887193 251.999998305 252.888883803 253.777772692 253.777772692 252.888883803 253.777784559 254.666673448 254.666673448 253.777784559 254.666670058 255.555558946 255.555558946 254.666670058 255.555555556 256.444444444 256.444444444 255.555555556 256.444441054 257.333329942 257.333329942 256.444441054 257.333326552 258.222215441 258.222215441 257.333326552 258.22221205 259.111100939 259.111100939 258.22221205 259.111097548 259.999986437 259.999986437 259.111097548 260.000013563 260.888902452 260.888902452 260.000013563 260.888899061 261.77778795 261.77778795 260.888899061 261.777784559 262.666673448 262.666673448 261.777784559 262.666670058 263.555558946 263.555558946 262.666670058 263.555555556 264.444444444 264.444444444 263.555555556 264.444441054 265.333329942 265.333329942 264.444441054 265.333326552 266.222215441 266.222215441 265.333326552 266.22221205 267.111100939 267.111100939 266.22221205 267.111097548 267.999986437 267.999986437 267.111097548 268.000013563 268.888902452 268.888902452 268.000013563 268.888899061 269.77778795 269.77778795 268.888899061 269.777784559 270.666673448 270.666673448 269.777784559 270.666670058 271.555558946 271.555558946 270.666670058 271.555555556 272.444444444 272.444444444 271.555555556 272.444441054 273.333329942 273.333329942 272.444441054 273.333326552 274.222215441 274.222215441 273.333326552 274.22221205 275.111100939 275.111100939 274.22221205 275.111097548 275.999986437 275.999986437 275.111097548 276.000013563 276.888902452 276.888902452 276.000013563 276.888899061 277.77778795 277.77778795 276.888899061 277.777784559 278.666673448 278.666673448 277.777784559 278.666670058 279.555558946 279.555558946 278.666670058 279.555555556 280.444444444 280.444444444 279.555555556 280.444441054 281.333329942 281.333329942 280.444441054 281.333326552 282.222215441 282.222215441 281.333326552 282.22221205 283.111100939 283.111100939 282.22221205 283.111097548 283.999986437 283.999986437 283.111097548 284.000013563 284.888902452 284.888902452 284.000013563 284.888899061 285.77778795 285.77778795 284.888899061 285.777784559 286.666673448 286.666673448 285.777784559 286.666670058 287.555558946 287.555558946 286.666670058 287.555555556 288.444444444 288.444444444 287.555555556 288.444441054 289.333329942 289.333329942 288.444441054 289.333326552 290.222215441 290.222215441 289.333326552 290.22221205 291.111100939 291.111100939 290.22221205 291.111097548 291.999986437 291.999986437 291.111097548 292.000013563 292.888902452 292.888902452 292.000013563 292.888899061 293.77778795 293.77778795 292.888899061 293.777784559 294.666673448 294.666673448 293.777784559 294.666670058 295.555558946 295.555558946 294.666670058 295.555555556 296.444444444 296.444444444 295.555555556 296.444441054 297.333329942 297.333329942 296.444441054 297.333326552 298.222215441 298.222215441 297.333326552 298.22221205 299.111100939 299.111100939 298.22221205 299.111097548 299.999986437 299.999986437 299.111097548 300.000013563 300.888902452 300.888902452 300.000013563 300.888899061 301.77778795 301.77778795 300.888899061 301.777784559 302.666673448 302.666673448 301.777784559 302.666670058 303.555558946 303.555558946 302.666670058 303.555555556 304.444444444 304.444444444 303.555555556 304.444441054 305.333329942 305.333329942 304.444441054 305.333326552 306.222215441 306.222215441 305.333326552 306.22221205 307.111100939 307.111100939 306.22221205 307.111097548 307.999986437 307.999986437 307.111097548 308.000013563 308.888902452 308.888902452 308.000013563 308.888899061 309.77778795 309.77778795 308.888899061 309.777784559 310.666673448 310.666673448 309.777784559 310.666670058 311.555558946 311.555558946 310.666670058 311.555555556 312.444444444 312.444444444 311.555555556 312.444441054 313.333329942 313.333329942 312.444441054 313.333326552 314.222215441 314.222215441 313.333326552 314.22221205 315.111100939 315.111100939 314.22221205 315.111097548 315.999986437 315.999986437 315.111097548 316.000013563 316.888902452 316.888902452 316.000013563 316.888899061 317.77778795 317.77778795 316.888899061 317.777784559 318.666673448 318.666673448 317.777784559 318.666670058 319.555558946 319.555558946 318.666670058 319.555555556 320.444444444 320.444444444 319.555555556 320.444441054 321.333329942 321.333329942 320.444441054 321.333326552 322.222215441 322.222215441 321.333326552 322.22221205 323.111100939 323.111100939 322.22221205 323.111097548 323.999986437 323.999986437 323.111097548 324.000013563 324.888902452 324.888902452 324.000013563 324.888899061 325.77778795 325.77778795 324.888899061 325.777784559 326.666673448 326.666673448 325.777784559 326.666670058 327.555558946 327.555558946 326.666670058 327.555555556 328.444444444 328.444444444 327.555555556 328.444441054 329.333329942 329.333329942 328.444441054 329.333326552 330.222215441 330.222215441 329.333326552 330.22221205 331.111100939 331.111100939 330.22221205 331.111097548 331.999986437 331.999986437 331.111097548 332.000013563 332.888902452 332.888902452 332.000013563 332.888899061 333.77778795 333.77778795 332.888899061 333.777784559 334.666673448 334.666673448 333.777784559 334.666670058 335.555558946 335.555558946 334.666670058 335.555555556 336.444444444 336.444444444 335.555555556 336.444441054 337.333329942 337.333329942 336.444441054 337.333326552 338.222215441 338.222215441 337.333326552 338.22221205 339.111100939 339.111100939 338.22221205 339.111097548 339.999986437 339.999986437 339.111097548 340.000013563 340.888902452 340.888902452 340.000013563 340.888899061 341.77778795 341.77778795 340.888899061 341.777784559 342.666673448 342.666673448 341.777784559 342.666670058 343.555558946 343.555558946 342.666670058 343.555555556 344.444444444 344.444444444 343.555555556 344.444441054 345.333329942 345.333329942 344.444441054 345.333326552 346.222215441 346.222215441 345.333326552 346.22221205 347.111100939 347.111100939 346.22221205 347.111097548 347.999986437 347.999986437 347.111097548 348.000013563 348.888902452 348.888902452 348.000013563 348.888899061 349.77778795 349.77778795 348.888899061 349.777784559 350.666673448 350.666673448 349.777784559 350.666670058 351.555558946 351.555558946 350.666670058 351.555555556 352.444444444 352.444444444 351.555555556 352.444441054 353.333329942 353.333329942 352.444441054 353.333326552 354.222215441 354.222215441 353.333326552 354.22221205 355.111100939 355.111100939 354.22221205 355.111097548 355.999986437 355.999986437 355.111097548 356.000013563 356.888902452 356.888902452 356.000013563 356.888899061 357.77778795 357.77778795 356.888899061 357.777784559 358.666673448 358.666673448 357.777784559 358.666670058 359.555558946 359.555558946 358.666670058 -0.45 0.45 0.45 -0.45 0.449999976158 1.34999997616 1.34999997616 0.449999976158 1.34999995232 2.24999995232 2.24999995232 1.34999995232 2.25000004768 3.15000004768 3.15000004768 2.25000004768 3.14999990463 4.04999990463 4.04999990463 3.14999990463 4.05 4.95 4.95 4.05 4.95000009537 5.85000009537 5.85000009537 4.95000009537 5.85000019073 6.75000019073 6.75000019073 5.85000019073 6.74999980927 7.64999980927 7.64999980927 6.74999980927 7.65000038147 8.55000038147 8.55000038147 7.65000038147 8.55 9.45 9.45 8.55 9.44999961853 10.3499996185 10.3499996185 9.44999961853 10.3500001907 11.2500001907 11.2500001907 10.3500001907 11.2499998093 12.1499998093 12.1499998093 11.2499998093 12.1500003815 13.0500003815 13.0500003815 12.1500003815 13.05 13.95 13.95 13.05 13.9499996185 14.8499996185 14.8499996185 13.9499996185 14.8500001907 15.7500001907 15.7500001907 14.8500001907 15.7500007629 16.6500007629 16.6500007629 15.7500007629 16.6500003815 17.5500003815 17.5500003815 16.6500003815 17.55 18.45 18.45 17.55 18.4499996185 19.3499996185 19.3499996185 18.4499996185 19.3499992371 20.2499992371 20.2499992371 19.3499992371 20.2500007629 21.1500007629 21.1500007629 20.2500007629 21.1500003815 22.0500003815 22.0500003815 21.1500003815 22.05 22.95 22.95 22.05 22.9499996185 23.8499996185 23.8499996185 22.9499996185 23.8499992371 24.7499992371 24.7499992371 23.8499992371 24.7500007629 25.6500007629 25.6500007629 24.7500007629 25.6500003815 26.5500003815 26.5500003815 25.6500003815 26.55 27.45 27.45 26.55 27.4499996185 28.3499996185 28.3499996185 27.4499996185 28.3499992371 29.2499992371 29.2499992371 28.3499992371 29.2500007629 30.1500007629 30.1500007629 29.2500007629 30.1500003815 31.0500003815 31.0500003815 30.1500003815 31.05 31.95 31.95 31.05 31.9500015259 32.8500015259 32.8500015259 31.9500015259 32.8499992371 33.7499992371 33.7499992371 32.8499992371 33.7500007629 34.6500007629 34.6500007629 33.7500007629 34.6499984741 35.5499984741 35.5499984741 34.6499984741 35.55 36.45 36.45 35.55 36.4500015259 37.3500015259 37.3500015259 36.4500015259 37.3499992371 38.2499992371 38.2499992371 37.3499992371 38.2500007629 39.1500007629 39.1500007629 38.2500007629 39.1499984741 40.0499984741 40.0499984741 39.1499984741 40.05 40.95 40.95 40.05 40.9500015259 41.8500015259 41.8500015259 40.9500015259 41.8499992371 42.7499992371 42.7499992371 41.8499992371 42.7500007629 43.6500007629 43.6500007629 42.7500007629 43.6499984741 44.5499984741 44.5499984741 43.6499984741 44.55 45.45 45.45 44.55 45.4500015259 46.3500015259 46.3500015259 45.4500015259 46.3499992371 47.2499992371 47.2499992371 46.3499992371 47.2500007629 48.1500007629 48.1500007629 47.2500007629 48.1499984741 49.0499984741 49.0499984741 48.1499984741 49.05 49.95 49.95 49.05 49.9500015259 50.8500015259 50.8500015259 49.9500015259 50.8499992371 51.7499992371 51.7499992371 50.8499992371 51.7500007629 52.6500007629 52.6500007629 51.7500007629 52.6499984741 53.5499984741 53.5499984741 52.6499984741 53.55 54.45 54.45 53.55 54.4500015259 55.3500015259 55.3500015259 54.4500015259 55.3499992371 56.2499992371 56.2499992371 55.3499992371 56.2500007629 57.1500007629 57.1500007629 56.2500007629 57.1499984741 58.0499984741 58.0499984741 57.1499984741 58.05 58.95 58.95 58.05 58.9500015259 59.8500015259 59.8500015259 58.9500015259 59.8499992371 60.7499992371 60.7499992371 59.8499992371 60.7500007629 61.6500007629 61.6500007629 60.7500007629 61.6499984741 62.5499984741 62.5499984741 61.6499984741 62.55 63.45 63.45 62.55 63.4500015259 64.3500015259 64.3500015259 63.4500015259 64.3500030518 65.2500030518 65.2500030518 64.3500030518 65.2499969482 66.1499969482 66.1499969482 65.2499969482 66.1499984741 67.0499984741 67.0499984741 66.1499984741 67.05 67.95 67.95 67.05 67.9500015259 68.8500015259 68.8500015259 67.9500015259 68.8500030518 69.7500030518 69.7500030518 68.8500030518 69.7499969482 70.6499969482 70.6499969482 69.7499969482 70.6499984741 71.5499984741 71.5499984741 70.6499984741 71.55 72.45 72.45 71.55 72.4500015259 73.3500015259 73.3500015259 72.4500015259 73.3500030518 74.2500030518 74.2500030518 73.3500030518 74.2499969482 75.1499969482 75.1499969482 74.2499969482 75.1499984741 76.0499984741 76.0499984741 75.1499984741 76.05 76.95 76.95 76.05 76.9500015259 77.8500015259 77.8500015259 76.9500015259 77.8500030518 78.7500030518 78.7500030518 77.8500030518 78.7499969482 79.6499969482 79.6499969482 78.7499969482 79.6499984741 80.5499984741 80.5499984741 79.6499984741 80.55 81.45 81.45 80.55 81.4500015259 82.3500015259 82.3500015259 81.4500015259 82.3500030518 83.2500030518 83.2500030518 82.3500030518 83.2499969482 84.1499969482 84.1499969482 83.2499969482 84.1499984741 85.0499984741 85.0499984741 84.1499984741 85.05 85.95 85.95 85.05 85.9500015259 86.8500015259 86.8500015259 85.9500015259 86.8500030518 87.7500030518 87.7500030518 86.8500030518 87.7499969482 88.6499969482 88.6499969482 87.7499969482 88.6499984741 89.5499984741 89.5499984741 88.6499984741 89.55 90.45 90.45 89.55 90.4500015259 91.3500015259 91.3500015259 90.4500015259 91.3500030518 92.2500030518 92.2500030518 91.3500030518 92.2499969482 93.1499969482 93.1499969482 92.2499969482 93.1499984741 94.0499984741 94.0499984741 93.1499984741 94.05 94.95 94.95 94.05 94.9500015259 95.8500015259 95.8500015259 94.9500015259 95.8500030518 96.7500030518 96.7500030518 95.8500030518 96.7499969482 97.6499969482 97.6499969482 96.7499969482 97.6499984741 98.5499984741 98.5499984741 97.6499984741 98.55 99.45 99.45 98.55 99.4500015259 100.350001526 100.350001526 99.4500015259 100.350003052 101.250003052 101.250003052 100.350003052 101.249996948 102.149996948 102.149996948 101.249996948 102.149998474 103.049998474 103.049998474 102.149998474 103.05 103.95 103.95 103.05 103.950001526 104.850001526 104.850001526 103.950001526 104.850003052 105.750003052 105.750003052 104.850003052 105.749996948 106.649996948 106.649996948 105.749996948 106.649998474 107.549998474 107.549998474 106.649998474 107.55 108.45 108.45 107.55 108.450001526 109.350001526 109.350001526 108.450001526 109.350003052 110.250003052 110.250003052 109.350003052 110.249996948 111.149996948 111.149996948 110.249996948 111.149998474 112.049998474 112.049998474 111.149998474 112.05 112.95 112.95 112.05 112.950001526 113.850001526 113.850001526 112.950001526 113.850003052 114.750003052 114.750003052 113.850003052 114.749996948 115.649996948 115.649996948 114.749996948 115.649998474 116.549998474 116.549998474 115.649998474 116.55 117.45 117.45 116.55 117.450001526 118.350001526 118.350001526 117.450001526 118.350003052 119.250003052 119.250003052 118.350003052 119.249996948 120.149996948 120.149996948 119.249996948 120.149998474 121.049998474 121.049998474 120.149998474 121.05 121.95 121.95 121.05 121.950001526 122.850001526 122.850001526 121.950001526 122.850003052 123.750003052 123.750003052 122.850003052 123.749996948 124.649996948 124.649996948 123.749996948 124.649998474 125.549998474 125.549998474 124.649998474 125.55 126.45 126.45 125.55 126.450001526 127.350001526 127.350001526 126.450001526 127.350003052 128.250003052 128.250003052 127.350003052 128.249996948 129.149996948 129.149996948 128.249996948 129.150006104 130.050006104 130.050006104 129.150006104 130.05 130.95 130.95 130.05 130.949993896 131.849993896 131.849993896 130.949993896 131.850003052 132.750003052 132.750003052 131.850003052 132.749996948 133.649996948 133.649996948 132.749996948 133.650006104 134.550006104 134.550006104 133.650006104 134.55 135.45 135.45 134.55 135.449993896 136.349993896 136.349993896 135.449993896 136.350003052 137.250003052 137.250003052 136.350003052 137.249996948 138.149996948 138.149996948 137.249996948 138.150006104 139.050006104 139.050006104 138.150006104 139.05 139.95 139.95 139.05 139.949993896 140.849993896 140.849993896 139.949993896 140.850003052 141.750003052 141.750003052 140.850003052 141.749996948 142.649996948 142.649996948 141.749996948 142.650006104 143.550006104 143.550006104 142.650006104 143.55 144.45 144.45 143.55 144.449993896 145.349993896 145.349993896 144.449993896 145.350003052 146.250003052 146.250003052 145.350003052 146.249996948 147.149996948 147.149996948 146.249996948 147.150006104 148.050006104 148.050006104 147.150006104 148.05 148.95 148.95 148.05 148.949993896 149.849993896 149.849993896 148.949993896 149.850003052 150.750003052 150.750003052 149.850003052 150.749996948 151.649996948 151.649996948 150.749996948 151.650006104 152.550006104 152.550006104 151.650006104 152.55 153.45 153.45 152.55 153.449993896 154.349993896 154.349993896 153.449993896 154.350003052 155.250003052 155.250003052 154.350003052 155.249996948 156.149996948 156.149996948 155.249996948 156.150006104 157.050006104 157.050006104 156.150006104 157.05 157.95 157.95 157.05 157.949993896 158.849993896 158.849993896 157.949993896 158.850003052 159.750003052 159.750003052 158.850003052 159.749996948 160.649996948 160.649996948 159.749996948 160.650006104 161.550006104 161.550006104 160.650006104 161.55 162.45 162.45 161.55 162.449993896 163.349993896 163.349993896 162.449993896 163.350003052 164.250003052 164.250003052 163.350003052 164.249996948 165.149996948 165.149996948 164.249996948 165.150006104 166.050006104 166.050006104 165.150006104 166.05 166.95 166.95 166.05 166.949993896 167.849993896 167.849993896 166.949993896 167.850003052 168.750003052 168.750003052 167.850003052 168.749996948 169.649996948 169.649996948 168.749996948 169.650006104 170.550006104 170.550006104 169.650006104 170.55 171.45 171.45 170.55 171.449993896 172.349993896 172.349993896 171.449993896 172.350003052 173.250003052 173.250003052 172.350003052 173.249996948 174.149996948 174.149996948 173.249996948 174.150006104 175.050006104 175.050006104 174.150006104 175.05 175.95 175.95 175.05 175.949993896 176.849993896 176.849993896 175.949993896 176.850003052 177.750003052 177.750003052 176.850003052 177.749996948 178.649996948 178.649996948 177.749996948 178.650006104 179.550006104 179.550006104 178.650006104 179.55 180.45 180.45 179.55 180.449993896 181.349993896 181.349993896 180.449993896 181.350003052 182.250003052 182.250003052 181.350003052 182.249996948 183.149996948 183.149996948 182.249996948 183.150006104 184.050006104 184.050006104 183.150006104 184.05 184.95 184.95 184.05 184.949993896 185.849993896 185.849993896 184.949993896 185.850003052 186.750003052 186.750003052 185.850003052 186.749996948 187.649996948 187.649996948 186.749996948 187.650006104 188.550006104 188.550006104 187.650006104 188.55 189.45 189.45 188.55 189.449993896 190.349993896 190.349993896 189.449993896 190.350003052 191.250003052 191.250003052 190.350003052 191.249996948 192.149996948 192.149996948 191.249996948 192.150006104 193.050006104 193.050006104 192.150006104 193.05 193.95 193.95 193.05 193.949993896 194.849993896 194.849993896 193.949993896 194.850003052 195.750003052 195.750003052 194.850003052 195.749996948 196.649996948 196.649996948 195.749996948 196.650006104 197.550006104 197.550006104 196.650006104 197.55 198.45 198.45 197.55 198.449993896 199.349993896 199.349993896 198.449993896 199.350003052 200.250003052 200.250003052 199.350003052 200.249996948 201.149996948 201.149996948 200.249996948 201.150006104 202.050006104 202.050006104 201.150006104 202.05 202.95 202.95 202.05 202.949993896 203.849993896 203.849993896 202.949993896 203.850003052 204.750003052 204.750003052 203.850003052 204.749996948 205.649996948 205.649996948 204.749996948 205.650006104 206.550006104 206.550006104 205.650006104 206.55 207.45 207.45 206.55 207.449993896 208.349993896 208.349993896 207.449993896 208.350003052 209.250003052 209.250003052 208.350003052 209.249996948 210.149996948 210.149996948 209.249996948 210.150006104 211.050006104 211.050006104 210.150006104 211.05 211.95 211.95 211.05 211.949993896 212.849993896 212.849993896 211.949993896 212.850003052 213.750003052 213.750003052 212.850003052 213.749996948 214.649996948 214.649996948 213.749996948 214.650006104 215.550006104 215.550006104 214.650006104 215.55 216.45 216.45 215.55 216.449993896 217.349993896 217.349993896 216.449993896 217.350003052 218.250003052 218.250003052 217.350003052 218.249996948 219.149996948 219.149996948 218.249996948 219.150006104 220.050006104 220.050006104 219.150006104 220.05 220.95 220.95 220.05 220.949993896 221.849993896 221.849993896 220.949993896 221.850003052 222.750003052 222.750003052 221.850003052 222.749996948 223.649996948 223.649996948 222.749996948 223.650006104 224.550006104 224.550006104 223.650006104 224.55 225.45 225.45 224.55 225.449993896 226.349993896 226.349993896 225.449993896 226.350003052 227.250003052 227.250003052 226.350003052 227.249996948 228.149996948 228.149996948 227.249996948 228.150006104 229.050006104 229.050006104 228.150006104 229.05 229.95 229.95 229.05 229.949993896 230.849993896 230.849993896 229.949993896 230.850003052 231.750003052 231.750003052 230.850003052 231.749996948 232.649996948 232.649996948 231.749996948 232.650006104 233.550006104 233.550006104 232.650006104 233.55 234.45 234.45 233.55 234.449993896 235.349993896 235.349993896 234.449993896 235.350003052 236.250003052 236.250003052 235.350003052 236.249996948 237.149996948 237.149996948 236.249996948 237.150006104 238.050006104 238.050006104 237.150006104 238.05 238.95 238.95 238.05 238.949993896 239.849993896 239.849993896 238.949993896 239.850003052 240.750003052 240.750003052 239.850003052 240.749996948 241.649996948 241.649996948 240.749996948 241.650006104 242.550006104 242.550006104 241.650006104 242.55 243.45 243.45 242.55 243.449993896 244.349993896 244.349993896 243.449993896 244.350003052 245.250003052 245.250003052 244.350003052 245.249996948 246.149996948 246.149996948 245.249996948 246.150006104 247.050006104 247.050006104 246.150006104 247.05 247.95 247.95 247.05 247.949993896 248.849993896 248.849993896 247.949993896 248.850003052 249.750003052 249.750003052 248.850003052 249.749996948 250.649996948 250.649996948 249.749996948 250.650006104 251.550006104 251.550006104 250.650006104 251.55 252.45 252.45 251.55 252.449993896 253.349993896 253.349993896 252.449993896 253.350003052 254.250003052 254.250003052 253.350003052 254.249996948 255.149996948 255.149996948 254.249996948 255.150006104 256.050006104 256.050006104 255.150006104 256.05 256.95 256.95 256.05 256.949993896 257.849993896 257.849993896 256.949993896 257.849987793 258.749987793 258.749987793 257.849987793 258.750012207 259.650012207 259.650012207 258.750012207 259.650006104 260.550006104 260.550006104 259.650006104 260.55 261.45 261.45 260.55 261.449993896 262.349993896 262.349993896 261.449993896 262.349987793 263.249987793 263.249987793 262.349987793 263.250012207 264.150012207 264.150012207 263.250012207 264.150006104 265.050006104 265.050006104 264.150006104 265.05 265.95 265.95 265.05 265.949993896 266.849993896 266.849993896 265.949993896 266.849987793 267.749987793 267.749987793 266.849987793 267.750012207 268.650012207 268.650012207 267.750012207 268.650006104 269.550006104 269.550006104 268.650006104 269.55 270.45 270.45 269.55 270.449993896 271.349993896 271.349993896 270.449993896 271.349987793 272.249987793 272.249987793 271.349987793 272.250012207 273.150012207 273.150012207 272.250012207 273.150006104 274.050006104 274.050006104 273.150006104 274.05 274.95 274.95 274.05 274.949993896 275.849993896 275.849993896 274.949993896 275.849987793 276.749987793 276.749987793 275.849987793 276.750012207 277.650012207 277.650012207 276.750012207 277.650006104 278.550006104 278.550006104 277.650006104 278.55 279.45 279.45 278.55 279.449993896 280.349993896 280.349993896 279.449993896 280.349987793 281.249987793 281.249987793 280.349987793 281.250012207 282.150012207 282.150012207 281.250012207 282.150006104 283.050006104 283.050006104 282.150006104 283.05 283.95 283.95 283.05 283.949993896 284.849993896 284.849993896 283.949993896 284.849987793 285.749987793 285.749987793 284.849987793 285.750012207 286.650012207 286.650012207 285.750012207 286.650006104 287.550006104 287.550006104 286.650006104 287.55 288.45 288.45 287.55 288.449993896 289.349993896 289.349993896 288.449993896 289.349987793 290.249987793 290.249987793 289.349987793 290.250012207 291.150012207 291.150012207 290.250012207 291.150006104 292.050006104 292.050006104 291.150006104 292.05 292.95 292.95 292.05 292.949993896 293.849993896 293.849993896 292.949993896 293.849987793 294.749987793 294.749987793 293.849987793 294.750012207 295.650012207 295.650012207 294.750012207 295.650006104 296.550006104 296.550006104 295.650006104 296.55 297.45 297.45 296.55 297.449993896 298.349993896 298.349993896 297.449993896 +298.349987793 299.249987793 299.249987793 298.349987793 299.250012207 300.150012207 300.150012207 299.250012207 300.150006104 301.050006104 301.050006104 300.150006104 301.05 301.95 301.95 301.05 301.949993896 302.849993896 302.849993896 301.949993896 302.849987793 303.749987793 303.749987793 302.849987793 303.750012207 304.650012207 304.650012207 303.750012207 304.650006104 305.550006104 305.550006104 304.650006104 305.55 306.45 306.45 305.55 306.449993896 307.349993896 307.349993896 306.449993896 307.349987793 308.249987793 308.249987793 307.349987793 308.250012207 309.150012207 309.150012207 308.250012207 309.150006104 310.050006104 310.050006104 309.150006104 310.05 310.95 310.95 310.05 310.949993896 311.849993896 311.849993896 310.949993896 311.849987793 312.749987793 312.749987793 311.849987793 312.750012207 313.650012207 313.650012207 312.750012207 313.650006104 314.550006104 314.550006104 313.650006104 314.55 315.45 315.45 314.55 315.449993896 316.349993896 316.349993896 315.449993896 316.349987793 317.249987793 317.249987793 316.349987793 317.250012207 318.150012207 318.150012207 317.250012207 318.150006104 319.050006104 319.050006104 318.150006104 319.05 319.95 319.95 319.05 319.949993896 320.849993896 320.849993896 319.949993896 320.849987793 321.749987793 321.749987793 320.849987793 321.750012207 322.650012207 322.650012207 321.750012207 322.650006104 323.550006104 323.550006104 322.650006104 323.55 324.45 324.45 323.55 324.449993896 325.349993896 325.349993896 324.449993896 325.349987793 326.249987793 326.249987793 325.349987793 326.250012207 327.150012207 327.150012207 326.250012207 327.150006104 328.050006104 328.050006104 327.150006104 328.05 328.95 328.95 328.05 328.949993896 329.849993896 329.849993896 328.949993896 329.849987793 330.749987793 330.749987793 329.849987793 330.750012207 331.650012207 331.650012207 330.750012207 331.650006104 332.550006104 332.550006104 331.650006104 332.55 333.45 333.45 332.55 333.449993896 334.349993896 334.349993896 333.449993896 334.349987793 335.249987793 335.249987793 334.349987793 335.250012207 336.150012207 336.150012207 335.250012207 336.150006104 337.050006104 337.050006104 336.150006104 337.05 337.95 337.95 337.05 337.949993896 338.849993896 338.849993896 337.949993896 338.849987793 339.749987793 339.749987793 338.849987793 339.750012207 340.650012207 340.650012207 339.750012207 340.650006104 341.550006104 341.550006104 340.650006104 341.55 342.45 342.45 341.55 342.449993896 343.349993896 343.349993896 342.449993896 343.349987793 344.249987793 344.249987793 343.349987793 344.250012207 345.150012207 345.150012207 344.250012207 345.150006104 346.050006104 346.050006104 345.150006104 346.05 346.95 346.95 346.05 346.949993896 347.849993896 347.849993896 346.949993896 347.849987793 348.749987793 348.749987793 347.849987793 348.750012207 349.650012207 349.650012207 348.750012207 349.650006104 350.550006104 350.550006104 349.650006104 350.55 351.45 351.45 350.55 351.449993896 352.349993896 352.349993896 351.449993896 352.349987793 353.249987793 353.249987793 352.349987793 353.250012207 354.150012207 354.150012207 353.250012207 354.150006104 355.050006104 355.050006104 354.150006104 355.05 355.95 355.95 355.05 355.949993896 356.849993896 356.849993896 355.949993896 356.849987793 357.749987793 357.749987793 356.849987793 357.750012207 358.650012207 358.650012207 357.750012207 358.650006104 359.550006104 359.550006104 358.650006104 -0.45 0.45 0.45 -0.45 0.449999976158 1.34999997616 1.34999997616 0.449999976158 1.34999995232 2.24999995232 2.24999995232 1.34999995232 2.25000004768 3.15000004768 3.15000004768 2.25000004768 3.14999990463 4.04999990463 4.04999990463 3.14999990463 4.05 4.95 4.95 4.05 4.95000009537 5.85000009537 5.85000009537 4.95000009537 5.85000019073 6.75000019073 6.75000019073 5.85000019073 6.74999980927 7.64999980927 7.64999980927 6.74999980927 7.65000038147 8.55000038147 8.55000038147 7.65000038147 8.55 9.45 9.45 8.55 9.44999961853 10.3499996185 10.3499996185 9.44999961853 10.3500001907 11.2500001907 11.2500001907 10.3500001907 11.2499998093 12.1499998093 12.1499998093 11.2499998093 12.1500003815 13.0500003815 13.0500003815 12.1500003815 13.05 13.95 13.95 13.05 13.9499996185 14.8499996185 14.8499996185 13.9499996185 14.8500001907 15.7500001907 15.7500001907 14.8500001907 15.7500007629 16.6500007629 16.6500007629 15.7500007629 16.6500003815 17.5500003815 17.5500003815 16.6500003815 17.55 18.45 18.45 17.55 18.4499996185 19.3499996185 19.3499996185 18.4499996185 19.3499992371 20.2499992371 20.2499992371 19.3499992371 20.2500007629 21.1500007629 21.1500007629 20.2500007629 21.1500003815 22.0500003815 22.0500003815 21.1500003815 22.05 22.95 22.95 22.05 22.9499996185 23.8499996185 23.8499996185 22.9499996185 23.8499992371 24.7499992371 24.7499992371 23.8499992371 24.7500007629 25.6500007629 25.6500007629 24.7500007629 25.6500003815 26.5500003815 26.5500003815 25.6500003815 26.55 27.45 27.45 26.55 27.4499996185 28.3499996185 28.3499996185 27.4499996185 28.3499992371 29.2499992371 29.2499992371 28.3499992371 29.2500007629 30.1500007629 30.1500007629 29.2500007629 30.1500003815 31.0500003815 31.0500003815 30.1500003815 31.05 31.95 31.95 31.05 31.9500015259 32.8500015259 32.8500015259 31.9500015259 32.8499992371 33.7499992371 33.7499992371 32.8499992371 33.7500007629 34.6500007629 34.6500007629 33.7500007629 34.6499984741 35.5499984741 35.5499984741 34.6499984741 35.55 36.45 36.45 35.55 36.4500015259 37.3500015259 37.3500015259 36.4500015259 37.3499992371 38.2499992371 38.2499992371 37.3499992371 38.2500007629 39.1500007629 39.1500007629 38.2500007629 39.1499984741 40.0499984741 40.0499984741 39.1499984741 40.05 40.95 40.95 40.05 40.9500015259 41.8500015259 41.8500015259 40.9500015259 41.8499992371 42.7499992371 42.7499992371 41.8499992371 42.7500007629 43.6500007629 43.6500007629 42.7500007629 43.6499984741 44.5499984741 44.5499984741 43.6499984741 44.55 45.45 45.45 44.55 45.4500015259 46.3500015259 46.3500015259 45.4500015259 46.3499992371 47.2499992371 47.2499992371 46.3499992371 47.2500007629 48.1500007629 48.1500007629 47.2500007629 48.1499984741 49.0499984741 49.0499984741 48.1499984741 49.05 49.95 49.95 49.05 49.9500015259 50.8500015259 50.8500015259 49.9500015259 50.8499992371 51.7499992371 51.7499992371 50.8499992371 51.7500007629 52.6500007629 52.6500007629 51.7500007629 52.6499984741 53.5499984741 53.5499984741 52.6499984741 53.55 54.45 54.45 53.55 54.4500015259 55.3500015259 55.3500015259 54.4500015259 55.3499992371 56.2499992371 56.2499992371 55.3499992371 56.2500007629 57.1500007629 57.1500007629 56.2500007629 57.1499984741 58.0499984741 58.0499984741 57.1499984741 58.05 58.95 58.95 58.05 58.9500015259 59.8500015259 59.8500015259 58.9500015259 59.8499992371 60.7499992371 60.7499992371 59.8499992371 60.7500007629 61.6500007629 61.6500007629 60.7500007629 61.6499984741 62.5499984741 62.5499984741 61.6499984741 62.55 63.45 63.45 62.55 63.4500015259 64.3500015259 64.3500015259 63.4500015259 64.3500030518 65.2500030518 65.2500030518 64.3500030518 65.2499969482 66.1499969482 66.1499969482 65.2499969482 66.1499984741 67.0499984741 67.0499984741 66.1499984741 67.05 67.95 67.95 67.05 67.9500015259 68.8500015259 68.8500015259 67.9500015259 68.8500030518 69.7500030518 69.7500030518 68.8500030518 69.7499969482 70.6499969482 70.6499969482 69.7499969482 70.6499984741 71.5499984741 71.5499984741 70.6499984741 71.55 72.45 72.45 71.55 72.4500015259 73.3500015259 73.3500015259 72.4500015259 73.3500030518 74.2500030518 74.2500030518 73.3500030518 74.2499969482 75.1499969482 75.1499969482 74.2499969482 75.1499984741 76.0499984741 76.0499984741 75.1499984741 76.05 76.95 76.95 76.05 76.9500015259 77.8500015259 77.8500015259 76.9500015259 77.8500030518 78.7500030518 78.7500030518 77.8500030518 78.7499969482 79.6499969482 79.6499969482 78.7499969482 79.6499984741 80.5499984741 80.5499984741 79.6499984741 80.55 81.45 81.45 80.55 81.4500015259 82.3500015259 82.3500015259 81.4500015259 82.3500030518 83.2500030518 83.2500030518 82.3500030518 83.2499969482 84.1499969482 84.1499969482 83.2499969482 84.1499984741 85.0499984741 85.0499984741 84.1499984741 85.05 85.95 85.95 85.05 85.9500015259 86.8500015259 86.8500015259 85.9500015259 86.8500030518 87.7500030518 87.7500030518 86.8500030518 87.7499969482 88.6499969482 88.6499969482 87.7499969482 88.6499984741 89.5499984741 89.5499984741 88.6499984741 89.55 90.45 90.45 89.55 90.4500015259 91.3500015259 91.3500015259 90.4500015259 91.3500030518 92.2500030518 92.2500030518 91.3500030518 92.2499969482 93.1499969482 93.1499969482 92.2499969482 93.1499984741 94.0499984741 94.0499984741 93.1499984741 94.05 94.95 94.95 94.05 94.9500015259 95.8500015259 95.8500015259 94.9500015259 95.8500030518 96.7500030518 96.7500030518 95.8500030518 96.7499969482 97.6499969482 97.6499969482 96.7499969482 97.6499984741 98.5499984741 98.5499984741 97.6499984741 98.55 99.45 99.45 98.55 99.4500015259 100.350001526 100.350001526 99.4500015259 100.350003052 101.250003052 101.250003052 100.350003052 101.249996948 102.149996948 102.149996948 101.249996948 102.149998474 103.049998474 103.049998474 102.149998474 103.05 103.95 103.95 103.05 103.950001526 104.850001526 104.850001526 103.950001526 104.850003052 105.750003052 105.750003052 104.850003052 105.749996948 106.649996948 106.649996948 105.749996948 106.649998474 107.549998474 107.549998474 106.649998474 107.55 108.45 108.45 107.55 108.450001526 109.350001526 109.350001526 108.450001526 109.350003052 110.250003052 110.250003052 109.350003052 110.249996948 111.149996948 111.149996948 110.249996948 111.149998474 112.049998474 112.049998474 111.149998474 112.05 112.95 112.95 112.05 112.950001526 113.850001526 113.850001526 112.950001526 113.850003052 114.750003052 114.750003052 113.850003052 114.749996948 115.649996948 115.649996948 114.749996948 115.649998474 116.549998474 116.549998474 115.649998474 116.55 117.45 117.45 116.55 117.450001526 118.350001526 118.350001526 117.450001526 118.350003052 119.250003052 119.250003052 118.350003052 119.249996948 120.149996948 120.149996948 119.249996948 120.149998474 121.049998474 121.049998474 120.149998474 121.05 121.95 121.95 121.05 121.950001526 122.850001526 122.850001526 121.950001526 122.850003052 123.750003052 123.750003052 122.850003052 123.749996948 124.649996948 124.649996948 123.749996948 124.649998474 125.549998474 125.549998474 124.649998474 125.55 126.45 126.45 125.55 126.450001526 127.350001526 127.350001526 126.450001526 127.350003052 128.250003052 128.250003052 127.350003052 128.249996948 129.149996948 129.149996948 128.249996948 129.150006104 130.050006104 130.050006104 129.150006104 130.05 130.95 130.95 130.05 130.949993896 131.849993896 131.849993896 130.949993896 131.850003052 132.750003052 132.750003052 131.850003052 132.749996948 133.649996948 133.649996948 132.749996948 133.650006104 134.550006104 134.550006104 133.650006104 134.55 135.45 135.45 134.55 135.449993896 136.349993896 136.349993896 135.449993896 136.350003052 137.250003052 137.250003052 136.350003052 137.249996948 138.149996948 138.149996948 137.249996948 138.150006104 139.050006104 139.050006104 138.150006104 139.05 139.95 139.95 139.05 139.949993896 140.849993896 140.849993896 139.949993896 140.850003052 141.750003052 141.750003052 140.850003052 141.749996948 142.649996948 142.649996948 141.749996948 142.650006104 143.550006104 143.550006104 142.650006104 143.55 144.45 144.45 143.55 144.449993896 145.349993896 145.349993896 144.449993896 145.350003052 146.250003052 146.250003052 145.350003052 146.249996948 147.149996948 147.149996948 146.249996948 147.150006104 148.050006104 148.050006104 147.150006104 148.05 148.95 148.95 148.05 148.949993896 149.849993896 149.849993896 148.949993896 149.850003052 150.750003052 150.750003052 149.850003052 150.749996948 151.649996948 151.649996948 150.749996948 151.650006104 152.550006104 152.550006104 151.650006104 152.55 153.45 153.45 152.55 153.449993896 154.349993896 154.349993896 153.449993896 154.350003052 155.250003052 155.250003052 154.350003052 155.249996948 156.149996948 156.149996948 155.249996948 156.150006104 157.050006104 157.050006104 156.150006104 157.05 157.95 157.95 157.05 157.949993896 158.849993896 158.849993896 157.949993896 158.850003052 159.750003052 159.750003052 158.850003052 159.749996948 160.649996948 160.649996948 159.749996948 160.650006104 161.550006104 161.550006104 160.650006104 161.55 162.45 162.45 161.55 162.449993896 163.349993896 163.349993896 162.449993896 163.350003052 164.250003052 164.250003052 163.350003052 164.249996948 165.149996948 165.149996948 164.249996948 165.150006104 166.050006104 166.050006104 165.150006104 166.05 166.95 166.95 166.05 166.949993896 167.849993896 167.849993896 166.949993896 167.850003052 168.750003052 168.750003052 167.850003052 168.749996948 169.649996948 169.649996948 168.749996948 169.650006104 170.550006104 170.550006104 169.650006104 170.55 171.45 171.45 170.55 171.449993896 172.349993896 172.349993896 171.449993896 172.350003052 173.250003052 173.250003052 172.350003052 173.249996948 174.149996948 174.149996948 173.249996948 174.150006104 175.050006104 175.050006104 174.150006104 175.05 175.95 175.95 175.05 175.949993896 176.849993896 176.849993896 175.949993896 176.850003052 177.750003052 177.750003052 176.850003052 177.749996948 178.649996948 178.649996948 177.749996948 178.650006104 179.550006104 179.550006104 178.650006104 179.55 180.45 180.45 179.55 180.449993896 181.349993896 181.349993896 180.449993896 181.350003052 182.250003052 182.250003052 181.350003052 182.249996948 183.149996948 183.149996948 182.249996948 183.150006104 184.050006104 184.050006104 183.150006104 184.05 184.95 184.95 184.05 184.949993896 185.849993896 185.849993896 184.949993896 185.850003052 186.750003052 186.750003052 185.850003052 186.749996948 187.649996948 187.649996948 186.749996948 187.650006104 188.550006104 188.550006104 187.650006104 188.55 189.45 189.45 188.55 189.449993896 190.349993896 190.349993896 189.449993896 190.350003052 191.250003052 191.250003052 190.350003052 191.249996948 192.149996948 192.149996948 191.249996948 192.150006104 193.050006104 193.050006104 192.150006104 193.05 193.95 193.95 193.05 193.949993896 194.849993896 194.849993896 193.949993896 194.850003052 195.750003052 195.750003052 194.850003052 195.749996948 196.649996948 196.649996948 195.749996948 196.650006104 197.550006104 197.550006104 196.650006104 197.55 198.45 198.45 197.55 198.449993896 199.349993896 199.349993896 198.449993896 199.350003052 200.250003052 200.250003052 199.350003052 200.249996948 201.149996948 201.149996948 200.249996948 201.150006104 202.050006104 202.050006104 201.150006104 202.05 202.95 202.95 202.05 202.949993896 203.849993896 203.849993896 202.949993896 203.850003052 204.750003052 204.750003052 203.850003052 204.749996948 205.649996948 205.649996948 204.749996948 205.650006104 206.550006104 206.550006104 205.650006104 206.55 207.45 207.45 206.55 207.449993896 208.349993896 208.349993896 207.449993896 208.350003052 209.250003052 209.250003052 208.350003052 209.249996948 210.149996948 210.149996948 209.249996948 210.150006104 211.050006104 211.050006104 210.150006104 211.05 211.95 211.95 211.05 211.949993896 212.849993896 212.849993896 211.949993896 212.850003052 213.750003052 213.750003052 212.850003052 213.749996948 214.649996948 214.649996948 213.749996948 214.650006104 215.550006104 215.550006104 214.650006104 215.55 216.45 216.45 215.55 216.449993896 217.349993896 217.349993896 216.449993896 217.350003052 218.250003052 218.250003052 217.350003052 218.249996948 219.149996948 219.149996948 218.249996948 219.150006104 220.050006104 220.050006104 219.150006104 220.05 220.95 220.95 220.05 220.949993896 221.849993896 221.849993896 220.949993896 221.850003052 222.750003052 222.750003052 221.850003052 222.749996948 223.649996948 223.649996948 222.749996948 223.650006104 224.550006104 224.550006104 223.650006104 224.55 225.45 225.45 224.55 225.449993896 226.349993896 226.349993896 225.449993896 226.350003052 227.250003052 227.250003052 226.350003052 227.249996948 228.149996948 228.149996948 227.249996948 228.150006104 229.050006104 229.050006104 228.150006104 229.05 229.95 229.95 229.05 229.949993896 230.849993896 230.849993896 229.949993896 230.850003052 231.750003052 231.750003052 230.850003052 231.749996948 232.649996948 232.649996948 231.749996948 232.650006104 233.550006104 233.550006104 232.650006104 233.55 234.45 234.45 233.55 234.449993896 235.349993896 235.349993896 234.449993896 235.350003052 236.250003052 236.250003052 235.350003052 236.249996948 237.149996948 237.149996948 236.249996948 237.150006104 238.050006104 238.050006104 237.150006104 238.05 238.95 238.95 238.05 238.949993896 239.849993896 239.849993896 238.949993896 239.850003052 240.750003052 240.750003052 239.850003052 240.749996948 241.649996948 241.649996948 240.749996948 241.650006104 242.550006104 242.550006104 241.650006104 242.55 243.45 243.45 242.55 243.449993896 244.349993896 244.349993896 243.449993896 244.350003052 245.250003052 245.250003052 244.350003052 245.249996948 246.149996948 246.149996948 245.249996948 246.150006104 247.050006104 247.050006104 246.150006104 247.05 247.95 247.95 247.05 247.949993896 248.849993896 248.849993896 247.949993896 248.850003052 249.750003052 249.750003052 248.850003052 249.749996948 250.649996948 250.649996948 249.749996948 250.650006104 251.550006104 251.550006104 250.650006104 251.55 252.45 252.45 251.55 252.449993896 253.349993896 253.349993896 252.449993896 253.350003052 254.250003052 254.250003052 253.350003052 254.249996948 255.149996948 255.149996948 254.249996948 255.150006104 256.050006104 256.050006104 255.150006104 256.05 256.95 256.95 256.05 256.949993896 257.849993896 257.849993896 256.949993896 257.849987793 258.749987793 258.749987793 257.849987793 258.750012207 259.650012207 259.650012207 258.750012207 259.650006104 260.550006104 260.550006104 259.650006104 260.55 261.45 261.45 260.55 261.449993896 262.349993896 262.349993896 261.449993896 262.349987793 263.249987793 263.249987793 262.349987793 263.250012207 264.150012207 264.150012207 263.250012207 264.150006104 265.050006104 265.050006104 264.150006104 265.05 265.95 265.95 265.05 265.949993896 266.849993896 266.849993896 265.949993896 266.849987793 267.749987793 267.749987793 266.849987793 267.750012207 268.650012207 268.650012207 267.750012207 268.650006104 269.550006104 269.550006104 268.650006104 269.55 270.45 270.45 269.55 270.449993896 271.349993896 271.349993896 270.449993896 271.349987793 272.249987793 272.249987793 271.349987793 272.250012207 273.150012207 273.150012207 272.250012207 273.150006104 274.050006104 274.050006104 273.150006104 274.05 274.95 274.95 274.05 274.949993896 275.849993896 275.849993896 274.949993896 275.849987793 276.749987793 276.749987793 275.849987793 276.750012207 277.650012207 277.650012207 276.750012207 277.650006104 278.550006104 278.550006104 277.650006104 278.55 279.45 279.45 278.55 279.449993896 280.349993896 280.349993896 279.449993896 280.349987793 281.249987793 281.249987793 280.349987793 281.250012207 282.150012207 282.150012207 281.250012207 282.150006104 283.050006104 283.050006104 282.150006104 283.05 283.95 283.95 283.05 283.949993896 284.849993896 284.849993896 283.949993896 284.849987793 285.749987793 285.749987793 284.849987793 285.750012207 286.650012207 286.650012207 285.750012207 286.650006104 287.550006104 287.550006104 286.650006104 287.55 288.45 288.45 287.55 288.449993896 289.349993896 289.349993896 288.449993896 289.349987793 290.249987793 290.249987793 289.349987793 290.250012207 291.150012207 291.150012207 290.250012207 291.150006104 292.050006104 292.050006104 291.150006104 292.05 292.95 292.95 292.05 292.949993896 293.849993896 293.849993896 292.949993896 293.849987793 294.749987793 294.749987793 293.849987793 294.750012207 295.650012207 295.650012207 294.750012207 295.650006104 296.550006104 296.550006104 295.650006104 296.55 297.45 297.45 296.55 297.449993896 298.349993896 298.349993896 297.449993896 298.349987793 299.249987793 299.249987793 298.349987793 299.250012207 300.150012207 300.150012207 299.250012207 300.150006104 301.050006104 301.050006104 300.150006104 301.05 301.95 301.95 301.05 301.949993896 302.849993896 302.849993896 301.949993896 302.849987793 303.749987793 303.749987793 302.849987793 303.750012207 304.650012207 304.650012207 303.750012207 304.650006104 305.550006104 305.550006104 304.650006104 305.55 306.45 306.45 305.55 306.449993896 307.349993896 307.349993896 306.449993896 307.349987793 308.249987793 308.249987793 307.349987793 308.250012207 309.150012207 309.150012207 308.250012207 309.150006104 310.050006104 310.050006104 309.150006104 310.05 310.95 310.95 310.05 310.949993896 311.849993896 311.849993896 310.949993896 311.849987793 312.749987793 312.749987793 311.849987793 312.750012207 313.650012207 313.650012207 312.750012207 313.650006104 314.550006104 314.550006104 313.650006104 314.55 315.45 315.45 314.55 315.449993896 316.349993896 316.349993896 315.449993896 316.349987793 317.249987793 317.249987793 316.349987793 317.250012207 318.150012207 318.150012207 317.250012207 318.150006104 319.050006104 319.050006104 318.150006104 319.05 319.95 319.95 319.05 319.949993896 320.849993896 320.849993896 319.949993896 320.849987793 321.749987793 321.749987793 320.849987793 321.750012207 322.650012207 322.650012207 321.750012207 322.650006104 323.550006104 323.550006104 322.650006104 323.55 324.45 324.45 323.55 324.449993896 325.349993896 325.349993896 324.449993896 325.349987793 326.249987793 326.249987793 325.349987793 326.250012207 327.150012207 327.150012207 326.250012207 327.150006104 328.050006104 328.050006104 327.150006104 328.05 328.95 328.95 328.05 328.949993896 329.849993896 329.849993896 328.949993896 329.849987793 330.749987793 330.749987793 329.849987793 330.750012207 331.650012207 331.650012207 330.750012207 331.650006104 332.550006104 332.550006104 331.650006104 332.55 333.45 333.45 332.55 333.449993896 334.349993896 334.349993896 333.449993896 334.349987793 335.249987793 335.249987793 334.349987793 335.250012207 336.150012207 336.150012207 335.250012207 336.150006104 337.050006104 337.050006104 336.150006104 337.05 337.95 337.95 337.05 337.949993896 338.849993896 338.849993896 337.949993896 338.849987793 339.749987793 339.749987793 338.849987793 339.750012207 340.650012207 340.650012207 339.750012207 340.650006104 341.550006104 341.550006104 340.650006104 341.55 342.45 342.45 341.55 342.449993896 343.349993896 343.349993896 342.449993896 343.349987793 344.249987793 344.249987793 343.349987793 344.250012207 345.150012207 345.150012207 344.250012207 345.150006104 346.050006104 346.050006104 345.150006104 346.05 346.95 346.95 346.05 346.949993896 347.849993896 347.849993896 346.949993896 347.849987793 348.749987793 348.749987793 347.849987793 348.750012207 349.650012207 349.650012207 348.750012207 349.650006104 350.550006104 350.550006104 349.650006104 350.55 351.45 351.45 350.55 351.449993896 352.349993896 352.349993896 351.449993896 352.349987793 353.249987793 353.249987793 352.349987793 353.250012207 354.150012207 354.150012207 353.250012207 354.150006104 355.050006104 355.050006104 354.150006104 355.05 355.95 355.95 355.05 355.949993896 356.849993896 356.849993896 355.949993896 356.849987793 357.749987793 357.749987793 356.849987793 357.750012207 358.650012207 358.650012207 357.750012207 358.650006104 359.550006104 359.550006104 358.650006104 -0.45 0.45 0.45 -0.45 0.449999976158 1.34999997616 1.34999997616 0.449999976158 1.34999995232 2.24999995232 2.24999995232 1.34999995232 2.25000004768 3.15000004768 3.15000004768 2.25000004768 3.14999990463 4.04999990463 4.04999990463 3.14999990463 4.05 4.95 4.95 4.05 4.95000009537 5.85000009537 5.85000009537 4.95000009537 5.85000019073 6.75000019073 6.75000019073 5.85000019073 6.74999980927 7.64999980927 7.64999980927 6.74999980927 7.65000038147 8.55000038147 8.55000038147 7.65000038147 8.55 9.45 9.45 8.55 9.44999961853 10.3499996185 10.3499996185 9.44999961853 10.3500001907 11.2500001907 11.2500001907 10.3500001907 11.2499998093 12.1499998093 12.1499998093 11.2499998093 12.1500003815 13.0500003815 13.0500003815 12.1500003815 13.05 13.95 13.95 13.05 13.9499996185 14.8499996185 14.8499996185 13.9499996185 14.8500001907 15.7500001907 15.7500001907 14.8500001907 15.7500007629 16.6500007629 16.6500007629 15.7500007629 16.6500003815 17.5500003815 17.5500003815 16.6500003815 17.55 18.45 18.45 17.55 18.4499996185 19.3499996185 19.3499996185 18.4499996185 19.3499992371 20.2499992371 20.2499992371 19.3499992371 20.2500007629 21.1500007629 21.1500007629 20.2500007629 21.1500003815 22.0500003815 22.0500003815 21.1500003815 22.05 22.95 22.95 22.05 22.9499996185 23.8499996185 23.8499996185 22.9499996185 23.8499992371 24.7499992371 24.7499992371 23.8499992371 24.7500007629 25.6500007629 25.6500007629 24.7500007629 25.6500003815 26.5500003815 26.5500003815 25.6500003815 26.55 27.45 27.45 26.55 27.4499996185 28.3499996185 28.3499996185 27.4499996185 +28.3499992371 29.2499992371 29.2499992371 28.3499992371 29.2500007629 30.1500007629 30.1500007629 29.2500007629 30.1500003815 31.0500003815 31.0500003815 30.1500003815 31.05 31.95 31.95 31.05 31.9500015259 32.8500015259 32.8500015259 31.9500015259 32.8499992371 33.7499992371 33.7499992371 32.8499992371 33.7500007629 34.6500007629 34.6500007629 33.7500007629 34.6499984741 35.5499984741 35.5499984741 34.6499984741 35.55 36.45 36.45 35.55 36.4500015259 37.3500015259 37.3500015259 36.4500015259 37.3499992371 38.2499992371 38.2499992371 37.3499992371 38.2500007629 39.1500007629 39.1500007629 38.2500007629 39.1499984741 40.0499984741 40.0499984741 39.1499984741 40.05 40.95 40.95 40.05 40.9500015259 41.8500015259 41.8500015259 40.9500015259 41.8499992371 42.7499992371 42.7499992371 41.8499992371 42.7500007629 43.6500007629 43.6500007629 42.7500007629 43.6499984741 44.5499984741 44.5499984741 43.6499984741 44.55 45.45 45.45 44.55 45.4500015259 46.3500015259 46.3500015259 45.4500015259 46.3499992371 47.2499992371 47.2499992371 46.3499992371 47.2500007629 48.1500007629 48.1500007629 47.2500007629 48.1499984741 49.0499984741 49.0499984741 48.1499984741 49.05 49.95 49.95 49.05 49.9500015259 50.8500015259 50.8500015259 49.9500015259 50.8499992371 51.7499992371 51.7499992371 50.8499992371 51.7500007629 52.6500007629 52.6500007629 51.7500007629 52.6499984741 53.5499984741 53.5499984741 52.6499984741 53.55 54.45 54.45 53.55 54.4500015259 55.3500015259 55.3500015259 54.4500015259 55.3499992371 56.2499992371 56.2499992371 55.3499992371 56.2500007629 57.1500007629 57.1500007629 56.2500007629 57.1499984741 58.0499984741 58.0499984741 57.1499984741 58.05 58.95 58.95 58.05 58.9500015259 59.8500015259 59.8500015259 58.9500015259 59.8499992371 60.7499992371 60.7499992371 59.8499992371 60.7500007629 61.6500007629 61.6500007629 60.7500007629 61.6499984741 62.5499984741 62.5499984741 61.6499984741 62.55 63.45 63.45 62.55 63.4500015259 64.3500015259 64.3500015259 63.4500015259 64.3500030518 65.2500030518 65.2500030518 64.3500030518 65.2499969482 66.1499969482 66.1499969482 65.2499969482 66.1499984741 67.0499984741 67.0499984741 66.1499984741 67.05 67.95 67.95 67.05 67.9500015259 68.8500015259 68.8500015259 67.9500015259 68.8500030518 69.7500030518 69.7500030518 68.8500030518 69.7499969482 70.6499969482 70.6499969482 69.7499969482 70.6499984741 71.5499984741 71.5499984741 70.6499984741 71.55 72.45 72.45 71.55 72.4500015259 73.3500015259 73.3500015259 72.4500015259 73.3500030518 74.2500030518 74.2500030518 73.3500030518 74.2499969482 75.1499969482 75.1499969482 74.2499969482 75.1499984741 76.0499984741 76.0499984741 75.1499984741 76.05 76.95 76.95 76.05 76.9500015259 77.8500015259 77.8500015259 76.9500015259 77.8500030518 78.7500030518 78.7500030518 77.8500030518 78.7499969482 79.6499969482 79.6499969482 78.7499969482 79.6499984741 80.5499984741 80.5499984741 79.6499984741 80.55 81.45 81.45 80.55 81.4500015259 82.3500015259 82.3500015259 81.4500015259 82.3500030518 83.2500030518 83.2500030518 82.3500030518 83.2499969482 84.1499969482 84.1499969482 83.2499969482 84.1499984741 85.0499984741 85.0499984741 84.1499984741 85.05 85.95 85.95 85.05 85.9500015259 86.8500015259 86.8500015259 85.9500015259 86.8500030518 87.7500030518 87.7500030518 86.8500030518 87.7499969482 88.6499969482 88.6499969482 87.7499969482 88.6499984741 89.5499984741 89.5499984741 88.6499984741 89.55 90.45 90.45 89.55 90.4500015259 91.3500015259 91.3500015259 90.4500015259 91.3500030518 92.2500030518 92.2500030518 91.3500030518 92.2499969482 93.1499969482 93.1499969482 92.2499969482 93.1499984741 94.0499984741 94.0499984741 93.1499984741 94.05 94.95 94.95 94.05 94.9500015259 95.8500015259 95.8500015259 94.9500015259 95.8500030518 96.7500030518 96.7500030518 95.8500030518 96.7499969482 97.6499969482 97.6499969482 96.7499969482 97.6499984741 98.5499984741 98.5499984741 97.6499984741 98.55 99.45 99.45 98.55 99.4500015259 100.350001526 100.350001526 99.4500015259 100.350003052 101.250003052 101.250003052 100.350003052 101.249996948 102.149996948 102.149996948 101.249996948 102.149998474 103.049998474 103.049998474 102.149998474 103.05 103.95 103.95 103.05 103.950001526 104.850001526 104.850001526 103.950001526 104.850003052 105.750003052 105.750003052 104.850003052 105.749996948 106.649996948 106.649996948 105.749996948 106.649998474 107.549998474 107.549998474 106.649998474 107.55 108.45 108.45 107.55 108.450001526 109.350001526 109.350001526 108.450001526 109.350003052 110.250003052 110.250003052 109.350003052 110.249996948 111.149996948 111.149996948 110.249996948 111.149998474 112.049998474 112.049998474 111.149998474 112.05 112.95 112.95 112.05 112.950001526 113.850001526 113.850001526 112.950001526 113.850003052 114.750003052 114.750003052 113.850003052 114.749996948 115.649996948 115.649996948 114.749996948 115.649998474 116.549998474 116.549998474 115.649998474 116.55 117.45 117.45 116.55 117.450001526 118.350001526 118.350001526 117.450001526 118.350003052 119.250003052 119.250003052 118.350003052 119.249996948 120.149996948 120.149996948 119.249996948 120.149998474 121.049998474 121.049998474 120.149998474 121.05 121.95 121.95 121.05 121.950001526 122.850001526 122.850001526 121.950001526 122.850003052 123.750003052 123.750003052 122.850003052 123.749996948 124.649996948 124.649996948 123.749996948 124.649998474 125.549998474 125.549998474 124.649998474 125.55 126.45 126.45 125.55 126.450001526 127.350001526 127.350001526 126.450001526 127.350003052 128.250003052 128.250003052 127.350003052 128.249996948 129.149996948 129.149996948 128.249996948 129.150006104 130.050006104 130.050006104 129.150006104 130.05 130.95 130.95 130.05 130.949993896 131.849993896 131.849993896 130.949993896 131.850003052 132.750003052 132.750003052 131.850003052 132.749996948 133.649996948 133.649996948 132.749996948 133.650006104 134.550006104 134.550006104 133.650006104 134.55 135.45 135.45 134.55 135.449993896 136.349993896 136.349993896 135.449993896 136.350003052 137.250003052 137.250003052 136.350003052 137.249996948 138.149996948 138.149996948 137.249996948 138.150006104 139.050006104 139.050006104 138.150006104 139.05 139.95 139.95 139.05 139.949993896 140.849993896 140.849993896 139.949993896 140.850003052 141.750003052 141.750003052 140.850003052 141.749996948 142.649996948 142.649996948 141.749996948 142.650006104 143.550006104 143.550006104 142.650006104 143.55 144.45 144.45 143.55 144.449993896 145.349993896 145.349993896 144.449993896 145.350003052 146.250003052 146.250003052 145.350003052 146.249996948 147.149996948 147.149996948 146.249996948 147.150006104 148.050006104 148.050006104 147.150006104 148.05 148.95 148.95 148.05 148.949993896 149.849993896 149.849993896 148.949993896 149.850003052 150.750003052 150.750003052 149.850003052 150.749996948 151.649996948 151.649996948 150.749996948 151.650006104 152.550006104 152.550006104 151.650006104 152.55 153.45 153.45 152.55 153.449993896 154.349993896 154.349993896 153.449993896 154.350003052 155.250003052 155.250003052 154.350003052 155.249996948 156.149996948 156.149996948 155.249996948 156.150006104 157.050006104 157.050006104 156.150006104 157.05 157.95 157.95 157.05 157.949993896 158.849993896 158.849993896 157.949993896 158.850003052 159.750003052 159.750003052 158.850003052 159.749996948 160.649996948 160.649996948 159.749996948 160.650006104 161.550006104 161.550006104 160.650006104 161.55 162.45 162.45 161.55 162.449993896 163.349993896 163.349993896 162.449993896 163.350003052 164.250003052 164.250003052 163.350003052 164.249996948 165.149996948 165.149996948 164.249996948 165.150006104 166.050006104 166.050006104 165.150006104 166.05 166.95 166.95 166.05 166.949993896 167.849993896 167.849993896 166.949993896 167.850003052 168.750003052 168.750003052 167.850003052 168.749996948 169.649996948 169.649996948 168.749996948 169.650006104 170.550006104 170.550006104 169.650006104 170.55 171.45 171.45 170.55 171.449993896 172.349993896 172.349993896 171.449993896 172.350003052 173.250003052 173.250003052 172.350003052 173.249996948 174.149996948 174.149996948 173.249996948 174.150006104 175.050006104 175.050006104 174.150006104 175.05 175.95 175.95 175.05 175.949993896 176.849993896 176.849993896 175.949993896 176.850003052 177.750003052 177.750003052 176.850003052 177.749996948 178.649996948 178.649996948 177.749996948 178.650006104 179.550006104 179.550006104 178.650006104 179.55 180.45 180.45 179.55 180.449993896 181.349993896 181.349993896 180.449993896 181.350003052 182.250003052 182.250003052 181.350003052 182.249996948 183.149996948 183.149996948 182.249996948 183.150006104 184.050006104 184.050006104 183.150006104 184.05 184.95 184.95 184.05 184.949993896 185.849993896 185.849993896 184.949993896 185.850003052 186.750003052 186.750003052 185.850003052 186.749996948 187.649996948 187.649996948 186.749996948 187.650006104 188.550006104 188.550006104 187.650006104 188.55 189.45 189.45 188.55 189.449993896 190.349993896 190.349993896 189.449993896 190.350003052 191.250003052 191.250003052 190.350003052 191.249996948 192.149996948 192.149996948 191.249996948 192.150006104 193.050006104 193.050006104 192.150006104 193.05 193.95 193.95 193.05 193.949993896 194.849993896 194.849993896 193.949993896 194.850003052 195.750003052 195.750003052 194.850003052 195.749996948 196.649996948 196.649996948 195.749996948 196.650006104 197.550006104 197.550006104 196.650006104 197.55 198.45 198.45 197.55 198.449993896 199.349993896 199.349993896 198.449993896 199.350003052 200.250003052 200.250003052 199.350003052 200.249996948 201.149996948 201.149996948 200.249996948 201.150006104 202.050006104 202.050006104 201.150006104 202.05 202.95 202.95 202.05 202.949993896 203.849993896 203.849993896 202.949993896 203.850003052 204.750003052 204.750003052 203.850003052 204.749996948 205.649996948 205.649996948 204.749996948 205.650006104 206.550006104 206.550006104 205.650006104 206.55 207.45 207.45 206.55 207.449993896 208.349993896 208.349993896 207.449993896 208.350003052 209.250003052 209.250003052 208.350003052 209.249996948 210.149996948 210.149996948 209.249996948 210.150006104 211.050006104 211.050006104 210.150006104 211.05 211.95 211.95 211.05 211.949993896 212.849993896 212.849993896 211.949993896 212.850003052 213.750003052 213.750003052 212.850003052 213.749996948 214.649996948 214.649996948 213.749996948 214.650006104 215.550006104 215.550006104 214.650006104 215.55 216.45 216.45 215.55 216.449993896 217.349993896 217.349993896 216.449993896 217.350003052 218.250003052 218.250003052 217.350003052 218.249996948 219.149996948 219.149996948 218.249996948 219.150006104 220.050006104 220.050006104 219.150006104 220.05 220.95 220.95 220.05 220.949993896 221.849993896 221.849993896 220.949993896 221.850003052 222.750003052 222.750003052 221.850003052 222.749996948 223.649996948 223.649996948 222.749996948 223.650006104 224.550006104 224.550006104 223.650006104 224.55 225.45 225.45 224.55 225.449993896 226.349993896 226.349993896 225.449993896 226.350003052 227.250003052 227.250003052 226.350003052 227.249996948 228.149996948 228.149996948 227.249996948 228.150006104 229.050006104 229.050006104 228.150006104 229.05 229.95 229.95 229.05 229.949993896 230.849993896 230.849993896 229.949993896 230.850003052 231.750003052 231.750003052 230.850003052 231.749996948 232.649996948 232.649996948 231.749996948 232.650006104 233.550006104 233.550006104 232.650006104 233.55 234.45 234.45 233.55 234.449993896 235.349993896 235.349993896 234.449993896 235.350003052 236.250003052 236.250003052 235.350003052 236.249996948 237.149996948 237.149996948 236.249996948 237.150006104 238.050006104 238.050006104 237.150006104 238.05 238.95 238.95 238.05 238.949993896 239.849993896 239.849993896 238.949993896 239.850003052 240.750003052 240.750003052 239.850003052 240.749996948 241.649996948 241.649996948 240.749996948 241.650006104 242.550006104 242.550006104 241.650006104 242.55 243.45 243.45 242.55 243.449993896 244.349993896 244.349993896 243.449993896 244.350003052 245.250003052 245.250003052 244.350003052 245.249996948 246.149996948 246.149996948 245.249996948 246.150006104 247.050006104 247.050006104 246.150006104 247.05 247.95 247.95 247.05 247.949993896 248.849993896 248.849993896 247.949993896 248.850003052 249.750003052 249.750003052 248.850003052 249.749996948 250.649996948 250.649996948 249.749996948 250.650006104 251.550006104 251.550006104 250.650006104 251.55 252.45 252.45 251.55 252.449993896 253.349993896 253.349993896 252.449993896 253.350003052 254.250003052 254.250003052 253.350003052 254.249996948 255.149996948 255.149996948 254.249996948 255.150006104 256.050006104 256.050006104 255.150006104 256.05 256.95 256.95 256.05 256.949993896 257.849993896 257.849993896 256.949993896 257.849987793 258.749987793 258.749987793 257.849987793 258.750012207 259.650012207 259.650012207 258.750012207 259.650006104 260.550006104 260.550006104 259.650006104 260.55 261.45 261.45 260.55 261.449993896 262.349993896 262.349993896 261.449993896 262.349987793 263.249987793 263.249987793 262.349987793 263.250012207 264.150012207 264.150012207 263.250012207 264.150006104 265.050006104 265.050006104 264.150006104 265.05 265.95 265.95 265.05 265.949993896 266.849993896 266.849993896 265.949993896 266.849987793 267.749987793 267.749987793 266.849987793 267.750012207 268.650012207 268.650012207 267.750012207 268.650006104 269.550006104 269.550006104 268.650006104 269.55 270.45 270.45 269.55 270.449993896 271.349993896 271.349993896 270.449993896 271.349987793 272.249987793 272.249987793 271.349987793 272.250012207 273.150012207 273.150012207 272.250012207 273.150006104 274.050006104 274.050006104 273.150006104 274.05 274.95 274.95 274.05 274.949993896 275.849993896 275.849993896 274.949993896 275.849987793 276.749987793 276.749987793 275.849987793 276.750012207 277.650012207 277.650012207 276.750012207 277.650006104 278.550006104 278.550006104 277.650006104 278.55 279.45 279.45 278.55 279.449993896 280.349993896 280.349993896 279.449993896 280.349987793 281.249987793 281.249987793 280.349987793 281.250012207 282.150012207 282.150012207 281.250012207 282.150006104 283.050006104 283.050006104 282.150006104 283.05 283.95 283.95 283.05 283.949993896 284.849993896 284.849993896 283.949993896 284.849987793 285.749987793 285.749987793 284.849987793 285.750012207 286.650012207 286.650012207 285.750012207 286.650006104 287.550006104 287.550006104 286.650006104 287.55 288.45 288.45 287.55 288.449993896 289.349993896 289.349993896 288.449993896 289.349987793 290.249987793 290.249987793 289.349987793 290.250012207 291.150012207 291.150012207 290.250012207 291.150006104 292.050006104 292.050006104 291.150006104 292.05 292.95 292.95 292.05 292.949993896 293.849993896 293.849993896 292.949993896 293.849987793 294.749987793 294.749987793 293.849987793 294.750012207 295.650012207 295.650012207 294.750012207 295.650006104 296.550006104 296.550006104 295.650006104 296.55 297.45 297.45 296.55 297.449993896 298.349993896 298.349993896 297.449993896 298.349987793 299.249987793 299.249987793 298.349987793 299.250012207 300.150012207 300.150012207 299.250012207 300.150006104 301.050006104 301.050006104 300.150006104 301.05 301.95 301.95 301.05 301.949993896 302.849993896 302.849993896 301.949993896 302.849987793 303.749987793 303.749987793 302.849987793 303.750012207 304.650012207 304.650012207 303.750012207 304.650006104 305.550006104 305.550006104 304.650006104 305.55 306.45 306.45 305.55 306.449993896 307.349993896 307.349993896 306.449993896 307.349987793 308.249987793 308.249987793 307.349987793 308.250012207 309.150012207 309.150012207 308.250012207 309.150006104 310.050006104 310.050006104 309.150006104 310.05 310.95 310.95 310.05 310.949993896 311.849993896 311.849993896 310.949993896 311.849987793 312.749987793 312.749987793 311.849987793 312.750012207 313.650012207 313.650012207 312.750012207 313.650006104 314.550006104 314.550006104 313.650006104 314.55 315.45 315.45 314.55 315.449993896 316.349993896 316.349993896 315.449993896 316.349987793 317.249987793 317.249987793 316.349987793 317.250012207 318.150012207 318.150012207 317.250012207 318.150006104 319.050006104 319.050006104 318.150006104 319.05 319.95 319.95 319.05 319.949993896 320.849993896 320.849993896 319.949993896 320.849987793 321.749987793 321.749987793 320.849987793 321.750012207 322.650012207 322.650012207 321.750012207 322.650006104 323.550006104 323.550006104 322.650006104 323.55 324.45 324.45 323.55 324.449993896 325.349993896 325.349993896 324.449993896 325.349987793 326.249987793 326.249987793 325.349987793 326.250012207 327.150012207 327.150012207 326.250012207 327.150006104 328.050006104 328.050006104 327.150006104 328.05 328.95 328.95 328.05 328.949993896 329.849993896 329.849993896 328.949993896 329.849987793 330.749987793 330.749987793 329.849987793 330.750012207 331.650012207 331.650012207 330.750012207 331.650006104 332.550006104 332.550006104 331.650006104 332.55 333.45 333.45 332.55 333.449993896 334.349993896 334.349993896 333.449993896 334.349987793 335.249987793 335.249987793 334.349987793 335.250012207 336.150012207 336.150012207 335.250012207 336.150006104 337.050006104 337.050006104 336.150006104 337.05 337.95 337.95 337.05 337.949993896 338.849993896 338.849993896 337.949993896 338.849987793 339.749987793 339.749987793 338.849987793 339.750012207 340.650012207 340.650012207 339.750012207 340.650006104 341.550006104 341.550006104 340.650006104 341.55 342.45 342.45 341.55 342.449993896 343.349993896 343.349993896 342.449993896 343.349987793 344.249987793 344.249987793 343.349987793 344.250012207 345.150012207 345.150012207 344.250012207 345.150006104 346.050006104 346.050006104 345.150006104 346.05 346.95 346.95 346.05 346.949993896 347.849993896 347.849993896 346.949993896 347.849987793 348.749987793 348.749987793 347.849987793 348.750012207 349.650012207 349.650012207 348.750012207 349.650006104 350.550006104 350.550006104 349.650006104 350.55 351.45 351.45 350.55 351.449993896 352.349993896 352.349993896 351.449993896 352.349987793 353.249987793 353.249987793 352.349987793 353.250012207 354.150012207 354.150012207 353.250012207 354.150006104 355.050006104 355.050006104 354.150006104 355.05 355.95 355.95 355.05 355.949993896 356.849993896 356.849993896 355.949993896 356.849987793 357.749987793 357.749987793 356.849987793 357.750012207 358.650012207 358.650012207 357.750012207 358.650006104 359.550006104 359.550006104 358.650006104 -0.45 0.45 0.45 -0.45 0.449999976158 1.34999997616 1.34999997616 0.449999976158 1.34999995232 2.24999995232 2.24999995232 1.34999995232 2.25000004768 3.15000004768 3.15000004768 2.25000004768 3.14999990463 4.04999990463 4.04999990463 3.14999990463 4.05 4.95 4.95 4.05 4.95000009537 5.85000009537 5.85000009537 4.95000009537 5.85000019073 6.75000019073 6.75000019073 5.85000019073 6.74999980927 7.64999980927 7.64999980927 6.74999980927 7.65000038147 8.55000038147 8.55000038147 7.65000038147 8.55 9.45 9.45 8.55 9.44999961853 10.3499996185 10.3499996185 9.44999961853 10.3500001907 11.2500001907 11.2500001907 10.3500001907 11.2499998093 12.1499998093 12.1499998093 11.2499998093 12.1500003815 13.0500003815 13.0500003815 12.1500003815 13.05 13.95 13.95 13.05 13.9499996185 14.8499996185 14.8499996185 13.9499996185 14.8500001907 15.7500001907 15.7500001907 14.8500001907 15.7500007629 16.6500007629 16.6500007629 15.7500007629 16.6500003815 17.5500003815 17.5500003815 16.6500003815 17.55 18.45 18.45 17.55 18.4499996185 19.3499996185 19.3499996185 18.4499996185 19.3499992371 20.2499992371 20.2499992371 19.3499992371 20.2500007629 21.1500007629 21.1500007629 20.2500007629 21.1500003815 22.0500003815 22.0500003815 21.1500003815 22.05 22.95 22.95 22.05 22.9499996185 23.8499996185 23.8499996185 22.9499996185 23.8499992371 24.7499992371 24.7499992371 23.8499992371 24.7500007629 25.6500007629 25.6500007629 24.7500007629 25.6500003815 26.5500003815 26.5500003815 25.6500003815 26.55 27.45 27.45 26.55 27.4499996185 28.3499996185 28.3499996185 27.4499996185 28.3499992371 29.2499992371 29.2499992371 28.3499992371 29.2500007629 30.1500007629 30.1500007629 29.2500007629 30.1500003815 31.0500003815 31.0500003815 30.1500003815 31.05 31.95 31.95 31.05 31.9500015259 32.8500015259 32.8500015259 31.9500015259 32.8499992371 33.7499992371 33.7499992371 32.8499992371 33.7500007629 34.6500007629 34.6500007629 33.7500007629 34.6499984741 35.5499984741 35.5499984741 34.6499984741 35.55 36.45 36.45 35.55 36.4500015259 37.3500015259 37.3500015259 36.4500015259 37.3499992371 38.2499992371 38.2499992371 37.3499992371 38.2500007629 39.1500007629 39.1500007629 38.2500007629 39.1499984741 40.0499984741 40.0499984741 39.1499984741 40.05 40.95 40.95 40.05 40.9500015259 41.8500015259 41.8500015259 40.9500015259 41.8499992371 42.7499992371 42.7499992371 41.8499992371 42.7500007629 43.6500007629 43.6500007629 42.7500007629 43.6499984741 44.5499984741 44.5499984741 43.6499984741 44.55 45.45 45.45 44.55 45.4500015259 46.3500015259 46.3500015259 45.4500015259 46.3499992371 47.2499992371 47.2499992371 46.3499992371 47.2500007629 48.1500007629 48.1500007629 47.2500007629 48.1499984741 49.0499984741 49.0499984741 48.1499984741 49.05 49.95 49.95 49.05 49.9500015259 50.8500015259 50.8500015259 49.9500015259 50.8499992371 51.7499992371 51.7499992371 50.8499992371 51.7500007629 52.6500007629 52.6500007629 51.7500007629 52.6499984741 53.5499984741 53.5499984741 52.6499984741 53.55 54.45 54.45 53.55 54.4500015259 55.3500015259 55.3500015259 54.4500015259 55.3499992371 56.2499992371 56.2499992371 55.3499992371 56.2500007629 57.1500007629 57.1500007629 56.2500007629 57.1499984741 58.0499984741 58.0499984741 57.1499984741 58.05 58.95 58.95 58.05 58.9500015259 59.8500015259 59.8500015259 58.9500015259 59.8499992371 60.7499992371 60.7499992371 59.8499992371 60.7500007629 61.6500007629 61.6500007629 60.7500007629 61.6499984741 62.5499984741 62.5499984741 61.6499984741 62.55 63.45 63.45 62.55 63.4500015259 64.3500015259 64.3500015259 63.4500015259 64.3500030518 65.2500030518 65.2500030518 64.3500030518 65.2499969482 66.1499969482 66.1499969482 65.2499969482 66.1499984741 67.0499984741 67.0499984741 66.1499984741 67.05 67.95 67.95 67.05 67.9500015259 68.8500015259 68.8500015259 67.9500015259 68.8500030518 69.7500030518 69.7500030518 68.8500030518 69.7499969482 70.6499969482 70.6499969482 69.7499969482 70.6499984741 71.5499984741 71.5499984741 70.6499984741 71.55 72.45 72.45 71.55 72.4500015259 73.3500015259 73.3500015259 72.4500015259 73.3500030518 74.2500030518 74.2500030518 73.3500030518 74.2499969482 75.1499969482 75.1499969482 74.2499969482 75.1499984741 76.0499984741 76.0499984741 75.1499984741 76.05 76.95 76.95 76.05 76.9500015259 77.8500015259 77.8500015259 76.9500015259 77.8500030518 78.7500030518 78.7500030518 77.8500030518 78.7499969482 79.6499969482 79.6499969482 78.7499969482 79.6499984741 80.5499984741 80.5499984741 79.6499984741 80.55 81.45 81.45 80.55 81.4500015259 82.3500015259 82.3500015259 81.4500015259 82.3500030518 83.2500030518 83.2500030518 82.3500030518 83.2499969482 84.1499969482 84.1499969482 83.2499969482 84.1499984741 85.0499984741 85.0499984741 84.1499984741 85.05 85.95 85.95 85.05 85.9500015259 86.8500015259 86.8500015259 85.9500015259 86.8500030518 87.7500030518 87.7500030518 86.8500030518 87.7499969482 88.6499969482 88.6499969482 87.7499969482 88.6499984741 89.5499984741 89.5499984741 88.6499984741 89.55 90.45 90.45 89.55 90.4500015259 91.3500015259 91.3500015259 90.4500015259 91.3500030518 92.2500030518 92.2500030518 91.3500030518 92.2499969482 93.1499969482 93.1499969482 92.2499969482 93.1499984741 94.0499984741 94.0499984741 93.1499984741 94.05 94.95 94.95 94.05 94.9500015259 95.8500015259 95.8500015259 94.9500015259 95.8500030518 96.7500030518 96.7500030518 95.8500030518 96.7499969482 97.6499969482 97.6499969482 96.7499969482 97.6499984741 98.5499984741 98.5499984741 97.6499984741 98.55 99.45 99.45 98.55 99.4500015259 100.350001526 100.350001526 99.4500015259 100.350003052 101.250003052 101.250003052 100.350003052 101.249996948 102.149996948 102.149996948 101.249996948 102.149998474 103.049998474 103.049998474 102.149998474 103.05 103.95 103.95 103.05 103.950001526 104.850001526 104.850001526 103.950001526 104.850003052 105.750003052 105.750003052 104.850003052 105.749996948 106.649996948 106.649996948 105.749996948 106.649998474 107.549998474 107.549998474 106.649998474 107.55 108.45 108.45 107.55 108.450001526 109.350001526 109.350001526 108.450001526 109.350003052 110.250003052 110.250003052 109.350003052 110.249996948 111.149996948 111.149996948 110.249996948 111.149998474 112.049998474 112.049998474 111.149998474 112.05 112.95 112.95 112.05 112.950001526 113.850001526 113.850001526 112.950001526 113.850003052 114.750003052 114.750003052 113.850003052 114.749996948 115.649996948 115.649996948 114.749996948 115.649998474 116.549998474 116.549998474 115.649998474 116.55 117.45 117.45 116.55 117.450001526 118.350001526 118.350001526 117.450001526 +118.350003052 119.250003052 119.250003052 118.350003052 119.249996948 120.149996948 120.149996948 119.249996948 120.149998474 121.049998474 121.049998474 120.149998474 121.05 121.95 121.95 121.05 121.950001526 122.850001526 122.850001526 121.950001526 122.850003052 123.750003052 123.750003052 122.850003052 123.749996948 124.649996948 124.649996948 123.749996948 124.649998474 125.549998474 125.549998474 124.649998474 125.55 126.45 126.45 125.55 126.450001526 127.350001526 127.350001526 126.450001526 127.350003052 128.250003052 128.250003052 127.350003052 128.249996948 129.149996948 129.149996948 128.249996948 129.150006104 130.050006104 130.050006104 129.150006104 130.05 130.95 130.95 130.05 130.949993896 131.849993896 131.849993896 130.949993896 131.850003052 132.750003052 132.750003052 131.850003052 132.749996948 133.649996948 133.649996948 132.749996948 133.650006104 134.550006104 134.550006104 133.650006104 134.55 135.45 135.45 134.55 135.449993896 136.349993896 136.349993896 135.449993896 136.350003052 137.250003052 137.250003052 136.350003052 137.249996948 138.149996948 138.149996948 137.249996948 138.150006104 139.050006104 139.050006104 138.150006104 139.05 139.95 139.95 139.05 139.949993896 140.849993896 140.849993896 139.949993896 140.850003052 141.750003052 141.750003052 140.850003052 141.749996948 142.649996948 142.649996948 141.749996948 142.650006104 143.550006104 143.550006104 142.650006104 143.55 144.45 144.45 143.55 144.449993896 145.349993896 145.349993896 144.449993896 145.350003052 146.250003052 146.250003052 145.350003052 146.249996948 147.149996948 147.149996948 146.249996948 147.150006104 148.050006104 148.050006104 147.150006104 148.05 148.95 148.95 148.05 148.949993896 149.849993896 149.849993896 148.949993896 149.850003052 150.750003052 150.750003052 149.850003052 150.749996948 151.649996948 151.649996948 150.749996948 151.650006104 152.550006104 152.550006104 151.650006104 152.55 153.45 153.45 152.55 153.449993896 154.349993896 154.349993896 153.449993896 154.350003052 155.250003052 155.250003052 154.350003052 155.249996948 156.149996948 156.149996948 155.249996948 156.150006104 157.050006104 157.050006104 156.150006104 157.05 157.95 157.95 157.05 157.949993896 158.849993896 158.849993896 157.949993896 158.850003052 159.750003052 159.750003052 158.850003052 159.749996948 160.649996948 160.649996948 159.749996948 160.650006104 161.550006104 161.550006104 160.650006104 161.55 162.45 162.45 161.55 162.449993896 163.349993896 163.349993896 162.449993896 163.350003052 164.250003052 164.250003052 163.350003052 164.249996948 165.149996948 165.149996948 164.249996948 165.150006104 166.050006104 166.050006104 165.150006104 166.05 166.95 166.95 166.05 166.949993896 167.849993896 167.849993896 166.949993896 167.850003052 168.750003052 168.750003052 167.850003052 168.749996948 169.649996948 169.649996948 168.749996948 169.650006104 170.550006104 170.550006104 169.650006104 170.55 171.45 171.45 170.55 171.449993896 172.349993896 172.349993896 171.449993896 172.350003052 173.250003052 173.250003052 172.350003052 173.249996948 174.149996948 174.149996948 173.249996948 174.150006104 175.050006104 175.050006104 174.150006104 175.05 175.95 175.95 175.05 175.949993896 176.849993896 176.849993896 175.949993896 176.850003052 177.750003052 177.750003052 176.850003052 177.749996948 178.649996948 178.649996948 177.749996948 178.650006104 179.550006104 179.550006104 178.650006104 179.55 180.45 180.45 179.55 180.449993896 181.349993896 181.349993896 180.449993896 181.350003052 182.250003052 182.250003052 181.350003052 182.249996948 183.149996948 183.149996948 182.249996948 183.150006104 184.050006104 184.050006104 183.150006104 184.05 184.95 184.95 184.05 184.949993896 185.849993896 185.849993896 184.949993896 185.850003052 186.750003052 186.750003052 185.850003052 186.749996948 187.649996948 187.649996948 186.749996948 187.650006104 188.550006104 188.550006104 187.650006104 188.55 189.45 189.45 188.55 189.449993896 190.349993896 190.349993896 189.449993896 190.350003052 191.250003052 191.250003052 190.350003052 191.249996948 192.149996948 192.149996948 191.249996948 192.150006104 193.050006104 193.050006104 192.150006104 193.05 193.95 193.95 193.05 193.949993896 194.849993896 194.849993896 193.949993896 194.850003052 195.750003052 195.750003052 194.850003052 195.749996948 196.649996948 196.649996948 195.749996948 196.650006104 197.550006104 197.550006104 196.650006104 197.55 198.45 198.45 197.55 198.449993896 199.349993896 199.349993896 198.449993896 199.350003052 200.250003052 200.250003052 199.350003052 200.249996948 201.149996948 201.149996948 200.249996948 201.150006104 202.050006104 202.050006104 201.150006104 202.05 202.95 202.95 202.05 202.949993896 203.849993896 203.849993896 202.949993896 203.850003052 204.750003052 204.750003052 203.850003052 204.749996948 205.649996948 205.649996948 204.749996948 205.650006104 206.550006104 206.550006104 205.650006104 206.55 207.45 207.45 206.55 207.449993896 208.349993896 208.349993896 207.449993896 208.350003052 209.250003052 209.250003052 208.350003052 209.249996948 210.149996948 210.149996948 209.249996948 210.150006104 211.050006104 211.050006104 210.150006104 211.05 211.95 211.95 211.05 211.949993896 212.849993896 212.849993896 211.949993896 212.850003052 213.750003052 213.750003052 212.850003052 213.749996948 214.649996948 214.649996948 213.749996948 214.650006104 215.550006104 215.550006104 214.650006104 215.55 216.45 216.45 215.55 216.449993896 217.349993896 217.349993896 216.449993896 217.350003052 218.250003052 218.250003052 217.350003052 218.249996948 219.149996948 219.149996948 218.249996948 219.150006104 220.050006104 220.050006104 219.150006104 220.05 220.95 220.95 220.05 220.949993896 221.849993896 221.849993896 220.949993896 221.850003052 222.750003052 222.750003052 221.850003052 222.749996948 223.649996948 223.649996948 222.749996948 223.650006104 224.550006104 224.550006104 223.650006104 224.55 225.45 225.45 224.55 225.449993896 226.349993896 226.349993896 225.449993896 226.350003052 227.250003052 227.250003052 226.350003052 227.249996948 228.149996948 228.149996948 227.249996948 228.150006104 229.050006104 229.050006104 228.150006104 229.05 229.95 229.95 229.05 229.949993896 230.849993896 230.849993896 229.949993896 230.850003052 231.750003052 231.750003052 230.850003052 231.749996948 232.649996948 232.649996948 231.749996948 232.650006104 233.550006104 233.550006104 232.650006104 233.55 234.45 234.45 233.55 234.449993896 235.349993896 235.349993896 234.449993896 235.350003052 236.250003052 236.250003052 235.350003052 236.249996948 237.149996948 237.149996948 236.249996948 237.150006104 238.050006104 238.050006104 237.150006104 238.05 238.95 238.95 238.05 238.949993896 239.849993896 239.849993896 238.949993896 239.850003052 240.750003052 240.750003052 239.850003052 240.749996948 241.649996948 241.649996948 240.749996948 241.650006104 242.550006104 242.550006104 241.650006104 242.55 243.45 243.45 242.55 243.449993896 244.349993896 244.349993896 243.449993896 244.350003052 245.250003052 245.250003052 244.350003052 245.249996948 246.149996948 246.149996948 245.249996948 246.150006104 247.050006104 247.050006104 246.150006104 247.05 247.95 247.95 247.05 247.949993896 248.849993896 248.849993896 247.949993896 248.850003052 249.750003052 249.750003052 248.850003052 249.749996948 250.649996948 250.649996948 249.749996948 250.650006104 251.550006104 251.550006104 250.650006104 251.55 252.45 252.45 251.55 252.449993896 253.349993896 253.349993896 252.449993896 253.350003052 254.250003052 254.250003052 253.350003052 254.249996948 255.149996948 255.149996948 254.249996948 255.150006104 256.050006104 256.050006104 255.150006104 256.05 256.95 256.95 256.05 256.949993896 257.849993896 257.849993896 256.949993896 257.849987793 258.749987793 258.749987793 257.849987793 258.750012207 259.650012207 259.650012207 258.750012207 259.650006104 260.550006104 260.550006104 259.650006104 260.55 261.45 261.45 260.55 261.449993896 262.349993896 262.349993896 261.449993896 262.349987793 263.249987793 263.249987793 262.349987793 263.250012207 264.150012207 264.150012207 263.250012207 264.150006104 265.050006104 265.050006104 264.150006104 265.05 265.95 265.95 265.05 265.949993896 266.849993896 266.849993896 265.949993896 266.849987793 267.749987793 267.749987793 266.849987793 267.750012207 268.650012207 268.650012207 267.750012207 268.650006104 269.550006104 269.550006104 268.650006104 269.55 270.45 270.45 269.55 270.449993896 271.349993896 271.349993896 270.449993896 271.349987793 272.249987793 272.249987793 271.349987793 272.250012207 273.150012207 273.150012207 272.250012207 273.150006104 274.050006104 274.050006104 273.150006104 274.05 274.95 274.95 274.05 274.949993896 275.849993896 275.849993896 274.949993896 275.849987793 276.749987793 276.749987793 275.849987793 276.750012207 277.650012207 277.650012207 276.750012207 277.650006104 278.550006104 278.550006104 277.650006104 278.55 279.45 279.45 278.55 279.449993896 280.349993896 280.349993896 279.449993896 280.349987793 281.249987793 281.249987793 280.349987793 281.250012207 282.150012207 282.150012207 281.250012207 282.150006104 283.050006104 283.050006104 282.150006104 283.05 283.95 283.95 283.05 283.949993896 284.849993896 284.849993896 283.949993896 284.849987793 285.749987793 285.749987793 284.849987793 285.750012207 286.650012207 286.650012207 285.750012207 286.650006104 287.550006104 287.550006104 286.650006104 287.55 288.45 288.45 287.55 288.449993896 289.349993896 289.349993896 288.449993896 289.349987793 290.249987793 290.249987793 289.349987793 290.250012207 291.150012207 291.150012207 290.250012207 291.150006104 292.050006104 292.050006104 291.150006104 292.05 292.95 292.95 292.05 292.949993896 293.849993896 293.849993896 292.949993896 293.849987793 294.749987793 294.749987793 293.849987793 294.750012207 295.650012207 295.650012207 294.750012207 295.650006104 296.550006104 296.550006104 295.650006104 296.55 297.45 297.45 296.55 297.449993896 298.349993896 298.349993896 297.449993896 298.349987793 299.249987793 299.249987793 298.349987793 299.250012207 300.150012207 300.150012207 299.250012207 300.150006104 301.050006104 301.050006104 300.150006104 301.05 301.95 301.95 301.05 301.949993896 302.849993896 302.849993896 301.949993896 302.849987793 303.749987793 303.749987793 302.849987793 303.750012207 304.650012207 304.650012207 303.750012207 304.650006104 305.550006104 305.550006104 304.650006104 305.55 306.45 306.45 305.55 306.449993896 307.349993896 307.349993896 306.449993896 307.349987793 308.249987793 308.249987793 307.349987793 308.250012207 309.150012207 309.150012207 308.250012207 309.150006104 310.050006104 310.050006104 309.150006104 310.05 310.95 310.95 310.05 310.949993896 311.849993896 311.849993896 310.949993896 311.849987793 312.749987793 312.749987793 311.849987793 312.750012207 313.650012207 313.650012207 312.750012207 313.650006104 314.550006104 314.550006104 313.650006104 314.55 315.45 315.45 314.55 315.449993896 316.349993896 316.349993896 315.449993896 316.349987793 317.249987793 317.249987793 316.349987793 317.250012207 318.150012207 318.150012207 317.250012207 318.150006104 319.050006104 319.050006104 318.150006104 319.05 319.95 319.95 319.05 319.949993896 320.849993896 320.849993896 319.949993896 320.849987793 321.749987793 321.749987793 320.849987793 321.750012207 322.650012207 322.650012207 321.750012207 322.650006104 323.550006104 323.550006104 322.650006104 323.55 324.45 324.45 323.55 324.449993896 325.349993896 325.349993896 324.449993896 325.349987793 326.249987793 326.249987793 325.349987793 326.250012207 327.150012207 327.150012207 326.250012207 327.150006104 328.050006104 328.050006104 327.150006104 328.05 328.95 328.95 328.05 328.949993896 329.849993896 329.849993896 328.949993896 329.849987793 330.749987793 330.749987793 329.849987793 330.750012207 331.650012207 331.650012207 330.750012207 331.650006104 332.550006104 332.550006104 331.650006104 332.55 333.45 333.45 332.55 333.449993896 334.349993896 334.349993896 333.449993896 334.349987793 335.249987793 335.249987793 334.349987793 335.250012207 336.150012207 336.150012207 335.250012207 336.150006104 337.050006104 337.050006104 336.150006104 337.05 337.95 337.95 337.05 337.949993896 338.849993896 338.849993896 337.949993896 338.849987793 339.749987793 339.749987793 338.849987793 339.750012207 340.650012207 340.650012207 339.750012207 340.650006104 341.550006104 341.550006104 340.650006104 341.55 342.45 342.45 341.55 342.449993896 343.349993896 343.349993896 342.449993896 343.349987793 344.249987793 344.249987793 343.349987793 344.250012207 345.150012207 345.150012207 344.250012207 345.150006104 346.050006104 346.050006104 345.150006104 346.05 346.95 346.95 346.05 346.949993896 347.849993896 347.849993896 346.949993896 347.849987793 348.749987793 348.749987793 347.849987793 348.750012207 349.650012207 349.650012207 348.750012207 349.650006104 350.550006104 350.550006104 349.650006104 350.55 351.45 351.45 350.55 351.449993896 352.349993896 352.349993896 351.449993896 352.349987793 353.249987793 353.249987793 352.349987793 353.250012207 354.150012207 354.150012207 353.250012207 354.150006104 355.050006104 355.050006104 354.150006104 355.05 355.95 355.95 355.05 355.949993896 356.849993896 356.849993896 355.949993896 356.849987793 357.749987793 357.749987793 356.849987793 357.750012207 358.650012207 358.650012207 357.750012207 358.650006104 359.550006104 359.550006104 358.650006104 -0.46875 0.46875 0.46875 -0.46875 0.46875 1.40625 1.40625 0.46875 1.40625 2.34375 2.34375 1.40625 2.34375 3.28125 3.28125 2.34375 3.28125 4.21875 4.21875 3.28125 4.21875 5.15625 5.15625 4.21875 5.15625 6.09375 6.09375 5.15625 6.09375 7.03125 7.03125 6.09375 7.03125 7.96875 7.96875 7.03125 7.96875 8.90625 8.90625 7.96875 8.90625 9.84375 9.84375 8.90625 9.84375 10.78125 10.78125 9.84375 10.78125 11.71875 11.71875 10.78125 11.71875 12.65625 12.65625 11.71875 12.65625 13.59375 13.59375 12.65625 13.59375 14.53125 14.53125 13.59375 14.53125 15.46875 15.46875 14.53125 15.46875 16.40625 16.40625 15.46875 16.40625 17.34375 17.34375 16.40625 17.34375 18.28125 18.28125 17.34375 18.28125 19.21875 19.21875 18.28125 19.21875 20.15625 20.15625 19.21875 20.15625 21.09375 21.09375 20.15625 21.09375 22.03125 22.03125 21.09375 22.03125 22.96875 22.96875 22.03125 22.96875 23.90625 23.90625 22.96875 23.90625 24.84375 24.84375 23.90625 24.84375 25.78125 25.78125 24.84375 25.78125 26.71875 26.71875 25.78125 26.71875 27.65625 27.65625 26.71875 27.65625 28.59375 28.59375 27.65625 28.59375 29.53125 29.53125 28.59375 29.53125 30.46875 30.46875 29.53125 30.46875 31.40625 31.40625 30.46875 31.40625 32.34375 32.34375 31.40625 32.34375 33.28125 33.28125 32.34375 33.28125 34.21875 34.21875 33.28125 34.21875 35.15625 35.15625 34.21875 35.15625 36.09375 36.09375 35.15625 36.09375 37.03125 37.03125 36.09375 37.03125 37.96875 37.96875 37.03125 37.96875 38.90625 38.90625 37.96875 38.90625 39.84375 39.84375 38.90625 39.84375 40.78125 40.78125 39.84375 40.78125 41.71875 41.71875 40.78125 41.71875 42.65625 42.65625 41.71875 42.65625 43.59375 43.59375 42.65625 43.59375 44.53125 44.53125 43.59375 44.53125 45.46875 45.46875 44.53125 45.46875 46.40625 46.40625 45.46875 46.40625 47.34375 47.34375 46.40625 47.34375 48.28125 48.28125 47.34375 48.28125 49.21875 49.21875 48.28125 49.21875 50.15625 50.15625 49.21875 50.15625 51.09375 51.09375 50.15625 51.09375 52.03125 52.03125 51.09375 52.03125 52.96875 52.96875 52.03125 52.96875 53.90625 53.90625 52.96875 53.90625 54.84375 54.84375 53.90625 54.84375 55.78125 55.78125 54.84375 55.78125 56.71875 56.71875 55.78125 56.71875 57.65625 57.65625 56.71875 57.65625 58.59375 58.59375 57.65625 58.59375 59.53125 59.53125 58.59375 59.53125 60.46875 60.46875 59.53125 60.46875 61.40625 61.40625 60.46875 61.40625 62.34375 62.34375 61.40625 62.34375 63.28125 63.28125 62.34375 63.28125 64.21875 64.21875 63.28125 64.21875 65.15625 65.15625 64.21875 65.15625 66.09375 66.09375 65.15625 66.09375 67.03125 67.03125 66.09375 67.03125 67.96875 67.96875 67.03125 67.96875 68.90625 68.90625 67.96875 68.90625 69.84375 69.84375 68.90625 69.84375 70.78125 70.78125 69.84375 70.78125 71.71875 71.71875 70.78125 71.71875 72.65625 72.65625 71.71875 72.65625 73.59375 73.59375 72.65625 73.59375 74.53125 74.53125 73.59375 74.53125 75.46875 75.46875 74.53125 75.46875 76.40625 76.40625 75.46875 76.40625 77.34375 77.34375 76.40625 77.34375 78.28125 78.28125 77.34375 78.28125 79.21875 79.21875 78.28125 79.21875 80.15625 80.15625 79.21875 80.15625 81.09375 81.09375 80.15625 81.09375 82.03125 82.03125 81.09375 82.03125 82.96875 82.96875 82.03125 82.96875 83.90625 83.90625 82.96875 83.90625 84.84375 84.84375 83.90625 84.84375 85.78125 85.78125 84.84375 85.78125 86.71875 86.71875 85.78125 86.71875 87.65625 87.65625 86.71875 87.65625 88.59375 88.59375 87.65625 88.59375 89.53125 89.53125 88.59375 89.53125 90.46875 90.46875 89.53125 90.46875 91.40625 91.40625 90.46875 91.40625 92.34375 92.34375 91.40625 92.34375 93.28125 93.28125 92.34375 93.28125 94.21875 94.21875 93.28125 94.21875 95.15625 95.15625 94.21875 95.15625 96.09375 96.09375 95.15625 96.09375 97.03125 97.03125 96.09375 97.03125 97.96875 97.96875 97.03125 97.96875 98.90625 98.90625 97.96875 98.90625 99.84375 99.84375 98.90625 99.84375 100.78125 100.78125 99.84375 100.78125 101.71875 101.71875 100.78125 101.71875 102.65625 102.65625 101.71875 102.65625 103.59375 103.59375 102.65625 103.59375 104.53125 104.53125 103.59375 104.53125 105.46875 105.46875 104.53125 105.46875 106.40625 106.40625 105.46875 106.40625 107.34375 107.34375 106.40625 107.34375 108.28125 108.28125 107.34375 108.28125 109.21875 109.21875 108.28125 109.21875 110.15625 110.15625 109.21875 110.15625 111.09375 111.09375 110.15625 111.09375 112.03125 112.03125 111.09375 112.03125 112.96875 112.96875 112.03125 112.96875 113.90625 113.90625 112.96875 113.90625 114.84375 114.84375 113.90625 114.84375 115.78125 115.78125 114.84375 115.78125 116.71875 116.71875 115.78125 116.71875 117.65625 117.65625 116.71875 117.65625 118.59375 118.59375 117.65625 118.59375 119.53125 119.53125 118.59375 119.53125 120.46875 120.46875 119.53125 120.46875 121.40625 121.40625 120.46875 121.40625 122.34375 122.34375 121.40625 122.34375 123.28125 123.28125 122.34375 123.28125 124.21875 124.21875 123.28125 124.21875 125.15625 125.15625 124.21875 125.15625 126.09375 126.09375 125.15625 126.09375 127.03125 127.03125 126.09375 127.03125 127.96875 127.96875 127.03125 127.96875 128.90625 128.90625 127.96875 128.90625 129.84375 129.84375 128.90625 129.84375 130.78125 130.78125 129.84375 130.78125 131.71875 131.71875 130.78125 131.71875 132.65625 132.65625 131.71875 132.65625 133.59375 133.59375 132.65625 133.59375 134.53125 134.53125 133.59375 134.53125 135.46875 135.46875 134.53125 135.46875 136.40625 136.40625 135.46875 136.40625 137.34375 137.34375 136.40625 137.34375 138.28125 138.28125 137.34375 138.28125 139.21875 139.21875 138.28125 139.21875 140.15625 140.15625 139.21875 140.15625 141.09375 141.09375 140.15625 141.09375 142.03125 142.03125 141.09375 142.03125 142.96875 142.96875 142.03125 142.96875 143.90625 143.90625 142.96875 143.90625 144.84375 144.84375 143.90625 144.84375 145.78125 145.78125 144.84375 145.78125 146.71875 146.71875 145.78125 146.71875 147.65625 147.65625 146.71875 147.65625 148.59375 148.59375 147.65625 148.59375 149.53125 149.53125 148.59375 149.53125 150.46875 150.46875 149.53125 150.46875 151.40625 151.40625 150.46875 151.40625 152.34375 152.34375 151.40625 152.34375 153.28125 153.28125 152.34375 153.28125 154.21875 154.21875 153.28125 154.21875 155.15625 155.15625 154.21875 155.15625 156.09375 156.09375 155.15625 156.09375 157.03125 157.03125 156.09375 157.03125 157.96875 157.96875 157.03125 157.96875 158.90625 158.90625 157.96875 158.90625 159.84375 159.84375 158.90625 159.84375 160.78125 160.78125 159.84375 160.78125 161.71875 161.71875 160.78125 161.71875 162.65625 162.65625 161.71875 162.65625 163.59375 163.59375 162.65625 163.59375 164.53125 164.53125 163.59375 164.53125 165.46875 165.46875 164.53125 165.46875 166.40625 166.40625 165.46875 166.40625 167.34375 167.34375 166.40625 167.34375 168.28125 168.28125 167.34375 168.28125 169.21875 169.21875 168.28125 169.21875 170.15625 170.15625 169.21875 170.15625 171.09375 171.09375 170.15625 171.09375 172.03125 172.03125 171.09375 172.03125 172.96875 172.96875 172.03125 172.96875 173.90625 173.90625 172.96875 173.90625 174.84375 174.84375 173.90625 174.84375 175.78125 175.78125 174.84375 175.78125 176.71875 176.71875 175.78125 176.71875 177.65625 177.65625 176.71875 177.65625 178.59375 178.59375 177.65625 178.59375 179.53125 179.53125 178.59375 179.53125 180.46875 180.46875 179.53125 180.46875 181.40625 181.40625 180.46875 181.40625 182.34375 182.34375 181.40625 182.34375 183.28125 183.28125 182.34375 183.28125 184.21875 184.21875 183.28125 184.21875 185.15625 185.15625 184.21875 185.15625 186.09375 186.09375 185.15625 186.09375 187.03125 187.03125 186.09375 187.03125 187.96875 187.96875 187.03125 187.96875 188.90625 188.90625 187.96875 188.90625 189.84375 189.84375 188.90625 189.84375 190.78125 190.78125 189.84375 190.78125 191.71875 191.71875 190.78125 191.71875 192.65625 192.65625 191.71875 192.65625 193.59375 193.59375 192.65625 193.59375 194.53125 194.53125 193.59375 194.53125 195.46875 195.46875 194.53125 195.46875 196.40625 196.40625 195.46875 196.40625 197.34375 197.34375 196.40625 197.34375 198.28125 198.28125 197.34375 198.28125 199.21875 199.21875 198.28125 199.21875 200.15625 200.15625 199.21875 200.15625 201.09375 201.09375 200.15625 201.09375 202.03125 202.03125 201.09375 202.03125 202.96875 202.96875 202.03125 202.96875 203.90625 203.90625 202.96875 203.90625 204.84375 204.84375 203.90625 204.84375 205.78125 205.78125 204.84375 205.78125 206.71875 206.71875 205.78125 206.71875 207.65625 207.65625 206.71875 207.65625 208.59375 208.59375 207.65625 208.59375 209.53125 209.53125 208.59375 209.53125 210.46875 210.46875 209.53125 210.46875 211.40625 211.40625 210.46875 211.40625 212.34375 212.34375 211.40625 212.34375 213.28125 213.28125 212.34375 213.28125 214.21875 214.21875 213.28125 214.21875 215.15625 215.15625 214.21875 215.15625 216.09375 216.09375 215.15625 216.09375 217.03125 217.03125 216.09375 +217.03125 217.96875 217.96875 217.03125 217.96875 218.90625 218.90625 217.96875 218.90625 219.84375 219.84375 218.90625 219.84375 220.78125 220.78125 219.84375 220.78125 221.71875 221.71875 220.78125 221.71875 222.65625 222.65625 221.71875 222.65625 223.59375 223.59375 222.65625 223.59375 224.53125 224.53125 223.59375 224.53125 225.46875 225.46875 224.53125 225.46875 226.40625 226.40625 225.46875 226.40625 227.34375 227.34375 226.40625 227.34375 228.28125 228.28125 227.34375 228.28125 229.21875 229.21875 228.28125 229.21875 230.15625 230.15625 229.21875 230.15625 231.09375 231.09375 230.15625 231.09375 232.03125 232.03125 231.09375 232.03125 232.96875 232.96875 232.03125 232.96875 233.90625 233.90625 232.96875 233.90625 234.84375 234.84375 233.90625 234.84375 235.78125 235.78125 234.84375 235.78125 236.71875 236.71875 235.78125 236.71875 237.65625 237.65625 236.71875 237.65625 238.59375 238.59375 237.65625 238.59375 239.53125 239.53125 238.59375 239.53125 240.46875 240.46875 239.53125 240.46875 241.40625 241.40625 240.46875 241.40625 242.34375 242.34375 241.40625 242.34375 243.28125 243.28125 242.34375 243.28125 244.21875 244.21875 243.28125 244.21875 245.15625 245.15625 244.21875 245.15625 246.09375 246.09375 245.15625 246.09375 247.03125 247.03125 246.09375 247.03125 247.96875 247.96875 247.03125 247.96875 248.90625 248.90625 247.96875 248.90625 249.84375 249.84375 248.90625 249.84375 250.78125 250.78125 249.84375 250.78125 251.71875 251.71875 250.78125 251.71875 252.65625 252.65625 251.71875 252.65625 253.59375 253.59375 252.65625 253.59375 254.53125 254.53125 253.59375 254.53125 255.46875 255.46875 254.53125 255.46875 256.40625 256.40625 255.46875 256.40625 257.34375 257.34375 256.40625 257.34375 258.28125 258.28125 257.34375 258.28125 259.21875 259.21875 258.28125 259.21875 260.15625 260.15625 259.21875 260.15625 261.09375 261.09375 260.15625 261.09375 262.03125 262.03125 261.09375 262.03125 262.96875 262.96875 262.03125 262.96875 263.90625 263.90625 262.96875 263.90625 264.84375 264.84375 263.90625 264.84375 265.78125 265.78125 264.84375 265.78125 266.71875 266.71875 265.78125 266.71875 267.65625 267.65625 266.71875 267.65625 268.59375 268.59375 267.65625 268.59375 269.53125 269.53125 268.59375 269.53125 270.46875 270.46875 269.53125 270.46875 271.40625 271.40625 270.46875 271.40625 272.34375 272.34375 271.40625 272.34375 273.28125 273.28125 272.34375 273.28125 274.21875 274.21875 273.28125 274.21875 275.15625 275.15625 274.21875 275.15625 276.09375 276.09375 275.15625 276.09375 277.03125 277.03125 276.09375 277.03125 277.96875 277.96875 277.03125 277.96875 278.90625 278.90625 277.96875 278.90625 279.84375 279.84375 278.90625 279.84375 280.78125 280.78125 279.84375 280.78125 281.71875 281.71875 280.78125 281.71875 282.65625 282.65625 281.71875 282.65625 283.59375 283.59375 282.65625 283.59375 284.53125 284.53125 283.59375 284.53125 285.46875 285.46875 284.53125 285.46875 286.40625 286.40625 285.46875 286.40625 287.34375 287.34375 286.40625 287.34375 288.28125 288.28125 287.34375 288.28125 289.21875 289.21875 288.28125 289.21875 290.15625 290.15625 289.21875 290.15625 291.09375 291.09375 290.15625 291.09375 292.03125 292.03125 291.09375 292.03125 292.96875 292.96875 292.03125 292.96875 293.90625 293.90625 292.96875 293.90625 294.84375 294.84375 293.90625 294.84375 295.78125 295.78125 294.84375 295.78125 296.71875 296.71875 295.78125 296.71875 297.65625 297.65625 296.71875 297.65625 298.59375 298.59375 297.65625 298.59375 299.53125 299.53125 298.59375 299.53125 300.46875 300.46875 299.53125 300.46875 301.40625 301.40625 300.46875 301.40625 302.34375 302.34375 301.40625 302.34375 303.28125 303.28125 302.34375 303.28125 304.21875 304.21875 303.28125 304.21875 305.15625 305.15625 304.21875 305.15625 306.09375 306.09375 305.15625 306.09375 307.03125 307.03125 306.09375 307.03125 307.96875 307.96875 307.03125 307.96875 308.90625 308.90625 307.96875 308.90625 309.84375 309.84375 308.90625 309.84375 310.78125 310.78125 309.84375 310.78125 311.71875 311.71875 310.78125 311.71875 312.65625 312.65625 311.71875 312.65625 313.59375 313.59375 312.65625 313.59375 314.53125 314.53125 313.59375 314.53125 315.46875 315.46875 314.53125 315.46875 316.40625 316.40625 315.46875 316.40625 317.34375 317.34375 316.40625 317.34375 318.28125 318.28125 317.34375 318.28125 319.21875 319.21875 318.28125 319.21875 320.15625 320.15625 319.21875 320.15625 321.09375 321.09375 320.15625 321.09375 322.03125 322.03125 321.09375 322.03125 322.96875 322.96875 322.03125 322.96875 323.90625 323.90625 322.96875 323.90625 324.84375 324.84375 323.90625 324.84375 325.78125 325.78125 324.84375 325.78125 326.71875 326.71875 325.78125 326.71875 327.65625 327.65625 326.71875 327.65625 328.59375 328.59375 327.65625 328.59375 329.53125 329.53125 328.59375 329.53125 330.46875 330.46875 329.53125 330.46875 331.40625 331.40625 330.46875 331.40625 332.34375 332.34375 331.40625 332.34375 333.28125 333.28125 332.34375 333.28125 334.21875 334.21875 333.28125 334.21875 335.15625 335.15625 334.21875 335.15625 336.09375 336.09375 335.15625 336.09375 337.03125 337.03125 336.09375 337.03125 337.96875 337.96875 337.03125 337.96875 338.90625 338.90625 337.96875 338.90625 339.84375 339.84375 338.90625 339.84375 340.78125 340.78125 339.84375 340.78125 341.71875 341.71875 340.78125 341.71875 342.65625 342.65625 341.71875 342.65625 343.59375 343.59375 342.65625 343.59375 344.53125 344.53125 343.59375 344.53125 345.46875 345.46875 344.53125 345.46875 346.40625 346.40625 345.46875 346.40625 347.34375 347.34375 346.40625 347.34375 348.28125 348.28125 347.34375 348.28125 349.21875 349.21875 348.28125 349.21875 350.15625 350.15625 349.21875 350.15625 351.09375 351.09375 350.15625 351.09375 352.03125 352.03125 351.09375 352.03125 352.96875 352.96875 352.03125 352.96875 353.90625 353.90625 352.96875 353.90625 354.84375 354.84375 353.90625 354.84375 355.78125 355.78125 354.84375 355.78125 356.71875 356.71875 355.78125 356.71875 357.65625 357.65625 356.71875 357.65625 358.59375 358.59375 357.65625 358.59375 359.53125 359.53125 358.59375 -0.46875 0.46875 0.46875 -0.46875 0.46875 1.40625 1.40625 0.46875 1.40625 2.34375 2.34375 1.40625 2.34375 3.28125 3.28125 2.34375 3.28125 4.21875 4.21875 3.28125 4.21875 5.15625 5.15625 4.21875 5.15625 6.09375 6.09375 5.15625 6.09375 7.03125 7.03125 6.09375 7.03125 7.96875 7.96875 7.03125 7.96875 8.90625 8.90625 7.96875 8.90625 9.84375 9.84375 8.90625 9.84375 10.78125 10.78125 9.84375 10.78125 11.71875 11.71875 10.78125 11.71875 12.65625 12.65625 11.71875 12.65625 13.59375 13.59375 12.65625 13.59375 14.53125 14.53125 13.59375 14.53125 15.46875 15.46875 14.53125 15.46875 16.40625 16.40625 15.46875 16.40625 17.34375 17.34375 16.40625 17.34375 18.28125 18.28125 17.34375 18.28125 19.21875 19.21875 18.28125 19.21875 20.15625 20.15625 19.21875 20.15625 21.09375 21.09375 20.15625 21.09375 22.03125 22.03125 21.09375 22.03125 22.96875 22.96875 22.03125 22.96875 23.90625 23.90625 22.96875 23.90625 24.84375 24.84375 23.90625 24.84375 25.78125 25.78125 24.84375 25.78125 26.71875 26.71875 25.78125 26.71875 27.65625 27.65625 26.71875 27.65625 28.59375 28.59375 27.65625 28.59375 29.53125 29.53125 28.59375 29.53125 30.46875 30.46875 29.53125 30.46875 31.40625 31.40625 30.46875 31.40625 32.34375 32.34375 31.40625 32.34375 33.28125 33.28125 32.34375 33.28125 34.21875 34.21875 33.28125 34.21875 35.15625 35.15625 34.21875 35.15625 36.09375 36.09375 35.15625 36.09375 37.03125 37.03125 36.09375 37.03125 37.96875 37.96875 37.03125 37.96875 38.90625 38.90625 37.96875 38.90625 39.84375 39.84375 38.90625 39.84375 40.78125 40.78125 39.84375 40.78125 41.71875 41.71875 40.78125 41.71875 42.65625 42.65625 41.71875 42.65625 43.59375 43.59375 42.65625 43.59375 44.53125 44.53125 43.59375 44.53125 45.46875 45.46875 44.53125 45.46875 46.40625 46.40625 45.46875 46.40625 47.34375 47.34375 46.40625 47.34375 48.28125 48.28125 47.34375 48.28125 49.21875 49.21875 48.28125 49.21875 50.15625 50.15625 49.21875 50.15625 51.09375 51.09375 50.15625 51.09375 52.03125 52.03125 51.09375 52.03125 52.96875 52.96875 52.03125 52.96875 53.90625 53.90625 52.96875 53.90625 54.84375 54.84375 53.90625 54.84375 55.78125 55.78125 54.84375 55.78125 56.71875 56.71875 55.78125 56.71875 57.65625 57.65625 56.71875 57.65625 58.59375 58.59375 57.65625 58.59375 59.53125 59.53125 58.59375 59.53125 60.46875 60.46875 59.53125 60.46875 61.40625 61.40625 60.46875 61.40625 62.34375 62.34375 61.40625 62.34375 63.28125 63.28125 62.34375 63.28125 64.21875 64.21875 63.28125 64.21875 65.15625 65.15625 64.21875 65.15625 66.09375 66.09375 65.15625 66.09375 67.03125 67.03125 66.09375 67.03125 67.96875 67.96875 67.03125 67.96875 68.90625 68.90625 67.96875 68.90625 69.84375 69.84375 68.90625 69.84375 70.78125 70.78125 69.84375 70.78125 71.71875 71.71875 70.78125 71.71875 72.65625 72.65625 71.71875 72.65625 73.59375 73.59375 72.65625 73.59375 74.53125 74.53125 73.59375 74.53125 75.46875 75.46875 74.53125 75.46875 76.40625 76.40625 75.46875 76.40625 77.34375 77.34375 76.40625 77.34375 78.28125 78.28125 77.34375 78.28125 79.21875 79.21875 78.28125 79.21875 80.15625 80.15625 79.21875 80.15625 81.09375 81.09375 80.15625 81.09375 82.03125 82.03125 81.09375 82.03125 82.96875 82.96875 82.03125 82.96875 83.90625 83.90625 82.96875 83.90625 84.84375 84.84375 83.90625 84.84375 85.78125 85.78125 84.84375 85.78125 86.71875 86.71875 85.78125 86.71875 87.65625 87.65625 86.71875 87.65625 88.59375 88.59375 87.65625 88.59375 89.53125 89.53125 88.59375 89.53125 90.46875 90.46875 89.53125 90.46875 91.40625 91.40625 90.46875 91.40625 92.34375 92.34375 91.40625 92.34375 93.28125 93.28125 92.34375 93.28125 94.21875 94.21875 93.28125 94.21875 95.15625 95.15625 94.21875 95.15625 96.09375 96.09375 95.15625 96.09375 97.03125 97.03125 96.09375 97.03125 97.96875 97.96875 97.03125 97.96875 98.90625 98.90625 97.96875 98.90625 99.84375 99.84375 98.90625 99.84375 100.78125 100.78125 99.84375 100.78125 101.71875 101.71875 100.78125 101.71875 102.65625 102.65625 101.71875 102.65625 103.59375 103.59375 102.65625 103.59375 104.53125 104.53125 103.59375 104.53125 105.46875 105.46875 104.53125 105.46875 106.40625 106.40625 105.46875 106.40625 107.34375 107.34375 106.40625 107.34375 108.28125 108.28125 107.34375 108.28125 109.21875 109.21875 108.28125 109.21875 110.15625 110.15625 109.21875 110.15625 111.09375 111.09375 110.15625 111.09375 112.03125 112.03125 111.09375 112.03125 112.96875 112.96875 112.03125 112.96875 113.90625 113.90625 112.96875 113.90625 114.84375 114.84375 113.90625 114.84375 115.78125 115.78125 114.84375 115.78125 116.71875 116.71875 115.78125 116.71875 117.65625 117.65625 116.71875 117.65625 118.59375 118.59375 117.65625 118.59375 119.53125 119.53125 118.59375 119.53125 120.46875 120.46875 119.53125 120.46875 121.40625 121.40625 120.46875 121.40625 122.34375 122.34375 121.40625 122.34375 123.28125 123.28125 122.34375 123.28125 124.21875 124.21875 123.28125 124.21875 125.15625 125.15625 124.21875 125.15625 126.09375 126.09375 125.15625 126.09375 127.03125 127.03125 126.09375 127.03125 127.96875 127.96875 127.03125 127.96875 128.90625 128.90625 127.96875 128.90625 129.84375 129.84375 128.90625 129.84375 130.78125 130.78125 129.84375 130.78125 131.71875 131.71875 130.78125 131.71875 132.65625 132.65625 131.71875 132.65625 133.59375 133.59375 132.65625 133.59375 134.53125 134.53125 133.59375 134.53125 135.46875 135.46875 134.53125 135.46875 136.40625 136.40625 135.46875 136.40625 137.34375 137.34375 136.40625 137.34375 138.28125 138.28125 137.34375 138.28125 139.21875 139.21875 138.28125 139.21875 140.15625 140.15625 139.21875 140.15625 141.09375 141.09375 140.15625 141.09375 142.03125 142.03125 141.09375 142.03125 142.96875 142.96875 142.03125 142.96875 143.90625 143.90625 142.96875 143.90625 144.84375 144.84375 143.90625 144.84375 145.78125 145.78125 144.84375 145.78125 146.71875 146.71875 145.78125 146.71875 147.65625 147.65625 146.71875 147.65625 148.59375 148.59375 147.65625 148.59375 149.53125 149.53125 148.59375 149.53125 150.46875 150.46875 149.53125 150.46875 151.40625 151.40625 150.46875 151.40625 152.34375 152.34375 151.40625 152.34375 153.28125 153.28125 152.34375 153.28125 154.21875 154.21875 153.28125 154.21875 155.15625 155.15625 154.21875 155.15625 156.09375 156.09375 155.15625 156.09375 157.03125 157.03125 156.09375 157.03125 157.96875 157.96875 157.03125 157.96875 158.90625 158.90625 157.96875 158.90625 159.84375 159.84375 158.90625 159.84375 160.78125 160.78125 159.84375 160.78125 161.71875 161.71875 160.78125 161.71875 162.65625 162.65625 161.71875 162.65625 163.59375 163.59375 162.65625 163.59375 164.53125 164.53125 163.59375 164.53125 165.46875 165.46875 164.53125 165.46875 166.40625 166.40625 165.46875 166.40625 167.34375 167.34375 166.40625 167.34375 168.28125 168.28125 167.34375 168.28125 169.21875 169.21875 168.28125 169.21875 170.15625 170.15625 169.21875 170.15625 171.09375 171.09375 170.15625 171.09375 172.03125 172.03125 171.09375 172.03125 172.96875 172.96875 172.03125 172.96875 173.90625 173.90625 172.96875 173.90625 174.84375 174.84375 173.90625 174.84375 175.78125 175.78125 174.84375 175.78125 176.71875 176.71875 175.78125 176.71875 177.65625 177.65625 176.71875 177.65625 178.59375 178.59375 177.65625 178.59375 179.53125 179.53125 178.59375 179.53125 180.46875 180.46875 179.53125 180.46875 181.40625 181.40625 180.46875 181.40625 182.34375 182.34375 181.40625 182.34375 183.28125 183.28125 182.34375 183.28125 184.21875 184.21875 183.28125 184.21875 185.15625 185.15625 184.21875 185.15625 186.09375 186.09375 185.15625 186.09375 187.03125 187.03125 186.09375 187.03125 187.96875 187.96875 187.03125 187.96875 188.90625 188.90625 187.96875 188.90625 189.84375 189.84375 188.90625 189.84375 190.78125 190.78125 189.84375 190.78125 191.71875 191.71875 190.78125 191.71875 192.65625 192.65625 191.71875 192.65625 193.59375 193.59375 192.65625 193.59375 194.53125 194.53125 193.59375 194.53125 195.46875 195.46875 194.53125 195.46875 196.40625 196.40625 195.46875 196.40625 197.34375 197.34375 196.40625 197.34375 198.28125 198.28125 197.34375 198.28125 199.21875 199.21875 198.28125 199.21875 200.15625 200.15625 199.21875 200.15625 201.09375 201.09375 200.15625 201.09375 202.03125 202.03125 201.09375 202.03125 202.96875 202.96875 202.03125 202.96875 203.90625 203.90625 202.96875 203.90625 204.84375 204.84375 203.90625 204.84375 205.78125 205.78125 204.84375 205.78125 206.71875 206.71875 205.78125 206.71875 207.65625 207.65625 206.71875 207.65625 208.59375 208.59375 207.65625 208.59375 209.53125 209.53125 208.59375 209.53125 210.46875 210.46875 209.53125 210.46875 211.40625 211.40625 210.46875 211.40625 212.34375 212.34375 211.40625 212.34375 213.28125 213.28125 212.34375 213.28125 214.21875 214.21875 213.28125 214.21875 215.15625 215.15625 214.21875 215.15625 216.09375 216.09375 215.15625 216.09375 217.03125 217.03125 216.09375 217.03125 217.96875 217.96875 217.03125 217.96875 218.90625 218.90625 217.96875 218.90625 219.84375 219.84375 218.90625 219.84375 220.78125 220.78125 219.84375 220.78125 221.71875 221.71875 220.78125 221.71875 222.65625 222.65625 221.71875 222.65625 223.59375 223.59375 222.65625 223.59375 224.53125 224.53125 223.59375 224.53125 225.46875 225.46875 224.53125 225.46875 226.40625 226.40625 225.46875 226.40625 227.34375 227.34375 226.40625 227.34375 228.28125 228.28125 227.34375 228.28125 229.21875 229.21875 228.28125 229.21875 230.15625 230.15625 229.21875 230.15625 231.09375 231.09375 230.15625 231.09375 232.03125 232.03125 231.09375 232.03125 232.96875 232.96875 232.03125 232.96875 233.90625 233.90625 232.96875 233.90625 234.84375 234.84375 233.90625 234.84375 235.78125 235.78125 234.84375 235.78125 236.71875 236.71875 235.78125 236.71875 237.65625 237.65625 236.71875 237.65625 238.59375 238.59375 237.65625 238.59375 239.53125 239.53125 238.59375 239.53125 240.46875 240.46875 239.53125 240.46875 241.40625 241.40625 240.46875 241.40625 242.34375 242.34375 241.40625 242.34375 243.28125 243.28125 242.34375 243.28125 244.21875 244.21875 243.28125 244.21875 245.15625 245.15625 244.21875 245.15625 246.09375 246.09375 245.15625 246.09375 247.03125 247.03125 246.09375 247.03125 247.96875 247.96875 247.03125 247.96875 248.90625 248.90625 247.96875 248.90625 249.84375 249.84375 248.90625 249.84375 250.78125 250.78125 249.84375 250.78125 251.71875 251.71875 250.78125 251.71875 252.65625 252.65625 251.71875 252.65625 253.59375 253.59375 252.65625 253.59375 254.53125 254.53125 253.59375 254.53125 255.46875 255.46875 254.53125 255.46875 256.40625 256.40625 255.46875 256.40625 257.34375 257.34375 256.40625 257.34375 258.28125 258.28125 257.34375 258.28125 259.21875 259.21875 258.28125 259.21875 260.15625 260.15625 259.21875 260.15625 261.09375 261.09375 260.15625 261.09375 262.03125 262.03125 261.09375 262.03125 262.96875 262.96875 262.03125 262.96875 263.90625 263.90625 262.96875 263.90625 264.84375 264.84375 263.90625 264.84375 265.78125 265.78125 264.84375 265.78125 266.71875 266.71875 265.78125 266.71875 267.65625 267.65625 266.71875 267.65625 268.59375 268.59375 267.65625 268.59375 269.53125 269.53125 268.59375 269.53125 270.46875 270.46875 269.53125 270.46875 271.40625 271.40625 270.46875 271.40625 272.34375 272.34375 271.40625 272.34375 273.28125 273.28125 272.34375 273.28125 274.21875 274.21875 273.28125 274.21875 275.15625 275.15625 274.21875 275.15625 276.09375 276.09375 275.15625 276.09375 277.03125 277.03125 276.09375 277.03125 277.96875 277.96875 277.03125 277.96875 278.90625 278.90625 277.96875 278.90625 279.84375 279.84375 278.90625 279.84375 280.78125 280.78125 279.84375 280.78125 281.71875 281.71875 280.78125 281.71875 282.65625 282.65625 281.71875 282.65625 283.59375 283.59375 282.65625 283.59375 284.53125 284.53125 283.59375 284.53125 285.46875 285.46875 284.53125 285.46875 286.40625 286.40625 285.46875 286.40625 287.34375 287.34375 286.40625 287.34375 288.28125 288.28125 287.34375 288.28125 289.21875 289.21875 288.28125 289.21875 290.15625 290.15625 289.21875 290.15625 291.09375 291.09375 290.15625 291.09375 292.03125 292.03125 291.09375 292.03125 292.96875 292.96875 292.03125 292.96875 293.90625 293.90625 292.96875 293.90625 294.84375 294.84375 293.90625 294.84375 295.78125 295.78125 294.84375 295.78125 296.71875 296.71875 295.78125 296.71875 297.65625 297.65625 296.71875 297.65625 298.59375 298.59375 297.65625 298.59375 299.53125 299.53125 298.59375 299.53125 300.46875 300.46875 299.53125 300.46875 301.40625 301.40625 300.46875 301.40625 302.34375 302.34375 301.40625 302.34375 303.28125 303.28125 302.34375 303.28125 304.21875 304.21875 303.28125 304.21875 305.15625 305.15625 304.21875 305.15625 306.09375 306.09375 305.15625 306.09375 307.03125 307.03125 306.09375 307.03125 307.96875 307.96875 307.03125 307.96875 308.90625 308.90625 307.96875 308.90625 309.84375 309.84375 308.90625 309.84375 310.78125 310.78125 309.84375 310.78125 311.71875 311.71875 310.78125 311.71875 312.65625 312.65625 311.71875 312.65625 313.59375 313.59375 312.65625 313.59375 314.53125 314.53125 313.59375 314.53125 315.46875 315.46875 314.53125 315.46875 316.40625 316.40625 315.46875 316.40625 317.34375 317.34375 316.40625 317.34375 318.28125 318.28125 317.34375 318.28125 319.21875 319.21875 318.28125 319.21875 320.15625 320.15625 319.21875 320.15625 321.09375 321.09375 320.15625 321.09375 322.03125 322.03125 321.09375 322.03125 322.96875 322.96875 322.03125 322.96875 323.90625 323.90625 322.96875 323.90625 324.84375 324.84375 323.90625 324.84375 325.78125 325.78125 324.84375 +325.78125 326.71875 326.71875 325.78125 326.71875 327.65625 327.65625 326.71875 327.65625 328.59375 328.59375 327.65625 328.59375 329.53125 329.53125 328.59375 329.53125 330.46875 330.46875 329.53125 330.46875 331.40625 331.40625 330.46875 331.40625 332.34375 332.34375 331.40625 332.34375 333.28125 333.28125 332.34375 333.28125 334.21875 334.21875 333.28125 334.21875 335.15625 335.15625 334.21875 335.15625 336.09375 336.09375 335.15625 336.09375 337.03125 337.03125 336.09375 337.03125 337.96875 337.96875 337.03125 337.96875 338.90625 338.90625 337.96875 338.90625 339.84375 339.84375 338.90625 339.84375 340.78125 340.78125 339.84375 340.78125 341.71875 341.71875 340.78125 341.71875 342.65625 342.65625 341.71875 342.65625 343.59375 343.59375 342.65625 343.59375 344.53125 344.53125 343.59375 344.53125 345.46875 345.46875 344.53125 345.46875 346.40625 346.40625 345.46875 346.40625 347.34375 347.34375 346.40625 347.34375 348.28125 348.28125 347.34375 348.28125 349.21875 349.21875 348.28125 349.21875 350.15625 350.15625 349.21875 350.15625 351.09375 351.09375 350.15625 351.09375 352.03125 352.03125 351.09375 352.03125 352.96875 352.96875 352.03125 352.96875 353.90625 353.90625 352.96875 353.90625 354.84375 354.84375 353.90625 354.84375 355.78125 355.78125 354.84375 355.78125 356.71875 356.71875 355.78125 356.71875 357.65625 357.65625 356.71875 357.65625 358.59375 358.59375 357.65625 358.59375 359.53125 359.53125 358.59375 -0.48 0.48 0.48 -0.48 0.479999978542 1.43999997854 1.43999997854 0.479999978542 1.43999995708 2.39999995708 2.39999995708 1.43999995708 2.40000011444 3.36000011444 3.36000011444 2.40000011444 3.35999991417 4.31999991417 4.31999991417 3.35999991417 4.32000019073 5.28000019073 5.28000019073 4.32000019073 5.28000022888 6.24000022888 6.24000022888 5.28000022888 6.23999979019 7.19999979019 7.19999979019 6.23999979019 7.19999982834 8.15999982834 8.15999982834 7.19999982834 8.16000034332 9.12000034332 9.12000034332 8.16000034332 9.12000038147 10.0800003815 10.0800003815 9.12000038147 10.0800004196 11.0400004196 11.0400004196 10.0800004196 11.0400004578 12.0000004578 12.0000004578 11.0400004578 11.9999995422 12.9599995422 12.9599995422 11.9999995422 12.9599995804 13.9199995804 13.9199995804 12.9599995804 13.9199996185 14.8799996185 14.8799996185 13.9199996185 14.8799996567 15.8399996567 15.8399996567 14.8799996567 15.8399996948 16.7999996948 16.7999996948 15.8399996948 16.8000006866 17.7600006866 17.7600006866 16.8000006866 17.7599997711 18.7199997711 18.7199997711 17.7599997711 18.7200007629 19.6800007629 19.6800007629 18.7200007629 19.6799998474 20.6399998474 20.6399998474 19.6799998474 20.6400008392 21.6000008392 21.6000008392 20.6400008392 21.5999999237 22.5599999237 22.5599999237 21.5999999237 22.5600009155 23.5200009155 23.5200009155 22.5600009155 23.52 24.48 24.48 23.52 24.4799990845 25.4399990845 25.4399990845 24.4799990845 25.4400000763 26.4000000763 26.4000000763 25.4400000763 26.3999991608 27.3599991608 27.3599991608 26.3999991608 27.3600001526 28.3200001526 28.3200001526 27.3600001526 28.3199992371 29.2799992371 29.2799992371 28.3199992371 29.2800002289 30.2400002289 30.2400002289 29.2800002289 30.2399993134 31.1999993134 31.1999993134 30.2399993134 31.2000003052 32.1600003052 32.1600003052 31.2000003052 32.1599993896 33.1199993896 33.1199993896 32.1599993896 33.1199984741 34.0799984741 34.0799984741 33.1199984741 34.0800013733 35.0400013733 35.0400013733 34.0800013733 35.0400004578 36.0000004578 36.0000004578 35.0400004578 35.9999995422 36.9599995422 36.9599995422 35.9999995422 36.9599986267 37.9199986267 37.9199986267 36.9599986267 37.9200015259 38.8800015259 38.8800015259 37.9200015259 38.8800006104 39.8400006104 39.8400006104 38.8800006104 39.8399996948 40.7999996948 40.7999996948 39.8399996948 40.7999987793 41.7599987793 41.7599987793 40.7999987793 41.7600016785 42.7200016785 42.7200016785 41.7600016785 42.7200007629 43.6800007629 43.6800007629 42.7200007629 43.6799998474 44.6399998474 44.6399998474 43.6799998474 44.6399989319 45.5999989319 45.5999989319 44.6399989319 45.6000018311 46.5600018311 46.5600018311 45.6000018311 46.5600009155 47.5200009155 47.5200009155 46.5600009155 47.52 48.48 48.48 47.52 48.4799990845 49.4399990845 49.4399990845 48.4799990845 49.4399981689 50.3999981689 50.3999981689 49.4399981689 50.4000010681 51.3600010681 51.3600010681 50.4000010681 51.3600001526 52.3200001526 52.3200001526 51.3600001526 52.3199992371 53.2799992371 53.2799992371 52.3199992371 53.2799983215 54.2399983215 54.2399983215 53.2799983215 54.2400012207 55.2000012207 55.2000012207 54.2400012207 55.2000003052 56.1600003052 56.1600003052 55.2000003052 56.1599993896 57.1199993896 57.1199993896 56.1599993896 57.1199984741 58.0799984741 58.0799984741 57.1199984741 58.0800013733 59.0400013733 59.0400013733 58.0800013733 59.0400004578 60.0000004578 60.0000004578 59.0400004578 59.9999995422 60.9599995422 60.9599995422 59.9999995422 60.9599986267 61.9199986267 61.9199986267 60.9599986267 61.9200015259 62.8800015259 62.8800015259 61.9200015259 62.8800006104 63.8400006104 63.8400006104 62.8800006104 63.8399996948 64.7999996948 64.7999996948 63.8399996948 64.7999987793 65.7599987793 65.7599987793 64.7999987793 65.7599978638 66.7199978638 66.7199978638 65.7599978638 66.7199969482 67.6799969482 67.6799969482 66.7199969482 67.6800036621 68.6400036621 68.6400036621 67.6800036621 68.6400027466 69.6000027466 69.6000027466 68.6400027466 69.6000018311 70.5600018311 70.5600018311 69.6000018311 70.5600009155 71.5200009155 71.5200009155 70.5600009155 71.52 72.48 72.48 71.52 72.4799990845 73.4399990845 73.4399990845 72.4799990845 73.4399981689 74.3999981689 74.3999981689 73.4399981689 74.3999972534 75.3599972534 75.3599972534 74.3999972534 75.3599963379 76.3199963379 76.3199963379 75.3599963379 76.3200030518 77.2800030518 77.2800030518 76.3200030518 77.2800021362 78.2400021362 78.2400021362 77.2800021362 78.2400012207 79.2000012207 79.2000012207 78.2400012207 79.2000003052 80.1600003052 80.1600003052 79.2000003052 80.1599993896 81.1199993896 81.1199993896 80.1599993896 81.1199984741 82.0799984741 82.0799984741 81.1199984741 82.0799975586 83.0399975586 83.0399975586 82.0799975586 83.0399966431 83.9999966431 83.9999966431 83.0399966431 84.0000033569 84.9600033569 84.9600033569 84.0000033569 84.9600024414 85.9200024414 85.9200024414 84.9600024414 85.9200015259 86.8800015259 86.8800015259 85.9200015259 86.8800006104 87.8400006104 87.8400006104 86.8800006104 87.8399996948 88.7999996948 88.7999996948 87.8399996948 88.7999987793 89.7599987793 89.7599987793 88.7999987793 89.7599978638 90.7199978638 90.7199978638 89.7599978638 90.7199969482 91.6799969482 91.6799969482 90.7199969482 91.6800036621 92.6400036621 92.6400036621 91.6800036621 92.6400027466 93.6000027466 93.6000027466 92.6400027466 93.6000018311 94.5600018311 94.5600018311 93.6000018311 94.5600009155 95.5200009155 95.5200009155 94.5600009155 95.52 96.48 96.48 95.52 96.4799990845 97.4399990845 97.4399990845 96.4799990845 97.4399981689 98.3999981689 98.3999981689 97.4399981689 98.3999972534 99.3599972534 99.3599972534 98.3999972534 99.3599963379 100.319996338 100.319996338 99.3599963379 100.320003052 101.280003052 101.280003052 100.320003052 101.280002136 102.240002136 102.240002136 101.280002136 102.240001221 103.200001221 103.200001221 102.240001221 103.200000305 104.160000305 104.160000305 103.200000305 104.15999939 105.11999939 105.11999939 104.15999939 105.119998474 106.079998474 106.079998474 105.119998474 106.079997559 107.039997559 107.039997559 106.079997559 107.039996643 107.999996643 107.999996643 107.039996643 108.000003357 108.960003357 108.960003357 108.000003357 108.960002441 109.920002441 109.920002441 108.960002441 109.920001526 110.880001526 110.880001526 109.920001526 110.88000061 111.84000061 111.84000061 110.88000061 111.839999695 112.799999695 112.799999695 111.839999695 112.799998779 113.759998779 113.759998779 112.799998779 113.759997864 114.719997864 114.719997864 113.759997864 114.719996948 115.679996948 115.679996948 114.719996948 115.680003662 116.640003662 116.640003662 115.680003662 116.640002747 117.600002747 117.600002747 116.640002747 117.600001831 118.560001831 118.560001831 117.600001831 118.560000916 119.520000916 119.520000916 118.560000916 119.52 120.48 120.48 119.52 120.479999084 121.439999084 121.439999084 120.479999084 121.439998169 122.399998169 122.399998169 121.439998169 122.399997253 123.359997253 123.359997253 122.399997253 123.359996338 124.319996338 124.319996338 123.359996338 124.320003052 125.280003052 125.280003052 124.320003052 125.280002136 126.240002136 126.240002136 125.280002136 126.240001221 127.200001221 127.200001221 126.240001221 127.200000305 128.160000305 128.160000305 127.200000305 128.15999939 129.11999939 129.11999939 128.15999939 129.120006104 130.080006104 130.080006104 129.120006104 130.079997559 131.039997559 131.039997559 130.079997559 131.040004272 132.000004272 132.000004272 131.040004272 131.999995728 132.959995728 132.959995728 131.999995728 132.960002441 133.920002441 133.920002441 132.960002441 133.919993896 134.879993896 134.879993896 133.919993896 134.88000061 135.84000061 135.84000061 134.88000061 135.840007324 136.800007324 136.800007324 135.840007324 136.799998779 137.759998779 137.759998779 136.799998779 137.760005493 138.720005493 138.720005493 137.760005493 138.719996948 139.679996948 139.679996948 138.719996948 139.680003662 140.640003662 140.640003662 139.680003662 140.639995117 141.599995117 141.599995117 140.639995117 141.600001831 142.560001831 142.560001831 141.600001831 142.559993286 143.519993286 143.519993286 142.559993286 143.52 144.48 144.48 143.52 144.480006714 145.440006714 145.440006714 144.480006714 145.439998169 146.399998169 146.399998169 145.439998169 146.400004883 147.360004883 147.360004883 146.400004883 147.359996338 148.319996338 148.319996338 147.359996338 148.320003052 149.280003052 149.280003052 148.320003052 149.279994507 150.239994507 150.239994507 149.279994507 150.240001221 151.200001221 151.200001221 150.240001221 151.199992676 152.159992676 152.159992676 151.199992676 152.15999939 153.11999939 153.11999939 152.15999939 153.120006104 154.080006104 154.080006104 153.120006104 154.079997559 155.039997559 155.039997559 154.079997559 155.040004272 156.000004272 156.000004272 155.040004272 155.999995728 156.959995728 156.959995728 155.999995728 156.960002441 157.920002441 157.920002441 156.960002441 157.919993896 158.879993896 158.879993896 157.919993896 158.88000061 159.84000061 159.84000061 158.88000061 159.840007324 160.800007324 160.800007324 159.840007324 160.799998779 161.759998779 161.759998779 160.799998779 161.760005493 162.720005493 162.720005493 161.760005493 162.719996948 163.679996948 163.679996948 162.719996948 163.680003662 164.640003662 164.640003662 163.680003662 164.639995117 165.599995117 165.599995117 164.639995117 165.600001831 166.560001831 166.560001831 165.600001831 166.559993286 167.519993286 167.519993286 166.559993286 167.52 168.48 168.48 167.52 168.480006714 169.440006714 169.440006714 168.480006714 169.439998169 170.399998169 170.399998169 169.439998169 170.400004883 171.360004883 171.360004883 170.400004883 171.359996338 172.319996338 172.319996338 171.359996338 172.320003052 173.280003052 173.280003052 172.320003052 173.279994507 174.239994507 174.239994507 173.279994507 174.240001221 175.200001221 175.200001221 174.240001221 175.199992676 176.159992676 176.159992676 175.199992676 176.15999939 177.11999939 177.11999939 176.15999939 177.120006104 178.080006104 178.080006104 177.120006104 178.079997559 179.039997559 179.039997559 178.079997559 179.040004272 180.000004272 180.000004272 179.040004272 179.999995728 180.959995728 180.959995728 179.999995728 180.960002441 181.920002441 181.920002441 180.960002441 181.919993896 182.879993896 182.879993896 181.919993896 182.88000061 183.84000061 183.84000061 182.88000061 183.840007324 184.800007324 184.800007324 183.840007324 184.799998779 185.759998779 185.759998779 184.799998779 185.760005493 186.720005493 186.720005493 185.760005493 186.719996948 187.679996948 187.679996948 186.719996948 187.680003662 188.640003662 188.640003662 187.680003662 188.639995117 189.599995117 189.599995117 188.639995117 189.600001831 190.560001831 190.560001831 189.600001831 190.559993286 191.519993286 191.519993286 190.559993286 191.52 192.48 192.48 191.52 192.480006714 193.440006714 193.440006714 192.480006714 193.439998169 194.399998169 194.399998169 193.439998169 194.400004883 195.360004883 195.360004883 194.400004883 195.359996338 196.319996338 196.319996338 195.359996338 196.320003052 197.280003052 197.280003052 196.320003052 197.279994507 198.239994507 198.239994507 197.279994507 198.240001221 199.200001221 199.200001221 198.240001221 199.199992676 200.159992676 200.159992676 199.199992676 200.15999939 201.11999939 201.11999939 200.15999939 201.120006104 202.080006104 202.080006104 201.120006104 202.079997559 203.039997559 203.039997559 202.079997559 203.040004272 204.000004272 204.000004272 203.040004272 203.999995728 204.959995728 204.959995728 203.999995728 204.960002441 205.920002441 205.920002441 204.960002441 205.919993896 206.879993896 206.879993896 205.919993896 206.88000061 207.84000061 207.84000061 206.88000061 207.840007324 208.800007324 208.800007324 207.840007324 208.799998779 209.759998779 209.759998779 208.799998779 209.760005493 210.720005493 210.720005493 209.760005493 210.719996948 211.679996948 211.679996948 210.719996948 211.680003662 212.640003662 212.640003662 211.680003662 212.639995117 213.599995117 213.599995117 212.639995117 213.600001831 214.560001831 214.560001831 213.600001831 214.559993286 215.519993286 215.519993286 214.559993286 215.52 216.48 216.48 215.52 216.480006714 217.440006714 217.440006714 216.480006714 217.439998169 218.399998169 218.399998169 217.439998169 218.400004883 219.360004883 219.360004883 218.400004883 219.359996338 220.319996338 220.319996338 219.359996338 220.320003052 221.280003052 221.280003052 220.320003052 221.279994507 222.239994507 222.239994507 221.279994507 222.240001221 223.200001221 223.200001221 222.240001221 223.199992676 224.159992676 224.159992676 223.199992676 224.15999939 225.11999939 225.11999939 224.15999939 225.120006104 226.080006104 226.080006104 225.120006104 226.079997559 227.039997559 227.039997559 226.079997559 227.040004272 228.000004272 228.000004272 227.040004272 227.999995728 228.959995728 228.959995728 227.999995728 228.960002441 229.920002441 229.920002441 228.960002441 229.919993896 230.879993896 230.879993896 229.919993896 230.88000061 231.84000061 231.84000061 230.88000061 231.840007324 232.800007324 232.800007324 231.840007324 232.799998779 233.759998779 233.759998779 232.799998779 233.760005493 234.720005493 234.720005493 233.760005493 234.719996948 235.679996948 235.679996948 234.719996948 235.680003662 236.640003662 236.640003662 235.680003662 236.639995117 237.599995117 237.599995117 236.639995117 237.600001831 238.560001831 238.560001831 237.600001831 238.559993286 239.519993286 239.519993286 238.559993286 239.52 240.48 240.48 239.52 240.480006714 241.440006714 241.440006714 240.480006714 241.439998169 242.399998169 242.399998169 241.439998169 242.400004883 243.360004883 243.360004883 242.400004883 243.359996338 244.319996338 244.319996338 243.359996338 244.320003052 245.280003052 245.280003052 244.320003052 245.279994507 246.239994507 246.239994507 245.279994507 246.240001221 247.200001221 247.200001221 246.240001221 247.199992676 248.159992676 248.159992676 247.199992676 248.15999939 249.11999939 249.11999939 248.15999939 249.120006104 250.080006104 250.080006104 249.120006104 250.079997559 251.039997559 251.039997559 250.079997559 251.040004272 252.000004272 252.000004272 251.040004272 251.999995728 252.959995728 252.959995728 251.999995728 252.960002441 253.920002441 253.920002441 252.960002441 253.919993896 254.879993896 254.879993896 253.919993896 254.88000061 255.84000061 255.84000061 254.88000061 255.840007324 256.800007324 256.800007324 255.840007324 256.799998779 257.759998779 257.759998779 256.799998779 257.759990234 258.719990234 258.719990234 257.759990234 258.720012207 259.680012207 259.680012207 258.720012207 259.680003662 260.640003662 260.640003662 259.680003662 260.639995117 261.599995117 261.599995117 260.639995117 261.599986572 262.559986572 262.559986572 261.599986572 262.560008545 263.520008545 263.520008545 262.560008545 263.52 264.48 264.48 263.52 264.479991455 265.439991455 265.439991455 264.479991455 265.440013428 266.400013428 266.400013428 265.440013428 266.400004883 267.360004883 267.360004883 266.400004883 267.359996338 268.319996338 268.319996338 267.359996338 268.319987793 269.279987793 269.279987793 268.319987793 269.280009766 270.240009766 270.240009766 269.280009766 270.240001221 271.200001221 271.200001221 270.240001221 271.199992676 272.159992676 272.159992676 271.199992676 272.160014648 273.120014648 273.120014648 272.160014648 273.120006104 274.080006104 274.080006104 273.120006104 274.079997559 275.039997559 275.039997559 274.079997559 275.039989014 275.999989014 275.999989014 275.039989014 276.000010986 276.960010986 276.960010986 276.000010986 276.960002441 277.920002441 277.920002441 276.960002441 277.919993896 278.879993896 278.879993896 277.919993896 278.879985352 279.839985352 279.839985352 278.879985352 279.840007324 280.800007324 280.800007324 279.840007324 280.799998779 281.759998779 281.759998779 280.799998779 281.759990234 282.719990234 282.719990234 281.759990234 282.720012207 283.680012207 283.680012207 282.720012207 283.680003662 284.640003662 284.640003662 283.680003662 284.639995117 285.599995117 285.599995117 284.639995117 285.599986572 286.559986572 286.559986572 285.599986572 286.560008545 287.520008545 287.520008545 286.560008545 287.52 288.48 288.48 287.52 288.479991455 289.439991455 289.439991455 288.479991455 289.440013428 290.400013428 290.400013428 289.440013428 290.400004883 291.360004883 291.360004883 290.400004883 291.359996338 292.319996338 292.319996338 291.359996338 292.319987793 293.279987793 293.279987793 292.319987793 293.280009766 294.240009766 294.240009766 293.280009766 294.240001221 295.200001221 295.200001221 294.240001221 295.199992676 296.159992676 296.159992676 295.199992676 296.160014648 297.120014648 297.120014648 296.160014648 297.120006104 298.080006104 298.080006104 297.120006104 298.079997559 299.039997559 299.039997559 298.079997559 299.039989014 299.999989014 299.999989014 299.039989014 300.000010986 300.960010986 300.960010986 300.000010986 300.960002441 301.920002441 301.920002441 300.960002441 301.919993896 302.879993896 302.879993896 301.919993896 302.879985352 303.839985352 303.839985352 302.879985352 303.840007324 304.800007324 304.800007324 303.840007324 304.799998779 305.759998779 305.759998779 304.799998779 305.759990234 306.719990234 306.719990234 305.759990234 306.720012207 307.680012207 307.680012207 306.720012207 307.680003662 308.640003662 308.640003662 307.680003662 308.639995117 309.599995117 309.599995117 308.639995117 309.599986572 310.559986572 310.559986572 309.599986572 310.560008545 311.520008545 311.520008545 310.560008545 311.52 312.48 312.48 311.52 312.479991455 313.439991455 313.439991455 312.479991455 313.440013428 314.400013428 314.400013428 313.440013428 314.400004883 315.360004883 315.360004883 314.400004883 315.359996338 316.319996338 316.319996338 315.359996338 316.319987793 317.279987793 317.279987793 316.319987793 317.280009766 318.240009766 318.240009766 317.280009766 318.240001221 319.200001221 319.200001221 318.240001221 319.199992676 320.159992676 320.159992676 319.199992676 320.160014648 321.120014648 321.120014648 320.160014648 321.120006104 322.080006104 322.080006104 321.120006104 322.079997559 323.039997559 323.039997559 322.079997559 323.039989014 323.999989014 323.999989014 323.039989014 324.000010986 324.960010986 324.960010986 324.000010986 324.960002441 325.920002441 325.920002441 324.960002441 325.919993896 326.879993896 326.879993896 325.919993896 326.879985352 327.839985352 327.839985352 326.879985352 327.840007324 328.800007324 328.800007324 327.840007324 328.799998779 329.759998779 329.759998779 328.799998779 329.759990234 330.719990234 330.719990234 329.759990234 330.720012207 331.680012207 331.680012207 330.720012207 331.680003662 332.640003662 332.640003662 331.680003662 332.639995117 333.599995117 333.599995117 332.639995117 333.599986572 334.559986572 334.559986572 333.599986572 334.560008545 335.520008545 335.520008545 334.560008545 335.52 336.48 336.48 335.52 336.479991455 337.439991455 337.439991455 336.479991455 337.440013428 338.400013428 338.400013428 337.440013428 338.400004883 339.360004883 339.360004883 338.400004883 339.359996338 340.319996338 340.319996338 339.359996338 340.319987793 341.279987793 341.279987793 340.319987793 341.280009766 342.240009766 342.240009766 341.280009766 342.240001221 343.200001221 343.200001221 342.240001221 343.199992676 344.159992676 344.159992676 343.199992676 344.160014648 345.120014648 345.120014648 344.160014648 345.120006104 346.080006104 346.080006104 345.120006104 346.079997559 347.039997559 347.039997559 346.079997559 347.039989014 347.999989014 347.999989014 347.039989014 348.000010986 348.960010986 348.960010986 348.000010986 348.960002441 349.920002441 349.920002441 348.960002441 349.919993896 350.879993896 350.879993896 349.919993896 350.879985352 351.839985352 351.839985352 350.879985352 351.840007324 352.800007324 352.800007324 351.840007324 352.799998779 353.759998779 353.759998779 352.799998779 353.759990234 354.719990234 354.719990234 353.759990234 354.720012207 355.680012207 355.680012207 354.720012207 355.680003662 356.640003662 356.640003662 355.680003662 356.639995117 357.599995117 357.599995117 356.639995117 357.599986572 358.559986572 358.559986572 357.599986572 358.560008545 359.520008545 359.520008545 358.560008545 -0.48 0.48 0.48 -0.48 0.479999978542 1.43999997854 1.43999997854 0.479999978542 1.43999995708 2.39999995708 2.39999995708 1.43999995708 2.40000011444 3.36000011444 3.36000011444 2.40000011444 3.35999991417 4.31999991417 4.31999991417 3.35999991417 4.32000019073 5.28000019073 5.28000019073 4.32000019073 5.28000022888 6.24000022888 6.24000022888 5.28000022888 6.23999979019 7.19999979019 7.19999979019 6.23999979019 7.19999982834 8.15999982834 8.15999982834 7.19999982834 8.16000034332 9.12000034332 9.12000034332 8.16000034332 9.12000038147 10.0800003815 10.0800003815 9.12000038147 10.0800004196 11.0400004196 11.0400004196 10.0800004196 11.0400004578 12.0000004578 12.0000004578 11.0400004578 11.9999995422 12.9599995422 12.9599995422 11.9999995422 12.9599995804 13.9199995804 13.9199995804 12.9599995804 13.9199996185 14.8799996185 14.8799996185 13.9199996185 14.8799996567 15.8399996567 15.8399996567 14.8799996567 15.8399996948 16.7999996948 16.7999996948 15.8399996948 16.8000006866 17.7600006866 17.7600006866 16.8000006866 17.7599997711 18.7199997711 18.7199997711 17.7599997711 18.7200007629 19.6800007629 19.6800007629 18.7200007629 19.6799998474 20.6399998474 20.6399998474 19.6799998474 20.6400008392 21.6000008392 21.6000008392 20.6400008392 21.5999999237 22.5599999237 22.5599999237 21.5999999237 22.5600009155 23.5200009155 23.5200009155 22.5600009155 23.52 24.48 24.48 23.52 24.4799990845 25.4399990845 25.4399990845 24.4799990845 25.4400000763 26.4000000763 26.4000000763 25.4400000763 26.3999991608 27.3599991608 27.3599991608 26.3999991608 27.3600001526 28.3200001526 28.3200001526 27.3600001526 28.3199992371 29.2799992371 29.2799992371 28.3199992371 29.2800002289 30.2400002289 30.2400002289 29.2800002289 30.2399993134 31.1999993134 31.1999993134 30.2399993134 31.2000003052 32.1600003052 32.1600003052 31.2000003052 32.1599993896 33.1199993896 33.1199993896 32.1599993896 33.1199984741 34.0799984741 34.0799984741 33.1199984741 34.0800013733 35.0400013733 35.0400013733 34.0800013733 35.0400004578 36.0000004578 36.0000004578 35.0400004578 35.9999995422 36.9599995422 36.9599995422 35.9999995422 36.9599986267 37.9199986267 37.9199986267 36.9599986267 37.9200015259 38.8800015259 38.8800015259 37.9200015259 38.8800006104 39.8400006104 39.8400006104 38.8800006104 39.8399996948 40.7999996948 40.7999996948 39.8399996948 40.7999987793 41.7599987793 41.7599987793 40.7999987793 41.7600016785 42.7200016785 42.7200016785 41.7600016785 42.7200007629 43.6800007629 43.6800007629 42.7200007629 43.6799998474 44.6399998474 44.6399998474 43.6799998474 44.6399989319 45.5999989319 45.5999989319 44.6399989319 45.6000018311 46.5600018311 46.5600018311 45.6000018311 46.5600009155 47.5200009155 47.5200009155 46.5600009155 47.52 48.48 48.48 47.52 48.4799990845 49.4399990845 49.4399990845 48.4799990845 49.4399981689 50.3999981689 50.3999981689 49.4399981689 50.4000010681 51.3600010681 51.3600010681 50.4000010681 51.3600001526 52.3200001526 52.3200001526 51.3600001526 52.3199992371 53.2799992371 53.2799992371 52.3199992371 53.2799983215 54.2399983215 54.2399983215 53.2799983215 54.2400012207 55.2000012207 55.2000012207 54.2400012207 55.2000003052 56.1600003052 56.1600003052 55.2000003052 56.1599993896 57.1199993896 57.1199993896 56.1599993896 57.1199984741 58.0799984741 58.0799984741 57.1199984741 58.0800013733 59.0400013733 59.0400013733 58.0800013733 59.0400004578 60.0000004578 60.0000004578 59.0400004578 59.9999995422 60.9599995422 60.9599995422 59.9999995422 60.9599986267 61.9199986267 61.9199986267 60.9599986267 61.9200015259 62.8800015259 62.8800015259 61.9200015259 62.8800006104 63.8400006104 63.8400006104 62.8800006104 63.8399996948 64.7999996948 64.7999996948 63.8399996948 64.7999987793 65.7599987793 65.7599987793 64.7999987793 65.7599978638 66.7199978638 66.7199978638 65.7599978638 66.7199969482 67.6799969482 67.6799969482 66.7199969482 67.6800036621 68.6400036621 68.6400036621 67.6800036621 68.6400027466 69.6000027466 69.6000027466 68.6400027466 69.6000018311 70.5600018311 70.5600018311 69.6000018311 70.5600009155 71.5200009155 71.5200009155 70.5600009155 71.52 72.48 72.48 71.52 72.4799990845 73.4399990845 73.4399990845 72.4799990845 73.4399981689 74.3999981689 74.3999981689 73.4399981689 74.3999972534 75.3599972534 75.3599972534 74.3999972534 75.3599963379 76.3199963379 76.3199963379 75.3599963379 76.3200030518 77.2800030518 77.2800030518 76.3200030518 77.2800021362 78.2400021362 78.2400021362 77.2800021362 78.2400012207 79.2000012207 79.2000012207 78.2400012207 79.2000003052 80.1600003052 80.1600003052 79.2000003052 80.1599993896 81.1199993896 81.1199993896 80.1599993896 81.1199984741 82.0799984741 82.0799984741 81.1199984741 82.0799975586 83.0399975586 83.0399975586 82.0799975586 83.0399966431 83.9999966431 83.9999966431 83.0399966431 84.0000033569 84.9600033569 84.9600033569 84.0000033569 +84.9600024414 85.9200024414 85.9200024414 84.9600024414 85.9200015259 86.8800015259 86.8800015259 85.9200015259 86.8800006104 87.8400006104 87.8400006104 86.8800006104 87.8399996948 88.7999996948 88.7999996948 87.8399996948 88.7999987793 89.7599987793 89.7599987793 88.7999987793 89.7599978638 90.7199978638 90.7199978638 89.7599978638 90.7199969482 91.6799969482 91.6799969482 90.7199969482 91.6800036621 92.6400036621 92.6400036621 91.6800036621 92.6400027466 93.6000027466 93.6000027466 92.6400027466 93.6000018311 94.5600018311 94.5600018311 93.6000018311 94.5600009155 95.5200009155 95.5200009155 94.5600009155 95.52 96.48 96.48 95.52 96.4799990845 97.4399990845 97.4399990845 96.4799990845 97.4399981689 98.3999981689 98.3999981689 97.4399981689 98.3999972534 99.3599972534 99.3599972534 98.3999972534 99.3599963379 100.319996338 100.319996338 99.3599963379 100.320003052 101.280003052 101.280003052 100.320003052 101.280002136 102.240002136 102.240002136 101.280002136 102.240001221 103.200001221 103.200001221 102.240001221 103.200000305 104.160000305 104.160000305 103.200000305 104.15999939 105.11999939 105.11999939 104.15999939 105.119998474 106.079998474 106.079998474 105.119998474 106.079997559 107.039997559 107.039997559 106.079997559 107.039996643 107.999996643 107.999996643 107.039996643 108.000003357 108.960003357 108.960003357 108.000003357 108.960002441 109.920002441 109.920002441 108.960002441 109.920001526 110.880001526 110.880001526 109.920001526 110.88000061 111.84000061 111.84000061 110.88000061 111.839999695 112.799999695 112.799999695 111.839999695 112.799998779 113.759998779 113.759998779 112.799998779 113.759997864 114.719997864 114.719997864 113.759997864 114.719996948 115.679996948 115.679996948 114.719996948 115.680003662 116.640003662 116.640003662 115.680003662 116.640002747 117.600002747 117.600002747 116.640002747 117.600001831 118.560001831 118.560001831 117.600001831 118.560000916 119.520000916 119.520000916 118.560000916 119.52 120.48 120.48 119.52 120.479999084 121.439999084 121.439999084 120.479999084 121.439998169 122.399998169 122.399998169 121.439998169 122.399997253 123.359997253 123.359997253 122.399997253 123.359996338 124.319996338 124.319996338 123.359996338 124.320003052 125.280003052 125.280003052 124.320003052 125.280002136 126.240002136 126.240002136 125.280002136 126.240001221 127.200001221 127.200001221 126.240001221 127.200000305 128.160000305 128.160000305 127.200000305 128.15999939 129.11999939 129.11999939 128.15999939 129.120006104 130.080006104 130.080006104 129.120006104 130.079997559 131.039997559 131.039997559 130.079997559 131.040004272 132.000004272 132.000004272 131.040004272 131.999995728 132.959995728 132.959995728 131.999995728 132.960002441 133.920002441 133.920002441 132.960002441 133.919993896 134.879993896 134.879993896 133.919993896 134.88000061 135.84000061 135.84000061 134.88000061 135.840007324 136.800007324 136.800007324 135.840007324 136.799998779 137.759998779 137.759998779 136.799998779 137.760005493 138.720005493 138.720005493 137.760005493 138.719996948 139.679996948 139.679996948 138.719996948 139.680003662 140.640003662 140.640003662 139.680003662 140.639995117 141.599995117 141.599995117 140.639995117 141.600001831 142.560001831 142.560001831 141.600001831 142.559993286 143.519993286 143.519993286 142.559993286 143.52 144.48 144.48 143.52 144.480006714 145.440006714 145.440006714 144.480006714 145.439998169 146.399998169 146.399998169 145.439998169 146.400004883 147.360004883 147.360004883 146.400004883 147.359996338 148.319996338 148.319996338 147.359996338 148.320003052 149.280003052 149.280003052 148.320003052 149.279994507 150.239994507 150.239994507 149.279994507 150.240001221 151.200001221 151.200001221 150.240001221 151.199992676 152.159992676 152.159992676 151.199992676 152.15999939 153.11999939 153.11999939 152.15999939 153.120006104 154.080006104 154.080006104 153.120006104 154.079997559 155.039997559 155.039997559 154.079997559 155.040004272 156.000004272 156.000004272 155.040004272 155.999995728 156.959995728 156.959995728 155.999995728 156.960002441 157.920002441 157.920002441 156.960002441 157.919993896 158.879993896 158.879993896 157.919993896 158.88000061 159.84000061 159.84000061 158.88000061 159.840007324 160.800007324 160.800007324 159.840007324 160.799998779 161.759998779 161.759998779 160.799998779 161.760005493 162.720005493 162.720005493 161.760005493 162.719996948 163.679996948 163.679996948 162.719996948 163.680003662 164.640003662 164.640003662 163.680003662 164.639995117 165.599995117 165.599995117 164.639995117 165.600001831 166.560001831 166.560001831 165.600001831 166.559993286 167.519993286 167.519993286 166.559993286 167.52 168.48 168.48 167.52 168.480006714 169.440006714 169.440006714 168.480006714 169.439998169 170.399998169 170.399998169 169.439998169 170.400004883 171.360004883 171.360004883 170.400004883 171.359996338 172.319996338 172.319996338 171.359996338 172.320003052 173.280003052 173.280003052 172.320003052 173.279994507 174.239994507 174.239994507 173.279994507 174.240001221 175.200001221 175.200001221 174.240001221 175.199992676 176.159992676 176.159992676 175.199992676 176.15999939 177.11999939 177.11999939 176.15999939 177.120006104 178.080006104 178.080006104 177.120006104 178.079997559 179.039997559 179.039997559 178.079997559 179.040004272 180.000004272 180.000004272 179.040004272 179.999995728 180.959995728 180.959995728 179.999995728 180.960002441 181.920002441 181.920002441 180.960002441 181.919993896 182.879993896 182.879993896 181.919993896 182.88000061 183.84000061 183.84000061 182.88000061 183.840007324 184.800007324 184.800007324 183.840007324 184.799998779 185.759998779 185.759998779 184.799998779 185.760005493 186.720005493 186.720005493 185.760005493 186.719996948 187.679996948 187.679996948 186.719996948 187.680003662 188.640003662 188.640003662 187.680003662 188.639995117 189.599995117 189.599995117 188.639995117 189.600001831 190.560001831 190.560001831 189.600001831 190.559993286 191.519993286 191.519993286 190.559993286 191.52 192.48 192.48 191.52 192.480006714 193.440006714 193.440006714 192.480006714 193.439998169 194.399998169 194.399998169 193.439998169 194.400004883 195.360004883 195.360004883 194.400004883 195.359996338 196.319996338 196.319996338 195.359996338 196.320003052 197.280003052 197.280003052 196.320003052 197.279994507 198.239994507 198.239994507 197.279994507 198.240001221 199.200001221 199.200001221 198.240001221 199.199992676 200.159992676 200.159992676 199.199992676 200.15999939 201.11999939 201.11999939 200.15999939 201.120006104 202.080006104 202.080006104 201.120006104 202.079997559 203.039997559 203.039997559 202.079997559 203.040004272 204.000004272 204.000004272 203.040004272 203.999995728 204.959995728 204.959995728 203.999995728 204.960002441 205.920002441 205.920002441 204.960002441 205.919993896 206.879993896 206.879993896 205.919993896 206.88000061 207.84000061 207.84000061 206.88000061 207.840007324 208.800007324 208.800007324 207.840007324 208.799998779 209.759998779 209.759998779 208.799998779 209.760005493 210.720005493 210.720005493 209.760005493 210.719996948 211.679996948 211.679996948 210.719996948 211.680003662 212.640003662 212.640003662 211.680003662 212.639995117 213.599995117 213.599995117 212.639995117 213.600001831 214.560001831 214.560001831 213.600001831 214.559993286 215.519993286 215.519993286 214.559993286 215.52 216.48 216.48 215.52 216.480006714 217.440006714 217.440006714 216.480006714 217.439998169 218.399998169 218.399998169 217.439998169 218.400004883 219.360004883 219.360004883 218.400004883 219.359996338 220.319996338 220.319996338 219.359996338 220.320003052 221.280003052 221.280003052 220.320003052 221.279994507 222.239994507 222.239994507 221.279994507 222.240001221 223.200001221 223.200001221 222.240001221 223.199992676 224.159992676 224.159992676 223.199992676 224.15999939 225.11999939 225.11999939 224.15999939 225.120006104 226.080006104 226.080006104 225.120006104 226.079997559 227.039997559 227.039997559 226.079997559 227.040004272 228.000004272 228.000004272 227.040004272 227.999995728 228.959995728 228.959995728 227.999995728 228.960002441 229.920002441 229.920002441 228.960002441 229.919993896 230.879993896 230.879993896 229.919993896 230.88000061 231.84000061 231.84000061 230.88000061 231.840007324 232.800007324 232.800007324 231.840007324 232.799998779 233.759998779 233.759998779 232.799998779 233.760005493 234.720005493 234.720005493 233.760005493 234.719996948 235.679996948 235.679996948 234.719996948 235.680003662 236.640003662 236.640003662 235.680003662 236.639995117 237.599995117 237.599995117 236.639995117 237.600001831 238.560001831 238.560001831 237.600001831 238.559993286 239.519993286 239.519993286 238.559993286 239.52 240.48 240.48 239.52 240.480006714 241.440006714 241.440006714 240.480006714 241.439998169 242.399998169 242.399998169 241.439998169 242.400004883 243.360004883 243.360004883 242.400004883 243.359996338 244.319996338 244.319996338 243.359996338 244.320003052 245.280003052 245.280003052 244.320003052 245.279994507 246.239994507 246.239994507 245.279994507 246.240001221 247.200001221 247.200001221 246.240001221 247.199992676 248.159992676 248.159992676 247.199992676 248.15999939 249.11999939 249.11999939 248.15999939 249.120006104 250.080006104 250.080006104 249.120006104 250.079997559 251.039997559 251.039997559 250.079997559 251.040004272 252.000004272 252.000004272 251.040004272 251.999995728 252.959995728 252.959995728 251.999995728 252.960002441 253.920002441 253.920002441 252.960002441 253.919993896 254.879993896 254.879993896 253.919993896 254.88000061 255.84000061 255.84000061 254.88000061 255.840007324 256.800007324 256.800007324 255.840007324 256.799998779 257.759998779 257.759998779 256.799998779 257.759990234 258.719990234 258.719990234 257.759990234 258.720012207 259.680012207 259.680012207 258.720012207 259.680003662 260.640003662 260.640003662 259.680003662 260.639995117 261.599995117 261.599995117 260.639995117 261.599986572 262.559986572 262.559986572 261.599986572 262.560008545 263.520008545 263.520008545 262.560008545 263.52 264.48 264.48 263.52 264.479991455 265.439991455 265.439991455 264.479991455 265.440013428 266.400013428 266.400013428 265.440013428 266.400004883 267.360004883 267.360004883 266.400004883 267.359996338 268.319996338 268.319996338 267.359996338 268.319987793 269.279987793 269.279987793 268.319987793 269.280009766 270.240009766 270.240009766 269.280009766 270.240001221 271.200001221 271.200001221 270.240001221 271.199992676 272.159992676 272.159992676 271.199992676 272.160014648 273.120014648 273.120014648 272.160014648 273.120006104 274.080006104 274.080006104 273.120006104 274.079997559 275.039997559 275.039997559 274.079997559 275.039989014 275.999989014 275.999989014 275.039989014 276.000010986 276.960010986 276.960010986 276.000010986 276.960002441 277.920002441 277.920002441 276.960002441 277.919993896 278.879993896 278.879993896 277.919993896 278.879985352 279.839985352 279.839985352 278.879985352 279.840007324 280.800007324 280.800007324 279.840007324 280.799998779 281.759998779 281.759998779 280.799998779 281.759990234 282.719990234 282.719990234 281.759990234 282.720012207 283.680012207 283.680012207 282.720012207 283.680003662 284.640003662 284.640003662 283.680003662 284.639995117 285.599995117 285.599995117 284.639995117 285.599986572 286.559986572 286.559986572 285.599986572 286.560008545 287.520008545 287.520008545 286.560008545 287.52 288.48 288.48 287.52 288.479991455 289.439991455 289.439991455 288.479991455 289.440013428 290.400013428 290.400013428 289.440013428 290.400004883 291.360004883 291.360004883 290.400004883 291.359996338 292.319996338 292.319996338 291.359996338 292.319987793 293.279987793 293.279987793 292.319987793 293.280009766 294.240009766 294.240009766 293.280009766 294.240001221 295.200001221 295.200001221 294.240001221 295.199992676 296.159992676 296.159992676 295.199992676 296.160014648 297.120014648 297.120014648 296.160014648 297.120006104 298.080006104 298.080006104 297.120006104 298.079997559 299.039997559 299.039997559 298.079997559 299.039989014 299.999989014 299.999989014 299.039989014 300.000010986 300.960010986 300.960010986 300.000010986 300.960002441 301.920002441 301.920002441 300.960002441 301.919993896 302.879993896 302.879993896 301.919993896 302.879985352 303.839985352 303.839985352 302.879985352 303.840007324 304.800007324 304.800007324 303.840007324 304.799998779 305.759998779 305.759998779 304.799998779 305.759990234 306.719990234 306.719990234 305.759990234 306.720012207 307.680012207 307.680012207 306.720012207 307.680003662 308.640003662 308.640003662 307.680003662 308.639995117 309.599995117 309.599995117 308.639995117 309.599986572 310.559986572 310.559986572 309.599986572 310.560008545 311.520008545 311.520008545 310.560008545 311.52 312.48 312.48 311.52 312.479991455 313.439991455 313.439991455 312.479991455 313.440013428 314.400013428 314.400013428 313.440013428 314.400004883 315.360004883 315.360004883 314.400004883 315.359996338 316.319996338 316.319996338 315.359996338 316.319987793 317.279987793 317.279987793 316.319987793 317.280009766 318.240009766 318.240009766 317.280009766 318.240001221 319.200001221 319.200001221 318.240001221 319.199992676 320.159992676 320.159992676 319.199992676 320.160014648 321.120014648 321.120014648 320.160014648 321.120006104 322.080006104 322.080006104 321.120006104 322.079997559 323.039997559 323.039997559 322.079997559 323.039989014 323.999989014 323.999989014 323.039989014 324.000010986 324.960010986 324.960010986 324.000010986 324.960002441 325.920002441 325.920002441 324.960002441 325.919993896 326.879993896 326.879993896 325.919993896 326.879985352 327.839985352 327.839985352 326.879985352 327.840007324 328.800007324 328.800007324 327.840007324 328.799998779 329.759998779 329.759998779 328.799998779 329.759990234 330.719990234 330.719990234 329.759990234 330.720012207 331.680012207 331.680012207 330.720012207 331.680003662 332.640003662 332.640003662 331.680003662 332.639995117 333.599995117 333.599995117 332.639995117 333.599986572 334.559986572 334.559986572 333.599986572 334.560008545 335.520008545 335.520008545 334.560008545 335.52 336.48 336.48 335.52 336.479991455 337.439991455 337.439991455 336.479991455 337.440013428 338.400013428 338.400013428 337.440013428 338.400004883 339.360004883 339.360004883 338.400004883 339.359996338 340.319996338 340.319996338 339.359996338 340.319987793 341.279987793 341.279987793 340.319987793 341.280009766 342.240009766 342.240009766 341.280009766 342.240001221 343.200001221 343.200001221 342.240001221 343.199992676 344.159992676 344.159992676 343.199992676 344.160014648 345.120014648 345.120014648 344.160014648 345.120006104 346.080006104 346.080006104 345.120006104 346.079997559 347.039997559 347.039997559 346.079997559 347.039989014 347.999989014 347.999989014 347.039989014 348.000010986 348.960010986 348.960010986 348.000010986 348.960002441 349.920002441 349.920002441 348.960002441 349.919993896 350.879993896 350.879993896 349.919993896 350.879985352 351.839985352 351.839985352 350.879985352 351.840007324 352.800007324 352.800007324 351.840007324 352.799998779 353.759998779 353.759998779 352.799998779 353.759990234 354.719990234 354.719990234 353.759990234 354.720012207 355.680012207 355.680012207 354.720012207 355.680003662 356.640003662 356.640003662 355.680003662 356.639995117 357.599995117 357.599995117 356.639995117 357.599986572 358.559986572 358.559986572 357.599986572 358.560008545 359.520008545 359.520008545 358.560008545 -0.48 0.48 0.48 -0.48 0.479999978542 1.43999997854 1.43999997854 0.479999978542 1.43999995708 2.39999995708 2.39999995708 1.43999995708 2.40000011444 3.36000011444 3.36000011444 2.40000011444 3.35999991417 4.31999991417 4.31999991417 3.35999991417 4.32000019073 5.28000019073 5.28000019073 4.32000019073 5.28000022888 6.24000022888 6.24000022888 5.28000022888 6.23999979019 7.19999979019 7.19999979019 6.23999979019 7.19999982834 8.15999982834 8.15999982834 7.19999982834 8.16000034332 9.12000034332 9.12000034332 8.16000034332 9.12000038147 10.0800003815 10.0800003815 9.12000038147 10.0800004196 11.0400004196 11.0400004196 10.0800004196 11.0400004578 12.0000004578 12.0000004578 11.0400004578 11.9999995422 12.9599995422 12.9599995422 11.9999995422 12.9599995804 13.9199995804 13.9199995804 12.9599995804 13.9199996185 14.8799996185 14.8799996185 13.9199996185 14.8799996567 15.8399996567 15.8399996567 14.8799996567 15.8399996948 16.7999996948 16.7999996948 15.8399996948 16.8000006866 17.7600006866 17.7600006866 16.8000006866 17.7599997711 18.7199997711 18.7199997711 17.7599997711 18.7200007629 19.6800007629 19.6800007629 18.7200007629 19.6799998474 20.6399998474 20.6399998474 19.6799998474 20.6400008392 21.6000008392 21.6000008392 20.6400008392 21.5999999237 22.5599999237 22.5599999237 21.5999999237 22.5600009155 23.5200009155 23.5200009155 22.5600009155 23.52 24.48 24.48 23.52 24.4799990845 25.4399990845 25.4399990845 24.4799990845 25.4400000763 26.4000000763 26.4000000763 25.4400000763 26.3999991608 27.3599991608 27.3599991608 26.3999991608 27.3600001526 28.3200001526 28.3200001526 27.3600001526 28.3199992371 29.2799992371 29.2799992371 28.3199992371 29.2800002289 30.2400002289 30.2400002289 29.2800002289 30.2399993134 31.1999993134 31.1999993134 30.2399993134 31.2000003052 32.1600003052 32.1600003052 31.2000003052 32.1599993896 33.1199993896 33.1199993896 32.1599993896 33.1199984741 34.0799984741 34.0799984741 33.1199984741 34.0800013733 35.0400013733 35.0400013733 34.0800013733 35.0400004578 36.0000004578 36.0000004578 35.0400004578 35.9999995422 36.9599995422 36.9599995422 35.9999995422 36.9599986267 37.9199986267 37.9199986267 36.9599986267 37.9200015259 38.8800015259 38.8800015259 37.9200015259 38.8800006104 39.8400006104 39.8400006104 38.8800006104 39.8399996948 40.7999996948 40.7999996948 39.8399996948 40.7999987793 41.7599987793 41.7599987793 40.7999987793 41.7600016785 42.7200016785 42.7200016785 41.7600016785 42.7200007629 43.6800007629 43.6800007629 42.7200007629 43.6799998474 44.6399998474 44.6399998474 43.6799998474 44.6399989319 45.5999989319 45.5999989319 44.6399989319 45.6000018311 46.5600018311 46.5600018311 45.6000018311 46.5600009155 47.5200009155 47.5200009155 46.5600009155 47.52 48.48 48.48 47.52 48.4799990845 49.4399990845 49.4399990845 48.4799990845 49.4399981689 50.3999981689 50.3999981689 49.4399981689 50.4000010681 51.3600010681 51.3600010681 50.4000010681 51.3600001526 52.3200001526 52.3200001526 51.3600001526 52.3199992371 53.2799992371 53.2799992371 52.3199992371 53.2799983215 54.2399983215 54.2399983215 53.2799983215 54.2400012207 55.2000012207 55.2000012207 54.2400012207 55.2000003052 56.1600003052 56.1600003052 55.2000003052 56.1599993896 57.1199993896 57.1199993896 56.1599993896 57.1199984741 58.0799984741 58.0799984741 57.1199984741 58.0800013733 59.0400013733 59.0400013733 58.0800013733 59.0400004578 60.0000004578 60.0000004578 59.0400004578 59.9999995422 60.9599995422 60.9599995422 59.9999995422 60.9599986267 61.9199986267 61.9199986267 60.9599986267 61.9200015259 62.8800015259 62.8800015259 61.9200015259 62.8800006104 63.8400006104 63.8400006104 62.8800006104 63.8399996948 64.7999996948 64.7999996948 63.8399996948 64.7999987793 65.7599987793 65.7599987793 64.7999987793 65.7599978638 66.7199978638 66.7199978638 65.7599978638 66.7199969482 67.6799969482 67.6799969482 66.7199969482 67.6800036621 68.6400036621 68.6400036621 67.6800036621 68.6400027466 69.6000027466 69.6000027466 68.6400027466 69.6000018311 70.5600018311 70.5600018311 69.6000018311 70.5600009155 71.5200009155 71.5200009155 70.5600009155 71.52 72.48 72.48 71.52 72.4799990845 73.4399990845 73.4399990845 72.4799990845 73.4399981689 74.3999981689 74.3999981689 73.4399981689 74.3999972534 75.3599972534 75.3599972534 74.3999972534 75.3599963379 76.3199963379 76.3199963379 75.3599963379 76.3200030518 77.2800030518 77.2800030518 76.3200030518 77.2800021362 78.2400021362 78.2400021362 77.2800021362 78.2400012207 79.2000012207 79.2000012207 78.2400012207 79.2000003052 80.1600003052 80.1600003052 79.2000003052 80.1599993896 81.1199993896 81.1199993896 80.1599993896 81.1199984741 82.0799984741 82.0799984741 81.1199984741 82.0799975586 83.0399975586 83.0399975586 82.0799975586 83.0399966431 83.9999966431 83.9999966431 83.0399966431 84.0000033569 84.9600033569 84.9600033569 84.0000033569 84.9600024414 85.9200024414 85.9200024414 84.9600024414 85.9200015259 86.8800015259 86.8800015259 85.9200015259 86.8800006104 87.8400006104 87.8400006104 86.8800006104 87.8399996948 88.7999996948 88.7999996948 87.8399996948 88.7999987793 89.7599987793 89.7599987793 88.7999987793 89.7599978638 90.7199978638 90.7199978638 89.7599978638 90.7199969482 91.6799969482 91.6799969482 90.7199969482 91.6800036621 92.6400036621 92.6400036621 91.6800036621 92.6400027466 93.6000027466 93.6000027466 92.6400027466 93.6000018311 94.5600018311 94.5600018311 93.6000018311 94.5600009155 95.5200009155 95.5200009155 94.5600009155 95.52 96.48 96.48 95.52 96.4799990845 97.4399990845 97.4399990845 96.4799990845 97.4399981689 98.3999981689 98.3999981689 97.4399981689 98.3999972534 99.3599972534 99.3599972534 98.3999972534 99.3599963379 100.319996338 100.319996338 99.3599963379 100.320003052 101.280003052 101.280003052 100.320003052 101.280002136 102.240002136 102.240002136 101.280002136 102.240001221 103.200001221 103.200001221 102.240001221 103.200000305 104.160000305 104.160000305 103.200000305 104.15999939 105.11999939 105.11999939 104.15999939 105.119998474 106.079998474 106.079998474 105.119998474 106.079997559 107.039997559 107.039997559 106.079997559 107.039996643 107.999996643 107.999996643 107.039996643 108.000003357 108.960003357 108.960003357 108.000003357 108.960002441 109.920002441 109.920002441 108.960002441 109.920001526 110.880001526 110.880001526 109.920001526 110.88000061 111.84000061 111.84000061 110.88000061 111.839999695 112.799999695 112.799999695 111.839999695 112.799998779 113.759998779 113.759998779 112.799998779 113.759997864 114.719997864 114.719997864 113.759997864 114.719996948 115.679996948 115.679996948 114.719996948 115.680003662 116.640003662 116.640003662 115.680003662 116.640002747 117.600002747 117.600002747 116.640002747 117.600001831 118.560001831 118.560001831 117.600001831 118.560000916 119.520000916 119.520000916 118.560000916 119.52 120.48 120.48 119.52 120.479999084 121.439999084 121.439999084 120.479999084 121.439998169 122.399998169 122.399998169 121.439998169 122.399997253 123.359997253 123.359997253 122.399997253 123.359996338 124.319996338 124.319996338 123.359996338 124.320003052 125.280003052 125.280003052 124.320003052 125.280002136 126.240002136 126.240002136 125.280002136 126.240001221 127.200001221 127.200001221 126.240001221 127.200000305 128.160000305 128.160000305 127.200000305 128.15999939 129.11999939 129.11999939 128.15999939 129.120006104 130.080006104 130.080006104 129.120006104 130.079997559 131.039997559 131.039997559 130.079997559 131.040004272 132.000004272 132.000004272 131.040004272 131.999995728 132.959995728 132.959995728 131.999995728 132.960002441 133.920002441 133.920002441 132.960002441 133.919993896 134.879993896 134.879993896 133.919993896 134.88000061 135.84000061 135.84000061 134.88000061 135.840007324 136.800007324 136.800007324 135.840007324 136.799998779 137.759998779 137.759998779 136.799998779 137.760005493 138.720005493 138.720005493 137.760005493 138.719996948 139.679996948 139.679996948 138.719996948 139.680003662 140.640003662 140.640003662 139.680003662 140.639995117 141.599995117 141.599995117 140.639995117 141.600001831 142.560001831 142.560001831 141.600001831 142.559993286 143.519993286 143.519993286 142.559993286 143.52 144.48 144.48 143.52 144.480006714 145.440006714 145.440006714 144.480006714 145.439998169 146.399998169 146.399998169 145.439998169 146.400004883 147.360004883 147.360004883 146.400004883 147.359996338 148.319996338 148.319996338 147.359996338 148.320003052 149.280003052 149.280003052 148.320003052 149.279994507 150.239994507 150.239994507 149.279994507 150.240001221 151.200001221 151.200001221 150.240001221 151.199992676 152.159992676 152.159992676 151.199992676 152.15999939 153.11999939 153.11999939 152.15999939 153.120006104 154.080006104 154.080006104 153.120006104 154.079997559 155.039997559 155.039997559 154.079997559 155.040004272 156.000004272 156.000004272 155.040004272 155.999995728 156.959995728 156.959995728 155.999995728 156.960002441 157.920002441 157.920002441 156.960002441 157.919993896 158.879993896 158.879993896 157.919993896 158.88000061 159.84000061 159.84000061 158.88000061 159.840007324 160.800007324 160.800007324 159.840007324 160.799998779 161.759998779 161.759998779 160.799998779 161.760005493 162.720005493 162.720005493 161.760005493 162.719996948 163.679996948 163.679996948 162.719996948 163.680003662 164.640003662 164.640003662 163.680003662 164.639995117 165.599995117 165.599995117 164.639995117 165.600001831 166.560001831 166.560001831 165.600001831 166.559993286 167.519993286 167.519993286 166.559993286 167.52 168.48 168.48 167.52 168.480006714 169.440006714 169.440006714 168.480006714 169.439998169 170.399998169 170.399998169 169.439998169 170.400004883 171.360004883 171.360004883 170.400004883 171.359996338 172.319996338 172.319996338 171.359996338 172.320003052 173.280003052 173.280003052 172.320003052 173.279994507 174.239994507 174.239994507 173.279994507 174.240001221 175.200001221 175.200001221 174.240001221 175.199992676 176.159992676 176.159992676 175.199992676 176.15999939 177.11999939 177.11999939 176.15999939 177.120006104 178.080006104 178.080006104 177.120006104 178.079997559 179.039997559 179.039997559 178.079997559 179.040004272 180.000004272 180.000004272 179.040004272 179.999995728 180.959995728 180.959995728 179.999995728 180.960002441 181.920002441 181.920002441 180.960002441 181.919993896 182.879993896 182.879993896 181.919993896 182.88000061 183.84000061 183.84000061 182.88000061 183.840007324 184.800007324 184.800007324 183.840007324 184.799998779 185.759998779 185.759998779 184.799998779 185.760005493 186.720005493 186.720005493 185.760005493 186.719996948 187.679996948 187.679996948 186.719996948 187.680003662 188.640003662 188.640003662 187.680003662 188.639995117 189.599995117 189.599995117 188.639995117 189.600001831 190.560001831 190.560001831 189.600001831 190.559993286 191.519993286 191.519993286 190.559993286 191.52 192.48 192.48 191.52 192.480006714 193.440006714 193.440006714 192.480006714 193.439998169 194.399998169 194.399998169 193.439998169 194.400004883 195.360004883 195.360004883 194.400004883 195.359996338 196.319996338 196.319996338 195.359996338 196.320003052 197.280003052 197.280003052 196.320003052 197.279994507 198.239994507 198.239994507 197.279994507 198.240001221 199.200001221 199.200001221 198.240001221 199.199992676 200.159992676 200.159992676 199.199992676 200.15999939 201.11999939 201.11999939 200.15999939 201.120006104 202.080006104 202.080006104 201.120006104 202.079997559 203.039997559 203.039997559 202.079997559 203.040004272 204.000004272 204.000004272 203.040004272 203.999995728 204.959995728 204.959995728 203.999995728 +204.960002441 205.920002441 205.920002441 204.960002441 205.919993896 206.879993896 206.879993896 205.919993896 206.88000061 207.84000061 207.84000061 206.88000061 207.840007324 208.800007324 208.800007324 207.840007324 208.799998779 209.759998779 209.759998779 208.799998779 209.760005493 210.720005493 210.720005493 209.760005493 210.719996948 211.679996948 211.679996948 210.719996948 211.680003662 212.640003662 212.640003662 211.680003662 212.639995117 213.599995117 213.599995117 212.639995117 213.600001831 214.560001831 214.560001831 213.600001831 214.559993286 215.519993286 215.519993286 214.559993286 215.52 216.48 216.48 215.52 216.480006714 217.440006714 217.440006714 216.480006714 217.439998169 218.399998169 218.399998169 217.439998169 218.400004883 219.360004883 219.360004883 218.400004883 219.359996338 220.319996338 220.319996338 219.359996338 220.320003052 221.280003052 221.280003052 220.320003052 221.279994507 222.239994507 222.239994507 221.279994507 222.240001221 223.200001221 223.200001221 222.240001221 223.199992676 224.159992676 224.159992676 223.199992676 224.15999939 225.11999939 225.11999939 224.15999939 225.120006104 226.080006104 226.080006104 225.120006104 226.079997559 227.039997559 227.039997559 226.079997559 227.040004272 228.000004272 228.000004272 227.040004272 227.999995728 228.959995728 228.959995728 227.999995728 228.960002441 229.920002441 229.920002441 228.960002441 229.919993896 230.879993896 230.879993896 229.919993896 230.88000061 231.84000061 231.84000061 230.88000061 231.840007324 232.800007324 232.800007324 231.840007324 232.799998779 233.759998779 233.759998779 232.799998779 233.760005493 234.720005493 234.720005493 233.760005493 234.719996948 235.679996948 235.679996948 234.719996948 235.680003662 236.640003662 236.640003662 235.680003662 236.639995117 237.599995117 237.599995117 236.639995117 237.600001831 238.560001831 238.560001831 237.600001831 238.559993286 239.519993286 239.519993286 238.559993286 239.52 240.48 240.48 239.52 240.480006714 241.440006714 241.440006714 240.480006714 241.439998169 242.399998169 242.399998169 241.439998169 242.400004883 243.360004883 243.360004883 242.400004883 243.359996338 244.319996338 244.319996338 243.359996338 244.320003052 245.280003052 245.280003052 244.320003052 245.279994507 246.239994507 246.239994507 245.279994507 246.240001221 247.200001221 247.200001221 246.240001221 247.199992676 248.159992676 248.159992676 247.199992676 248.15999939 249.11999939 249.11999939 248.15999939 249.120006104 250.080006104 250.080006104 249.120006104 250.079997559 251.039997559 251.039997559 250.079997559 251.040004272 252.000004272 252.000004272 251.040004272 251.999995728 252.959995728 252.959995728 251.999995728 252.960002441 253.920002441 253.920002441 252.960002441 253.919993896 254.879993896 254.879993896 253.919993896 254.88000061 255.84000061 255.84000061 254.88000061 255.840007324 256.800007324 256.800007324 255.840007324 256.799998779 257.759998779 257.759998779 256.799998779 257.759990234 258.719990234 258.719990234 257.759990234 258.720012207 259.680012207 259.680012207 258.720012207 259.680003662 260.640003662 260.640003662 259.680003662 260.639995117 261.599995117 261.599995117 260.639995117 261.599986572 262.559986572 262.559986572 261.599986572 262.560008545 263.520008545 263.520008545 262.560008545 263.52 264.48 264.48 263.52 264.479991455 265.439991455 265.439991455 264.479991455 265.440013428 266.400013428 266.400013428 265.440013428 266.400004883 267.360004883 267.360004883 266.400004883 267.359996338 268.319996338 268.319996338 267.359996338 268.319987793 269.279987793 269.279987793 268.319987793 269.280009766 270.240009766 270.240009766 269.280009766 270.240001221 271.200001221 271.200001221 270.240001221 271.199992676 272.159992676 272.159992676 271.199992676 272.160014648 273.120014648 273.120014648 272.160014648 273.120006104 274.080006104 274.080006104 273.120006104 274.079997559 275.039997559 275.039997559 274.079997559 275.039989014 275.999989014 275.999989014 275.039989014 276.000010986 276.960010986 276.960010986 276.000010986 276.960002441 277.920002441 277.920002441 276.960002441 277.919993896 278.879993896 278.879993896 277.919993896 278.879985352 279.839985352 279.839985352 278.879985352 279.840007324 280.800007324 280.800007324 279.840007324 280.799998779 281.759998779 281.759998779 280.799998779 281.759990234 282.719990234 282.719990234 281.759990234 282.720012207 283.680012207 283.680012207 282.720012207 283.680003662 284.640003662 284.640003662 283.680003662 284.639995117 285.599995117 285.599995117 284.639995117 285.599986572 286.559986572 286.559986572 285.599986572 286.560008545 287.520008545 287.520008545 286.560008545 287.52 288.48 288.48 287.52 288.479991455 289.439991455 289.439991455 288.479991455 289.440013428 290.400013428 290.400013428 289.440013428 290.400004883 291.360004883 291.360004883 290.400004883 291.359996338 292.319996338 292.319996338 291.359996338 292.319987793 293.279987793 293.279987793 292.319987793 293.280009766 294.240009766 294.240009766 293.280009766 294.240001221 295.200001221 295.200001221 294.240001221 295.199992676 296.159992676 296.159992676 295.199992676 296.160014648 297.120014648 297.120014648 296.160014648 297.120006104 298.080006104 298.080006104 297.120006104 298.079997559 299.039997559 299.039997559 298.079997559 299.039989014 299.999989014 299.999989014 299.039989014 300.000010986 300.960010986 300.960010986 300.000010986 300.960002441 301.920002441 301.920002441 300.960002441 301.919993896 302.879993896 302.879993896 301.919993896 302.879985352 303.839985352 303.839985352 302.879985352 303.840007324 304.800007324 304.800007324 303.840007324 304.799998779 305.759998779 305.759998779 304.799998779 305.759990234 306.719990234 306.719990234 305.759990234 306.720012207 307.680012207 307.680012207 306.720012207 307.680003662 308.640003662 308.640003662 307.680003662 308.639995117 309.599995117 309.599995117 308.639995117 309.599986572 310.559986572 310.559986572 309.599986572 310.560008545 311.520008545 311.520008545 310.560008545 311.52 312.48 312.48 311.52 312.479991455 313.439991455 313.439991455 312.479991455 313.440013428 314.400013428 314.400013428 313.440013428 314.400004883 315.360004883 315.360004883 314.400004883 315.359996338 316.319996338 316.319996338 315.359996338 316.319987793 317.279987793 317.279987793 316.319987793 317.280009766 318.240009766 318.240009766 317.280009766 318.240001221 319.200001221 319.200001221 318.240001221 319.199992676 320.159992676 320.159992676 319.199992676 320.160014648 321.120014648 321.120014648 320.160014648 321.120006104 322.080006104 322.080006104 321.120006104 322.079997559 323.039997559 323.039997559 322.079997559 323.039989014 323.999989014 323.999989014 323.039989014 324.000010986 324.960010986 324.960010986 324.000010986 324.960002441 325.920002441 325.920002441 324.960002441 325.919993896 326.879993896 326.879993896 325.919993896 326.879985352 327.839985352 327.839985352 326.879985352 327.840007324 328.800007324 328.800007324 327.840007324 328.799998779 329.759998779 329.759998779 328.799998779 329.759990234 330.719990234 330.719990234 329.759990234 330.720012207 331.680012207 331.680012207 330.720012207 331.680003662 332.640003662 332.640003662 331.680003662 332.639995117 333.599995117 333.599995117 332.639995117 333.599986572 334.559986572 334.559986572 333.599986572 334.560008545 335.520008545 335.520008545 334.560008545 335.52 336.48 336.48 335.52 336.479991455 337.439991455 337.439991455 336.479991455 337.440013428 338.400013428 338.400013428 337.440013428 338.400004883 339.360004883 339.360004883 338.400004883 339.359996338 340.319996338 340.319996338 339.359996338 340.319987793 341.279987793 341.279987793 340.319987793 341.280009766 342.240009766 342.240009766 341.280009766 342.240001221 343.200001221 343.200001221 342.240001221 343.199992676 344.159992676 344.159992676 343.199992676 344.160014648 345.120014648 345.120014648 344.160014648 345.120006104 346.080006104 346.080006104 345.120006104 346.079997559 347.039997559 347.039997559 346.079997559 347.039989014 347.999989014 347.999989014 347.039989014 348.000010986 348.960010986 348.960010986 348.000010986 348.960002441 349.920002441 349.920002441 348.960002441 349.919993896 350.879993896 350.879993896 349.919993896 350.879985352 351.839985352 351.839985352 350.879985352 351.840007324 352.800007324 352.800007324 351.840007324 352.799998779 353.759998779 353.759998779 352.799998779 353.759990234 354.719990234 354.719990234 353.759990234 354.720012207 355.680012207 355.680012207 354.720012207 355.680003662 356.640003662 356.640003662 355.680003662 356.639995117 357.599995117 357.599995117 356.639995117 357.599986572 358.559986572 358.559986572 357.599986572 358.560008545 359.520008545 359.520008545 358.560008545 -0.48 0.48 0.48 -0.48 0.479999978542 1.43999997854 1.43999997854 0.479999978542 1.43999995708 2.39999995708 2.39999995708 1.43999995708 2.40000011444 3.36000011444 3.36000011444 2.40000011444 3.35999991417 4.31999991417 4.31999991417 3.35999991417 4.32000019073 5.28000019073 5.28000019073 4.32000019073 5.28000022888 6.24000022888 6.24000022888 5.28000022888 6.23999979019 7.19999979019 7.19999979019 6.23999979019 7.19999982834 8.15999982834 8.15999982834 7.19999982834 8.16000034332 9.12000034332 9.12000034332 8.16000034332 9.12000038147 10.0800003815 10.0800003815 9.12000038147 10.0800004196 11.0400004196 11.0400004196 10.0800004196 11.0400004578 12.0000004578 12.0000004578 11.0400004578 11.9999995422 12.9599995422 12.9599995422 11.9999995422 12.9599995804 13.9199995804 13.9199995804 12.9599995804 13.9199996185 14.8799996185 14.8799996185 13.9199996185 14.8799996567 15.8399996567 15.8399996567 14.8799996567 15.8399996948 16.7999996948 16.7999996948 15.8399996948 16.8000006866 17.7600006866 17.7600006866 16.8000006866 17.7599997711 18.7199997711 18.7199997711 17.7599997711 18.7200007629 19.6800007629 19.6800007629 18.7200007629 19.6799998474 20.6399998474 20.6399998474 19.6799998474 20.6400008392 21.6000008392 21.6000008392 20.6400008392 21.5999999237 22.5599999237 22.5599999237 21.5999999237 22.5600009155 23.5200009155 23.5200009155 22.5600009155 23.52 24.48 24.48 23.52 24.4799990845 25.4399990845 25.4399990845 24.4799990845 25.4400000763 26.4000000763 26.4000000763 25.4400000763 26.3999991608 27.3599991608 27.3599991608 26.3999991608 27.3600001526 28.3200001526 28.3200001526 27.3600001526 28.3199992371 29.2799992371 29.2799992371 28.3199992371 29.2800002289 30.2400002289 30.2400002289 29.2800002289 30.2399993134 31.1999993134 31.1999993134 30.2399993134 31.2000003052 32.1600003052 32.1600003052 31.2000003052 32.1599993896 33.1199993896 33.1199993896 32.1599993896 33.1199984741 34.0799984741 34.0799984741 33.1199984741 34.0800013733 35.0400013733 35.0400013733 34.0800013733 35.0400004578 36.0000004578 36.0000004578 35.0400004578 35.9999995422 36.9599995422 36.9599995422 35.9999995422 36.9599986267 37.9199986267 37.9199986267 36.9599986267 37.9200015259 38.8800015259 38.8800015259 37.9200015259 38.8800006104 39.8400006104 39.8400006104 38.8800006104 39.8399996948 40.7999996948 40.7999996948 39.8399996948 40.7999987793 41.7599987793 41.7599987793 40.7999987793 41.7600016785 42.7200016785 42.7200016785 41.7600016785 42.7200007629 43.6800007629 43.6800007629 42.7200007629 43.6799998474 44.6399998474 44.6399998474 43.6799998474 44.6399989319 45.5999989319 45.5999989319 44.6399989319 45.6000018311 46.5600018311 46.5600018311 45.6000018311 46.5600009155 47.5200009155 47.5200009155 46.5600009155 47.52 48.48 48.48 47.52 48.4799990845 49.4399990845 49.4399990845 48.4799990845 49.4399981689 50.3999981689 50.3999981689 49.4399981689 50.4000010681 51.3600010681 51.3600010681 50.4000010681 51.3600001526 52.3200001526 52.3200001526 51.3600001526 52.3199992371 53.2799992371 53.2799992371 52.3199992371 53.2799983215 54.2399983215 54.2399983215 53.2799983215 54.2400012207 55.2000012207 55.2000012207 54.2400012207 55.2000003052 56.1600003052 56.1600003052 55.2000003052 56.1599993896 57.1199993896 57.1199993896 56.1599993896 57.1199984741 58.0799984741 58.0799984741 57.1199984741 58.0800013733 59.0400013733 59.0400013733 58.0800013733 59.0400004578 60.0000004578 60.0000004578 59.0400004578 59.9999995422 60.9599995422 60.9599995422 59.9999995422 60.9599986267 61.9199986267 61.9199986267 60.9599986267 61.9200015259 62.8800015259 62.8800015259 61.9200015259 62.8800006104 63.8400006104 63.8400006104 62.8800006104 63.8399996948 64.7999996948 64.7999996948 63.8399996948 64.7999987793 65.7599987793 65.7599987793 64.7999987793 65.7599978638 66.7199978638 66.7199978638 65.7599978638 66.7199969482 67.6799969482 67.6799969482 66.7199969482 67.6800036621 68.6400036621 68.6400036621 67.6800036621 68.6400027466 69.6000027466 69.6000027466 68.6400027466 69.6000018311 70.5600018311 70.5600018311 69.6000018311 70.5600009155 71.5200009155 71.5200009155 70.5600009155 71.52 72.48 72.48 71.52 72.4799990845 73.4399990845 73.4399990845 72.4799990845 73.4399981689 74.3999981689 74.3999981689 73.4399981689 74.3999972534 75.3599972534 75.3599972534 74.3999972534 75.3599963379 76.3199963379 76.3199963379 75.3599963379 76.3200030518 77.2800030518 77.2800030518 76.3200030518 77.2800021362 78.2400021362 78.2400021362 77.2800021362 78.2400012207 79.2000012207 79.2000012207 78.2400012207 79.2000003052 80.1600003052 80.1600003052 79.2000003052 80.1599993896 81.1199993896 81.1199993896 80.1599993896 81.1199984741 82.0799984741 82.0799984741 81.1199984741 82.0799975586 83.0399975586 83.0399975586 82.0799975586 83.0399966431 83.9999966431 83.9999966431 83.0399966431 84.0000033569 84.9600033569 84.9600033569 84.0000033569 84.9600024414 85.9200024414 85.9200024414 84.9600024414 85.9200015259 86.8800015259 86.8800015259 85.9200015259 86.8800006104 87.8400006104 87.8400006104 86.8800006104 87.8399996948 88.7999996948 88.7999996948 87.8399996948 88.7999987793 89.7599987793 89.7599987793 88.7999987793 89.7599978638 90.7199978638 90.7199978638 89.7599978638 90.7199969482 91.6799969482 91.6799969482 90.7199969482 91.6800036621 92.6400036621 92.6400036621 91.6800036621 92.6400027466 93.6000027466 93.6000027466 92.6400027466 93.6000018311 94.5600018311 94.5600018311 93.6000018311 94.5600009155 95.5200009155 95.5200009155 94.5600009155 95.52 96.48 96.48 95.52 96.4799990845 97.4399990845 97.4399990845 96.4799990845 97.4399981689 98.3999981689 98.3999981689 97.4399981689 98.3999972534 99.3599972534 99.3599972534 98.3999972534 99.3599963379 100.319996338 100.319996338 99.3599963379 100.320003052 101.280003052 101.280003052 100.320003052 101.280002136 102.240002136 102.240002136 101.280002136 102.240001221 103.200001221 103.200001221 102.240001221 103.200000305 104.160000305 104.160000305 103.200000305 104.15999939 105.11999939 105.11999939 104.15999939 105.119998474 106.079998474 106.079998474 105.119998474 106.079997559 107.039997559 107.039997559 106.079997559 107.039996643 107.999996643 107.999996643 107.039996643 108.000003357 108.960003357 108.960003357 108.000003357 108.960002441 109.920002441 109.920002441 108.960002441 109.920001526 110.880001526 110.880001526 109.920001526 110.88000061 111.84000061 111.84000061 110.88000061 111.839999695 112.799999695 112.799999695 111.839999695 112.799998779 113.759998779 113.759998779 112.799998779 113.759997864 114.719997864 114.719997864 113.759997864 114.719996948 115.679996948 115.679996948 114.719996948 115.680003662 116.640003662 116.640003662 115.680003662 116.640002747 117.600002747 117.600002747 116.640002747 117.600001831 118.560001831 118.560001831 117.600001831 118.560000916 119.520000916 119.520000916 118.560000916 119.52 120.48 120.48 119.52 120.479999084 121.439999084 121.439999084 120.479999084 121.439998169 122.399998169 122.399998169 121.439998169 122.399997253 123.359997253 123.359997253 122.399997253 123.359996338 124.319996338 124.319996338 123.359996338 124.320003052 125.280003052 125.280003052 124.320003052 125.280002136 126.240002136 126.240002136 125.280002136 126.240001221 127.200001221 127.200001221 126.240001221 127.200000305 128.160000305 128.160000305 127.200000305 128.15999939 129.11999939 129.11999939 128.15999939 129.120006104 130.080006104 130.080006104 129.120006104 130.079997559 131.039997559 131.039997559 130.079997559 131.040004272 132.000004272 132.000004272 131.040004272 131.999995728 132.959995728 132.959995728 131.999995728 132.960002441 133.920002441 133.920002441 132.960002441 133.919993896 134.879993896 134.879993896 133.919993896 134.88000061 135.84000061 135.84000061 134.88000061 135.840007324 136.800007324 136.800007324 135.840007324 136.799998779 137.759998779 137.759998779 136.799998779 137.760005493 138.720005493 138.720005493 137.760005493 138.719996948 139.679996948 139.679996948 138.719996948 139.680003662 140.640003662 140.640003662 139.680003662 140.639995117 141.599995117 141.599995117 140.639995117 141.600001831 142.560001831 142.560001831 141.600001831 142.559993286 143.519993286 143.519993286 142.559993286 143.52 144.48 144.48 143.52 144.480006714 145.440006714 145.440006714 144.480006714 145.439998169 146.399998169 146.399998169 145.439998169 146.400004883 147.360004883 147.360004883 146.400004883 147.359996338 148.319996338 148.319996338 147.359996338 148.320003052 149.280003052 149.280003052 148.320003052 149.279994507 150.239994507 150.239994507 149.279994507 150.240001221 151.200001221 151.200001221 150.240001221 151.199992676 152.159992676 152.159992676 151.199992676 152.15999939 153.11999939 153.11999939 152.15999939 153.120006104 154.080006104 154.080006104 153.120006104 154.079997559 155.039997559 155.039997559 154.079997559 155.040004272 156.000004272 156.000004272 155.040004272 155.999995728 156.959995728 156.959995728 155.999995728 156.960002441 157.920002441 157.920002441 156.960002441 157.919993896 158.879993896 158.879993896 157.919993896 158.88000061 159.84000061 159.84000061 158.88000061 159.840007324 160.800007324 160.800007324 159.840007324 160.799998779 161.759998779 161.759998779 160.799998779 161.760005493 162.720005493 162.720005493 161.760005493 162.719996948 163.679996948 163.679996948 162.719996948 163.680003662 164.640003662 164.640003662 163.680003662 164.639995117 165.599995117 165.599995117 164.639995117 165.600001831 166.560001831 166.560001831 165.600001831 166.559993286 167.519993286 167.519993286 166.559993286 167.52 168.48 168.48 167.52 168.480006714 169.440006714 169.440006714 168.480006714 169.439998169 170.399998169 170.399998169 169.439998169 170.400004883 171.360004883 171.360004883 170.400004883 171.359996338 172.319996338 172.319996338 171.359996338 172.320003052 173.280003052 173.280003052 172.320003052 173.279994507 174.239994507 174.239994507 173.279994507 174.240001221 175.200001221 175.200001221 174.240001221 175.199992676 176.159992676 176.159992676 175.199992676 176.15999939 177.11999939 177.11999939 176.15999939 177.120006104 178.080006104 178.080006104 177.120006104 178.079997559 179.039997559 179.039997559 178.079997559 179.040004272 180.000004272 180.000004272 179.040004272 179.999995728 180.959995728 180.959995728 179.999995728 180.960002441 181.920002441 181.920002441 180.960002441 181.919993896 182.879993896 182.879993896 181.919993896 182.88000061 183.84000061 183.84000061 182.88000061 183.840007324 184.800007324 184.800007324 183.840007324 184.799998779 185.759998779 185.759998779 184.799998779 185.760005493 186.720005493 186.720005493 185.760005493 186.719996948 187.679996948 187.679996948 186.719996948 187.680003662 188.640003662 188.640003662 187.680003662 188.639995117 189.599995117 189.599995117 188.639995117 189.600001831 190.560001831 190.560001831 189.600001831 190.559993286 191.519993286 191.519993286 190.559993286 191.52 192.48 192.48 191.52 192.480006714 193.440006714 193.440006714 192.480006714 193.439998169 194.399998169 194.399998169 193.439998169 194.400004883 195.360004883 195.360004883 194.400004883 195.359996338 196.319996338 196.319996338 195.359996338 196.320003052 197.280003052 197.280003052 196.320003052 197.279994507 198.239994507 198.239994507 197.279994507 198.240001221 199.200001221 199.200001221 198.240001221 199.199992676 200.159992676 200.159992676 199.199992676 200.15999939 201.11999939 201.11999939 200.15999939 201.120006104 202.080006104 202.080006104 201.120006104 202.079997559 203.039997559 203.039997559 202.079997559 203.040004272 204.000004272 204.000004272 203.040004272 203.999995728 204.959995728 204.959995728 203.999995728 204.960002441 205.920002441 205.920002441 204.960002441 205.919993896 206.879993896 206.879993896 205.919993896 206.88000061 207.84000061 207.84000061 206.88000061 207.840007324 208.800007324 208.800007324 207.840007324 208.799998779 209.759998779 209.759998779 208.799998779 209.760005493 210.720005493 210.720005493 209.760005493 210.719996948 211.679996948 211.679996948 210.719996948 211.680003662 212.640003662 212.640003662 211.680003662 212.639995117 213.599995117 213.599995117 212.639995117 213.600001831 214.560001831 214.560001831 213.600001831 214.559993286 215.519993286 215.519993286 214.559993286 215.52 216.48 216.48 215.52 216.480006714 217.440006714 217.440006714 216.480006714 217.439998169 218.399998169 218.399998169 217.439998169 218.400004883 219.360004883 219.360004883 218.400004883 219.359996338 220.319996338 220.319996338 219.359996338 220.320003052 221.280003052 221.280003052 220.320003052 221.279994507 222.239994507 222.239994507 221.279994507 222.240001221 223.200001221 223.200001221 222.240001221 223.199992676 224.159992676 224.159992676 223.199992676 224.15999939 225.11999939 225.11999939 224.15999939 225.120006104 226.080006104 226.080006104 225.120006104 226.079997559 227.039997559 227.039997559 226.079997559 227.040004272 228.000004272 228.000004272 227.040004272 227.999995728 228.959995728 228.959995728 227.999995728 228.960002441 229.920002441 229.920002441 228.960002441 229.919993896 230.879993896 230.879993896 229.919993896 230.88000061 231.84000061 231.84000061 230.88000061 231.840007324 232.800007324 232.800007324 231.840007324 232.799998779 233.759998779 233.759998779 232.799998779 233.760005493 234.720005493 234.720005493 233.760005493 234.719996948 235.679996948 235.679996948 234.719996948 235.680003662 236.640003662 236.640003662 235.680003662 236.639995117 237.599995117 237.599995117 236.639995117 237.600001831 238.560001831 238.560001831 237.600001831 238.559993286 239.519993286 239.519993286 238.559993286 239.52 240.48 240.48 239.52 240.480006714 241.440006714 241.440006714 240.480006714 241.439998169 242.399998169 242.399998169 241.439998169 242.400004883 243.360004883 243.360004883 242.400004883 243.359996338 244.319996338 244.319996338 243.359996338 244.320003052 245.280003052 245.280003052 244.320003052 245.279994507 246.239994507 246.239994507 245.279994507 246.240001221 247.200001221 247.200001221 246.240001221 247.199992676 248.159992676 248.159992676 247.199992676 248.15999939 249.11999939 249.11999939 248.15999939 249.120006104 250.080006104 250.080006104 249.120006104 250.079997559 251.039997559 251.039997559 250.079997559 251.040004272 252.000004272 252.000004272 251.040004272 251.999995728 252.959995728 252.959995728 251.999995728 252.960002441 253.920002441 253.920002441 252.960002441 253.919993896 254.879993896 254.879993896 253.919993896 254.88000061 255.84000061 255.84000061 254.88000061 255.840007324 256.800007324 256.800007324 255.840007324 256.799998779 257.759998779 257.759998779 256.799998779 257.759990234 258.719990234 258.719990234 257.759990234 258.720012207 259.680012207 259.680012207 258.720012207 259.680003662 260.640003662 260.640003662 259.680003662 260.639995117 261.599995117 261.599995117 260.639995117 261.599986572 262.559986572 262.559986572 261.599986572 262.560008545 263.520008545 263.520008545 262.560008545 263.52 264.48 264.48 263.52 264.479991455 265.439991455 265.439991455 264.479991455 265.440013428 266.400013428 266.400013428 265.440013428 266.400004883 267.360004883 267.360004883 266.400004883 267.359996338 268.319996338 268.319996338 267.359996338 268.319987793 269.279987793 269.279987793 268.319987793 269.280009766 270.240009766 270.240009766 269.280009766 270.240001221 271.200001221 271.200001221 270.240001221 271.199992676 272.159992676 272.159992676 271.199992676 272.160014648 273.120014648 273.120014648 272.160014648 273.120006104 274.080006104 274.080006104 273.120006104 274.079997559 275.039997559 275.039997559 274.079997559 275.039989014 275.999989014 275.999989014 275.039989014 276.000010986 276.960010986 276.960010986 276.000010986 276.960002441 277.920002441 277.920002441 276.960002441 277.919993896 278.879993896 278.879993896 277.919993896 278.879985352 279.839985352 279.839985352 278.879985352 279.840007324 280.800007324 280.800007324 279.840007324 280.799998779 281.759998779 281.759998779 280.799998779 281.759990234 282.719990234 282.719990234 281.759990234 282.720012207 283.680012207 283.680012207 282.720012207 283.680003662 284.640003662 284.640003662 283.680003662 284.639995117 285.599995117 285.599995117 284.639995117 285.599986572 286.559986572 286.559986572 285.599986572 286.560008545 287.520008545 287.520008545 286.560008545 287.52 288.48 288.48 287.52 288.479991455 289.439991455 289.439991455 288.479991455 289.440013428 290.400013428 290.400013428 289.440013428 290.400004883 291.360004883 291.360004883 290.400004883 291.359996338 292.319996338 292.319996338 291.359996338 292.319987793 293.279987793 293.279987793 292.319987793 293.280009766 294.240009766 294.240009766 293.280009766 294.240001221 295.200001221 295.200001221 294.240001221 295.199992676 296.159992676 296.159992676 295.199992676 296.160014648 297.120014648 297.120014648 296.160014648 297.120006104 298.080006104 298.080006104 297.120006104 298.079997559 299.039997559 299.039997559 298.079997559 299.039989014 299.999989014 299.999989014 299.039989014 300.000010986 300.960010986 300.960010986 300.000010986 300.960002441 301.920002441 301.920002441 300.960002441 301.919993896 302.879993896 302.879993896 301.919993896 302.879985352 303.839985352 303.839985352 302.879985352 303.840007324 304.800007324 304.800007324 303.840007324 304.799998779 305.759998779 305.759998779 304.799998779 305.759990234 306.719990234 306.719990234 305.759990234 306.720012207 307.680012207 307.680012207 306.720012207 307.680003662 308.640003662 308.640003662 307.680003662 308.639995117 309.599995117 309.599995117 308.639995117 309.599986572 310.559986572 310.559986572 309.599986572 310.560008545 311.520008545 311.520008545 310.560008545 311.52 312.48 312.48 311.52 312.479991455 313.439991455 313.439991455 312.479991455 313.440013428 314.400013428 314.400013428 313.440013428 314.400004883 315.360004883 315.360004883 314.400004883 315.359996338 316.319996338 316.319996338 315.359996338 316.319987793 317.279987793 317.279987793 316.319987793 317.280009766 318.240009766 318.240009766 317.280009766 318.240001221 319.200001221 319.200001221 318.240001221 319.199992676 320.159992676 320.159992676 319.199992676 320.160014648 321.120014648 321.120014648 320.160014648 321.120006104 322.080006104 322.080006104 321.120006104 322.079997559 323.039997559 323.039997559 322.079997559 323.039989014 323.999989014 323.999989014 323.039989014 324.000010986 324.960010986 324.960010986 324.000010986 +324.960002441 325.920002441 325.920002441 324.960002441 325.919993896 326.879993896 326.879993896 325.919993896 326.879985352 327.839985352 327.839985352 326.879985352 327.840007324 328.800007324 328.800007324 327.840007324 328.799998779 329.759998779 329.759998779 328.799998779 329.759990234 330.719990234 330.719990234 329.759990234 330.720012207 331.680012207 331.680012207 330.720012207 331.680003662 332.640003662 332.640003662 331.680003662 332.639995117 333.599995117 333.599995117 332.639995117 333.599986572 334.559986572 334.559986572 333.599986572 334.560008545 335.520008545 335.520008545 334.560008545 335.52 336.48 336.48 335.52 336.479991455 337.439991455 337.439991455 336.479991455 337.440013428 338.400013428 338.400013428 337.440013428 338.400004883 339.360004883 339.360004883 338.400004883 339.359996338 340.319996338 340.319996338 339.359996338 340.319987793 341.279987793 341.279987793 340.319987793 341.280009766 342.240009766 342.240009766 341.280009766 342.240001221 343.200001221 343.200001221 342.240001221 343.199992676 344.159992676 344.159992676 343.199992676 344.160014648 345.120014648 345.120014648 344.160014648 345.120006104 346.080006104 346.080006104 345.120006104 346.079997559 347.039997559 347.039997559 346.079997559 347.039989014 347.999989014 347.999989014 347.039989014 348.000010986 348.960010986 348.960010986 348.000010986 348.960002441 349.920002441 349.920002441 348.960002441 349.919993896 350.879993896 350.879993896 349.919993896 350.879985352 351.839985352 351.839985352 350.879985352 351.840007324 352.800007324 352.800007324 351.840007324 352.799998779 353.759998779 353.759998779 352.799998779 353.759990234 354.719990234 354.719990234 353.759990234 354.720012207 355.680012207 355.680012207 354.720012207 355.680003662 356.640003662 356.640003662 355.680003662 356.639995117 357.599995117 357.599995117 356.639995117 357.599986572 358.559986572 358.559986572 357.599986572 358.560008545 359.520008545 359.520008545 358.560008545 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 +103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 +243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 +23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 +163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.5 0.5 0.5 -0.5 0.5 1.5 1.5 0.5 1.5 2.5 2.5 1.5 2.5 3.5 3.5 2.5 3.5 4.5 4.5 3.5 4.5 5.5 5.5 4.5 5.5 6.5 6.5 5.5 6.5 7.5 7.5 6.5 7.5 8.5 8.5 7.5 8.5 9.5 9.5 8.5 9.5 10.5 10.5 9.5 10.5 11.5 11.5 10.5 11.5 12.5 12.5 11.5 12.5 13.5 13.5 12.5 13.5 14.5 14.5 13.5 14.5 15.5 15.5 14.5 15.5 16.5 16.5 15.5 16.5 17.5 17.5 16.5 17.5 18.5 18.5 17.5 18.5 19.5 19.5 18.5 19.5 20.5 20.5 19.5 20.5 21.5 21.5 20.5 21.5 22.5 22.5 21.5 22.5 23.5 23.5 22.5 23.5 24.5 24.5 23.5 24.5 25.5 25.5 24.5 25.5 26.5 26.5 25.5 26.5 27.5 27.5 26.5 27.5 28.5 28.5 27.5 28.5 29.5 29.5 28.5 29.5 30.5 30.5 29.5 30.5 31.5 31.5 30.5 31.5 32.5 32.5 31.5 32.5 33.5 33.5 32.5 33.5 34.5 34.5 33.5 34.5 35.5 35.5 34.5 35.5 36.5 36.5 35.5 36.5 37.5 37.5 36.5 37.5 38.5 38.5 37.5 38.5 39.5 39.5 38.5 39.5 40.5 40.5 39.5 40.5 41.5 41.5 40.5 41.5 42.5 42.5 41.5 42.5 43.5 43.5 42.5 43.5 44.5 44.5 43.5 44.5 45.5 45.5 44.5 45.5 46.5 46.5 45.5 46.5 47.5 47.5 46.5 47.5 48.5 48.5 47.5 48.5 49.5 49.5 48.5 49.5 50.5 50.5 49.5 50.5 51.5 51.5 50.5 51.5 52.5 52.5 51.5 52.5 53.5 53.5 52.5 53.5 54.5 54.5 53.5 54.5 55.5 55.5 54.5 55.5 56.5 56.5 55.5 56.5 57.5 57.5 56.5 57.5 58.5 58.5 57.5 58.5 59.5 59.5 58.5 59.5 60.5 60.5 59.5 60.5 61.5 61.5 60.5 61.5 62.5 62.5 61.5 62.5 63.5 63.5 62.5 63.5 64.5 64.5 63.5 64.5 65.5 65.5 64.5 65.5 66.5 66.5 65.5 66.5 67.5 67.5 66.5 67.5 68.5 68.5 67.5 68.5 69.5 69.5 68.5 69.5 70.5 70.5 69.5 70.5 71.5 71.5 70.5 71.5 72.5 72.5 71.5 72.5 73.5 73.5 72.5 73.5 74.5 74.5 73.5 74.5 75.5 75.5 74.5 75.5 76.5 76.5 75.5 76.5 77.5 77.5 76.5 77.5 78.5 78.5 77.5 78.5 79.5 79.5 78.5 79.5 80.5 80.5 79.5 80.5 81.5 81.5 80.5 81.5 82.5 82.5 81.5 82.5 83.5 83.5 82.5 83.5 84.5 84.5 83.5 84.5 85.5 85.5 84.5 85.5 86.5 86.5 85.5 86.5 87.5 87.5 86.5 87.5 88.5 88.5 87.5 88.5 89.5 89.5 88.5 89.5 90.5 90.5 89.5 90.5 91.5 91.5 90.5 91.5 92.5 92.5 91.5 92.5 93.5 93.5 92.5 93.5 94.5 94.5 93.5 94.5 95.5 95.5 94.5 95.5 96.5 96.5 95.5 96.5 97.5 97.5 96.5 97.5 98.5 98.5 97.5 98.5 99.5 99.5 98.5 99.5 100.5 100.5 99.5 100.5 101.5 101.5 100.5 101.5 102.5 102.5 101.5 102.5 103.5 103.5 102.5 103.5 104.5 104.5 103.5 104.5 105.5 105.5 104.5 105.5 106.5 106.5 105.5 106.5 107.5 107.5 106.5 107.5 108.5 108.5 107.5 108.5 109.5 109.5 108.5 109.5 110.5 110.5 109.5 110.5 111.5 111.5 110.5 111.5 112.5 112.5 111.5 112.5 113.5 113.5 112.5 113.5 114.5 114.5 113.5 114.5 115.5 115.5 114.5 115.5 116.5 116.5 115.5 116.5 117.5 117.5 116.5 117.5 118.5 118.5 117.5 118.5 119.5 119.5 118.5 119.5 120.5 120.5 119.5 120.5 121.5 121.5 120.5 121.5 122.5 122.5 121.5 122.5 123.5 123.5 122.5 123.5 124.5 124.5 123.5 124.5 125.5 125.5 124.5 125.5 126.5 126.5 125.5 126.5 127.5 127.5 126.5 127.5 128.5 128.5 127.5 128.5 129.5 129.5 128.5 129.5 130.5 130.5 129.5 130.5 131.5 131.5 130.5 131.5 132.5 132.5 131.5 132.5 133.5 133.5 132.5 133.5 134.5 134.5 133.5 134.5 135.5 135.5 134.5 135.5 136.5 136.5 135.5 136.5 137.5 137.5 136.5 137.5 138.5 138.5 137.5 138.5 139.5 139.5 138.5 139.5 140.5 140.5 139.5 140.5 141.5 141.5 140.5 141.5 142.5 142.5 141.5 142.5 143.5 143.5 142.5 143.5 144.5 144.5 143.5 144.5 145.5 145.5 144.5 145.5 146.5 146.5 145.5 146.5 147.5 147.5 146.5 147.5 148.5 148.5 147.5 148.5 149.5 149.5 148.5 149.5 150.5 150.5 149.5 150.5 151.5 151.5 150.5 151.5 152.5 152.5 151.5 152.5 153.5 153.5 152.5 153.5 154.5 154.5 153.5 154.5 155.5 155.5 154.5 155.5 156.5 156.5 155.5 156.5 157.5 157.5 156.5 157.5 158.5 158.5 157.5 158.5 159.5 159.5 158.5 159.5 160.5 160.5 159.5 160.5 161.5 161.5 160.5 161.5 162.5 162.5 161.5 162.5 163.5 163.5 162.5 163.5 164.5 164.5 163.5 164.5 165.5 165.5 164.5 165.5 166.5 166.5 165.5 166.5 167.5 167.5 166.5 167.5 168.5 168.5 167.5 168.5 169.5 169.5 168.5 169.5 170.5 170.5 169.5 170.5 171.5 171.5 170.5 171.5 172.5 172.5 171.5 172.5 173.5 173.5 172.5 173.5 174.5 174.5 173.5 174.5 175.5 175.5 174.5 175.5 176.5 176.5 175.5 176.5 177.5 177.5 176.5 177.5 178.5 178.5 177.5 178.5 179.5 179.5 178.5 179.5 180.5 180.5 179.5 180.5 181.5 181.5 180.5 181.5 182.5 182.5 181.5 182.5 183.5 183.5 182.5 183.5 184.5 184.5 183.5 184.5 185.5 185.5 184.5 185.5 186.5 186.5 185.5 186.5 187.5 187.5 186.5 187.5 188.5 188.5 187.5 188.5 189.5 189.5 188.5 189.5 190.5 190.5 189.5 190.5 191.5 191.5 190.5 191.5 192.5 192.5 191.5 192.5 193.5 193.5 192.5 193.5 194.5 194.5 193.5 194.5 195.5 195.5 194.5 195.5 196.5 196.5 195.5 196.5 197.5 197.5 196.5 197.5 198.5 198.5 197.5 198.5 199.5 199.5 198.5 199.5 200.5 200.5 199.5 200.5 201.5 201.5 200.5 201.5 202.5 202.5 201.5 202.5 203.5 203.5 202.5 203.5 204.5 204.5 203.5 204.5 205.5 205.5 204.5 205.5 206.5 206.5 205.5 206.5 207.5 207.5 206.5 207.5 208.5 208.5 207.5 208.5 209.5 209.5 208.5 209.5 210.5 210.5 209.5 210.5 211.5 211.5 210.5 211.5 212.5 212.5 211.5 212.5 213.5 213.5 212.5 213.5 214.5 214.5 213.5 214.5 215.5 215.5 214.5 215.5 216.5 216.5 215.5 216.5 217.5 217.5 216.5 217.5 218.5 218.5 217.5 218.5 219.5 219.5 218.5 219.5 220.5 220.5 219.5 220.5 221.5 221.5 220.5 221.5 222.5 222.5 221.5 222.5 223.5 223.5 222.5 223.5 224.5 224.5 223.5 224.5 225.5 225.5 224.5 225.5 226.5 226.5 225.5 226.5 227.5 227.5 226.5 227.5 228.5 228.5 227.5 228.5 229.5 229.5 228.5 229.5 230.5 230.5 229.5 230.5 231.5 231.5 230.5 231.5 232.5 232.5 231.5 232.5 233.5 233.5 232.5 233.5 234.5 234.5 233.5 234.5 235.5 235.5 234.5 235.5 236.5 236.5 235.5 236.5 237.5 237.5 236.5 237.5 238.5 238.5 237.5 238.5 239.5 239.5 238.5 239.5 240.5 240.5 239.5 240.5 241.5 241.5 240.5 241.5 242.5 242.5 241.5 242.5 243.5 243.5 242.5 243.5 244.5 244.5 243.5 244.5 245.5 245.5 244.5 245.5 246.5 246.5 245.5 246.5 247.5 247.5 246.5 247.5 248.5 248.5 247.5 248.5 249.5 249.5 248.5 249.5 250.5 250.5 249.5 250.5 251.5 251.5 250.5 251.5 252.5 252.5 251.5 252.5 253.5 253.5 252.5 253.5 254.5 254.5 253.5 254.5 255.5 255.5 254.5 255.5 256.5 256.5 255.5 256.5 257.5 257.5 256.5 257.5 258.5 258.5 257.5 258.5 259.5 259.5 258.5 259.5 260.5 260.5 259.5 260.5 261.5 261.5 260.5 261.5 262.5 262.5 261.5 262.5 263.5 263.5 262.5 263.5 264.5 264.5 263.5 264.5 265.5 265.5 264.5 265.5 266.5 266.5 265.5 266.5 267.5 267.5 266.5 267.5 268.5 268.5 267.5 268.5 269.5 269.5 268.5 269.5 270.5 270.5 269.5 270.5 271.5 271.5 270.5 271.5 272.5 272.5 271.5 272.5 273.5 273.5 272.5 273.5 274.5 274.5 273.5 274.5 275.5 275.5 274.5 275.5 276.5 276.5 275.5 276.5 277.5 277.5 276.5 277.5 278.5 278.5 277.5 278.5 279.5 279.5 278.5 279.5 280.5 280.5 279.5 280.5 281.5 281.5 280.5 281.5 282.5 282.5 281.5 282.5 283.5 283.5 282.5 283.5 284.5 284.5 283.5 284.5 285.5 285.5 284.5 285.5 286.5 286.5 285.5 286.5 287.5 287.5 286.5 287.5 288.5 288.5 287.5 288.5 289.5 289.5 288.5 289.5 290.5 290.5 289.5 290.5 291.5 291.5 290.5 291.5 292.5 292.5 291.5 292.5 293.5 293.5 292.5 293.5 294.5 294.5 293.5 294.5 295.5 295.5 294.5 295.5 296.5 296.5 295.5 296.5 297.5 297.5 296.5 297.5 298.5 298.5 297.5 298.5 299.5 299.5 298.5 299.5 300.5 300.5 299.5 300.5 301.5 301.5 300.5 301.5 302.5 302.5 301.5 302.5 303.5 303.5 302.5 +303.5 304.5 304.5 303.5 304.5 305.5 305.5 304.5 305.5 306.5 306.5 305.5 306.5 307.5 307.5 306.5 307.5 308.5 308.5 307.5 308.5 309.5 309.5 308.5 309.5 310.5 310.5 309.5 310.5 311.5 311.5 310.5 311.5 312.5 312.5 311.5 312.5 313.5 313.5 312.5 313.5 314.5 314.5 313.5 314.5 315.5 315.5 314.5 315.5 316.5 316.5 315.5 316.5 317.5 317.5 316.5 317.5 318.5 318.5 317.5 318.5 319.5 319.5 318.5 319.5 320.5 320.5 319.5 320.5 321.5 321.5 320.5 321.5 322.5 322.5 321.5 322.5 323.5 323.5 322.5 323.5 324.5 324.5 323.5 324.5 325.5 325.5 324.5 325.5 326.5 326.5 325.5 326.5 327.5 327.5 326.5 327.5 328.5 328.5 327.5 328.5 329.5 329.5 328.5 329.5 330.5 330.5 329.5 330.5 331.5 331.5 330.5 331.5 332.5 332.5 331.5 332.5 333.5 333.5 332.5 333.5 334.5 334.5 333.5 334.5 335.5 335.5 334.5 335.5 336.5 336.5 335.5 336.5 337.5 337.5 336.5 337.5 338.5 338.5 337.5 338.5 339.5 339.5 338.5 339.5 340.5 340.5 339.5 340.5 341.5 341.5 340.5 341.5 342.5 342.5 341.5 342.5 343.5 343.5 342.5 343.5 344.5 344.5 343.5 344.5 345.5 345.5 344.5 345.5 346.5 346.5 345.5 346.5 347.5 347.5 346.5 347.5 348.5 348.5 347.5 348.5 349.5 349.5 348.5 349.5 350.5 350.5 349.5 350.5 351.5 351.5 350.5 351.5 352.5 352.5 351.5 352.5 353.5 353.5 352.5 353.5 354.5 354.5 353.5 354.5 355.5 355.5 354.5 355.5 356.5 356.5 355.5 356.5 357.5 357.5 356.5 357.5 358.5 358.5 357.5 358.5 359.5 359.5 358.5 -0.555555555556 0.555555555556 0.555555555556 -0.555555555556 0.555555608537 1.66666671965 1.66666671965 0.555555608537 1.66666677263 2.77777788374 2.77777788374 1.66666677263 2.7777776983 3.88888880942 3.88888880942 2.7777776983 3.88888910082 5.00000021193 5.00000021193 3.88888910082 4.99999978807 6.11111089918 6.11111089918 4.99999978807 6.11111095217 7.22222206328 7.22222206328 6.11111095217 7.22222211626 8.33333322737 8.33333322737 7.22222211626 8.33333375719 9.4444448683 9.4444448683 8.33333375719 9.44444444444 10.5555555556 10.5555555556 9.44444444444 10.5555551317 11.6666662428 11.6666662428 10.5555551317 11.6666667726 12.7777778837 12.7777778837 11.6666667726 12.7777774599 13.888888571 13.888888571 12.7777774599 13.8888891008 15.0000002119 15.0000002119 13.8888891008 14.9999997881 16.1111108992 16.1111108992 14.9999997881 16.1111104753 17.2222215864 17.2222215864 16.1111104753 17.2222230699 18.333334181 18.333334181 17.2222230699 18.3333337572 19.4444448683 19.4444448683 18.3333337572 19.4444444444 20.5555555556 20.5555555556 19.4444444444 20.5555551317 21.6666662428 21.6666662428 20.5555551317 21.666665819 22.7777769301 22.7777769301 21.666665819 22.7777784136 23.8888895247 23.8888895247 22.7777784136 23.8888891008 25.0000002119 25.0000002119 23.8888891008 24.9999997881 26.1111108992 26.1111108992 24.9999997881 26.1111104753 27.2222215864 27.2222215864 26.1111104753 27.2222230699 28.333334181 28.333334181 27.2222230699 28.3333337572 29.4444448683 29.4444448683 28.3333337572 29.4444444444 30.5555555556 30.5555555556 29.4444444444 30.5555551317 31.6666662428 31.6666662428 30.5555551317 31.666665819 32.7777769301 32.7777769301 31.666665819 32.7777765062 33.8888876173 33.8888876173 32.7777765062 33.8888871935 34.9999983046 34.9999983046 33.8888871935 35.0000016954 36.1111128065 36.1111128065 35.0000016954 36.1111123827 37.2222234938 37.2222234938 36.1111123827 37.2222230699 38.333334181 38.333334181 37.2222230699 38.3333337572 39.4444448683 39.4444448683 38.3333337572 39.4444444444 40.5555555556 40.5555555556 39.4444444444 40.5555551317 41.6666662428 41.6666662428 40.5555551317 41.666665819 42.7777769301 42.7777769301 41.666665819 42.7777765062 43.8888876173 43.8888876173 42.7777765062 43.8888871935 44.9999983046 44.9999983046 43.8888871935 45.0000016954 46.1111128065 46.1111128065 45.0000016954 46.1111123827 47.2222234938 47.2222234938 46.1111123827 47.2222230699 48.333334181 48.333334181 47.2222230699 48.3333337572 49.4444448683 49.4444448683 48.3333337572 49.4444444444 50.5555555556 50.5555555556 49.4444444444 50.5555551317 51.6666662428 51.6666662428 50.5555551317 51.666665819 52.7777769301 52.7777769301 51.666665819 52.7777765062 53.8888876173 53.8888876173 52.7777765062 53.8888871935 54.9999983046 54.9999983046 53.8888871935 55.0000016954 56.1111128065 56.1111128065 55.0000016954 56.1111123827 57.2222234938 57.2222234938 56.1111123827 57.2222230699 58.333334181 58.333334181 57.2222230699 58.3333337572 59.4444448683 59.4444448683 58.3333337572 59.4444444444 60.5555555556 60.5555555556 59.4444444444 60.5555551317 61.6666662428 61.6666662428 60.5555551317 61.666665819 62.7777769301 62.7777769301 61.666665819 62.7777765062 63.8888876173 63.8888876173 62.7777765062 63.8888871935 64.9999983046 64.9999983046 63.8888871935 65.0000016954 66.1111128065 66.1111128065 65.0000016954 66.111108568 67.2222196791 67.2222196791 66.111108568 67.2222230699 68.333334181 68.333334181 67.2222230699 68.3333299425 69.4444410536 69.4444410536 68.3333299425 69.4444444444 70.5555555556 70.5555555556 69.4444444444 70.5555589464 71.6666700575 71.6666700575 70.5555589464 71.666665819 72.7777769301 72.7777769301 71.666665819 72.7777803209 73.888891432 73.888891432 72.7777803209 73.8888871935 74.9999983046 74.9999983046 73.8888871935 75.0000016954 76.1111128065 76.1111128065 75.0000016954 76.111108568 77.2222196791 77.2222196791 76.111108568 77.2222230699 78.333334181 78.333334181 77.2222230699 78.3333299425 79.4444410536 79.4444410536 78.3333299425 79.4444444444 80.5555555556 80.5555555556 79.4444444444 80.5555589464 81.6666700575 81.6666700575 80.5555589464 81.666665819 82.7777769301 82.7777769301 81.666665819 82.7777803209 83.888891432 83.888891432 82.7777803209 83.8888871935 84.9999983046 84.9999983046 83.8888871935 85.0000016954 86.1111128065 86.1111128065 85.0000016954 86.111108568 87.2222196791 87.2222196791 86.111108568 87.2222230699 88.333334181 88.333334181 87.2222230699 88.3333299425 89.4444410536 89.4444410536 88.3333299425 89.4444444444 90.5555555556 90.5555555556 89.4444444444 90.5555589464 91.6666700575 91.6666700575 90.5555589464 91.666665819 92.7777769301 92.7777769301 91.666665819 92.7777803209 93.888891432 93.888891432 92.7777803209 93.8888871935 94.9999983046 94.9999983046 93.8888871935 95.0000016954 96.1111128065 96.1111128065 95.0000016954 96.111108568 97.2222196791 97.2222196791 96.111108568 97.2222230699 98.333334181 98.333334181 97.2222230699 98.3333299425 99.4444410536 99.4444410536 98.3333299425 99.4444444444 100.555555556 100.555555556 99.4444444444 100.555558946 101.666670058 101.666670058 100.555558946 101.666665819 102.77777693 102.77777693 101.666665819 102.777780321 103.888891432 103.888891432 102.777780321 103.888887193 104.999998305 104.999998305 103.888887193 105.000001695 106.111112807 106.111112807 105.000001695 106.111108568 107.222219679 107.222219679 106.111108568 107.22222307 108.333334181 108.333334181 107.22222307 108.333329942 109.444441054 109.444441054 108.333329942 109.444444444 110.555555556 110.555555556 109.444444444 110.555558946 111.666670058 111.666670058 110.555558946 111.666665819 112.77777693 112.77777693 111.666665819 112.777780321 113.888891432 113.888891432 112.777780321 113.888887193 114.999998305 114.999998305 113.888887193 115.000001695 116.111112807 116.111112807 115.000001695 116.111108568 117.222219679 117.222219679 116.111108568 117.22222307 118.333334181 118.333334181 117.22222307 118.333329942 119.444441054 119.444441054 118.333329942 119.444444444 120.555555556 120.555555556 119.444444444 120.555558946 121.666670058 121.666670058 120.555558946 121.666665819 122.77777693 122.77777693 121.666665819 122.777780321 123.888891432 123.888891432 122.777780321 123.888887193 124.999998305 124.999998305 123.888887193 125.000001695 126.111112807 126.111112807 125.000001695 126.111108568 127.222219679 127.222219679 126.111108568 127.22222307 128.333334181 128.333334181 127.22222307 128.333329942 129.444441054 129.444441054 128.333329942 129.444444444 130.555555556 130.555555556 129.444444444 130.555558946 131.666670058 131.666670058 130.555558946 131.666673448 132.777784559 132.777784559 131.666673448 132.777772692 133.888883803 133.888883803 132.777772692 133.888887193 134.999998305 134.999998305 133.888887193 135.000001695 136.111112807 136.111112807 135.000001695 136.111116197 137.222227308 137.222227308 136.111116197 137.222215441 138.333326552 138.333326552 137.222215441 138.333329942 139.444441054 139.444441054 138.333329942 139.444444444 140.555555556 140.555555556 139.444444444 140.555558946 141.666670058 141.666670058 140.555558946 141.666673448 142.777784559 142.777784559 141.666673448 142.777772692 143.888883803 143.888883803 142.777772692 143.888887193 144.999998305 144.999998305 143.888887193 145.000001695 146.111112807 146.111112807 145.000001695 146.111116197 147.222227308 147.222227308 146.111116197 147.222215441 148.333326552 148.333326552 147.222215441 148.333329942 149.444441054 149.444441054 148.333329942 149.444444444 150.555555556 150.555555556 149.444444444 150.555558946 151.666670058 151.666670058 150.555558946 151.666673448 152.777784559 152.777784559 151.666673448 152.777772692 153.888883803 153.888883803 152.777772692 153.888887193 154.999998305 154.999998305 153.888887193 155.000001695 156.111112807 156.111112807 155.000001695 156.111116197 157.222227308 157.222227308 156.111116197 157.222215441 158.333326552 158.333326552 157.222215441 158.333329942 159.444441054 159.444441054 158.333329942 159.444444444 160.555555556 160.555555556 159.444444444 160.555558946 161.666670058 161.666670058 160.555558946 161.666673448 162.777784559 162.777784559 161.666673448 162.777772692 163.888883803 163.888883803 162.777772692 163.888887193 164.999998305 164.999998305 163.888887193 165.000001695 166.111112807 166.111112807 165.000001695 166.111116197 167.222227308 167.222227308 166.111116197 167.222215441 168.333326552 168.333326552 167.222215441 168.333329942 169.444441054 169.444441054 168.333329942 169.444444444 170.555555556 170.555555556 169.444444444 170.555558946 171.666670058 171.666670058 170.555558946 171.666673448 172.777784559 172.777784559 171.666673448 172.777772692 173.888883803 173.888883803 172.777772692 173.888887193 174.999998305 174.999998305 173.888887193 175.000001695 176.111112807 176.111112807 175.000001695 176.111116197 177.222227308 177.222227308 176.111116197 177.222215441 178.333326552 178.333326552 177.222215441 178.333329942 179.444441054 179.444441054 178.333329942 179.444444444 180.555555556 180.555555556 179.444444444 180.555558946 181.666670058 181.666670058 180.555558946 181.666673448 182.777784559 182.777784559 181.666673448 182.777772692 183.888883803 183.888883803 182.777772692 183.888887193 184.999998305 184.999998305 183.888887193 185.000001695 186.111112807 186.111112807 185.000001695 186.111116197 187.222227308 187.222227308 186.111116197 187.222215441 188.333326552 188.333326552 187.222215441 188.333329942 189.444441054 189.444441054 188.333329942 189.444444444 190.555555556 190.555555556 189.444444444 190.555558946 191.666670058 191.666670058 190.555558946 191.666673448 192.777784559 192.777784559 191.666673448 192.777772692 193.888883803 193.888883803 192.777772692 193.888887193 194.999998305 194.999998305 193.888887193 195.000001695 196.111112807 196.111112807 195.000001695 196.111116197 197.222227308 197.222227308 196.111116197 197.222215441 198.333326552 198.333326552 197.222215441 198.333329942 199.444441054 199.444441054 198.333329942 199.444444444 200.555555556 200.555555556 199.444444444 200.555558946 201.666670058 201.666670058 200.555558946 201.666673448 202.777784559 202.777784559 201.666673448 202.777772692 203.888883803 203.888883803 202.777772692 203.888887193 204.999998305 204.999998305 203.888887193 205.000001695 206.111112807 206.111112807 205.000001695 206.111116197 207.222227308 207.222227308 206.111116197 207.222215441 208.333326552 208.333326552 207.222215441 208.333329942 209.444441054 209.444441054 208.333329942 209.444444444 210.555555556 210.555555556 209.444444444 210.555558946 211.666670058 211.666670058 210.555558946 211.666673448 212.777784559 212.777784559 211.666673448 212.777772692 213.888883803 213.888883803 212.777772692 213.888887193 214.999998305 214.999998305 213.888887193 215.000001695 216.111112807 216.111112807 215.000001695 216.111116197 217.222227308 217.222227308 216.111116197 217.222215441 218.333326552 218.333326552 217.222215441 218.333329942 219.444441054 219.444441054 218.333329942 219.444444444 220.555555556 220.555555556 219.444444444 220.555558946 221.666670058 221.666670058 220.555558946 221.666673448 222.777784559 222.777784559 221.666673448 222.777772692 223.888883803 223.888883803 222.777772692 223.888887193 224.999998305 224.999998305 223.888887193 225.000001695 226.111112807 226.111112807 225.000001695 226.111116197 227.222227308 227.222227308 226.111116197 227.222215441 228.333326552 228.333326552 227.222215441 228.333329942 229.444441054 229.444441054 228.333329942 229.444444444 230.555555556 230.555555556 229.444444444 230.555558946 231.666670058 231.666670058 230.555558946 231.666673448 232.777784559 232.777784559 231.666673448 232.777772692 233.888883803 233.888883803 232.777772692 233.888887193 234.999998305 234.999998305 233.888887193 235.000001695 236.111112807 236.111112807 235.000001695 236.111116197 237.222227308 237.222227308 236.111116197 237.222215441 238.333326552 238.333326552 237.222215441 238.333329942 239.444441054 239.444441054 238.333329942 239.444444444 240.555555556 240.555555556 239.444444444 240.555558946 241.666670058 241.666670058 240.555558946 241.666673448 242.777784559 242.777784559 241.666673448 242.777772692 243.888883803 243.888883803 242.777772692 243.888887193 244.999998305 244.999998305 243.888887193 245.000001695 246.111112807 246.111112807 245.000001695 246.111116197 247.222227308 247.222227308 246.111116197 247.222215441 248.333326552 248.333326552 247.222215441 248.333329942 249.444441054 249.444441054 248.333329942 249.444444444 250.555555556 250.555555556 249.444444444 250.555558946 251.666670058 251.666670058 250.555558946 251.666673448 252.777784559 252.777784559 251.666673448 252.777772692 253.888883803 253.888883803 252.777772692 253.888887193 254.999998305 254.999998305 253.888887193 255.000001695 256.111112807 256.111112807 255.000001695 256.111100939 257.22221205 257.22221205 256.111100939 257.222215441 258.333326552 258.333326552 257.222215441 258.333329942 259.444441054 259.444441054 258.333329942 259.444444444 260.555555556 260.555555556 259.444444444 260.555558946 261.666670058 261.666670058 260.555558946 261.666673448 262.777784559 262.777784559 261.666673448 262.77778795 263.888899061 263.888899061 262.77778795 263.888902452 265.000013563 265.000013563 263.888902452 264.999986437 266.111097548 266.111097548 264.999986437 266.111100939 267.22221205 267.22221205 266.111100939 267.222215441 268.333326552 268.333326552 267.222215441 268.333329942 269.444441054 269.444441054 268.333329942 269.444444444 270.555555556 270.555555556 269.444444444 270.555558946 271.666670058 271.666670058 270.555558946 271.666673448 272.777784559 272.777784559 271.666673448 272.77778795 273.888899061 273.888899061 272.77778795 273.888902452 275.000013563 275.000013563 273.888902452 274.999986437 276.111097548 276.111097548 274.999986437 276.111100939 277.22221205 277.22221205 276.111100939 277.222215441 278.333326552 278.333326552 277.222215441 278.333329942 279.444441054 279.444441054 278.333329942 279.444444444 280.555555556 280.555555556 279.444444444 280.555558946 281.666670058 281.666670058 280.555558946 281.666673448 282.777784559 282.777784559 281.666673448 282.77778795 283.888899061 283.888899061 282.77778795 283.888902452 285.000013563 285.000013563 283.888902452 284.999986437 286.111097548 286.111097548 284.999986437 286.111100939 287.22221205 287.22221205 286.111100939 287.222215441 288.333326552 288.333326552 287.222215441 288.333329942 289.444441054 289.444441054 288.333329942 289.444444444 290.555555556 290.555555556 289.444444444 290.555558946 291.666670058 291.666670058 290.555558946 291.666673448 292.777784559 292.777784559 291.666673448 292.77778795 293.888899061 293.888899061 292.77778795 293.888902452 295.000013563 295.000013563 293.888902452 294.999986437 296.111097548 296.111097548 294.999986437 296.111100939 297.22221205 297.22221205 296.111100939 297.222215441 298.333326552 298.333326552 297.222215441 298.333329942 299.444441054 299.444441054 298.333329942 299.444444444 300.555555556 300.555555556 299.444444444 300.555558946 301.666670058 301.666670058 300.555558946 301.666673448 302.777784559 302.777784559 301.666673448 302.77778795 303.888899061 303.888899061 302.77778795 303.888902452 305.000013563 305.000013563 303.888902452 304.999986437 306.111097548 306.111097548 304.999986437 306.111100939 307.22221205 307.22221205 306.111100939 307.222215441 308.333326552 308.333326552 307.222215441 308.333329942 309.444441054 309.444441054 308.333329942 309.444444444 310.555555556 310.555555556 309.444444444 310.555558946 311.666670058 311.666670058 310.555558946 311.666673448 312.777784559 312.777784559 311.666673448 312.77778795 313.888899061 313.888899061 312.77778795 313.888902452 315.000013563 315.000013563 313.888902452 314.999986437 316.111097548 316.111097548 314.999986437 316.111100939 317.22221205 317.22221205 316.111100939 317.222215441 318.333326552 318.333326552 317.222215441 318.333329942 319.444441054 319.444441054 318.333329942 319.444444444 320.555555556 320.555555556 319.444444444 320.555558946 321.666670058 321.666670058 320.555558946 321.666673448 322.777784559 322.777784559 321.666673448 322.77778795 323.888899061 323.888899061 322.77778795 323.888902452 325.000013563 325.000013563 323.888902452 324.999986437 326.111097548 326.111097548 324.999986437 326.111100939 327.22221205 327.22221205 326.111100939 327.222215441 328.333326552 328.333326552 327.222215441 328.333329942 329.444441054 329.444441054 328.333329942 329.444444444 330.555555556 330.555555556 329.444444444 330.555558946 331.666670058 331.666670058 330.555558946 331.666673448 332.777784559 332.777784559 331.666673448 332.77778795 333.888899061 333.888899061 332.77778795 333.888902452 335.000013563 335.000013563 333.888902452 334.999986437 336.111097548 336.111097548 334.999986437 336.111100939 337.22221205 337.22221205 336.111100939 337.222215441 338.333326552 338.333326552 337.222215441 338.333329942 339.444441054 339.444441054 338.333329942 339.444444444 340.555555556 340.555555556 339.444444444 340.555558946 341.666670058 341.666670058 340.555558946 341.666673448 342.777784559 342.777784559 341.666673448 342.77778795 343.888899061 343.888899061 342.77778795 343.888902452 345.000013563 345.000013563 343.888902452 344.999986437 346.111097548 346.111097548 344.999986437 346.111100939 347.22221205 347.22221205 346.111100939 347.222215441 348.333326552 348.333326552 347.222215441 348.333329942 349.444441054 349.444441054 348.333329942 349.444444444 350.555555556 350.555555556 349.444444444 350.555558946 351.666670058 351.666670058 350.555558946 351.666673448 352.777784559 352.777784559 351.666673448 352.77778795 353.888899061 353.888899061 352.77778795 353.888902452 355.000013563 355.000013563 353.888902452 354.999986437 356.111097548 356.111097548 354.999986437 356.111100939 357.22221205 357.22221205 356.111100939 357.222215441 358.333326552 358.333326552 357.222215441 358.333329942 359.444441054 359.444441054 358.333329942 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 +134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 +336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.5625 0.5625 0.5625 -0.5625 0.5625 1.6875 1.6875 0.5625 1.6875 2.8125 2.8125 1.6875 2.8125 3.9375 3.9375 2.8125 3.9375 5.0625 5.0625 3.9375 5.0625 6.1875 6.1875 5.0625 6.1875 7.3125 7.3125 6.1875 7.3125 8.4375 8.4375 7.3125 8.4375 9.5625 9.5625 8.4375 9.5625 10.6875 10.6875 9.5625 10.6875 11.8125 11.8125 10.6875 11.8125 12.9375 12.9375 11.8125 12.9375 14.0625 14.0625 12.9375 14.0625 15.1875 15.1875 14.0625 15.1875 16.3125 16.3125 15.1875 16.3125 17.4375 17.4375 16.3125 17.4375 18.5625 18.5625 17.4375 18.5625 19.6875 19.6875 18.5625 19.6875 20.8125 20.8125 19.6875 20.8125 21.9375 21.9375 20.8125 21.9375 23.0625 23.0625 21.9375 23.0625 24.1875 24.1875 23.0625 24.1875 25.3125 25.3125 24.1875 25.3125 26.4375 26.4375 25.3125 26.4375 27.5625 27.5625 26.4375 27.5625 28.6875 28.6875 27.5625 28.6875 29.8125 29.8125 28.6875 29.8125 30.9375 30.9375 29.8125 30.9375 32.0625 32.0625 30.9375 32.0625 33.1875 33.1875 32.0625 33.1875 34.3125 34.3125 33.1875 34.3125 35.4375 35.4375 34.3125 35.4375 36.5625 36.5625 35.4375 36.5625 37.6875 37.6875 36.5625 37.6875 38.8125 38.8125 37.6875 38.8125 39.9375 39.9375 38.8125 39.9375 41.0625 41.0625 39.9375 41.0625 42.1875 42.1875 41.0625 42.1875 43.3125 43.3125 42.1875 43.3125 44.4375 44.4375 43.3125 44.4375 45.5625 45.5625 44.4375 45.5625 46.6875 46.6875 45.5625 46.6875 47.8125 47.8125 46.6875 47.8125 48.9375 48.9375 47.8125 48.9375 50.0625 50.0625 48.9375 50.0625 51.1875 51.1875 50.0625 51.1875 52.3125 52.3125 51.1875 52.3125 53.4375 53.4375 52.3125 53.4375 54.5625 54.5625 53.4375 54.5625 55.6875 55.6875 54.5625 55.6875 56.8125 56.8125 55.6875 56.8125 57.9375 57.9375 56.8125 57.9375 59.0625 59.0625 57.9375 59.0625 60.1875 60.1875 59.0625 60.1875 61.3125 61.3125 60.1875 61.3125 62.4375 62.4375 61.3125 62.4375 63.5625 63.5625 62.4375 63.5625 64.6875 64.6875 63.5625 64.6875 65.8125 65.8125 64.6875 65.8125 66.9375 66.9375 65.8125 66.9375 68.0625 68.0625 66.9375 68.0625 69.1875 69.1875 68.0625 69.1875 70.3125 70.3125 69.1875 70.3125 71.4375 71.4375 70.3125 71.4375 72.5625 72.5625 71.4375 72.5625 73.6875 73.6875 72.5625 73.6875 74.8125 74.8125 73.6875 74.8125 75.9375 75.9375 74.8125 75.9375 77.0625 77.0625 75.9375 77.0625 78.1875 78.1875 77.0625 78.1875 79.3125 79.3125 78.1875 79.3125 80.4375 80.4375 79.3125 80.4375 81.5625 81.5625 80.4375 81.5625 82.6875 82.6875 81.5625 82.6875 83.8125 83.8125 82.6875 83.8125 84.9375 84.9375 83.8125 84.9375 86.0625 86.0625 84.9375 86.0625 87.1875 87.1875 86.0625 87.1875 88.3125 88.3125 87.1875 88.3125 89.4375 89.4375 88.3125 89.4375 90.5625 90.5625 89.4375 90.5625 91.6875 91.6875 90.5625 91.6875 92.8125 92.8125 91.6875 92.8125 93.9375 93.9375 92.8125 93.9375 95.0625 95.0625 93.9375 95.0625 96.1875 96.1875 95.0625 96.1875 97.3125 97.3125 96.1875 97.3125 98.4375 98.4375 97.3125 98.4375 99.5625 99.5625 98.4375 99.5625 100.6875 100.6875 99.5625 100.6875 101.8125 101.8125 100.6875 101.8125 102.9375 102.9375 101.8125 102.9375 104.0625 104.0625 102.9375 104.0625 105.1875 105.1875 104.0625 105.1875 106.3125 106.3125 105.1875 106.3125 107.4375 107.4375 106.3125 107.4375 108.5625 108.5625 107.4375 108.5625 109.6875 109.6875 108.5625 109.6875 110.8125 110.8125 109.6875 110.8125 111.9375 111.9375 110.8125 111.9375 113.0625 113.0625 111.9375 113.0625 114.1875 114.1875 113.0625 114.1875 115.3125 115.3125 114.1875 115.3125 116.4375 116.4375 115.3125 116.4375 117.5625 117.5625 116.4375 117.5625 118.6875 118.6875 117.5625 118.6875 119.8125 119.8125 118.6875 119.8125 120.9375 120.9375 119.8125 120.9375 122.0625 122.0625 120.9375 122.0625 123.1875 123.1875 122.0625 123.1875 124.3125 124.3125 123.1875 124.3125 125.4375 125.4375 124.3125 125.4375 126.5625 126.5625 125.4375 126.5625 127.6875 127.6875 126.5625 127.6875 128.8125 128.8125 127.6875 128.8125 129.9375 129.9375 128.8125 129.9375 131.0625 131.0625 129.9375 131.0625 132.1875 132.1875 131.0625 132.1875 133.3125 133.3125 132.1875 133.3125 134.4375 134.4375 133.3125 134.4375 135.5625 135.5625 134.4375 135.5625 136.6875 136.6875 135.5625 136.6875 137.8125 137.8125 136.6875 137.8125 138.9375 138.9375 137.8125 138.9375 140.0625 140.0625 138.9375 140.0625 141.1875 141.1875 140.0625 141.1875 142.3125 142.3125 141.1875 142.3125 143.4375 143.4375 142.3125 143.4375 144.5625 144.5625 143.4375 144.5625 145.6875 145.6875 144.5625 145.6875 146.8125 146.8125 145.6875 146.8125 147.9375 147.9375 146.8125 147.9375 149.0625 149.0625 147.9375 149.0625 150.1875 150.1875 149.0625 150.1875 151.3125 151.3125 150.1875 151.3125 152.4375 152.4375 151.3125 152.4375 153.5625 153.5625 152.4375 153.5625 154.6875 154.6875 153.5625 154.6875 155.8125 155.8125 154.6875 155.8125 156.9375 156.9375 155.8125 156.9375 158.0625 158.0625 156.9375 158.0625 159.1875 159.1875 158.0625 159.1875 160.3125 160.3125 159.1875 160.3125 161.4375 161.4375 160.3125 161.4375 162.5625 162.5625 161.4375 162.5625 163.6875 163.6875 162.5625 163.6875 164.8125 164.8125 163.6875 164.8125 165.9375 165.9375 164.8125 165.9375 167.0625 167.0625 165.9375 167.0625 168.1875 168.1875 167.0625 168.1875 169.3125 169.3125 168.1875 169.3125 170.4375 170.4375 169.3125 170.4375 171.5625 171.5625 170.4375 171.5625 172.6875 172.6875 171.5625 172.6875 173.8125 173.8125 172.6875 173.8125 174.9375 174.9375 173.8125 174.9375 176.0625 176.0625 174.9375 176.0625 177.1875 177.1875 176.0625 177.1875 178.3125 178.3125 177.1875 178.3125 179.4375 179.4375 178.3125 +179.4375 180.5625 180.5625 179.4375 180.5625 181.6875 181.6875 180.5625 181.6875 182.8125 182.8125 181.6875 182.8125 183.9375 183.9375 182.8125 183.9375 185.0625 185.0625 183.9375 185.0625 186.1875 186.1875 185.0625 186.1875 187.3125 187.3125 186.1875 187.3125 188.4375 188.4375 187.3125 188.4375 189.5625 189.5625 188.4375 189.5625 190.6875 190.6875 189.5625 190.6875 191.8125 191.8125 190.6875 191.8125 192.9375 192.9375 191.8125 192.9375 194.0625 194.0625 192.9375 194.0625 195.1875 195.1875 194.0625 195.1875 196.3125 196.3125 195.1875 196.3125 197.4375 197.4375 196.3125 197.4375 198.5625 198.5625 197.4375 198.5625 199.6875 199.6875 198.5625 199.6875 200.8125 200.8125 199.6875 200.8125 201.9375 201.9375 200.8125 201.9375 203.0625 203.0625 201.9375 203.0625 204.1875 204.1875 203.0625 204.1875 205.3125 205.3125 204.1875 205.3125 206.4375 206.4375 205.3125 206.4375 207.5625 207.5625 206.4375 207.5625 208.6875 208.6875 207.5625 208.6875 209.8125 209.8125 208.6875 209.8125 210.9375 210.9375 209.8125 210.9375 212.0625 212.0625 210.9375 212.0625 213.1875 213.1875 212.0625 213.1875 214.3125 214.3125 213.1875 214.3125 215.4375 215.4375 214.3125 215.4375 216.5625 216.5625 215.4375 216.5625 217.6875 217.6875 216.5625 217.6875 218.8125 218.8125 217.6875 218.8125 219.9375 219.9375 218.8125 219.9375 221.0625 221.0625 219.9375 221.0625 222.1875 222.1875 221.0625 222.1875 223.3125 223.3125 222.1875 223.3125 224.4375 224.4375 223.3125 224.4375 225.5625 225.5625 224.4375 225.5625 226.6875 226.6875 225.5625 226.6875 227.8125 227.8125 226.6875 227.8125 228.9375 228.9375 227.8125 228.9375 230.0625 230.0625 228.9375 230.0625 231.1875 231.1875 230.0625 231.1875 232.3125 232.3125 231.1875 232.3125 233.4375 233.4375 232.3125 233.4375 234.5625 234.5625 233.4375 234.5625 235.6875 235.6875 234.5625 235.6875 236.8125 236.8125 235.6875 236.8125 237.9375 237.9375 236.8125 237.9375 239.0625 239.0625 237.9375 239.0625 240.1875 240.1875 239.0625 240.1875 241.3125 241.3125 240.1875 241.3125 242.4375 242.4375 241.3125 242.4375 243.5625 243.5625 242.4375 243.5625 244.6875 244.6875 243.5625 244.6875 245.8125 245.8125 244.6875 245.8125 246.9375 246.9375 245.8125 246.9375 248.0625 248.0625 246.9375 248.0625 249.1875 249.1875 248.0625 249.1875 250.3125 250.3125 249.1875 250.3125 251.4375 251.4375 250.3125 251.4375 252.5625 252.5625 251.4375 252.5625 253.6875 253.6875 252.5625 253.6875 254.8125 254.8125 253.6875 254.8125 255.9375 255.9375 254.8125 255.9375 257.0625 257.0625 255.9375 257.0625 258.1875 258.1875 257.0625 258.1875 259.3125 259.3125 258.1875 259.3125 260.4375 260.4375 259.3125 260.4375 261.5625 261.5625 260.4375 261.5625 262.6875 262.6875 261.5625 262.6875 263.8125 263.8125 262.6875 263.8125 264.9375 264.9375 263.8125 264.9375 266.0625 266.0625 264.9375 266.0625 267.1875 267.1875 266.0625 267.1875 268.3125 268.3125 267.1875 268.3125 269.4375 269.4375 268.3125 269.4375 270.5625 270.5625 269.4375 270.5625 271.6875 271.6875 270.5625 271.6875 272.8125 272.8125 271.6875 272.8125 273.9375 273.9375 272.8125 273.9375 275.0625 275.0625 273.9375 275.0625 276.1875 276.1875 275.0625 276.1875 277.3125 277.3125 276.1875 277.3125 278.4375 278.4375 277.3125 278.4375 279.5625 279.5625 278.4375 279.5625 280.6875 280.6875 279.5625 280.6875 281.8125 281.8125 280.6875 281.8125 282.9375 282.9375 281.8125 282.9375 284.0625 284.0625 282.9375 284.0625 285.1875 285.1875 284.0625 285.1875 286.3125 286.3125 285.1875 286.3125 287.4375 287.4375 286.3125 287.4375 288.5625 288.5625 287.4375 288.5625 289.6875 289.6875 288.5625 289.6875 290.8125 290.8125 289.6875 290.8125 291.9375 291.9375 290.8125 291.9375 293.0625 293.0625 291.9375 293.0625 294.1875 294.1875 293.0625 294.1875 295.3125 295.3125 294.1875 295.3125 296.4375 296.4375 295.3125 296.4375 297.5625 297.5625 296.4375 297.5625 298.6875 298.6875 297.5625 298.6875 299.8125 299.8125 298.6875 299.8125 300.9375 300.9375 299.8125 300.9375 302.0625 302.0625 300.9375 302.0625 303.1875 303.1875 302.0625 303.1875 304.3125 304.3125 303.1875 304.3125 305.4375 305.4375 304.3125 305.4375 306.5625 306.5625 305.4375 306.5625 307.6875 307.6875 306.5625 307.6875 308.8125 308.8125 307.6875 308.8125 309.9375 309.9375 308.8125 309.9375 311.0625 311.0625 309.9375 311.0625 312.1875 312.1875 311.0625 312.1875 313.3125 313.3125 312.1875 313.3125 314.4375 314.4375 313.3125 314.4375 315.5625 315.5625 314.4375 315.5625 316.6875 316.6875 315.5625 316.6875 317.8125 317.8125 316.6875 317.8125 318.9375 318.9375 317.8125 318.9375 320.0625 320.0625 318.9375 320.0625 321.1875 321.1875 320.0625 321.1875 322.3125 322.3125 321.1875 322.3125 323.4375 323.4375 322.3125 323.4375 324.5625 324.5625 323.4375 324.5625 325.6875 325.6875 324.5625 325.6875 326.8125 326.8125 325.6875 326.8125 327.9375 327.9375 326.8125 327.9375 329.0625 329.0625 327.9375 329.0625 330.1875 330.1875 329.0625 330.1875 331.3125 331.3125 330.1875 331.3125 332.4375 332.4375 331.3125 332.4375 333.5625 333.5625 332.4375 333.5625 334.6875 334.6875 333.5625 334.6875 335.8125 335.8125 334.6875 335.8125 336.9375 336.9375 335.8125 336.9375 338.0625 338.0625 336.9375 338.0625 339.1875 339.1875 338.0625 339.1875 340.3125 340.3125 339.1875 340.3125 341.4375 341.4375 340.3125 341.4375 342.5625 342.5625 341.4375 342.5625 343.6875 343.6875 342.5625 343.6875 344.8125 344.8125 343.6875 344.8125 345.9375 345.9375 344.8125 345.9375 347.0625 347.0625 345.9375 347.0625 348.1875 348.1875 347.0625 348.1875 349.3125 349.3125 348.1875 349.3125 350.4375 350.4375 349.3125 350.4375 351.5625 351.5625 350.4375 351.5625 352.6875 352.6875 351.5625 352.6875 353.8125 353.8125 352.6875 353.8125 354.9375 354.9375 353.8125 354.9375 356.0625 356.0625 354.9375 356.0625 357.1875 357.1875 356.0625 357.1875 358.3125 358.3125 357.1875 358.3125 359.4375 359.4375 358.3125 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.6 0.6 0.6 -0.6 0.600000047684 1.80000004768 1.80000004768 0.600000047684 1.80000009537 3.00000009537 3.00000009537 1.80000009537 2.99999990463 4.19999990463 4.19999990463 2.99999990463 4.20000019073 5.40000019073 5.40000019073 4.20000019073 5.4 6.6 6.6 5.4 6.59999980927 7.79999980927 7.79999980927 6.59999980927 7.79999961853 8.99999961853 8.99999961853 7.79999961853 9.00000038147 10.2000003815 10.2000003815 9.00000038147 10.2000001907 11.4000001907 11.4000001907 10.2000001907 11.4 12.6 12.6 11.4 12.5999998093 13.7999998093 13.7999998093 12.5999998093 13.7999996185 14.9999996185 14.9999996185 13.7999996185 15.0000003815 16.2000003815 16.2000003815 15.0000003815 16.1999992371 17.3999992371 17.3999992371 16.1999992371 17.4 18.6 18.6 17.4 18.6000007629 19.8000007629 19.8000007629 18.6000007629 19.7999996185 20.9999996185 20.9999996185 19.7999996185 21.0000003815 22.2000003815 22.2000003815 21.0000003815 22.1999992371 23.3999992371 23.3999992371 22.1999992371 23.4 24.6 24.6 23.4 24.6000007629 25.8000007629 25.8000007629 24.6000007629 25.7999996185 26.9999996185 26.9999996185 25.7999996185 27.0000003815 28.2000003815 28.2000003815 27.0000003815 28.1999992371 29.3999992371 29.3999992371 28.1999992371 29.4 30.6 30.6 29.4 30.6000007629 31.8000007629 31.8000007629 30.6000007629 31.8000015259 33.0000015259 33.0000015259 31.8000015259 32.9999984741 34.1999984741 34.1999984741 32.9999984741 34.1999992371 35.3999992371 35.3999992371 34.1999992371 35.4 36.6 36.6 35.4 36.6000007629 37.8000007629 37.8000007629 36.6000007629 37.8000015259 39.0000015259 39.0000015259 37.8000015259 38.9999984741 40.1999984741 40.1999984741 38.9999984741 40.1999992371 41.3999992371 41.3999992371 40.1999992371 41.4 42.6 42.6 41.4 42.6000007629 43.8000007629 43.8000007629 42.6000007629 43.8000015259 45.0000015259 45.0000015259 43.8000015259 44.9999984741 46.1999984741 46.1999984741 44.9999984741 46.1999992371 47.3999992371 47.3999992371 46.1999992371 +47.4 48.6 48.6 47.4 48.6000007629 49.8000007629 49.8000007629 48.6000007629 49.8000015259 51.0000015259 51.0000015259 49.8000015259 50.9999984741 52.1999984741 52.1999984741 50.9999984741 52.1999992371 53.3999992371 53.3999992371 52.1999992371 53.4 54.6 54.6 53.4 54.6000007629 55.8000007629 55.8000007629 54.6000007629 55.8000015259 57.0000015259 57.0000015259 55.8000015259 56.9999984741 58.1999984741 58.1999984741 56.9999984741 58.1999992371 59.3999992371 59.3999992371 58.1999992371 59.4 60.6 60.6 59.4 60.6000007629 61.8000007629 61.8000007629 60.6000007629 61.8000015259 63.0000015259 63.0000015259 61.8000015259 62.9999984741 64.1999984741 64.1999984741 62.9999984741 64.2000030518 65.4000030518 65.4000030518 64.2000030518 65.4 66.6 66.6 65.4 66.5999969482 67.7999969482 67.7999969482 66.5999969482 67.8000015259 69.0000015259 69.0000015259 67.8000015259 68.9999984741 70.1999984741 70.1999984741 68.9999984741 70.2000030518 71.4000030518 71.4000030518 70.2000030518 71.4 72.6 72.6 71.4 72.5999969482 73.7999969482 73.7999969482 72.5999969482 73.8000015259 75.0000015259 75.0000015259 73.8000015259 74.9999984741 76.1999984741 76.1999984741 74.9999984741 76.2000030518 77.4000030518 77.4000030518 76.2000030518 77.4 78.6 78.6 77.4 78.5999969482 79.7999969482 79.7999969482 78.5999969482 79.8000015259 81.0000015259 81.0000015259 79.8000015259 80.9999984741 82.1999984741 82.1999984741 80.9999984741 82.2000030518 83.4000030518 83.4000030518 82.2000030518 83.4 84.6 84.6 83.4 84.5999969482 85.7999969482 85.7999969482 84.5999969482 85.8000015259 87.0000015259 87.0000015259 85.8000015259 86.9999984741 88.1999984741 88.1999984741 86.9999984741 88.2000030518 89.4000030518 89.4000030518 88.2000030518 89.4 90.6 90.6 89.4 90.5999969482 91.7999969482 91.7999969482 90.5999969482 91.8000015259 93.0000015259 93.0000015259 91.8000015259 92.9999984741 94.1999984741 94.1999984741 92.9999984741 94.2000030518 95.4000030518 95.4000030518 94.2000030518 95.4 96.6 96.6 95.4 96.5999969482 97.7999969482 97.7999969482 96.5999969482 97.8000015259 99.0000015259 99.0000015259 97.8000015259 98.9999984741 100.199998474 100.199998474 98.9999984741 100.200003052 101.400003052 101.400003052 100.200003052 101.4 102.6 102.6 101.4 102.599996948 103.799996948 103.799996948 102.599996948 103.800001526 105.000001526 105.000001526 103.800001526 104.999998474 106.199998474 106.199998474 104.999998474 106.200003052 107.400003052 107.400003052 106.200003052 107.4 108.6 108.6 107.4 108.599996948 109.799996948 109.799996948 108.599996948 109.800001526 111.000001526 111.000001526 109.800001526 110.999998474 112.199998474 112.199998474 110.999998474 112.200003052 113.400003052 113.400003052 112.200003052 113.4 114.6 114.6 113.4 114.599996948 115.799996948 115.799996948 114.599996948 115.800001526 117.000001526 117.000001526 115.800001526 116.999998474 118.199998474 118.199998474 116.999998474 118.200003052 119.400003052 119.400003052 118.200003052 119.4 120.6 120.6 119.4 120.599996948 121.799996948 121.799996948 120.599996948 121.800001526 123.000001526 123.000001526 121.800001526 122.999998474 124.199998474 124.199998474 122.999998474 124.200003052 125.400003052 125.400003052 124.200003052 125.4 126.6 126.6 125.4 126.599996948 127.799996948 127.799996948 126.599996948 127.799993896 128.999993896 128.999993896 127.799993896 129.000006104 130.200006104 130.200006104 129.000006104 130.200003052 131.400003052 131.400003052 130.200003052 131.4 132.6 132.6 131.4 132.599996948 133.799996948 133.799996948 132.599996948 133.799993896 134.999993896 134.999993896 133.799993896 135.000006104 136.200006104 136.200006104 135.000006104 136.200003052 137.400003052 137.400003052 136.200003052 137.4 138.6 138.6 137.4 138.599996948 139.799996948 139.799996948 138.599996948 139.799993896 140.999993896 140.999993896 139.799993896 141.000006104 142.200006104 142.200006104 141.000006104 142.200003052 143.400003052 143.400003052 142.200003052 143.4 144.6 144.6 143.4 144.599996948 145.799996948 145.799996948 144.599996948 145.799993896 146.999993896 146.999993896 145.799993896 147.000006104 148.200006104 148.200006104 147.000006104 148.200003052 149.400003052 149.400003052 148.200003052 149.4 150.6 150.6 149.4 150.599996948 151.799996948 151.799996948 150.599996948 151.799993896 152.999993896 152.999993896 151.799993896 153.000006104 154.200006104 154.200006104 153.000006104 154.200003052 155.400003052 155.400003052 154.200003052 155.4 156.6 156.6 155.4 156.599996948 157.799996948 157.799996948 156.599996948 157.799993896 158.999993896 158.999993896 157.799993896 159.000006104 160.200006104 160.200006104 159.000006104 160.200003052 161.400003052 161.400003052 160.200003052 161.4 162.6 162.6 161.4 162.599996948 163.799996948 163.799996948 162.599996948 163.799993896 164.999993896 164.999993896 163.799993896 165.000006104 166.200006104 166.200006104 165.000006104 166.200003052 167.400003052 167.400003052 166.200003052 167.4 168.6 168.6 167.4 168.599996948 169.799996948 169.799996948 168.599996948 169.799993896 170.999993896 170.999993896 169.799993896 171.000006104 172.200006104 172.200006104 171.000006104 172.200003052 173.400003052 173.400003052 172.200003052 173.4 174.6 174.6 173.4 174.599996948 175.799996948 175.799996948 174.599996948 175.799993896 176.999993896 176.999993896 175.799993896 177.000006104 178.200006104 178.200006104 177.000006104 178.200003052 179.400003052 179.400003052 178.200003052 179.4 180.6 180.6 179.4 180.599996948 181.799996948 181.799996948 180.599996948 181.799993896 182.999993896 182.999993896 181.799993896 183.000006104 184.200006104 184.200006104 183.000006104 184.200003052 185.400003052 185.400003052 184.200003052 185.4 186.6 186.6 185.4 186.599996948 187.799996948 187.799996948 186.599996948 187.799993896 188.999993896 188.999993896 187.799993896 189.000006104 190.200006104 190.200006104 189.000006104 190.200003052 191.400003052 191.400003052 190.200003052 191.4 192.6 192.6 191.4 192.599996948 193.799996948 193.799996948 192.599996948 193.799993896 194.999993896 194.999993896 193.799993896 195.000006104 196.200006104 196.200006104 195.000006104 196.200003052 197.400003052 197.400003052 196.200003052 197.4 198.6 198.6 197.4 198.599996948 199.799996948 199.799996948 198.599996948 199.799993896 200.999993896 200.999993896 199.799993896 201.000006104 202.200006104 202.200006104 201.000006104 202.200003052 203.400003052 203.400003052 202.200003052 203.4 204.6 204.6 203.4 204.599996948 205.799996948 205.799996948 204.599996948 205.799993896 206.999993896 206.999993896 205.799993896 207.000006104 208.200006104 208.200006104 207.000006104 208.200003052 209.400003052 209.400003052 208.200003052 209.4 210.6 210.6 209.4 210.599996948 211.799996948 211.799996948 210.599996948 211.799993896 212.999993896 212.999993896 211.799993896 213.000006104 214.200006104 214.200006104 213.000006104 214.200003052 215.400003052 215.400003052 214.200003052 215.4 216.6 216.6 215.4 216.599996948 217.799996948 217.799996948 216.599996948 217.799993896 218.999993896 218.999993896 217.799993896 219.000006104 220.200006104 220.200006104 219.000006104 220.200003052 221.400003052 221.400003052 220.200003052 221.4 222.6 222.6 221.4 222.599996948 223.799996948 223.799996948 222.599996948 223.799993896 224.999993896 224.999993896 223.799993896 225.000006104 226.200006104 226.200006104 225.000006104 226.200003052 227.400003052 227.400003052 226.200003052 227.4 228.6 228.6 227.4 228.599996948 229.799996948 229.799996948 228.599996948 229.799993896 230.999993896 230.999993896 229.799993896 231.000006104 232.200006104 232.200006104 231.000006104 232.200003052 233.400003052 233.400003052 232.200003052 233.4 234.6 234.6 233.4 234.599996948 235.799996948 235.799996948 234.599996948 235.799993896 236.999993896 236.999993896 235.799993896 237.000006104 238.200006104 238.200006104 237.000006104 238.200003052 239.400003052 239.400003052 238.200003052 239.4 240.6 240.6 239.4 240.599996948 241.799996948 241.799996948 240.599996948 241.799993896 242.999993896 242.999993896 241.799993896 243.000006104 244.200006104 244.200006104 243.000006104 244.200003052 245.400003052 245.400003052 244.200003052 245.4 246.6 246.6 245.4 246.599996948 247.799996948 247.799996948 246.599996948 247.799993896 248.999993896 248.999993896 247.799993896 249.000006104 250.200006104 250.200006104 249.000006104 250.200003052 251.400003052 251.400003052 250.200003052 251.4 252.6 252.6 251.4 252.599996948 253.799996948 253.799996948 252.599996948 253.799993896 254.999993896 254.999993896 253.799993896 255.000006104 256.200006104 256.200006104 255.000006104 256.199987793 257.399987793 257.399987793 256.199987793 257.4 258.6 258.6 257.4 258.600012207 259.800012207 259.800012207 258.600012207 259.799993896 260.999993896 260.999993896 259.799993896 261.000006104 262.200006104 262.200006104 261.000006104 262.199987793 263.399987793 263.399987793 262.199987793 263.4 264.6 264.6 263.4 264.600012207 265.800012207 265.800012207 264.600012207 265.799993896 266.999993896 266.999993896 265.799993896 267.000006104 268.200006104 268.200006104 267.000006104 268.199987793 269.399987793 269.399987793 268.199987793 269.4 270.6 270.6 269.4 270.600012207 271.800012207 271.800012207 270.600012207 271.799993896 272.999993896 272.999993896 271.799993896 273.000006104 274.200006104 274.200006104 273.000006104 274.199987793 275.399987793 275.399987793 274.199987793 275.4 276.6 276.6 275.4 276.600012207 277.800012207 277.800012207 276.600012207 277.799993896 278.999993896 278.999993896 277.799993896 279.000006104 280.200006104 280.200006104 279.000006104 280.199987793 281.399987793 281.399987793 280.199987793 281.4 282.6 282.6 281.4 282.600012207 283.800012207 283.800012207 282.600012207 283.799993896 284.999993896 284.999993896 283.799993896 285.000006104 286.200006104 286.200006104 285.000006104 286.199987793 287.399987793 287.399987793 286.199987793 287.4 288.6 288.6 287.4 288.600012207 289.800012207 289.800012207 288.600012207 289.799993896 290.999993896 290.999993896 289.799993896 291.000006104 292.200006104 292.200006104 291.000006104 292.199987793 293.399987793 293.399987793 292.199987793 293.4 294.6 294.6 293.4 294.600012207 295.800012207 295.800012207 294.600012207 295.799993896 296.999993896 296.999993896 295.799993896 297.000006104 298.200006104 298.200006104 297.000006104 298.199987793 299.399987793 299.399987793 298.199987793 299.4 300.6 300.6 299.4 300.600012207 301.800012207 301.800012207 300.600012207 301.799993896 302.999993896 302.999993896 301.799993896 303.000006104 304.200006104 304.200006104 303.000006104 304.199987793 305.399987793 305.399987793 304.199987793 305.4 306.6 306.6 305.4 306.600012207 307.800012207 307.800012207 306.600012207 307.799993896 308.999993896 308.999993896 307.799993896 309.000006104 310.200006104 310.200006104 309.000006104 310.199987793 311.399987793 311.399987793 310.199987793 311.4 312.6 312.6 311.4 312.600012207 313.800012207 313.800012207 312.600012207 313.799993896 314.999993896 314.999993896 313.799993896 315.000006104 316.200006104 316.200006104 315.000006104 316.199987793 317.399987793 317.399987793 316.199987793 317.4 318.6 318.6 317.4 318.600012207 319.800012207 319.800012207 318.600012207 319.799993896 320.999993896 320.999993896 319.799993896 321.000006104 322.200006104 322.200006104 321.000006104 322.199987793 323.399987793 323.399987793 322.199987793 323.4 324.6 324.6 323.4 324.600012207 325.800012207 325.800012207 324.600012207 325.799993896 326.999993896 326.999993896 325.799993896 327.000006104 328.200006104 328.200006104 327.000006104 328.199987793 329.399987793 329.399987793 328.199987793 329.4 330.6 330.6 329.4 330.600012207 331.800012207 331.800012207 330.600012207 331.799993896 332.999993896 332.999993896 331.799993896 333.000006104 334.200006104 334.200006104 333.000006104 334.199987793 335.399987793 335.399987793 334.199987793 335.4 336.6 336.6 335.4 336.600012207 337.800012207 337.800012207 336.600012207 337.799993896 338.999993896 338.999993896 337.799993896 339.000006104 340.200006104 340.200006104 339.000006104 340.199987793 341.399987793 341.399987793 340.199987793 341.4 342.6 342.6 341.4 342.600012207 343.800012207 343.800012207 342.600012207 343.799993896 344.999993896 344.999993896 343.799993896 345.000006104 346.200006104 346.200006104 345.000006104 346.199987793 347.399987793 347.399987793 346.199987793 347.4 348.6 348.6 347.4 348.600012207 349.800012207 349.800012207 348.600012207 349.799993896 350.999993896 350.999993896 349.799993896 351.000006104 352.200006104 352.200006104 351.000006104 352.199987793 353.399987793 353.399987793 352.199987793 353.4 354.6 354.6 353.4 354.600012207 355.800012207 355.800012207 354.600012207 355.799993896 356.999993896 356.999993896 355.799993896 357.000006104 358.200006104 358.200006104 357.000006104 358.199987793 359.399987793 359.399987793 358.199987793 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 +299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.625 0.625 0.625 -0.625 0.625 1.875 1.875 0.625 1.875 3.125 3.125 1.875 3.125 4.375 4.375 3.125 4.375 5.625 5.625 4.375 5.625 6.875 6.875 5.625 6.875 8.125 8.125 6.875 8.125 9.375 9.375 8.125 9.375 10.625 10.625 9.375 10.625 11.875 11.875 10.625 11.875 13.125 13.125 11.875 13.125 14.375 14.375 13.125 14.375 15.625 15.625 14.375 15.625 16.875 16.875 15.625 16.875 18.125 18.125 16.875 18.125 19.375 19.375 18.125 19.375 20.625 20.625 19.375 20.625 21.875 21.875 20.625 21.875 23.125 23.125 21.875 23.125 24.375 24.375 23.125 24.375 25.625 25.625 24.375 25.625 26.875 26.875 25.625 26.875 28.125 28.125 26.875 28.125 29.375 29.375 28.125 29.375 30.625 30.625 29.375 30.625 31.875 31.875 30.625 31.875 33.125 33.125 31.875 33.125 34.375 34.375 33.125 34.375 35.625 35.625 34.375 35.625 36.875 36.875 35.625 36.875 38.125 38.125 36.875 38.125 39.375 39.375 38.125 39.375 40.625 40.625 39.375 40.625 41.875 41.875 40.625 41.875 43.125 43.125 41.875 43.125 44.375 44.375 43.125 44.375 45.625 45.625 44.375 45.625 46.875 46.875 45.625 46.875 48.125 48.125 46.875 48.125 49.375 49.375 48.125 49.375 50.625 50.625 49.375 50.625 51.875 51.875 50.625 51.875 53.125 53.125 51.875 53.125 54.375 54.375 53.125 54.375 55.625 55.625 54.375 55.625 56.875 56.875 55.625 56.875 58.125 58.125 56.875 58.125 59.375 59.375 58.125 59.375 60.625 60.625 59.375 60.625 61.875 61.875 60.625 61.875 63.125 63.125 61.875 63.125 64.375 64.375 63.125 64.375 65.625 65.625 64.375 65.625 66.875 66.875 65.625 66.875 68.125 68.125 66.875 68.125 69.375 69.375 68.125 69.375 70.625 70.625 69.375 70.625 71.875 71.875 70.625 71.875 73.125 73.125 71.875 73.125 74.375 74.375 73.125 74.375 75.625 75.625 74.375 75.625 76.875 76.875 75.625 76.875 78.125 78.125 76.875 78.125 79.375 79.375 78.125 79.375 80.625 80.625 79.375 80.625 81.875 81.875 80.625 81.875 83.125 83.125 81.875 83.125 84.375 84.375 83.125 84.375 85.625 85.625 84.375 85.625 86.875 86.875 85.625 86.875 88.125 88.125 86.875 88.125 89.375 89.375 88.125 89.375 90.625 90.625 89.375 90.625 91.875 91.875 90.625 91.875 93.125 93.125 91.875 93.125 94.375 94.375 93.125 94.375 95.625 95.625 94.375 95.625 96.875 96.875 95.625 96.875 98.125 98.125 96.875 98.125 99.375 99.375 98.125 99.375 100.625 100.625 99.375 100.625 101.875 101.875 100.625 101.875 103.125 103.125 101.875 103.125 104.375 104.375 103.125 104.375 105.625 105.625 104.375 105.625 106.875 106.875 105.625 106.875 108.125 108.125 106.875 108.125 109.375 109.375 108.125 109.375 110.625 110.625 109.375 110.625 111.875 111.875 110.625 111.875 113.125 113.125 111.875 113.125 114.375 114.375 113.125 114.375 115.625 115.625 114.375 115.625 116.875 116.875 115.625 116.875 118.125 118.125 116.875 118.125 119.375 119.375 118.125 119.375 120.625 120.625 119.375 120.625 121.875 121.875 120.625 121.875 123.125 123.125 121.875 123.125 124.375 124.375 123.125 124.375 125.625 125.625 124.375 125.625 126.875 126.875 125.625 126.875 128.125 128.125 126.875 128.125 129.375 129.375 128.125 129.375 130.625 130.625 129.375 130.625 131.875 131.875 130.625 131.875 133.125 133.125 131.875 133.125 134.375 134.375 133.125 134.375 135.625 135.625 134.375 135.625 136.875 136.875 135.625 136.875 138.125 138.125 136.875 138.125 139.375 139.375 138.125 139.375 140.625 140.625 139.375 140.625 141.875 141.875 140.625 141.875 143.125 143.125 141.875 143.125 144.375 144.375 143.125 144.375 145.625 145.625 144.375 145.625 146.875 146.875 145.625 146.875 148.125 148.125 146.875 148.125 149.375 149.375 148.125 149.375 150.625 150.625 149.375 150.625 151.875 151.875 150.625 151.875 153.125 153.125 151.875 153.125 154.375 154.375 153.125 154.375 155.625 155.625 154.375 155.625 156.875 156.875 155.625 156.875 158.125 158.125 156.875 158.125 159.375 159.375 158.125 159.375 160.625 160.625 159.375 160.625 161.875 161.875 160.625 161.875 163.125 163.125 161.875 163.125 164.375 164.375 163.125 164.375 165.625 165.625 164.375 165.625 166.875 166.875 165.625 166.875 168.125 168.125 166.875 168.125 169.375 169.375 168.125 169.375 170.625 170.625 169.375 170.625 171.875 171.875 170.625 171.875 173.125 173.125 171.875 173.125 174.375 174.375 173.125 174.375 175.625 175.625 174.375 175.625 176.875 176.875 175.625 176.875 178.125 178.125 176.875 178.125 179.375 179.375 178.125 179.375 180.625 180.625 179.375 180.625 181.875 181.875 180.625 181.875 183.125 183.125 181.875 183.125 184.375 184.375 183.125 184.375 185.625 185.625 184.375 185.625 186.875 186.875 185.625 186.875 188.125 188.125 186.875 188.125 189.375 189.375 188.125 189.375 190.625 190.625 189.375 190.625 191.875 191.875 190.625 191.875 193.125 193.125 191.875 193.125 194.375 194.375 193.125 194.375 195.625 195.625 194.375 195.625 196.875 196.875 195.625 196.875 198.125 198.125 196.875 198.125 199.375 199.375 198.125 199.375 200.625 200.625 199.375 200.625 201.875 201.875 200.625 201.875 203.125 203.125 201.875 203.125 204.375 204.375 203.125 +204.375 205.625 205.625 204.375 205.625 206.875 206.875 205.625 206.875 208.125 208.125 206.875 208.125 209.375 209.375 208.125 209.375 210.625 210.625 209.375 210.625 211.875 211.875 210.625 211.875 213.125 213.125 211.875 213.125 214.375 214.375 213.125 214.375 215.625 215.625 214.375 215.625 216.875 216.875 215.625 216.875 218.125 218.125 216.875 218.125 219.375 219.375 218.125 219.375 220.625 220.625 219.375 220.625 221.875 221.875 220.625 221.875 223.125 223.125 221.875 223.125 224.375 224.375 223.125 224.375 225.625 225.625 224.375 225.625 226.875 226.875 225.625 226.875 228.125 228.125 226.875 228.125 229.375 229.375 228.125 229.375 230.625 230.625 229.375 230.625 231.875 231.875 230.625 231.875 233.125 233.125 231.875 233.125 234.375 234.375 233.125 234.375 235.625 235.625 234.375 235.625 236.875 236.875 235.625 236.875 238.125 238.125 236.875 238.125 239.375 239.375 238.125 239.375 240.625 240.625 239.375 240.625 241.875 241.875 240.625 241.875 243.125 243.125 241.875 243.125 244.375 244.375 243.125 244.375 245.625 245.625 244.375 245.625 246.875 246.875 245.625 246.875 248.125 248.125 246.875 248.125 249.375 249.375 248.125 249.375 250.625 250.625 249.375 250.625 251.875 251.875 250.625 251.875 253.125 253.125 251.875 253.125 254.375 254.375 253.125 254.375 255.625 255.625 254.375 255.625 256.875 256.875 255.625 256.875 258.125 258.125 256.875 258.125 259.375 259.375 258.125 259.375 260.625 260.625 259.375 260.625 261.875 261.875 260.625 261.875 263.125 263.125 261.875 263.125 264.375 264.375 263.125 264.375 265.625 265.625 264.375 265.625 266.875 266.875 265.625 266.875 268.125 268.125 266.875 268.125 269.375 269.375 268.125 269.375 270.625 270.625 269.375 270.625 271.875 271.875 270.625 271.875 273.125 273.125 271.875 273.125 274.375 274.375 273.125 274.375 275.625 275.625 274.375 275.625 276.875 276.875 275.625 276.875 278.125 278.125 276.875 278.125 279.375 279.375 278.125 279.375 280.625 280.625 279.375 280.625 281.875 281.875 280.625 281.875 283.125 283.125 281.875 283.125 284.375 284.375 283.125 284.375 285.625 285.625 284.375 285.625 286.875 286.875 285.625 286.875 288.125 288.125 286.875 288.125 289.375 289.375 288.125 289.375 290.625 290.625 289.375 290.625 291.875 291.875 290.625 291.875 293.125 293.125 291.875 293.125 294.375 294.375 293.125 294.375 295.625 295.625 294.375 295.625 296.875 296.875 295.625 296.875 298.125 298.125 296.875 298.125 299.375 299.375 298.125 299.375 300.625 300.625 299.375 300.625 301.875 301.875 300.625 301.875 303.125 303.125 301.875 303.125 304.375 304.375 303.125 304.375 305.625 305.625 304.375 305.625 306.875 306.875 305.625 306.875 308.125 308.125 306.875 308.125 309.375 309.375 308.125 309.375 310.625 310.625 309.375 310.625 311.875 311.875 310.625 311.875 313.125 313.125 311.875 313.125 314.375 314.375 313.125 314.375 315.625 315.625 314.375 315.625 316.875 316.875 315.625 316.875 318.125 318.125 316.875 318.125 319.375 319.375 318.125 319.375 320.625 320.625 319.375 320.625 321.875 321.875 320.625 321.875 323.125 323.125 321.875 323.125 324.375 324.375 323.125 324.375 325.625 325.625 324.375 325.625 326.875 326.875 325.625 326.875 328.125 328.125 326.875 328.125 329.375 329.375 328.125 329.375 330.625 330.625 329.375 330.625 331.875 331.875 330.625 331.875 333.125 333.125 331.875 333.125 334.375 334.375 333.125 334.375 335.625 335.625 334.375 335.625 336.875 336.875 335.625 336.875 338.125 338.125 336.875 338.125 339.375 339.375 338.125 339.375 340.625 340.625 339.375 340.625 341.875 341.875 340.625 341.875 343.125 343.125 341.875 343.125 344.375 344.375 343.125 344.375 345.625 345.625 344.375 345.625 346.875 346.875 345.625 346.875 348.125 348.125 346.875 348.125 349.375 349.375 348.125 349.375 350.625 350.625 349.375 350.625 351.875 351.875 350.625 351.875 353.125 353.125 351.875 353.125 354.375 354.375 353.125 354.375 355.625 355.625 354.375 355.625 356.875 356.875 355.625 356.875 358.125 358.125 356.875 358.125 359.375 359.375 358.125 -0.666666666667 0.666666666667 0.666666666667 -0.666666666667 0.666666706403 2.00000003974 2.00000003974 0.666666706403 2.00000007947 3.33333341281 3.33333341281 2.00000007947 3.33333333333 4.66666666667 4.66666666667 3.33333333333 4.66666682561 6.00000015895 6.00000015895 4.66666682561 5.99999984105 7.33333317439 7.33333317439 5.99999984105 7.33333333333 8.66666666667 8.66666666667 7.33333333333 8.66666634878 9.99999968211 9.99999968211 8.66666634878 10.0000003179 11.3333336512 11.3333336512 10.0000003179 11.3333333333 12.6666666667 12.6666666667 11.3333333333 12.6666663488 13.9999996821 13.9999996821 12.6666663488 14.0000003179 15.3333336512 15.3333336512 14.0000003179 15.3333333333 16.6666666667 16.6666666667 15.3333333333 16.6666673024 18.0000006358 18.0000006358 16.6666673024 17.9999993642 19.3333326976 19.3333326976 17.9999993642 19.3333333333 20.6666666667 20.6666666667 19.3333333333 20.6666673024 22.0000006358 22.0000006358 20.6666673024 21.9999993642 23.3333326976 23.3333326976 21.9999993642 23.3333333333 24.6666666667 24.6666666667 23.3333333333 24.6666673024 26.0000006358 26.0000006358 24.6666673024 25.9999993642 27.3333326976 27.3333326976 25.9999993642 27.3333333333 28.6666666667 28.6666666667 27.3333333333 28.6666673024 30.0000006358 30.0000006358 28.6666673024 29.9999993642 31.3333326976 31.3333326976 29.9999993642 31.3333333333 32.6666666667 32.6666666667 31.3333333333 32.6666653951 33.9999987284 33.9999987284 32.6666653951 34.0000012716 35.3333346049 35.3333346049 34.0000012716 35.3333333333 36.6666666667 36.6666666667 35.3333333333 36.6666653951 37.9999987284 37.9999987284 36.6666653951 38.0000012716 39.3333346049 39.3333346049 38.0000012716 39.3333333333 40.6666666667 40.6666666667 39.3333333333 40.6666653951 41.9999987284 41.9999987284 40.6666653951 42.0000012716 43.3333346049 43.3333346049 42.0000012716 43.3333333333 44.6666666667 44.6666666667 43.3333333333 44.6666653951 45.9999987284 45.9999987284 44.6666653951 46.0000012716 47.3333346049 47.3333346049 46.0000012716 47.3333333333 48.6666666667 48.6666666667 47.3333333333 48.6666653951 49.9999987284 49.9999987284 48.6666653951 50.0000012716 51.3333346049 51.3333346049 50.0000012716 51.3333333333 52.6666666667 52.6666666667 51.3333333333 52.6666653951 53.9999987284 53.9999987284 52.6666653951 54.0000012716 55.3333346049 55.3333346049 54.0000012716 55.3333333333 56.6666666667 56.6666666667 55.3333333333 56.6666653951 57.9999987284 57.9999987284 56.6666653951 58.0000012716 59.3333346049 59.3333346049 58.0000012716 59.3333333333 60.6666666667 60.6666666667 59.3333333333 60.6666653951 61.9999987284 61.9999987284 60.6666653951 62.0000012716 63.3333346049 63.3333346049 62.0000012716 63.3333333333 64.6666666667 64.6666666667 63.3333333333 64.6666692098 66.0000025431 66.0000025431 64.6666692098 65.9999974569 67.3333307902 67.3333307902 65.9999974569 67.3333333333 68.6666666667 68.6666666667 67.3333333333 68.6666692098 70.0000025431 70.0000025431 68.6666692098 69.9999974569 71.3333307902 71.3333307902 69.9999974569 71.3333333333 72.6666666667 72.6666666667 71.3333333333 72.6666692098 74.0000025431 74.0000025431 72.6666692098 73.9999974569 75.3333307902 75.3333307902 73.9999974569 75.3333333333 76.6666666667 76.6666666667 75.3333333333 76.6666692098 78.0000025431 78.0000025431 76.6666692098 77.9999974569 79.3333307902 79.3333307902 77.9999974569 79.3333333333 80.6666666667 80.6666666667 79.3333333333 80.6666692098 82.0000025431 82.0000025431 80.6666692098 81.9999974569 83.3333307902 83.3333307902 81.9999974569 83.3333333333 84.6666666667 84.6666666667 83.3333333333 84.6666692098 86.0000025431 86.0000025431 84.6666692098 85.9999974569 87.3333307902 87.3333307902 85.9999974569 87.3333333333 88.6666666667 88.6666666667 87.3333333333 88.6666692098 90.0000025431 90.0000025431 88.6666692098 89.9999974569 91.3333307902 91.3333307902 89.9999974569 91.3333333333 92.6666666667 92.6666666667 91.3333333333 92.6666692098 94.0000025431 94.0000025431 92.6666692098 93.9999974569 95.3333307902 95.3333307902 93.9999974569 95.3333333333 96.6666666667 96.6666666667 95.3333333333 96.6666692098 98.0000025431 98.0000025431 96.6666692098 97.9999974569 99.3333307902 99.3333307902 97.9999974569 99.3333333333 100.666666667 100.666666667 99.3333333333 100.66666921 102.000002543 102.000002543 100.66666921 101.999997457 103.33333079 103.33333079 101.999997457 103.333333333 104.666666667 104.666666667 103.333333333 104.66666921 106.000002543 106.000002543 104.66666921 105.999997457 107.33333079 107.33333079 105.999997457 107.333333333 108.666666667 108.666666667 107.333333333 108.66666921 110.000002543 110.000002543 108.66666921 109.999997457 111.33333079 111.33333079 109.999997457 111.333333333 112.666666667 112.666666667 111.333333333 112.66666921 114.000002543 114.000002543 112.66666921 113.999997457 115.33333079 115.33333079 113.999997457 115.333333333 116.666666667 116.666666667 115.333333333 116.66666921 118.000002543 118.000002543 116.66666921 117.999997457 119.33333079 119.33333079 117.999997457 119.333333333 120.666666667 120.666666667 119.333333333 120.66666921 122.000002543 122.000002543 120.66666921 121.999997457 123.33333079 123.33333079 121.999997457 123.333333333 124.666666667 124.666666667 123.333333333 124.66666921 126.000002543 126.000002543 124.66666921 125.999997457 127.33333079 127.33333079 125.999997457 127.333333333 128.666666667 128.666666667 127.333333333 128.66666158 129.999994914 129.999994914 128.66666158 130.000005086 131.33333842 131.33333842 130.000005086 131.333333333 132.666666667 132.666666667 131.333333333 132.66666158 133.999994914 133.999994914 132.66666158 134.000005086 135.33333842 135.33333842 134.000005086 135.333333333 136.666666667 136.666666667 135.333333333 136.66666158 137.999994914 137.999994914 136.66666158 138.000005086 139.33333842 139.33333842 138.000005086 139.333333333 140.666666667 140.666666667 139.333333333 140.66666158 141.999994914 141.999994914 140.66666158 142.000005086 143.33333842 143.33333842 142.000005086 143.333333333 144.666666667 144.666666667 143.333333333 144.66666158 145.999994914 145.999994914 144.66666158 146.000005086 147.33333842 147.33333842 146.000005086 147.333333333 148.666666667 148.666666667 147.333333333 148.66666158 149.999994914 149.999994914 148.66666158 150.000005086 151.33333842 151.33333842 150.000005086 151.333333333 152.666666667 152.666666667 151.333333333 152.66666158 153.999994914 153.999994914 152.66666158 154.000005086 155.33333842 155.33333842 154.000005086 155.333333333 156.666666667 156.666666667 155.333333333 156.66666158 157.999994914 157.999994914 156.66666158 158.000005086 159.33333842 159.33333842 158.000005086 159.333333333 160.666666667 160.666666667 159.333333333 160.66666158 161.999994914 161.999994914 160.66666158 162.000005086 163.33333842 163.33333842 162.000005086 163.333333333 164.666666667 164.666666667 163.333333333 164.66666158 165.999994914 165.999994914 164.66666158 166.000005086 167.33333842 167.33333842 166.000005086 167.333333333 168.666666667 168.666666667 167.333333333 168.66666158 169.999994914 169.999994914 168.66666158 170.000005086 171.33333842 171.33333842 170.000005086 171.333333333 172.666666667 172.666666667 171.333333333 172.66666158 173.999994914 173.999994914 172.66666158 174.000005086 175.33333842 175.33333842 174.000005086 175.333333333 176.666666667 176.666666667 175.333333333 176.66666158 177.999994914 177.999994914 176.66666158 178.000005086 179.33333842 179.33333842 178.000005086 179.333333333 180.666666667 180.666666667 179.333333333 180.66666158 181.999994914 181.999994914 180.66666158 182.000005086 183.33333842 183.33333842 182.000005086 183.333333333 184.666666667 184.666666667 183.333333333 184.66666158 185.999994914 185.999994914 184.66666158 186.000005086 187.33333842 187.33333842 186.000005086 187.333333333 188.666666667 188.666666667 187.333333333 188.66666158 189.999994914 189.999994914 188.66666158 190.000005086 191.33333842 191.33333842 190.000005086 191.333333333 192.666666667 192.666666667 191.333333333 192.66666158 193.999994914 193.999994914 192.66666158 194.000005086 195.33333842 195.33333842 194.000005086 195.333333333 196.666666667 196.666666667 195.333333333 196.66666158 197.999994914 197.999994914 196.66666158 198.000005086 199.33333842 199.33333842 198.000005086 199.333333333 200.666666667 200.666666667 199.333333333 200.66666158 201.999994914 201.999994914 200.66666158 202.000005086 203.33333842 203.33333842 202.000005086 203.333333333 204.666666667 204.666666667 203.333333333 204.66666158 205.999994914 205.999994914 204.66666158 206.000005086 207.33333842 207.33333842 206.000005086 207.333333333 208.666666667 208.666666667 207.333333333 208.66666158 209.999994914 209.999994914 208.66666158 210.000005086 211.33333842 211.33333842 210.000005086 211.333333333 212.666666667 212.666666667 211.333333333 212.66666158 213.999994914 213.999994914 212.66666158 214.000005086 215.33333842 215.33333842 214.000005086 215.333333333 216.666666667 216.666666667 215.333333333 216.66666158 217.999994914 217.999994914 216.66666158 218.000005086 219.33333842 219.33333842 218.000005086 219.333333333 220.666666667 220.666666667 219.333333333 220.66666158 221.999994914 221.999994914 220.66666158 222.000005086 223.33333842 223.33333842 222.000005086 223.333333333 224.666666667 224.666666667 223.333333333 224.66666158 225.999994914 225.999994914 224.66666158 226.000005086 227.33333842 227.33333842 226.000005086 227.333333333 228.666666667 228.666666667 227.333333333 228.66666158 229.999994914 229.999994914 228.66666158 230.000005086 231.33333842 231.33333842 230.000005086 231.333333333 232.666666667 232.666666667 231.333333333 232.66666158 233.999994914 233.999994914 232.66666158 234.000005086 235.33333842 235.33333842 234.000005086 235.333333333 236.666666667 236.666666667 235.333333333 236.66666158 237.999994914 237.999994914 236.66666158 238.000005086 239.33333842 239.33333842 238.000005086 239.333333333 240.666666667 240.666666667 239.333333333 240.66666158 241.999994914 241.999994914 240.66666158 242.000005086 243.33333842 243.33333842 242.000005086 243.333333333 244.666666667 244.666666667 243.333333333 244.66666158 245.999994914 245.999994914 244.66666158 246.000005086 247.33333842 247.33333842 246.000005086 247.333333333 248.666666667 248.666666667 247.333333333 248.66666158 249.999994914 249.999994914 248.66666158 250.000005086 251.33333842 251.33333842 250.000005086 251.333333333 252.666666667 252.666666667 251.333333333 252.66666158 253.999994914 253.999994914 252.66666158 254.000005086 255.33333842 255.33333842 254.000005086 255.333333333 256.666666667 256.666666667 255.333333333 256.666676839 258.000010173 258.000010173 256.666676839 257.999989827 259.333323161 259.333323161 257.999989827 259.333333333 260.666666667 260.666666667 259.333333333 260.666676839 262.000010173 262.000010173 260.666676839 261.999989827 263.333323161 263.333323161 261.999989827 263.333333333 264.666666667 264.666666667 263.333333333 264.666676839 266.000010173 266.000010173 264.666676839 265.999989827 267.333323161 267.333323161 265.999989827 267.333333333 268.666666667 268.666666667 267.333333333 268.666676839 270.000010173 270.000010173 268.666676839 269.999989827 271.333323161 271.333323161 269.999989827 271.333333333 272.666666667 272.666666667 271.333333333 272.666676839 274.000010173 274.000010173 272.666676839 273.999989827 275.333323161 275.333323161 273.999989827 275.333333333 276.666666667 276.666666667 275.333333333 276.666676839 278.000010173 278.000010173 276.666676839 277.999989827 279.333323161 279.333323161 277.999989827 279.333333333 280.666666667 280.666666667 279.333333333 280.666676839 282.000010173 282.000010173 280.666676839 281.999989827 283.333323161 283.333323161 281.999989827 283.333333333 284.666666667 284.666666667 283.333333333 284.666676839 286.000010173 286.000010173 284.666676839 285.999989827 287.333323161 287.333323161 285.999989827 287.333333333 288.666666667 288.666666667 287.333333333 288.666676839 290.000010173 290.000010173 288.666676839 289.999989827 291.333323161 291.333323161 289.999989827 291.333333333 292.666666667 292.666666667 291.333333333 292.666676839 294.000010173 294.000010173 292.666676839 293.999989827 295.333323161 295.333323161 293.999989827 295.333333333 296.666666667 296.666666667 295.333333333 296.666676839 298.000010173 298.000010173 296.666676839 297.999989827 299.333323161 299.333323161 297.999989827 299.333333333 300.666666667 300.666666667 299.333333333 300.666676839 302.000010173 302.000010173 300.666676839 301.999989827 303.333323161 303.333323161 301.999989827 303.333333333 304.666666667 304.666666667 303.333333333 304.666676839 306.000010173 306.000010173 304.666676839 305.999989827 307.333323161 307.333323161 305.999989827 307.333333333 308.666666667 308.666666667 307.333333333 308.666676839 310.000010173 310.000010173 308.666676839 309.999989827 311.333323161 311.333323161 309.999989827 311.333333333 312.666666667 312.666666667 311.333333333 312.666676839 314.000010173 314.000010173 312.666676839 313.999989827 315.333323161 315.333323161 313.999989827 315.333333333 316.666666667 316.666666667 315.333333333 316.666676839 318.000010173 318.000010173 316.666676839 317.999989827 319.333323161 319.333323161 317.999989827 319.333333333 320.666666667 320.666666667 319.333333333 320.666676839 322.000010173 322.000010173 320.666676839 321.999989827 323.333323161 323.333323161 321.999989827 323.333333333 324.666666667 324.666666667 323.333333333 324.666676839 326.000010173 326.000010173 324.666676839 325.999989827 327.333323161 327.333323161 325.999989827 327.333333333 328.666666667 328.666666667 327.333333333 328.666676839 330.000010173 330.000010173 328.666676839 329.999989827 331.333323161 331.333323161 329.999989827 331.333333333 332.666666667 332.666666667 331.333333333 332.666676839 334.000010173 334.000010173 332.666676839 333.999989827 335.333323161 335.333323161 333.999989827 335.333333333 336.666666667 336.666666667 335.333333333 336.666676839 338.000010173 338.000010173 336.666676839 337.999989827 339.333323161 339.333323161 337.999989827 339.333333333 340.666666667 340.666666667 339.333333333 340.666676839 342.000010173 342.000010173 340.666676839 341.999989827 343.333323161 343.333323161 341.999989827 343.333333333 344.666666667 344.666666667 343.333333333 344.666676839 346.000010173 346.000010173 344.666676839 345.999989827 347.333323161 347.333323161 345.999989827 347.333333333 348.666666667 348.666666667 347.333333333 348.666676839 350.000010173 350.000010173 348.666676839 349.999989827 351.333323161 351.333323161 349.999989827 351.333333333 352.666666667 352.666666667 351.333333333 352.666676839 354.000010173 354.000010173 352.666676839 353.999989827 355.333323161 355.333323161 353.999989827 355.333333333 356.666666667 356.666666667 355.333333333 356.666676839 358.000010173 358.000010173 356.666676839 357.999989827 359.333323161 359.333323161 357.999989827 -0.666666666667 0.666666666667 0.666666666667 -0.666666666667 0.666666706403 2.00000003974 2.00000003974 0.666666706403 2.00000007947 3.33333341281 3.33333341281 2.00000007947 3.33333333333 4.66666666667 4.66666666667 3.33333333333 4.66666682561 6.00000015895 6.00000015895 4.66666682561 5.99999984105 7.33333317439 7.33333317439 5.99999984105 7.33333333333 8.66666666667 8.66666666667 7.33333333333 8.66666634878 9.99999968211 9.99999968211 8.66666634878 10.0000003179 11.3333336512 11.3333336512 10.0000003179 11.3333333333 12.6666666667 12.6666666667 11.3333333333 12.6666663488 13.9999996821 13.9999996821 12.6666663488 14.0000003179 15.3333336512 15.3333336512 14.0000003179 15.3333333333 16.6666666667 16.6666666667 15.3333333333 16.6666673024 18.0000006358 18.0000006358 16.6666673024 17.9999993642 19.3333326976 19.3333326976 17.9999993642 19.3333333333 20.6666666667 20.6666666667 19.3333333333 20.6666673024 22.0000006358 22.0000006358 20.6666673024 21.9999993642 23.3333326976 23.3333326976 21.9999993642 23.3333333333 24.6666666667 24.6666666667 23.3333333333 24.6666673024 26.0000006358 26.0000006358 24.6666673024 25.9999993642 27.3333326976 27.3333326976 25.9999993642 27.3333333333 28.6666666667 28.6666666667 27.3333333333 28.6666673024 30.0000006358 30.0000006358 28.6666673024 29.9999993642 31.3333326976 31.3333326976 29.9999993642 31.3333333333 32.6666666667 32.6666666667 31.3333333333 32.6666653951 33.9999987284 33.9999987284 32.6666653951 34.0000012716 35.3333346049 35.3333346049 34.0000012716 35.3333333333 36.6666666667 36.6666666667 35.3333333333 36.6666653951 37.9999987284 37.9999987284 36.6666653951 38.0000012716 39.3333346049 39.3333346049 38.0000012716 39.3333333333 40.6666666667 40.6666666667 39.3333333333 40.6666653951 41.9999987284 41.9999987284 40.6666653951 42.0000012716 43.3333346049 43.3333346049 42.0000012716 43.3333333333 44.6666666667 44.6666666667 43.3333333333 44.6666653951 45.9999987284 45.9999987284 44.6666653951 46.0000012716 47.3333346049 47.3333346049 46.0000012716 47.3333333333 48.6666666667 48.6666666667 47.3333333333 48.6666653951 49.9999987284 49.9999987284 48.6666653951 50.0000012716 51.3333346049 51.3333346049 50.0000012716 51.3333333333 52.6666666667 52.6666666667 51.3333333333 52.6666653951 53.9999987284 53.9999987284 52.6666653951 54.0000012716 55.3333346049 55.3333346049 54.0000012716 55.3333333333 56.6666666667 56.6666666667 55.3333333333 56.6666653951 57.9999987284 57.9999987284 56.6666653951 58.0000012716 59.3333346049 59.3333346049 58.0000012716 59.3333333333 60.6666666667 60.6666666667 59.3333333333 60.6666653951 61.9999987284 61.9999987284 60.6666653951 62.0000012716 63.3333346049 63.3333346049 62.0000012716 63.3333333333 64.6666666667 64.6666666667 63.3333333333 64.6666692098 66.0000025431 66.0000025431 64.6666692098 65.9999974569 67.3333307902 67.3333307902 65.9999974569 67.3333333333 68.6666666667 68.6666666667 67.3333333333 68.6666692098 70.0000025431 70.0000025431 68.6666692098 69.9999974569 71.3333307902 71.3333307902 69.9999974569 71.3333333333 72.6666666667 72.6666666667 71.3333333333 72.6666692098 74.0000025431 74.0000025431 72.6666692098 73.9999974569 75.3333307902 75.3333307902 73.9999974569 75.3333333333 76.6666666667 76.6666666667 75.3333333333 76.6666692098 78.0000025431 78.0000025431 76.6666692098 77.9999974569 79.3333307902 79.3333307902 77.9999974569 79.3333333333 80.6666666667 80.6666666667 79.3333333333 80.6666692098 82.0000025431 82.0000025431 80.6666692098 81.9999974569 83.3333307902 83.3333307902 81.9999974569 83.3333333333 84.6666666667 84.6666666667 83.3333333333 84.6666692098 86.0000025431 86.0000025431 84.6666692098 85.9999974569 87.3333307902 87.3333307902 85.9999974569 87.3333333333 88.6666666667 88.6666666667 87.3333333333 88.6666692098 90.0000025431 90.0000025431 88.6666692098 89.9999974569 91.3333307902 91.3333307902 89.9999974569 91.3333333333 92.6666666667 92.6666666667 91.3333333333 92.6666692098 94.0000025431 94.0000025431 92.6666692098 93.9999974569 95.3333307902 95.3333307902 93.9999974569 95.3333333333 96.6666666667 96.6666666667 95.3333333333 96.6666692098 98.0000025431 98.0000025431 96.6666692098 97.9999974569 99.3333307902 99.3333307902 97.9999974569 99.3333333333 100.666666667 100.666666667 99.3333333333 100.66666921 102.000002543 102.000002543 100.66666921 101.999997457 103.33333079 103.33333079 101.999997457 103.333333333 104.666666667 104.666666667 103.333333333 104.66666921 106.000002543 106.000002543 104.66666921 105.999997457 107.33333079 107.33333079 105.999997457 107.333333333 108.666666667 108.666666667 107.333333333 108.66666921 110.000002543 110.000002543 108.66666921 109.999997457 111.33333079 111.33333079 109.999997457 111.333333333 112.666666667 112.666666667 111.333333333 112.66666921 114.000002543 114.000002543 112.66666921 113.999997457 115.33333079 115.33333079 113.999997457 115.333333333 116.666666667 116.666666667 115.333333333 116.66666921 118.000002543 118.000002543 116.66666921 117.999997457 119.33333079 119.33333079 117.999997457 119.333333333 120.666666667 120.666666667 119.333333333 120.66666921 122.000002543 122.000002543 120.66666921 121.999997457 123.33333079 123.33333079 121.999997457 123.333333333 124.666666667 124.666666667 123.333333333 124.66666921 126.000002543 126.000002543 124.66666921 125.999997457 127.33333079 127.33333079 125.999997457 127.333333333 128.666666667 128.666666667 127.333333333 128.66666158 129.999994914 129.999994914 128.66666158 130.000005086 131.33333842 131.33333842 130.000005086 131.333333333 132.666666667 132.666666667 131.333333333 132.66666158 133.999994914 133.999994914 132.66666158 134.000005086 135.33333842 135.33333842 134.000005086 135.333333333 136.666666667 136.666666667 135.333333333 136.66666158 137.999994914 137.999994914 136.66666158 138.000005086 139.33333842 139.33333842 138.000005086 139.333333333 140.666666667 140.666666667 139.333333333 +140.66666158 141.999994914 141.999994914 140.66666158 142.000005086 143.33333842 143.33333842 142.000005086 143.333333333 144.666666667 144.666666667 143.333333333 144.66666158 145.999994914 145.999994914 144.66666158 146.000005086 147.33333842 147.33333842 146.000005086 147.333333333 148.666666667 148.666666667 147.333333333 148.66666158 149.999994914 149.999994914 148.66666158 150.000005086 151.33333842 151.33333842 150.000005086 151.333333333 152.666666667 152.666666667 151.333333333 152.66666158 153.999994914 153.999994914 152.66666158 154.000005086 155.33333842 155.33333842 154.000005086 155.333333333 156.666666667 156.666666667 155.333333333 156.66666158 157.999994914 157.999994914 156.66666158 158.000005086 159.33333842 159.33333842 158.000005086 159.333333333 160.666666667 160.666666667 159.333333333 160.66666158 161.999994914 161.999994914 160.66666158 162.000005086 163.33333842 163.33333842 162.000005086 163.333333333 164.666666667 164.666666667 163.333333333 164.66666158 165.999994914 165.999994914 164.66666158 166.000005086 167.33333842 167.33333842 166.000005086 167.333333333 168.666666667 168.666666667 167.333333333 168.66666158 169.999994914 169.999994914 168.66666158 170.000005086 171.33333842 171.33333842 170.000005086 171.333333333 172.666666667 172.666666667 171.333333333 172.66666158 173.999994914 173.999994914 172.66666158 174.000005086 175.33333842 175.33333842 174.000005086 175.333333333 176.666666667 176.666666667 175.333333333 176.66666158 177.999994914 177.999994914 176.66666158 178.000005086 179.33333842 179.33333842 178.000005086 179.333333333 180.666666667 180.666666667 179.333333333 180.66666158 181.999994914 181.999994914 180.66666158 182.000005086 183.33333842 183.33333842 182.000005086 183.333333333 184.666666667 184.666666667 183.333333333 184.66666158 185.999994914 185.999994914 184.66666158 186.000005086 187.33333842 187.33333842 186.000005086 187.333333333 188.666666667 188.666666667 187.333333333 188.66666158 189.999994914 189.999994914 188.66666158 190.000005086 191.33333842 191.33333842 190.000005086 191.333333333 192.666666667 192.666666667 191.333333333 192.66666158 193.999994914 193.999994914 192.66666158 194.000005086 195.33333842 195.33333842 194.000005086 195.333333333 196.666666667 196.666666667 195.333333333 196.66666158 197.999994914 197.999994914 196.66666158 198.000005086 199.33333842 199.33333842 198.000005086 199.333333333 200.666666667 200.666666667 199.333333333 200.66666158 201.999994914 201.999994914 200.66666158 202.000005086 203.33333842 203.33333842 202.000005086 203.333333333 204.666666667 204.666666667 203.333333333 204.66666158 205.999994914 205.999994914 204.66666158 206.000005086 207.33333842 207.33333842 206.000005086 207.333333333 208.666666667 208.666666667 207.333333333 208.66666158 209.999994914 209.999994914 208.66666158 210.000005086 211.33333842 211.33333842 210.000005086 211.333333333 212.666666667 212.666666667 211.333333333 212.66666158 213.999994914 213.999994914 212.66666158 214.000005086 215.33333842 215.33333842 214.000005086 215.333333333 216.666666667 216.666666667 215.333333333 216.66666158 217.999994914 217.999994914 216.66666158 218.000005086 219.33333842 219.33333842 218.000005086 219.333333333 220.666666667 220.666666667 219.333333333 220.66666158 221.999994914 221.999994914 220.66666158 222.000005086 223.33333842 223.33333842 222.000005086 223.333333333 224.666666667 224.666666667 223.333333333 224.66666158 225.999994914 225.999994914 224.66666158 226.000005086 227.33333842 227.33333842 226.000005086 227.333333333 228.666666667 228.666666667 227.333333333 228.66666158 229.999994914 229.999994914 228.66666158 230.000005086 231.33333842 231.33333842 230.000005086 231.333333333 232.666666667 232.666666667 231.333333333 232.66666158 233.999994914 233.999994914 232.66666158 234.000005086 235.33333842 235.33333842 234.000005086 235.333333333 236.666666667 236.666666667 235.333333333 236.66666158 237.999994914 237.999994914 236.66666158 238.000005086 239.33333842 239.33333842 238.000005086 239.333333333 240.666666667 240.666666667 239.333333333 240.66666158 241.999994914 241.999994914 240.66666158 242.000005086 243.33333842 243.33333842 242.000005086 243.333333333 244.666666667 244.666666667 243.333333333 244.66666158 245.999994914 245.999994914 244.66666158 246.000005086 247.33333842 247.33333842 246.000005086 247.333333333 248.666666667 248.666666667 247.333333333 248.66666158 249.999994914 249.999994914 248.66666158 250.000005086 251.33333842 251.33333842 250.000005086 251.333333333 252.666666667 252.666666667 251.333333333 252.66666158 253.999994914 253.999994914 252.66666158 254.000005086 255.33333842 255.33333842 254.000005086 255.333333333 256.666666667 256.666666667 255.333333333 256.666676839 258.000010173 258.000010173 256.666676839 257.999989827 259.333323161 259.333323161 257.999989827 259.333333333 260.666666667 260.666666667 259.333333333 260.666676839 262.000010173 262.000010173 260.666676839 261.999989827 263.333323161 263.333323161 261.999989827 263.333333333 264.666666667 264.666666667 263.333333333 264.666676839 266.000010173 266.000010173 264.666676839 265.999989827 267.333323161 267.333323161 265.999989827 267.333333333 268.666666667 268.666666667 267.333333333 268.666676839 270.000010173 270.000010173 268.666676839 269.999989827 271.333323161 271.333323161 269.999989827 271.333333333 272.666666667 272.666666667 271.333333333 272.666676839 274.000010173 274.000010173 272.666676839 273.999989827 275.333323161 275.333323161 273.999989827 275.333333333 276.666666667 276.666666667 275.333333333 276.666676839 278.000010173 278.000010173 276.666676839 277.999989827 279.333323161 279.333323161 277.999989827 279.333333333 280.666666667 280.666666667 279.333333333 280.666676839 282.000010173 282.000010173 280.666676839 281.999989827 283.333323161 283.333323161 281.999989827 283.333333333 284.666666667 284.666666667 283.333333333 284.666676839 286.000010173 286.000010173 284.666676839 285.999989827 287.333323161 287.333323161 285.999989827 287.333333333 288.666666667 288.666666667 287.333333333 288.666676839 290.000010173 290.000010173 288.666676839 289.999989827 291.333323161 291.333323161 289.999989827 291.333333333 292.666666667 292.666666667 291.333333333 292.666676839 294.000010173 294.000010173 292.666676839 293.999989827 295.333323161 295.333323161 293.999989827 295.333333333 296.666666667 296.666666667 295.333333333 296.666676839 298.000010173 298.000010173 296.666676839 297.999989827 299.333323161 299.333323161 297.999989827 299.333333333 300.666666667 300.666666667 299.333333333 300.666676839 302.000010173 302.000010173 300.666676839 301.999989827 303.333323161 303.333323161 301.999989827 303.333333333 304.666666667 304.666666667 303.333333333 304.666676839 306.000010173 306.000010173 304.666676839 305.999989827 307.333323161 307.333323161 305.999989827 307.333333333 308.666666667 308.666666667 307.333333333 308.666676839 310.000010173 310.000010173 308.666676839 309.999989827 311.333323161 311.333323161 309.999989827 311.333333333 312.666666667 312.666666667 311.333333333 312.666676839 314.000010173 314.000010173 312.666676839 313.999989827 315.333323161 315.333323161 313.999989827 315.333333333 316.666666667 316.666666667 315.333333333 316.666676839 318.000010173 318.000010173 316.666676839 317.999989827 319.333323161 319.333323161 317.999989827 319.333333333 320.666666667 320.666666667 319.333333333 320.666676839 322.000010173 322.000010173 320.666676839 321.999989827 323.333323161 323.333323161 321.999989827 323.333333333 324.666666667 324.666666667 323.333333333 324.666676839 326.000010173 326.000010173 324.666676839 325.999989827 327.333323161 327.333323161 325.999989827 327.333333333 328.666666667 328.666666667 327.333333333 328.666676839 330.000010173 330.000010173 328.666676839 329.999989827 331.333323161 331.333323161 329.999989827 331.333333333 332.666666667 332.666666667 331.333333333 332.666676839 334.000010173 334.000010173 332.666676839 333.999989827 335.333323161 335.333323161 333.999989827 335.333333333 336.666666667 336.666666667 335.333333333 336.666676839 338.000010173 338.000010173 336.666676839 337.999989827 339.333323161 339.333323161 337.999989827 339.333333333 340.666666667 340.666666667 339.333333333 340.666676839 342.000010173 342.000010173 340.666676839 341.999989827 343.333323161 343.333323161 341.999989827 343.333333333 344.666666667 344.666666667 343.333333333 344.666676839 346.000010173 346.000010173 344.666676839 345.999989827 347.333323161 347.333323161 345.999989827 347.333333333 348.666666667 348.666666667 347.333333333 348.666676839 350.000010173 350.000010173 348.666676839 349.999989827 351.333323161 351.333323161 349.999989827 351.333333333 352.666666667 352.666666667 351.333333333 352.666676839 354.000010173 354.000010173 352.666676839 353.999989827 355.333323161 355.333323161 353.999989827 355.333333333 356.666666667 356.666666667 355.333333333 356.666676839 358.000010173 358.000010173 356.666676839 357.999989827 359.333323161 359.333323161 357.999989827 -0.703125 0.703125 0.703125 -0.703125 0.703125 2.109375 2.109375 0.703125 2.109375 3.515625 3.515625 2.109375 3.515625 4.921875 4.921875 3.515625 4.921875 6.328125 6.328125 4.921875 6.328125 7.734375 7.734375 6.328125 7.734375 9.140625 9.140625 7.734375 9.140625 10.546875 10.546875 9.140625 10.546875 11.953125 11.953125 10.546875 11.953125 13.359375 13.359375 11.953125 13.359375 14.765625 14.765625 13.359375 14.765625 16.171875 16.171875 14.765625 16.171875 17.578125 17.578125 16.171875 17.578125 18.984375 18.984375 17.578125 18.984375 20.390625 20.390625 18.984375 20.390625 21.796875 21.796875 20.390625 21.796875 23.203125 23.203125 21.796875 23.203125 24.609375 24.609375 23.203125 24.609375 26.015625 26.015625 24.609375 26.015625 27.421875 27.421875 26.015625 27.421875 28.828125 28.828125 27.421875 28.828125 30.234375 30.234375 28.828125 30.234375 31.640625 31.640625 30.234375 31.640625 33.046875 33.046875 31.640625 33.046875 34.453125 34.453125 33.046875 34.453125 35.859375 35.859375 34.453125 35.859375 37.265625 37.265625 35.859375 37.265625 38.671875 38.671875 37.265625 38.671875 40.078125 40.078125 38.671875 40.078125 41.484375 41.484375 40.078125 41.484375 42.890625 42.890625 41.484375 42.890625 44.296875 44.296875 42.890625 44.296875 45.703125 45.703125 44.296875 45.703125 47.109375 47.109375 45.703125 47.109375 48.515625 48.515625 47.109375 48.515625 49.921875 49.921875 48.515625 49.921875 51.328125 51.328125 49.921875 51.328125 52.734375 52.734375 51.328125 52.734375 54.140625 54.140625 52.734375 54.140625 55.546875 55.546875 54.140625 55.546875 56.953125 56.953125 55.546875 56.953125 58.359375 58.359375 56.953125 58.359375 59.765625 59.765625 58.359375 59.765625 61.171875 61.171875 59.765625 61.171875 62.578125 62.578125 61.171875 62.578125 63.984375 63.984375 62.578125 63.984375 65.390625 65.390625 63.984375 65.390625 66.796875 66.796875 65.390625 66.796875 68.203125 68.203125 66.796875 68.203125 69.609375 69.609375 68.203125 69.609375 71.015625 71.015625 69.609375 71.015625 72.421875 72.421875 71.015625 72.421875 73.828125 73.828125 72.421875 73.828125 75.234375 75.234375 73.828125 75.234375 76.640625 76.640625 75.234375 76.640625 78.046875 78.046875 76.640625 78.046875 79.453125 79.453125 78.046875 79.453125 80.859375 80.859375 79.453125 80.859375 82.265625 82.265625 80.859375 82.265625 83.671875 83.671875 82.265625 83.671875 85.078125 85.078125 83.671875 85.078125 86.484375 86.484375 85.078125 86.484375 87.890625 87.890625 86.484375 87.890625 89.296875 89.296875 87.890625 89.296875 90.703125 90.703125 89.296875 90.703125 92.109375 92.109375 90.703125 92.109375 93.515625 93.515625 92.109375 93.515625 94.921875 94.921875 93.515625 94.921875 96.328125 96.328125 94.921875 96.328125 97.734375 97.734375 96.328125 97.734375 99.140625 99.140625 97.734375 99.140625 100.546875 100.546875 99.140625 100.546875 101.953125 101.953125 100.546875 101.953125 103.359375 103.359375 101.953125 103.359375 104.765625 104.765625 103.359375 104.765625 106.171875 106.171875 104.765625 106.171875 107.578125 107.578125 106.171875 107.578125 108.984375 108.984375 107.578125 108.984375 110.390625 110.390625 108.984375 110.390625 111.796875 111.796875 110.390625 111.796875 113.203125 113.203125 111.796875 113.203125 114.609375 114.609375 113.203125 114.609375 116.015625 116.015625 114.609375 116.015625 117.421875 117.421875 116.015625 117.421875 118.828125 118.828125 117.421875 118.828125 120.234375 120.234375 118.828125 120.234375 121.640625 121.640625 120.234375 121.640625 123.046875 123.046875 121.640625 123.046875 124.453125 124.453125 123.046875 124.453125 125.859375 125.859375 124.453125 125.859375 127.265625 127.265625 125.859375 127.265625 128.671875 128.671875 127.265625 128.671875 130.078125 130.078125 128.671875 130.078125 131.484375 131.484375 130.078125 131.484375 132.890625 132.890625 131.484375 132.890625 134.296875 134.296875 132.890625 134.296875 135.703125 135.703125 134.296875 135.703125 137.109375 137.109375 135.703125 137.109375 138.515625 138.515625 137.109375 138.515625 139.921875 139.921875 138.515625 139.921875 141.328125 141.328125 139.921875 141.328125 142.734375 142.734375 141.328125 142.734375 144.140625 144.140625 142.734375 144.140625 145.546875 145.546875 144.140625 145.546875 146.953125 146.953125 145.546875 146.953125 148.359375 148.359375 146.953125 148.359375 149.765625 149.765625 148.359375 149.765625 151.171875 151.171875 149.765625 151.171875 152.578125 152.578125 151.171875 152.578125 153.984375 153.984375 152.578125 153.984375 155.390625 155.390625 153.984375 155.390625 156.796875 156.796875 155.390625 156.796875 158.203125 158.203125 156.796875 158.203125 159.609375 159.609375 158.203125 159.609375 161.015625 161.015625 159.609375 161.015625 162.421875 162.421875 161.015625 162.421875 163.828125 163.828125 162.421875 163.828125 165.234375 165.234375 163.828125 165.234375 166.640625 166.640625 165.234375 166.640625 168.046875 168.046875 166.640625 168.046875 169.453125 169.453125 168.046875 169.453125 170.859375 170.859375 169.453125 170.859375 172.265625 172.265625 170.859375 172.265625 173.671875 173.671875 172.265625 173.671875 175.078125 175.078125 173.671875 175.078125 176.484375 176.484375 175.078125 176.484375 177.890625 177.890625 176.484375 177.890625 179.296875 179.296875 177.890625 179.296875 180.703125 180.703125 179.296875 180.703125 182.109375 182.109375 180.703125 182.109375 183.515625 183.515625 182.109375 183.515625 184.921875 184.921875 183.515625 184.921875 186.328125 186.328125 184.921875 186.328125 187.734375 187.734375 186.328125 187.734375 189.140625 189.140625 187.734375 189.140625 190.546875 190.546875 189.140625 190.546875 191.953125 191.953125 190.546875 191.953125 193.359375 193.359375 191.953125 193.359375 194.765625 194.765625 193.359375 194.765625 196.171875 196.171875 194.765625 196.171875 197.578125 197.578125 196.171875 197.578125 198.984375 198.984375 197.578125 198.984375 200.390625 200.390625 198.984375 200.390625 201.796875 201.796875 200.390625 201.796875 203.203125 203.203125 201.796875 203.203125 204.609375 204.609375 203.203125 204.609375 206.015625 206.015625 204.609375 206.015625 207.421875 207.421875 206.015625 207.421875 208.828125 208.828125 207.421875 208.828125 210.234375 210.234375 208.828125 210.234375 211.640625 211.640625 210.234375 211.640625 213.046875 213.046875 211.640625 213.046875 214.453125 214.453125 213.046875 214.453125 215.859375 215.859375 214.453125 215.859375 217.265625 217.265625 215.859375 217.265625 218.671875 218.671875 217.265625 218.671875 220.078125 220.078125 218.671875 220.078125 221.484375 221.484375 220.078125 221.484375 222.890625 222.890625 221.484375 222.890625 224.296875 224.296875 222.890625 224.296875 225.703125 225.703125 224.296875 225.703125 227.109375 227.109375 225.703125 227.109375 228.515625 228.515625 227.109375 228.515625 229.921875 229.921875 228.515625 229.921875 231.328125 231.328125 229.921875 231.328125 232.734375 232.734375 231.328125 232.734375 234.140625 234.140625 232.734375 234.140625 235.546875 235.546875 234.140625 235.546875 236.953125 236.953125 235.546875 236.953125 238.359375 238.359375 236.953125 238.359375 239.765625 239.765625 238.359375 239.765625 241.171875 241.171875 239.765625 241.171875 242.578125 242.578125 241.171875 242.578125 243.984375 243.984375 242.578125 243.984375 245.390625 245.390625 243.984375 245.390625 246.796875 246.796875 245.390625 246.796875 248.203125 248.203125 246.796875 248.203125 249.609375 249.609375 248.203125 249.609375 251.015625 251.015625 249.609375 251.015625 252.421875 252.421875 251.015625 252.421875 253.828125 253.828125 252.421875 253.828125 255.234375 255.234375 253.828125 255.234375 256.640625 256.640625 255.234375 256.640625 258.046875 258.046875 256.640625 258.046875 259.453125 259.453125 258.046875 259.453125 260.859375 260.859375 259.453125 260.859375 262.265625 262.265625 260.859375 262.265625 263.671875 263.671875 262.265625 263.671875 265.078125 265.078125 263.671875 265.078125 266.484375 266.484375 265.078125 266.484375 267.890625 267.890625 266.484375 267.890625 269.296875 269.296875 267.890625 269.296875 270.703125 270.703125 269.296875 270.703125 272.109375 272.109375 270.703125 272.109375 273.515625 273.515625 272.109375 273.515625 274.921875 274.921875 273.515625 274.921875 276.328125 276.328125 274.921875 276.328125 277.734375 277.734375 276.328125 277.734375 279.140625 279.140625 277.734375 279.140625 280.546875 280.546875 279.140625 280.546875 281.953125 281.953125 280.546875 281.953125 283.359375 283.359375 281.953125 283.359375 284.765625 284.765625 283.359375 284.765625 286.171875 286.171875 284.765625 286.171875 287.578125 287.578125 286.171875 287.578125 288.984375 288.984375 287.578125 288.984375 290.390625 290.390625 288.984375 290.390625 291.796875 291.796875 290.390625 291.796875 293.203125 293.203125 291.796875 293.203125 294.609375 294.609375 293.203125 294.609375 296.015625 296.015625 294.609375 296.015625 297.421875 297.421875 296.015625 297.421875 298.828125 298.828125 297.421875 298.828125 300.234375 300.234375 298.828125 300.234375 301.640625 301.640625 300.234375 301.640625 303.046875 303.046875 301.640625 303.046875 304.453125 304.453125 303.046875 304.453125 305.859375 305.859375 304.453125 305.859375 307.265625 307.265625 305.859375 307.265625 308.671875 308.671875 307.265625 308.671875 310.078125 310.078125 308.671875 310.078125 311.484375 311.484375 310.078125 311.484375 312.890625 312.890625 311.484375 312.890625 314.296875 314.296875 312.890625 314.296875 315.703125 315.703125 314.296875 315.703125 317.109375 317.109375 315.703125 317.109375 318.515625 318.515625 317.109375 318.515625 319.921875 319.921875 318.515625 319.921875 321.328125 321.328125 319.921875 321.328125 322.734375 322.734375 321.328125 322.734375 324.140625 324.140625 322.734375 324.140625 325.546875 325.546875 324.140625 325.546875 326.953125 326.953125 325.546875 326.953125 328.359375 328.359375 326.953125 328.359375 329.765625 329.765625 328.359375 329.765625 331.171875 331.171875 329.765625 331.171875 332.578125 332.578125 331.171875 332.578125 333.984375 333.984375 332.578125 333.984375 335.390625 335.390625 333.984375 335.390625 336.796875 336.796875 335.390625 336.796875 338.203125 338.203125 336.796875 338.203125 339.609375 339.609375 338.203125 339.609375 341.015625 341.015625 339.609375 341.015625 342.421875 342.421875 341.015625 342.421875 343.828125 343.828125 342.421875 343.828125 345.234375 345.234375 343.828125 345.234375 346.640625 346.640625 345.234375 346.640625 348.046875 348.046875 346.640625 348.046875 349.453125 349.453125 348.046875 349.453125 350.859375 350.859375 349.453125 350.859375 352.265625 352.265625 350.859375 352.265625 353.671875 353.671875 352.265625 353.671875 355.078125 355.078125 353.671875 355.078125 356.484375 356.484375 355.078125 356.484375 357.890625 357.890625 356.484375 357.890625 359.296875 359.296875 357.890625 -0.72 0.72 0.72 -0.72 0.72000005722 2.16000005722 2.16000005722 0.72000005722 2.16000011444 3.60000011444 3.60000011444 2.16000011444 3.60000017166 5.04000017166 5.04000017166 3.60000017166 5.04000022888 6.48000022888 6.48000022888 5.04000022888 6.47999980927 7.91999980927 7.91999980927 6.47999980927 7.92000034332 9.36000034332 9.36000034332 7.92000034332 9.35999992371 10.7999999237 10.7999999237 9.35999992371 10.8000004578 12.2400004578 12.2400004578 10.8000004578 12.2400000381 13.6800000381 13.6800000381 12.2400000381 13.6799996185 15.1199996185 15.1199996185 13.6799996185 15.1200001526 16.5600001526 16.5600001526 15.1200001526 16.5600006866 18.0000006866 18.0000006866 16.5600006866 17.9999993134 19.4399993134 19.4399993134 17.9999993134 19.4399998474 20.8799998474 20.8799998474 19.4399998474 20.8800003815 22.3200003815 22.3200003815 20.8800003815 22.3200009155 23.7600009155 23.7600009155 22.3200009155 23.7599995422 25.1999995422 25.1999995422 23.7599995422 25.2000000763 26.6400000763 26.6400000763 25.2000000763 26.6400006104 28.0800006104 28.0800006104 26.6400006104 28.0799992371 29.5199992371 29.5199992371 28.0799992371 29.5199997711 30.9599997711 30.9599997711 29.5199997711 30.9600003052 32.4000003052 32.4000003052 30.9600003052 32.3999989319 33.8399989319 33.8399989319 32.3999989319 33.8400013733 35.2800013733 35.2800013733 33.8400013733 35.28 36.72 36.72 35.28 36.7199986267 38.1599986267 38.1599986267 36.7199986267 38.1600010681 39.6000010681 39.6000010681 38.1600010681 39.5999996948 41.0399996948 41.0399996948 39.5999996948 41.0399983215 42.4799983215 42.4799983215 41.0399983215 42.4800007629 43.9200007629 43.9200007629 42.4800007629 43.9199993896 45.3599993896 45.3599993896 43.9199993896 45.3600018311 46.8000018311 46.8000018311 45.3600018311 46.8000004578 48.2400004578 48.2400004578 46.8000004578 48.2399990845 49.6799990845 49.6799990845 48.2399990845 49.6800015259 51.1200015259 51.1200015259 49.6800015259 51.1200001526 52.5600001526 52.5600001526 51.1200001526 52.5599987793 53.9999987793 53.9999987793 52.5599987793 54.0000012207 55.4400012207 55.4400012207 54.0000012207 55.4399998474 56.8799998474 56.8799998474 55.4399998474 56.8799984741 58.3199984741 58.3199984741 56.8799984741 58.3200009155 59.7600009155 59.7600009155 58.3200009155 59.7599995422 61.1999995422 61.1999995422 59.7599995422 61.1999981689 62.6399981689 62.6399981689 61.1999981689 62.6400006104 64.0800006104 64.0800006104 62.6400006104 64.0800030518 65.5200030518 65.5200030518 64.0800030518 65.5199978638 66.9599978638 66.9599978638 65.5199978638 66.9600003052 68.4000003052 68.4000003052 66.9600003052 68.4000027466 69.8400027466 69.8400027466 68.4000027466 69.8399975586 71.2799975586 71.2799975586 69.8399975586 71.28 72.72 72.72 71.28 72.7200024414 74.1600024414 74.1600024414 72.7200024414 74.1599972534 75.5999972534 75.5999972534 74.1599972534 75.5999996948 77.0399996948 77.0399996948 75.5999996948 77.0400021362 78.4800021362 78.4800021362 77.0400021362 78.4799969482 79.9199969482 79.9199969482 78.4799969482 79.9199993896 81.3599993896 81.3599993896 79.9199993896 81.3600018311 82.8000018311 82.8000018311 81.3600018311 82.7999966431 84.2399966431 84.2399966431 82.7999966431 84.2399990845 85.6799990845 85.6799990845 84.2399990845 85.6800015259 87.1200015259 87.1200015259 85.6800015259 87.1199963379 88.5599963379 88.5599963379 87.1199963379 88.5599987793 89.9999987793 89.9999987793 88.5599987793 90.0000012207 91.4400012207 91.4400012207 90.0000012207 91.4400036621 92.8800036621 92.8800036621 91.4400036621 92.8799984741 94.3199984741 94.3199984741 92.8799984741 94.3200009155 95.7600009155 95.7600009155 94.3200009155 95.7600033569 97.2000033569 97.2000033569 95.7600033569 97.1999981689 98.6399981689 98.6399981689 97.1999981689 98.6400006104 100.08000061 100.08000061 98.6400006104 100.080003052 101.520003052 101.520003052 100.080003052 101.519997864 102.959997864 102.959997864 101.519997864 102.960000305 104.400000305 104.400000305 102.960000305 104.400002747 105.840002747 105.840002747 104.400002747 105.839997559 107.279997559 107.279997559 105.839997559 107.28 108.72 108.72 107.28 108.720002441 110.160002441 110.160002441 108.720002441 110.159997253 111.599997253 111.599997253 110.159997253 111.599999695 113.039999695 113.039999695 111.599999695 113.040002136 114.480002136 114.480002136 113.040002136 +114.479996948 115.919996948 115.919996948 114.479996948 115.91999939 117.35999939 117.35999939 115.91999939 117.360001831 118.800001831 118.800001831 117.360001831 118.799996643 120.239996643 120.239996643 118.799996643 120.239999084 121.679999084 121.679999084 120.239999084 121.680001526 123.120001526 123.120001526 121.680001526 123.119996338 124.559996338 124.559996338 123.119996338 124.559998779 125.999998779 125.999998779 124.559998779 126.000001221 127.440001221 127.440001221 126.000001221 127.440003662 128.880003662 128.880003662 127.440003662 128.880006104 130.320006104 130.320006104 128.880006104 130.319993286 131.759993286 131.759993286 130.319993286 131.759995728 133.199995728 133.199995728 131.759995728 133.199998169 134.639998169 134.639998169 133.199998169 134.64000061 136.08000061 136.08000061 134.64000061 136.080003052 137.520003052 137.520003052 136.080003052 137.520005493 138.960005493 138.960005493 137.520005493 138.959992676 140.399992676 140.399992676 138.959992676 140.399995117 141.839995117 141.839995117 140.399995117 141.839997559 143.279997559 143.279997559 141.839997559 143.28 144.72 144.72 143.28 144.720002441 146.160002441 146.160002441 144.720002441 146.160004883 147.600004883 147.600004883 146.160004883 147.600007324 149.040007324 149.040007324 147.600007324 149.039994507 150.479994507 150.479994507 149.039994507 150.479996948 151.919996948 151.919996948 150.479996948 151.91999939 153.35999939 153.35999939 151.91999939 153.360001831 154.800001831 154.800001831 153.360001831 154.800004272 156.240004272 156.240004272 154.800004272 156.240006714 157.680006714 157.680006714 156.240006714 157.679993896 159.119993896 159.119993896 157.679993896 159.119996338 160.559996338 160.559996338 159.119996338 160.559998779 161.999998779 161.999998779 160.559998779 162.000001221 163.440001221 163.440001221 162.000001221 163.440003662 164.880003662 164.880003662 163.440003662 164.880006104 166.320006104 166.320006104 164.880006104 166.319993286 167.759993286 167.759993286 166.319993286 167.759995728 169.199995728 169.199995728 167.759995728 169.199998169 170.639998169 170.639998169 169.199998169 170.64000061 172.08000061 172.08000061 170.64000061 172.080003052 173.520003052 173.520003052 172.080003052 173.520005493 174.960005493 174.960005493 173.520005493 174.959992676 176.399992676 176.399992676 174.959992676 176.399995117 177.839995117 177.839995117 176.399995117 177.839997559 179.279997559 179.279997559 177.839997559 179.28 180.72 180.72 179.28 180.720002441 182.160002441 182.160002441 180.720002441 182.160004883 183.600004883 183.600004883 182.160004883 183.600007324 185.040007324 185.040007324 183.600007324 185.039994507 186.479994507 186.479994507 185.039994507 186.479996948 187.919996948 187.919996948 186.479996948 187.91999939 189.35999939 189.35999939 187.91999939 189.360001831 190.800001831 190.800001831 189.360001831 190.800004272 192.240004272 192.240004272 190.800004272 192.240006714 193.680006714 193.680006714 192.240006714 193.679993896 195.119993896 195.119993896 193.679993896 195.119996338 196.559996338 196.559996338 195.119996338 196.559998779 197.999998779 197.999998779 196.559998779 198.000001221 199.440001221 199.440001221 198.000001221 199.440003662 200.880003662 200.880003662 199.440003662 200.880006104 202.320006104 202.320006104 200.880006104 202.319993286 203.759993286 203.759993286 202.319993286 203.759995728 205.199995728 205.199995728 203.759995728 205.199998169 206.639998169 206.639998169 205.199998169 206.64000061 208.08000061 208.08000061 206.64000061 208.080003052 209.520003052 209.520003052 208.080003052 209.520005493 210.960005493 210.960005493 209.520005493 210.959992676 212.399992676 212.399992676 210.959992676 212.399995117 213.839995117 213.839995117 212.399995117 213.839997559 215.279997559 215.279997559 213.839997559 215.28 216.72 216.72 215.28 216.720002441 218.160002441 218.160002441 216.720002441 218.160004883 219.600004883 219.600004883 218.160004883 219.600007324 221.040007324 221.040007324 219.600007324 221.039994507 222.479994507 222.479994507 221.039994507 222.479996948 223.919996948 223.919996948 222.479996948 223.91999939 225.35999939 225.35999939 223.91999939 225.360001831 226.800001831 226.800001831 225.360001831 226.800004272 228.240004272 228.240004272 226.800004272 228.240006714 229.680006714 229.680006714 228.240006714 229.679993896 231.119993896 231.119993896 229.679993896 231.119996338 232.559996338 232.559996338 231.119996338 232.559998779 233.999998779 233.999998779 232.559998779 234.000001221 235.440001221 235.440001221 234.000001221 235.440003662 236.880003662 236.880003662 235.440003662 236.880006104 238.320006104 238.320006104 236.880006104 238.319993286 239.759993286 239.759993286 238.319993286 239.759995728 241.199995728 241.199995728 239.759995728 241.199998169 242.639998169 242.639998169 241.199998169 242.64000061 244.08000061 244.08000061 242.64000061 244.080003052 245.520003052 245.520003052 244.080003052 245.520005493 246.960005493 246.960005493 245.520005493 246.959992676 248.399992676 248.399992676 246.959992676 248.399995117 249.839995117 249.839995117 248.399995117 249.839997559 251.279997559 251.279997559 249.839997559 251.28 252.72 252.72 251.28 252.720002441 254.160002441 254.160002441 252.720002441 254.160004883 255.600004883 255.600004883 254.160004883 255.600007324 257.040007324 257.040007324 255.600007324 257.040009766 258.480009766 258.480009766 257.040009766 258.480012207 259.920012207 259.920012207 258.480012207 259.920014648 261.360014648 261.360014648 259.920014648 261.359986572 262.799986572 262.799986572 261.359986572 262.799989014 264.239989014 264.239989014 262.799989014 264.239991455 265.679991455 265.679991455 264.239991455 265.679993896 267.119993896 267.119993896 265.679993896 267.119996338 268.559996338 268.559996338 267.119996338 268.559998779 269.999998779 269.999998779 268.559998779 270.000001221 271.440001221 271.440001221 270.000001221 271.440003662 272.880003662 272.880003662 271.440003662 272.880006104 274.320006104 274.320006104 272.880006104 274.320008545 275.760008545 275.760008545 274.320008545 275.760010986 277.200010986 277.200010986 275.760010986 277.200013428 278.640013428 278.640013428 277.200013428 278.639985352 280.079985352 280.079985352 278.639985352 280.079987793 281.519987793 281.519987793 280.079987793 281.519990234 282.959990234 282.959990234 281.519990234 282.959992676 284.399992676 284.399992676 282.959992676 284.399995117 285.839995117 285.839995117 284.399995117 285.839997559 287.279997559 287.279997559 285.839997559 287.28 288.72 288.72 287.28 288.720002441 290.160002441 290.160002441 288.720002441 290.160004883 291.600004883 291.600004883 290.160004883 291.600007324 293.040007324 293.040007324 291.600007324 293.040009766 294.480009766 294.480009766 293.040009766 294.480012207 295.920012207 295.920012207 294.480012207 295.920014648 297.360014648 297.360014648 295.920014648 297.359986572 298.799986572 298.799986572 297.359986572 298.799989014 300.239989014 300.239989014 298.799989014 300.239991455 301.679991455 301.679991455 300.239991455 301.679993896 303.119993896 303.119993896 301.679993896 303.119996338 304.559996338 304.559996338 303.119996338 304.559998779 305.999998779 305.999998779 304.559998779 306.000001221 307.440001221 307.440001221 306.000001221 307.440003662 308.880003662 308.880003662 307.440003662 308.880006104 310.320006104 310.320006104 308.880006104 310.320008545 311.760008545 311.760008545 310.320008545 311.760010986 313.200010986 313.200010986 311.760010986 313.200013428 314.640013428 314.640013428 313.200013428 314.639985352 316.079985352 316.079985352 314.639985352 316.079987793 317.519987793 317.519987793 316.079987793 317.519990234 318.959990234 318.959990234 317.519990234 318.959992676 320.399992676 320.399992676 318.959992676 320.399995117 321.839995117 321.839995117 320.399995117 321.839997559 323.279997559 323.279997559 321.839997559 323.28 324.72 324.72 323.28 324.720002441 326.160002441 326.160002441 324.720002441 326.160004883 327.600004883 327.600004883 326.160004883 327.600007324 329.040007324 329.040007324 327.600007324 329.040009766 330.480009766 330.480009766 329.040009766 330.480012207 331.920012207 331.920012207 330.480012207 331.920014648 333.360014648 333.360014648 331.920014648 333.359986572 334.799986572 334.799986572 333.359986572 334.799989014 336.239989014 336.239989014 334.799989014 336.239991455 337.679991455 337.679991455 336.239991455 337.679993896 339.119993896 339.119993896 337.679993896 339.119996338 340.559996338 340.559996338 339.119996338 340.559998779 341.999998779 341.999998779 340.559998779 342.000001221 343.440001221 343.440001221 342.000001221 343.440003662 344.880003662 344.880003662 343.440003662 344.880006104 346.320006104 346.320006104 344.880006104 346.320008545 347.760008545 347.760008545 346.320008545 347.760010986 349.200010986 349.200010986 347.760010986 349.200013428 350.640013428 350.640013428 349.200013428 350.639985352 352.079985352 352.079985352 350.639985352 352.079987793 353.519987793 353.519987793 352.079987793 353.519990234 354.959990234 354.959990234 353.519990234 354.959992676 356.399992676 356.399992676 354.959992676 356.399995117 357.839995117 357.839995117 356.399995117 357.839997559 359.279997559 359.279997559 357.839997559 -0.72 0.72 0.72 -0.72 0.72000005722 2.16000005722 2.16000005722 0.72000005722 2.16000011444 3.60000011444 3.60000011444 2.16000011444 3.60000017166 5.04000017166 5.04000017166 3.60000017166 5.04000022888 6.48000022888 6.48000022888 5.04000022888 6.47999980927 7.91999980927 7.91999980927 6.47999980927 7.92000034332 9.36000034332 9.36000034332 7.92000034332 9.35999992371 10.7999999237 10.7999999237 9.35999992371 10.8000004578 12.2400004578 12.2400004578 10.8000004578 12.2400000381 13.6800000381 13.6800000381 12.2400000381 13.6799996185 15.1199996185 15.1199996185 13.6799996185 15.1200001526 16.5600001526 16.5600001526 15.1200001526 16.5600006866 18.0000006866 18.0000006866 16.5600006866 17.9999993134 19.4399993134 19.4399993134 17.9999993134 19.4399998474 20.8799998474 20.8799998474 19.4399998474 20.8800003815 22.3200003815 22.3200003815 20.8800003815 22.3200009155 23.7600009155 23.7600009155 22.3200009155 23.7599995422 25.1999995422 25.1999995422 23.7599995422 25.2000000763 26.6400000763 26.6400000763 25.2000000763 26.6400006104 28.0800006104 28.0800006104 26.6400006104 28.0799992371 29.5199992371 29.5199992371 28.0799992371 29.5199997711 30.9599997711 30.9599997711 29.5199997711 30.9600003052 32.4000003052 32.4000003052 30.9600003052 32.3999989319 33.8399989319 33.8399989319 32.3999989319 33.8400013733 35.2800013733 35.2800013733 33.8400013733 35.28 36.72 36.72 35.28 36.7199986267 38.1599986267 38.1599986267 36.7199986267 38.1600010681 39.6000010681 39.6000010681 38.1600010681 39.5999996948 41.0399996948 41.0399996948 39.5999996948 41.0399983215 42.4799983215 42.4799983215 41.0399983215 42.4800007629 43.9200007629 43.9200007629 42.4800007629 43.9199993896 45.3599993896 45.3599993896 43.9199993896 45.3600018311 46.8000018311 46.8000018311 45.3600018311 46.8000004578 48.2400004578 48.2400004578 46.8000004578 48.2399990845 49.6799990845 49.6799990845 48.2399990845 49.6800015259 51.1200015259 51.1200015259 49.6800015259 51.1200001526 52.5600001526 52.5600001526 51.1200001526 52.5599987793 53.9999987793 53.9999987793 52.5599987793 54.0000012207 55.4400012207 55.4400012207 54.0000012207 55.4399998474 56.8799998474 56.8799998474 55.4399998474 56.8799984741 58.3199984741 58.3199984741 56.8799984741 58.3200009155 59.7600009155 59.7600009155 58.3200009155 59.7599995422 61.1999995422 61.1999995422 59.7599995422 61.1999981689 62.6399981689 62.6399981689 61.1999981689 62.6400006104 64.0800006104 64.0800006104 62.6400006104 64.0800030518 65.5200030518 65.5200030518 64.0800030518 65.5199978638 66.9599978638 66.9599978638 65.5199978638 66.9600003052 68.4000003052 68.4000003052 66.9600003052 68.4000027466 69.8400027466 69.8400027466 68.4000027466 69.8399975586 71.2799975586 71.2799975586 69.8399975586 71.28 72.72 72.72 71.28 72.7200024414 74.1600024414 74.1600024414 72.7200024414 74.1599972534 75.5999972534 75.5999972534 74.1599972534 75.5999996948 77.0399996948 77.0399996948 75.5999996948 77.0400021362 78.4800021362 78.4800021362 77.0400021362 78.4799969482 79.9199969482 79.9199969482 78.4799969482 79.9199993896 81.3599993896 81.3599993896 79.9199993896 81.3600018311 82.8000018311 82.8000018311 81.3600018311 82.7999966431 84.2399966431 84.2399966431 82.7999966431 84.2399990845 85.6799990845 85.6799990845 84.2399990845 85.6800015259 87.1200015259 87.1200015259 85.6800015259 87.1199963379 88.5599963379 88.5599963379 87.1199963379 88.5599987793 89.9999987793 89.9999987793 88.5599987793 90.0000012207 91.4400012207 91.4400012207 90.0000012207 91.4400036621 92.8800036621 92.8800036621 91.4400036621 92.8799984741 94.3199984741 94.3199984741 92.8799984741 94.3200009155 95.7600009155 95.7600009155 94.3200009155 95.7600033569 97.2000033569 97.2000033569 95.7600033569 97.1999981689 98.6399981689 98.6399981689 97.1999981689 98.6400006104 100.08000061 100.08000061 98.6400006104 100.080003052 101.520003052 101.520003052 100.080003052 101.519997864 102.959997864 102.959997864 101.519997864 102.960000305 104.400000305 104.400000305 102.960000305 104.400002747 105.840002747 105.840002747 104.400002747 105.839997559 107.279997559 107.279997559 105.839997559 107.28 108.72 108.72 107.28 108.720002441 110.160002441 110.160002441 108.720002441 110.159997253 111.599997253 111.599997253 110.159997253 111.599999695 113.039999695 113.039999695 111.599999695 113.040002136 114.480002136 114.480002136 113.040002136 114.479996948 115.919996948 115.919996948 114.479996948 115.91999939 117.35999939 117.35999939 115.91999939 117.360001831 118.800001831 118.800001831 117.360001831 118.799996643 120.239996643 120.239996643 118.799996643 120.239999084 121.679999084 121.679999084 120.239999084 121.680001526 123.120001526 123.120001526 121.680001526 123.119996338 124.559996338 124.559996338 123.119996338 124.559998779 125.999998779 125.999998779 124.559998779 126.000001221 127.440001221 127.440001221 126.000001221 127.440003662 128.880003662 128.880003662 127.440003662 128.880006104 130.320006104 130.320006104 128.880006104 130.319993286 131.759993286 131.759993286 130.319993286 131.759995728 133.199995728 133.199995728 131.759995728 133.199998169 134.639998169 134.639998169 133.199998169 134.64000061 136.08000061 136.08000061 134.64000061 136.080003052 137.520003052 137.520003052 136.080003052 137.520005493 138.960005493 138.960005493 137.520005493 138.959992676 140.399992676 140.399992676 138.959992676 140.399995117 141.839995117 141.839995117 140.399995117 141.839997559 143.279997559 143.279997559 141.839997559 143.28 144.72 144.72 143.28 144.720002441 146.160002441 146.160002441 144.720002441 146.160004883 147.600004883 147.600004883 146.160004883 147.600007324 149.040007324 149.040007324 147.600007324 149.039994507 150.479994507 150.479994507 149.039994507 150.479996948 151.919996948 151.919996948 150.479996948 151.91999939 153.35999939 153.35999939 151.91999939 153.360001831 154.800001831 154.800001831 153.360001831 154.800004272 156.240004272 156.240004272 154.800004272 156.240006714 157.680006714 157.680006714 156.240006714 157.679993896 159.119993896 159.119993896 157.679993896 159.119996338 160.559996338 160.559996338 159.119996338 160.559998779 161.999998779 161.999998779 160.559998779 162.000001221 163.440001221 163.440001221 162.000001221 163.440003662 164.880003662 164.880003662 163.440003662 164.880006104 166.320006104 166.320006104 164.880006104 166.319993286 167.759993286 167.759993286 166.319993286 167.759995728 169.199995728 169.199995728 167.759995728 169.199998169 170.639998169 170.639998169 169.199998169 170.64000061 172.08000061 172.08000061 170.64000061 172.080003052 173.520003052 173.520003052 172.080003052 173.520005493 174.960005493 174.960005493 173.520005493 174.959992676 176.399992676 176.399992676 174.959992676 176.399995117 177.839995117 177.839995117 176.399995117 177.839997559 179.279997559 179.279997559 177.839997559 179.28 180.72 180.72 179.28 180.720002441 182.160002441 182.160002441 180.720002441 182.160004883 183.600004883 183.600004883 182.160004883 183.600007324 185.040007324 185.040007324 183.600007324 185.039994507 186.479994507 186.479994507 185.039994507 186.479996948 187.919996948 187.919996948 186.479996948 187.91999939 189.35999939 189.35999939 187.91999939 189.360001831 190.800001831 190.800001831 189.360001831 190.800004272 192.240004272 192.240004272 190.800004272 192.240006714 193.680006714 193.680006714 192.240006714 193.679993896 195.119993896 195.119993896 193.679993896 195.119996338 196.559996338 196.559996338 195.119996338 196.559998779 197.999998779 197.999998779 196.559998779 198.000001221 199.440001221 199.440001221 198.000001221 199.440003662 200.880003662 200.880003662 199.440003662 200.880006104 202.320006104 202.320006104 200.880006104 202.319993286 203.759993286 203.759993286 202.319993286 203.759995728 205.199995728 205.199995728 203.759995728 205.199998169 206.639998169 206.639998169 205.199998169 206.64000061 208.08000061 208.08000061 206.64000061 208.080003052 209.520003052 209.520003052 208.080003052 209.520005493 210.960005493 210.960005493 209.520005493 210.959992676 212.399992676 212.399992676 210.959992676 212.399995117 213.839995117 213.839995117 212.399995117 213.839997559 215.279997559 215.279997559 213.839997559 215.28 216.72 216.72 215.28 216.720002441 218.160002441 218.160002441 216.720002441 218.160004883 219.600004883 219.600004883 218.160004883 219.600007324 221.040007324 221.040007324 219.600007324 221.039994507 222.479994507 222.479994507 221.039994507 222.479996948 223.919996948 223.919996948 222.479996948 223.91999939 225.35999939 225.35999939 223.91999939 225.360001831 226.800001831 226.800001831 225.360001831 226.800004272 228.240004272 228.240004272 226.800004272 228.240006714 229.680006714 229.680006714 228.240006714 229.679993896 231.119993896 231.119993896 229.679993896 231.119996338 232.559996338 232.559996338 231.119996338 232.559998779 233.999998779 233.999998779 232.559998779 234.000001221 235.440001221 235.440001221 234.000001221 235.440003662 236.880003662 236.880003662 235.440003662 236.880006104 238.320006104 238.320006104 236.880006104 238.319993286 239.759993286 239.759993286 238.319993286 239.759995728 241.199995728 241.199995728 239.759995728 241.199998169 242.639998169 242.639998169 241.199998169 242.64000061 244.08000061 244.08000061 242.64000061 244.080003052 245.520003052 245.520003052 244.080003052 245.520005493 246.960005493 246.960005493 245.520005493 246.959992676 248.399992676 248.399992676 246.959992676 248.399995117 249.839995117 249.839995117 248.399995117 249.839997559 251.279997559 251.279997559 249.839997559 251.28 252.72 252.72 251.28 252.720002441 254.160002441 254.160002441 252.720002441 254.160004883 255.600004883 255.600004883 254.160004883 255.600007324 257.040007324 257.040007324 255.600007324 257.040009766 258.480009766 258.480009766 257.040009766 258.480012207 259.920012207 259.920012207 258.480012207 259.920014648 261.360014648 261.360014648 259.920014648 261.359986572 262.799986572 262.799986572 261.359986572 262.799989014 264.239989014 264.239989014 262.799989014 264.239991455 265.679991455 265.679991455 264.239991455 265.679993896 267.119993896 267.119993896 265.679993896 267.119996338 268.559996338 268.559996338 267.119996338 268.559998779 269.999998779 269.999998779 268.559998779 270.000001221 271.440001221 271.440001221 270.000001221 271.440003662 272.880003662 272.880003662 271.440003662 272.880006104 274.320006104 274.320006104 272.880006104 274.320008545 275.760008545 275.760008545 274.320008545 275.760010986 277.200010986 277.200010986 275.760010986 277.200013428 278.640013428 278.640013428 277.200013428 278.639985352 280.079985352 280.079985352 278.639985352 280.079987793 281.519987793 281.519987793 280.079987793 281.519990234 282.959990234 282.959990234 281.519990234 282.959992676 284.399992676 284.399992676 282.959992676 284.399995117 285.839995117 285.839995117 284.399995117 285.839997559 287.279997559 287.279997559 285.839997559 287.28 288.72 288.72 287.28 288.720002441 290.160002441 290.160002441 288.720002441 290.160004883 291.600004883 291.600004883 290.160004883 291.600007324 293.040007324 293.040007324 291.600007324 293.040009766 294.480009766 294.480009766 293.040009766 294.480012207 295.920012207 295.920012207 294.480012207 295.920014648 297.360014648 297.360014648 295.920014648 297.359986572 298.799986572 298.799986572 297.359986572 298.799989014 300.239989014 300.239989014 298.799989014 300.239991455 301.679991455 301.679991455 300.239991455 301.679993896 303.119993896 303.119993896 301.679993896 303.119996338 304.559996338 304.559996338 303.119996338 304.559998779 305.999998779 305.999998779 304.559998779 306.000001221 307.440001221 307.440001221 306.000001221 307.440003662 308.880003662 308.880003662 307.440003662 308.880006104 310.320006104 310.320006104 308.880006104 310.320008545 311.760008545 311.760008545 310.320008545 311.760010986 313.200010986 313.200010986 311.760010986 313.200013428 314.640013428 314.640013428 313.200013428 314.639985352 316.079985352 316.079985352 314.639985352 316.079987793 317.519987793 317.519987793 316.079987793 317.519990234 318.959990234 318.959990234 317.519990234 318.959992676 320.399992676 320.399992676 318.959992676 320.399995117 321.839995117 321.839995117 320.399995117 321.839997559 323.279997559 323.279997559 321.839997559 323.28 324.72 324.72 323.28 324.720002441 326.160002441 326.160002441 324.720002441 326.160004883 327.600004883 327.600004883 326.160004883 327.600007324 329.040007324 329.040007324 327.600007324 329.040009766 330.480009766 330.480009766 329.040009766 330.480012207 331.920012207 331.920012207 330.480012207 331.920014648 333.360014648 333.360014648 331.920014648 333.359986572 334.799986572 334.799986572 333.359986572 334.799989014 336.239989014 336.239989014 334.799989014 336.239991455 337.679991455 337.679991455 336.239991455 337.679993896 339.119993896 339.119993896 337.679993896 339.119996338 340.559996338 340.559996338 339.119996338 340.559998779 341.999998779 341.999998779 340.559998779 342.000001221 343.440001221 343.440001221 342.000001221 343.440003662 344.880003662 344.880003662 343.440003662 344.880006104 346.320006104 346.320006104 344.880006104 346.320008545 347.760008545 347.760008545 346.320008545 347.760010986 349.200010986 349.200010986 347.760010986 349.200013428 350.640013428 350.640013428 349.200013428 350.639985352 352.079985352 352.079985352 350.639985352 352.079987793 353.519987793 353.519987793 352.079987793 353.519990234 354.959990234 354.959990234 353.519990234 354.959992676 356.399992676 356.399992676 354.959992676 356.399995117 357.839995117 357.839995117 356.399995117 357.839997559 359.279997559 359.279997559 357.839997559 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 +119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.75 0.75 0.75 -0.75 0.75 2.25 2.25 0.75 2.25 3.75 3.75 2.25 3.75 5.25 5.25 3.75 5.25 6.75 6.75 5.25 6.75 8.25 8.25 6.75 8.25 9.75 9.75 8.25 9.75 11.25 11.25 9.75 11.25 12.75 12.75 11.25 12.75 14.25 14.25 12.75 14.25 15.75 15.75 14.25 15.75 17.25 17.25 15.75 17.25 18.75 18.75 17.25 18.75 20.25 20.25 18.75 20.25 21.75 21.75 20.25 21.75 23.25 23.25 21.75 23.25 24.75 24.75 23.25 24.75 26.25 26.25 24.75 26.25 27.75 27.75 26.25 27.75 29.25 29.25 27.75 29.25 30.75 30.75 29.25 30.75 32.25 32.25 30.75 32.25 33.75 33.75 32.25 33.75 35.25 35.25 33.75 35.25 36.75 36.75 35.25 36.75 38.25 38.25 36.75 38.25 39.75 39.75 38.25 39.75 41.25 41.25 39.75 41.25 42.75 42.75 41.25 42.75 44.25 44.25 42.75 44.25 45.75 45.75 44.25 45.75 47.25 47.25 45.75 47.25 48.75 48.75 47.25 48.75 50.25 50.25 48.75 50.25 51.75 51.75 50.25 51.75 53.25 53.25 51.75 53.25 54.75 54.75 53.25 54.75 56.25 56.25 54.75 56.25 57.75 57.75 56.25 57.75 59.25 59.25 57.75 59.25 60.75 60.75 59.25 60.75 62.25 62.25 60.75 62.25 63.75 63.75 62.25 63.75 65.25 65.25 63.75 65.25 66.75 66.75 65.25 66.75 68.25 68.25 66.75 68.25 69.75 69.75 68.25 69.75 71.25 71.25 69.75 71.25 72.75 72.75 71.25 72.75 74.25 74.25 72.75 74.25 75.75 75.75 74.25 75.75 77.25 77.25 75.75 77.25 78.75 78.75 77.25 78.75 80.25 80.25 78.75 80.25 81.75 81.75 80.25 81.75 83.25 83.25 81.75 83.25 84.75 84.75 83.25 84.75 86.25 86.25 84.75 86.25 87.75 87.75 86.25 87.75 89.25 89.25 87.75 89.25 90.75 90.75 89.25 90.75 92.25 92.25 90.75 92.25 93.75 93.75 92.25 93.75 95.25 95.25 93.75 95.25 96.75 96.75 95.25 96.75 98.25 98.25 96.75 98.25 99.75 99.75 98.25 99.75 101.25 101.25 99.75 101.25 102.75 102.75 101.25 102.75 104.25 104.25 102.75 104.25 105.75 105.75 104.25 105.75 107.25 107.25 105.75 107.25 108.75 108.75 107.25 108.75 110.25 110.25 108.75 110.25 111.75 111.75 110.25 111.75 113.25 113.25 111.75 113.25 114.75 114.75 113.25 114.75 116.25 116.25 114.75 116.25 117.75 117.75 116.25 117.75 119.25 119.25 117.75 119.25 120.75 120.75 119.25 120.75 122.25 122.25 120.75 122.25 123.75 123.75 122.25 123.75 125.25 125.25 123.75 125.25 126.75 126.75 125.25 126.75 128.25 128.25 126.75 128.25 129.75 129.75 128.25 129.75 131.25 131.25 129.75 131.25 132.75 132.75 131.25 132.75 134.25 134.25 132.75 134.25 135.75 135.75 134.25 135.75 137.25 137.25 135.75 137.25 138.75 138.75 137.25 138.75 140.25 140.25 138.75 140.25 141.75 141.75 140.25 141.75 143.25 143.25 141.75 143.25 144.75 144.75 143.25 144.75 146.25 146.25 144.75 146.25 147.75 147.75 146.25 147.75 149.25 149.25 147.75 +149.25 150.75 150.75 149.25 150.75 152.25 152.25 150.75 152.25 153.75 153.75 152.25 153.75 155.25 155.25 153.75 155.25 156.75 156.75 155.25 156.75 158.25 158.25 156.75 158.25 159.75 159.75 158.25 159.75 161.25 161.25 159.75 161.25 162.75 162.75 161.25 162.75 164.25 164.25 162.75 164.25 165.75 165.75 164.25 165.75 167.25 167.25 165.75 167.25 168.75 168.75 167.25 168.75 170.25 170.25 168.75 170.25 171.75 171.75 170.25 171.75 173.25 173.25 171.75 173.25 174.75 174.75 173.25 174.75 176.25 176.25 174.75 176.25 177.75 177.75 176.25 177.75 179.25 179.25 177.75 179.25 180.75 180.75 179.25 180.75 182.25 182.25 180.75 182.25 183.75 183.75 182.25 183.75 185.25 185.25 183.75 185.25 186.75 186.75 185.25 186.75 188.25 188.25 186.75 188.25 189.75 189.75 188.25 189.75 191.25 191.25 189.75 191.25 192.75 192.75 191.25 192.75 194.25 194.25 192.75 194.25 195.75 195.75 194.25 195.75 197.25 197.25 195.75 197.25 198.75 198.75 197.25 198.75 200.25 200.25 198.75 200.25 201.75 201.75 200.25 201.75 203.25 203.25 201.75 203.25 204.75 204.75 203.25 204.75 206.25 206.25 204.75 206.25 207.75 207.75 206.25 207.75 209.25 209.25 207.75 209.25 210.75 210.75 209.25 210.75 212.25 212.25 210.75 212.25 213.75 213.75 212.25 213.75 215.25 215.25 213.75 215.25 216.75 216.75 215.25 216.75 218.25 218.25 216.75 218.25 219.75 219.75 218.25 219.75 221.25 221.25 219.75 221.25 222.75 222.75 221.25 222.75 224.25 224.25 222.75 224.25 225.75 225.75 224.25 225.75 227.25 227.25 225.75 227.25 228.75 228.75 227.25 228.75 230.25 230.25 228.75 230.25 231.75 231.75 230.25 231.75 233.25 233.25 231.75 233.25 234.75 234.75 233.25 234.75 236.25 236.25 234.75 236.25 237.75 237.75 236.25 237.75 239.25 239.25 237.75 239.25 240.75 240.75 239.25 240.75 242.25 242.25 240.75 242.25 243.75 243.75 242.25 243.75 245.25 245.25 243.75 245.25 246.75 246.75 245.25 246.75 248.25 248.25 246.75 248.25 249.75 249.75 248.25 249.75 251.25 251.25 249.75 251.25 252.75 252.75 251.25 252.75 254.25 254.25 252.75 254.25 255.75 255.75 254.25 255.75 257.25 257.25 255.75 257.25 258.75 258.75 257.25 258.75 260.25 260.25 258.75 260.25 261.75 261.75 260.25 261.75 263.25 263.25 261.75 263.25 264.75 264.75 263.25 264.75 266.25 266.25 264.75 266.25 267.75 267.75 266.25 267.75 269.25 269.25 267.75 269.25 270.75 270.75 269.25 270.75 272.25 272.25 270.75 272.25 273.75 273.75 272.25 273.75 275.25 275.25 273.75 275.25 276.75 276.75 275.25 276.75 278.25 278.25 276.75 278.25 279.75 279.75 278.25 279.75 281.25 281.25 279.75 281.25 282.75 282.75 281.25 282.75 284.25 284.25 282.75 284.25 285.75 285.75 284.25 285.75 287.25 287.25 285.75 287.25 288.75 288.75 287.25 288.75 290.25 290.25 288.75 290.25 291.75 291.75 290.25 291.75 293.25 293.25 291.75 293.25 294.75 294.75 293.25 294.75 296.25 296.25 294.75 296.25 297.75 297.75 296.25 297.75 299.25 299.25 297.75 299.25 300.75 300.75 299.25 300.75 302.25 302.25 300.75 302.25 303.75 303.75 302.25 303.75 305.25 305.25 303.75 305.25 306.75 306.75 305.25 306.75 308.25 308.25 306.75 308.25 309.75 309.75 308.25 309.75 311.25 311.25 309.75 311.25 312.75 312.75 311.25 312.75 314.25 314.25 312.75 314.25 315.75 315.75 314.25 315.75 317.25 317.25 315.75 317.25 318.75 318.75 317.25 318.75 320.25 320.25 318.75 320.25 321.75 321.75 320.25 321.75 323.25 323.25 321.75 323.25 324.75 324.75 323.25 324.75 326.25 326.25 324.75 326.25 327.75 327.75 326.25 327.75 329.25 329.25 327.75 329.25 330.75 330.75 329.25 330.75 332.25 332.25 330.75 332.25 333.75 333.75 332.25 333.75 335.25 335.25 333.75 335.25 336.75 336.75 335.25 336.75 338.25 338.25 336.75 338.25 339.75 339.75 338.25 339.75 341.25 341.25 339.75 341.25 342.75 342.75 341.25 342.75 344.25 344.25 342.75 344.25 345.75 345.75 344.25 345.75 347.25 347.25 345.75 347.25 348.75 348.75 347.25 348.75 350.25 350.25 348.75 350.25 351.75 351.75 350.25 351.75 353.25 353.25 351.75 353.25 354.75 354.75 353.25 354.75 356.25 356.25 354.75 356.25 357.75 357.75 356.25 357.75 359.25 359.25 357.75 -0.8 0.8 0.8 -0.8 0.800000023842 2.40000002384 2.40000002384 0.800000023842 2.40000004768 4.00000004768 4.00000004768 2.40000004768 4.00000019073 5.60000019073 5.60000019073 4.00000019073 5.60000009537 7.20000009537 7.20000009537 5.60000009537 7.2 8.8 8.8 7.2 8.80000038147 10.4000003815 10.4000003815 8.80000038147 10.3999998093 11.9999998093 11.9999998093 10.3999998093 12.0000001907 13.6000001907 13.6000001907 12.0000001907 13.5999996185 15.1999996185 15.1999996185 13.5999996185 15.2 16.8 16.8 15.2 16.8000003815 18.4000003815 18.4000003815 16.8000003815 18.4000007629 20.0000007629 20.0000007629 18.4000007629 19.9999992371 21.5999992371 21.5999992371 19.9999992371 21.5999996185 23.1999996185 23.1999996185 21.5999996185 23.2 24.8 24.8 23.2 24.8000003815 26.4000003815 26.4000003815 24.8000003815 26.4000007629 28.0000007629 28.0000007629 26.4000007629 27.9999992371 29.5999992371 29.5999992371 27.9999992371 29.5999996185 31.1999996185 31.1999996185 29.5999996185 31.2 32.8 32.8 31.2 32.7999984741 34.3999984741 34.3999984741 32.7999984741 34.4000007629 36.0000007629 36.0000007629 34.4000007629 35.9999992371 37.5999992371 37.5999992371 35.9999992371 37.6000015259 39.2000015259 39.2000015259 37.6000015259 39.2 40.8 40.8 39.2 40.7999984741 42.3999984741 42.3999984741 40.7999984741 42.4000007629 44.0000007629 44.0000007629 42.4000007629 43.9999992371 45.5999992371 45.5999992371 43.9999992371 45.6000015259 47.2000015259 47.2000015259 45.6000015259 47.2 48.8 48.8 47.2 48.7999984741 50.3999984741 50.3999984741 48.7999984741 50.4000007629 52.0000007629 52.0000007629 50.4000007629 51.9999992371 53.5999992371 53.5999992371 51.9999992371 53.6000015259 55.2000015259 55.2000015259 53.6000015259 55.2 56.8 56.8 55.2 56.7999984741 58.3999984741 58.3999984741 56.7999984741 58.4000007629 60.0000007629 60.0000007629 58.4000007629 59.9999992371 61.5999992371 61.5999992371 59.9999992371 61.6000015259 63.2000015259 63.2000015259 61.6000015259 63.2 64.8 64.8 63.2 64.7999984741 66.3999984741 66.3999984741 64.7999984741 66.3999969482 67.9999969482 67.9999969482 66.3999969482 68.0000030518 69.6000030518 69.6000030518 68.0000030518 69.6000015259 71.2000015259 71.2000015259 69.6000015259 71.2 72.8 72.8 71.2 72.7999984741 74.3999984741 74.3999984741 72.7999984741 74.3999969482 75.9999969482 75.9999969482 74.3999969482 76.0000030518 77.6000030518 77.6000030518 76.0000030518 77.6000015259 79.2000015259 79.2000015259 77.6000015259 79.2 80.8 80.8 79.2 80.7999984741 82.3999984741 82.3999984741 80.7999984741 82.3999969482 83.9999969482 83.9999969482 82.3999969482 84.0000030518 85.6000030518 85.6000030518 84.0000030518 85.6000015259 87.2000015259 87.2000015259 85.6000015259 87.2 88.8 88.8 87.2 88.7999984741 90.3999984741 90.3999984741 88.7999984741 90.3999969482 91.9999969482 91.9999969482 90.3999969482 92.0000030518 93.6000030518 93.6000030518 92.0000030518 93.6000015259 95.2000015259 95.2000015259 93.6000015259 95.2 96.8 96.8 95.2 96.7999984741 98.3999984741 98.3999984741 96.7999984741 98.3999969482 99.9999969482 99.9999969482 98.3999969482 100.000003052 101.600003052 101.600003052 100.000003052 101.600001526 103.200001526 103.200001526 101.600001526 103.2 104.8 104.8 103.2 104.799998474 106.399998474 106.399998474 104.799998474 106.399996948 107.999996948 107.999996948 106.399996948 108.000003052 109.600003052 109.600003052 108.000003052 109.600001526 111.200001526 111.200001526 109.600001526 111.2 112.8 112.8 111.2 112.799998474 114.399998474 114.399998474 112.799998474 114.399996948 115.999996948 115.999996948 114.399996948 116.000003052 117.600003052 117.600003052 116.000003052 117.600001526 119.200001526 119.200001526 117.600001526 119.2 120.8 120.8 119.2 120.799998474 122.399998474 122.399998474 120.799998474 122.399996948 123.999996948 123.999996948 122.399996948 124.000003052 125.600003052 125.600003052 124.000003052 125.600001526 127.200001526 127.200001526 125.600001526 127.2 128.8 128.8 127.2 128.800006104 130.400006104 130.400006104 128.800006104 130.399996948 131.999996948 131.999996948 130.399996948 132.000003052 133.600003052 133.600003052 132.000003052 133.599993896 135.199993896 135.199993896 133.599993896 135.2 136.8 136.8 135.2 136.800006104 138.400006104 138.400006104 136.800006104 138.399996948 139.999996948 139.999996948 138.399996948 140.000003052 141.600003052 141.600003052 140.000003052 141.599993896 143.199993896 143.199993896 141.599993896 143.2 144.8 144.8 143.2 144.800006104 146.400006104 146.400006104 144.800006104 146.399996948 147.999996948 147.999996948 146.399996948 148.000003052 149.600003052 149.600003052 148.000003052 149.599993896 151.199993896 151.199993896 149.599993896 151.2 152.8 152.8 151.2 152.800006104 154.400006104 154.400006104 152.800006104 154.399996948 155.999996948 155.999996948 154.399996948 156.000003052 157.600003052 157.600003052 156.000003052 157.599993896 159.199993896 159.199993896 157.599993896 159.2 160.8 160.8 159.2 160.800006104 162.400006104 162.400006104 160.800006104 162.399996948 163.999996948 163.999996948 162.399996948 164.000003052 165.600003052 165.600003052 164.000003052 165.599993896 167.199993896 167.199993896 165.599993896 167.2 168.8 168.8 167.2 168.800006104 170.400006104 170.400006104 168.800006104 170.399996948 171.999996948 171.999996948 170.399996948 172.000003052 173.600003052 173.600003052 172.000003052 173.599993896 175.199993896 175.199993896 173.599993896 175.2 176.8 176.8 175.2 176.800006104 178.400006104 178.400006104 176.800006104 178.399996948 179.999996948 179.999996948 178.399996948 180.000003052 181.600003052 181.600003052 180.000003052 181.599993896 183.199993896 183.199993896 181.599993896 183.2 184.8 184.8 183.2 184.800006104 186.400006104 186.400006104 184.800006104 186.399996948 187.999996948 187.999996948 186.399996948 188.000003052 189.600003052 189.600003052 188.000003052 189.599993896 191.199993896 191.199993896 189.599993896 191.2 192.8 192.8 191.2 192.800006104 194.400006104 194.400006104 192.800006104 194.399996948 195.999996948 195.999996948 194.399996948 196.000003052 197.600003052 197.600003052 196.000003052 197.599993896 199.199993896 199.199993896 197.599993896 199.2 200.8 200.8 199.2 200.800006104 202.400006104 202.400006104 200.800006104 202.399996948 203.999996948 203.999996948 202.399996948 204.000003052 205.600003052 205.600003052 204.000003052 205.599993896 207.199993896 207.199993896 205.599993896 207.2 208.8 208.8 207.2 208.800006104 210.400006104 210.400006104 208.800006104 210.399996948 211.999996948 211.999996948 210.399996948 212.000003052 213.600003052 213.600003052 212.000003052 213.599993896 215.199993896 215.199993896 213.599993896 215.2 216.8 216.8 215.2 216.800006104 218.400006104 218.400006104 216.800006104 218.399996948 219.999996948 219.999996948 218.399996948 220.000003052 221.600003052 221.600003052 220.000003052 221.599993896 223.199993896 223.199993896 221.599993896 223.2 224.8 224.8 223.2 224.800006104 226.400006104 226.400006104 224.800006104 226.399996948 227.999996948 227.999996948 226.399996948 228.000003052 229.600003052 229.600003052 228.000003052 229.599993896 231.199993896 231.199993896 229.599993896 231.2 232.8 232.8 231.2 232.800006104 234.400006104 234.400006104 232.800006104 234.399996948 235.999996948 235.999996948 234.399996948 236.000003052 237.600003052 237.600003052 236.000003052 237.599993896 239.199993896 239.199993896 237.599993896 239.2 240.8 240.8 239.2 240.800006104 242.400006104 242.400006104 240.800006104 242.399996948 243.999996948 243.999996948 242.399996948 244.000003052 245.600003052 245.600003052 244.000003052 245.599993896 247.199993896 247.199993896 245.599993896 247.2 248.8 248.8 247.2 248.800006104 250.400006104 250.400006104 248.800006104 250.399996948 251.999996948 251.999996948 250.399996948 252.000003052 253.600003052 253.600003052 252.000003052 253.599993896 255.199993896 255.199993896 253.599993896 255.2 256.8 256.8 255.2 256.800006104 258.400006104 258.400006104 256.800006104 258.400012207 260.000012207 260.000012207 258.400012207 259.999987793 261.599987793 261.599987793 259.999987793 261.599993896 263.199993896 263.199993896 261.599993896 263.2 264.8 264.8 263.2 264.800006104 266.400006104 266.400006104 264.800006104 266.400012207 268.000012207 268.000012207 266.400012207 267.999987793 269.599987793 269.599987793 267.999987793 269.599993896 271.199993896 271.199993896 269.599993896 271.2 272.8 272.8 271.2 272.800006104 274.400006104 274.400006104 272.800006104 274.400012207 276.000012207 276.000012207 274.400012207 275.999987793 277.599987793 277.599987793 275.999987793 277.599993896 279.199993896 279.199993896 277.599993896 279.2 280.8 280.8 279.2 280.800006104 282.400006104 282.400006104 280.800006104 282.400012207 284.000012207 284.000012207 282.400012207 283.999987793 285.599987793 285.599987793 283.999987793 285.599993896 287.199993896 287.199993896 285.599993896 287.2 288.8 288.8 287.2 288.800006104 290.400006104 290.400006104 288.800006104 290.400012207 292.000012207 292.000012207 290.400012207 291.999987793 293.599987793 293.599987793 291.999987793 293.599993896 295.199993896 295.199993896 293.599993896 295.2 296.8 296.8 295.2 296.800006104 298.400006104 298.400006104 296.800006104 298.400012207 300.000012207 300.000012207 298.400012207 299.999987793 301.599987793 301.599987793 299.999987793 301.599993896 303.199993896 303.199993896 301.599993896 303.2 304.8 304.8 303.2 304.800006104 306.400006104 306.400006104 304.800006104 306.400012207 308.000012207 308.000012207 306.400012207 307.999987793 309.599987793 309.599987793 307.999987793 309.599993896 311.199993896 311.199993896 309.599993896 311.2 312.8 312.8 311.2 312.800006104 314.400006104 314.400006104 312.800006104 314.400012207 316.000012207 316.000012207 314.400012207 315.999987793 317.599987793 317.599987793 315.999987793 317.599993896 319.199993896 319.199993896 317.599993896 319.2 320.8 320.8 319.2 320.800006104 322.400006104 322.400006104 320.800006104 322.400012207 324.000012207 324.000012207 322.400012207 323.999987793 325.599987793 325.599987793 323.999987793 325.599993896 327.199993896 327.199993896 325.599993896 327.2 328.8 328.8 327.2 328.800006104 330.400006104 330.400006104 328.800006104 330.400012207 332.000012207 332.000012207 330.400012207 331.999987793 333.599987793 333.599987793 331.999987793 333.599993896 335.199993896 335.199993896 333.599993896 335.2 336.8 336.8 335.2 336.800006104 338.400006104 338.400006104 336.800006104 338.400012207 340.000012207 340.000012207 338.400012207 339.999987793 341.599987793 341.599987793 339.999987793 341.599993896 343.199993896 343.199993896 341.599993896 343.2 344.8 344.8 343.2 344.800006104 346.400006104 346.400006104 344.800006104 346.400012207 348.000012207 348.000012207 346.400012207 347.999987793 349.599987793 349.599987793 347.999987793 349.599993896 351.199993896 351.199993896 349.599993896 351.2 352.8 352.8 351.2 352.800006104 354.400006104 354.400006104 352.800006104 354.400012207 356.000012207 356.000012207 354.400012207 355.999987793 357.599987793 357.599987793 355.999987793 357.599993896 359.199993896 359.199993896 357.599993896 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 +224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.833333333333 0.833333333333 0.833333333333 -0.833333333333 0.833333293597 2.49999996026 2.49999996026 0.833333293597 2.49999992053 4.16666658719 4.16666658719 2.49999992053 4.16666666667 5.83333333333 5.83333333333 4.16666666667 5.83333317439 7.49999984105 7.49999984105 5.83333317439 7.49999968211 9.16666634878 9.16666634878 7.49999968211 9.16666666667 10.8333333333 10.8333333333 9.16666666667 10.8333336512 12.5000003179 12.5000003179 10.8333336512 12.4999996821 14.1666663488 14.1666663488 12.4999996821 14.1666666667 15.8333333333 15.8333333333 14.1666666667 15.8333326976 17.4999993642 17.4999993642 15.8333326976 17.5000006358 19.1666673024 19.1666673024 17.5000006358 19.1666666667 20.8333333333 20.8333333333 19.1666666667 20.8333326976 22.4999993642 22.4999993642 20.8333326976 22.5000006358 24.1666673024 24.1666673024 22.5000006358 24.1666666667 25.8333333333 25.8333333333 24.1666666667 25.8333326976 27.4999993642 27.4999993642 25.8333326976 27.5000006358 29.1666673024 29.1666673024 27.5000006358 29.1666666667 30.8333333333 30.8333333333 29.1666666667 30.8333326976 32.4999993642 32.4999993642 30.8333326976 32.4999987284 34.1666653951 34.1666653951 32.4999987284 34.1666666667 35.8333333333 35.8333333333 34.1666666667 35.8333346049 37.5000012716 37.5000012716 35.8333346049 37.4999987284 39.1666653951 39.1666653951 37.4999987284 39.1666666667 40.8333333333 40.8333333333 39.1666666667 40.8333346049 42.5000012716 42.5000012716 40.8333346049 42.4999987284 44.1666653951 44.1666653951 42.4999987284 44.1666666667 45.8333333333 45.8333333333 44.1666666667 45.8333346049 47.5000012716 47.5000012716 45.8333346049 47.4999987284 49.1666653951 49.1666653951 47.4999987284 49.1666666667 50.8333333333 50.8333333333 49.1666666667 50.8333346049 52.5000012716 52.5000012716 50.8333346049 52.4999987284 54.1666653951 54.1666653951 52.4999987284 54.1666666667 55.8333333333 55.8333333333 54.1666666667 55.8333346049 57.5000012716 57.5000012716 55.8333346049 57.4999987284 59.1666653951 59.1666653951 57.4999987284 59.1666666667 60.8333333333 60.8333333333 59.1666666667 60.8333346049 62.5000012716 62.5000012716 60.8333346049 62.4999987284 64.1666653951 64.1666653951 62.4999987284 64.1666666667 65.8333333333 65.8333333333 64.1666666667 65.8333307902 67.4999974569 67.4999974569 65.8333307902 67.5000025431 69.1666692098 69.1666692098 67.5000025431 69.1666666667 70.8333333333 70.8333333333 69.1666666667 70.8333307902 72.4999974569 72.4999974569 70.8333307902 72.5000025431 74.1666692098 74.1666692098 72.5000025431 74.1666666667 75.8333333333 75.8333333333 74.1666666667 75.8333307902 77.4999974569 77.4999974569 75.8333307902 77.5000025431 79.1666692098 79.1666692098 77.5000025431 79.1666666667 80.8333333333 80.8333333333 79.1666666667 80.8333307902 82.4999974569 82.4999974569 80.8333307902 82.5000025431 84.1666692098 84.1666692098 82.5000025431 84.1666666667 85.8333333333 85.8333333333 84.1666666667 85.8333307902 87.4999974569 87.4999974569 85.8333307902 87.5000025431 89.1666692098 89.1666692098 87.5000025431 89.1666666667 90.8333333333 90.8333333333 89.1666666667 90.8333307902 92.4999974569 92.4999974569 90.8333307902 92.5000025431 94.1666692098 94.1666692098 92.5000025431 94.1666666667 95.8333333333 95.8333333333 94.1666666667 95.8333307902 97.4999974569 97.4999974569 95.8333307902 97.5000025431 99.1666692098 99.1666692098 97.5000025431 99.1666666667 100.833333333 100.833333333 99.1666666667 100.83333079 102.499997457 102.499997457 100.83333079 102.500002543 104.16666921 104.16666921 102.500002543 104.166666667 105.833333333 105.833333333 104.166666667 105.83333079 107.499997457 107.499997457 105.83333079 107.500002543 109.16666921 109.16666921 107.500002543 109.166666667 110.833333333 110.833333333 109.166666667 110.83333079 112.499997457 112.499997457 110.83333079 112.500002543 114.16666921 114.16666921 112.500002543 114.166666667 115.833333333 115.833333333 114.166666667 115.83333079 117.499997457 117.499997457 115.83333079 117.500002543 119.16666921 119.16666921 117.500002543 119.166666667 120.833333333 120.833333333 119.166666667 120.83333079 122.499997457 122.499997457 120.83333079 122.500002543 124.16666921 124.16666921 122.500002543 124.166666667 125.833333333 125.833333333 124.166666667 125.83333079 127.499997457 127.499997457 125.83333079 127.499994914 129.16666158 129.16666158 127.499994914 129.166666667 130.833333333 130.833333333 129.166666667 130.83333842 132.500005086 132.500005086 130.83333842 132.499994914 134.16666158 134.16666158 132.499994914 134.166666667 135.833333333 135.833333333 134.166666667 135.83333842 137.500005086 137.500005086 135.83333842 137.499994914 139.16666158 139.16666158 137.499994914 139.166666667 140.833333333 140.833333333 139.166666667 140.83333842 142.500005086 142.500005086 140.83333842 142.499994914 144.16666158 144.16666158 142.499994914 144.166666667 145.833333333 145.833333333 144.166666667 145.83333842 147.500005086 147.500005086 145.83333842 147.499994914 149.16666158 149.16666158 147.499994914 149.166666667 150.833333333 150.833333333 149.166666667 150.83333842 152.500005086 152.500005086 150.83333842 152.499994914 154.16666158 154.16666158 152.499994914 154.166666667 155.833333333 155.833333333 154.166666667 155.83333842 157.500005086 157.500005086 155.83333842 157.499994914 159.16666158 159.16666158 157.499994914 159.166666667 160.833333333 160.833333333 159.166666667 160.83333842 162.500005086 162.500005086 160.83333842 162.499994914 164.16666158 164.16666158 162.499994914 164.166666667 165.833333333 165.833333333 164.166666667 165.83333842 167.500005086 167.500005086 165.83333842 167.499994914 169.16666158 169.16666158 167.499994914 169.166666667 170.833333333 170.833333333 169.166666667 170.83333842 172.500005086 172.500005086 170.83333842 172.499994914 174.16666158 174.16666158 172.499994914 174.166666667 175.833333333 175.833333333 174.166666667 175.83333842 177.500005086 177.500005086 175.83333842 177.499994914 179.16666158 179.16666158 177.499994914 179.166666667 180.833333333 180.833333333 179.166666667 180.83333842 182.500005086 182.500005086 180.83333842 182.499994914 184.16666158 184.16666158 182.499994914 184.166666667 185.833333333 185.833333333 184.166666667 185.83333842 187.500005086 187.500005086 185.83333842 187.499994914 189.16666158 189.16666158 187.499994914 189.166666667 190.833333333 190.833333333 189.166666667 190.83333842 192.500005086 192.500005086 190.83333842 192.499994914 194.16666158 194.16666158 192.499994914 194.166666667 195.833333333 195.833333333 194.166666667 195.83333842 197.500005086 197.500005086 195.83333842 197.499994914 199.16666158 199.16666158 197.499994914 199.166666667 200.833333333 200.833333333 199.166666667 200.83333842 202.500005086 202.500005086 200.83333842 202.499994914 204.16666158 204.16666158 202.499994914 204.166666667 205.833333333 205.833333333 204.166666667 205.83333842 207.500005086 207.500005086 205.83333842 207.499994914 209.16666158 209.16666158 207.499994914 209.166666667 210.833333333 210.833333333 209.166666667 210.83333842 212.500005086 212.500005086 210.83333842 212.499994914 214.16666158 214.16666158 212.499994914 214.166666667 215.833333333 215.833333333 214.166666667 215.83333842 217.500005086 217.500005086 215.83333842 217.499994914 219.16666158 219.16666158 217.499994914 219.166666667 220.833333333 220.833333333 219.166666667 220.83333842 222.500005086 222.500005086 220.83333842 222.499994914 224.16666158 224.16666158 222.499994914 224.166666667 225.833333333 225.833333333 224.166666667 225.83333842 227.500005086 227.500005086 225.83333842 227.499994914 229.16666158 229.16666158 227.499994914 229.166666667 230.833333333 230.833333333 229.166666667 230.83333842 232.500005086 232.500005086 230.83333842 232.499994914 234.16666158 234.16666158 232.499994914 234.166666667 235.833333333 235.833333333 234.166666667 235.83333842 237.500005086 237.500005086 235.83333842 237.499994914 239.16666158 239.16666158 237.499994914 239.166666667 240.833333333 240.833333333 239.166666667 240.83333842 242.500005086 242.500005086 240.83333842 242.499994914 244.16666158 244.16666158 242.499994914 244.166666667 245.833333333 245.833333333 244.166666667 245.83333842 247.500005086 247.500005086 245.83333842 247.499994914 249.16666158 249.16666158 247.499994914 249.166666667 250.833333333 250.833333333 249.166666667 250.83333842 252.500005086 252.500005086 250.83333842 252.499994914 254.16666158 254.16666158 252.499994914 254.166666667 255.833333333 255.833333333 254.166666667 255.833323161 257.499989827 257.499989827 255.833323161 257.500010173 259.166676839 259.166676839 257.500010173 259.166666667 260.833333333 260.833333333 259.166666667 260.833323161 262.499989827 262.499989827 260.833323161 262.500010173 264.166676839 264.166676839 262.500010173 264.166666667 265.833333333 265.833333333 264.166666667 265.833323161 267.499989827 267.499989827 265.833323161 267.500010173 269.166676839 269.166676839 267.500010173 269.166666667 270.833333333 270.833333333 269.166666667 270.833323161 272.499989827 272.499989827 270.833323161 272.500010173 274.166676839 274.166676839 272.500010173 274.166666667 275.833333333 275.833333333 274.166666667 275.833323161 277.499989827 277.499989827 275.833323161 277.500010173 279.166676839 279.166676839 277.500010173 279.166666667 280.833333333 280.833333333 279.166666667 280.833323161 282.499989827 282.499989827 280.833323161 282.500010173 284.166676839 284.166676839 282.500010173 284.166666667 285.833333333 285.833333333 284.166666667 285.833323161 287.499989827 287.499989827 285.833323161 287.500010173 289.166676839 289.166676839 287.500010173 289.166666667 290.833333333 290.833333333 289.166666667 290.833323161 292.499989827 292.499989827 290.833323161 292.500010173 294.166676839 294.166676839 292.500010173 294.166666667 295.833333333 295.833333333 294.166666667 295.833323161 297.499989827 297.499989827 295.833323161 297.500010173 299.166676839 299.166676839 297.500010173 299.166666667 300.833333333 300.833333333 299.166666667 300.833323161 302.499989827 302.499989827 300.833323161 302.500010173 304.166676839 304.166676839 302.500010173 304.166666667 305.833333333 305.833333333 304.166666667 305.833323161 307.499989827 307.499989827 305.833323161 307.500010173 309.166676839 309.166676839 307.500010173 309.166666667 310.833333333 310.833333333 309.166666667 310.833323161 312.499989827 312.499989827 310.833323161 312.500010173 314.166676839 314.166676839 312.500010173 314.166666667 315.833333333 315.833333333 314.166666667 315.833323161 317.499989827 317.499989827 315.833323161 317.500010173 319.166676839 319.166676839 317.500010173 319.166666667 320.833333333 320.833333333 319.166666667 320.833323161 322.499989827 322.499989827 320.833323161 322.500010173 324.166676839 324.166676839 322.500010173 324.166666667 325.833333333 325.833333333 324.166666667 325.833323161 327.499989827 327.499989827 325.833323161 327.500010173 329.166676839 329.166676839 327.500010173 329.166666667 330.833333333 330.833333333 329.166666667 330.833323161 332.499989827 332.499989827 330.833323161 332.500010173 334.166676839 334.166676839 332.500010173 334.166666667 335.833333333 335.833333333 334.166666667 335.833323161 337.499989827 337.499989827 335.833323161 +337.500010173 339.166676839 339.166676839 337.500010173 339.166666667 340.833333333 340.833333333 339.166666667 340.833323161 342.499989827 342.499989827 340.833323161 342.500010173 344.166676839 344.166676839 342.500010173 344.166666667 345.833333333 345.833333333 344.166666667 345.833323161 347.499989827 347.499989827 345.833323161 347.500010173 349.166676839 349.166676839 347.500010173 349.166666667 350.833333333 350.833333333 349.166666667 350.833323161 352.499989827 352.499989827 350.833323161 352.500010173 354.166676839 354.166676839 352.500010173 354.166666667 355.833333333 355.833333333 354.166666667 355.833323161 357.499989827 357.499989827 355.833323161 357.500010173 359.166676839 359.166676839 357.500010173 -0.9 0.9 0.9 -0.9 0.899999952316 2.69999995232 2.69999995232 0.899999952316 2.69999990463 4.49999990463 4.49999990463 2.69999990463 4.50000009537 6.30000009537 6.30000009537 4.50000009537 6.29999980927 8.09999980927 8.09999980927 6.29999980927 8.1 9.9 9.9 8.1 9.90000019073 11.7000001907 11.7000001907 9.90000019073 11.7000003815 13.5000003815 13.5000003815 11.7000003815 13.4999996185 15.2999996185 15.2999996185 13.4999996185 15.3000007629 17.1000007629 17.1000007629 15.3000007629 17.1 18.9 18.9 17.1 18.8999992371 20.6999992371 20.6999992371 18.8999992371 20.7000003815 22.5000003815 22.5000003815 20.7000003815 22.4999996185 24.2999996185 24.2999996185 22.4999996185 24.3000007629 26.1000007629 26.1000007629 24.3000007629 26.1 27.9 27.9 26.1 27.8999992371 29.6999992371 29.6999992371 27.8999992371 29.7000003815 31.5000003815 31.5000003815 29.7000003815 31.5000015259 33.3000015259 33.3000015259 31.5000015259 33.3000007629 35.1000007629 35.1000007629 33.3000007629 35.1 36.9 36.9 35.1 36.8999992371 38.6999992371 38.6999992371 36.8999992371 38.6999984741 40.4999984741 40.4999984741 38.6999984741 40.5000015259 42.3000015259 42.3000015259 40.5000015259 42.3000007629 44.1000007629 44.1000007629 42.3000007629 44.1 45.9 45.9 44.1 45.8999992371 47.6999992371 47.6999992371 45.8999992371 47.6999984741 49.4999984741 49.4999984741 47.6999984741 49.5000015259 51.3000015259 51.3000015259 49.5000015259 51.3000007629 53.1000007629 53.1000007629 51.3000007629 53.1 54.9 54.9 53.1 54.8999992371 56.6999992371 56.6999992371 54.8999992371 56.6999984741 58.4999984741 58.4999984741 56.6999984741 58.5000015259 60.3000015259 60.3000015259 58.5000015259 60.3000007629 62.1000007629 62.1000007629 60.3000007629 62.1 63.9 63.9 62.1 63.9000030518 65.7000030518 65.7000030518 63.9000030518 65.6999984741 67.4999984741 67.4999984741 65.6999984741 67.5000015259 69.3000015259 69.3000015259 67.5000015259 69.2999969482 71.0999969482 71.0999969482 69.2999969482 71.1 72.9 72.9 71.1 72.9000030518 74.7000030518 74.7000030518 72.9000030518 74.6999984741 76.4999984741 76.4999984741 74.6999984741 76.5000015259 78.3000015259 78.3000015259 76.5000015259 78.2999969482 80.0999969482 80.0999969482 78.2999969482 80.1 81.9 81.9 80.1 81.9000030518 83.7000030518 83.7000030518 81.9000030518 83.6999984741 85.4999984741 85.4999984741 83.6999984741 85.5000015259 87.3000015259 87.3000015259 85.5000015259 87.2999969482 89.0999969482 89.0999969482 87.2999969482 89.1 90.9 90.9 89.1 90.9000030518 92.7000030518 92.7000030518 90.9000030518 92.6999984741 94.4999984741 94.4999984741 92.6999984741 94.5000015259 96.3000015259 96.3000015259 94.5000015259 96.2999969482 98.0999969482 98.0999969482 96.2999969482 98.1 99.9 99.9 98.1 99.9000030518 101.700003052 101.700003052 99.9000030518 101.699998474 103.499998474 103.499998474 101.699998474 103.500001526 105.300001526 105.300001526 103.500001526 105.299996948 107.099996948 107.099996948 105.299996948 107.1 108.9 108.9 107.1 108.900003052 110.700003052 110.700003052 108.900003052 110.699998474 112.499998474 112.499998474 110.699998474 112.500001526 114.300001526 114.300001526 112.500001526 114.299996948 116.099996948 116.099996948 114.299996948 116.1 117.9 117.9 116.1 117.900003052 119.700003052 119.700003052 117.900003052 119.699998474 121.499998474 121.499998474 119.699998474 121.500001526 123.300001526 123.300001526 121.500001526 123.299996948 125.099996948 125.099996948 123.299996948 125.1 126.9 126.9 125.1 126.900003052 128.700003052 128.700003052 126.900003052 128.700006104 130.500006104 130.500006104 128.700006104 130.499993896 132.299993896 132.299993896 130.499993896 132.299996948 134.099996948 134.099996948 132.299996948 134.1 135.9 135.9 134.1 135.900003052 137.700003052 137.700003052 135.900003052 137.700006104 139.500006104 139.500006104 137.700006104 139.499993896 141.299993896 141.299993896 139.499993896 141.299996948 143.099996948 143.099996948 141.299996948 143.1 144.9 144.9 143.1 144.900003052 146.700003052 146.700003052 144.900003052 146.700006104 148.500006104 148.500006104 146.700006104 148.499993896 150.299993896 150.299993896 148.499993896 150.299996948 152.099996948 152.099996948 150.299996948 152.1 153.9 153.9 152.1 153.900003052 155.700003052 155.700003052 153.900003052 155.700006104 157.500006104 157.500006104 155.700006104 157.499993896 159.299993896 159.299993896 157.499993896 159.299996948 161.099996948 161.099996948 159.299996948 161.1 162.9 162.9 161.1 162.900003052 164.700003052 164.700003052 162.900003052 164.700006104 166.500006104 166.500006104 164.700006104 166.499993896 168.299993896 168.299993896 166.499993896 168.299996948 170.099996948 170.099996948 168.299996948 170.1 171.9 171.9 170.1 171.900003052 173.700003052 173.700003052 171.900003052 173.700006104 175.500006104 175.500006104 173.700006104 175.499993896 177.299993896 177.299993896 175.499993896 177.299996948 179.099996948 179.099996948 177.299996948 179.1 180.9 180.9 179.1 180.900003052 182.700003052 182.700003052 180.900003052 182.700006104 184.500006104 184.500006104 182.700006104 184.499993896 186.299993896 186.299993896 184.499993896 186.299996948 188.099996948 188.099996948 186.299996948 188.1 189.9 189.9 188.1 189.900003052 191.700003052 191.700003052 189.900003052 191.700006104 193.500006104 193.500006104 191.700006104 193.499993896 195.299993896 195.299993896 193.499993896 195.299996948 197.099996948 197.099996948 195.299996948 197.1 198.9 198.9 197.1 198.900003052 200.700003052 200.700003052 198.900003052 200.700006104 202.500006104 202.500006104 200.700006104 202.499993896 204.299993896 204.299993896 202.499993896 204.299996948 206.099996948 206.099996948 204.299996948 206.1 207.9 207.9 206.1 207.900003052 209.700003052 209.700003052 207.900003052 209.700006104 211.500006104 211.500006104 209.700006104 211.499993896 213.299993896 213.299993896 211.499993896 213.299996948 215.099996948 215.099996948 213.299996948 215.1 216.9 216.9 215.1 216.900003052 218.700003052 218.700003052 216.900003052 218.700006104 220.500006104 220.500006104 218.700006104 220.499993896 222.299993896 222.299993896 220.499993896 222.299996948 224.099996948 224.099996948 222.299996948 224.1 225.9 225.9 224.1 225.900003052 227.700003052 227.700003052 225.900003052 227.700006104 229.500006104 229.500006104 227.700006104 229.499993896 231.299993896 231.299993896 229.499993896 231.299996948 233.099996948 233.099996948 231.299996948 233.1 234.9 234.9 233.1 234.900003052 236.700003052 236.700003052 234.900003052 236.700006104 238.500006104 238.500006104 236.700006104 238.499993896 240.299993896 240.299993896 238.499993896 240.299996948 242.099996948 242.099996948 240.299996948 242.1 243.9 243.9 242.1 243.900003052 245.700003052 245.700003052 243.900003052 245.700006104 247.500006104 247.500006104 245.700006104 247.499993896 249.299993896 249.299993896 247.499993896 249.299996948 251.099996948 251.099996948 249.299996948 251.1 252.9 252.9 251.1 252.900003052 254.700003052 254.700003052 252.900003052 254.700006104 256.500006104 256.500006104 254.700006104 256.499993896 258.299993896 258.299993896 256.499993896 258.300012207 260.100012207 260.100012207 258.300012207 260.1 261.9 261.9 260.1 261.899987793 263.699987793 263.699987793 261.899987793 263.700006104 265.500006104 265.500006104 263.700006104 265.499993896 267.299993896 267.299993896 265.499993896 267.300012207 269.100012207 269.100012207 267.300012207 269.1 270.9 270.9 269.1 270.899987793 272.699987793 272.699987793 270.899987793 272.700006104 274.500006104 274.500006104 272.700006104 274.499993896 276.299993896 276.299993896 274.499993896 276.300012207 278.100012207 278.100012207 276.300012207 278.1 279.9 279.9 278.1 279.899987793 281.699987793 281.699987793 279.899987793 281.700006104 283.500006104 283.500006104 281.700006104 283.499993896 285.299993896 285.299993896 283.499993896 285.300012207 287.100012207 287.100012207 285.300012207 287.1 288.9 288.9 287.1 288.899987793 290.699987793 290.699987793 288.899987793 290.700006104 292.500006104 292.500006104 290.700006104 292.499993896 294.299993896 294.299993896 292.499993896 294.300012207 296.100012207 296.100012207 294.300012207 296.1 297.9 297.9 296.1 297.899987793 299.699987793 299.699987793 297.899987793 299.700006104 301.500006104 301.500006104 299.700006104 301.499993896 303.299993896 303.299993896 301.499993896 303.300012207 305.100012207 305.100012207 303.300012207 305.1 306.9 306.9 305.1 306.899987793 308.699987793 308.699987793 306.899987793 308.700006104 310.500006104 310.500006104 308.700006104 310.499993896 312.299993896 312.299993896 310.499993896 312.300012207 314.100012207 314.100012207 312.300012207 314.1 315.9 315.9 314.1 315.899987793 317.699987793 317.699987793 315.899987793 317.700006104 319.500006104 319.500006104 317.700006104 319.499993896 321.299993896 321.299993896 319.499993896 321.300012207 323.100012207 323.100012207 321.300012207 323.1 324.9 324.9 323.1 324.899987793 326.699987793 326.699987793 324.899987793 326.700006104 328.500006104 328.500006104 326.700006104 328.499993896 330.299993896 330.299993896 328.499993896 330.300012207 332.100012207 332.100012207 330.300012207 332.1 333.9 333.9 332.1 333.899987793 335.699987793 335.699987793 333.899987793 335.700006104 337.500006104 337.500006104 335.700006104 337.499993896 339.299993896 339.299993896 337.499993896 339.300012207 341.100012207 341.100012207 339.300012207 341.1 342.9 342.9 341.1 342.899987793 344.699987793 344.699987793 342.899987793 344.700006104 346.500006104 346.500006104 344.700006104 346.499993896 348.299993896 348.299993896 346.499993896 348.300012207 350.100012207 350.100012207 348.300012207 350.1 351.9 351.9 350.1 351.899987793 353.699987793 353.699987793 351.899987793 353.700006104 355.500006104 355.500006104 353.700006104 355.499993896 357.299993896 357.299993896 355.499993896 357.300012207 359.100012207 359.100012207 357.300012207 -0.9375 0.9375 0.9375 -0.9375 0.9375 2.8125 2.8125 0.9375 2.8125 4.6875 4.6875 2.8125 4.6875 6.5625 6.5625 4.6875 6.5625 8.4375 8.4375 6.5625 8.4375 10.3125 10.3125 8.4375 10.3125 12.1875 12.1875 10.3125 12.1875 14.0625 14.0625 12.1875 14.0625 15.9375 15.9375 14.0625 15.9375 17.8125 17.8125 15.9375 17.8125 19.6875 19.6875 17.8125 19.6875 21.5625 21.5625 19.6875 21.5625 23.4375 23.4375 21.5625 23.4375 25.3125 25.3125 23.4375 25.3125 27.1875 27.1875 25.3125 27.1875 29.0625 29.0625 27.1875 29.0625 30.9375 30.9375 29.0625 30.9375 32.8125 32.8125 30.9375 32.8125 34.6875 34.6875 32.8125 34.6875 36.5625 36.5625 34.6875 36.5625 38.4375 38.4375 36.5625 38.4375 40.3125 40.3125 38.4375 40.3125 42.1875 42.1875 40.3125 42.1875 44.0625 44.0625 42.1875 44.0625 45.9375 45.9375 44.0625 45.9375 47.8125 47.8125 45.9375 47.8125 49.6875 49.6875 47.8125 49.6875 51.5625 51.5625 49.6875 51.5625 53.4375 53.4375 51.5625 53.4375 55.3125 55.3125 53.4375 55.3125 57.1875 57.1875 55.3125 57.1875 59.0625 59.0625 57.1875 59.0625 60.9375 60.9375 59.0625 60.9375 62.8125 62.8125 60.9375 62.8125 64.6875 64.6875 62.8125 64.6875 66.5625 66.5625 64.6875 66.5625 68.4375 68.4375 66.5625 68.4375 70.3125 70.3125 68.4375 70.3125 72.1875 72.1875 70.3125 72.1875 74.0625 74.0625 72.1875 74.0625 75.9375 75.9375 74.0625 75.9375 77.8125 77.8125 75.9375 77.8125 79.6875 79.6875 77.8125 79.6875 81.5625 81.5625 79.6875 81.5625 83.4375 83.4375 81.5625 83.4375 85.3125 85.3125 83.4375 85.3125 87.1875 87.1875 85.3125 87.1875 89.0625 89.0625 87.1875 89.0625 90.9375 90.9375 89.0625 90.9375 92.8125 92.8125 90.9375 92.8125 94.6875 94.6875 92.8125 94.6875 96.5625 96.5625 94.6875 96.5625 98.4375 98.4375 96.5625 98.4375 100.3125 100.3125 98.4375 100.3125 102.1875 102.1875 100.3125 102.1875 104.0625 104.0625 102.1875 104.0625 105.9375 105.9375 104.0625 105.9375 107.8125 107.8125 105.9375 107.8125 109.6875 109.6875 107.8125 109.6875 111.5625 111.5625 109.6875 111.5625 113.4375 113.4375 111.5625 113.4375 115.3125 115.3125 113.4375 115.3125 117.1875 117.1875 115.3125 117.1875 119.0625 119.0625 117.1875 119.0625 120.9375 120.9375 119.0625 120.9375 122.8125 122.8125 120.9375 122.8125 124.6875 124.6875 122.8125 124.6875 126.5625 126.5625 124.6875 126.5625 128.4375 128.4375 126.5625 128.4375 130.3125 130.3125 128.4375 130.3125 132.1875 132.1875 130.3125 132.1875 134.0625 134.0625 132.1875 134.0625 135.9375 135.9375 134.0625 135.9375 137.8125 137.8125 135.9375 137.8125 139.6875 139.6875 137.8125 139.6875 141.5625 141.5625 139.6875 141.5625 143.4375 143.4375 141.5625 143.4375 145.3125 145.3125 143.4375 145.3125 147.1875 147.1875 145.3125 147.1875 149.0625 149.0625 147.1875 149.0625 150.9375 150.9375 149.0625 150.9375 152.8125 152.8125 150.9375 152.8125 154.6875 154.6875 152.8125 154.6875 156.5625 156.5625 154.6875 156.5625 158.4375 158.4375 156.5625 158.4375 160.3125 160.3125 158.4375 160.3125 162.1875 162.1875 160.3125 162.1875 164.0625 164.0625 162.1875 164.0625 165.9375 165.9375 164.0625 165.9375 167.8125 167.8125 165.9375 167.8125 169.6875 169.6875 167.8125 169.6875 171.5625 171.5625 169.6875 171.5625 173.4375 173.4375 171.5625 173.4375 175.3125 175.3125 173.4375 175.3125 177.1875 177.1875 175.3125 177.1875 179.0625 179.0625 177.1875 179.0625 180.9375 180.9375 179.0625 180.9375 182.8125 182.8125 180.9375 182.8125 184.6875 184.6875 182.8125 184.6875 186.5625 186.5625 184.6875 186.5625 188.4375 188.4375 186.5625 188.4375 190.3125 190.3125 188.4375 190.3125 192.1875 192.1875 190.3125 192.1875 194.0625 194.0625 192.1875 194.0625 195.9375 195.9375 194.0625 195.9375 197.8125 197.8125 195.9375 197.8125 199.6875 199.6875 197.8125 199.6875 201.5625 201.5625 199.6875 201.5625 203.4375 203.4375 201.5625 203.4375 205.3125 205.3125 203.4375 205.3125 207.1875 207.1875 205.3125 207.1875 209.0625 209.0625 207.1875 209.0625 210.9375 210.9375 209.0625 210.9375 212.8125 212.8125 210.9375 212.8125 214.6875 214.6875 212.8125 214.6875 216.5625 216.5625 214.6875 216.5625 218.4375 218.4375 216.5625 218.4375 220.3125 220.3125 218.4375 220.3125 222.1875 222.1875 220.3125 222.1875 224.0625 224.0625 222.1875 224.0625 225.9375 225.9375 224.0625 225.9375 227.8125 227.8125 225.9375 227.8125 229.6875 229.6875 227.8125 229.6875 231.5625 231.5625 229.6875 231.5625 233.4375 233.4375 231.5625 233.4375 235.3125 235.3125 233.4375 235.3125 237.1875 237.1875 235.3125 237.1875 239.0625 239.0625 237.1875 239.0625 240.9375 240.9375 239.0625 240.9375 242.8125 242.8125 240.9375 242.8125 244.6875 244.6875 242.8125 244.6875 246.5625 246.5625 244.6875 246.5625 248.4375 248.4375 246.5625 248.4375 250.3125 250.3125 248.4375 250.3125 252.1875 252.1875 250.3125 252.1875 254.0625 254.0625 252.1875 254.0625 255.9375 255.9375 254.0625 255.9375 257.8125 257.8125 255.9375 257.8125 259.6875 259.6875 257.8125 259.6875 261.5625 261.5625 259.6875 261.5625 263.4375 263.4375 261.5625 263.4375 265.3125 265.3125 263.4375 265.3125 267.1875 267.1875 265.3125 267.1875 269.0625 269.0625 267.1875 269.0625 270.9375 270.9375 269.0625 270.9375 272.8125 272.8125 270.9375 272.8125 274.6875 274.6875 272.8125 274.6875 276.5625 276.5625 274.6875 276.5625 278.4375 278.4375 276.5625 278.4375 280.3125 280.3125 278.4375 280.3125 282.1875 282.1875 280.3125 282.1875 284.0625 284.0625 282.1875 284.0625 285.9375 285.9375 284.0625 285.9375 287.8125 287.8125 285.9375 287.8125 289.6875 289.6875 287.8125 289.6875 291.5625 291.5625 289.6875 291.5625 293.4375 293.4375 291.5625 293.4375 295.3125 295.3125 293.4375 295.3125 297.1875 297.1875 295.3125 297.1875 299.0625 299.0625 297.1875 299.0625 300.9375 300.9375 299.0625 300.9375 302.8125 302.8125 300.9375 302.8125 304.6875 304.6875 302.8125 304.6875 306.5625 306.5625 304.6875 306.5625 308.4375 308.4375 306.5625 308.4375 310.3125 310.3125 308.4375 310.3125 312.1875 312.1875 310.3125 312.1875 314.0625 314.0625 312.1875 314.0625 315.9375 315.9375 314.0625 315.9375 317.8125 317.8125 315.9375 317.8125 319.6875 319.6875 317.8125 319.6875 321.5625 321.5625 319.6875 321.5625 323.4375 323.4375 321.5625 323.4375 325.3125 325.3125 323.4375 325.3125 327.1875 327.1875 325.3125 327.1875 329.0625 329.0625 327.1875 329.0625 330.9375 330.9375 329.0625 330.9375 332.8125 332.8125 330.9375 332.8125 334.6875 334.6875 332.8125 334.6875 336.5625 336.5625 334.6875 336.5625 338.4375 338.4375 336.5625 338.4375 340.3125 340.3125 338.4375 340.3125 342.1875 342.1875 340.3125 342.1875 344.0625 344.0625 342.1875 344.0625 345.9375 345.9375 344.0625 345.9375 347.8125 347.8125 345.9375 347.8125 349.6875 349.6875 347.8125 349.6875 351.5625 351.5625 349.6875 351.5625 353.4375 353.4375 351.5625 353.4375 355.3125 355.3125 353.4375 355.3125 357.1875 357.1875 355.3125 357.1875 359.0625 359.0625 357.1875 -0.9375 0.9375 0.9375 -0.9375 0.9375 2.8125 2.8125 0.9375 2.8125 4.6875 4.6875 2.8125 4.6875 6.5625 6.5625 4.6875 6.5625 8.4375 8.4375 6.5625 8.4375 10.3125 10.3125 8.4375 10.3125 12.1875 12.1875 10.3125 12.1875 14.0625 14.0625 12.1875 14.0625 15.9375 15.9375 14.0625 15.9375 17.8125 17.8125 15.9375 17.8125 19.6875 19.6875 17.8125 19.6875 21.5625 21.5625 19.6875 21.5625 23.4375 23.4375 21.5625 23.4375 25.3125 25.3125 23.4375 25.3125 27.1875 27.1875 25.3125 27.1875 29.0625 29.0625 27.1875 29.0625 30.9375 30.9375 29.0625 30.9375 32.8125 32.8125 30.9375 32.8125 34.6875 34.6875 32.8125 34.6875 36.5625 36.5625 34.6875 36.5625 38.4375 38.4375 36.5625 38.4375 40.3125 40.3125 38.4375 40.3125 42.1875 42.1875 40.3125 42.1875 44.0625 44.0625 42.1875 44.0625 45.9375 45.9375 44.0625 45.9375 47.8125 47.8125 45.9375 47.8125 49.6875 49.6875 47.8125 49.6875 51.5625 51.5625 49.6875 51.5625 53.4375 53.4375 51.5625 53.4375 55.3125 55.3125 53.4375 55.3125 57.1875 57.1875 55.3125 57.1875 59.0625 59.0625 57.1875 59.0625 60.9375 60.9375 59.0625 60.9375 62.8125 62.8125 60.9375 62.8125 64.6875 64.6875 62.8125 64.6875 66.5625 66.5625 64.6875 66.5625 68.4375 68.4375 66.5625 68.4375 70.3125 70.3125 68.4375 70.3125 72.1875 72.1875 70.3125 72.1875 74.0625 74.0625 72.1875 74.0625 75.9375 75.9375 74.0625 75.9375 77.8125 77.8125 75.9375 77.8125 79.6875 79.6875 77.8125 79.6875 81.5625 81.5625 79.6875 81.5625 83.4375 83.4375 81.5625 83.4375 85.3125 85.3125 83.4375 85.3125 87.1875 87.1875 85.3125 87.1875 89.0625 89.0625 87.1875 89.0625 90.9375 90.9375 89.0625 90.9375 92.8125 92.8125 90.9375 92.8125 94.6875 94.6875 92.8125 94.6875 96.5625 96.5625 94.6875 96.5625 98.4375 98.4375 96.5625 98.4375 100.3125 100.3125 98.4375 100.3125 102.1875 102.1875 100.3125 102.1875 104.0625 104.0625 102.1875 104.0625 105.9375 105.9375 104.0625 105.9375 107.8125 107.8125 105.9375 107.8125 109.6875 109.6875 107.8125 109.6875 111.5625 111.5625 109.6875 111.5625 113.4375 113.4375 111.5625 113.4375 115.3125 115.3125 113.4375 115.3125 117.1875 117.1875 115.3125 117.1875 119.0625 119.0625 117.1875 119.0625 120.9375 120.9375 119.0625 120.9375 122.8125 122.8125 120.9375 122.8125 124.6875 124.6875 122.8125 124.6875 126.5625 126.5625 124.6875 126.5625 128.4375 128.4375 126.5625 128.4375 130.3125 130.3125 128.4375 130.3125 132.1875 132.1875 130.3125 132.1875 134.0625 134.0625 132.1875 134.0625 135.9375 135.9375 134.0625 135.9375 137.8125 137.8125 135.9375 137.8125 139.6875 139.6875 137.8125 139.6875 141.5625 141.5625 139.6875 141.5625 143.4375 143.4375 141.5625 143.4375 145.3125 145.3125 143.4375 145.3125 147.1875 147.1875 145.3125 147.1875 149.0625 149.0625 147.1875 149.0625 150.9375 150.9375 149.0625 150.9375 152.8125 152.8125 150.9375 152.8125 154.6875 154.6875 152.8125 154.6875 156.5625 156.5625 154.6875 156.5625 158.4375 158.4375 156.5625 158.4375 160.3125 160.3125 158.4375 160.3125 162.1875 162.1875 160.3125 162.1875 164.0625 164.0625 162.1875 164.0625 165.9375 165.9375 164.0625 165.9375 167.8125 167.8125 165.9375 167.8125 169.6875 169.6875 167.8125 169.6875 171.5625 171.5625 169.6875 171.5625 173.4375 173.4375 171.5625 173.4375 175.3125 175.3125 173.4375 175.3125 177.1875 177.1875 175.3125 +177.1875 179.0625 179.0625 177.1875 179.0625 180.9375 180.9375 179.0625 180.9375 182.8125 182.8125 180.9375 182.8125 184.6875 184.6875 182.8125 184.6875 186.5625 186.5625 184.6875 186.5625 188.4375 188.4375 186.5625 188.4375 190.3125 190.3125 188.4375 190.3125 192.1875 192.1875 190.3125 192.1875 194.0625 194.0625 192.1875 194.0625 195.9375 195.9375 194.0625 195.9375 197.8125 197.8125 195.9375 197.8125 199.6875 199.6875 197.8125 199.6875 201.5625 201.5625 199.6875 201.5625 203.4375 203.4375 201.5625 203.4375 205.3125 205.3125 203.4375 205.3125 207.1875 207.1875 205.3125 207.1875 209.0625 209.0625 207.1875 209.0625 210.9375 210.9375 209.0625 210.9375 212.8125 212.8125 210.9375 212.8125 214.6875 214.6875 212.8125 214.6875 216.5625 216.5625 214.6875 216.5625 218.4375 218.4375 216.5625 218.4375 220.3125 220.3125 218.4375 220.3125 222.1875 222.1875 220.3125 222.1875 224.0625 224.0625 222.1875 224.0625 225.9375 225.9375 224.0625 225.9375 227.8125 227.8125 225.9375 227.8125 229.6875 229.6875 227.8125 229.6875 231.5625 231.5625 229.6875 231.5625 233.4375 233.4375 231.5625 233.4375 235.3125 235.3125 233.4375 235.3125 237.1875 237.1875 235.3125 237.1875 239.0625 239.0625 237.1875 239.0625 240.9375 240.9375 239.0625 240.9375 242.8125 242.8125 240.9375 242.8125 244.6875 244.6875 242.8125 244.6875 246.5625 246.5625 244.6875 246.5625 248.4375 248.4375 246.5625 248.4375 250.3125 250.3125 248.4375 250.3125 252.1875 252.1875 250.3125 252.1875 254.0625 254.0625 252.1875 254.0625 255.9375 255.9375 254.0625 255.9375 257.8125 257.8125 255.9375 257.8125 259.6875 259.6875 257.8125 259.6875 261.5625 261.5625 259.6875 261.5625 263.4375 263.4375 261.5625 263.4375 265.3125 265.3125 263.4375 265.3125 267.1875 267.1875 265.3125 267.1875 269.0625 269.0625 267.1875 269.0625 270.9375 270.9375 269.0625 270.9375 272.8125 272.8125 270.9375 272.8125 274.6875 274.6875 272.8125 274.6875 276.5625 276.5625 274.6875 276.5625 278.4375 278.4375 276.5625 278.4375 280.3125 280.3125 278.4375 280.3125 282.1875 282.1875 280.3125 282.1875 284.0625 284.0625 282.1875 284.0625 285.9375 285.9375 284.0625 285.9375 287.8125 287.8125 285.9375 287.8125 289.6875 289.6875 287.8125 289.6875 291.5625 291.5625 289.6875 291.5625 293.4375 293.4375 291.5625 293.4375 295.3125 295.3125 293.4375 295.3125 297.1875 297.1875 295.3125 297.1875 299.0625 299.0625 297.1875 299.0625 300.9375 300.9375 299.0625 300.9375 302.8125 302.8125 300.9375 302.8125 304.6875 304.6875 302.8125 304.6875 306.5625 306.5625 304.6875 306.5625 308.4375 308.4375 306.5625 308.4375 310.3125 310.3125 308.4375 310.3125 312.1875 312.1875 310.3125 312.1875 314.0625 314.0625 312.1875 314.0625 315.9375 315.9375 314.0625 315.9375 317.8125 317.8125 315.9375 317.8125 319.6875 319.6875 317.8125 319.6875 321.5625 321.5625 319.6875 321.5625 323.4375 323.4375 321.5625 323.4375 325.3125 325.3125 323.4375 325.3125 327.1875 327.1875 325.3125 327.1875 329.0625 329.0625 327.1875 329.0625 330.9375 330.9375 329.0625 330.9375 332.8125 332.8125 330.9375 332.8125 334.6875 334.6875 332.8125 334.6875 336.5625 336.5625 334.6875 336.5625 338.4375 338.4375 336.5625 338.4375 340.3125 340.3125 338.4375 340.3125 342.1875 342.1875 340.3125 342.1875 344.0625 344.0625 342.1875 344.0625 345.9375 345.9375 344.0625 345.9375 347.8125 347.8125 345.9375 347.8125 349.6875 349.6875 347.8125 349.6875 351.5625 351.5625 349.6875 351.5625 353.4375 353.4375 351.5625 353.4375 355.3125 355.3125 353.4375 355.3125 357.1875 357.1875 355.3125 357.1875 359.0625 359.0625 357.1875 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.0 1.0 1.0 -1.0 1.0 3.0 3.0 1.0 3.0 5.0 5.0 3.0 5.0 7.0 7.0 5.0 7.0 9.0 9.0 7.0 9.0 11.0 11.0 9.0 11.0 13.0 13.0 11.0 13.0 15.0 15.0 13.0 15.0 17.0 17.0 15.0 17.0 19.0 19.0 17.0 19.0 21.0 21.0 19.0 21.0 23.0 23.0 21.0 23.0 25.0 25.0 23.0 25.0 27.0 27.0 25.0 27.0 29.0 29.0 27.0 29.0 31.0 31.0 29.0 31.0 33.0 33.0 31.0 33.0 35.0 35.0 33.0 35.0 37.0 37.0 35.0 37.0 39.0 39.0 37.0 39.0 41.0 41.0 39.0 41.0 43.0 43.0 41.0 43.0 45.0 45.0 43.0 45.0 47.0 47.0 45.0 47.0 49.0 49.0 47.0 49.0 51.0 51.0 49.0 51.0 53.0 53.0 51.0 53.0 55.0 55.0 53.0 55.0 57.0 57.0 55.0 57.0 59.0 59.0 57.0 59.0 61.0 61.0 59.0 61.0 63.0 63.0 61.0 63.0 65.0 65.0 63.0 65.0 67.0 67.0 65.0 67.0 69.0 69.0 67.0 69.0 71.0 71.0 69.0 71.0 73.0 73.0 71.0 73.0 75.0 75.0 73.0 75.0 77.0 77.0 75.0 77.0 79.0 79.0 77.0 79.0 81.0 81.0 79.0 81.0 83.0 83.0 81.0 83.0 85.0 85.0 83.0 +85.0 87.0 87.0 85.0 87.0 89.0 89.0 87.0 89.0 91.0 91.0 89.0 91.0 93.0 93.0 91.0 93.0 95.0 95.0 93.0 95.0 97.0 97.0 95.0 97.0 99.0 99.0 97.0 99.0 101.0 101.0 99.0 101.0 103.0 103.0 101.0 103.0 105.0 105.0 103.0 105.0 107.0 107.0 105.0 107.0 109.0 109.0 107.0 109.0 111.0 111.0 109.0 111.0 113.0 113.0 111.0 113.0 115.0 115.0 113.0 115.0 117.0 117.0 115.0 117.0 119.0 119.0 117.0 119.0 121.0 121.0 119.0 121.0 123.0 123.0 121.0 123.0 125.0 125.0 123.0 125.0 127.0 127.0 125.0 127.0 129.0 129.0 127.0 129.0 131.0 131.0 129.0 131.0 133.0 133.0 131.0 133.0 135.0 135.0 133.0 135.0 137.0 137.0 135.0 137.0 139.0 139.0 137.0 139.0 141.0 141.0 139.0 141.0 143.0 143.0 141.0 143.0 145.0 145.0 143.0 145.0 147.0 147.0 145.0 147.0 149.0 149.0 147.0 149.0 151.0 151.0 149.0 151.0 153.0 153.0 151.0 153.0 155.0 155.0 153.0 155.0 157.0 157.0 155.0 157.0 159.0 159.0 157.0 159.0 161.0 161.0 159.0 161.0 163.0 163.0 161.0 163.0 165.0 165.0 163.0 165.0 167.0 167.0 165.0 167.0 169.0 169.0 167.0 169.0 171.0 171.0 169.0 171.0 173.0 173.0 171.0 173.0 175.0 175.0 173.0 175.0 177.0 177.0 175.0 177.0 179.0 179.0 177.0 179.0 181.0 181.0 179.0 181.0 183.0 183.0 181.0 183.0 185.0 185.0 183.0 185.0 187.0 187.0 185.0 187.0 189.0 189.0 187.0 189.0 191.0 191.0 189.0 191.0 193.0 193.0 191.0 193.0 195.0 195.0 193.0 195.0 197.0 197.0 195.0 197.0 199.0 199.0 197.0 199.0 201.0 201.0 199.0 201.0 203.0 203.0 201.0 203.0 205.0 205.0 203.0 205.0 207.0 207.0 205.0 207.0 209.0 209.0 207.0 209.0 211.0 211.0 209.0 211.0 213.0 213.0 211.0 213.0 215.0 215.0 213.0 215.0 217.0 217.0 215.0 217.0 219.0 219.0 217.0 219.0 221.0 221.0 219.0 221.0 223.0 223.0 221.0 223.0 225.0 225.0 223.0 225.0 227.0 227.0 225.0 227.0 229.0 229.0 227.0 229.0 231.0 231.0 229.0 231.0 233.0 233.0 231.0 233.0 235.0 235.0 233.0 235.0 237.0 237.0 235.0 237.0 239.0 239.0 237.0 239.0 241.0 241.0 239.0 241.0 243.0 243.0 241.0 243.0 245.0 245.0 243.0 245.0 247.0 247.0 245.0 247.0 249.0 249.0 247.0 249.0 251.0 251.0 249.0 251.0 253.0 253.0 251.0 253.0 255.0 255.0 253.0 255.0 257.0 257.0 255.0 257.0 259.0 259.0 257.0 259.0 261.0 261.0 259.0 261.0 263.0 263.0 261.0 263.0 265.0 265.0 263.0 265.0 267.0 267.0 265.0 267.0 269.0 269.0 267.0 269.0 271.0 271.0 269.0 271.0 273.0 273.0 271.0 273.0 275.0 275.0 273.0 275.0 277.0 277.0 275.0 277.0 279.0 279.0 277.0 279.0 281.0 281.0 279.0 281.0 283.0 283.0 281.0 283.0 285.0 285.0 283.0 285.0 287.0 287.0 285.0 287.0 289.0 289.0 287.0 289.0 291.0 291.0 289.0 291.0 293.0 293.0 291.0 293.0 295.0 295.0 293.0 295.0 297.0 297.0 295.0 297.0 299.0 299.0 297.0 299.0 301.0 301.0 299.0 301.0 303.0 303.0 301.0 303.0 305.0 305.0 303.0 305.0 307.0 307.0 305.0 307.0 309.0 309.0 307.0 309.0 311.0 311.0 309.0 311.0 313.0 313.0 311.0 313.0 315.0 315.0 313.0 315.0 317.0 317.0 315.0 317.0 319.0 319.0 317.0 319.0 321.0 321.0 319.0 321.0 323.0 323.0 321.0 323.0 325.0 325.0 323.0 325.0 327.0 327.0 325.0 327.0 329.0 329.0 327.0 329.0 331.0 331.0 329.0 331.0 333.0 333.0 331.0 333.0 335.0 335.0 333.0 335.0 337.0 337.0 335.0 337.0 339.0 339.0 337.0 339.0 341.0 341.0 339.0 341.0 343.0 343.0 341.0 343.0 345.0 345.0 343.0 345.0 347.0 347.0 345.0 347.0 349.0 349.0 347.0 349.0 351.0 351.0 349.0 351.0 353.0 353.0 351.0 353.0 355.0 355.0 353.0 355.0 357.0 357.0 355.0 357.0 359.0 359.0 357.0 -1.125 1.125 1.125 -1.125 1.125 3.375 3.375 1.125 3.375 5.625 5.625 3.375 5.625 7.875 7.875 5.625 7.875 10.125 10.125 7.875 10.125 12.375 12.375 10.125 12.375 14.625 14.625 12.375 14.625 16.875 16.875 14.625 16.875 19.125 19.125 16.875 19.125 21.375 21.375 19.125 21.375 23.625 23.625 21.375 23.625 25.875 25.875 23.625 25.875 28.125 28.125 25.875 28.125 30.375 30.375 28.125 30.375 32.625 32.625 30.375 32.625 34.875 34.875 32.625 34.875 37.125 37.125 34.875 37.125 39.375 39.375 37.125 39.375 41.625 41.625 39.375 41.625 43.875 43.875 41.625 43.875 46.125 46.125 43.875 46.125 48.375 48.375 46.125 48.375 50.625 50.625 48.375 50.625 52.875 52.875 50.625 52.875 55.125 55.125 52.875 55.125 57.375 57.375 55.125 57.375 59.625 59.625 57.375 59.625 61.875 61.875 59.625 61.875 64.125 64.125 61.875 64.125 66.375 66.375 64.125 66.375 68.625 68.625 66.375 68.625 70.875 70.875 68.625 70.875 73.125 73.125 70.875 73.125 75.375 75.375 73.125 75.375 77.625 77.625 75.375 77.625 79.875 79.875 77.625 79.875 82.125 82.125 79.875 82.125 84.375 84.375 82.125 84.375 86.625 86.625 84.375 86.625 88.875 88.875 86.625 88.875 91.125 91.125 88.875 91.125 93.375 93.375 91.125 93.375 95.625 95.625 93.375 95.625 97.875 97.875 95.625 97.875 100.125 100.125 97.875 100.125 102.375 102.375 100.125 102.375 104.625 104.625 102.375 104.625 106.875 106.875 104.625 106.875 109.125 109.125 106.875 109.125 111.375 111.375 109.125 111.375 113.625 113.625 111.375 113.625 115.875 115.875 113.625 115.875 118.125 118.125 115.875 118.125 120.375 120.375 118.125 120.375 122.625 122.625 120.375 122.625 124.875 124.875 122.625 124.875 127.125 127.125 124.875 127.125 129.375 129.375 127.125 129.375 131.625 131.625 129.375 131.625 133.875 133.875 131.625 133.875 136.125 136.125 133.875 136.125 138.375 138.375 136.125 138.375 140.625 140.625 138.375 140.625 142.875 142.875 140.625 142.875 145.125 145.125 142.875 145.125 147.375 147.375 145.125 147.375 149.625 149.625 147.375 149.625 151.875 151.875 149.625 151.875 154.125 154.125 151.875 154.125 156.375 156.375 154.125 156.375 158.625 158.625 156.375 158.625 160.875 160.875 158.625 160.875 163.125 163.125 160.875 163.125 165.375 165.375 163.125 165.375 167.625 167.625 165.375 167.625 169.875 169.875 167.625 169.875 172.125 172.125 169.875 172.125 174.375 174.375 172.125 174.375 176.625 176.625 174.375 176.625 178.875 178.875 176.625 178.875 181.125 181.125 178.875 181.125 183.375 183.375 181.125 183.375 185.625 185.625 183.375 185.625 187.875 187.875 185.625 187.875 190.125 190.125 187.875 190.125 192.375 192.375 190.125 192.375 194.625 194.625 192.375 194.625 196.875 196.875 194.625 196.875 199.125 199.125 196.875 199.125 201.375 201.375 199.125 201.375 203.625 203.625 201.375 203.625 205.875 205.875 203.625 205.875 208.125 208.125 205.875 208.125 210.375 210.375 208.125 210.375 212.625 212.625 210.375 212.625 214.875 214.875 212.625 214.875 217.125 217.125 214.875 217.125 219.375 219.375 217.125 219.375 221.625 221.625 219.375 221.625 223.875 223.875 221.625 223.875 226.125 226.125 223.875 226.125 228.375 228.375 226.125 228.375 230.625 230.625 228.375 230.625 232.875 232.875 230.625 232.875 235.125 235.125 232.875 235.125 237.375 237.375 235.125 237.375 239.625 239.625 237.375 239.625 241.875 241.875 239.625 241.875 244.125 244.125 241.875 244.125 246.375 246.375 244.125 246.375 248.625 248.625 246.375 248.625 250.875 250.875 248.625 250.875 253.125 253.125 250.875 253.125 255.375 255.375 253.125 255.375 257.625 257.625 255.375 257.625 259.875 259.875 257.625 259.875 262.125 262.125 259.875 262.125 264.375 264.375 262.125 264.375 266.625 266.625 264.375 266.625 268.875 268.875 266.625 268.875 271.125 271.125 268.875 271.125 273.375 273.375 271.125 273.375 275.625 275.625 273.375 275.625 277.875 277.875 275.625 277.875 280.125 280.125 277.875 280.125 282.375 282.375 280.125 282.375 284.625 284.625 282.375 284.625 286.875 286.875 284.625 286.875 289.125 289.125 286.875 289.125 291.375 291.375 289.125 291.375 293.625 293.625 291.375 293.625 295.875 295.875 293.625 295.875 298.125 298.125 295.875 298.125 300.375 300.375 298.125 300.375 302.625 302.625 300.375 302.625 304.875 304.875 302.625 304.875 307.125 307.125 304.875 307.125 309.375 309.375 307.125 309.375 311.625 311.625 309.375 311.625 313.875 313.875 311.625 313.875 316.125 316.125 313.875 316.125 318.375 318.375 316.125 318.375 320.625 320.625 318.375 320.625 322.875 322.875 320.625 322.875 325.125 325.125 322.875 325.125 327.375 327.375 325.125 327.375 329.625 329.625 327.375 329.625 331.875 331.875 329.625 331.875 334.125 334.125 331.875 334.125 336.375 336.375 334.125 336.375 338.625 338.625 336.375 338.625 340.875 340.875 338.625 340.875 343.125 343.125 340.875 343.125 345.375 345.375 343.125 345.375 347.625 347.625 345.375 347.625 349.875 349.875 347.625 349.875 352.125 352.125 349.875 352.125 354.375 354.375 352.125 354.375 356.625 356.625 354.375 356.625 358.875 358.875 356.625 -1.125 1.125 1.125 -1.125 1.125 3.375 3.375 1.125 3.375 5.625 5.625 3.375 5.625 7.875 7.875 5.625 7.875 10.125 10.125 7.875 10.125 12.375 12.375 10.125 12.375 14.625 14.625 12.375 14.625 16.875 16.875 14.625 16.875 19.125 19.125 16.875 19.125 21.375 21.375 19.125 21.375 23.625 23.625 21.375 23.625 25.875 25.875 23.625 25.875 28.125 28.125 25.875 28.125 30.375 30.375 28.125 30.375 32.625 32.625 30.375 32.625 34.875 34.875 32.625 34.875 37.125 37.125 34.875 37.125 39.375 39.375 37.125 39.375 41.625 41.625 39.375 41.625 43.875 43.875 41.625 43.875 46.125 46.125 43.875 46.125 48.375 48.375 46.125 48.375 50.625 50.625 48.375 50.625 52.875 52.875 50.625 52.875 55.125 55.125 52.875 55.125 57.375 57.375 55.125 57.375 59.625 59.625 57.375 59.625 61.875 61.875 59.625 61.875 64.125 64.125 61.875 64.125 66.375 66.375 64.125 66.375 68.625 68.625 66.375 68.625 70.875 70.875 68.625 70.875 73.125 73.125 70.875 73.125 75.375 75.375 73.125 75.375 77.625 77.625 75.375 77.625 79.875 79.875 77.625 79.875 82.125 82.125 79.875 82.125 84.375 84.375 82.125 84.375 86.625 86.625 84.375 86.625 88.875 88.875 86.625 88.875 91.125 91.125 88.875 91.125 93.375 93.375 91.125 93.375 95.625 95.625 93.375 95.625 97.875 97.875 95.625 97.875 100.125 100.125 97.875 100.125 102.375 102.375 100.125 102.375 104.625 104.625 102.375 104.625 106.875 106.875 104.625 106.875 109.125 109.125 106.875 109.125 111.375 111.375 109.125 111.375 113.625 113.625 111.375 113.625 115.875 115.875 113.625 115.875 118.125 118.125 115.875 118.125 120.375 120.375 118.125 120.375 122.625 122.625 120.375 122.625 124.875 124.875 122.625 124.875 127.125 127.125 124.875 127.125 129.375 129.375 127.125 129.375 131.625 131.625 129.375 131.625 133.875 133.875 131.625 133.875 136.125 136.125 133.875 136.125 138.375 138.375 136.125 138.375 140.625 140.625 138.375 140.625 142.875 142.875 140.625 142.875 145.125 145.125 142.875 145.125 147.375 147.375 145.125 147.375 149.625 149.625 147.375 149.625 151.875 151.875 149.625 151.875 154.125 154.125 151.875 154.125 156.375 156.375 154.125 156.375 158.625 158.625 156.375 158.625 160.875 160.875 158.625 160.875 163.125 163.125 160.875 163.125 165.375 165.375 163.125 165.375 167.625 167.625 165.375 167.625 169.875 169.875 167.625 169.875 172.125 172.125 169.875 172.125 174.375 174.375 172.125 174.375 176.625 176.625 174.375 176.625 178.875 178.875 176.625 178.875 181.125 181.125 178.875 181.125 183.375 183.375 181.125 183.375 185.625 185.625 183.375 185.625 187.875 187.875 185.625 187.875 190.125 190.125 187.875 190.125 192.375 192.375 190.125 192.375 194.625 194.625 192.375 194.625 196.875 196.875 194.625 196.875 199.125 199.125 196.875 199.125 201.375 201.375 199.125 201.375 203.625 203.625 201.375 203.625 205.875 205.875 203.625 205.875 208.125 208.125 205.875 208.125 210.375 210.375 208.125 210.375 212.625 212.625 210.375 212.625 214.875 214.875 212.625 214.875 217.125 217.125 214.875 217.125 219.375 219.375 217.125 219.375 221.625 221.625 219.375 221.625 223.875 223.875 221.625 223.875 226.125 226.125 223.875 226.125 228.375 228.375 226.125 228.375 230.625 230.625 228.375 230.625 232.875 232.875 230.625 232.875 235.125 235.125 232.875 235.125 237.375 237.375 235.125 237.375 239.625 239.625 237.375 239.625 241.875 241.875 239.625 241.875 244.125 244.125 241.875 244.125 246.375 246.375 244.125 246.375 248.625 248.625 246.375 248.625 250.875 250.875 248.625 250.875 253.125 253.125 250.875 253.125 255.375 255.375 253.125 255.375 257.625 257.625 255.375 257.625 259.875 259.875 257.625 259.875 262.125 262.125 259.875 262.125 264.375 264.375 262.125 264.375 266.625 266.625 264.375 266.625 268.875 268.875 266.625 268.875 271.125 271.125 268.875 271.125 273.375 273.375 271.125 273.375 275.625 275.625 273.375 275.625 277.875 277.875 275.625 277.875 280.125 280.125 277.875 280.125 282.375 282.375 280.125 282.375 284.625 284.625 282.375 284.625 286.875 286.875 284.625 286.875 289.125 289.125 286.875 289.125 291.375 291.375 289.125 291.375 293.625 293.625 291.375 293.625 295.875 295.875 293.625 295.875 298.125 298.125 295.875 298.125 300.375 300.375 298.125 300.375 302.625 302.625 300.375 302.625 304.875 304.875 302.625 304.875 307.125 307.125 304.875 307.125 309.375 309.375 307.125 309.375 311.625 311.625 309.375 311.625 313.875 313.875 311.625 313.875 316.125 316.125 313.875 316.125 318.375 318.375 316.125 318.375 320.625 320.625 318.375 320.625 322.875 322.875 320.625 322.875 325.125 325.125 322.875 325.125 327.375 327.375 325.125 327.375 329.625 329.625 327.375 329.625 331.875 331.875 329.625 331.875 334.125 334.125 331.875 334.125 336.375 336.375 334.125 336.375 338.625 338.625 336.375 338.625 340.875 340.875 338.625 340.875 343.125 343.125 340.875 343.125 345.375 345.375 343.125 345.375 347.625 347.625 345.375 347.625 349.875 349.875 347.625 349.875 352.125 352.125 349.875 352.125 354.375 354.375 352.125 354.375 356.625 356.625 354.375 356.625 358.875 358.875 356.625 -1.2 1.2 1.2 -1.2 1.20000009537 3.60000009537 3.60000009537 1.20000009537 3.60000019073 6.00000019073 6.00000019073 3.60000019073 5.99999980927 8.39999980927 8.39999980927 5.99999980927 8.40000038147 10.8000003815 10.8000003815 8.40000038147 10.8 13.2 13.2 10.8 13.1999996185 15.5999996185 15.5999996185 13.1999996185 15.5999992371 17.9999992371 17.9999992371 15.5999992371 18.0000007629 20.4000007629 20.4000007629 18.0000007629 20.4000003815 22.8000003815 22.8000003815 20.4000003815 22.8 25.2 25.2 22.8 25.1999996185 27.5999996185 27.5999996185 25.1999996185 27.5999992371 29.9999992371 29.9999992371 27.5999992371 30.0000007629 32.4000007629 32.4000007629 30.0000007629 32.3999984741 34.7999984741 34.7999984741 32.3999984741 34.8 37.2 37.2 34.8 37.2000015259 39.6000015259 39.6000015259 37.2000015259 39.5999992371 41.9999992371 41.9999992371 39.5999992371 42.0000007629 44.4000007629 44.4000007629 42.0000007629 44.3999984741 46.7999984741 46.7999984741 44.3999984741 46.8 49.2 49.2 46.8 49.2000015259 51.6000015259 51.6000015259 49.2000015259 51.5999992371 53.9999992371 53.9999992371 51.5999992371 54.0000007629 56.4000007629 56.4000007629 54.0000007629 56.3999984741 58.7999984741 58.7999984741 56.3999984741 58.8 61.2 61.2 58.8 61.2000015259 63.6000015259 63.6000015259 61.2000015259 63.6000030518 66.0000030518 66.0000030518 63.6000030518 65.9999969482 68.3999969482 68.3999969482 65.9999969482 68.3999984741 70.7999984741 70.7999984741 68.3999984741 70.8 73.2 73.2 70.8 73.2000015259 75.6000015259 75.6000015259 73.2000015259 75.6000030518 78.0000030518 78.0000030518 75.6000030518 77.9999969482 80.3999969482 80.3999969482 77.9999969482 80.3999984741 82.7999984741 82.7999984741 80.3999984741 82.8 85.2 85.2 82.8 85.2000015259 87.6000015259 87.6000015259 85.2000015259 87.6000030518 90.0000030518 90.0000030518 87.6000030518 89.9999969482 92.3999969482 92.3999969482 89.9999969482 92.3999984741 94.7999984741 94.7999984741 92.3999984741 94.8 97.2 97.2 94.8 97.2000015259 99.6000015259 99.6000015259 97.2000015259 99.6000030518 102.000003052 102.000003052 99.6000030518 +101.999996948 104.399996948 104.399996948 101.999996948 104.399998474 106.799998474 106.799998474 104.399998474 106.8 109.2 109.2 106.8 109.200001526 111.600001526 111.600001526 109.200001526 111.600003052 114.000003052 114.000003052 111.600003052 113.999996948 116.399996948 116.399996948 113.999996948 116.399998474 118.799998474 118.799998474 116.399998474 118.8 121.2 121.2 118.8 121.200001526 123.600001526 123.600001526 121.200001526 123.600003052 126.000003052 126.000003052 123.600003052 125.999996948 128.399996948 128.399996948 125.999996948 128.400006104 130.800006104 130.800006104 128.400006104 130.8 133.2 133.2 130.8 133.199993896 135.599993896 135.599993896 133.199993896 135.600003052 138.000003052 138.000003052 135.600003052 137.999996948 140.399996948 140.399996948 137.999996948 140.400006104 142.800006104 142.800006104 140.400006104 142.8 145.2 145.2 142.8 145.199993896 147.599993896 147.599993896 145.199993896 147.600003052 150.000003052 150.000003052 147.600003052 149.999996948 152.399996948 152.399996948 149.999996948 152.400006104 154.800006104 154.800006104 152.400006104 154.8 157.2 157.2 154.8 157.199993896 159.599993896 159.599993896 157.199993896 159.600003052 162.000003052 162.000003052 159.600003052 161.999996948 164.399996948 164.399996948 161.999996948 164.400006104 166.800006104 166.800006104 164.400006104 166.8 169.2 169.2 166.8 169.199993896 171.599993896 171.599993896 169.199993896 171.600003052 174.000003052 174.000003052 171.600003052 173.999996948 176.399996948 176.399996948 173.999996948 176.400006104 178.800006104 178.800006104 176.400006104 178.8 181.2 181.2 178.8 181.199993896 183.599993896 183.599993896 181.199993896 183.600003052 186.000003052 186.000003052 183.600003052 185.999996948 188.399996948 188.399996948 185.999996948 188.400006104 190.800006104 190.800006104 188.400006104 190.8 193.2 193.2 190.8 193.199993896 195.599993896 195.599993896 193.199993896 195.600003052 198.000003052 198.000003052 195.600003052 197.999996948 200.399996948 200.399996948 197.999996948 200.400006104 202.800006104 202.800006104 200.400006104 202.8 205.2 205.2 202.8 205.199993896 207.599993896 207.599993896 205.199993896 207.600003052 210.000003052 210.000003052 207.600003052 209.999996948 212.399996948 212.399996948 209.999996948 212.400006104 214.800006104 214.800006104 212.400006104 214.8 217.2 217.2 214.8 217.199993896 219.599993896 219.599993896 217.199993896 219.600003052 222.000003052 222.000003052 219.600003052 221.999996948 224.399996948 224.399996948 221.999996948 224.400006104 226.800006104 226.800006104 224.400006104 226.8 229.2 229.2 226.8 229.199993896 231.599993896 231.599993896 229.199993896 231.600003052 234.000003052 234.000003052 231.600003052 233.999996948 236.399996948 236.399996948 233.999996948 236.400006104 238.800006104 238.800006104 236.400006104 238.8 241.2 241.2 238.8 241.199993896 243.599993896 243.599993896 241.199993896 243.600003052 246.000003052 246.000003052 243.600003052 245.999996948 248.399996948 248.399996948 245.999996948 248.400006104 250.800006104 250.800006104 248.400006104 250.8 253.2 253.2 250.8 253.199993896 255.599993896 255.599993896 253.199993896 255.599987793 257.999987793 257.999987793 255.599987793 258.000012207 260.400012207 260.400012207 258.000012207 260.400006104 262.800006104 262.800006104 260.400006104 262.8 265.2 265.2 262.8 265.199993896 267.599993896 267.599993896 265.199993896 267.599987793 269.999987793 269.999987793 267.599987793 270.000012207 272.400012207 272.400012207 270.000012207 272.400006104 274.800006104 274.800006104 272.400006104 274.8 277.2 277.2 274.8 277.199993896 279.599993896 279.599993896 277.199993896 279.599987793 281.999987793 281.999987793 279.599987793 282.000012207 284.400012207 284.400012207 282.000012207 284.400006104 286.800006104 286.800006104 284.400006104 286.8 289.2 289.2 286.8 289.199993896 291.599993896 291.599993896 289.199993896 291.599987793 293.999987793 293.999987793 291.599987793 294.000012207 296.400012207 296.400012207 294.000012207 296.400006104 298.800006104 298.800006104 296.400006104 298.8 301.2 301.2 298.8 301.199993896 303.599993896 303.599993896 301.199993896 303.599987793 305.999987793 305.999987793 303.599987793 306.000012207 308.400012207 308.400012207 306.000012207 308.400006104 310.800006104 310.800006104 308.400006104 310.8 313.2 313.2 310.8 313.199993896 315.599993896 315.599993896 313.199993896 315.599987793 317.999987793 317.999987793 315.599987793 318.000012207 320.400012207 320.400012207 318.000012207 320.400006104 322.800006104 322.800006104 320.400006104 322.8 325.2 325.2 322.8 325.199993896 327.599993896 327.599993896 325.199993896 327.599987793 329.999987793 329.999987793 327.599987793 330.000012207 332.400012207 332.400012207 330.000012207 332.400006104 334.800006104 334.800006104 332.400006104 334.8 337.2 337.2 334.8 337.199993896 339.599993896 339.599993896 337.199993896 339.599987793 341.999987793 341.999987793 339.599987793 342.000012207 344.400012207 344.400012207 342.000012207 344.400006104 346.800006104 346.800006104 344.400006104 346.8 349.2 349.2 346.8 349.199993896 351.599993896 351.599993896 349.199993896 351.599987793 353.999987793 353.999987793 351.599987793 354.000012207 356.400012207 356.400012207 354.000012207 356.400006104 358.800006104 358.800006104 356.400006104 -1.25 1.25 1.25 -1.25 1.25 3.75 3.75 1.25 3.75 6.25 6.25 3.75 6.25 8.75 8.75 6.25 8.75 11.25 11.25 8.75 11.25 13.75 13.75 11.25 13.75 16.25 16.25 13.75 16.25 18.75 18.75 16.25 18.75 21.25 21.25 18.75 21.25 23.75 23.75 21.25 23.75 26.25 26.25 23.75 26.25 28.75 28.75 26.25 28.75 31.25 31.25 28.75 31.25 33.75 33.75 31.25 33.75 36.25 36.25 33.75 36.25 38.75 38.75 36.25 38.75 41.25 41.25 38.75 41.25 43.75 43.75 41.25 43.75 46.25 46.25 43.75 46.25 48.75 48.75 46.25 48.75 51.25 51.25 48.75 51.25 53.75 53.75 51.25 53.75 56.25 56.25 53.75 56.25 58.75 58.75 56.25 58.75 61.25 61.25 58.75 61.25 63.75 63.75 61.25 63.75 66.25 66.25 63.75 66.25 68.75 68.75 66.25 68.75 71.25 71.25 68.75 71.25 73.75 73.75 71.25 73.75 76.25 76.25 73.75 76.25 78.75 78.75 76.25 78.75 81.25 81.25 78.75 81.25 83.75 83.75 81.25 83.75 86.25 86.25 83.75 86.25 88.75 88.75 86.25 88.75 91.25 91.25 88.75 91.25 93.75 93.75 91.25 93.75 96.25 96.25 93.75 96.25 98.75 98.75 96.25 98.75 101.25 101.25 98.75 101.25 103.75 103.75 101.25 103.75 106.25 106.25 103.75 106.25 108.75 108.75 106.25 108.75 111.25 111.25 108.75 111.25 113.75 113.75 111.25 113.75 116.25 116.25 113.75 116.25 118.75 118.75 116.25 118.75 121.25 121.25 118.75 121.25 123.75 123.75 121.25 123.75 126.25 126.25 123.75 126.25 128.75 128.75 126.25 128.75 131.25 131.25 128.75 131.25 133.75 133.75 131.25 133.75 136.25 136.25 133.75 136.25 138.75 138.75 136.25 138.75 141.25 141.25 138.75 141.25 143.75 143.75 141.25 143.75 146.25 146.25 143.75 146.25 148.75 148.75 146.25 148.75 151.25 151.25 148.75 151.25 153.75 153.75 151.25 153.75 156.25 156.25 153.75 156.25 158.75 158.75 156.25 158.75 161.25 161.25 158.75 161.25 163.75 163.75 161.25 163.75 166.25 166.25 163.75 166.25 168.75 168.75 166.25 168.75 171.25 171.25 168.75 171.25 173.75 173.75 171.25 173.75 176.25 176.25 173.75 176.25 178.75 178.75 176.25 178.75 181.25 181.25 178.75 181.25 183.75 183.75 181.25 183.75 186.25 186.25 183.75 186.25 188.75 188.75 186.25 188.75 191.25 191.25 188.75 191.25 193.75 193.75 191.25 193.75 196.25 196.25 193.75 196.25 198.75 198.75 196.25 198.75 201.25 201.25 198.75 201.25 203.75 203.75 201.25 203.75 206.25 206.25 203.75 206.25 208.75 208.75 206.25 208.75 211.25 211.25 208.75 211.25 213.75 213.75 211.25 213.75 216.25 216.25 213.75 216.25 218.75 218.75 216.25 218.75 221.25 221.25 218.75 221.25 223.75 223.75 221.25 223.75 226.25 226.25 223.75 226.25 228.75 228.75 226.25 228.75 231.25 231.25 228.75 231.25 233.75 233.75 231.25 233.75 236.25 236.25 233.75 236.25 238.75 238.75 236.25 238.75 241.25 241.25 238.75 241.25 243.75 243.75 241.25 243.75 246.25 246.25 243.75 246.25 248.75 248.75 246.25 248.75 251.25 251.25 248.75 251.25 253.75 253.75 251.25 253.75 256.25 256.25 253.75 256.25 258.75 258.75 256.25 258.75 261.25 261.25 258.75 261.25 263.75 263.75 261.25 263.75 266.25 266.25 263.75 266.25 268.75 268.75 266.25 268.75 271.25 271.25 268.75 271.25 273.75 273.75 271.25 273.75 276.25 276.25 273.75 276.25 278.75 278.75 276.25 278.75 281.25 281.25 278.75 281.25 283.75 283.75 281.25 283.75 286.25 286.25 283.75 286.25 288.75 288.75 286.25 288.75 291.25 291.25 288.75 291.25 293.75 293.75 291.25 293.75 296.25 296.25 293.75 296.25 298.75 298.75 296.25 298.75 301.25 301.25 298.75 301.25 303.75 303.75 301.25 303.75 306.25 306.25 303.75 306.25 308.75 308.75 306.25 308.75 311.25 311.25 308.75 311.25 313.75 313.75 311.25 313.75 316.25 316.25 313.75 316.25 318.75 318.75 316.25 318.75 321.25 321.25 318.75 321.25 323.75 323.75 321.25 323.75 326.25 326.25 323.75 326.25 328.75 328.75 326.25 328.75 331.25 331.25 328.75 331.25 333.75 333.75 331.25 333.75 336.25 336.25 333.75 336.25 338.75 338.75 336.25 338.75 341.25 341.25 338.75 341.25 343.75 343.75 341.25 343.75 346.25 346.25 343.75 346.25 348.75 348.75 346.25 348.75 351.25 351.25 348.75 351.25 353.75 353.75 351.25 353.75 356.25 356.25 353.75 356.25 358.75 358.75 356.25 -1.25 1.25 1.25 -1.25 1.25 3.75 3.75 1.25 3.75 6.25 6.25 3.75 6.25 8.75 8.75 6.25 8.75 11.25 11.25 8.75 11.25 13.75 13.75 11.25 13.75 16.25 16.25 13.75 16.25 18.75 18.75 16.25 18.75 21.25 21.25 18.75 21.25 23.75 23.75 21.25 23.75 26.25 26.25 23.75 26.25 28.75 28.75 26.25 28.75 31.25 31.25 28.75 31.25 33.75 33.75 31.25 33.75 36.25 36.25 33.75 36.25 38.75 38.75 36.25 38.75 41.25 41.25 38.75 41.25 43.75 43.75 41.25 43.75 46.25 46.25 43.75 46.25 48.75 48.75 46.25 48.75 51.25 51.25 48.75 51.25 53.75 53.75 51.25 53.75 56.25 56.25 53.75 56.25 58.75 58.75 56.25 58.75 61.25 61.25 58.75 61.25 63.75 63.75 61.25 63.75 66.25 66.25 63.75 66.25 68.75 68.75 66.25 68.75 71.25 71.25 68.75 71.25 73.75 73.75 71.25 73.75 76.25 76.25 73.75 76.25 78.75 78.75 76.25 78.75 81.25 81.25 78.75 81.25 83.75 83.75 81.25 83.75 86.25 86.25 83.75 86.25 88.75 88.75 86.25 88.75 91.25 91.25 88.75 91.25 93.75 93.75 91.25 93.75 96.25 96.25 93.75 96.25 98.75 98.75 96.25 98.75 101.25 101.25 98.75 101.25 103.75 103.75 101.25 103.75 106.25 106.25 103.75 106.25 108.75 108.75 106.25 108.75 111.25 111.25 108.75 111.25 113.75 113.75 111.25 113.75 116.25 116.25 113.75 116.25 118.75 118.75 116.25 118.75 121.25 121.25 118.75 121.25 123.75 123.75 121.25 123.75 126.25 126.25 123.75 126.25 128.75 128.75 126.25 128.75 131.25 131.25 128.75 131.25 133.75 133.75 131.25 133.75 136.25 136.25 133.75 136.25 138.75 138.75 136.25 138.75 141.25 141.25 138.75 141.25 143.75 143.75 141.25 143.75 146.25 146.25 143.75 146.25 148.75 148.75 146.25 148.75 151.25 151.25 148.75 151.25 153.75 153.75 151.25 153.75 156.25 156.25 153.75 156.25 158.75 158.75 156.25 158.75 161.25 161.25 158.75 161.25 163.75 163.75 161.25 163.75 166.25 166.25 163.75 166.25 168.75 168.75 166.25 168.75 171.25 171.25 168.75 171.25 173.75 173.75 171.25 173.75 176.25 176.25 173.75 176.25 178.75 178.75 176.25 178.75 181.25 181.25 178.75 181.25 183.75 183.75 181.25 183.75 186.25 186.25 183.75 186.25 188.75 188.75 186.25 188.75 191.25 191.25 188.75 191.25 193.75 193.75 191.25 193.75 196.25 196.25 193.75 196.25 198.75 198.75 196.25 198.75 201.25 201.25 198.75 201.25 203.75 203.75 201.25 203.75 206.25 206.25 203.75 206.25 208.75 208.75 206.25 208.75 211.25 211.25 208.75 211.25 213.75 213.75 211.25 213.75 216.25 216.25 213.75 216.25 218.75 218.75 216.25 218.75 221.25 221.25 218.75 221.25 223.75 223.75 221.25 223.75 226.25 226.25 223.75 226.25 228.75 228.75 226.25 228.75 231.25 231.25 228.75 231.25 233.75 233.75 231.25 233.75 236.25 236.25 233.75 236.25 238.75 238.75 236.25 238.75 241.25 241.25 238.75 241.25 243.75 243.75 241.25 243.75 246.25 246.25 243.75 246.25 248.75 248.75 246.25 248.75 251.25 251.25 248.75 251.25 253.75 253.75 251.25 253.75 256.25 256.25 253.75 256.25 258.75 258.75 256.25 258.75 261.25 261.25 258.75 261.25 263.75 263.75 261.25 263.75 266.25 266.25 263.75 266.25 268.75 268.75 266.25 268.75 271.25 271.25 268.75 271.25 273.75 273.75 271.25 273.75 276.25 276.25 273.75 276.25 278.75 278.75 276.25 278.75 281.25 281.25 278.75 281.25 283.75 283.75 281.25 283.75 286.25 286.25 283.75 286.25 288.75 288.75 286.25 288.75 291.25 291.25 288.75 291.25 293.75 293.75 291.25 293.75 296.25 296.25 293.75 296.25 298.75 298.75 296.25 298.75 301.25 301.25 298.75 301.25 303.75 303.75 301.25 303.75 306.25 306.25 303.75 306.25 308.75 308.75 306.25 308.75 311.25 311.25 308.75 311.25 313.75 313.75 311.25 313.75 316.25 316.25 313.75 316.25 318.75 318.75 316.25 318.75 321.25 321.25 318.75 321.25 323.75 323.75 321.25 323.75 326.25 326.25 323.75 326.25 328.75 328.75 326.25 328.75 331.25 331.25 328.75 331.25 333.75 333.75 331.25 333.75 336.25 336.25 333.75 336.25 338.75 338.75 336.25 338.75 341.25 341.25 338.75 341.25 343.75 343.75 341.25 343.75 346.25 346.25 343.75 346.25 348.75 348.75 346.25 348.75 351.25 351.25 348.75 351.25 353.75 353.75 351.25 353.75 356.25 356.25 353.75 356.25 358.75 358.75 356.25 -1.40625 1.40625 1.40625 -1.40625 1.40625 4.21875 4.21875 1.40625 4.21875 7.03125 7.03125 4.21875 7.03125 9.84375 9.84375 7.03125 9.84375 12.65625 12.65625 9.84375 12.65625 15.46875 15.46875 12.65625 15.46875 18.28125 18.28125 15.46875 18.28125 21.09375 21.09375 18.28125 21.09375 23.90625 23.90625 21.09375 23.90625 26.71875 26.71875 23.90625 26.71875 29.53125 29.53125 26.71875 29.53125 32.34375 32.34375 29.53125 32.34375 35.15625 35.15625 32.34375 35.15625 37.96875 37.96875 35.15625 37.96875 40.78125 40.78125 37.96875 40.78125 43.59375 43.59375 40.78125 43.59375 46.40625 46.40625 43.59375 46.40625 49.21875 49.21875 46.40625 49.21875 52.03125 52.03125 49.21875 52.03125 54.84375 54.84375 52.03125 54.84375 57.65625 57.65625 54.84375 57.65625 60.46875 60.46875 57.65625 60.46875 63.28125 63.28125 60.46875 63.28125 66.09375 66.09375 63.28125 66.09375 68.90625 68.90625 66.09375 68.90625 71.71875 71.71875 68.90625 71.71875 74.53125 74.53125 71.71875 74.53125 77.34375 77.34375 74.53125 77.34375 80.15625 80.15625 77.34375 80.15625 82.96875 82.96875 80.15625 82.96875 85.78125 85.78125 82.96875 85.78125 88.59375 88.59375 85.78125 88.59375 91.40625 91.40625 88.59375 91.40625 94.21875 94.21875 91.40625 94.21875 97.03125 97.03125 94.21875 97.03125 99.84375 99.84375 97.03125 99.84375 102.65625 102.65625 99.84375 102.65625 105.46875 105.46875 102.65625 105.46875 108.28125 108.28125 105.46875 108.28125 111.09375 111.09375 108.28125 111.09375 113.90625 113.90625 111.09375 113.90625 116.71875 116.71875 113.90625 116.71875 119.53125 119.53125 116.71875 119.53125 122.34375 122.34375 119.53125 122.34375 125.15625 125.15625 122.34375 125.15625 127.96875 127.96875 125.15625 127.96875 130.78125 130.78125 127.96875 130.78125 133.59375 133.59375 130.78125 133.59375 136.40625 136.40625 133.59375 136.40625 139.21875 139.21875 136.40625 139.21875 142.03125 142.03125 139.21875 142.03125 144.84375 144.84375 142.03125 144.84375 147.65625 147.65625 144.84375 147.65625 150.46875 150.46875 147.65625 150.46875 153.28125 153.28125 150.46875 153.28125 156.09375 156.09375 153.28125 156.09375 158.90625 158.90625 156.09375 158.90625 161.71875 161.71875 158.90625 161.71875 164.53125 164.53125 161.71875 164.53125 167.34375 167.34375 164.53125 167.34375 170.15625 170.15625 167.34375 170.15625 172.96875 172.96875 170.15625 172.96875 175.78125 175.78125 172.96875 175.78125 178.59375 178.59375 175.78125 178.59375 181.40625 181.40625 178.59375 181.40625 184.21875 184.21875 181.40625 184.21875 187.03125 187.03125 184.21875 187.03125 189.84375 189.84375 187.03125 189.84375 192.65625 192.65625 189.84375 192.65625 195.46875 195.46875 192.65625 195.46875 198.28125 198.28125 195.46875 198.28125 201.09375 201.09375 198.28125 201.09375 203.90625 203.90625 201.09375 203.90625 206.71875 206.71875 203.90625 206.71875 209.53125 209.53125 206.71875 209.53125 212.34375 212.34375 209.53125 212.34375 215.15625 215.15625 212.34375 215.15625 217.96875 217.96875 215.15625 217.96875 220.78125 220.78125 217.96875 220.78125 223.59375 223.59375 220.78125 223.59375 226.40625 226.40625 223.59375 226.40625 229.21875 229.21875 226.40625 229.21875 232.03125 232.03125 229.21875 232.03125 234.84375 234.84375 232.03125 234.84375 237.65625 237.65625 234.84375 237.65625 240.46875 240.46875 237.65625 240.46875 243.28125 243.28125 240.46875 243.28125 246.09375 246.09375 243.28125 246.09375 248.90625 248.90625 246.09375 248.90625 251.71875 251.71875 248.90625 251.71875 254.53125 254.53125 251.71875 254.53125 257.34375 257.34375 254.53125 257.34375 260.15625 260.15625 257.34375 260.15625 262.96875 262.96875 260.15625 262.96875 265.78125 265.78125 262.96875 265.78125 268.59375 268.59375 265.78125 268.59375 271.40625 271.40625 268.59375 271.40625 274.21875 274.21875 271.40625 274.21875 277.03125 277.03125 274.21875 277.03125 279.84375 279.84375 277.03125 279.84375 282.65625 282.65625 279.84375 282.65625 285.46875 285.46875 282.65625 285.46875 288.28125 288.28125 285.46875 288.28125 291.09375 291.09375 288.28125 291.09375 293.90625 293.90625 291.09375 +293.90625 296.71875 296.71875 293.90625 296.71875 299.53125 299.53125 296.71875 299.53125 302.34375 302.34375 299.53125 302.34375 305.15625 305.15625 302.34375 305.15625 307.96875 307.96875 305.15625 307.96875 310.78125 310.78125 307.96875 310.78125 313.59375 313.59375 310.78125 313.59375 316.40625 316.40625 313.59375 316.40625 319.21875 319.21875 316.40625 319.21875 322.03125 322.03125 319.21875 322.03125 324.84375 324.84375 322.03125 324.84375 327.65625 327.65625 324.84375 327.65625 330.46875 330.46875 327.65625 330.46875 333.28125 333.28125 330.46875 333.28125 336.09375 336.09375 333.28125 336.09375 338.90625 338.90625 336.09375 338.90625 341.71875 341.71875 338.90625 341.71875 344.53125 344.53125 341.71875 344.53125 347.34375 347.34375 344.53125 347.34375 350.15625 350.15625 347.34375 350.15625 352.96875 352.96875 350.15625 352.96875 355.78125 355.78125 352.96875 355.78125 358.59375 358.59375 355.78125 -1.44 1.44 1.44 -1.44 1.44000011444 4.32000011444 4.32000011444 1.44000011444 4.32000022888 7.20000022888 7.20000022888 4.32000022888 7.20000034332 10.0800003433 10.0800003433 7.20000034332 10.0800004578 12.9600004578 12.9600004578 10.0800004578 12.9599996185 15.8399996185 15.8399996185 12.9599996185 15.8400006866 18.7200006866 18.7200006866 15.8400006866 18.7199998474 21.5999998474 21.5999998474 18.7199998474 21.6000009155 24.4800009155 24.4800009155 21.6000009155 24.4800000763 27.3600000763 27.3600000763 24.4800000763 27.3599992371 30.2399992371 30.2399992371 27.3599992371 30.2400003052 33.1200003052 33.1200003052 30.2400003052 33.1200013733 36.0000013733 36.0000013733 33.1200013733 35.9999986267 38.8799986267 38.8799986267 35.9999986267 38.8799996948 41.7599996948 41.7599996948 38.8799996948 41.7600007629 44.6400007629 44.6400007629 41.7600007629 44.6400018311 47.5200018311 47.5200018311 44.6400018311 47.5199990845 50.3999990845 50.3999990845 47.5199990845 50.4000001526 53.2800001526 53.2800001526 50.4000001526 53.2800012207 56.1600012207 56.1600012207 53.2800012207 56.1599984741 59.0399984741 59.0399984741 56.1599984741 59.0399995422 61.9199995422 61.9199995422 59.0399995422 61.9200006104 64.8000006104 64.8000006104 61.9200006104 64.7999978638 67.6799978638 67.6799978638 64.7999978638 67.6800027466 70.5600027466 70.5600027466 67.6800027466 70.56 73.44 73.44 70.56 73.4399972534 76.3199972534 76.3199972534 73.4399972534 76.3200021362 79.2000021362 79.2000021362 76.3200021362 79.1999993896 82.0799993896 82.0799993896 79.1999993896 82.0799966431 84.9599966431 84.9599966431 82.0799966431 84.9600015259 87.8400015259 87.8400015259 84.9600015259 87.8399987793 90.7199987793 90.7199987793 87.8399987793 90.7200036621 93.6000036621 93.6000036621 90.7200036621 93.6000009155 96.4800009155 96.4800009155 93.6000009155 96.4799981689 99.3599981689 99.3599981689 96.4799981689 99.3600030518 102.240003052 102.240003052 99.3600030518 102.240000305 105.120000305 105.120000305 102.240000305 105.119997559 107.999997559 107.999997559 105.119997559 108.000002441 110.880002441 110.880002441 108.000002441 110.879999695 113.759999695 113.759999695 110.879999695 113.759996948 116.639996948 116.639996948 113.759996948 116.640001831 119.520001831 119.520001831 116.640001831 119.519999084 122.399999084 122.399999084 119.519999084 122.399996338 125.279996338 125.279996338 122.399996338 125.280001221 128.160001221 128.160001221 125.280001221 128.160006104 131.040006104 131.040006104 128.160006104 131.039995728 133.919995728 133.919995728 131.039995728 133.92000061 136.80000061 136.80000061 133.92000061 136.800005493 139.680005493 139.680005493 136.800005493 139.679995117 142.559995117 142.559995117 139.679995117 142.56 145.44 145.44 142.56 145.440004883 148.320004883 148.320004883 145.440004883 148.319994507 151.199994507 151.199994507 148.319994507 151.19999939 154.07999939 154.07999939 151.19999939 154.080004272 156.960004272 156.960004272 154.080004272 156.959993896 159.839993896 159.839993896 156.959993896 159.839998779 162.719998779 162.719998779 159.839998779 162.720003662 165.600003662 165.600003662 162.720003662 165.599993286 168.479993286 168.479993286 165.599993286 168.479998169 171.359998169 171.359998169 168.479998169 171.360003052 174.240003052 174.240003052 171.360003052 174.239992676 177.119992676 177.119992676 174.239992676 177.119997559 179.999997559 179.999997559 177.119997559 180.000002441 182.880002441 182.880002441 180.000002441 182.880007324 185.760007324 185.760007324 182.880007324 185.759996948 188.639996948 188.639996948 185.759996948 188.640001831 191.520001831 191.520001831 188.640001831 191.520006714 194.400006714 194.400006714 191.520006714 194.399996338 197.279996338 197.279996338 194.399996338 197.280001221 200.160001221 200.160001221 197.280001221 200.160006104 203.040006104 203.040006104 200.160006104 203.039995728 205.919995728 205.919995728 203.039995728 205.92000061 208.80000061 208.80000061 205.92000061 208.800005493 211.680005493 211.680005493 208.800005493 211.679995117 214.559995117 214.559995117 211.679995117 214.56 217.44 217.44 214.56 217.440004883 220.320004883 220.320004883 217.440004883 220.319994507 223.199994507 223.199994507 220.319994507 223.19999939 226.07999939 226.07999939 223.19999939 226.080004272 228.960004272 228.960004272 226.080004272 228.959993896 231.839993896 231.839993896 228.959993896 231.839998779 234.719998779 234.719998779 231.839998779 234.720003662 237.600003662 237.600003662 234.720003662 237.599993286 240.479993286 240.479993286 237.599993286 240.479998169 243.359998169 243.359998169 240.479998169 243.360003052 246.240003052 246.240003052 243.360003052 246.239992676 249.119992676 249.119992676 246.239992676 249.119997559 251.999997559 251.999997559 249.119997559 252.000002441 254.880002441 254.880002441 252.000002441 254.880007324 257.760007324 257.760007324 254.880007324 257.760012207 260.640012207 260.640012207 257.760012207 260.639986572 263.519986572 263.519986572 260.639986572 263.519991455 266.399991455 266.399991455 263.519991455 266.399996338 269.279996338 269.279996338 266.399996338 269.280001221 272.160001221 272.160001221 269.280001221 272.160006104 275.040006104 275.040006104 272.160006104 275.040010986 277.920010986 277.920010986 275.040010986 277.919985352 280.799985352 280.799985352 277.919985352 280.799990234 283.679990234 283.679990234 280.799990234 283.679995117 286.559995117 286.559995117 283.679995117 286.56 289.44 289.44 286.56 289.440004883 292.320004883 292.320004883 289.440004883 292.320009766 295.200009766 295.200009766 292.320009766 295.200014648 298.080014648 298.080014648 295.200014648 298.079989014 300.959989014 300.959989014 298.079989014 300.959993896 303.839993896 303.839993896 300.959993896 303.839998779 306.719998779 306.719998779 303.839998779 306.720003662 309.600003662 309.600003662 306.720003662 309.600008545 312.480008545 312.480008545 309.600008545 312.480013428 315.360013428 315.360013428 312.480013428 315.359987793 318.239987793 318.239987793 315.359987793 318.239992676 321.119992676 321.119992676 318.239992676 321.119997559 323.999997559 323.999997559 321.119997559 324.000002441 326.880002441 326.880002441 324.000002441 326.880007324 329.760007324 329.760007324 326.880007324 329.760012207 332.640012207 332.640012207 329.760012207 332.639986572 335.519986572 335.519986572 332.639986572 335.519991455 338.399991455 338.399991455 335.519991455 338.399996338 341.279996338 341.279996338 338.399996338 341.280001221 344.160001221 344.160001221 341.280001221 344.160006104 347.040006104 347.040006104 344.160006104 347.040010986 349.920010986 349.920010986 347.040010986 349.919985352 352.799985352 352.799985352 349.919985352 352.799990234 355.679990234 355.679990234 352.799990234 355.679995117 358.559995117 358.559995117 355.679995117 -1.5 1.5 1.5 -1.5 1.5 4.5 4.5 1.5 4.5 7.5 7.5 4.5 7.5 10.5 10.5 7.5 10.5 13.5 13.5 10.5 13.5 16.5 16.5 13.5 16.5 19.5 19.5 16.5 19.5 22.5 22.5 19.5 22.5 25.5 25.5 22.5 25.5 28.5 28.5 25.5 28.5 31.5 31.5 28.5 31.5 34.5 34.5 31.5 34.5 37.5 37.5 34.5 37.5 40.5 40.5 37.5 40.5 43.5 43.5 40.5 43.5 46.5 46.5 43.5 46.5 49.5 49.5 46.5 49.5 52.5 52.5 49.5 52.5 55.5 55.5 52.5 55.5 58.5 58.5 55.5 58.5 61.5 61.5 58.5 61.5 64.5 64.5 61.5 64.5 67.5 67.5 64.5 67.5 70.5 70.5 67.5 70.5 73.5 73.5 70.5 73.5 76.5 76.5 73.5 76.5 79.5 79.5 76.5 79.5 82.5 82.5 79.5 82.5 85.5 85.5 82.5 85.5 88.5 88.5 85.5 88.5 91.5 91.5 88.5 91.5 94.5 94.5 91.5 94.5 97.5 97.5 94.5 97.5 100.5 100.5 97.5 100.5 103.5 103.5 100.5 103.5 106.5 106.5 103.5 106.5 109.5 109.5 106.5 109.5 112.5 112.5 109.5 112.5 115.5 115.5 112.5 115.5 118.5 118.5 115.5 118.5 121.5 121.5 118.5 121.5 124.5 124.5 121.5 124.5 127.5 127.5 124.5 127.5 130.5 130.5 127.5 130.5 133.5 133.5 130.5 133.5 136.5 136.5 133.5 136.5 139.5 139.5 136.5 139.5 142.5 142.5 139.5 142.5 145.5 145.5 142.5 145.5 148.5 148.5 145.5 148.5 151.5 151.5 148.5 151.5 154.5 154.5 151.5 154.5 157.5 157.5 154.5 157.5 160.5 160.5 157.5 160.5 163.5 163.5 160.5 163.5 166.5 166.5 163.5 166.5 169.5 169.5 166.5 169.5 172.5 172.5 169.5 172.5 175.5 175.5 172.5 175.5 178.5 178.5 175.5 178.5 181.5 181.5 178.5 181.5 184.5 184.5 181.5 184.5 187.5 187.5 184.5 187.5 190.5 190.5 187.5 190.5 193.5 193.5 190.5 193.5 196.5 196.5 193.5 196.5 199.5 199.5 196.5 199.5 202.5 202.5 199.5 202.5 205.5 205.5 202.5 205.5 208.5 208.5 205.5 208.5 211.5 211.5 208.5 211.5 214.5 214.5 211.5 214.5 217.5 217.5 214.5 217.5 220.5 220.5 217.5 220.5 223.5 223.5 220.5 223.5 226.5 226.5 223.5 226.5 229.5 229.5 226.5 229.5 232.5 232.5 229.5 232.5 235.5 235.5 232.5 235.5 238.5 238.5 235.5 238.5 241.5 241.5 238.5 241.5 244.5 244.5 241.5 244.5 247.5 247.5 244.5 247.5 250.5 250.5 247.5 250.5 253.5 253.5 250.5 253.5 256.5 256.5 253.5 256.5 259.5 259.5 256.5 259.5 262.5 262.5 259.5 262.5 265.5 265.5 262.5 265.5 268.5 268.5 265.5 268.5 271.5 271.5 268.5 271.5 274.5 274.5 271.5 274.5 277.5 277.5 274.5 277.5 280.5 280.5 277.5 280.5 283.5 283.5 280.5 283.5 286.5 286.5 283.5 286.5 289.5 289.5 286.5 289.5 292.5 292.5 289.5 292.5 295.5 295.5 292.5 295.5 298.5 298.5 295.5 298.5 301.5 301.5 298.5 301.5 304.5 304.5 301.5 304.5 307.5 307.5 304.5 307.5 310.5 310.5 307.5 310.5 313.5 313.5 310.5 313.5 316.5 316.5 313.5 316.5 319.5 319.5 316.5 319.5 322.5 322.5 319.5 322.5 325.5 325.5 322.5 325.5 328.5 328.5 325.5 328.5 331.5 331.5 328.5 331.5 334.5 334.5 331.5 334.5 337.5 337.5 334.5 337.5 340.5 340.5 337.5 340.5 343.5 343.5 340.5 343.5 346.5 346.5 343.5 346.5 349.5 349.5 346.5 349.5 352.5 352.5 349.5 352.5 355.5 355.5 352.5 355.5 358.5 358.5 355.5 -1.5 1.5 1.5 -1.5 1.5 4.5 4.5 1.5 4.5 7.5 7.5 4.5 7.5 10.5 10.5 7.5 10.5 13.5 13.5 10.5 13.5 16.5 16.5 13.5 16.5 19.5 19.5 16.5 19.5 22.5 22.5 19.5 22.5 25.5 25.5 22.5 25.5 28.5 28.5 25.5 28.5 31.5 31.5 28.5 31.5 34.5 34.5 31.5 34.5 37.5 37.5 34.5 37.5 40.5 40.5 37.5 40.5 43.5 43.5 40.5 43.5 46.5 46.5 43.5 46.5 49.5 49.5 46.5 49.5 52.5 52.5 49.5 52.5 55.5 55.5 52.5 55.5 58.5 58.5 55.5 58.5 61.5 61.5 58.5 61.5 64.5 64.5 61.5 64.5 67.5 67.5 64.5 67.5 70.5 70.5 67.5 70.5 73.5 73.5 70.5 73.5 76.5 76.5 73.5 76.5 79.5 79.5 76.5 79.5 82.5 82.5 79.5 82.5 85.5 85.5 82.5 85.5 88.5 88.5 85.5 88.5 91.5 91.5 88.5 91.5 94.5 94.5 91.5 94.5 97.5 97.5 94.5 97.5 100.5 100.5 97.5 100.5 103.5 103.5 100.5 103.5 106.5 106.5 103.5 106.5 109.5 109.5 106.5 109.5 112.5 112.5 109.5 112.5 115.5 115.5 112.5 115.5 118.5 118.5 115.5 118.5 121.5 121.5 118.5 121.5 124.5 124.5 121.5 124.5 127.5 127.5 124.5 127.5 130.5 130.5 127.5 130.5 133.5 133.5 130.5 133.5 136.5 136.5 133.5 136.5 139.5 139.5 136.5 139.5 142.5 142.5 139.5 142.5 145.5 145.5 142.5 145.5 148.5 148.5 145.5 148.5 151.5 151.5 148.5 151.5 154.5 154.5 151.5 154.5 157.5 157.5 154.5 157.5 160.5 160.5 157.5 160.5 163.5 163.5 160.5 163.5 166.5 166.5 163.5 166.5 169.5 169.5 166.5 169.5 172.5 172.5 169.5 172.5 175.5 175.5 172.5 175.5 178.5 178.5 175.5 178.5 181.5 181.5 178.5 181.5 184.5 184.5 181.5 184.5 187.5 187.5 184.5 187.5 190.5 190.5 187.5 190.5 193.5 193.5 190.5 193.5 196.5 196.5 193.5 196.5 199.5 199.5 196.5 199.5 202.5 202.5 199.5 202.5 205.5 205.5 202.5 205.5 208.5 208.5 205.5 208.5 211.5 211.5 208.5 211.5 214.5 214.5 211.5 214.5 217.5 217.5 214.5 217.5 220.5 220.5 217.5 220.5 223.5 223.5 220.5 223.5 226.5 226.5 223.5 226.5 229.5 229.5 226.5 229.5 232.5 232.5 229.5 232.5 235.5 235.5 232.5 235.5 238.5 238.5 235.5 238.5 241.5 241.5 238.5 241.5 244.5 244.5 241.5 244.5 247.5 247.5 244.5 247.5 250.5 250.5 247.5 250.5 253.5 253.5 250.5 253.5 256.5 256.5 253.5 256.5 259.5 259.5 256.5 259.5 262.5 262.5 259.5 262.5 265.5 265.5 262.5 265.5 268.5 268.5 265.5 268.5 271.5 271.5 268.5 271.5 274.5 274.5 271.5 274.5 277.5 277.5 274.5 277.5 280.5 280.5 277.5 280.5 283.5 283.5 280.5 283.5 286.5 286.5 283.5 286.5 289.5 289.5 286.5 289.5 292.5 292.5 289.5 292.5 295.5 295.5 292.5 295.5 298.5 298.5 295.5 298.5 301.5 301.5 298.5 301.5 304.5 304.5 301.5 304.5 307.5 307.5 304.5 307.5 310.5 310.5 307.5 310.5 313.5 313.5 310.5 313.5 316.5 316.5 313.5 316.5 319.5 319.5 316.5 319.5 322.5 322.5 319.5 322.5 325.5 325.5 322.5 325.5 328.5 328.5 325.5 328.5 331.5 331.5 328.5 331.5 334.5 334.5 331.5 334.5 337.5 337.5 334.5 337.5 340.5 340.5 337.5 340.5 343.5 343.5 340.5 343.5 346.5 346.5 343.5 346.5 349.5 349.5 346.5 349.5 352.5 352.5 349.5 352.5 355.5 355.5 352.5 355.5 358.5 358.5 355.5 -1.66666666667 1.66666666667 1.66666666667 -1.66666666667 1.66666658719 4.99999992053 4.99999992053 1.66666658719 4.99999984105 8.33333317439 8.33333317439 4.99999984105 8.33333333333 11.6666666667 11.6666666667 8.33333333333 11.6666663488 14.9999996821 14.9999996821 11.6666663488 14.9999993642 18.3333326976 18.3333326976 14.9999993642 18.3333333333 21.6666666667 21.6666666667 18.3333333333 21.6666673024 25.0000006358 25.0000006358 21.6666673024 24.9999993642 28.3333326976 28.3333326976 24.9999993642 28.3333333333 31.6666666667 31.6666666667 28.3333333333 31.6666653951 34.9999987284 34.9999987284 31.6666653951 35.0000012716 38.3333346049 38.3333346049 35.0000012716 38.3333333333 41.6666666667 41.6666666667 38.3333333333 41.6666653951 44.9999987284 44.9999987284 41.6666653951 45.0000012716 48.3333346049 48.3333346049 45.0000012716 48.3333333333 51.6666666667 51.6666666667 48.3333333333 51.6666653951 54.9999987284 54.9999987284 51.6666653951 55.0000012716 58.3333346049 58.3333346049 55.0000012716 58.3333333333 61.6666666667 61.6666666667 58.3333333333 61.6666653951 64.9999987284 64.9999987284 61.6666653951 64.9999974569 68.3333307902 68.3333307902 64.9999974569 68.3333333333 71.6666666667 71.6666666667 68.3333333333 71.6666692098 75.0000025431 75.0000025431 71.6666692098 74.9999974569 78.3333307902 78.3333307902 74.9999974569 78.3333333333 81.6666666667 81.6666666667 78.3333333333 81.6666692098 85.0000025431 85.0000025431 81.6666692098 84.9999974569 88.3333307902 88.3333307902 84.9999974569 88.3333333333 91.6666666667 91.6666666667 88.3333333333 91.6666692098 95.0000025431 95.0000025431 91.6666692098 94.9999974569 98.3333307902 98.3333307902 94.9999974569 98.3333333333 101.666666667 101.666666667 98.3333333333 101.66666921 105.000002543 105.000002543 101.66666921 104.999997457 108.33333079 108.33333079 104.999997457 108.333333333 111.666666667 111.666666667 108.333333333 111.66666921 115.000002543 115.000002543 111.66666921 114.999997457 118.33333079 118.33333079 114.999997457 118.333333333 121.666666667 121.666666667 118.333333333 121.66666921 125.000002543 125.000002543 121.66666921 124.999997457 128.33333079 128.33333079 124.999997457 128.333333333 131.666666667 131.666666667 128.333333333 131.66666158 134.999994914 134.999994914 131.66666158 135.000005086 138.33333842 138.33333842 135.000005086 138.333333333 141.666666667 141.666666667 138.333333333 141.66666158 144.999994914 144.999994914 141.66666158 145.000005086 148.33333842 148.33333842 145.000005086 148.333333333 151.666666667 151.666666667 148.333333333 151.66666158 154.999994914 154.999994914 151.66666158 155.000005086 158.33333842 158.33333842 155.000005086 158.333333333 161.666666667 161.666666667 158.333333333 161.66666158 164.999994914 164.999994914 161.66666158 165.000005086 168.33333842 168.33333842 165.000005086 168.333333333 171.666666667 171.666666667 168.333333333 171.66666158 174.999994914 174.999994914 171.66666158 175.000005086 178.33333842 178.33333842 175.000005086 178.333333333 181.666666667 181.666666667 178.333333333 181.66666158 184.999994914 184.999994914 181.66666158 185.000005086 188.33333842 188.33333842 185.000005086 188.333333333 191.666666667 191.666666667 188.333333333 191.66666158 194.999994914 194.999994914 191.66666158 195.000005086 198.33333842 198.33333842 195.000005086 198.333333333 201.666666667 201.666666667 198.333333333 201.66666158 204.999994914 204.999994914 201.66666158 205.000005086 208.33333842 208.33333842 205.000005086 208.333333333 211.666666667 211.666666667 208.333333333 211.66666158 214.999994914 214.999994914 211.66666158 215.000005086 218.33333842 218.33333842 215.000005086 218.333333333 221.666666667 221.666666667 218.333333333 221.66666158 224.999994914 224.999994914 221.66666158 225.000005086 228.33333842 228.33333842 225.000005086 228.333333333 231.666666667 231.666666667 228.333333333 231.66666158 234.999994914 234.999994914 231.66666158 235.000005086 238.33333842 238.33333842 235.000005086 238.333333333 241.666666667 241.666666667 238.333333333 241.66666158 244.999994914 244.999994914 241.66666158 245.000005086 248.33333842 248.33333842 245.000005086 248.333333333 251.666666667 251.666666667 248.333333333 251.66666158 254.999994914 254.999994914 251.66666158 254.999989827 258.333323161 258.333323161 254.999989827 258.333333333 261.666666667 261.666666667 258.333333333 261.666676839 265.000010173 265.000010173 261.666676839 264.999989827 268.333323161 268.333323161 264.999989827 268.333333333 271.666666667 271.666666667 268.333333333 271.666676839 275.000010173 275.000010173 271.666676839 274.999989827 278.333323161 278.333323161 274.999989827 278.333333333 281.666666667 281.666666667 278.333333333 281.666676839 285.000010173 285.000010173 281.666676839 284.999989827 288.333323161 288.333323161 284.999989827 288.333333333 291.666666667 291.666666667 288.333333333 291.666676839 295.000010173 295.000010173 291.666676839 294.999989827 298.333323161 298.333323161 294.999989827 298.333333333 301.666666667 301.666666667 298.333333333 301.666676839 305.000010173 305.000010173 301.666676839 304.999989827 308.333323161 308.333323161 304.999989827 308.333333333 311.666666667 311.666666667 308.333333333 311.666676839 315.000010173 315.000010173 311.666676839 314.999989827 318.333323161 318.333323161 314.999989827 318.333333333 321.666666667 321.666666667 318.333333333 321.666676839 325.000010173 325.000010173 321.666676839 324.999989827 328.333323161 328.333323161 324.999989827 328.333333333 331.666666667 331.666666667 328.333333333 331.666676839 335.000010173 335.000010173 331.666676839 334.999989827 338.333323161 338.333323161 334.999989827 338.333333333 341.666666667 341.666666667 338.333333333 341.666676839 345.000010173 345.000010173 341.666676839 344.999989827 348.333323161 348.333323161 344.999989827 348.333333333 351.666666667 351.666666667 348.333333333 351.666676839 355.000010173 355.000010173 351.666676839 354.999989827 358.333323161 358.333323161 354.999989827 -1.8 1.8 1.8 -1.8 1.79999990463 5.39999990463 5.39999990463 1.79999990463 5.39999980927 8.99999980927 8.99999980927 5.39999980927 9.00000019073 12.6000001907 12.6000001907 9.00000019073 +12.5999996185 16.1999996185 16.1999996185 12.5999996185 16.2 19.8 19.8 16.2 19.8000003815 23.4000003815 23.4000003815 19.8000003815 23.4000007629 27.0000007629 27.0000007629 23.4000007629 26.9999992371 30.5999992371 30.5999992371 26.9999992371 30.6000015259 34.2000015259 34.2000015259 30.6000015259 34.2 37.8 37.8 34.2 37.7999984741 41.3999984741 41.3999984741 37.7999984741 41.4000007629 45.0000007629 45.0000007629 41.4000007629 44.9999992371 48.5999992371 48.5999992371 44.9999992371 48.6000015259 52.2000015259 52.2000015259 48.6000015259 52.2 55.8 55.8 52.2 55.7999984741 59.3999984741 59.3999984741 55.7999984741 59.4000007629 63.0000007629 63.0000007629 59.4000007629 63.0000030518 66.6000030518 66.6000030518 63.0000030518 66.6000015259 70.2000015259 70.2000015259 66.6000015259 70.2 73.8 73.8 70.2 73.7999984741 77.3999984741 77.3999984741 73.7999984741 77.3999969482 80.9999969482 80.9999969482 77.3999969482 81.0000030518 84.6000030518 84.6000030518 81.0000030518 84.6000015259 88.2000015259 88.2000015259 84.6000015259 88.2 91.8 91.8 88.2 91.7999984741 95.3999984741 95.3999984741 91.7999984741 95.3999969482 98.9999969482 98.9999969482 95.3999969482 99.0000030518 102.600003052 102.600003052 99.0000030518 102.600001526 106.200001526 106.200001526 102.600001526 106.2 109.8 109.8 106.2 109.799998474 113.399998474 113.399998474 109.799998474 113.399996948 116.999996948 116.999996948 113.399996948 117.000003052 120.600003052 120.600003052 117.000003052 120.600001526 124.200001526 124.200001526 120.600001526 124.2 127.8 127.8 124.2 127.800006104 131.400006104 131.400006104 127.800006104 131.399996948 134.999996948 134.999996948 131.399996948 135.000003052 138.600003052 138.600003052 135.000003052 138.599993896 142.199993896 142.199993896 138.599993896 142.2 145.8 145.8 142.2 145.800006104 149.400006104 149.400006104 145.800006104 149.399996948 152.999996948 152.999996948 149.399996948 153.000003052 156.600003052 156.600003052 153.000003052 156.599993896 160.199993896 160.199993896 156.599993896 160.2 163.8 163.8 160.2 163.800006104 167.400006104 167.400006104 163.800006104 167.399996948 170.999996948 170.999996948 167.399996948 171.000003052 174.600003052 174.600003052 171.000003052 174.599993896 178.199993896 178.199993896 174.599993896 178.2 181.8 181.8 178.2 181.800006104 185.400006104 185.400006104 181.800006104 185.399996948 188.999996948 188.999996948 185.399996948 189.000003052 192.600003052 192.600003052 189.000003052 192.599993896 196.199993896 196.199993896 192.599993896 196.2 199.8 199.8 196.2 199.800006104 203.400006104 203.400006104 199.800006104 203.399996948 206.999996948 206.999996948 203.399996948 207.000003052 210.600003052 210.600003052 207.000003052 210.599993896 214.199993896 214.199993896 210.599993896 214.2 217.8 217.8 214.2 217.800006104 221.400006104 221.400006104 217.800006104 221.399996948 224.999996948 224.999996948 221.399996948 225.000003052 228.600003052 228.600003052 225.000003052 228.599993896 232.199993896 232.199993896 228.599993896 232.2 235.8 235.8 232.2 235.800006104 239.400006104 239.400006104 235.800006104 239.399996948 242.999996948 242.999996948 239.399996948 243.000003052 246.600003052 246.600003052 243.000003052 246.599993896 250.199993896 250.199993896 246.599993896 250.2 253.8 253.8 250.2 253.800006104 257.400006104 257.400006104 253.800006104 257.400012207 261.000012207 261.000012207 257.400012207 260.999987793 264.599987793 264.599987793 260.999987793 264.599993896 268.199993896 268.199993896 264.599993896 268.2 271.8 271.8 268.2 271.800006104 275.400006104 275.400006104 271.800006104 275.400012207 279.000012207 279.000012207 275.400012207 278.999987793 282.599987793 282.599987793 278.999987793 282.599993896 286.199993896 286.199993896 282.599993896 286.2 289.8 289.8 286.2 289.800006104 293.400006104 293.400006104 289.800006104 293.400012207 297.000012207 297.000012207 293.400012207 296.999987793 300.599987793 300.599987793 296.999987793 300.599993896 304.199993896 304.199993896 300.599993896 304.2 307.8 307.8 304.2 307.800006104 311.400006104 311.400006104 307.800006104 311.400012207 315.000012207 315.000012207 311.400012207 314.999987793 318.599987793 318.599987793 314.999987793 318.599993896 322.199993896 322.199993896 318.599993896 322.2 325.8 325.8 322.2 325.800006104 329.400006104 329.400006104 325.800006104 329.400012207 333.000012207 333.000012207 329.400012207 332.999987793 336.599987793 336.599987793 332.999987793 336.599993896 340.199993896 340.199993896 336.599993896 340.2 343.8 343.8 340.2 343.800006104 347.400006104 347.400006104 343.800006104 347.400012207 351.000012207 351.000012207 347.400012207 350.999987793 354.599987793 354.599987793 350.999987793 354.599993896 358.199993896 358.199993896 354.599993896 -2.0 2.0 2.0 -2.0 2.0 6.0 6.0 2.0 6.0 10.0 10.0 6.0 10.0 14.0 14.0 10.0 14.0 18.0 18.0 14.0 18.0 22.0 22.0 18.0 22.0 26.0 26.0 22.0 26.0 30.0 30.0 26.0 30.0 34.0 34.0 30.0 34.0 38.0 38.0 34.0 38.0 42.0 42.0 38.0 42.0 46.0 46.0 42.0 46.0 50.0 50.0 46.0 50.0 54.0 54.0 50.0 54.0 58.0 58.0 54.0 58.0 62.0 62.0 58.0 62.0 66.0 66.0 62.0 66.0 70.0 70.0 66.0 70.0 74.0 74.0 70.0 74.0 78.0 78.0 74.0 78.0 82.0 82.0 78.0 82.0 86.0 86.0 82.0 86.0 90.0 90.0 86.0 90.0 94.0 94.0 90.0 94.0 98.0 98.0 94.0 98.0 102.0 102.0 98.0 102.0 106.0 106.0 102.0 106.0 110.0 110.0 106.0 110.0 114.0 114.0 110.0 114.0 118.0 118.0 114.0 118.0 122.0 122.0 118.0 122.0 126.0 126.0 122.0 126.0 130.0 130.0 126.0 130.0 134.0 134.0 130.0 134.0 138.0 138.0 134.0 138.0 142.0 142.0 138.0 142.0 146.0 146.0 142.0 146.0 150.0 150.0 146.0 150.0 154.0 154.0 150.0 154.0 158.0 158.0 154.0 158.0 162.0 162.0 158.0 162.0 166.0 166.0 162.0 166.0 170.0 170.0 166.0 170.0 174.0 174.0 170.0 174.0 178.0 178.0 174.0 178.0 182.0 182.0 178.0 182.0 186.0 186.0 182.0 186.0 190.0 190.0 186.0 190.0 194.0 194.0 190.0 194.0 198.0 198.0 194.0 198.0 202.0 202.0 198.0 202.0 206.0 206.0 202.0 206.0 210.0 210.0 206.0 210.0 214.0 214.0 210.0 214.0 218.0 218.0 214.0 218.0 222.0 222.0 218.0 222.0 226.0 226.0 222.0 226.0 230.0 230.0 226.0 230.0 234.0 234.0 230.0 234.0 238.0 238.0 234.0 238.0 242.0 242.0 238.0 242.0 246.0 246.0 242.0 246.0 250.0 250.0 246.0 250.0 254.0 254.0 250.0 254.0 258.0 258.0 254.0 258.0 262.0 262.0 258.0 262.0 266.0 266.0 262.0 266.0 270.0 270.0 266.0 270.0 274.0 274.0 270.0 274.0 278.0 278.0 274.0 278.0 282.0 282.0 278.0 282.0 286.0 286.0 282.0 286.0 290.0 290.0 286.0 290.0 294.0 294.0 290.0 294.0 298.0 298.0 294.0 298.0 302.0 302.0 298.0 302.0 306.0 306.0 302.0 306.0 310.0 310.0 306.0 310.0 314.0 314.0 310.0 314.0 318.0 318.0 314.0 318.0 322.0 322.0 318.0 322.0 326.0 326.0 322.0 326.0 330.0 330.0 326.0 330.0 334.0 334.0 330.0 334.0 338.0 338.0 334.0 338.0 342.0 342.0 338.0 342.0 346.0 346.0 342.0 346.0 350.0 350.0 346.0 350.0 354.0 354.0 350.0 354.0 358.0 358.0 354.0 -2.0 2.0 2.0 -2.0 2.0 6.0 6.0 2.0 6.0 10.0 10.0 6.0 10.0 14.0 14.0 10.0 14.0 18.0 18.0 14.0 18.0 22.0 22.0 18.0 22.0 26.0 26.0 22.0 26.0 30.0 30.0 26.0 30.0 34.0 34.0 30.0 34.0 38.0 38.0 34.0 38.0 42.0 42.0 38.0 42.0 46.0 46.0 42.0 46.0 50.0 50.0 46.0 50.0 54.0 54.0 50.0 54.0 58.0 58.0 54.0 58.0 62.0 62.0 58.0 62.0 66.0 66.0 62.0 66.0 70.0 70.0 66.0 70.0 74.0 74.0 70.0 74.0 78.0 78.0 74.0 78.0 82.0 82.0 78.0 82.0 86.0 86.0 82.0 86.0 90.0 90.0 86.0 90.0 94.0 94.0 90.0 94.0 98.0 98.0 94.0 98.0 102.0 102.0 98.0 102.0 106.0 106.0 102.0 106.0 110.0 110.0 106.0 110.0 114.0 114.0 110.0 114.0 118.0 118.0 114.0 118.0 122.0 122.0 118.0 122.0 126.0 126.0 122.0 126.0 130.0 130.0 126.0 130.0 134.0 134.0 130.0 134.0 138.0 138.0 134.0 138.0 142.0 142.0 138.0 142.0 146.0 146.0 142.0 146.0 150.0 150.0 146.0 150.0 154.0 154.0 150.0 154.0 158.0 158.0 154.0 158.0 162.0 162.0 158.0 162.0 166.0 166.0 162.0 166.0 170.0 170.0 166.0 170.0 174.0 174.0 170.0 174.0 178.0 178.0 174.0 178.0 182.0 182.0 178.0 182.0 186.0 186.0 182.0 186.0 190.0 190.0 186.0 190.0 194.0 194.0 190.0 194.0 198.0 198.0 194.0 198.0 202.0 202.0 198.0 202.0 206.0 206.0 202.0 206.0 210.0 210.0 206.0 210.0 214.0 214.0 210.0 214.0 218.0 218.0 214.0 218.0 222.0 222.0 218.0 222.0 226.0 226.0 222.0 226.0 230.0 230.0 226.0 230.0 234.0 234.0 230.0 234.0 238.0 238.0 234.0 238.0 242.0 242.0 238.0 242.0 246.0 246.0 242.0 246.0 250.0 250.0 246.0 250.0 254.0 254.0 250.0 254.0 258.0 258.0 254.0 258.0 262.0 262.0 258.0 262.0 266.0 266.0 262.0 266.0 270.0 270.0 266.0 270.0 274.0 274.0 270.0 274.0 278.0 278.0 274.0 278.0 282.0 282.0 278.0 282.0 286.0 286.0 282.0 286.0 290.0 290.0 286.0 290.0 294.0 294.0 290.0 294.0 298.0 298.0 294.0 298.0 302.0 302.0 298.0 302.0 306.0 306.0 302.0 306.0 310.0 310.0 306.0 310.0 314.0 314.0 310.0 314.0 318.0 318.0 314.0 318.0 322.0 322.0 318.0 322.0 326.0 326.0 322.0 326.0 330.0 330.0 326.0 330.0 334.0 334.0 330.0 334.0 338.0 338.0 334.0 338.0 342.0 342.0 338.0 342.0 346.0 346.0 342.0 346.0 350.0 350.0 346.0 350.0 354.0 354.0 350.0 354.0 358.0 358.0 354.0 -2.25 2.25 2.25 -2.25 2.25 6.75 6.75 2.25 6.75 11.25 11.25 6.75 11.25 15.75 15.75 11.25 15.75 20.25 20.25 15.75 20.25 24.75 24.75 20.25 24.75 29.25 29.25 24.75 29.25 33.75 33.75 29.25 33.75 38.25 38.25 33.75 38.25 42.75 42.75 38.25 42.75 47.25 47.25 42.75 47.25 51.75 51.75 47.25 51.75 56.25 56.25 51.75 56.25 60.75 60.75 56.25 60.75 65.25 65.25 60.75 65.25 69.75 69.75 65.25 69.75 74.25 74.25 69.75 74.25 78.75 78.75 74.25 78.75 83.25 83.25 78.75 83.25 87.75 87.75 83.25 87.75 92.25 92.25 87.75 92.25 96.75 96.75 92.25 96.75 101.25 101.25 96.75 101.25 105.75 105.75 101.25 105.75 110.25 110.25 105.75 110.25 114.75 114.75 110.25 114.75 119.25 119.25 114.75 119.25 123.75 123.75 119.25 123.75 128.25 128.25 123.75 128.25 132.75 132.75 128.25 132.75 137.25 137.25 132.75 137.25 141.75 141.75 137.25 141.75 146.25 146.25 141.75 146.25 150.75 150.75 146.25 150.75 155.25 155.25 150.75 155.25 159.75 159.75 155.25 159.75 164.25 164.25 159.75 164.25 168.75 168.75 164.25 168.75 173.25 173.25 168.75 173.25 177.75 177.75 173.25 177.75 182.25 182.25 177.75 182.25 186.75 186.75 182.25 186.75 191.25 191.25 186.75 191.25 195.75 195.75 191.25 195.75 200.25 200.25 195.75 200.25 204.75 204.75 200.25 204.75 209.25 209.25 204.75 209.25 213.75 213.75 209.25 213.75 218.25 218.25 213.75 218.25 222.75 222.75 218.25 222.75 227.25 227.25 222.75 227.25 231.75 231.75 227.25 231.75 236.25 236.25 231.75 236.25 240.75 240.75 236.25 240.75 245.25 245.25 240.75 245.25 249.75 249.75 245.25 249.75 254.25 254.25 249.75 254.25 258.75 258.75 254.25 258.75 263.25 263.25 258.75 263.25 267.75 267.75 263.25 267.75 272.25 272.25 267.75 272.25 276.75 276.75 272.25 276.75 281.25 281.25 276.75 281.25 285.75 285.75 281.25 285.75 290.25 290.25 285.75 290.25 294.75 294.75 290.25 294.75 299.25 299.25 294.75 299.25 303.75 303.75 299.25 303.75 308.25 308.25 303.75 308.25 312.75 312.75 308.25 312.75 317.25 317.25 312.75 317.25 321.75 321.75 317.25 321.75 326.25 326.25 321.75 326.25 330.75 330.75 326.25 330.75 335.25 335.25 330.75 335.25 339.75 339.75 335.25 339.75 344.25 344.25 339.75 344.25 348.75 348.75 344.25 348.75 353.25 353.25 348.75 353.25 357.75 357.75 353.25 -2.5 2.5 2.5 -2.5 2.5 7.5 7.5 2.5 7.5 12.5 12.5 7.5 12.5 17.5 17.5 12.5 17.5 22.5 22.5 17.5 22.5 27.5 27.5 22.5 27.5 32.5 32.5 27.5 32.5 37.5 37.5 32.5 37.5 42.5 42.5 37.5 42.5 47.5 47.5 42.5 47.5 52.5 52.5 47.5 52.5 57.5 57.5 52.5 57.5 62.5 62.5 57.5 62.5 67.5 67.5 62.5 67.5 72.5 72.5 67.5 72.5 77.5 77.5 72.5 77.5 82.5 82.5 77.5 82.5 87.5 87.5 82.5 87.5 92.5 92.5 87.5 92.5 97.5 97.5 92.5 97.5 102.5 102.5 97.5 102.5 107.5 107.5 102.5 107.5 112.5 112.5 107.5 112.5 117.5 117.5 112.5 117.5 122.5 122.5 117.5 122.5 127.5 127.5 122.5 127.5 132.5 132.5 127.5 132.5 137.5 137.5 132.5 137.5 142.5 142.5 137.5 142.5 147.5 147.5 142.5 147.5 152.5 152.5 147.5 152.5 157.5 157.5 152.5 157.5 162.5 162.5 157.5 162.5 167.5 167.5 162.5 167.5 172.5 172.5 167.5 172.5 177.5 177.5 172.5 177.5 182.5 182.5 177.5 182.5 187.5 187.5 182.5 187.5 192.5 192.5 187.5 192.5 197.5 197.5 192.5 197.5 202.5 202.5 197.5 202.5 207.5 207.5 202.5 207.5 212.5 212.5 207.5 212.5 217.5 217.5 212.5 217.5 222.5 222.5 217.5 222.5 227.5 227.5 222.5 227.5 232.5 232.5 227.5 232.5 237.5 237.5 232.5 237.5 242.5 242.5 237.5 242.5 247.5 247.5 242.5 247.5 252.5 252.5 247.5 252.5 257.5 257.5 252.5 257.5 262.5 262.5 257.5 262.5 267.5 267.5 262.5 267.5 272.5 272.5 267.5 272.5 277.5 277.5 272.5 277.5 282.5 282.5 277.5 282.5 287.5 287.5 282.5 287.5 292.5 292.5 287.5 292.5 297.5 297.5 292.5 297.5 302.5 302.5 297.5 302.5 307.5 307.5 302.5 307.5 312.5 312.5 307.5 312.5 317.5 317.5 312.5 317.5 322.5 322.5 317.5 322.5 327.5 327.5 322.5 327.5 332.5 332.5 327.5 332.5 337.5 337.5 332.5 337.5 342.5 342.5 337.5 342.5 347.5 347.5 342.5 347.5 352.5 352.5 347.5 352.5 357.5 357.5 352.5 -2.5 2.5 2.5 -2.5 2.5 7.5 7.5 2.5 7.5 12.5 12.5 7.5 12.5 17.5 17.5 12.5 17.5 22.5 22.5 17.5 22.5 27.5 27.5 22.5 27.5 32.5 32.5 27.5 32.5 37.5 37.5 32.5 37.5 42.5 42.5 37.5 42.5 47.5 47.5 42.5 47.5 52.5 52.5 47.5 52.5 57.5 57.5 52.5 57.5 62.5 62.5 57.5 62.5 67.5 67.5 62.5 67.5 72.5 72.5 67.5 72.5 77.5 77.5 72.5 77.5 82.5 82.5 77.5 82.5 87.5 87.5 82.5 87.5 92.5 92.5 87.5 92.5 97.5 97.5 92.5 97.5 102.5 102.5 97.5 102.5 107.5 107.5 102.5 107.5 112.5 112.5 107.5 112.5 117.5 117.5 112.5 117.5 122.5 122.5 117.5 122.5 127.5 127.5 122.5 127.5 132.5 132.5 127.5 132.5 137.5 137.5 132.5 137.5 142.5 142.5 137.5 142.5 147.5 147.5 142.5 147.5 152.5 152.5 147.5 152.5 157.5 157.5 152.5 157.5 162.5 162.5 157.5 162.5 167.5 167.5 162.5 167.5 172.5 172.5 167.5 172.5 177.5 177.5 172.5 177.5 182.5 182.5 177.5 182.5 187.5 187.5 182.5 187.5 192.5 192.5 187.5 192.5 197.5 197.5 192.5 197.5 202.5 202.5 197.5 202.5 207.5 207.5 202.5 207.5 212.5 212.5 207.5 212.5 217.5 217.5 212.5 217.5 222.5 222.5 217.5 222.5 227.5 227.5 222.5 227.5 232.5 232.5 227.5 232.5 237.5 237.5 232.5 237.5 242.5 242.5 237.5 242.5 247.5 247.5 242.5 247.5 252.5 252.5 247.5 252.5 257.5 257.5 252.5 257.5 262.5 262.5 257.5 262.5 267.5 267.5 262.5 267.5 272.5 272.5 267.5 272.5 277.5 277.5 272.5 277.5 282.5 282.5 277.5 282.5 287.5 287.5 282.5 287.5 292.5 292.5 287.5 292.5 297.5 297.5 292.5 297.5 302.5 302.5 297.5 302.5 307.5 307.5 302.5 307.5 312.5 312.5 307.5 312.5 317.5 317.5 312.5 317.5 322.5 322.5 317.5 322.5 327.5 327.5 322.5 327.5 332.5 332.5 327.5 332.5 337.5 337.5 332.5 337.5 342.5 342.5 337.5 342.5 347.5 347.5 342.5 347.5 352.5 352.5 347.5 352.5 357.5 357.5 352.5 +-2.8125 2.8125 2.8125 -2.8125 2.8125 8.4375 8.4375 2.8125 8.4375 14.0625 14.0625 8.4375 14.0625 19.6875 19.6875 14.0625 19.6875 25.3125 25.3125 19.6875 25.3125 30.9375 30.9375 25.3125 30.9375 36.5625 36.5625 30.9375 36.5625 42.1875 42.1875 36.5625 42.1875 47.8125 47.8125 42.1875 47.8125 53.4375 53.4375 47.8125 53.4375 59.0625 59.0625 53.4375 59.0625 64.6875 64.6875 59.0625 64.6875 70.3125 70.3125 64.6875 70.3125 75.9375 75.9375 70.3125 75.9375 81.5625 81.5625 75.9375 81.5625 87.1875 87.1875 81.5625 87.1875 92.8125 92.8125 87.1875 92.8125 98.4375 98.4375 92.8125 98.4375 104.0625 104.0625 98.4375 104.0625 109.6875 109.6875 104.0625 109.6875 115.3125 115.3125 109.6875 115.3125 120.9375 120.9375 115.3125 120.9375 126.5625 126.5625 120.9375 126.5625 132.1875 132.1875 126.5625 132.1875 137.8125 137.8125 132.1875 137.8125 143.4375 143.4375 137.8125 143.4375 149.0625 149.0625 143.4375 149.0625 154.6875 154.6875 149.0625 154.6875 160.3125 160.3125 154.6875 160.3125 165.9375 165.9375 160.3125 165.9375 171.5625 171.5625 165.9375 171.5625 177.1875 177.1875 171.5625 177.1875 182.8125 182.8125 177.1875 182.8125 188.4375 188.4375 182.8125 188.4375 194.0625 194.0625 188.4375 194.0625 199.6875 199.6875 194.0625 199.6875 205.3125 205.3125 199.6875 205.3125 210.9375 210.9375 205.3125 210.9375 216.5625 216.5625 210.9375 216.5625 222.1875 222.1875 216.5625 222.1875 227.8125 227.8125 222.1875 227.8125 233.4375 233.4375 227.8125 233.4375 239.0625 239.0625 233.4375 239.0625 244.6875 244.6875 239.0625 244.6875 250.3125 250.3125 244.6875 250.3125 255.9375 255.9375 250.3125 255.9375 261.5625 261.5625 255.9375 261.5625 267.1875 267.1875 261.5625 267.1875 272.8125 272.8125 267.1875 272.8125 278.4375 278.4375 272.8125 278.4375 284.0625 284.0625 278.4375 284.0625 289.6875 289.6875 284.0625 289.6875 295.3125 295.3125 289.6875 295.3125 300.9375 300.9375 295.3125 300.9375 306.5625 306.5625 300.9375 306.5625 312.1875 312.1875 306.5625 312.1875 317.8125 317.8125 312.1875 317.8125 323.4375 323.4375 317.8125 323.4375 329.0625 329.0625 323.4375 329.0625 334.6875 334.6875 329.0625 334.6875 340.3125 340.3125 334.6875 340.3125 345.9375 345.9375 340.3125 345.9375 351.5625 351.5625 345.9375 351.5625 357.1875 357.1875 351.5625 -3.0 3.0 3.0 -3.0 3.0 9.0 9.0 3.0 9.0 15.0 15.0 9.0 15.0 21.0 21.0 15.0 21.0 27.0 27.0 21.0 27.0 33.0 33.0 27.0 33.0 39.0 39.0 33.0 39.0 45.0 45.0 39.0 45.0 51.0 51.0 45.0 51.0 57.0 57.0 51.0 57.0 63.0 63.0 57.0 63.0 69.0 69.0 63.0 69.0 75.0 75.0 69.0 75.0 81.0 81.0 75.0 81.0 87.0 87.0 81.0 87.0 93.0 93.0 87.0 93.0 99.0 99.0 93.0 99.0 105.0 105.0 99.0 105.0 111.0 111.0 105.0 111.0 117.0 117.0 111.0 117.0 123.0 123.0 117.0 123.0 129.0 129.0 123.0 129.0 135.0 135.0 129.0 135.0 141.0 141.0 135.0 141.0 147.0 147.0 141.0 147.0 153.0 153.0 147.0 153.0 159.0 159.0 153.0 159.0 165.0 165.0 159.0 165.0 171.0 171.0 165.0 171.0 177.0 177.0 171.0 177.0 183.0 183.0 177.0 183.0 189.0 189.0 183.0 189.0 195.0 195.0 189.0 195.0 201.0 201.0 195.0 201.0 207.0 207.0 201.0 207.0 213.0 213.0 207.0 213.0 219.0 219.0 213.0 219.0 225.0 225.0 219.0 225.0 231.0 231.0 225.0 231.0 237.0 237.0 231.0 237.0 243.0 243.0 237.0 243.0 249.0 249.0 243.0 249.0 255.0 255.0 249.0 255.0 261.0 261.0 255.0 261.0 267.0 267.0 261.0 267.0 273.0 273.0 267.0 273.0 279.0 279.0 273.0 279.0 285.0 285.0 279.0 285.0 291.0 291.0 285.0 291.0 297.0 297.0 291.0 297.0 303.0 303.0 297.0 303.0 309.0 309.0 303.0 309.0 315.0 315.0 309.0 315.0 321.0 321.0 315.0 321.0 327.0 327.0 321.0 327.0 333.0 333.0 327.0 333.0 339.0 339.0 333.0 339.0 345.0 345.0 339.0 345.0 351.0 351.0 345.0 351.0 357.0 357.0 351.0 -3.6 3.6 3.6 -3.6 3.59999980927 10.7999998093 10.7999998093 3.59999980927 10.7999996185 17.9999996185 17.9999996185 10.7999996185 18.0000003815 25.2000003815 25.2000003815 18.0000003815 25.1999992371 32.3999992371 32.3999992371 25.1999992371 32.4 39.6 39.6 32.4 39.6000007629 46.8000007629 46.8000007629 39.6000007629 46.8000015259 54.0000015259 54.0000015259 46.8000015259 53.9999984741 61.1999984741 61.1999984741 53.9999984741 61.2000030518 68.4000030518 68.4000030518 61.2000030518 68.4 75.6 75.6 68.4 75.5999969482 82.7999969482 82.7999969482 75.5999969482 82.8000015259 90.0000015259 90.0000015259 82.8000015259 89.9999984741 97.1999984741 97.1999984741 89.9999984741 97.2000030518 104.400003052 104.400003052 97.2000030518 104.4 111.6 111.6 104.4 111.599996948 118.799996948 118.799996948 111.599996948 118.800001526 126.000001526 126.000001526 118.800001526 126.000006104 133.200006104 133.200006104 126.000006104 133.200003052 140.400003052 140.400003052 133.200003052 140.4 147.6 147.6 140.4 147.599996948 154.799996948 154.799996948 147.599996948 154.799993896 161.999993896 161.999993896 154.799993896 162.000006104 169.200006104 169.200006104 162.000006104 169.200003052 176.400003052 176.400003052 169.200003052 176.4 183.6 183.6 176.4 183.599996948 190.799996948 190.799996948 183.599996948 190.799993896 197.999993896 197.999993896 190.799993896 198.000006104 205.200006104 205.200006104 198.000006104 205.200003052 212.400003052 212.400003052 205.200003052 212.4 219.6 219.6 212.4 219.599996948 226.799996948 226.799996948 219.599996948 226.799993896 233.999993896 233.999993896 226.799993896 234.000006104 241.200006104 241.200006104 234.000006104 241.200003052 248.400003052 248.400003052 241.200003052 248.4 255.6 255.6 248.4 255.600012207 262.800012207 262.800012207 255.600012207 262.799993896 269.999993896 269.999993896 262.799993896 270.000006104 277.200006104 277.200006104 270.000006104 277.199987793 284.399987793 284.399987793 277.199987793 284.4 291.6 291.6 284.4 291.600012207 298.800012207 298.800012207 291.600012207 298.799993896 305.999993896 305.999993896 298.799993896 306.000006104 313.200006104 313.200006104 306.000006104 313.199987793 320.399987793 320.399987793 313.199987793 320.4 327.6 327.6 320.4 327.600012207 334.800012207 334.800012207 327.600012207 334.799993896 341.999993896 341.999993896 334.799993896 342.000006104 349.200006104 349.200006104 342.000006104 349.199987793 356.399987793 356.399987793 349.199987793 -4.0 4.0 4.0 -4.0 4.0 12.0 12.0 4.0 12.0 20.0 20.0 12.0 20.0 28.0 28.0 20.0 28.0 36.0 36.0 28.0 36.0 44.0 44.0 36.0 44.0 52.0 52.0 44.0 52.0 60.0 60.0 52.0 60.0 68.0 68.0 60.0 68.0 76.0 76.0 68.0 76.0 84.0 84.0 76.0 84.0 92.0 92.0 84.0 92.0 100.0 100.0 92.0 100.0 108.0 108.0 100.0 108.0 116.0 116.0 108.0 116.0 124.0 124.0 116.0 124.0 132.0 132.0 124.0 132.0 140.0 140.0 132.0 140.0 148.0 148.0 140.0 148.0 156.0 156.0 148.0 156.0 164.0 164.0 156.0 164.0 172.0 172.0 164.0 172.0 180.0 180.0 172.0 180.0 188.0 188.0 180.0 188.0 196.0 196.0 188.0 196.0 204.0 204.0 196.0 204.0 212.0 212.0 204.0 212.0 220.0 220.0 212.0 220.0 228.0 228.0 220.0 228.0 236.0 236.0 228.0 236.0 244.0 244.0 236.0 244.0 252.0 252.0 244.0 252.0 260.0 260.0 252.0 260.0 268.0 268.0 260.0 268.0 276.0 276.0 268.0 276.0 284.0 284.0 276.0 284.0 292.0 292.0 284.0 292.0 300.0 300.0 292.0 300.0 308.0 308.0 300.0 308.0 316.0 316.0 308.0 316.0 324.0 324.0 316.0 324.0 332.0 332.0 324.0 332.0 340.0 340.0 332.0 340.0 348.0 348.0 340.0 348.0 356.0 356.0 348.0 -4.5 4.5 4.5 -4.5 4.5 13.5 13.5 4.5 13.5 22.5 22.5 13.5 22.5 31.5 31.5 22.5 31.5 40.5 40.5 31.5 40.5 49.5 49.5 40.5 49.5 58.5 58.5 49.5 58.5 67.5 67.5 58.5 67.5 76.5 76.5 67.5 76.5 85.5 85.5 76.5 85.5 94.5 94.5 85.5 94.5 103.5 103.5 94.5 103.5 112.5 112.5 103.5 112.5 121.5 121.5 112.5 121.5 130.5 130.5 121.5 130.5 139.5 139.5 130.5 139.5 148.5 148.5 139.5 148.5 157.5 157.5 148.5 157.5 166.5 166.5 157.5 166.5 175.5 175.5 166.5 175.5 184.5 184.5 175.5 184.5 193.5 193.5 184.5 193.5 202.5 202.5 193.5 202.5 211.5 211.5 202.5 211.5 220.5 220.5 211.5 220.5 229.5 229.5 220.5 229.5 238.5 238.5 229.5 238.5 247.5 247.5 238.5 247.5 256.5 256.5 247.5 256.5 265.5 265.5 256.5 265.5 274.5 274.5 265.5 274.5 283.5 283.5 274.5 283.5 292.5 292.5 283.5 292.5 301.5 301.5 292.5 301.5 310.5 310.5 301.5 310.5 319.5 319.5 310.5 319.5 328.5 328.5 319.5 328.5 337.5 337.5 328.5 337.5 346.5 346.5 337.5 346.5 355.5 355.5 346.5 -5.0 5.0 5.0 -5.0 5.0 15.0 15.0 5.0 15.0 25.0 25.0 15.0 25.0 35.0 35.0 25.0 35.0 45.0 45.0 35.0 45.0 55.0 55.0 45.0 55.0 65.0 65.0 55.0 65.0 75.0 75.0 65.0 75.0 85.0 85.0 75.0 85.0 95.0 95.0 85.0 95.0 105.0 105.0 95.0 105.0 115.0 115.0 105.0 115.0 125.0 125.0 115.0 125.0 135.0 135.0 125.0 135.0 145.0 145.0 135.0 145.0 155.0 155.0 145.0 155.0 165.0 165.0 155.0 165.0 175.0 175.0 165.0 175.0 185.0 185.0 175.0 185.0 195.0 195.0 185.0 195.0 205.0 205.0 195.0 205.0 215.0 215.0 205.0 215.0 225.0 225.0 215.0 225.0 235.0 235.0 225.0 235.0 245.0 245.0 235.0 245.0 255.0 255.0 245.0 255.0 265.0 265.0 255.0 265.0 275.0 275.0 265.0 275.0 285.0 285.0 275.0 285.0 295.0 295.0 285.0 295.0 305.0 305.0 295.0 305.0 315.0 315.0 305.0 315.0 325.0 325.0 315.0 325.0 335.0 335.0 325.0 335.0 345.0 345.0 335.0 345.0 355.0 355.0 345.0 -7.2 7.2 7.2 -7.2 7.19999961853 21.5999996185 21.5999996185 7.19999961853 21.5999992371 35.9999992371 35.9999992371 21.5999992371 36.0000007629 50.4000007629 50.4000007629 36.0000007629 50.3999984741 64.7999984741 64.7999984741 50.3999984741 64.8 79.2 79.2 64.8 79.2000015259 93.6000015259 93.6000015259 79.2000015259 93.6000030518 108.000003052 108.000003052 93.6000030518 107.999996948 122.399996948 122.399996948 107.999996948 122.400006104 136.800006104 136.800006104 122.400006104 136.8 151.2 151.2 136.8 151.199993896 165.599993896 165.599993896 151.199993896 165.600003052 180.000003052 180.000003052 165.600003052 179.999996948 194.399996948 194.399996948 179.999996948 194.400006104 208.800006104 208.800006104 194.400006104 208.8 223.2 223.2 208.8 223.199993896 237.599993896 237.599993896 223.199993896 237.600003052 252.000003052 252.000003052 237.600003052 252.000012207 266.400012207 266.400012207 252.000012207 266.400006104 280.800006104 280.800006104 266.400006104 280.8 295.2 295.2 280.8 295.199993896 309.599993896 309.599993896 295.199993896 309.599987793 323.999987793 323.999987793 309.599987793 324.000012207 338.400012207 338.400012207 324.000012207 338.400006104 352.800006104 352.800006104 338.400006104 -10.0 10.0 10.0 -10.0 10.0 30.0 30.0 10.0 30.0 50.0 50.0 30.0 50.0 70.0 70.0 50.0 70.0 90.0 90.0 70.0 90.0 110.0 110.0 90.0 110.0 130.0 130.0 110.0 130.0 150.0 150.0 130.0 150.0 170.0 170.0 150.0 170.0 190.0 190.0 170.0 190.0 210.0 210.0 190.0 210.0 230.0 230.0 210.0 230.0 250.0 250.0 230.0 250.0 270.0 270.0 250.0 270.0 290.0 290.0 270.0 290.0 310.0 310.0 290.0 310.0 330.0 330.0 310.0 330.0 350.0 350.0 330.0 +ybounds = 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 90.0 90.0 89.1148872375 89.1148872375 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 89.1148872375 89.1148872375 88.4169616699 88.4169616699 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 88.4169616699 88.4169616699 87.7165184021 87.7165184021 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.7165184021 87.7165184021 87.0154342651 87.0154342651 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 87.0154342651 87.0154342651 86.3140869141 86.3140869141 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 86.3140869141 86.3140869141 85.6126098633 85.6126098633 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 85.6126098633 85.6126098633 84.9110565186 84.9110565186 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.9110565186 84.9110565186 84.2094497681 84.2094497681 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 84.2094497681 84.2094497681 83.5078125 83.5078125 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 83.5078125 83.5078125 82.8061561584 82.8061561584 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 +82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.8061561584 82.8061561584 82.1044769287 82.1044769287 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 82.1044769287 82.1044769287 81.4027862549 81.4027862549 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 81.4027862549 81.4027862549 80.7010879517 80.7010879517 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 80.7010879517 80.7010879517 79.999382019 79.999382019 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.999382019 79.999382019 79.297668457 79.297668457 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 +79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 79.297668457 79.297668457 78.5959510803 78.5959510803 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 78.5959510803 78.5959510803 77.8942298889 77.8942298889 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.8942298889 77.8942298889 77.1925010681 77.1925010681 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 77.1925010681 77.1925010681 76.4907722473 76.4907722473 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 +76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 76.4907722473 76.4907722473 75.7890434265 75.7890434265 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.7890434265 75.7890434265 75.087310791 75.087310791 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 75.087310791 75.087310791 74.3855743408 74.3855743408 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 +74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 74.3855743408 74.3855743408 73.6838378906 73.6838378906 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 73.6838378906 73.6838378906 72.9821014404 72.9821014404 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.9821014404 72.9821014404 72.2803611755 72.2803611755 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 +72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 72.2803611755 72.2803611755 71.5786209106 71.5786209106 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 71.5786209106 71.5786209106 70.8768806458 70.8768806458 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.8768806458 70.8768806458 70.1751365662 70.1751365662 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 +70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 70.1751365662 70.1751365662 69.4733924866 69.4733924866 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 69.4733924866 69.4733924866 68.771648407 68.771648407 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 +68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.771648407 68.771648407 68.0699043274 68.0699043274 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 68.0699043274 68.0699043274 67.3681602478 67.3681602478 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 67.3681602478 67.3681602478 66.6664161682 66.6664161682 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 +66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 66.6664161682 66.6664161682 65.9646682739 65.9646682739 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.9646682739 65.9646682739 65.2629203796 65.2629203796 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 +65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 65.2629203796 65.2629203796 64.5611763 64.5611763 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 64.5611763 64.5611763 63.8594284058 63.8594284058 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 +63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.8594284058 63.8594284058 63.1576786041 63.1576786041 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 63.1576786041 63.1576786041 62.4559307098 62.4559307098 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 +62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 62.4559307098 62.4559307098 61.7541828156 61.7541828156 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.7541828156 61.7541828156 61.0524349213 61.0524349213 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 +61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 61.0524349213 61.0524349213 60.350687027 60.350687027 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 +60.350687027 60.350687027 59.6489372253 59.6489372253 60.350687027 60.350687027 59.6489372253 59.6489372253 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 59.6489372253 59.6489372253 58.9471874237 58.9471874237 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 +58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.9471874237 58.9471874237 58.2454376221 58.2454376221 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 58.2454376221 58.2454376221 57.5436878204 57.5436878204 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 +57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 57.5436878204 57.5436878204 56.8419380188 56.8419380188 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.8419380188 56.8419380188 56.1401882172 56.1401882172 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 +56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 56.1401882172 56.1401882172 55.4384384155 55.4384384155 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 +55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 55.4384384155 55.4384384155 54.7366886139 54.7366886139 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.7366886139 54.7366886139 54.0349388123 54.0349388123 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 +54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 54.0349388123 54.0349388123 53.3331871033 53.3331871033 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 +53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 53.3331871033 53.3331871033 52.6314353943 52.6314353943 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 +52.6314353943 52.6314353943 51.9296855927 51.9296855927 52.6314353943 52.6314353943 51.9296855927 51.9296855927 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.9296855927 51.9296855927 51.227935791 51.227935791 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 +51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 51.227935791 51.227935791 50.526184082 50.526184082 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 +50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 50.526184082 50.526184082 49.824432373 49.824432373 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.824432373 49.824432373 49.1226806641 49.1226806641 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 +49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 49.1226806641 49.1226806641 48.4209289551 48.4209289551 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 +48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 48.4209289551 48.4209289551 47.7191772461 47.7191772461 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 +47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.7191772461 47.7191772461 47.0174255371 47.0174255371 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 47.0174255371 47.0174255371 46.3156738281 46.3156738281 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 +46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 46.3156738281 46.3156738281 45.6139221191 45.6139221191 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 +45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 45.6139221191 45.6139221191 44.9121704102 44.9121704102 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 +44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.9121704102 44.9121704102 44.2104187012 44.2104187012 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 44.2104187012 44.2104187012 43.5086669922 43.5086669922 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 +43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 43.5086669922 43.5086669922 42.8069152832 42.8069152832 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 +42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.8069152832 42.8069152832 42.1051635742 42.1051635742 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 +42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 42.1051635742 42.1051635742 41.4034118652 41.4034118652 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 +41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 41.4034118652 41.4034118652 40.7016601562 40.7016601562 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 +40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 40.7016601562 40.7016601562 39.9999084473 39.9999084473 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.9999084473 39.9999084473 39.2981567383 39.2981567383 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 +39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 39.2981567383 39.2981567383 38.5964050293 38.5964050293 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 +38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 38.5964050293 38.5964050293 37.8946533203 37.8946533203 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 +37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.8946533203 37.8946533203 37.192899704 37.192899704 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 +37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 37.192899704 37.192899704 36.4911460876 36.4911460876 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 +36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 36.4911460876 36.4911460876 35.7893943787 35.7893943787 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 +35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.7893943787 35.7893943787 35.0876426697 35.0876426697 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 35.0876426697 35.0876426697 34.3858909607 34.3858909607 34.3858909607 34.3858909607 33.6841392517 33.6841392517 +34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 34.3858909607 34.3858909607 33.6841392517 33.6841392517 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 +33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 33.6841392517 33.6841392517 32.9823856354 32.9823856354 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 +32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.9823856354 32.9823856354 32.280632019 32.280632019 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 +32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 32.280632019 32.280632019 31.5788803101 31.5788803101 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 +31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 31.5788803101 31.5788803101 30.8771276474 30.8771276474 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 +30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.8771276474 30.8771276474 30.1753749847 30.1753749847 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 +30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 30.1753749847 30.1753749847 29.4736223221 29.4736223221 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 +29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 29.4736223221 29.4736223221 28.7718696594 28.7718696594 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 +28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.7718696594 28.7718696594 28.0701169968 28.0701169968 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 +28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 28.0701169968 28.0701169968 27.3683643341 27.3683643341 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 +27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 27.3683643341 27.3683643341 26.6666116714 26.6666116714 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 +26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 26.6666116714 26.6666116714 25.9648590088 25.9648590088 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 +25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.9648590088 25.9648590088 25.2631063461 25.2631063461 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 +25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 25.2631063461 25.2631063461 24.5613536835 24.5613536835 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 +24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 24.5613536835 24.5613536835 23.8596010208 23.8596010208 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 +23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.8596010208 23.8596010208 23.1578483582 23.1578483582 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 +23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 23.1578483582 23.1578483582 22.4560956955 22.4560956955 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 +22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 22.4560956955 22.4560956955 21.7543420792 21.7543420792 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 +21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.7543420792 21.7543420792 21.0525894165 21.0525894165 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 +21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 21.0525894165 21.0525894165 20.3508367538 20.3508367538 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 +20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 20.3508367538 20.3508367538 19.6490840912 19.6490840912 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 +19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 19.6490840912 19.6490840912 18.9473314285 18.9473314285 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 +18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.9473314285 18.9473314285 18.2455778122 18.2455778122 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 +18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 18.2455778122 18.2455778122 17.5438251495 17.5438251495 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 +17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 17.5438251495 17.5438251495 16.8420724869 16.8420724869 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 +16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.8420724869 16.8420724869 16.1403193474 16.1403193474 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 +16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 16.1403193474 16.1403193474 15.4385666847 15.4385666847 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 +15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 15.4385666847 15.4385666847 14.7368135452 14.7368135452 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 +14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.7368135452 14.7368135452 14.0350604057 14.0350604057 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 +14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 14.0350604057 14.0350604057 13.3333077431 13.3333077431 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 +13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 13.3333077431 13.3333077431 12.6315546036 12.6315546036 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 +12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 12.6315546036 12.6315546036 11.9298014641 11.9298014641 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 +11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.9298014641 11.9298014641 11.2280488014 11.2280488014 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 +11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 11.2280488014 11.2280488014 10.5262956619 10.5262956619 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 +10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 10.5262956619 10.5262956619 9.82454252243 9.82454252243 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 +9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.82454252243 9.82454252243 9.12278938293 9.12278938293 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 +9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 9.12278938293 9.12278938293 8.42103624344 8.42103624344 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 +8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 8.42103624344 8.42103624344 7.71928334236 7.71928334236 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 +7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.71928334236 7.71928334236 7.01753044128 7.01753044128 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 +7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 7.01753044128 7.01753044128 6.31577754021 6.31577754021 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 +6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 6.31577754021 6.31577754021 5.61402440071 5.61402440071 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 +5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 5.61402440071 5.61402440071 4.91227126122 4.91227126122 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 +4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.91227126122 4.91227126122 4.21051824093 4.21051824093 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 +4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 4.21051824093 4.21051824093 3.50876522064 3.50876522064 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 +3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 3.50876522064 3.50876522064 2.80701220036 2.80701220036 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 +2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.80701220036 2.80701220036 2.10525918007 2.10525918007 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 +2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 2.10525918007 2.10525918007 1.40350610018 1.40350610018 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 +1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 1.40350610018 1.40350610018 0.701753079891 0.701753079891 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 +0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.701753050089 0.701753050089 0.0 0.0 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 +0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 0.0 0.0 -0.701753050089 -0.701753050089 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 +-0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -0.701753079891 -0.701753079891 -1.40350610018 -1.40350610018 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 +-1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -1.40350610018 -1.40350610018 -2.10525918007 -2.10525918007 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 +-2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.10525918007 -2.10525918007 -2.80701220036 -2.80701220036 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 +-2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -2.80701220036 -2.80701220036 -3.50876522064 -3.50876522064 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 +-3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -3.50876522064 -3.50876522064 -4.21051824093 -4.21051824093 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 +-4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 +-4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.21051824093 -4.21051824093 -4.91227126122 -4.91227126122 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 +-4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -4.91227126122 -4.91227126122 -5.61402440071 -5.61402440071 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 +-5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -5.61402440071 -5.61402440071 -6.31577754021 -6.31577754021 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 +-6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -6.31577754021 -6.31577754021 -7.01753044128 -7.01753044128 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 +-7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.01753044128 -7.01753044128 -7.71928334236 -7.71928334236 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 +-7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -7.71928334236 -7.71928334236 -8.42103624344 -8.42103624344 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 +-8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -8.42103624344 -8.42103624344 -9.12278938293 -9.12278938293 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 +-9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.12278938293 -9.12278938293 -9.82454252243 -9.82454252243 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 +-9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -9.82454252243 -9.82454252243 -10.5262956619 -10.5262956619 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 +-10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -10.5262956619 -10.5262956619 -11.2280488014 -11.2280488014 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 +-11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.2280488014 -11.2280488014 -11.9298014641 -11.9298014641 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 +-11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -11.9298014641 -11.9298014641 -12.6315546036 -12.6315546036 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 +-12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -12.6315546036 -12.6315546036 -13.3333077431 -13.3333077431 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 +-13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -13.3333077431 -13.3333077431 -14.0350604057 -14.0350604057 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 +-14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.0350604057 -14.0350604057 -14.7368135452 -14.7368135452 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 +-14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -14.7368135452 -14.7368135452 -15.4385666847 -15.4385666847 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 +-15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -15.4385666847 -15.4385666847 -16.1403193474 -16.1403193474 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 +-16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.1403193474 -16.1403193474 -16.8420724869 -16.8420724869 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 +-16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -16.8420724869 -16.8420724869 -17.5438251495 -17.5438251495 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 +-17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -17.5438251495 -17.5438251495 -18.2455778122 -18.2455778122 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 +-18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.2455778122 -18.2455778122 -18.9473314285 -18.9473314285 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 +-18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -18.9473314285 -18.9473314285 -19.6490840912 -19.6490840912 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 +-19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -19.6490840912 -19.6490840912 -20.3508367538 -20.3508367538 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 +-20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -20.3508367538 -20.3508367538 -21.0525894165 -21.0525894165 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 +-21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.0525894165 -21.0525894165 -21.7543420792 -21.7543420792 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 +-21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -21.7543420792 -21.7543420792 -22.4560956955 -22.4560956955 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 +-22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -22.4560956955 -22.4560956955 -23.1578483582 -23.1578483582 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 +-23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.1578483582 -23.1578483582 -23.8596010208 -23.8596010208 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 +-23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -23.8596010208 -23.8596010208 -24.5613536835 -24.5613536835 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 +-24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -24.5613536835 -24.5613536835 -25.2631063461 -25.2631063461 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 +-25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.2631063461 -25.2631063461 -25.9648590088 -25.9648590088 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 +-25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -25.9648590088 -25.9648590088 -26.6666116714 -26.6666116714 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 +-26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -26.6666116714 -26.6666116714 -27.3683643341 -27.3683643341 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 +-27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -27.3683643341 -27.3683643341 -28.0701169968 -28.0701169968 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 +-28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.0701169968 -28.0701169968 -28.7718696594 -28.7718696594 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 +-28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -28.7718696594 -28.7718696594 -29.4736223221 -29.4736223221 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 +-29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -29.4736223221 -29.4736223221 -30.1753749847 -30.1753749847 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 +-30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.1753749847 -30.1753749847 -30.8771276474 -30.8771276474 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 +-30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -30.8771276474 -30.8771276474 -31.5788803101 -31.5788803101 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -31.5788803101 -31.5788803101 -32.280632019 -32.280632019 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 +-32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.280632019 -32.280632019 -32.9823856354 -32.9823856354 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 +-32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -32.9823856354 -32.9823856354 -33.6841392517 -33.6841392517 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 +-33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -33.6841392517 -33.6841392517 -34.3858909607 -34.3858909607 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 +-34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -34.3858909607 -34.3858909607 -35.0876426697 -35.0876426697 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 +-35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.0876426697 -35.0876426697 -35.7893943787 -35.7893943787 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 +-35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -35.7893943787 -35.7893943787 -36.4911460876 -36.4911460876 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 +-36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -36.4911460876 -36.4911460876 -37.192899704 -37.192899704 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 +-37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.192899704 -37.192899704 -37.8946533203 -37.8946533203 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -37.8946533203 -37.8946533203 -38.5964050293 -38.5964050293 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 +-38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -38.5964050293 -38.5964050293 -39.2981567383 -39.2981567383 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 +-39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.2981567383 -39.2981567383 -39.9999084473 -39.9999084473 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 +-39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -39.9999084473 -39.9999084473 -40.7016601562 -40.7016601562 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 +-40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -40.7016601562 -40.7016601562 -41.4034118652 -41.4034118652 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 +-41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -41.4034118652 -41.4034118652 -42.1051635742 -42.1051635742 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.1051635742 -42.1051635742 -42.8069152832 -42.8069152832 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 +-42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -42.8069152832 -42.8069152832 -43.5086669922 -43.5086669922 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 +-43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -43.5086669922 -43.5086669922 -44.2104187012 -44.2104187012 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 +-44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.2104187012 -44.2104187012 -44.9121704102 -44.9121704102 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 +-44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -44.9121704102 -44.9121704102 -45.6139221191 -45.6139221191 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -45.6139221191 -45.6139221191 -46.3156738281 -46.3156738281 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 +-46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -46.3156738281 -46.3156738281 -47.0174255371 -47.0174255371 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 +-47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.0174255371 -47.0174255371 -47.7191772461 -47.7191772461 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 +-47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -47.7191772461 -47.7191772461 -48.4209289551 -48.4209289551 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -48.4209289551 -48.4209289551 -49.1226806641 -49.1226806641 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 +-49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.1226806641 -49.1226806641 -49.824432373 -49.824432373 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 +-49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -49.824432373 -49.824432373 -50.526184082 -50.526184082 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -50.526184082 -50.526184082 -51.227935791 -51.227935791 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 +-51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.227935791 -51.227935791 -51.9296855927 -51.9296855927 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 +-51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -51.9296855927 -51.9296855927 -52.6314353943 -52.6314353943 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 +-52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -52.6314353943 -52.6314353943 -53.3331871033 -53.3331871033 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -53.3331871033 -53.3331871033 -54.0349388123 -54.0349388123 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 +-54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.0349388123 -54.0349388123 -54.7366886139 -54.7366886139 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 +-54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -54.7366886139 -54.7366886139 -55.4384384155 -55.4384384155 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -55.4384384155 -55.4384384155 -56.1401882172 -56.1401882172 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 +-56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.1401882172 -56.1401882172 -56.8419380188 -56.8419380188 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -56.8419380188 -56.8419380188 -57.5436878204 -57.5436878204 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 +-57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -57.5436878204 -57.5436878204 -58.2454376221 -58.2454376221 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 +-58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.2454376221 -58.2454376221 -58.9471874237 -58.9471874237 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -58.9471874237 -58.9471874237 -59.6489372253 -59.6489372253 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 +-59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -59.6489372253 -59.6489372253 -60.350687027 -60.350687027 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -60.350687027 -60.350687027 -61.0524349213 -61.0524349213 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 +-61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.0524349213 -61.0524349213 -61.7541828156 -61.7541828156 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -61.7541828156 -61.7541828156 -62.4559307098 -62.4559307098 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 +-62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -62.4559307098 -62.4559307098 -63.1576786041 -63.1576786041 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.1576786041 -63.1576786041 -63.8594284058 -63.8594284058 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 +-63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -63.8594284058 -63.8594284058 -64.5611763 -64.5611763 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -64.5611763 -64.5611763 -65.2629203796 -65.2629203796 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 +-65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.2629203796 -65.2629203796 -65.9646682739 -65.9646682739 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -65.9646682739 -65.9646682739 -66.6664161682 -66.6664161682 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 +-66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -66.6664161682 -66.6664161682 -67.3681602478 -67.3681602478 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -67.3681602478 -67.3681602478 -68.0699043274 -68.0699043274 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 +-68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.0699043274 -68.0699043274 -68.771648407 -68.771648407 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -68.771648407 -68.771648407 -69.4733924866 -69.4733924866 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -69.4733924866 -69.4733924866 -70.1751365662 -70.1751365662 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 +-70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.1751365662 -70.1751365662 -70.8768806458 -70.8768806458 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -70.8768806458 -70.8768806458 -71.5786209106 -71.5786209106 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -71.5786209106 -71.5786209106 -72.2803611755 -72.2803611755 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 +-72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.2803611755 -72.2803611755 -72.9821014404 -72.9821014404 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -72.9821014404 -72.9821014404 -73.6838378906 -73.6838378906 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -73.6838378906 -73.6838378906 -74.3855743408 -74.3855743408 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 +-74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -74.3855743408 -74.3855743408 -75.087310791 -75.087310791 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.087310791 -75.087310791 -75.7890434265 -75.7890434265 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -75.7890434265 -75.7890434265 -76.4907722473 -76.4907722473 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 +-76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -76.4907722473 -76.4907722473 -77.1925010681 -77.1925010681 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.1925010681 -77.1925010681 -77.8942298889 -77.8942298889 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -77.8942298889 -77.8942298889 -78.5959510803 -78.5959510803 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -78.5959510803 -78.5959510803 -79.297668457 -79.297668457 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.297668457 -79.297668457 -79.999382019 -79.999382019 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 +-79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -79.999382019 -79.999382019 -80.7010879517 -80.7010879517 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -80.7010879517 -80.7010879517 -81.4027862549 -81.4027862549 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -81.4027862549 -81.4027862549 -82.1044769287 -82.1044769287 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.1044769287 -82.1044769287 -82.8061561584 -82.8061561584 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -82.8061561584 -82.8061561584 -83.5078125 -83.5078125 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 -83.5078125 -83.5078125 -84.2094497681 -84.2094497681 +-84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.2094497681 -84.2094497681 -84.9110565186 -84.9110565186 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -84.9110565186 -84.9110565186 -85.6126098633 -85.6126098633 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -85.6126098633 -85.6126098633 -86.3140869141 -86.3140869141 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -86.3140869141 -86.3140869141 -87.0154342651 -87.0154342651 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.0154342651 -87.0154342651 -87.7165184021 -87.7165184021 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -87.7165184021 -87.7165184021 -88.4169616699 -88.4169616699 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -88.4169616699 -88.4169616699 -89.1148872375 -89.1148872375 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 -89.1148872375 -89.1148872375 -90.0 -90.0 diff --git a/ece2cmor/ece2cmor3/resources/lpjg-grid-content/lon-lat-lpjg-auxiliary-T159-grid.nc b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/lon-lat-lpjg-auxiliary-T159-grid.nc new file mode 100644 index 0000000000000000000000000000000000000000..dfe98233615d8a0dfe0612a15091ea1f9c3ec532 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/lon-lat-lpjg-auxiliary-T159-grid.nc differ diff --git a/ece2cmor/ece2cmor3/resources/lpjg-grid-content/lon-lat-lpjg-auxiliary-T255-grid.nc b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/lon-lat-lpjg-auxiliary-T255-grid.nc new file mode 100644 index 0000000000000000000000000000000000000000..9e9c3b63414027e6a1330c6ffb0f74bee507a4b2 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/lpjg-grid-content/lon-lat-lpjg-auxiliary-T255-grid.nc differ diff --git a/ece2cmor/ece2cmor3/resources/lpjgpar.json b/ece2cmor/ece2cmor3/resources/lpjgpar.json new file mode 100644 index 0000000000000000000000000000000000000000..5c6add4bb8bccec63d5d10c2fcca00a833f635ba --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/lpjgpar.json @@ -0,0 +1,618 @@ +[ + { + "source": "baresoilFrac", + "convert": "frac2percent", + "target": "baresoilFrac" + }, + { + "source": "burntFractionAll", + "target": "burntFractionAll" + }, + { + "source": "cCwd", + "target": "cCwd" + }, + { + "source": "cLand", + "target": "cLand" + }, + { + "source": "cLand1", + "target": "cLand1" + }, + { + "source": "cLandYr", + "target": "cLandYr" + }, + { + "source": "cFluxYr", + "target": "cFluxYr" + }, + { + "source": "cLeaf", + "target": "cLeaf" + }, + { + "source": "cLitter", + "target": "cLitter" + }, + { + "source": "cLitterAbove", + "target": "cLitterAbove" + }, + { + "source": "cLitterBelow", + "target": "cLitterBelow" + }, + { + "source": "cLitterCwd", + "target": "cLitterCwd" + }, + { + "source": "cLitterLut", + "target": "cLitterLut" + }, + { + "source": "cLitterSubSurf", + "target": "cLitterSubSurf" + }, + { + "source": "cLitterSurf", + "target": "cLitterSurf" + }, + { + "source": "cOther", + "target": "cOther" + }, + { + "source": "cProduct", + "target": "cProduct" + }, + { + "source": "cProductLut", + "target": "cProductLut" + }, + { + "source": "cRoot", + "target": "cRoot" + }, + { + "source": "cropFrac", + "convert": "frac2percent", + "target": "cropFrac" + }, + { + "source": "cropFracC3", + "convert": "frac2percent", + "target": "cropFracC3" + }, + { + "source": "cropFracC4", + "convert": "frac2percent", + "target": "cropFracC4" + }, + { + "source": "cSoil", + "target": "cSoil" + }, + { + "source": "cSoilFast", + "target": "cSoilFast" + }, + { + "source": "cSoilLut", + "target": "cSoilLut" + }, + { + "source": "cSoilMedium", + "target": "cSoilMedium" + }, + { + "source": "cSoilSlow", + "target": "cSoilSlow" + }, + { + "source": "cStem", + "target": "cStem" + }, + { + "source": "cTotFireLut", + "target": "cTotFireLut" + }, + { + "source": "cVeg", + "target": "cVeg" + }, + { + "source": "cVegLut", + "target": "cVegLut" + }, + { + "source": "cWood", + "target": "cWood" + }, + { + "source": "evspsblpot", + "target": "evspsblpot" + }, + { + "source": "evspsblsoi", + "target": "evspsblsoi" + }, + { + "source": "evspsblveg", + "target": "evspsblveg" + }, + { + "source": "fAnthDisturb", + "target": "fAnthDisturb" + }, + { + "source": "fBNF", + "target": "fBNF" + }, + { + "source": "fCLandToOcean", + "target": "fCLandToOcean" + }, + { + "source": "fco2antt", + "target": "fco2antt" + }, + { + "source": "fco2nat", + "target": "fco2nat" + }, + { + "source": "fDeforestToAtmos", + "target": "fDeforestToAtmos" + }, + { + "source": "fDeforestToProduct", + "target": "fDeforestToProduct" + }, + { + "source": "fFire", + "target": "fFire" + }, + { + "source": "fFireAll", + "target": "fFireAll" + }, + { + "source": "fFireNat", + "target": "fFireNat" + }, + { + "source": "fGrazing", + "target": "fGrazing" + }, + { + "source": "fHarvest", + "target": "fHarvest" + }, + { + "source": "fHarvestToAtmos", + "target": "fHarvestToAtmos" + }, + { + "source": "fLitterFire", + "target": "fLitterFire" + }, + { + "source": "fLitterSoil", + "target": "fLitterSoil" + }, + { + "source": "fLuc", + "target": "fLuc" + }, + { + "source": "fLulccAtmLut", + "target": "fLulccAtmLut" + }, + { + "source": "fLulccProductLut", + "target": "fLulccProductLut" + }, + { + "source": "fLulccResidueLut", + "target": "fLulccResidueLut" + }, + { + "source": "fNAnthDisturb", + "target": "fNAnthDisturb" + }, + { + "source": "fNdep", + "target": "fNdep" + }, + { + "source": "fNfert", + "target": "fNfert" + }, + { + "source": "fNgas", + "target": "fNgas" + }, + { + "source": "fNgasFire", + "target": "fNgasFire" + }, + { + "source": "fNgasNonFire", + "target": "fNgasNonFire" + }, + { + "source": "fNLandToOcean", + "target": "fNLandToOcean" + }, + { + "source": "fNleach", + "target": "fNleach" + }, + { + "source": "fNLitterSoil", + "target": "fNLitterSoil" + }, + { + "source": "fNloss", + "target": "fNloss" + }, + { + "source": "fNnetmin", + "target": "fNnetmin" + }, + { + "source": "fNProduct", + "target": "fNProduct" + }, + { + "source": "fNup", + "target": "fNup" + }, + { + "source": "fNVegLitter", + "target": "fNVegLitter" + }, + { + "source": "fProductDecomp", + "target": "fProductDecomp" + }, + { + "source": "fProductDecompLut", + "target": "fProductDecompLut" + }, + { + "source": "fracInLut", + "target": "fracInLut" + }, + { + "source": "fracLut", + "target": "fracLut" + }, + { + "source": "fracOutLut", + "target": "fracOutLut" + }, + { + "source": "fVegFire", + "target": "fVegFire" + }, + { + "source": "fVegLitter", + "target": "fVegLitter" + }, + { + "source": "gpp", + "target": "gpp" + }, + { + "source": "gppGrass", + "target": "gppGrass" + }, + { + "source": "gppLut", + "target": "gppLut" + }, + { + "source": "gppTree", + "target": "gppTree" + }, + { + "source": "grassFrac", + "convert": "frac2percent", + "target": "grassFrac" + }, + { + "source": "grassFracC3", + "convert": "frac2percent", + "target": "grassFracC3" + }, + { + "source": "grassFracC4", + "convert": "frac2percent", + "target": "grassFracC4" + }, + { + "source": "irrLut", + "target": "irrLut" + }, + { + "source": "lai", + "target": "lai" + }, + { + "source": "laiLut", + "target": "laiLut" + }, + { + "source": "landCoverFrac", + "convert": "frac2percent", + "target": "landCoverFrac" + }, + { + "source": "mrro", + "target": "mrro" + }, + { + "source": "mrroLut", + "target": "mrroLut" + }, + { + "source": "mrros", + "target": "mrros" + }, + { + "source": "mrsll", + "target": "mrsll" + }, + { + "source": "mrso", + "target": "mrso" + }, + { + "source": "mrsol", + "target": "mrsol" + }, + { + "source": "mrsoLut", + "target": "mrsoLut" + }, + { + "source": "mrsos", + "target": "mrsos" + }, + { + "source": "mrsosLut", + "target": "mrsosLut" + }, + { + "source": "nbp", + "target": "nbp" + }, + { + "source": "necbLut", + "target": "necbLut" + }, + { + "source": "nep", + "target": "nep" + }, + { + "source": "netAtmosLandCO2Flux", + "target": "netAtmosLandCO2Flux" + }, + { + "source": "nLand", + "target": "nLand" + }, + { + "source": "nLeaf", + "target": "nLeaf" + }, + { + "source": "nLitter", + "target": "nLitter" + }, + { + "source": "nLitterCwd", + "target": "nLitterCwd" + }, + { + "source": "nLitterSubSurf", + "target": "nLitterSubSurf" + }, + { + "source": "nLitterSurf", + "target": "nLitterSurf" + }, + { + "source": "nMineral", + "target": "nMineral" + }, + { + "source": "nMineralNH4", + "target": "nMineralNH4" + }, + { + "source": "nMineralNO3", + "target": "nMineralNO3" + }, + { + "source": "nOther", + "target": "nOther" + }, + { + "source": "npp", + "target": "npp" + }, + { + "source": "nppGrass", + "target": "nppGrass" + }, + { + "source": "nppLut", + "target": "nppLut" + }, + { + "source": "nppTree", + "target": "nppTree" + }, + { + "source": "nProduct", + "target": "nProduct" + }, + { + "source": "nRoot", + "target": "nRoot" + }, + { + "source": "nSoil", + "target": "nSoil" + }, + { + "source": "nStem", + "target": "nStem" + }, + { + "source": "nVeg", + "target": "nVeg" + }, + { + "source": "nwdFracLut", + "convert": "frac2percent", + "target": "nwdFracLut" + }, + { + "source": "pastureFrac", + "convert": "frac2percent", + "target": "pastureFrac" + }, + { + "source": "pastureFracC3", + "convert": "frac2percent", + "target": "pastureFracC3" + }, + { + "source": "pastureFracC4", + "convert": "frac2percent", + "target": "pastureFracC4" + }, + { + "source": "prCrop", + "target": "prCrop" + }, + { + "source": "prveg", + "target": "prveg" + }, + { + "source": "ra", + "target": "ra" + }, + { + "source": "raGrass", + "target": "raGrass" + }, + { + "source": "raLeaf", + "target": "raLeaf" + }, + { + "source": "raLut", + "target": "raLut" + }, + { + "source": "raOther", + "target": "raOther" + }, + { + "source": "raRoot", + "target": "raRoot" + }, + { + "source": "raStem", + "target": "raStem" + }, + { + "source": "raTree", + "target": "raTree" + }, + { + "source": "residualFrac", + "convert": "frac2percent", + "target": "residualFrac" + }, + { + "source": "rGrowth", + "target": "rGrowth" + }, + { + "source": "rh", + "target": "rh" + }, + { + "source": "rhLitter", + "target": "rhLitter" + }, + { + "source": "rhLut", + "target": "rhLut" + }, + { + "source": "rhSoil", + "target": "rhSoil" + }, + { + "source": "rMaint", + "target": "rMaint" + }, + { + "source": "shrubFrac", + "convert": "frac2percent", + "target": "shrubFrac" + }, + { + "source": "tran", + "target": "tran" + }, + { + "source": "treeFrac", + "convert": "frac2percent", + "target": "treeFrac" + }, + { + "source": "treeFracBdlDcd", + "convert": "frac2percent", + "target": "treeFracBdlDcd" + }, + { + "source": "treeFracBdlEvg", + "convert": "frac2percent", + "target": "treeFracBdlEvg" + }, + { + "source": "treeFracNdlDcd", + "convert": "frac2percent", + "target": "treeFracNdlDcd" + }, + { + "source": "treeFracNdlEvg", + "convert": "frac2percent", + "target": "treeFracNdlEvg" + }, + { + "source": "tsl", + "target": "tsl" + }, + { + "source": "vegFrac", + "convert": "frac2percent", + "target": "vegFrac" + }, + { + "source": "vegHeightTree", + "target": "vegHeightTree" + } +] diff --git a/ece2cmor/ece2cmor3/resources/metadata-templates/README b/ece2cmor/ece2cmor3/resources/metadata-templates/README new file mode 100644 index 0000000000000000000000000000000000000000..dcd40cb0ac2faa6497315296a0403d8bba578245 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/metadata-templates/README @@ -0,0 +1,20 @@ +For each MIP experiment and for each EC-Earth3 model configuration and for each +model component (ifs, nemo, tm5, lpjg), a metadata template file has been +created in the ctrl/cmip6-output-control-files/ sub directories for each +experiment. For instance: + cmip6-output-control-files/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical/metadata-cmip6-CMIP-historical-EC-EARTH-AOGCM-ifs-template.json +is the one for the CMIP historical experiment for the EC-EARTH-AOGCM model +configuration for the IFS component. + +The metadata templates are generated by genecec's modify-metadata-template.sh +script. + +Though most metadata should be correct, it is strongly recommended to check the +metadata template file. It is called a template because in the end one has to +fill out the ensemble memebr fields one self: + "realization_index": "1", +depending on which member one is producing. + +Further references to the meaning of the fields are: + https://docs.google.com/document/d/16NTTxZM9l8B_tqLrG_zTJDGZYJr21dS7L3B-tGU2Wik/edit# + https://www.earthsystemcog.org/site_media/projects/wip/CMIP6_global_attributes_filenames_CVs_v6.2.6.pdf diff --git a/ece2cmor/ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json b/ece2cmor/ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json new file mode 100644 index 0000000000000000000000000000000000000000..3c033bf91f98ac79692a97ed57eceed87175358c --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json @@ -0,0 +1,43 @@ +{ + "activity_id": "CMIP", + "experiment_id": "piControl", + "source_id": "EC-Earth3", + "source": "EC-Earth3 (2019)", + "source_type": "AOGCM", + "grid": "T255L91", + "grid_label": "gr", + "nominal_resolution": "100 km", + + "sub_experiment": "none", + "sub_experiment_id": "none", + + "realization_index": "1", + "initialization_index": "1", + "physics_index": "1", + "forcing_index": "1", + "#variant_info": "uncomment and describe briefly what makes your ripf identifier unique (only needed if i/=1, p/=1 or f/=1)", + + "parent_activity_id": "CMIP", + "parent_experiment_id": "piControl-spinup", + "parent_source_id": "EC-Earth3-Veg", + "parent_variant_label": "r1i1p1f1", + "parent_time_units": "days since 1850-01-01", + + "branch_method": "standard", + "branch_time_in_child": "0.0D", + "branch_time_in_parent": "0.0D", + + "comment": "", + + + "_control_vocabulary_file": "CMIP6_CV.json", + "_cmip6_option": "CMIP6", + "mip_era": "CMIP6", + "parent_mip_era": "CMIP6", + + "license": "CMIP6 model data produced by EC-Earth-Consortium is licensed under a Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at http://www.ec-earth.org. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.", + "tracking_prefix": "hdl:21.14100", + + "institution_id": "EC-Earth-Consortium", + "contact": "cmip6-data@ec-earth.org" +} diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP-scenariomip-EC-EARTH-AOGCM/cmvme_cm.co.dc.dy.ls.sc.vi_ssp245_1_1-no-3hr-no-6hrLev.xlsx b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP-scenariomip-EC-EARTH-AOGCM/cmvme_cm.co.dc.dy.ls.sc.vi_ssp245_1_1-no-3hr-no-6hrLev.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..6019d144790e5b7edb8c1f12b08939889ecd2e04 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP-scenariomip-EC-EARTH-AOGCM/cmvme_cm.co.dc.dy.ls.sc.vi_ssp245_1_1-no-3hr-no-6hrLev.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..8fd70400a46152eb57c2a57c92f3506ee16a30e9 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1.xlsx b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..86d85314227269c3654537ca1caf3d3c90c9a9e1 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/compact-request/cmvme_CMIP_ssp245_1_1-additional.xlsx b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/compact-request/cmvme_CMIP_ssp245_1_1-additional.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..481c37c99f875cf7e3b7d095a4b500df487d9f6d Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/compact-request/cmvme_CMIP_ssp245_1_1-additional.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cordex-model-level-output-for-rcm-forcing/cordex-model-level-output-for-rcm-forcing.json b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cordex-model-level-output-for-rcm-forcing/cordex-model-level-output-for-rcm-forcing.json new file mode 100644 index 0000000000000000000000000000000000000000..7c1f4197bd348691eb2f27c1d5925203a202aac1 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/cordex-model-level-output-for-rcm-forcing/cordex-model-level-output-for-rcm-forcing.json @@ -0,0 +1,27 @@ +{ + "ifs": { + "6hrLev": [ + "ta", + "ua", + "va", + "hus", + "ps" + ], + "6hrPlev": [ + "siconca" + ], + "6hrPlevPt": [ + "tosa", + "tsl4sl", + "mrsol" + ], + "fx": [ + "areacella", + "orog", + "sftlf" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..ae94be61c340ab9c34ec82a2b95a84464d4b7b34 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..7477c7d0e1fc6287a7530be25eae9f754f8aae98 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/knmi23-dutch-scenarios/overview-manual-added-variables-in-knmi23-dutch-scenarios-data-request.txt b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/knmi23-dutch-scenarios/overview-manual-added-variables-in-knmi23-dutch-scenarios-data-request.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f351e27d98a8e7adc2a54302f95f95d2be0883b --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/knmi23-dutch-scenarios/overview-manual-added-variables-in-knmi23-dutch-scenarios-data-request.txt @@ -0,0 +1,27 @@ +# Add priority 1 in xlsx column A and CMIP in MIP list in xlsx column AB. +# Check for added variables or add variables in xlsx column L for the CMOR Name. + + 6hrPlevPt + ta23r + va23r + ua23r + hus23r + tosa + tsl4sl + mrsol + + + 6hrPlev + siconca + + 6hrLev + ps + + Omon + msftyz + + Simon + sivol + + day + sfcWind diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-CC.json b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-CC.json new file mode 100644 index 0000000000000000000000000000000000000000..7ab6fe26a696dc966ea5834e53724ca9fbf5a92f --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-CC.json @@ -0,0 +1,359 @@ +{ + "ifs": { + "Amon": [ + "tas", + "ts", + "tasmin", + "tasmax", + "psl", + "ps", + "uas", + "vas", + "sfcWind", + "hurs", + "huss", + "pr", + "prsn", + "prc", + "evspsbl", + "sbl", + "tauu", + "tauv", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rsdscs", + "rsuscs", + "rldscs", + "rsdt", + "rsut", + "rlut", + "rlutcs", + "rsutcs", + "prw", + "clt", + "clwvi", + "clivi", + "rtmt", + "cl", + "clw", + "cli", + "ta", + "ua", + "va", + "hus", + "hur", + "wap", + "zg", + "pfull" + ], + "Emon":[ + "mrsol" + ], + "E3hr":[ + "sfcWind" + ], + "Eday":[ + "tauu", + "tauv", + "evspsbl" + ], + "3hr":[ + "tas", + "hfls", + "hfss", + "rlus", + "rsds", + "clt", + "prc", + "tslsi", + "uas", + "vas", + "ps", + "pr" + ], + "CF3hr":[ + "pfull" + ], + "CFmon":[ + "tnhus" + ], + "E3hrPt":[ + "hus" + ], + "LImon": [ + "snc", + "snd", + "snw", + "snm", + "sbl", + "hfdsn", + "tsn" + ], + "Lmon": [ + "mrsos", + "mrso", + "mrfso", + "mrros", + "tsl", + "mrro" + ], + "day": [ + "tasmin", + "tasmax", + "pr", + "hfls", + "hfss", + "rlds", + "hus", + "ua", + "va", + "snc", + "clt", + "zg", + "rlut" + ], + "6hrPlev":[ + "wap4", + "hurs" + ], + "6hrPlevPt":[ + "ua7h", + "va7h", + "hus7h", + "huss" + ], + "6hrLev":[ + "ta", + "ua", + "va" + ], + "fx": [ + "areacella", + "orog", + "sftlf" + ] + }, + "lpjg": { + "Amon": [ + "fco2antt", + "fco2nat" + ], + "Emon": [ + "cSoil", + "fCLandToOcean", + "fFireNat", + "fProductDecomp", + "fAnthDisturb", + "fDeforestToProduct", + "nLitter", + "nProduct", + "nLand", + "nMineral", + "fNloss", + "fNfert", + "fNdep", + "fBNF", + "fNup", + "fNnetmin", + "fNVegLitter", + "fNLandToOcean", + "fNLitterSoil", + "fNProduct", + "fNAnthDisturb", + "treeFracNdlDcd", + "treeFracBdlEvg", + "treeFracBdlDcd", + "grassFracC3", + "grassFracC4", + "fNleach", + "netAtmosLandCO2Flux", + "gppLut", + "raLut", + "nppLut", + "cTotFireLut", + "rhLut", + "necbLut", + "laiLut", + "mrsosLut", + "mrroLut", + "mrsoLut", + "irrLut", + "fProductDecompLut", + "fLulccProductLut", + "fLulccResidueLut", + "fLulccAtmLut", + "fracLut", + "mrsll", + "vegFrac", + "treeFracNdlEvg", + "cropFracC3", + "cropFracC4", + "cLand", + "nVeg", + "nSoil", + "fNgas", + "cOther", + "nStem", + "nLitterCwd", + "nLitterSurf", + "nRoot", + "fLuc", + "nLitterSubSurf", + "nLeaf", + "cLitterSubSurf", + "nep", + "cLitterSurf", + "cStem", + "cLitterCwd", + "nOther" + ], + "Eyr": [ + "cSoilLut", + "cVegLut", + "cLitterLut", + "cProductLut", + "cSoil", + "cVeg", + "cLitter", + "cProduct", + "fracOutLut", + "fracInLut", + "fracLut" + ], + "Lmon": [ + "evspsblveg", + "evspsblsoi", + "tran", + "treeFrac", + "grassFrac", + "shrubFrac", + "cropFrac", + "pastureFrac", + "baresoilFrac", + "residualFrac", + "burntFractionAll", + "cVeg", + "cLitter", + "cProduct", + "lai", + "gpp", + "ra", + "npp", + "rh", + "fVegLitter", + "fLitterSoil", + "nbp", + "cLeaf", + "cRoot" + ] + }, + "nemo": { + "Oday": [ + "tossq", + "tos", + "omldamax" + ], + "Ofx": [ + "deptho", + "areacello", + "sftof", + "basin", + "hfgeou" + ], + "Omon": [ + "masso", + "pbo", + "pso", + "volo", + "zos", + "zostoga", + "masscello", + "thkcello", + "thetao", + "thetaoga", + "bigthetao", + "bigthetaoga", + "tos", + "tob", + "tosga", + "tossq", + "so", + "soga", + "sos", + "sob", + "sosga", + "msftbarot", + "mlotst", + "mlotstmax", + "mlotstmin", + "obvfsq", + "uo", + "vo", + "wo", + "wmo", + "umo", + "vmo", + "msftyz", + "hfbasin", + "hfbasinpmadv", + "hfx", + "hfy", + "htovgyre", + "htovovrt", + "sltovgyre", + "sltovovrt", + "evs", + "friver", + "fsitherm", + "wfo", + "wfonocorr", + "sfdsi", + "hfgeou", + "hfrainds", + "hfevapds", + "rsntds", + "rsdo", + "hfds", + "tauuo", + "tauvo", + "zhalfo" + ], + "SIday": [ + "sitimefrac", + "siconc", + "sithick", + "sisnthick", + "sitemptop", + "siu", + "siv", + "sispeed" + ], + "SImon": [ + "sitimefrac", + "siconc", + "simass", + "sithick", + "sivol", + "sisnmass", + "sisnthick", + "sitemptop", + "siage", + "sisali", + "sihc", + "sidmassevapsubl", + "sidmassmelttop", + "sidmassmeltbot", + "siflswdtop", + "siu", + "siv", + "sispeed", + "sidmasstranx", + "sidmasstrany" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-Veg.json b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-Veg.json new file mode 100644 index 0000000000000000000000000000000000000000..5477e7026a44d05936a8c132e91af3cdb1aa307a --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-Veg.json @@ -0,0 +1,351 @@ +{ + "ifs": { + "Amon": [ + "tas", + "ts", + "tasmin", + "tasmax", + "psl", + "ps", + "uas", + "vas", + "sfcWind", + "hurs", + "huss", + "pr", + "prsn", + "prc", + "evspsbl", + "sbl", + "tauu", + "tauv", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rsdscs", + "rsuscs", + "rldscs", + "rsdt", + "rsut", + "rlut", + "rlutcs", + "rsutcs", + "prw", + "clt", + "clwvi", + "clivi", + "rtmt", + "cl", + "clw", + "cli", + "ta", + "ua", + "va", + "hus", + "hur", + "wap", + "zg", + "pfull" + ], + "Emon":[ + "mrsol" + ], + "E3hr":[ + "sfcWind" + ], + "Eday":[ + "tauu", + "tauv" + ], + "3hr":[ + "tas", + "hfls", + "hfss", + "rlus", + "rsds", + "clt", + "prc", + "uas", + "vas", + "ps", + "pr" + ], + "CF3hr":[ + "pfull" + ], + "CFmon":[ + "tnhus" + ], + "E3hrPt":[ + "hus" + ], + "LImon": [ + "snc", + "snd", + "snw", + "snm", + "sbl", + "hfdsn", + "tsn" + ], + "Lmon": [ + "mrsos", + "mrso", + "mrfso", + "mrros", + "tsl", + "mrro" + ], + "day": [ + "tasmin", + "tasmax", + "pr", + "hfls", + "hfss", + "rlds", + "hus", + "ua", + "va", + "snc", + "clt", + "zg", + "rlut" + ], + "6hrPlev":[ + "wap4", + "hurs" + ], + "6hrLev":[ + "ta", + "ua", + "va" + ], + "fx": [ + "areacella", + "orog", + "sftlf" + ] + }, + "lpjg": { + "Amon": [ + "fco2antt", + "fco2nat" + ], + "Emon": [ + "cSoil", + "fCLandToOcean", + "fFireNat", + "fProductDecomp", + "fAnthDisturb", + "fDeforestToProduct", + "nLitter", + "nProduct", + "nLand", + "nMineral", + "fNloss", + "fNfert", + "fNdep", + "fBNF", + "fNup", + "fNnetmin", + "fNVegLitter", + "fNLandToOcean", + "fNLitterSoil", + "fNProduct", + "fNAnthDisturb", + "treeFracNdlDcd", + "treeFracBdlEvg", + "treeFracBdlDcd", + "grassFracC3", + "grassFracC4", + "fNleach", + "netAtmosLandCO2Flux", + "gppLut", + "raLut", + "nppLut", + "cTotFireLut", + "rhLut", + "necbLut", + "laiLut", + "mrsosLut", + "mrroLut", + "mrsoLut", + "irrLut", + "fProductDecompLut", + "fLulccProductLut", + "fLulccResidueLut", + "fLulccAtmLut", + "fracLut", + "mrsll", + "vegFrac", + "treeFracNdlEvg", + "cropFracC3", + "cropFracC4", + "cLand", + "nVeg", + "nSoil", + "fNgas", + "cOther", + "nStem", + "nLitterCwd", + "nLitterSurf", + "nRoot", + "fLuc", + "nLitterSubSurf", + "nLeaf", + "cLitterSubSurf", + "nep", + "cLitterSurf", + "cStem", + "cLitterCwd", + "nOther" + ], + "Eyr": [ + "cSoilLut", + "cVegLut", + "cLitterLut", + "cProductLut", + "cSoil", + "cVeg", + "cLitter", + "cProduct", + "fracOutLut", + "fracInLut", + "fracLut" + ], + "Lmon": [ + "evspsblveg", + "evspsblsoi", + "tran", + "treeFrac", + "grassFrac", + "shrubFrac", + "cropFrac", + "pastureFrac", + "baresoilFrac", + "residualFrac", + "burntFractionAll", + "cVeg", + "cLitter", + "cProduct", + "lai", + "gpp", + "ra", + "npp", + "rh", + "fVegLitter", + "fLitterSoil", + "nbp", + "cLeaf", + "cRoot" + ] + }, + "nemo": { + "Oday": [ + "tossq", + "tos", + "omldamax" + ], + "Ofx": [ + "deptho", + "areacello", + "sftof", + "basin", + "hfgeou" + ], + "Omon": [ + "masso", + "pbo", + "pso", + "volo", + "zos", + "zostoga", + "masscello", + "thkcello", + "thetao", + "thetaoga", + "bigthetao", + "bigthetaoga", + "tos", + "tob", + "tosga", + "tossq", + "so", + "soga", + "sos", + "sob", + "sosga", + "msftbarot", + "mlotst", + "mlotstmax", + "mlotstmin", + "obvfsq", + "uo", + "vo", + "wo", + "wmo", + "umo", + "vmo", + "msftyz", + "hfbasin", + "hfbasinpmadv", + "hfx", + "hfy", + "htovgyre", + "htovovrt", + "sltovgyre", + "sltovovrt", + "evs", + "friver", + "fsitherm", + "wfo", + "wfonocorr", + "sfdsi", + "hfgeou", + "hfrainds", + "hfevapds", + "rsntds", + "rsdo", + "hfds", + "tauuo", + "tauvo", + "zhalfo" + ], + "SIday": [ + "sitimefrac", + "siconc", + "sithick", + "sisnthick", + "sitemptop", + "siu", + "siv", + "sispeed" + ], + "SImon": [ + "sitimefrac", + "siconc", + "simass", + "sithick", + "sivol", + "sisnmass", + "sisnthick", + "sitemptop", + "siage", + "sisali", + "sihc", + "sidmassevapsubl", + "sidmassmelttop", + "sidmassmeltbot", + "siflswdtop", + "siu", + "siv", + "sispeed", + "sidmasstranx", + "sidmasstrany" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/sofiamip/sofiamip-extended.json b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/sofiamip/sofiamip-extended.json new file mode 100644 index 0000000000000000000000000000000000000000..9b6cafa2685d31d2fb3fe28bece81665d35df50d --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/sofiamip/sofiamip-extended.json @@ -0,0 +1,181 @@ +{ + "ifs": { + "Amon": [ + "tas", + "ts", + "tasmin", + "tasmax", + "psl", + "ps", + "uas", + "vas", + "sfcWind", + "hurs", + "huss", + "pr", + "prsn", + "prc", + "evspsbl", + "sbl", + "tauu", + "tauv", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rsdscs", + "rsuscs", + "rldscs", + "rsdt", + "rsut", + "rlut", + "rlutcs", + "rsutcs", + "prw", + "clt", + "clwvi", + "clivi", + "rtmt", + "cl", + "clw", + "cli", + "ta", + "ua", + "va", + "hus", + "hur", + "wap", + "zg", + "pfull" + ], + "Emon": [ + "mrsol" + ], + "LImon": [ + "snc", + "lwsnl", + "snd", + "snw", + "snm", + "sbl", + "hfdsn", + "tsn" + ], + "Lmon": [ + "mrsos", + "mrso", + "mrfso", + "mrros", + "mrro", + "tsl" + ], + "Omon": [ + "prsn" + ], + "SImon": [ + "siconca" + ], + "fx": [ + "areacella", + "orog", + "sftlf" + ] + }, + "lpjg": {}, + "nemo": { + "Ofx": [ + "deptho", + "areacello", + "sftof", + "basin", + "hfgeou" + ], + "Omon": [ + "ficeberg", + "hfbasin", + "hfbasinpmadv", + "hfevapds", + "hfrainds", + "hfx", + "hfy", + "htovgyre", + "htovovrt", + "mlotstmax", + "obvfsq", + "tauuo", + "tauvo", + "tosga", + "sosga", + "wo", + "masso", + "pbo", + "pso", + "volo", + "zos", + "zossq", + "zostoga", + "masscello", + "thkcello", + "thetao", + "thetaoga", + "tos", + "tossq", + "so", + "soga", + "sos", + "msftbarot", + "mlotst", + "uo", + "vo", + "wmo", + "umo", + "vmo", + "sltovgyre", + "sltovovrt", + "evs", + "friver", + "fsitherm", + "wfo", + "wfonocorr", + "sfdsi", + "hfgeou", + "rsntds", + "hfds", + "zhalfo", + "msftyz" + ], + "SImon": [ + "siconc", + "simass", + "sithick", + "sisnmass", + "sisnthick", + "sitemptop", + "sitempsnic", + "siage", + "sisali", + "sihc", + "sidmassgrowthwat", + "sidmassgrowthbot", + "sidmasssi", + "sidmassevapsubl", + "sidmassmelttop", + "sidmassmeltbot", + "sndmasssnf", + "sndmassmelt", + "siflswdtop", + "siu", + "siv", + "sidmasstranx", + "sidmasstrany", + "sistrxdtop", + "sistrydtop", + "sicompstren", + "sidivvel", + "sivol" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/varex-data-request/varex-data-request-varlist-EC-Earth3.json b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/varex-data-request/varex-data-request-varlist-EC-Earth3.json new file mode 100644 index 0000000000000000000000000000000000000000..137ed121d8987a2a0f6eeead7028cd55f75b6b8f --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/miscellaneous-data-requests/varex-data-request/varex-data-request-varlist-EC-Earth3.json @@ -0,0 +1,218 @@ +{ + "ifs": { + "3hr": [ + "pr", + "tas", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "uas", + "vas", + "huss", + "mrsos", + "prc", + "prsn", + "mrro", + "rldscs", + "rsdscs", + "rsuscs", + "ps", + "clt" + ], + "6hrPlevPt": [ + "rv850", + "zg500", + "ua", + "va", + "ta", + "psl" + ], + "6hrPlev": [ + "ua100m", + "va100m", + "wap4", + "wsgmax10m" + ], + "AERmon": [ + "lwp" + ], + "Amon": [ + "tas", + "ts", + "tasmin", + "tasmax", + "psl", + "ps", + "uas", + "vas", + "sfcWind", + "hurs", + "huss", + "pr", + "prsn", + "prc", + "evspsbl", + "sbl", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rsdscs", + "rsuscs", + "rldscs", + "rsdt", + "rsut", + "rlut", + "rlutcs", + "rsutcs", + "prw", + "clt", + "clwvi", + "clivi", + "rtmt", + "ta", + "ua", + "va", + "hus", + "hur", + "wap", + "zg" + ], + "CFday": [ + "clivi", + "clwvi" + ], + "Eday": [ + "prw", + "zmla" + ], + "Emon": [ + "mrsol", + "rls", + "rss" + ], + "LImon": [ + "snc", + "snd", + "snw", + "snm", + "sbl", + "hfdsn", + "tsn" + ], + "Lmon": [ + "mrsos", + "mrso", + "mrfso", + "mrros", + "mrro", + "tsl" + ], + "SImon": [ + "siconca" + ], + "day": [ + "huss", + "tasmin", + "tasmax", + "tas", + "pr", + "psl", + "sfcWind", + "mrso", + "mrsos", + "hurs", + "hursmin", + "hursmax", + "snc", + "clt", + "tslsi", + "snw", + "prc", + "prsn", + "mrro", + "uas", + "vas", + "sfcWindmax", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rlut", + "ta", + "hur", + "hus", + "wap", + "va", + "ua" + ], + "fx": [ + "areacella", + "orog", + "sftlf" + ] + }, + "lpjg": {}, + "nemo": { + "Ofx": [ + "deptho", + "areacello", + "sftof", + "basin", + "hfgeou" + ], + "Oday": [ + "tos" + ], + "Omon": [ + "masso", + "pbo", + "pso", + "volo", + "zos", + "zossq", + "zostoga", + "thetaoga", + "tos", + "tosga", + "tossq", + "soga", + "sos", + "msftbarot", + "mlotst", + "hfbasin", + "htovgyre", + "htovovrt", + "sltovgyre", + "sltovovrt", + "evs", + "friver", + "fsitherm", + "wfo", + "wfonocorr", + "sfdsi", + "hfgeou", + "hfrainds", + "hfevapds", + "rsntds", + "hfds", + "zhalfo", + "msftyz" + ], + "SImon": [ + "siconc", + "simass", + "sithick", + "sivol", + "siage" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/nemo-mask-ece.nc b/ece2cmor/ece2cmor3/resources/nemo-mask-ece.nc new file mode 100644 index 0000000000000000000000000000000000000000..6ffe63c71832b1b03315546c09a15e4df8501628 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/nemo-mask-ece.nc differ diff --git a/ece2cmor/ece2cmor3/resources/nemopar.json b/ece2cmor/ece2cmor3/resources/nemopar.json new file mode 100644 index 0000000000000000000000000000000000000000..a4c6ee5c0c01315c3e046dd4472ceaa41a74ea95 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/nemopar.json @@ -0,0 +1,1235 @@ +[ + { + "source": "agessc", + "target": "agessc" + }, + { + "source": "areacello", + "target": "areacello" + }, + { + "source": "basin", + "target": "basin" + }, + { + "source": "bigthetao", + "target": "bigthetao" + }, + { + "source": "bigthetaoga", + "target": "bigthetaoga" + }, + { + "source": "calving", + "target": "calving" + }, + { + "source": "cfc11", + "target": "cfc11" + }, + { + "source": "cfc12", + "target": "cfc12" + }, + { + "source": "Bathymetry", + "target": "deptho", + "masked": "sftof" + }, + { + "source": "diftrblo2d", + "target": "diftrblo2d" + }, + { + "source": "diftrelo2d", + "target": "diftrelo2d" + }, + { + "source": "diftrxylo2d", + "target": "diftrxylo2d" + }, + { + "source": "difvho", + "target": "difvho" + }, + { + "source": "difvmo", + "target": "difvmo" + }, + { + "source": "difvmto", + "target": "difvmto" + }, + { + "source": "difvso", + "target": "difvso" + }, + { + "source": "difvtrto", + "target": "difvtrto" + }, + { + "source": "dispkevfo", + "target": "dispkevfo" + }, + { + "source": "dispkexyfo2d", + "target": "dispkexyfo2d" + }, + { + "source": "evs", + "target": "evs" + }, + { + "source": "fgcfc11", + "target": "fgcfc11" + }, + { + "source": "fgcfc12", + "target": "fgcfc12" + }, + { + "source": "fgsf6", + "target": "fgsf6" + }, + { + "source": "ficeberg2d", + "target": "ficeberg2d" + }, + { + "source": "flandice", + "target": "flandice" + }, + { + "source": "friver", + "target": "friver" + }, + { + "source": "fsitherm", + "target": "fsitherm" + }, + { + "source": "hcont300", + "target": "hcont300" + }, + { + "source": "hfbasin", + "target": "hfbasin" + }, + { + "source": "hfbasinpmadv", + "target": "hfbasinpmadv" + }, + { + "source": "hfcorr", + "target": "hfcorr" + }, + { + "source": "hfds", + "target": "hfds" + }, + { + "source": "hfevapds", + "target": "hfevapds" + }, + { + "source": "hfgeou", + "target": "hfgeou" + }, + { + "source": "hfibthermds2d", + "target": "hfibthermds2d" + }, + { + "source": "hflso", + "target": "hflso" + }, + { + "source": "hfrainds", + "target": "hfrainds" + }, + { + "source": "hfrunoffds2d", + "target": "hfrunoffds2d" + }, + { + "source": "hfsnthermds2d", + "target": "hfsnthermds2d" + }, + { + "source": "hfsso", + "target": "hfsso" + }, + { + "source": "hfx", + "target": "hfx" + }, + { + "source": "hfy", + "target": "hfy" + }, + { + "source": "htovgyre", + "target": "htovgyre" + }, + { + "source": "htovovrt", + "target": "htovovrt" + }, + { + "source": "masscello", + "target": "masscello" + }, + { + "source": "masso", + "target": "masso" + }, + { + "source": "mfo", + "target": "mfo" + }, + { + "source": "mlotst", + "target": "mlotst" + }, + { + "source": "mlotstmax", + "target": "mlotstmax" + }, + { + "source": "mlotstmin", + "target": "mlotstmin" + }, + { + "source": "mlotstsq", + "target": "mlotstsq" + }, + { + "source": "msftbarot", + "target": "msftbarot" + }, + { + "source": "msftyz", + "target": "msftyz" + }, + { + "source": "obvfsq", + "target": "obvfsq" + }, + { + "source": "ocontempdiff", + "target": "ocontempdiff" + }, + { + "source": "ocontemppadvect", + "target": "ocontemppadvect" + }, + { + "source": "ocontemppmdiff", + "target": "ocontemppmdiff" + }, + { + "source": "ocontemprmadvect", + "target": "ocontemprmadvect" + }, + { + "source": "ocontemptend", + "target": "ocontemptend" + }, + { + "source": "omldamax", + "target": "omldamax" + }, + { + "source": "osaltdiff", + "target": "osaltdiff" + }, + { + "source": "osaltpadvect", + "target": "osaltpadvect" + }, + { + "source": "osaltpmdiff", + "target": "osaltpmdiff" + }, + { + "source": "osaltrmadvect", + "target": "osaltrmadvect" + }, + { + "source": "osalttend", + "target": "osalttend" + }, + { + "source": "pbo", + "target": "pbo" + }, + { + "source": "pso", + "target": "pso" + }, + { + "source": "rlntds", + "target": "rlntds" + }, + { + "source": "rhopo", + "target": "rhopo" + }, + { + "source": "rsdo", + "target": "rsdo" + }, + { + "source": "rsntds", + "target": "rsntds" + }, + { + "source": "subl", + "target": "subl" + }, + { + "source": "sf6", + "target": "sf6" + }, + { + "source": "sfdsi", + "target": "sfdsi" + }, + { + "source": "sfdsi_2", + "target": "sfdsi_2" + }, + { + "source": "sfriver", + "target": "sfriver" + }, + { + "source": "sftof", + "target": "sftof" + }, + { + "source": "sltbasin", + "target": "sltbasin" + }, + { + "source": "sltnortha", + "target": "sltnortha" + }, + { + "source": "sltovgyre", + "target": "sltovgyre" + }, + { + "source": "sltovovrt", + "target": "sltovovrt" + }, + { + "source": "so", + "target": "so" + }, + { + "source": "sob", + "target": "sob" + }, + { + "source": "soga", + "target": "soga" + }, + { + "source": "somint", + "target": "somint" + }, + { + "source": "sos", + "target": "sos" + }, + { + "source": "sosga", + "target": "sosga" + }, + { + "source": "sossq", + "target": "sossq" + }, + { + "source": "t20d", + "target": "t20d" + }, + { + "source": "taum", + "target": "taum" + }, + { + "source": "tauuo", + "target": "tauuo" + }, + { + "source": "tauvo", + "target": "tauvo" + }, + { + "source": "thetao", + "target": "thetao" + }, + { + "source": "thetaoga", + "target": "thetaoga" + }, + { + "source": "thetaot", + "target": "thetaot" + }, + { + "source": "thetaot2000", + "target": "thetaot2000" + }, + { + "source": "thetaot300", + "target": "thetaot300" + }, + { + "source": "thetaot700", + "target": "thetaot700" + }, + { + "source": "thkcello", + "target": "thkcello" + }, + { + "source": "tnkebto2d", + "target": "tnkebto2d" + }, + { + "source": "tnpeo", + "target": "tnpeo" + }, + { + "source": "tob", + "target": "tob" + }, + { + "source": "tos", + "target": "tos" + }, + { + "source": "tosga", + "target": "tosga" + }, + { + "source": "tossq", + "target": "tossq" + }, + { + "source": "umo", + "target": "umo" + }, + { + "source": "uo", + "target": "uo" + }, + { + "source": "vmo", + "target": "vmo" + }, + { + "source": "vo", + "target": "vo" + }, + { + "source": "volcello", + "target": "volcello" + }, + { + "source": "volo", + "target": "volo" + }, + { + "source": "vsf", + "target": "vsf" + }, + { + "source": "wfcorr", + "target": "wfcorr" + }, + { + "source": "wfo", + "target": "wfo" + }, + { + "source": "wfonocorr", + "target": "wfonocorr" + }, + { + "source": "wmo", + "target": "wmo" + }, + { + "source": "wo", + "target": "wo" + }, + { + "source": "wspd", + "target": "wspd" + }, + { + "source": "zhalfo", + "target": "zhalfo" + }, + { + "source": "zos", + "target": "zos" + }, + { + "source": "zossq", + "target": "zossq" + }, + { + "source": "zostoga", + "target": "zostoga" + }, + { + "source": "bfe", + "target": "bfe" + }, + { + "source": "bfeos", + "target": "bfeos" + }, + { + "source": "bsi", + "target": "bsi" + }, + { + "source": "bsios", + "target": "bsios" + }, + { + "source": "calc", + "target": "calc" + }, + { + "source": "calcos", + "target": "calcos" + }, + { + "source": "chl", + "target": "chl" + }, + { + "source": "chldiat", + "target": "chldiat" + }, + { + "source": "chldiatos", + "target": "chldiatos" + }, + { + "source": "chlmisc", + "target": "chlmisc" + }, + { + "source": "chlmiscos", + "target": "chlmiscos" + }, + { + "source": "chlos", + "target": "chlos" + }, + { + "source": "co3", + "target": "co3" + }, + { + "source": "co3os", + "target": "co3os" + }, + { + "source": "co3satcalc", + "target": "co3satcalc" + }, + { + "source": "co3satcalcos", + "target": "co3satcalcos" + }, + { + "source": "dcalc", + "target": "dcalc" + }, + { + "source": "detoc", + "target": "detoc" + }, + { + "source": "detocos", + "target": "detocos" + }, + { + "source": "dfe", + "target": "dfe" + }, + { + "source": "dfeos", + "target": "dfeos" + }, + { + "source": "dissic", + "target": "dissic" + }, + { + "source": "dissicnat", + "target": "dissicnat" + }, + { + "source": "dissicnatos", + "target": "dissicnatos" + }, + { + "source": "dissicos", + "target": "dissicos" + }, + { + "source": "dissoc", + "target": "dissoc" + }, + { + "source": "dissocos", + "target": "dissocos" + }, + { + "source": "dpco2", + "target": "dpco2" + }, + { + "source": "dpo2", + "target": "dpo2" + }, + { + "source": "epc100", + "target": "epc100" + }, + { + "source": "epcalc100", + "target": "epcalc100" + }, + { + "source": "epfe100", + "target": "epfe100" + }, + { + "source": "epsi100", + "target": "epsi100" + }, + { + "source": "expc", + "target": "expc" + }, + { + "source": "expcalc", + "target": "expcalc" + }, + { + "source": "expfe", + "target": "expfe" + }, + { + "source": "expn", + "target": "expn" + }, + { + "source": "expp", + "target": "expp" + }, + { + "source": "expsi", + "target": "expsi" + }, + { + "source": "fbddtalk", + "target": "fbddtalk" + }, + { + "source": "fbddtdic", + "target": "fbddtdic" + }, + { + "source": "fbddtdife", + "target": "fbddtdife" + }, + { + "source": "fbddtdin", + "target": "fbddtdin" + }, + { + "source": "fbddtdip", + "target": "fbddtdip" + }, + { + "source": "fbddtdisi", + "target": "fbddtdisi" + }, + { + "source": "fgco2", + "target": "fgco2" + }, + { + "source": "fgo2", + "target": "fgo2" + }, + { + "source": "fric", + "target": "fric" + }, + { + "source": "frn", + "target": "frn" + }, + { + "source": "froc", + "target": "froc" + }, + { + "source": "fsfe", + "target": "fsfe" + }, + { + "source": "fsn", + "target": "fsn" + }, + { + "source": "graz", + "target": "graz" + }, + { + "source": "intdic", + "target": "intdic" + }, + { + "source": "intdoc", + "target": "intdoc" + }, + { + "source": "intpbfe", + "target": "intpbfe" + }, + { + "source": "intpbsi", + "target": "intpbsi" + }, + { + "source": "intpcalcite", + "target": "intpcalcite" + }, + { + "source": "intpn2", + "target": "intpn2" + }, + { + "source": "intpoc", + "target": "intpoc" + }, + { + "source": "intpp", + "target": "intpp" + }, + { + "source": "intppcalc", + "target": "intppcalc" + }, + { + "source": "intppdiat", + "target": "intppdiat" + }, + { + "source": "intppmisc", + "target": "intppmisc" + }, + { + "source": "intppnitrate", + "target": "intppnitrate" + }, + { + "source": "limfediat", + "target": "limfediat" + }, + { + "source": "limfemisc", + "target": "limfemisc" + }, + { + "source": "limirrdiat", + "target": "limirrdiat" + }, + { + "source": "limirrmisc", + "target": "limirrmisc" + }, + { + "source": "limndiat", + "target": "limndiat" + }, + { + "source": "limndiaz", + "target": "limndiaz" + }, + { + "source": "limnmisc", + "target": "limnmisc" + }, + { + "source": "nh4", + "target": "nh4" + }, + { + "source": "nh4os", + "target": "nh4os" + }, + { + "source": "no3", + "target": "no3" + }, + { + "source": "no3os", + "target": "no3os" + }, + { + "source": "o2", + "target": "o2" + }, + { + "source": "o2min", + "target": "o2min" + }, + { + "source": "o2os", + "target": "o2os" + }, + { + "source": "pbfe", + "target": "pbfe" + }, + { + "source": "pbsi", + "target": "pbsi" + }, + { + "source": "pcalc", + "target": "pcalc" + }, + { + "source": "ph", + "target": "ph" + }, + { + "source": "phos", + "target": "phos" + }, + { + "source": "phyc", + "target": "phyc" + }, + { + "source": "phycos", + "target": "phycos" + }, + { + "source": "phydiat", + "target": "phydiat" + }, + { + "source": "phydiatos", + "target": "phydiatos" + }, + { + "source": "phyfe", + "target": "phyfe" + }, + { + "source": "phyfeos", + "target": "phyfeos" + }, + { + "source": "phymisc", + "target": "phymisc" + }, + { + "source": "phymiscos", + "target": "phymiscos" + }, + { + "source": "physi", + "target": "physi" + }, + { + "source": "physios", + "target": "physios" + }, + { + "source": "pnitrate", + "target": "pnitrate" + }, + { + "source": "po4", + "target": "po4" + }, + { + "source": "po4os", + "target": "po4os" + }, + { + "source": "pp", + "target": "pp" + }, + { + "source": "ppdiat", + "target": "ppdiat" + }, + { + "source": "ppmisc", + "target": "ppmisc" + }, + { + "source": "ppos", + "target": "ppos" + }, + { + "source": "precip", + "target": "precip" + }, + { + "source": "remoc", + "target": "remoc" + }, + { + "source": "si", + "target": "si" + }, + { + "source": "sios", + "target": "sios" + }, + { + "source": "spco2", + "target": "spco2" + }, + { + "source": "talk", + "target": "talk" + }, + { + "source": "talknat", + "target": "talknat" + }, + { + "source": "talknatos", + "target": "talknatos" + }, + { + "source": "talkos", + "target": "talkos" + }, + { + "source": "zmeso", + "target": "zmeso" + }, + { + "source": "zmesoos", + "target": "zmesoos" + }, + { + "source": "zmicro", + "target": "zmicro" + }, + { + "source": "zmicroos", + "target": "zmicroos" + }, + { + "source": "zo2min", + "target": "zo2min" + }, + { + "source": "zooc", + "target": "zooc" + }, + { + "source": "zoocos", + "target": "zoocos" + }, + { + "source": "siage", + "target": "siage" + }, + { + "source": "siareaacrossline", + "target": "siareaacrossline" + }, + { + "source": "siarean", + "target": "siarean" + }, + { + "source": "siareas", + "target": "siareas" + }, + { + "source": "sicompstren", + "target": "sicompstren" + }, + { + "source": "siconc", + "target": "siconc" + }, + { + "source": "sidconcdyn", + "target": "sidconcdyn" + }, + { + "source": "sidconcth", + "target": "sidconcth" + }, + { + "source": "sidivvel", + "target": "sidivvel" + }, + { + "source": "sidmassdyn", + "target": "sidmassdyn" + }, + { + "source": "sidmassevapsubl", + "target": "sidmassevapsubl" + }, + { + "source": "sidmassgrowthbot", + "target": "sidmassgrowthbot" + }, + { + "source": "sidmassgrowthwat", + "target": "sidmassgrowthwat" + }, + { + "source": "sidmassmeltbot", + "target": "sidmassmeltbot" + }, + { + "source": "sidmassmelttop", + "target": "sidmassmelttop" + }, + { + "source": "sidmasssi", + "target": "sidmasssi" + }, + { + "source": "sidmassth", + "target": "sidmassth" + }, + { + "source": "sidmasstranx", + "target": "sidmasstranx" + }, + { + "source": "sidmasstrany", + "target": "sidmasstrany" + }, + { + "source": "siextentn", + "target": "siextentn" + }, + { + "source": "siextents", + "target": "siextents" + }, + { + "source": "sifb", + "target": "sifb" + }, + { + "source": "siflcondbot", + "target": "siflcondbot" + }, + { + "source": "siflcondtop", + "target": "siflcondtop" + }, + { + "source": "siflfwbot", + "target": "siflfwbot" + }, + { + "source": "siflfwdrain", + "target": "siflfwdrain" + }, + { + "source": "siflsensupbot", + "target": "siflsensupbot" + }, + { + "source": "siflswdtop", + "target": "siflswdtop" + }, + { + "source": "siforcecoriolx", + "target": "siforcecoriolx" + }, + { + "source": "siforcecorioly", + "target": "siforcecorioly" + }, + { + "source": "siforceintstrx", + "target": "siforceintstrx" + }, + { + "source": "siforceintstry", + "target": "siforceintstry" + }, + { + "source": "siforcetiltx", + "target": "siforcetiltx" + }, + { + "source": "siforcetilty", + "target": "siforcetilty" + }, + { + "source": "sihc", + "target": "sihc" + }, + { + "source": "siitdconc", + "target": "siitdconc" + }, + { + "source": "siitdsnthick", + "target": "siitdsnthick" + }, + { + "source": "siitdthick", + "target": "siitdthick" + }, + { + "source": "simass", + "target": "simass" + }, + { + "source": "simassacrossline", + "target": "simassacrossline" + }, + { + "source": "sisali", + "target": "sisali" + }, + { + "source": "sisaltmass", + "target": "sisaltmass" + }, + { + "source": "sishevel", + "target": "sishevel" + }, + { + "source": "sisnhc", + "target": "sisnhc" + }, + { + "source": "sisnmass", + "target": "sisnmass" + }, + { + "source": "sisnthick", + "target": "sisnthick" + }, + { + "source": "sispeed", + "target": "sispeed" + }, + { + "source": "sistremax", + "target": "sistremax" + }, + { + "source": "sistresave", + "target": "sistresave" + }, + { + "source": "sistrxdtop", + "target": "sistrxdtop" + }, + { + "source": "sistrxubot", + "target": "sistrxubot" + }, + { + "source": "sistrydtop", + "target": "sistrydtop" + }, + { + "source": "sistryubot", + "target": "sistryubot" + }, + { + "source": "sitempbot", + "target": "sitempbot" + }, + { + "source": "sitempsnic", + "target": "sitempsnic" + }, + { + "source": "sitemptop", + "target": "sitemptop" + }, + { + "source": "sithick", + "target": "sithick" + }, + { + "source": "sitimefrac", + "target": "sitimefrac" + }, + { + "source": "siu", + "target": "siu" + }, + { + "source": "siv", + "target": "siv" + }, + { + "source": "sivol", + "target": "sivol" + }, + { + "source": "sivoln", + "target": "sivoln" + }, + { + "source": "sivols", + "target": "sivols" + }, + { + "source": "sndmassdyn", + "target": "sndmassdyn" + }, + { + "source": "sndmassmelt", + "target": "sndmassmelt" + }, + { + "source": "sndmasssi", + "target": "sndmasssi" + }, + { + "source": "sndmasssnf", + "target": "sndmasssnf" + }, + { + "source": "sndmasssubl", + "target": "sndmasssubl" + }, + { + "source": "snmassacrossline", + "target": "snmassacrossline" + } +] diff --git a/ece2cmor/ece2cmor3/resources/permanent-tasks.json b/ece2cmor/ece2cmor3/resources/permanent-tasks.json new file mode 100644 index 0000000000000000000000000000000000000000..c068e4d5ab2a8a22554486e3be114f0b7b2cff14 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/permanent-tasks.json @@ -0,0 +1,55 @@ +{ + "Emon": [ + "cOther", + "fBNF", + "nStem", + "nLitterCwd", + "fNfert", + "nLitterSurf", + "nRoot", + "fLuc", + "nLitterSubSurf", + "nLeaf", + "cLitterSubSurf", + "nep", + "fNdep", + "cSoil", + "fNnetmin", + "fCLandToOcean", + "cLitterSurf", + "cStem", + "fFireNat", + "nMineral", + "nLand", + "nVeg", + "nSoil", + "cLitterCwd", + "nProduct", + "nLitter", + "fNloss", + "fNup", + "nOther", + "fNLandToOcean", + "fProductDecomp", + "cLand" + ], + "Eyr": [ + "cProduct", + "cVeg", + "cLitter", + "cSoil" + ], + "Lmon": [ + "burntFractionAll", + "nbp", + "cProduct", + "cLeaf", + "rh", + "cVeg", + "cRoot", + "ra", + "npp", + "gpp", + "cLitter" + ] +} diff --git a/ece2cmor/ece2cmor3/resources/pre-list-of-identified-missing-cmip6-requested-variables.xlsx b/ece2cmor/ece2cmor3/resources/pre-list-of-identified-missing-cmip6-requested-variables.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..af8fd66887f0d02c6687fb23e31be21379731dd1 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/pre-list-of-identified-missing-cmip6-requested-variables.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/pre-list-of-ignored-cmip6-requested-variables.xlsx b/ece2cmor/ece2cmor3/resources/pre-list-of-ignored-cmip6-requested-variables.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..278048e66c59b10495ad6204baba60eb763375f4 Binary files /dev/null and b/ece2cmor/ece2cmor3/resources/pre-list-of-ignored-cmip6-requested-variables.xlsx differ diff --git a/ece2cmor/ece2cmor3/resources/prefs.py b/ece2cmor/ece2cmor3/resources/prefs.py new file mode 100644 index 0000000000000000000000000000000000000000..351a0b4fdc58c1d0b5322549ad8bf72295caf5d7 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/prefs.py @@ -0,0 +1,75 @@ +import logging + +from ece2cmor3 import components, cmor_target + + +def keep_variable(target, model_component, ecearth_config): + variable = target.variable + table = target.table + + # If the component producing the variable is not in the configuration anyway, dismiss it + if ecearth_config in components.ece_configs and model_component not in components.ece_configs.get(ecearth_config): + return False + + # For tos, look at the requested grid to determine whether it should be nemo or ifs + if variable == "tos": + if "areacello" in getattr(target, "area_operator", []): + return model_component == "nemo" + if "areacella" in getattr(target, "area_operator", []): + return model_component == "ifs" + + # For these basic meteorological variables, let them be produced by tm5 for the AER* tables and otherwise ifs + if variable in ["pfull", "zg", "ps", "tas", "ua", "va", "o3"]: + if table.startswith("AER"): + return model_component == "tm5" + else: + return model_component == "ifs" + + # Soil moisture etc: prefer ifs over lpjguess in all cases (?) + if variable in ["mrso", "mrsol", "mrsos", "mrro", "mrros", "tsl"]: + return model_component == "ifs" + + # Carbon-cycle variables only activated in EC-EARTH-CC + if variable in ["cfc12", "cfc13", "c14", "sf6", \ + "bfe", "bfeos", "bsi", "bsios", "calc", "calcos", "chl", "chldiat", "chldiatos", \ + "chlmisc", "chlmiscos", "chlos", "co3", "co3os", "co3satcalc", "co3satcalcos", \ + "dcalc", "detoc", "detocos", "dfe", "dfeos", "dissic", "dissicnatos", "dissicos", \ + "dissoc", "dissocos", "dpco2", "dpo2", "epc100", "epcalc100", "epfe100", "epsi100", \ + "expc", "expcalc", "expfe", "expn", "expp", "expsi", "fbddtalk", "fbddtdic", "fbddtdife", \ + "fbddtdin", "fbddtdip", "fbddtdisi", "fgco2", "fgo2", "fric", "frn", "froc", "fsfe", \ + "fsn", "graz", "intdic", "intdoc", "intpbfe", "intpbsi", "intpcalcite", "intpn2", \ + "intpp", "intppcalc", "intppdiat", "intppmisc", "intppnitrate", "limfediat", "limfemisc", \ + "limirrdiat", "limirrmisc", "limndiaz", "limnmisc", "nh4", "nh4os", "no3", "no3os", "o2", \ + "o2min", "o2os", "pbfe", "pbsi", "pcalc", "ph", "phos", "phyc", "phycos", "phydiat", \ + "phydiatos", "phyfe", "phyfeos", "phymisc", "phymiscos", "physi", "physios", "pnitrate", \ + "po4", "po4os", "pp", "ppdiat", "ppmisc", "ppos", "remoc", "si", "sios", "spco2", "talk", \ + "talknatos", "talkos", "zmeso", "zmesoos", "zmicro", "zmicroos", "zo2min", "zooc", "zoocos"]: + return model_component == "nemo" and ecearth_config == "EC-EARTH-CC" + # The list above from the second line on is created by using: + # more basic-flat-cmip6-file_def_nemo.xml |grep pisces| sed -e 's/field_ref.*//' -e 's/^.*name=//' | sed -e 's/" .*$/",/' |sort |uniq > pisces-vars.txt + + return True + +def choose_variable(target_list, model_component, ecearth_config): + # For IFS, skip 3D variables on small level subsets in favor of extended level sets + if model_component == "ifs": + result = [] + level_sets = list(map(cmor_target.get_z_axis, target_list)) + for i in range(len(level_sets)): + level_type, levels = level_sets[i][0], set(level_sets[i][1]) + add_to_list = True + for level_type_other, levels_other in level_sets: + if level_type == level_type_other and levels.issubset(set(levels_other)) \ + and not set(levels_other).issubset(levels): + add_to_list = False + break + if add_to_list: + result.append(target_list[i]) + # Incompatible variables fix: zg7h and zg27 + vartabs = [(t.table, t.variable) for t in result] + if ("6hrPlevPt", "zg7h") in vartabs and ("6hrPlevPt", "zg27") in vartabs: + result.remove([t for t in target_list if (t.table, t.variable) == ("6hrPlevPt", "zg27")][0]) + return result + return target_list + + diff --git a/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/CMIP6_CV.json b/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/CMIP6_CV.json new file mode 100644 index 0000000000000000000000000000000000000000..b1742d5ca75b2774d35388d511f8e02d9bd3e157 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/CMIP6_CV.json @@ -0,0 +1,9123 @@ +{ + "CV":{ + "required_global_attributes":[ + "Conventions", + "activity_id", + "creation_date", + "data_specs_version", + "experiment", + "experiment_id", + "forcing_index", + "frequency", + "further_info_url", + "grid", + "grid_label", + "initialization_index", + "institution", + "institution_id", + "license", + "mip_era", + "nominal_resolution", + "physics_index", + "product", + "realization_index", + "realm", + "source", + "source_id", + "source_type", + "sub_experiment", + "sub_experiment_id", + "table_id", + "tracking_id", + "variable_id", + "variant_label" + ], + "version_metadata":{ + "CV_collection_modified":"Sun Dec 23 18:45:50 2018 -0800", + "CV_collection_version":"6.2.15.1", + "author":"Paul J. Durack ", + "experiment_id_CV_modified":"Thu Nov 29 10:12:56 2018 -0800", + "experiment_id_CV_note":"Revise experiment_id values, BGC as allowed component", + "institution_id":"PCMDI", + "previous_commit":"27357922199883d6c2ea89f412c60ea6130de6c9", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + }, + "activity_id":{ + "AerChemMIP":"Aerosols and Chemistry Model Intercomparison Project", + "C4MIP":"Coupled Climate Carbon Cycle Model Intercomparison Project", + "CDRMIP":"Carbon Dioxide Removal Model Intercomparison Project", + "CFMIP":"Cloud Feedback Model Intercomparison Project", + "CMIP":"CMIP DECK: 1pctCO2, abrupt4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments", + "CORDEX":"Coordinated Regional Climate Downscaling Experiment", + "DAMIP":"Detection and Attribution Model Intercomparison Project", + "DCPP":"Decadal Climate Prediction Project", + "DynVarMIP":"Dynamics and Variability Model Intercomparison Project", + "FAFMIP":"Flux-Anomaly-Forced Model Intercomparison Project", + "GMMIP":"Global Monsoons Model Intercomparison Project", + "GeoMIP":"Geoengineering Model Intercomparison Project", + "HighResMIP":"High-Resolution Model Intercomparison Project", + "ISMIP6":"Ice Sheet Model Intercomparison Project for CMIP6", + "LS3MIP":"Land Surface, Snow and Soil Moisture", + "LUMIP":"Land-Use Model Intercomparison Project", + "OMIP":"Ocean Model Intercomparison Project", + "PAMIP":"Polar Amplification Model Intercomparison Project", + "PMIP":"Palaeoclimate Modelling Intercomparison Project", + "RFMIP":"Radiative Forcing Model Intercomparison Project", + "SIMIP":"Sea Ice Model Intercomparison Project", + "ScenarioMIP":"Scenario Model Intercomparison Project", + "VIACSAB":"Vulnerability, Impacts, Adaptation and Climate Services Advisory Board", + "VolMIP":"Volcanic Forcings Model Intercomparison Project" + }, + "institution_id":{ + "AER":"Research and Climate Group, Atmospheric and Environmental Research, 131 Hartwell Avenue, Lexington, MA 02421, USA", + "AS-RCEC":"Research Center for Environmental Changes, Academia Sinica, Nankang, Taipei 11529, Taiwan", + "AWI":"Alfred Wegener Institute, Helmholtz Centre for Polar and Marine Research, Am Handelshafen 12, 27570 Bremerhaven, Germany", + "BCC":"Beijing Climate Center, Beijing 100081, China", + "BNU":"Beijing Normal University, Beijing 100875, China", + "CAMS":"Chinese Academy of Meteorological Sciences, Beijing 100081, China", + "CAS":"Chinese Academy of Sciences, Beijing 100029, China", + "CCCR-IITM":"Centre for Climate Change Research, Indian Institute of Tropical Meteorology Pune, Maharashtra 411 008, India", + "CCCma":"Canadian Centre for Climate Modelling and Analysis, Victoria, BC V8P 5C2, Canada", + "CMCC":"Fondazione Centro Euro-Mediterraneo sui Cambiamenti Climatici, Lecce 73100, Italy", + "CNRM-CERFACS":"CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)", + "CSIR-CSIRO":"CSIR (Council for Scientific and Industrial Research - Natural Resources and the Environment, Pretoria, 0001, South Africa), CSIRO (Commonwealth Scientific and Industrial Research Organisation and Bureau of Meteorology, Melbourne, Victoria 3208, Australia)", + "CSIRO":"Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia", + "CSIRO-ARCCSS-BoM":"Commonwealth Scientific and Industrial Research Organisation, Australian Research Council Centre of Excellence for Climate System Science, and Bureau of Meteorology, Aspendale, Victoria 3195, Australia", + "DKRZ":"Deutsches Klimarechenzentrum, Hamburg 20146, Germany", + "DWD":"Deutscher Wetterdienst, Offenbach am Main 63067, Germany", + "E3SM-Project":"LLNL (Lawrence Livermore National Laboratory, Livermore, CA 94550, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545, USA); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); PNNL (Pacific Northwest National Laboratory, Richland, WA 99352, USA); SNL (Sandia National Laboratories, Albuquerque, NM 87185, USA). Mailing address: LLNL Climate Program, c/o David C. Bader, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA", + "EC-Earth-Consortium":"AEMET, Spain; BSC, Spain; CNR-ISAC, Italy; DMI, Denmark; ENEA, Italy; FMI, Finland; Geomar, Germany; ICHEC, Ireland; ICTP, Italy; IDL, Portugal; IMAU, The Netherlands; IPMA, Portugal; KIT, Karlsruhe, Germany; KNMI, The Netherlands; Lund University, Sweden; Met Eireann, Ireland; NLeSC, The Netherlands; NTNU, Norway; Oxford University, UK; surfSARA, The Netherlands; SMHI, Sweden; Stockholm University, Sweden; Unite ASTR, Belgium; University College Dublin, Ireland; University of Bergen, Norway; University of Copenhagen, Denmark; University of Helsinki, Finland; University of Santiago de Compostela, Spain; Uppsala University, Sweden; Utrecht University, The Netherlands; Vrije Universiteit Amsterdam, the Netherlands; Wageningen University, The Netherlands. Mailing address: EC-Earth consortium, Rossby Center, Swedish Meteorological and Hydrological Institute/SMHI, SE-601 76 Norrkoping, Sweden", + "ECMWF":"European Centre for Medium-Range Weather Forecasts, Reading RG2 9AX, UK", + "FIO-QLNM":"FIO (First Institute of Oceanography, State Oceanic Administration, Qingdao 266061, China), QNLM (Qingdao National Laboratory for Marine Science and Technology, Qingdao 266237, China)", + "HAMMOZ-Consortium":"ETH Zurich, Switzerland; Max Planck Institut fur Meteorologie, Germany; Forschungszentrum Julich, Germany; University of Oxford, UK; Finnish Meteorological Institute, Finland; Leibniz Institute for Tropospheric Research, Germany; Center for Climate Systems Modeling (C2SM) at ETH Zurich, Switzerland", + "INM":"Institute for Numerical Mathematics, Russian Academy of Science, Moscow 119991, Russia", + "INPE":"National Institute for Space Research, Cachoeira Paulista, SP 12630-000, Brazil", + "IPSL":"Institut Pierre Simon Laplace, Paris 75252, France", + "KIOST":"Korea Institute of Ocean Science & Technology, Busan 49111, Republic of Korea", + "MESSy-Consortium":"The Modular Earth Submodel System (MESSy) Consortium, represented by the Institute for Physics of the Atmosphere, Deutsches Zentrum fur Luft- und Raumfahrt (DLR), Wessling, Bavaria 82234, Germany", + "MIROC":"JAMSTEC (Japan Agency for Marine-Earth Science and Technology, Kanagawa 236-0001, Japan), AORI (Atmosphere and Ocean Research Institute, The University of Tokyo, Chiba 277-8564, Japan), NIES (National Institute for Environmental Studies, Ibaraki 305-8506, Japan), and R-CCS (RIKEN Center for Computational Science, Hyogo 650-0047, Japan)", + "MOHC":"Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK", + "MPI-M":"Max Planck Institute for Meteorology, Hamburg 20146, Germany", + "MRI":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "NASA-GISS":"Goddard Institute for Space Studies, New York, NY 10025, USA", + "NCAR":"National Center for Atmospheric Research, Climate and Global Dynamics Laboratory, 1850 Table Mesa Drive, Boulder, CO 80305, USA", + "NCC":"NorESM Climate modeling Consortium consisting of CICERO (Center for International Climate and Environmental Research, Oslo 0349), MET-Norway (Norwegian Meteorological Institute, Oslo 0313), NERSC (Nansen Environmental and Remote Sensing Center, Bergen 5006), NILU (Norwegian Institute for Air Research, Kjeller 2027), UiB (University of Bergen, Bergen 5007), UiO (University of Oslo, Oslo 0313) and UNI (Uni Research, Bergen 5008), Norway. Mailing address: NCC, c/o MET-Norway, Henrik Mohns plass 1, Oslo 0313, Norway", + "NERC":"Natural Environment Research Council, STFC-RAL, Harwell, Oxford, OX11 0QX, UK", + "NIMS-KMA":"National Institute of Meteorological Sciences/Korea Meteorological Administration, Climate Research Division, Seoho-bukro 33, Seogwipo-si, Jejudo 63568, Republic of Korea", + "NIWA":"National Institute of Water and Atmospheric Research, Hataitai, Wellington 6021, New Zealand", + "NOAA-GFDL":"National Oceanic and Atmospheric Administration, Geophysical Fluid Dynamics Laboratory, Princeton, NJ 08540, USA", + "NUIST":"Nanjing University of Information Science and Technology, Nanjing, 210044, China", + "PCMDI":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "SNU":"Seoul National University, Seoul 08826, Republic of Korea", + "THU":"Department of Earth System Science, Tsinghua University, Beijing 100084, China", + "UA":"Department of Geosciences, University of Arizona, Tucson, AZ 85721, USA", + "UHH":"Universitat Hamburg, Hamburg 20148, Germany", + "UTAS":"Institute for Marine and Antarctic Studies, University of Tasmania, Hobart, Tasmania 7001, Australia", + "UofT":"Department of Physics, University of Toronto, 60 St George Street, Toronto, ON M5S1A7, Canada" + }, + "source_id":{ + "ACCESS-CM2":{ + "activity_participation":[ + "CMIP", + "FAFMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CSIRO-ARCCSS-BoM" + ], + "source_id":"ACCESS-CM2", + "source":"ACCESS-CM2 (2018): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: CABLE2.3.5\nlandIce: none\nocean: ACCESS-OM2 (GFDL-MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE5.1 (same grid as ocean)" + }, + "ACCESS-ESM1-5":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CSIRO" + ], + "source_id":"ACCESS-ESM1-5", + "source":"ACCESS-ESM1.5 (2018): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)\natmosChem: none\nland: CABLE2.2.3\nlandIce: none\nocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: WOMBAT1.0 (same grid as ocean)\nseaIce: CICE5.1 (same grid as ocean)" + }, + "ARTS-2-3":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UHH" + ], + "source_id":"ARTS-2-3", + "source":"ARTS 2.3 (2015): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "AWI-CM-1-1-HR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "HighResMIP", + "OMIP", + "SIMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "source_id":"AWI-CM-1-1-HR", + "source":"AWI-CM 1.1 HR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 1306775 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-CM-1-1-LR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "source_id":"AWI-CM-1-1-LR", + "source":"AWI-CM 1.1 LR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-CM-1-1-MR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "source_id":"AWI-CM-1-1-MR", + "source":"AWI-CM 1.1 MR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 830305 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-ESM-1-1-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "source_id":"AWI-ESM-1-1-LR", + "source":"AWI-ESM 1.1 LR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20 with dynamic vegetation\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "BCC-CSM2-HR":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BCC" + ], + "source_id":"BCC-CSM2-HR", + "source":"BCC-CSM 2 HR (2017): \naerosol: none\natmos: BCC_AGCM3_HR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)\natmosChem: none\nland: BCC_AVIM2\nlandIce: none\nocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS2" + }, + "BCC-CSM2-MR":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "LS3MIP", + "LUMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BCC" + ], + "source_id":"BCC-CSM2-MR", + "source":"BCC-CSM 2 MR (2017): \naerosol: none\natmos: BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)\natmosChem: none\nland: BCC_AVIM2\nlandIce: none\nocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS2" + }, + "BCC-ESM1":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BCC" + ], + "source_id":"BCC-ESM1", + "source":"BCC-ESM 1 (2017): \naerosol: none\natmos: BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)\natmosChem: BCC-AGCM3-Chem\nland: BCC_AVIM2\nlandIce: none\nocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS2" + }, + "BESM-2-7":{ + "activity_participation":[ + "CMIP", + "DCPP", + "HighResMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INPE" + ], + "source_id":"BESM-2-7", + "source":"BESM 2.7 (2017): \naerosol: none\natmos: BAM (v1.0, T062L28; 192 x 96 longitude/latitude; 28 levels; top level 3 hPa)\natmosChem: none\nland: SSiB 2.0\nlandIce: none\nocean: MOM-5 (MOM5, tripolar primarily 1 deg, 1/4 deg between 10S-10N; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: TOPAZ 2.0\nseaIce: SIS 1.0" + }, + "BNU-ESM-1-1":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "GMMIP", + "GeoMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BNU" + ], + "source_id":"BNU-ESM-1-1", + "source":"BNU-ESM 1.1 (2016): \naerosol: CAM-chem; semi-interactive\natmos: CAM4 (2deg; 144 x 96 longitude/latitude; 26 levels; top level 2.194 mb)\natmosChem: none\nland: CoLM version 2014 with carbon-nitrogen interactions\nlandIce: none\nocean: MOM4p1 (tripolar, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: Dynamic ecosystem-carbon model version 1\nseaIce: CICE4.1" + }, + "CAMS-CSM1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAMS" + ], + "source_id":"CAMS-CSM1-0", + "source":"CAMS_CSM 1.0 (2016): \naerosol: none\natmos: ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)\natmosChem: none\nland: CoLM 1.0\nlandIce: none\nocean: MOM4 (tripolar; 360 x 200 longitude/latitude, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS 1.0" + }, + "CAS-ESM1-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "source_id":"CAS-ESM1-0", + "source":"CAS-ESM 1.0 (2015): \naerosol: IAP AACM\natmos: IAP AGCM4.1 (Finite difference dynamical core; 256 x 128 longitude/latitude; 30 levels; top level 2.2 hPa)\natmosChem: IAP AACM\nland: CoLM\nlandIce: none\nocean: LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)\nocnBgchem: IAP OBGCM\nseaIce: CICE4" + }, + "CESM2":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCAR" + ], + "source_id":"CESM2", + "source":"CESM2 (2018): \naerosol: MAM4 (same grid as atmos)\natmos: CAM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)\natmosChem: MAM4 (same grid as atmos)\nland: CLM5 (same grid as atmos)\nlandIce: CISM2.1\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: MARBL (same grid as ocean)\nseaIce: CICE5.1 (same grid as ocean)" + }, + "CIESM":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "CORDEX", + "GMMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "THU" + ], + "source_id":"CIESM", + "source":"CIESM (2017): \naerosol: MAM4\natmos: CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)\natmosChem: trop_mam4\nland: CIESM-LM (modified CLM4.5)\nlandIce: none\nocean: CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)\nocnBgchem: none\nseaIce: CICE4" + }, + "CMCC-CM2-HR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-CM2-HR4", + "source":"CMCC-CM2-HR4 (2016): \naerosol: prescribed MACv2-SP\natmos: CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (SP mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-CM2-HR5":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-CM2-HR5", + "source":"CMCC-CM2-HR5 (2017): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-CM2-SR5":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-CM2-SR5", + "source":"CMCC-CM2-SR5 (2016): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-CM2-VHR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-CM2-VHR4", + "source":"CMCC-CM2-VHR4 (2017): \naerosol: prescribed MACv2-SP\natmos: CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (SP mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-ESM2-HR5":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-ESM2-HR5", + "source":"CMCC-ESM2-HR5 (2017): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: BFM5.1\nseaIce: CICE4.0" + }, + "CMCC-ESM2-SR5":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "LS3MIP", + "LUMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-ESM2-SR5", + "source":"CMCC-ESM2-SR5 (2017): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: BFM5.1\nseaIce: CICE4.0" + }, + "CNRM-CM6-1":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "PAMIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "source_id":"CNRM-CM6-1", + "source":"CNRM-CM6-1 (2017): \naerosol: prescribed monthly fields computed by TACTIC_v2 scheme\natmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)\natmosChem: OZL_v2\nland: Surfex 8.0c\nlandIce: GRISLI: Collaborating with l'Institut des Geosciences de l'Environnement in Grenoble on offline ice-sheet simulations\nocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: Gelato 6.1" + }, + "CNRM-CM6-1-HR":{ + "activity_participation":[ + "CMIP", + "DCPP", + "HighResMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "source_id":"CNRM-CM6-1-HR", + "source":"CNRM-CM6-1-HR (2017): \naerosol: prescribed monthly fields computed by TACTIC_v2 scheme\natmos: Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)\natmosChem: OZL_v2\nland: Surfex 8.0c\nlandIce: none\nocean: Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: Gelato 6.1" + }, + "CNRM-ESM2-1":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "CORDEX", + "GeoMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "source_id":"CNRM-ESM2-1", + "source":"CNRM-ESM2-1 (2017): \naerosol: TACTIC_v2\natmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)\natmosChem: REPROBUS-C_v2\nland: Surfex 8.0c\nlandIce: none\nocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: Pisces 2.s\nseaIce: Gelato 6.1" + }, + "CNRM-ESM2-1-HR":{ + "activity_participation":[ + "CMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "source_id":"CNRM-ESM2-1-HR", + "source":"CNRM-ESM2-1-HR (2017): \naerosol: TACTIC_v2\natmos: Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)\natmosChem: REPROBUS-C_v2\nland: Surfex 8.0c\nlandIce: none\nocean: Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: Pisces 2.s\nseaIce: Gelato 6.1" + }, + "CSIRO-Mk3L-1-3":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UTAS" + ], + "source_id":"CSIRO-Mk3L-1-3", + "source":"CSIRO Mk3L 1.3 (2006): \naerosol: none\natmos: unnamed (R21; 64 x 56 longitude/latitude; 18 levels; top level 36355 m)\natmosChem: none\nland: unnamed\nlandIce: none\nocean: MOM1.x (128 x 112 longitude/latitude; 31 levels; top grid cell 0-10 m; bottom grid cell 4600-5000 m)\nocnBgchem: none\nseaIce: unnamed (same grid as atmosphere)" + }, + "CanESM5":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CCCma" + ], + "source_id":"CanESM5", + "source":"CanESM5 (2017): \naerosol: interactive\natmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: CLASS3.6/CTEM1.2\nlandIce: none\nocean: NEMO3.4.1 (ORCA1, tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 362 x 292 longitude/latitude; 41 vertical levels; top grid cell 0-10 m)\nocnBgchem: CanOE\nseaIce: LIM2" + }, + "E3SM-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "E3SM-Project" + ], + "source_id":"E3SM-1-0", + "source":"E3SM 1.0 (2018): \naerosol: MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)\natmos: EAM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)\natmosChem: Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)\nland: ELM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; satellite phenology mode), MOSART (v1.0, 0.5 degree latitude/longitude grid)\nlandIce: none\nocean: MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: MPAS-Seaice (v6.0, same grid as ocean)" + }, + "EC-Earth3":{ + "activity_participation":[ + "CMIP", + "DCPP", + "LS3MIP", + "PAMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP", + "CORDEX", + "DynVarMIP", + "SIMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3", + "source":"EC-Earth3 (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-AerChem":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-AerChem", + "source":"EC-Earth3-AerChem (2019): \naerosol: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-CC":{ + "activity_participation":[ + "CDRMIP", + "CMIP", + "C4MIP", + "LUMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-CC", + "source":"EC-Earth3-CC (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: PISCES v2\nseaIce: LIM3" + }, + "EC-Earth3-GrIS":{ + "activity_participation":[ + "CMIP", + "ISMIP6", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-GrIS", + "source":"EC-Earth3-GrIS (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: PISM 0.7 (5 km x 5 km, 442 levels)\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-HR":{ + "activity_participation":[ + "CMIP", + "DCPP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-HR", + "source":"EC-Earth3-HR (2017): \naerosol: none\natmos: IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA025 tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-LR", + "source":"EC-Earth3-LR (2019): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-Veg":{ + "activity_participation":[ + "CDRMIP", + "CMIP", + "LUMIP", + "LS3MIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-Veg", + "source":"EC-Earth3-Veg (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-Veg-LR":{ + "activity_participation":[ + "CMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-Veg-LR", + "source":"EC-Earth3-Veg-LR (2019): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3P", + "source":"EC-Earth3P (2017): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3P-HR", + "source":"EC-Earth3P-HR (2017): \naerosol: none\natmos: IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA025; tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P-VHR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3P-VHR", + "source":"EC-Earth3P-VHR (2017): \naerosol: none\natmos: IFS cy36r4 (TL1279, linearly reduced Gaussian grid equivalent to 2560 x 1280 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA012 tripolar primarily 0.08 degrees; 4322 x 3059 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "ECMWF-IFS-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "ECMWF" + ], + "source_id":"ECMWF-IFS-HR", + "source":"ECMWF-IFS-HR (2017): \naerosol: none\natmos: IFS (IFS CY43R1, Tco399, cubic octahedral reduced Gaussian grid equivalent to 1600 x 800 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (as implemented in IFS CY43R1)\nlandIce: none\nocean: NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)" + }, + "ECMWF-IFS-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "ECMWF" + ], + "source_id":"ECMWF-IFS-LR", + "source":"ECMWF-IFS-LR (2017): \naerosol: none\natmos: IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (as implemented in IFS CY43R1)\nlandIce: none\nocean: NEMO3.4 (NEMO v3.4; ORCA1 tripolar grid; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)" + }, + "ECMWF-IFS-MR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "ECMWF" + ], + "source_id":"ECMWF-IFS-MR", + "source":"ECMWF-IFS-MR (2017): \naerosol: none\natmos: IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (as implemented in IFS CY43R1)\nlandIce: none\nocean: NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)" + }, + "EMAC-2-53-AerChem":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MESSy-Consortium" + ], + "source_id":"EMAC-2-53-AerChem", + "source":"EMAC-2-53-AerChem (2017): \naerosol: gmxe 2.2.x\natmos: ECHAM5.3.02 (modified, spectral T42; 128 x 64 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: MECCA 3.8.x\nland: same as Atmosphere\nlandIce: none\nocean: MPIOM 1.3.0-beta (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: none\nseaIce: thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model" + }, + "EMAC-2-53-Vol":{ + "activity_participation":[ + "CMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MESSy-Consortium" + ], + "source_id":"EMAC-2-53-Vol", + "source":"EMAC-2-53-Vol (2017): \naerosol: gmxe 2.2.x\natmos: ECHAM5.3.02 (modified; spectral T42; 128 x 64 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: MECCA 3.8.x\nland: same as Atmosphere\nlandIce: none\nocean: MPIOM 1.3.0-beta (bipolar GR1.5, approximately 1.5deg reducing toward the poles; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: none\nseaIce: thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model" + }, + "FGOALS-f3-H":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "source_id":"FGOALS-f3-H", + "source":"FGOALS-f3-H (2017): \naerosol: none\natmos: FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: LICOM3.0 (LICOM3.0, tripolar primarily 0.1deg; 3600 x 2302 longitude/latitude; 55 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "FGOALS-f3-L":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "OMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "source_id":"FGOALS-f3-L", + "source":"FGOALS-f3-L (2017): \naerosol: none\natmos: FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "FGOALS-g3":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "LS3MIP", + "OMIP", + "PMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "source_id":"FGOALS-g3", + "source":"FGOALS-g3 (2017): \naerosol: none\natmos: GAMIL2 (180 x 90 longitude/latitude; 26 levels; top level 2.19hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "FIO-ESM-2-0":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "OMIP", + "ScenarioMIP", + "SIMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "FIO-QLNM" + ], + "source_id":"FIO-ESM-2-0", + "source":"FIO-ESM 2.0 (2018): \naerosol: Prescribed monthly fields\natmos: CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)\natmosChem: none\nland: CLM4.0 (same grid at atmos)\nlandIce: none\nocean: POP2-W (POP2 coupled with MASNUM surface wave model, Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0 (same grid as ocean)" + }, + "GFDL-AM4":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-AM4", + "source":"GFDL-AM4 (2018): \naerosol: interactive\natmos: GFDL-AM4.0 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: GFDL-LM4.0\nlandIce: GFDL-LM4.0\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "GFDL-CM4":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DynVarMIP", + "GMMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-CM4", + "source":"GFDL-CM4 (2018): \naerosol: interactive\natmos: GFDL-AM4.0.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: GFDL-LM4.0.1 (1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 20 levels; bottom level 10m); land-Veg:unnamed (dynamic vegetation, dynamic land use); land-Hydro:unnamed (soil water and ice, multi-layer snow, rivers and lakes)\nlandIce: GFDL-LM4.0.1\nocean: GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: GFDL-BLINGv2\nseaIce: GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-CM4C192":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-CM4C192", + "source":"GFDL-CM4C192 (2018): \naerosol: interactive\natmos: GFDL-AM4C192 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: GFDL-LM4.0.1\nlandIce: GFDL-LM4.0.1\nocean: GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: none\nseaIce: GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-ESM2M":{ + "activity_participation":[ + "FAFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-ESM2M", + "source":"GFDL-ESM2M (2012): \naerosol: prescribed\natmos: GFDL-AM2 (144 x 90 longitude/latitude; 24 levels; top level 1 hPa)\natmosChem: prescribed\nland: GFDL-LM3.0\nlandIce: GFDL-LM3.0\nocean: GFDL-MOM4p1 (tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: GFDL-TOPAZ2\nseaIce: GFDL-SIM2 (GFDL-SIS, tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 3 layers; 5 thickness categories)" + }, + "GFDL-ESM4":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "LUMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-ESM4", + "source":"GFDL-ESM4 (2018): \naerosol: interactive\natmos: GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 49 levels; top level 1 Pa)\natmosChem: GFDL-ATMCHEM4.1 (full atmospheric chemistry)\nland: GFDL-LM4.1\nlandIce: GFDL-LM4.1\nocean: GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: GFDL-COBALTv2\nseaIce: GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-OM4p5B":{ + "activity_participation":[ + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-OM4p5B", + "source":"GFDL-OM4p5B (2018): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: GFDL-BLINGv2\nseaIce: GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GISS-E2-1-G":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "source_id":"GISS-E2-1-G", + "source":"GISS-E2.1G (2016): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: GISS Ocean (1 degree; 360 x 180 latitude/longitude; 32 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "GISS-E2-1-H":{ + "activity_participation":[ + "CMIP", + "OMIP", + "PAMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "source_id":"GISS-E2-1-H", + "source":"GISS-E2.1H (2016): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: HYCOM Ocean (~1 degree tripolar grid; 360 x 180 latitude/longitude; 26 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "GISS-E2-1-MA-G":{ + "activity_participation":[ + "CMIP", + "RFMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "source_id":"GISS-E2-1-MA-G", + "source":"GISS-E2.1MA-G (2018): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.1MA (2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "GISS-E3-G":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "source_id":"GISS-E3-G", + "source":"GISS-E3-G (2018): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E3 (Cubed sphere, C90; 90 x 90 x 6 gridboxes/cubeface, grid resolution aligns with longitude/latitude along central lines for each cubeface; 102 levels; top level 0.002 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "HadGEM3-GC31-HH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "source_id":"HadGEM3-GC31-HH", + "source":"HadGEM3-GC31-HH (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)" + }, + "HadGEM3-GC31-HM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "source_id":"HadGEM3-GC31-HM", + "source":"HadGEM3-GC31-HM (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "HadGEM3-GC31-LL":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "FAFMIP", + "HighResMIP", + "PMIP", + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "source_id":"HadGEM3-GC31-LL", + "source":"HadGEM3-GC31-LL (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)" + }, + "HadGEM3-GC31-LM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "source_id":"HadGEM3-GC31-LM", + "source":"HadGEM3-GC31-LM (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "HadGEM3-GC31-MH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "source_id":"HadGEM3-GC31-MH", + "source":"HadGEM3-GC31-MH (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)" + }, + "HadGEM3-GC31-MM":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "HighResMIP", + "LS3MIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "source_id":"HadGEM3-GC31-MM", + "source":"HadGEM3-GC31-MM (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "ICON-ESM-LR":{ + "activity_participation":[ + "CMIP", + "OMIP", + "SIMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MPI-M" + ], + "source_id":"ICON-ESM-LR", + "source":"ICON-ESM-LR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH4.20\nlandIce: none/prescribed\nocean: ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "IITM-ESM":{ + "activity_participation":[ + "CMIP", + "GMMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CCCR-IITM" + ], + "source_id":"IITM-ESM", + "source":"IITM-ESM (2015): \naerosol: prescribed MAC-v2\natmos: IITM-GFSv1 (T62L64, Linearly Reduced Gaussian Grid; 192 x 94 longitude/latitude; 64 levels; top level 0.2 mb)\natmosChem: none\nland: NOAH LSMv2.7.1\nlandIce: none\nocean: MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: TOPAZv2.0\nseaIce: SISv1.0" + }, + "INM-CM4-8":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INM" + ], + "source_id":"INM-CM4-8", + "source":"INM-CM4-8 (2016): \naerosol: INM-AER1\natmos: INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)\natmosChem: none\nland: INM-LND1\nlandIce: none\nocean: INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)\nocnBgchem: none\nseaIce: INM-ICE1" + }, + "INM-CM5-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INM" + ], + "source_id":"INM-CM5-0", + "source":"INM-CM5-0 (2016): \naerosol: INM-AER1\natmos: INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)\natmosChem: none\nland: INM-LND1\nlandIce: none\nocean: INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)\nocnBgchem: none\nseaIce: INM-ICE1" + }, + "INM-CM5-H":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INM" + ], + "source_id":"INM-CM5-H", + "source":"INM-CM5-H (2016): \naerosol: INM-AER1\natmos: INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)\natmosChem: none\nland: INM-LND1\nlandIce: none\nocean: INM-OM5-H (North Pole shifted to 60N, 90E. 0.167x0.125; 2160x1440 longitude/latitude; 40 levels; vertical sigma coordinate)\nocnBgchem: none\nseaIce: INM-ICE1" + }, + "IPSL-CM6A-ATM-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "IPSL" + ], + "source_id":"IPSL-CM6A-ATM-HR", + "source":"IPSL-CM6A-ATM-HR (2018): \naerosol: none\natmos: LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 40000 m)\natmosChem: none\nland: ORCHIDEE (v2.0, Water/Carbon/Energy mode)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "IPSL-CM6A-LR":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "IPSL" + ], + "source_id":"IPSL-CM6A-LR", + "source":"IPSL-CM6A-LR (2017): \naerosol: none\natmos: LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 40000 m)\natmosChem: none\nland: ORCHIDEE (v2.0, Water/Carbon/Energy mode)\nlandIce: none\nocean: NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: NEMO-PISCES\nseaIce: NEMO-LIM3" + }, + "KACE-1-0-G":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NIMS-KMA" + ], + "source_id":"KACE-1-0-G", + "source":"KACE1.0-G (2018): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)" + }, + "KIOST-ESM":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "DynVarMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "KIOST" + ], + "source_id":"KIOST-ESM", + "source":"KIOST-ESM (2018): \naerosol: none\natmos: GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)\natmosChem: Simple carbon aerosol model (emission type)\nland: NCAR-CLM4\nlandIce: NCAR-CLM4\nocean: GFDL-MOM5.0 (tripolar - nominal 1.0 deg; 360 x 200 longitude/latitude; 52 levels; top grid cell 0-2 m; NK mixed layer scheme)\nocnBgchem: TOPAZ2\nseaIce: GFDL-SIS" + }, + "LBLRTM":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AER" + ], + "source_id":"LBLRTM", + "source":"LBLRTM (2017): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "MCM-UA-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UA" + ], + "source_id":"MCM-UA-1-0", + "source":"MCM-UA-1-0 (1991): \naerosol: Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)\natmos: R30L14 (3.75 X 2.5 degree (long-lat) configuration; 96 x 80 longitude/latitude; 14 levels; top level 0.015 sigma, 15 mb)\natmosChem: none\nland: Standard Manabe bucket hydrology scheme (Manabe 1969, doi: 10.1175/1520-0493(1969)097<0739:CATOC>2.3.CO;2)\nlandIce: Specified location - invariant in time, has high albedo and latent heat capacity\nocean: MOM1.0 (MOM1, 1.875 X 2.5 deg; 192 x 80 longitude/latitude; 18 levels; top grid cell 0-40 m)\nocnBgchem: none\nseaIce: Thermodynamic ice model (free drift dynamics)" + }, + "MIROC-ES2H":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "DynVarMIP", + "GeoMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"MIROC-ES2H", + "source":"MIROC-ES2H (2018): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)\natmosChem: CHASER4.0\nland: MATSIRO6.0+VISIT-e ver.1.0\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles\nseaIce: COCO4.9" + }, + "MIROC-ES2L":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DynVarMIP", + "GeoMIP", + "LUMIP", + "OMIP", + "PMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"MIROC-ES2L", + "source":"MIROC-ES2L (2018): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)\natmosChem: none\nland: MATSIRO6.0+VISIT-e ver.1.0\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles\nseaIce: COCO4.9" + }, + "MIROC6":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "HighResMIP", + "LS3MIP", + "OMIP", + "PAMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"MIROC6", + "source":"MIROC6 (2017): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)\natmosChem: none\nland: MATSIRO6.0\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: none\nseaIce: COCO4.9" + }, + "MPI-ESM-1-2-HAM":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "HAMMOZ-Consortium" + ], + "source_id":"MPI-ESM-1-2-HAM", + "source":"MPI-ESM1.2-HAM (2017): \naerosol: HAM2.3\natmos: ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: sulfur chemistry (unnamed)\nland: JSBACH 3.20\nlandIce: none\nocean: MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC6\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MPI-ESM1-2-HR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DCPP", + "DynVarMIP", + "FAFMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MPI-M", + "DWD", + "DKRZ" + ], + "source_id":"MPI-ESM1-2-HR", + "source":"MPI-ESM1.2-HR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)\natmosChem: none\nland: JSBACH3.20\nlandIce: none/prescribed\nocean: MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MPI-ESM1-2-LR":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MPI-M", + "AWI" + ], + "source_id":"MPI-ESM1-2-LR", + "source":"MPI-ESM1.2-LR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: none\nland: JSBACH3.20\nlandIce: none/prescribed\nocean: MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MRI-AGCM3-2":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MRI" + ], + "source_id":"MRI-AGCM3-2", + "source":"MRI-AGCM3-2 (2017): \naerosol: Prescribed from MRI-ESM2.0\natmos: MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)\natmosChem: none\nland: SIB0109\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "MRI-ESM2-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "LS3MIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MRI" + ], + "source_id":"MRI-ESM2-0", + "source":"MRI-ESM2.0 (2017): \naerosol: MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)\natmos: MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)\natmosChem: MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)\nland: HAL 1.0\nlandIce: none\nocean: MRI.COM4.4 (tripolar primarily 0.5 deg latitude/1 deg longitude with meridional refinement down to 0.3 deg within 10 degrees north and south of the equator; 360 x 364 longitude/latitude; 61 levels; top grid cell 0-2 m)\nocnBgchem: MRI.COM4.4\nseaIce: MRI.COM4.4" + }, + "NESM3":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "GeoMIP", + "PMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NUIST" + ], + "source_id":"NESM3", + "source":"NESM v3 (2016): \naerosol: none\natmos: ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)\natmosChem: none\nland: JSBACH v3.1\nlandIce: none\nocean: NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)\nocnBgchem: none\nseaIce: CICE4.1" + }, + "NICAM16-7S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"NICAM16-7S", + "source":"NICAM16-7S (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (56km icosahedral grid; 163,842 grid cells (=10*4^7+2); 38 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NICAM16-8S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"NICAM16-8S", + "source":"NICAM16-8S (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (28km icosahedral grid; 655,362 grid cells (=10*4^8+2); 38 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NICAM16-9D-L78":{ + "activity_participation":[ + "CFMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"NICAM16-9D-L78", + "source":"NICAM16-9D-L78 (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 78 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NICAM16-9S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"NICAM16-9S", + "source":"NICAM16-9S (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 38 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NorESM2-HH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-HH", + "source":"NorESM2-HH (2018): \naerosol: OsloAero\natmos: CAM-OSLO (0.25 degree resolution; 1152 x 768; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (0.25 degree resolution; 1440 x 1152; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-LM":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-LM", + "source":"NorESM2-LM (2017): \naerosol: OsloAero\natmos: CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-LME":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "GeoMIP", + "LUMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-LME", + "source":"NorESM2-LME (2017): \naerosol: OsloAero\natmos: CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-LMEC":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-LMEC", + "source":"NorESM2-LMEC (2017): \naerosol: OsloAero\natmos: CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)\natmosChem: OsloChemComp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-MH":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-MH", + "source":"NorESM2-MH (2017): \naerosol: OsloAero\natmos: CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (0.25 degree resolution; 1440 x 1152; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-MM":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-MM", + "source":"NorESM2-MM (2017): \naerosol: OsloAero\natmos: CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "PCMDI-test-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "PCMDI" + ], + "source_id":"PCMDI-test-1-0", + "source":"PCMDI-test 1.0 (1989): \naerosol: none\natmos: Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)\natmosChem: none\nland: Earth1.0\nlandIce: none\nocean: BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: Declining1.0-warming (360 x 180 longitude/latitude)" + }, + "SAM0-UNICON":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "SNU" + ], + "source_id":"SAM0-UNICON", + "source":"SAM0-UNICON (2017): \naerosol: MAM3\natmos: CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "TaiESM1":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "GMMIP", + "LUMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AS-RCEC" + ], + "source_id":"TaiESM1", + "source":"TaiESM 1.0 (2018): \naerosol: SNAP (same grid as atmos)\natmos: TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)\natmosChem: SNAP (same grid as atmos)\nland: CLM4.0 (same grid as atmos)\nlandIce: none\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4" + }, + "UKESM1-0-LL":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CMIP", + "GeoMIP", + "LUMIP", + "OMIP", + "PMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC", + "NIMS-KMA", + "NIWA" + ], + "source_id":"UKESM1-0-LL", + "source":"UKESM1.0-LL (2018): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: UKCA-StratTrop\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: MEDUSA2\nseaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)" + }, + "UKESM1-0-MMh":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "source_id":"UKESM1-0-MMh", + "source":"UKESM1.0-MMh (2018): \naerosol: UKCA-GLOMAP-mode (horizontal resolution degraded relative to that used for atmosphere physics)\natmos: MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)\natmosChem: UKCA-StratTrop (horizontal resolution degraded relative to that used for atmosphere physics)\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: MEDUSA2 (horizontal resolution degraded relative to that used for ocean physics)\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "UofT-CCSM4":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UofT" + ], + "source_id":"UofT-CCSM4", + "source":"UofT-CCSM4 (2014): \naerosol: unnamed\natmos: CAM4 (finite-volume dynamical core; 288 x 192 longitude/latitude; 26 levels; top level ~2 hPa)\natmosChem: none\nland: CLM4\nlandIce: none\nocean: POP2 (displaced dipole grid; 384 x 320 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4" + }, + "VRESM-1-0":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "HighResMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CSIR-CSIRO" + ], + "source_id":"VRESM-1-0", + "source":"VRESM 1.0 (2016): \naerosol: Rotstayn-1.0\natmos: VCAM-1.0 (C192; 192 x 192 x 6 longitude/latitude/cubeface; 35 levels; top level 35km)\natmosChem: none\nland: CABLE v2.2.3\nlandIce: none\nocean: VCOM-1.0 (C192; 384 x 384 x 6 longitude/latitude/cubeface; 35 levels; top grid cell 0-10 m)\nocnBgchem: PISCES v3.4socco\nseaIce: CSIR-ICE (visco-plastic)" + } + }, + "source_type":{ + "AER":"aerosol treatment in an atmospheric model where concentrations are calculated based on emissions, transformation, and removal processes (rather than being prescribed or omitted entirely)", + "AGCM":"atmospheric general circulation model run with prescribed ocean surface conditions and usually a model of the land surface", + "AOGCM":"coupled atmosphere-ocean global climate model, additionally including explicit representation of at least the land and sea ice", + "BGC":"biogeochemistry model component that at the very least accounts for carbon reservoirs and fluxes in the atmosphere, terrestrial biosphere, and ocean", + "CHEM":"chemistry treatment in an atmospheric model that calculates atmospheric oxidant concentrations (including at least ozone), rather than prescribing them", + "ISM":"ice-sheet model that includes ice-flow", + "LAND":"land model run uncoupled from the atmosphere", + "OGCM":"ocean general circulation model run uncoupled from an AGCM but, usually including a sea-ice model", + "RAD":"radiation component of an atmospheric model run 'offline'", + "SLAB":"slab-ocean used with an AGCM in representing the atmosphere-ocean coupled system" + }, + "frequency":{ + "1hr":"sampled hourly", + "1hrCM":"monthly-mean diurnal cycle resolving each day into 1-hour means", + "1hrPt":"sampled hourly, at specified time point within an hour", + "3hr":"sampled every 3 hours", + "3hrPt":"sampled 3 hourly, at specified time point within the time period", + "6hr":"sampled every 6 hours", + "6hrPt":"sampled 6 hourly, at specified time point within the time period", + "day":"daily mean samples", + "dec":"decadal mean samples", + "fx":"fixed (time invariant) field", + "mon":"monthly mean samples", + "monC":"monthly climatology computed from monthly mean samples", + "monPt":"sampled monthly, at specified time point within the time period", + "subhrPt":"sampled sub-hourly, at specified time point within an hour", + "yr":"annual mean samples", + "yrPt":"sampled yearly, at specified time point within the time period" + }, + "grid_label":{ + "gm":"global mean data", + "gn":"data reported on a model's native grid", + "gna":"data reported on a native grid in the region of Antarctica", + "gng":"data reported on a native grid in the region of Greenland", + "gnz":"zonal mean data reported on a model's native latitude grid", + "gr":"regridded data reported on the data provider's preferred target grid", + "gr1":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr1a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr1g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr1z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr2":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr2a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr2g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr2z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr3":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr3a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr3g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr3z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr4":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr4a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr4g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr4z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr5":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr5a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr5g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr5z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr6":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr6a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr6g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr6z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr7":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr7a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr7g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr7z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr8":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr8a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr8g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr8z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr9":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr9a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr9g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr9z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gra":"regridded data in the region of Antarctica reported on the data provider's preferred target grid", + "grg":"regridded data in the region of Greenland reported on the data provider's preferred target grid", + "grz":"regridded zonal mean data reported on the data provider's preferred latitude target grid" + }, + "nominal_resolution":[ + "0.5 km", + "1 km", + "10 km", + "100 km", + "1000 km", + "10000 km", + "1x1 degree", + "2.5 km", + "25 km", + "250 km", + "2500 km", + "5 km", + "50 km", + "500 km", + "5000 km" + ], + "realm":{ + "aerosol":"Aerosol", + "atmos":"Atmosphere", + "atmosChem":"Atmospheric Chemistry", + "land":"Land Surface", + "landIce":"Land Ice", + "ocean":"Ocean", + "ocnBgchem":"Ocean Biogeochemistry", + "seaIce":"Sea Ice" + }, + "table_id":[ + "3hr", + "6hrLev", + "6hrPlev", + "6hrPlevPt", + "AERday", + "AERhr", + "AERmon", + "AERmonZ", + "Amon", + "CF3hr", + "CFday", + "CFmon", + "CFsubhr", + "E1hr", + "E1hrClimMon", + "E3hr", + "E3hrPt", + "E6hrZ", + "Eday", + "EdayZ", + "Efx", + "Emon", + "EmonZ", + "Esubhr", + "Eyr", + "IfxAnt", + "IfxGre", + "ImonAnt", + "ImonGre", + "IyrAnt", + "IyrGre", + "LImon", + "Lmon", + "Oclim", + "Oday", + "Odec", + "Ofx", + "Omon", + "Oyr", + "SIday", + "SImon", + "day", + "fx" + ], + "license":[ + "^CMIP6 model data produced by .* is licensed under a Creative Commons Attribution.*ShareAlike 4.0 International License .https://creativecommons.org/licenses.* *Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment\\. *Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file).*\\. *The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose\\. *All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law\\.$" + ], + "mip_era":[ + "CMIP6" + ], + "sub_experiment_id":{ + "none":"none", + "s1910":"initialized near end of year 1910", + "s1950":"initialized near end of year 1950", + "s1960":"initialized near end of year 1960", + "s1961":"initialized near end of year 1961", + "s1962":"initialized near end of year 1962", + "s1963":"initialized near end of year 1963", + "s1964":"initialized near end of year 1964", + "s1965":"initialized near end of year 1965", + "s1966":"initialized near end of year 1966", + "s1967":"initialized near end of year 1967", + "s1968":"initialized near end of year 1968", + "s1969":"initialized near end of year 1969", + "s1970":"initialized near end of year 1970", + "s1971":"initialized near end of year 1971", + "s1972":"initialized near end of year 1972", + "s1973":"initialized near end of year 1973", + "s1974":"initialized near end of year 1974", + "s1975":"initialized near end of year 1975", + "s1976":"initialized near end of year 1976", + "s1977":"initialized near end of year 1977", + "s1978":"initialized near end of year 1978", + "s1979":"initialized near end of year 1979", + "s1980":"initialized near end of year 1980", + "s1981":"initialized near end of year 1981", + "s1982":"initialized near end of year 1982", + "s1983":"initialized near end of year 1983", + "s1984":"initialized near end of year 1984", + "s1985":"initialized near end of year 1985", + "s1986":"initialized near end of year 1986", + "s1987":"initialized near end of year 1987", + "s1988":"initialized near end of year 1988", + "s1989":"initialized near end of year 1989", + "s1990":"initialized near end of year 1990", + "s1991":"initialized near end of year 1991", + "s1992":"initialized near end of year 1992", + "s1993":"initialized near end of year 1993", + "s1994":"initialized near end of year 1994", + "s1995":"initialized near end of year 1995", + "s1996":"initialized near end of year 1996", + "s1997":"initialized near end of year 1997", + "s1998":"initialized near end of year 1998", + "s1999":"initialized near end of year 1999", + "s2000":"initialized near end of year 2000", + "s2001":"initialized near end of year 2001", + "s2002":"initialized near end of year 2002", + "s2003":"initialized near end of year 2003", + "s2004":"initialized near end of year 2004", + "s2005":"initialized near end of year 2005", + "s2006":"initialized near end of year 2006", + "s2007":"initialized near end of year 2007", + "s2008":"initialized near end of year 2008", + "s2009":"initialized near end of year 2009", + "s2010":"initialized near end of year 2010", + "s2011":"initialized near end of year 2011", + "s2012":"initialized near end of year 2012", + "s2013":"initialized near end of year 2013", + "s2014":"initialized near end of year 2014", + "s2015":"initialized near end of year 2015", + "s2016":"initialized near end of year 2016", + "s2017":"initialized near end of year 2017", + "s2018":"initialized near end of year 2018", + "s2019":"initialized near end of year 2019", + "s2020":"initialized near end of year 2020", + "s2021":"initialized near end of year 2021", + "s2022":"initialized near end of year 2022", + "s2023":"initialized near end of year 2023", + "s2024":"initialized near end of year 2024", + "s2025":"initialized near end of year 2025", + "s2026":"initialized near end of year 2026", + "s2027":"initialized near end of year 2027", + "s2028":"initialized near end of year 2028", + "s2029":"initialized near end of year 2029" + }, + "experiment_id":{ + "1pctCO2":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"1 percent per year increase in CO2", + "experiment_id":"1pctCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-4xext":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"extension from year 140 of 1pctCO2 with 4xCO2", + "experiment_id":"1pctCO2-4xext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "1pctCO2" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment", + "experiment_id":"1pctCO2-bgc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-cdr":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"1 percent per year decrease in CO2 from 4xCO2", + "experiment_id":"1pctCO2-cdr", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-rad":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"radiatively-coupled version of 1 percent per year increasing CO2 experiment", + "experiment_id":"1pctCO2-rad", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2Ndep":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"1 percent per year increasing CO2 experiment with increasing N-deposition", + "experiment_id":"1pctCO2Ndep", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2Ndep-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment with increasing N-deposition", + "experiment_id":"1pctCO2Ndep-bgc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2to4x-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"simulation with interactive ice sheet forced by 1 percent per year increase in CO2 to 4xCO2 (subsequently held fixed)", + "experiment_id":"1pctCO2to4x-withism", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "piControl-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G1":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt quadrupling of CO2 plus reduction in total solar irradiance", + "experiment_id":"G1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6SST1":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs, forcings, and other prescribed conditions from year 2020 of SSP5-8.5", + "experiment_id":"G6SST1", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6SST2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6solar", + "experiment_id":"G6SST2-solar", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6SST2-sulfur":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6sulfur", + "experiment_id":"G6SST2-sulfur", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"total solar irradiance reduction to reduce net forcing from SSP585 to SSP245", + "experiment_id":"G6solar", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6sulfur":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"stratospheric sulfate aerosol injection to reduce net forcing from SSP585 to SSP245", + "experiment_id":"G6sulfur", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G7SST1-cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2020 of SSP5-8.5 and cirrus thinning", + "experiment_id":"G7SST1-cirrus", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G7SST2-cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2100 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G7cirrus", + "experiment_id":"G7SST2-cirrus", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G7cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"increase cirrus ice crystal fall speed to reduce net forcing in SSP585 by 1 W m-2", + "experiment_id":"G7cirrus", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "a4SST":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST but with SSTs from abrupt-4xCO2", + "experiment_id":"a4SST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "abrupt-4xCO2" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "a4SSTice":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2", + "experiment_id":"a4SSTice", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "abrupt-4xCO2" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "a4SSTice-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2, and 4xCO2 seen by radiation and vegetation", + "experiment_id":"a4SSTice-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "abrupt-4xCO2" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-0p5xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt halving of CO2", + "experiment_id":"abrupt-0p5xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-2xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt doubling of CO2", + "experiment_id":"abrupt-2xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-4xCO2":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt quadrupling of CO2", + "experiment_id":"abrupt-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-solm4p":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt 4% decrease in solar constant", + "experiment_id":"abrupt-solm4p", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-solp4p":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt 4% increase in solar constant", + "experiment_id":"abrupt-solp4p", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP", + "experiment_id":"amip", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP SSTs with 4xCO2", + "experiment_id":"amip-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-TIP":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"same as \"amip\" run, but surface elevations of the Tibetan-Iranian Plateau and Himalayas reduced to 500m", + "experiment_id":"amip-TIP", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-TIP-nosh":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"same as \"amip\" run, but sensible heat not allowed for elevations of the Tibetan-Iranian Plateau and Himalayas above 500m", + "experiment_id":"amip-TIP-nosh", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-a4SST-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as AMIP but with warming pattern from abrupt-4xCO2 added to SSTs and 4xCO2 seen by radiation and vegetation", + "experiment_id":"amip-a4SST-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-climSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP with climatological SIC", + "experiment_id":"amip-climSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-climSST":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP with climatological SST", + "experiment_id":"amip-climSST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-future4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP with patterned 4K SST increase", + "experiment_id":"amip-future4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-hist":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP-style simulation covering the period 1870-2014", + "experiment_id":"amip-hist", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-hld":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"same as \"amip\" run, but surface elevations of the East African Highlands in Africa, Sierra Madre in N. America and Andes in S. America reduced to 500m", + "experiment_id":"amip-hld", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lfmip-pObs":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land (from pseudo-observations) and AMIP SSTs", + "experiment_id":"amip-lfmip-pObs", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lfmip-pdLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land (from current climatology) and AMIP SSTs", + "experiment_id":"amip-lfmip-pdLC", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lfmip-rmLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land conditions (from running mean climatology) and AMIP SSTs", + "experiment_id":"amip-lfmip-rmLC", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP experiment with longwave cloud-radiative effects off", + "experiment_id":"amip-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-m4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP with uniform 4K SST decrease", + "experiment_id":"amip-m4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-p4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP with uniform 4K SST increase", + "experiment_id":"amip-p4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-p4K-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP experiment with uniform 4K SST increase and with longwave cloud radiative effects off", + "experiment_id":"amip-p4K-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-piForcing":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP SSTs with pre-industrial anthropogenic and natural forcing", + "experiment_id":"amip-piForcing", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet with control SST and 4xCO2", + "experiment_id":"aqua-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-control":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet control", + "experiment_id":"aqua-control", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-control-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet control with longwave cloud radiative effects off", + "experiment_id":"aqua-control-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-p4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet with uniform 4K SST increase", + "experiment_id":"aqua-p4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-p4K-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet with uniform 4K SST increase and with longwave cloud radiative effects off", + "experiment_id":"aqua-p4K-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "control-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled control with fixed 1950's forcing (HighResMIP equivalent of pre-industrial control)", + "experiment_id":"control-1950", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "spinup-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "control-slab":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control with slab ocean", + "experiment_id":"control-slab", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "SLAB" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppA-assim":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Assimilation run paralleling the historical simulation, which may be used to generate hindcast initial conditions", + "experiment_id":"dcppA-assim", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppA-hindcast":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast initialized based on observations and using historical forcing", + "experiment_id":"dcppA-hindcast", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016" + ] + }, + "dcppA-hindcast-niff":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast initialized based on observations but without using knowledge of subsequent historical forcing", + "experiment_id":"dcppA-hindcast-niff", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016" + ] + }, + "dcppA-historical-niff":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast initialized from historical climate simulation but without using knowledge of subsequent historical forcing", + "experiment_id":"dcppA-historical-niff", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016" + ] + }, + "dcppB-forecast":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"forecast initialized from observations with forcing from ssp245", + "experiment_id":"dcppB-forecast", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2017", + "s2018", + "s2019", + "s2020", + "s2021", + "s2022", + "s2023", + "s2024", + "s2025", + "s2026", + "s2027", + "s2028", + "s2029" + ] + }, + "dcppC-amv-ExTrop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of negative extratropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-ExTrop-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-ExTrop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of positive extratropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-ExTrop-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-Trop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of negative tropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-Trop-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-Trop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized positive tropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-Trop-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of negative AMV anomaly pattern", + "experiment_id":"dcppC-amv-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of positive AMV anomaly pattern", + "experiment_id":"dcppC-amv-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-atl-control":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized Atlantic control", + "experiment_id":"dcppC-atl-control", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-atl-pacemaker":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pacemaker Atlantic experiment", + "experiment_id":"dcppC-atl-pacemaker", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1910", + "s1950" + ] + }, + "dcppC-atl-spg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"predictability of 1990s warming of Atlantic sub-polar gyre", + "experiment_id":"dcppC-atl-spg", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999" + ] + }, + "dcppC-forecast-addAgung":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2015 forecast with added Agung forcing", + "experiment_id":"dcppC-forecast-addAgung", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2014" + ] + }, + "dcppC-forecast-addElChichon":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2015 forecast with added El Chichon forcing", + "experiment_id":"dcppC-forecast-addElChichon", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2014" + ] + }, + "dcppC-forecast-addPinatubo":{ + "activity_id":[ + "DCPP VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2015 forecast with added Pinatubo forcing", + "experiment_id":"dcppC-forecast-addPinatubo", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2014" + ] + }, + "dcppC-hindcast-noAgung":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noAgung", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1962" + ] + }, + "dcppC-hindcast-noElChichon":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noElChichon", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1981" + ] + }, + "dcppC-hindcast-noPinatubo":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noPinatubo", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1990" + ] + }, + "dcppC-ipv-NexTrop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized negative northern extratropical IPV anomaly pattern", + "experiment_id":"dcppC-ipv-NexTrop-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-ipv-NexTrop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized positive northern extratropical IPV anomaly pattern", + "experiment_id":"dcppC-ipv-NexTrop-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-ipv-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized negative IPV anomaly pattern", + "experiment_id":"dcppC-ipv-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-ipv-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized positive IPV anomaly pattern", + "experiment_id":"dcppC-ipv-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-pac-control":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized Pacific control", + "experiment_id":"dcppC-pac-control", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-pac-pacemaker":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pacemaker Pacific experiment", + "experiment_id":"dcppC-pac-pacemaker", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1910", + "s1950" + ] + }, + "deforest-globe":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized transient global deforestation", + "experiment_id":"deforest-globe", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-hist":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"all-forcing simulation of the recent past with atmospheric CO2 concentration calculated", + "experiment_id":"esm-hist", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-hist-ext":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"post-2014 all-forcing simulation with atmospheric CO2 concentration calculated", + "experiment_id":"esm-hist-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-pi-CO2pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pulse addition of 100 Gt carbon to pre-industrial atmosphere", + "experiment_id":"esm-pi-CO2pulse", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-pi-cdr-pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pulse removal of 100 Gt carbon from pre-industrial atmosphere", + "experiment_id":"esm-pi-cdr-pulse", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-piControl":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pre-industrial control simulation with CO2 concentration calculated", + "experiment_id":"esm-piControl", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl-spinup" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-piControl-spinup":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pre-industrial control simulation with CO2 concentration calculated (spin-up)", + "experiment_id":"esm-piControl-spinup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp534-over":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven SSP5-3.4-OS scenario", + "experiment_id":"esm-ssp534-over", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven RCP8.5 based on SSP5", + "experiment_id":"esm-ssp585", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ocn-alk":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven SSP5-8.5 scenario but with ocean alkalinization from year 2020 onward", + "experiment_id":"esm-ssp585-ocn-alk", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ocn-alk-stop":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven SSP5-8.5 scenario with alkalinization terminated in year 2070", + "experiment_id":"esm-ssp585-ocn-alk-stop", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-ssp585-ocn-alk" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ssp126Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emissions-driven SSP5-8.5 with SSP1-2.6 land use", + "experiment_id":"esm-ssp585-ssp126Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ssp126Lu-ext":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"extension of the LUMIP emissions-driven simulation following SSP5-8.5 with SSP1-2.6 land use", + "experiment_id":"esm-ssp585-ssp126Lu-ext", + "parent_activity_id":[ + "LUMIP" + ], + "parent_experiment_id":[ + "esm-ssp585-ssp126Lu" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585ext":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven long-term extension of the SSP5-8.5 scenario", + "experiment_id":"esm-ssp585ext", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-CO2pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"instantaneous 100 Gt C addition to an industrial era atmosphere", + "experiment_id":"esm-yr2010CO2-CO2pulse", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-cdr-pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"instantaneous 100 Gt C removal from industrial era atmosphere", + "experiment_id":"esm-yr2010CO2-cdr-pulse", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-control":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"historical emissions followed by fixed 2010 emissions (both model-diagnosed)", + "experiment_id":"esm-yr2010CO2-control", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-noemit":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"branches from esm-yr2010CO2-control with zero emissions", + "experiment_id":"esm-yr2010CO2-noemit", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-all":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface fluxes of momentum, heat and water into ocean", + "experiment_id":"faf-all", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-heat":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of heat into ocean", + "experiment_id":"faf-heat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-passiveheat":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus surface flux of passive heat tracer into ocean", + "experiment_id":"faf-passiveheat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-stress":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of momentum into ocean", + "experiment_id":"faf-stress", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-water":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of water into ocean", + "experiment_id":"faf-water", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "futSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with future SST and present day SIC", + "experiment_id":"futSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "futureSST-4xCO2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"year 100 SSTs from abrupt-4xCO2 with quadrupled CO2 and solar reduction", + "experiment_id":"futureSST-4xCO2-solar", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G1" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highres-future":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled future 2015-2050 using a scenario as close to CMIP5 RCP8.5 as possible within CMIP6", + "experiment_id":"highres-future", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "hist-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-4xCO2":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"highresSST-present SST with 4xCO2 concentrations", + "experiment_id":"highresSST-4xCO2", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-LAI":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"common LAI dataset within the highresSST-present experiment", + "experiment_id":"highresSST-LAI", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-future":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"forced atmosphere experiment for 2015-2050 using SST/sea-ice derived from CMIP5 RCP8.5 simulations and a scenario as close to RCP8.5 as possible within CMIP6", + "experiment_id":"highresSST-future", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-p4K":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"uniform 4K warming of highresSST-present SST", + "experiment_id":"highresSST-p4K", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-present":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"forced atmosphere experiment for 1950-2014", + "experiment_id":"highresSST-present", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-smoothed":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"smoothed SST version of highresSST-present", + "experiment_id":"highresSST-smoothed", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled historical 1950-2014", + "experiment_id":"hist-1950", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "spinup-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-1950HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical forcing, but with1950s halocarbon concentrations; initialized in 1950", + "experiment_id":"hist-1950HC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-CO2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical CO2-only run", + "experiment_id":"hist-CO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical well-mixed GHG-only run", + "experiment_id":"hist-GHG", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical anthropogenic aerosols-only run", + "experiment_id":"hist-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-all-aer2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical ALL-forcing run with alternate estimates of aerosol forcing", + "experiment_id":"hist-all-aer2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-all-nat2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical ALL-forcing run with alternate estimates of natural forcing", + "experiment_id":"hist-all-nat2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of the simulation of the recent past with CO2 concentration prescribed", + "experiment_id":"hist-bgc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-nat":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical natural-only run", + "experiment_id":"hist-nat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-noLu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical with no land-use change", + "experiment_id":"hist-noLu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-piAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical forcing, but with pre-industrial aerosol emissions", + "experiment_id":"hist-piAer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-piNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical forcing, but with pre-industrial NTCF emissions", + "experiment_id":"hist-piNTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-resAMO":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"initialized from \"historical\" run year 1870 and SSTs in the AMO domain (0deg-70degN, 70degW-0deg) restored to AMIP SSTs with historical forcings", + "experiment_id":"hist-resAMO", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-resIPO":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"initialized from \"historical\" run year 1870 and SSTs in tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW) restored to AMIP SSTs with historical forcings", + "experiment_id":"hist-resIPO", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-sol":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical solar-only run", + "experiment_id":"hist-sol", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-spAer-aer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical simulation with specified anthropogenic aerosols, no other forcings", + "experiment_id":"hist-spAer-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-spAer-all":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical simulation with specified anthropogenic aerosols", + "experiment_id":"hist-spAer-all", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-stratO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "experiment":"historical stratospheric-ozone-only run", + "experiment_id":"hist-stratO3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-volc":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical volcanic-only run", + "experiment_id":"hist-volc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical prescribed SSTs and historical forcing", + "experiment_id":"histSST", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-1950HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with1950 halocarbon concentrations", + "experiment_id":"histSST-1950HC", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial aerosol emissions", + "experiment_id":"histSST-piAer", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial methane concentrations", + "experiment_id":"histSST-piCH4", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piN2O":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcings, but with pre-industrial N2O concentrations", + "experiment_id":"histSST-piN2O", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial NTCF emissions", + "experiment_id":"histSST-piNTCF", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piO3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial ozone precursor emissions", + "experiment_id":"histSST-piO3", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"all-forcing simulation of the recent past", + "experiment_id":"historical", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical-ext":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"post-2014 all-forcing simulation", + "experiment_id":"historical-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical with interactive ice sheet", + "experiment_id":"historical-withism", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "piControl-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-1pctCO2to4x-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet model forced by ISM's own AOGCM 1pctCO2to4x output", + "experiment_id":"ism-1pctCO2to4x-self", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-piControl-self" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-1pctCO2to4x-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet model forced by ISMIP6-specified AOGCM 1pctCO2to4x output", + "experiment_id":"ism-1pctCO2to4x-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-pdControl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-amip-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AGCM AMIP output", + "experiment_id":"ism-amip-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-asmb-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by initMIP synthetic atmospheric experiment", + "experiment_id":"ism-asmb-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-bsmb-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by initMIP synthetic oceanic experiment", + "experiment_id":"ism-bsmb-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-ctrl-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet model initMIP control", + "experiment_id":"ism-ctrl-std", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-historical-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISM's own AOGCM historical output", + "experiment_id":"ism-historical-self", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-piControl-self" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-historical-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM historical output", + "experiment_id":"ism-historical-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-pdControl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-lig127k-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AGCM last interglacial output", + "experiment_id":"ism-lig127k-std", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-pdControl-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM pdControl output", + "experiment_id":"ism-pdControl-std", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-piControl-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISM's own AOGCM piControl output", + "experiment_id":"ism-piControl-self", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-ssp585-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISM's own AOGCM ssp585 output", + "experiment_id":"ism-ssp585-self", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-historical-self" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-ssp585-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM ssp585 output", + "experiment_id":"ism-ssp585-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-historical-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-cCO2":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only constant CO2", + "experiment_id":"land-cCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-cClim":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only constant climate", + "experiment_id":"land-cClim", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-grass":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with cropland as natural grassland", + "experiment_id":"land-crop-grass", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-noFert":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no fertilizer", + "experiment_id":"land-crop-noFert", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-noIrrig":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no irrigation", + "experiment_id":"land-crop-noIrrig", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-noIrrigFert":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with managed crops but with irrigation and fertilization held constant", + "experiment_id":"land-crop-noIrrigFert", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist":{ + "activity_id":[ + "LS3MIP LUMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical land-only", + "experiment_id":"land-hist", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-altLu1":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only alternate land-use history", + "experiment_id":"land-hist-altLu1", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-altLu2":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only alternate land use history", + "experiment_id":"land-hist-altLu2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-altStartYear":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only alternate start year", + "experiment_id":"land-hist-altStartYear", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"as land-hist with CRU-NCEP forcings", + "experiment_id":"land-hist-cruNcep", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"as land-hist with Princeton forcings", + "experiment_id":"land-hist-princeton", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"as land-hist with WFDEI forcings", + "experiment_id":"land-hist-wfdei", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noFire":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no human fire management", + "experiment_id":"land-noFire", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noLu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical land-only with no land-use change", + "experiment_id":"land-noLu", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noPasture":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with constant pastureland", + "experiment_id":"land-noPasture", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noShiftCultivate":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with shifting cultivation turned off", + "experiment_id":"land-noShiftCultivate", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noWoodHarv":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no wood harvest", + "experiment_id":"land-noWoodHarv", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-ssp126":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"future ssp1-2.6 land only", + "experiment_id":"land-ssp126", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-ssp434":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"future ssp4-3.4 land only", + "experiment_id":"land-ssp434", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-ssp585":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"future ssp5-8.5 land only", + "experiment_id":"land-ssp585", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-initLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"initialized from \"historical\" run year 1980, but with land conditions initialized from pseudo-observations", + "experiment_id":"lfmip-initLC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land conditions (from current climate climatology) and initialized from \"historical\" run year 1980", + "experiment_id":"lfmip-pdLC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-pdLC with Land-Hist-cruNcep", + "experiment_id":"lfmip-pdLC-cruNcep", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-pdLC with Land-Hist-princeton", + "experiment_id":"lfmip-pdLC-princeton", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-pdLC with Land-Hist-wfdei", + "experiment_id":"lfmip-pdLC-wfdei", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land conditions (from running mean climatology) and initialized from \"historical\" run year 1980", + "experiment_id":"lfmip-rmLC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-rmLC with Land-Hist-cruNcep", + "experiment_id":"lfmip-rmLC-cruNcep", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-rmLC with Land-Hist-princeton", + "experiment_id":"lfmip-rmLC-princeton", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-rmLC with Land-Hist-wfdei", + "experiment_id":"lfmip-rmLC-wfdei", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lgm":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last glacial maximum", + "experiment_id":"lgm", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lig127k":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last interglacial (127k)", + "experiment_id":"lig127k", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "midHolocene":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"mid-Holocene", + "experiment_id":"midHolocene", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "midPliocene-eoi400":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"mid-Pliocene warm period", + "experiment_id":"midPliocene-eoi400", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "modelSST-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day coupled model SST and future Arctic SIC", + "experiment_id":"modelSST-futArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "modelSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice present day control with coupled model SST", + "experiment_id":"modelSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip1":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized with observed physical and biogeochemical ocean data", + "experiment_id":"omip1", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip1-spunup":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", + "experiment_id":"omip1-spunup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip2":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized with observed physical and biogeochemical ocean data", + "experiment_id":"omip2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip2-spunup":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", + "experiment_id":"omip2-spunup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice constrained by future Antarctic SIC", + "experiment_id":"pa-futAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futAntSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled extended simulation with future Antarctic SIC", + "experiment_id":"pa-futAntSIC-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice constrained by future Arctic SIC", + "experiment_id":"pa-futArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futArcSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled extended simulation with future Arctic SIC", + "experiment_id":"pa-futArcSIC-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice contrained by present day SIC", + "experiment_id":"pa-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-pdSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled extended simulation constrained by present day SIC", + "experiment_id":"pa-pdSIC-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-piAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice with pre-industrial Antarctic SIC", + "experiment_id":"pa-piAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-piArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice constrained by pre-industrial Arctic SIC", + "experiment_id":"pa-piArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "past1000":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last millennium", + "experiment_id":"past1000", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Antarctic SIC", + "experiment_id":"pdSST-futAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Arctic SIC", + "experiment_id":"pdSST-futArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futArcSICSIT":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Arctic SIC and sea ice thickness", + "experiment_id":"pdSST-futArcSICSIT", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futBKSeasSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Barents and Kara Seas SIC", + "experiment_id":"pdSST-futBKSeasSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futOkhotskSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Sea of Okhotsk SIC", + "experiment_id":"pdSST-futOkhotskSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and SIC", + "experiment_id":"pdSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-pdSICSIT":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice constrained by present day conditions including sea ice thickness", + "experiment_id":"pdSST-pdSICSIT", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-piAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and pre-industrial Antarctic SIC", + "experiment_id":"pdSST-piAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-piArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and pre-industrial Arctic SIC", + "experiment_id":"pdSST-piArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xDMS":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of DMS", + "experiment_id":"piClim-2xDMS", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xNOx":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled production of NOx due to lightning", + "experiment_id":"piClim-2xNOx", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xVOC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of biogenic VOCs", + "experiment_id":"piClim-2xVOC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xdust":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of dust", + "experiment_id":"piClim-2xdust", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xfire":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions from fires", + "experiment_id":"piClim-2xfire", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xss":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of sea salt", + "experiment_id":"piClim-2xss", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-4xCO2":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"effective radiative forcing by 4xCO2", + "experiment_id":"piClim-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-BC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 black carbon emissions", + "experiment_id":"piClim-BC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-CH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 methane concentrations (including chemistry)", + "experiment_id":"piClim-CH4", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 halocarbon concentrations (including chemistry)", + "experiment_id":"piClim-HC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-N2O":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 N2O concentrations (including chemistry)", + "experiment_id":"piClim-N2O", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-NH3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ammonia emissions", + "experiment_id":"piClim-NH3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-NOx":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NOx emissions", + "experiment_id":"piClim-NOx", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-NTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NTCF emissions", + "experiment_id":"piClim-NTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-O3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ozone precursor emissions", + "experiment_id":"piClim-O3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-OC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 organic carbon emissions", + "experiment_id":"piClim-OC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-SO2":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 SO2 emissions", + "experiment_id":"piClim-SO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-VOC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 VOC emissions", + "experiment_id":"piClim-VOC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-aer":{ + "activity_id":[ + "RFMIP AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing by present-day aerosols", + "experiment_id":"piClim-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-anthro":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"effective radiative forcing by present day anthropogenic agents", + "experiment_id":"piClim-anthro", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-control":{ + "activity_id":[ + "RFMIP AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing in present-day", + "experiment_id":"piClim-control", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-ghg":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing by present-day greenhouse gases", + "experiment_id":"piClim-ghg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histaer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing by aerosols", + "experiment_id":"piClim-histaer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histall":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing", + "experiment_id":"piClim-histall", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histghg":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing by greenhouse gases", + "experiment_id":"piClim-histghg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histnat":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing by natural perturbations", + "experiment_id":"piClim-histnat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-lu":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing by present-day land use", + "experiment_id":"piClim-lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-aer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, all forcings", + "experiment_id":"piClim-spAer-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-anthro":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, anthropogenic forcings", + "experiment_id":"piClim-spAer-anthro", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-histaer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, aerosol forcing", + "experiment_id":"piClim-spAer-histaer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-histall":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, all forcings", + "experiment_id":"piClim-spAer-histall", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pre-industrial control", + "experiment_id":"piControl", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-spinup" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl-spinup":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pre-industrial control (spin-up)", + "experiment_id":"piControl-spinup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"preindustrial control with interactive ice sheet", + "experiment_id":"piControl-withism", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"experiment forced with pre-industrial SSTs, sea ice and atmospheric constituents", + "experiment_id":"piSST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST with radiation and vegetation seeing 4xCO2", + "experiment_id":"piSST-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-4xCO2-rad":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST with radiation-only seeing 4xCO2", + "experiment_id":"piSST-4xCO2-rad", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-4xCO2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"preindustrial control SSTs with quadrupled CO2 and solar reduction", + "experiment_id":"piSST-4xCO2-solar", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with pre-industrial SST and present day SIC", + "experiment_id":"piSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-piSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with pre-industrial SST and SIC", + "experiment_id":"piSST-piSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-pxK":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST with uniform SST increase with magnitude based on abrupt-4xCO2 response", + "experiment_id":"piSST-pxK", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "rad-irf":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline assessment of radiative transfer parmeterizations in clear skies", + "experiment_id":"rad-irf", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "RAD" + ], + "sub_experiment_id":[ + "none" + ] + }, + "spinup-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled spinup with fixed 1950s forcings from 1950 initial conditions (with ocean at rest) to provide initial condition for control-1950 and hist-1950", + "experiment_id":"spinup-1950", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp119":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"low-end scenario reaching 1.9 W m-2, based on SSP1", + "experiment_id":"ssp119", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp126":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP2.6 based on SSP1", + "experiment_id":"ssp126", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp126-ssp370Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"SSP1-2.6 with SSP3-7.0 land use", + "experiment_id":"ssp126-ssp370Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP4.5 based on SSP2", + "experiment_id":"ssp245", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"well-mixed GHG-only SSP2-4.5 run", + "experiment_id":"ssp245-GHG", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-GHG" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"aerosol-only SSP2-4.5 run", + "experiment_id":"ssp245-aer", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-aer" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-nat":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"natural-only SSP2-4.5 run", + "experiment_id":"ssp245-nat", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-nat" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-stratO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "experiment":"stratospheric-ozone-only SSP2-4.5 run", + "experiment_id":"ssp245-stratO3", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-stratO3" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370":{ + "activity_id":[ + "ScenarioMIP AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"gap-filling scenario reaching 7.0 based on SSP3", + "experiment_id":"ssp370", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370-lowNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, with low NTCF emissions", + "experiment_id":"ssp370-lowNTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370-ssp126Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0 with SSP1-2.6 land use", + "experiment_id":"ssp370-ssp126Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, with SSTs prescribed from ssp370", + "experiment_id":"ssp370SST", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low aerosol emissions", + "experiment_id":"ssp370SST-lowAer", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowBC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low black carbon emissions", + "experiment_id":"ssp370SST-lowBC", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low methane concentrations", + "experiment_id":"ssp370SST-lowCH4", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low NTCF emissions", + "experiment_id":"ssp370SST-lowNTCF", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowO3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low ozone precursor emissions", + "experiment_id":"ssp370SST-lowO3", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-ssp126Lu":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with SSP1-2.6 land use", + "experiment_id":"ssp370SST-ssp126Lu", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp434":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"gap-filling scenario reaching 3.4 based on SSP4", + "experiment_id":"ssp434", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp460":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP6.0 based on SSP4", + "experiment_id":"ssp460", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp534-over":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"overshoot of 3.4 W/m**2 branching from ssp585 in 2040", + "experiment_id":"ssp534-over", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp534-over-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of the RCP3.4-overshoot based on SSP5", + "experiment_id":"ssp534-over-bgc", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "hist-bgc" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp585":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP8.5 based on SSP5", + "experiment_id":"ssp585", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp585-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of the RCP8.5 based on SSP5", + "experiment_id":"ssp585-bgc", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "hist-bgc" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp585-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"ssp585 with interactive ice sheet", + "experiment_id":"ssp585-withism", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "historical-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-cluster-21C":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"volcanic cluster experiment under 21st century SSP2-4.5 scenario", + "experiment_id":"volc-cluster-21C", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-cluster-ctrl":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"19th century volcanic cluster initialized from PiControl", + "experiment_id":"volc-cluster-ctrl", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-cluster-mill":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"19th century volcanic cluster initialized from past1000", + "experiment_id":"volc-cluster-mill", + "parent_activity_id":[ + "PMIP" + ], + "parent_experiment_id":[ + "past1000" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-long-eq":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized equatorial volcanic eruption emitting 56.2 Tg SO2", + "experiment_id":"volc-long-eq", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-long-hlN":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized Northern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", + "experiment_id":"volc-long-hlN", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-long-hlS":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized Southern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", + "experiment_id":"volc-long-hlS", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-full":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment", + "experiment_id":"volc-pinatubo-full", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-slab":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment with slab ocean", + "experiment_id":"volc-pinatubo-slab", + "parent_activity_id":[ + "VolMIP" + ], + "parent_experiment_id":[ + "control-slab" + ], + "required_model_components":[ + "AGCM", + "SLAB" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-strat":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment with partial radiative forcing, includes only stratospheric warming", + "experiment_id":"volc-pinatubo-strat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-surf":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment with partial radiative forcing, solar radiation scattering only", + "experiment_id":"volc-pinatubo-surf", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "yr2010CO2":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"concentration-driven fixed 2010 forcing", + "experiment_id":"yr2010CO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + } + }, + "product":[ + "model-output" + ], + "tracking_id":[ + "hdl:21.14100/.*" + ], + "further_info_url":[ + "https://furtherinfo.es-doc.org/.*" + ], + "realization_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ], + "variant_label":[ + "r[[:digit:]]\\{1,\\}i[[:digit:]]\\{1,\\}p[[:digit:]]\\{1,\\}f[[:digit:]]\\{1,\\}$" + ], + "data_specs_version":[ + "^[[:digit:]]\\{2,2\\}\\.[[:digit:]]\\{2,2\\}\\.[[:digit:]]\\{2,2\\}$" + ], + "Conventions":[ + "^CF-1.7 CMIP-6.[0-2]\\( UGRID-1.0\\)\\{0,\\}$" + ], + "forcing_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ], + "initialization_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ], + "physics_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ] + } +} diff --git a/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/gitdiff-CMIP6_CV.json b/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/gitdiff-CMIP6_CV.json new file mode 100644 index 0000000000000000000000000000000000000000..7055c7e237db4aee5317581e231c594c7500e849 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/gitdiff-CMIP6_CV.json @@ -0,0 +1,118 @@ +diff --git a/Tables/CMIP6_CV.json b/Tables/CMIP6_CV.json +index c382db5..b1742d5 100644 +--- a/Tables/CMIP6_CV.json ++++ b/Tables/CMIP6_CV.json +@@ -646,15 +646,16 @@ + "EC-Earth3":{ + "activity_participation":[ + "CMIP", +- "CORDEX", + "DCPP", +- "DynVarMIP", + "LS3MIP", ++ "PAMIP", + "RFMIP", +- "SIMIP", + "ScenarioMIP", +- "VIACSAB", +- "VolMIP" ++ "VolMIP", ++ "CORDEX", ++ "DynVarMIP", ++ "SIMIP", ++ "VIACSAB" + ], + "cohort":[ + "Registered" +@@ -663,7 +664,7 @@ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3", +- "source":"EC-Earth3 (2018): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" ++ "source":"EC-Earth3 (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-AerChem":{ + "activity_participation":[ +@@ -678,13 +679,15 @@ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-AerChem", +- "source":"EC-Earth3-AerChem (2018): \naerosol: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" ++ "source":"EC-Earth3-AerChem (2019): \naerosol: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-CC":{ + "activity_participation":[ +- "C4MIP", ++ "CDRMIP", + "CMIP", +- "LUMIP" ++ "C4MIP", ++ "LUMIP", ++ "OMIP" + ], + "cohort":[ + "Registered" +@@ -693,7 +696,7 @@ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-CC", +- "source":"EC-Earth3-CC (2018): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: PISCES v2\nseaIce: LIM3" ++ "source":"EC-Earth3-CC (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: PISCES v2\nseaIce: LIM3" + }, + "EC-Earth3-GrIS":{ + "activity_participation":[ +@@ -708,10 +711,11 @@ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-GrIS", +- "source":"EC-Earth3-GrIS (2018): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: PISM 0.7 (5 km x 5 km, 442 levels)\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" ++ "source":"EC-Earth3-GrIS (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: PISM 0.7 (5 km x 5 km, 442 levels)\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-HR":{ + "activity_participation":[ ++ "CMIP", + "DCPP", + "HighResMIP" + ], +@@ -736,13 +740,14 @@ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-LR", +- "source":"EC-Earth3-LR (2018): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" ++ "source":"EC-Earth3-LR (2019): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-Veg":{ + "activity_participation":[ ++ "CDRMIP", + "CMIP", +- "LS3MIP", + "LUMIP", ++ "LS3MIP", + "ScenarioMIP" + ], + "cohort":[ +@@ -752,7 +757,7 @@ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-Veg", +- "source":"EC-Earth3-Veg (2018): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" ++ "source":"EC-Earth3-Veg (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-Veg-LR":{ + "activity_participation":[ +@@ -767,7 +772,7 @@ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-Veg-LR", +- "source":"EC-Earth3-Veg-LR (2018): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" ++ "source":"EC-Earth3-Veg-LR (2019): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P":{ + "activity_participation":[ +@@ -9115,4 +9120,4 @@ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ] + } +-} +\ No newline at end of file ++} diff --git a/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/log-CMIP6_CV.json-changes.txt b/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/log-CMIP6_CV.json-changes.txt new file mode 100644 index 0000000000000000000000000000000000000000..32a4247b30fe23278510b634f5111edacf52325b --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/log-CMIP6_CV.json-changes.txt @@ -0,0 +1,68 @@ +| model configuration| The MIP list specified for the joint request for each MIP experiment | +|--------------------|-----------------------------------------------------------------------------| +| EC-EARTH-AOGCM | CMIP,DCPP,LS3MIP,PAMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVar,SIMIP,VIACSAB | +| EC-EARTH-HR | CMIP,DCPP,HighResMIP | +| EC-EARTH-LR | CMIP,PMIP | +| EC-EARTH-CC | CDRMIP,CMIP,C4MIP,LUMIP,OMIP | +| EC-EARTH-GrisIS | CMIP,ISMIP6,PMIP | +| EC-EARTH-AerChem | AerChemMIP,CMIP | +| EC-EARTH-Veg | CDRMIP,CMIP,LUMIP,LS3MIP,ScenarioMIP | +| EC-EARTH-Veg-LR | CMIP,PMIP,ScenarioMIP | + + + 'EC-EARTH-AOGCM' Add PAMIP + "CMIP", + "DCPP", + "LS3MIP", + "PAMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP", + "CORDEX", + "DynVarMIP", + "SIMIP", + "VIACSAB" + + + 'EC-EARTH-AerChem' Remove ScenarioMIP: No + "AerChemMIP", + "CMIP" + + + 'EC-EARTH-CC' Add CDRMIP & OMIP + "CDRMIP", + "CMIP", + "C4MIP", + "LUMIP", + "OMIP" + + + 'EC-EARTH-GrisIS' no change + "CMIP", + "ISMIP6", + "PMIP" + + + 'EC-EARTH-HR' Add CMIP: yes + "CMIP", + "DCPP", + "HighResMIP" + + + 'EC-EARTH-LR' no change + "CMIP", + "PMIP" + + + 'EC-EARTH-Veg' Add CDRMIP + "CDRMIP", + "CMIP", + "LUMIP", + "LS3MIP", + "ScenarioMIP" + + + 'EC-EARTH-Veg-LR' no change + "CMIP", + "PMIP", + "ScenarioMIP" diff --git a/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/original-CMIP6_CV.json b/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/original-CMIP6_CV.json new file mode 100644 index 0000000000000000000000000000000000000000..c382db5de950b11d3eac3bcb45fb87700aea0ed4 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/proposed-ece-cv-changes/original-CMIP6_CV.json @@ -0,0 +1,9118 @@ +{ + "CV":{ + "required_global_attributes":[ + "Conventions", + "activity_id", + "creation_date", + "data_specs_version", + "experiment", + "experiment_id", + "forcing_index", + "frequency", + "further_info_url", + "grid", + "grid_label", + "initialization_index", + "institution", + "institution_id", + "license", + "mip_era", + "nominal_resolution", + "physics_index", + "product", + "realization_index", + "realm", + "source", + "source_id", + "source_type", + "sub_experiment", + "sub_experiment_id", + "table_id", + "tracking_id", + "variable_id", + "variant_label" + ], + "version_metadata":{ + "CV_collection_modified":"Sun Dec 23 18:45:50 2018 -0800", + "CV_collection_version":"6.2.15.1", + "author":"Paul J. Durack ", + "experiment_id_CV_modified":"Thu Nov 29 10:12:56 2018 -0800", + "experiment_id_CV_note":"Revise experiment_id values, BGC as allowed component", + "institution_id":"PCMDI", + "previous_commit":"27357922199883d6c2ea89f412c60ea6130de6c9", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + }, + "activity_id":{ + "AerChemMIP":"Aerosols and Chemistry Model Intercomparison Project", + "C4MIP":"Coupled Climate Carbon Cycle Model Intercomparison Project", + "CDRMIP":"Carbon Dioxide Removal Model Intercomparison Project", + "CFMIP":"Cloud Feedback Model Intercomparison Project", + "CMIP":"CMIP DECK: 1pctCO2, abrupt4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments", + "CORDEX":"Coordinated Regional Climate Downscaling Experiment", + "DAMIP":"Detection and Attribution Model Intercomparison Project", + "DCPP":"Decadal Climate Prediction Project", + "DynVarMIP":"Dynamics and Variability Model Intercomparison Project", + "FAFMIP":"Flux-Anomaly-Forced Model Intercomparison Project", + "GMMIP":"Global Monsoons Model Intercomparison Project", + "GeoMIP":"Geoengineering Model Intercomparison Project", + "HighResMIP":"High-Resolution Model Intercomparison Project", + "ISMIP6":"Ice Sheet Model Intercomparison Project for CMIP6", + "LS3MIP":"Land Surface, Snow and Soil Moisture", + "LUMIP":"Land-Use Model Intercomparison Project", + "OMIP":"Ocean Model Intercomparison Project", + "PAMIP":"Polar Amplification Model Intercomparison Project", + "PMIP":"Palaeoclimate Modelling Intercomparison Project", + "RFMIP":"Radiative Forcing Model Intercomparison Project", + "SIMIP":"Sea Ice Model Intercomparison Project", + "ScenarioMIP":"Scenario Model Intercomparison Project", + "VIACSAB":"Vulnerability, Impacts, Adaptation and Climate Services Advisory Board", + "VolMIP":"Volcanic Forcings Model Intercomparison Project" + }, + "institution_id":{ + "AER":"Research and Climate Group, Atmospheric and Environmental Research, 131 Hartwell Avenue, Lexington, MA 02421, USA", + "AS-RCEC":"Research Center for Environmental Changes, Academia Sinica, Nankang, Taipei 11529, Taiwan", + "AWI":"Alfred Wegener Institute, Helmholtz Centre for Polar and Marine Research, Am Handelshafen 12, 27570 Bremerhaven, Germany", + "BCC":"Beijing Climate Center, Beijing 100081, China", + "BNU":"Beijing Normal University, Beijing 100875, China", + "CAMS":"Chinese Academy of Meteorological Sciences, Beijing 100081, China", + "CAS":"Chinese Academy of Sciences, Beijing 100029, China", + "CCCR-IITM":"Centre for Climate Change Research, Indian Institute of Tropical Meteorology Pune, Maharashtra 411 008, India", + "CCCma":"Canadian Centre for Climate Modelling and Analysis, Victoria, BC V8P 5C2, Canada", + "CMCC":"Fondazione Centro Euro-Mediterraneo sui Cambiamenti Climatici, Lecce 73100, Italy", + "CNRM-CERFACS":"CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)", + "CSIR-CSIRO":"CSIR (Council for Scientific and Industrial Research - Natural Resources and the Environment, Pretoria, 0001, South Africa), CSIRO (Commonwealth Scientific and Industrial Research Organisation and Bureau of Meteorology, Melbourne, Victoria 3208, Australia)", + "CSIRO":"Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia", + "CSIRO-ARCCSS-BoM":"Commonwealth Scientific and Industrial Research Organisation, Australian Research Council Centre of Excellence for Climate System Science, and Bureau of Meteorology, Aspendale, Victoria 3195, Australia", + "DKRZ":"Deutsches Klimarechenzentrum, Hamburg 20146, Germany", + "DWD":"Deutscher Wetterdienst, Offenbach am Main 63067, Germany", + "E3SM-Project":"LLNL (Lawrence Livermore National Laboratory, Livermore, CA 94550, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545, USA); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); PNNL (Pacific Northwest National Laboratory, Richland, WA 99352, USA); SNL (Sandia National Laboratories, Albuquerque, NM 87185, USA). Mailing address: LLNL Climate Program, c/o David C. Bader, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA", + "EC-Earth-Consortium":"AEMET, Spain; BSC, Spain; CNR-ISAC, Italy; DMI, Denmark; ENEA, Italy; FMI, Finland; Geomar, Germany; ICHEC, Ireland; ICTP, Italy; IDL, Portugal; IMAU, The Netherlands; IPMA, Portugal; KIT, Karlsruhe, Germany; KNMI, The Netherlands; Lund University, Sweden; Met Eireann, Ireland; NLeSC, The Netherlands; NTNU, Norway; Oxford University, UK; surfSARA, The Netherlands; SMHI, Sweden; Stockholm University, Sweden; Unite ASTR, Belgium; University College Dublin, Ireland; University of Bergen, Norway; University of Copenhagen, Denmark; University of Helsinki, Finland; University of Santiago de Compostela, Spain; Uppsala University, Sweden; Utrecht University, The Netherlands; Vrije Universiteit Amsterdam, the Netherlands; Wageningen University, The Netherlands. Mailing address: EC-Earth consortium, Rossby Center, Swedish Meteorological and Hydrological Institute/SMHI, SE-601 76 Norrkoping, Sweden", + "ECMWF":"European Centre for Medium-Range Weather Forecasts, Reading RG2 9AX, UK", + "FIO-QLNM":"FIO (First Institute of Oceanography, State Oceanic Administration, Qingdao 266061, China), QNLM (Qingdao National Laboratory for Marine Science and Technology, Qingdao 266237, China)", + "HAMMOZ-Consortium":"ETH Zurich, Switzerland; Max Planck Institut fur Meteorologie, Germany; Forschungszentrum Julich, Germany; University of Oxford, UK; Finnish Meteorological Institute, Finland; Leibniz Institute for Tropospheric Research, Germany; Center for Climate Systems Modeling (C2SM) at ETH Zurich, Switzerland", + "INM":"Institute for Numerical Mathematics, Russian Academy of Science, Moscow 119991, Russia", + "INPE":"National Institute for Space Research, Cachoeira Paulista, SP 12630-000, Brazil", + "IPSL":"Institut Pierre Simon Laplace, Paris 75252, France", + "KIOST":"Korea Institute of Ocean Science & Technology, Busan 49111, Republic of Korea", + "MESSy-Consortium":"The Modular Earth Submodel System (MESSy) Consortium, represented by the Institute for Physics of the Atmosphere, Deutsches Zentrum fur Luft- und Raumfahrt (DLR), Wessling, Bavaria 82234, Germany", + "MIROC":"JAMSTEC (Japan Agency for Marine-Earth Science and Technology, Kanagawa 236-0001, Japan), AORI (Atmosphere and Ocean Research Institute, The University of Tokyo, Chiba 277-8564, Japan), NIES (National Institute for Environmental Studies, Ibaraki 305-8506, Japan), and R-CCS (RIKEN Center for Computational Science, Hyogo 650-0047, Japan)", + "MOHC":"Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK", + "MPI-M":"Max Planck Institute for Meteorology, Hamburg 20146, Germany", + "MRI":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "NASA-GISS":"Goddard Institute for Space Studies, New York, NY 10025, USA", + "NCAR":"National Center for Atmospheric Research, Climate and Global Dynamics Laboratory, 1850 Table Mesa Drive, Boulder, CO 80305, USA", + "NCC":"NorESM Climate modeling Consortium consisting of CICERO (Center for International Climate and Environmental Research, Oslo 0349), MET-Norway (Norwegian Meteorological Institute, Oslo 0313), NERSC (Nansen Environmental and Remote Sensing Center, Bergen 5006), NILU (Norwegian Institute for Air Research, Kjeller 2027), UiB (University of Bergen, Bergen 5007), UiO (University of Oslo, Oslo 0313) and UNI (Uni Research, Bergen 5008), Norway. Mailing address: NCC, c/o MET-Norway, Henrik Mohns plass 1, Oslo 0313, Norway", + "NERC":"Natural Environment Research Council, STFC-RAL, Harwell, Oxford, OX11 0QX, UK", + "NIMS-KMA":"National Institute of Meteorological Sciences/Korea Meteorological Administration, Climate Research Division, Seoho-bukro 33, Seogwipo-si, Jejudo 63568, Republic of Korea", + "NIWA":"National Institute of Water and Atmospheric Research, Hataitai, Wellington 6021, New Zealand", + "NOAA-GFDL":"National Oceanic and Atmospheric Administration, Geophysical Fluid Dynamics Laboratory, Princeton, NJ 08540, USA", + "NUIST":"Nanjing University of Information Science and Technology, Nanjing, 210044, China", + "PCMDI":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "SNU":"Seoul National University, Seoul 08826, Republic of Korea", + "THU":"Department of Earth System Science, Tsinghua University, Beijing 100084, China", + "UA":"Department of Geosciences, University of Arizona, Tucson, AZ 85721, USA", + "UHH":"Universitat Hamburg, Hamburg 20148, Germany", + "UTAS":"Institute for Marine and Antarctic Studies, University of Tasmania, Hobart, Tasmania 7001, Australia", + "UofT":"Department of Physics, University of Toronto, 60 St George Street, Toronto, ON M5S1A7, Canada" + }, + "source_id":{ + "ACCESS-CM2":{ + "activity_participation":[ + "CMIP", + "FAFMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CSIRO-ARCCSS-BoM" + ], + "source_id":"ACCESS-CM2", + "source":"ACCESS-CM2 (2018): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: CABLE2.3.5\nlandIce: none\nocean: ACCESS-OM2 (GFDL-MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE5.1 (same grid as ocean)" + }, + "ACCESS-ESM1-5":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CSIRO" + ], + "source_id":"ACCESS-ESM1-5", + "source":"ACCESS-ESM1.5 (2018): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)\natmosChem: none\nland: CABLE2.2.3\nlandIce: none\nocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: WOMBAT1.0 (same grid as ocean)\nseaIce: CICE5.1 (same grid as ocean)" + }, + "ARTS-2-3":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UHH" + ], + "source_id":"ARTS-2-3", + "source":"ARTS 2.3 (2015): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "AWI-CM-1-1-HR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "HighResMIP", + "OMIP", + "SIMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "source_id":"AWI-CM-1-1-HR", + "source":"AWI-CM 1.1 HR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 1306775 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-CM-1-1-LR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "source_id":"AWI-CM-1-1-LR", + "source":"AWI-CM 1.1 LR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-CM-1-1-MR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "source_id":"AWI-CM-1-1-MR", + "source":"AWI-CM 1.1 MR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 830305 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-ESM-1-1-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "source_id":"AWI-ESM-1-1-LR", + "source":"AWI-ESM 1.1 LR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20 with dynamic vegetation\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "BCC-CSM2-HR":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BCC" + ], + "source_id":"BCC-CSM2-HR", + "source":"BCC-CSM 2 HR (2017): \naerosol: none\natmos: BCC_AGCM3_HR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)\natmosChem: none\nland: BCC_AVIM2\nlandIce: none\nocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS2" + }, + "BCC-CSM2-MR":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "LS3MIP", + "LUMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BCC" + ], + "source_id":"BCC-CSM2-MR", + "source":"BCC-CSM 2 MR (2017): \naerosol: none\natmos: BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)\natmosChem: none\nland: BCC_AVIM2\nlandIce: none\nocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS2" + }, + "BCC-ESM1":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BCC" + ], + "source_id":"BCC-ESM1", + "source":"BCC-ESM 1 (2017): \naerosol: none\natmos: BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)\natmosChem: BCC-AGCM3-Chem\nland: BCC_AVIM2\nlandIce: none\nocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS2" + }, + "BESM-2-7":{ + "activity_participation":[ + "CMIP", + "DCPP", + "HighResMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INPE" + ], + "source_id":"BESM-2-7", + "source":"BESM 2.7 (2017): \naerosol: none\natmos: BAM (v1.0, T062L28; 192 x 96 longitude/latitude; 28 levels; top level 3 hPa)\natmosChem: none\nland: SSiB 2.0\nlandIce: none\nocean: MOM-5 (MOM5, tripolar primarily 1 deg, 1/4 deg between 10S-10N; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: TOPAZ 2.0\nseaIce: SIS 1.0" + }, + "BNU-ESM-1-1":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "GMMIP", + "GeoMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BNU" + ], + "source_id":"BNU-ESM-1-1", + "source":"BNU-ESM 1.1 (2016): \naerosol: CAM-chem; semi-interactive\natmos: CAM4 (2deg; 144 x 96 longitude/latitude; 26 levels; top level 2.194 mb)\natmosChem: none\nland: CoLM version 2014 with carbon-nitrogen interactions\nlandIce: none\nocean: MOM4p1 (tripolar, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: Dynamic ecosystem-carbon model version 1\nseaIce: CICE4.1" + }, + "CAMS-CSM1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAMS" + ], + "source_id":"CAMS-CSM1-0", + "source":"CAMS_CSM 1.0 (2016): \naerosol: none\natmos: ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)\natmosChem: none\nland: CoLM 1.0\nlandIce: none\nocean: MOM4 (tripolar; 360 x 200 longitude/latitude, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS 1.0" + }, + "CAS-ESM1-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "source_id":"CAS-ESM1-0", + "source":"CAS-ESM 1.0 (2015): \naerosol: IAP AACM\natmos: IAP AGCM4.1 (Finite difference dynamical core; 256 x 128 longitude/latitude; 30 levels; top level 2.2 hPa)\natmosChem: IAP AACM\nland: CoLM\nlandIce: none\nocean: LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)\nocnBgchem: IAP OBGCM\nseaIce: CICE4" + }, + "CESM2":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCAR" + ], + "source_id":"CESM2", + "source":"CESM2 (2018): \naerosol: MAM4 (same grid as atmos)\natmos: CAM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)\natmosChem: MAM4 (same grid as atmos)\nland: CLM5 (same grid as atmos)\nlandIce: CISM2.1\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: MARBL (same grid as ocean)\nseaIce: CICE5.1 (same grid as ocean)" + }, + "CIESM":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "CORDEX", + "GMMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "THU" + ], + "source_id":"CIESM", + "source":"CIESM (2017): \naerosol: MAM4\natmos: CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)\natmosChem: trop_mam4\nland: CIESM-LM (modified CLM4.5)\nlandIce: none\nocean: CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)\nocnBgchem: none\nseaIce: CICE4" + }, + "CMCC-CM2-HR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-CM2-HR4", + "source":"CMCC-CM2-HR4 (2016): \naerosol: prescribed MACv2-SP\natmos: CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (SP mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-CM2-HR5":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-CM2-HR5", + "source":"CMCC-CM2-HR5 (2017): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-CM2-SR5":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-CM2-SR5", + "source":"CMCC-CM2-SR5 (2016): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-CM2-VHR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-CM2-VHR4", + "source":"CMCC-CM2-VHR4 (2017): \naerosol: prescribed MACv2-SP\natmos: CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (SP mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-ESM2-HR5":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-ESM2-HR5", + "source":"CMCC-ESM2-HR5 (2017): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: BFM5.1\nseaIce: CICE4.0" + }, + "CMCC-ESM2-SR5":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "LS3MIP", + "LUMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "source_id":"CMCC-ESM2-SR5", + "source":"CMCC-ESM2-SR5 (2017): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: BFM5.1\nseaIce: CICE4.0" + }, + "CNRM-CM6-1":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "PAMIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "source_id":"CNRM-CM6-1", + "source":"CNRM-CM6-1 (2017): \naerosol: prescribed monthly fields computed by TACTIC_v2 scheme\natmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)\natmosChem: OZL_v2\nland: Surfex 8.0c\nlandIce: GRISLI: Collaborating with l'Institut des Geosciences de l'Environnement in Grenoble on offline ice-sheet simulations\nocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: Gelato 6.1" + }, + "CNRM-CM6-1-HR":{ + "activity_participation":[ + "CMIP", + "DCPP", + "HighResMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "source_id":"CNRM-CM6-1-HR", + "source":"CNRM-CM6-1-HR (2017): \naerosol: prescribed monthly fields computed by TACTIC_v2 scheme\natmos: Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)\natmosChem: OZL_v2\nland: Surfex 8.0c\nlandIce: none\nocean: Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: Gelato 6.1" + }, + "CNRM-ESM2-1":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "CORDEX", + "GeoMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "source_id":"CNRM-ESM2-1", + "source":"CNRM-ESM2-1 (2017): \naerosol: TACTIC_v2\natmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)\natmosChem: REPROBUS-C_v2\nland: Surfex 8.0c\nlandIce: none\nocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: Pisces 2.s\nseaIce: Gelato 6.1" + }, + "CNRM-ESM2-1-HR":{ + "activity_participation":[ + "CMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "source_id":"CNRM-ESM2-1-HR", + "source":"CNRM-ESM2-1-HR (2017): \naerosol: TACTIC_v2\natmos: Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)\natmosChem: REPROBUS-C_v2\nland: Surfex 8.0c\nlandIce: none\nocean: Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: Pisces 2.s\nseaIce: Gelato 6.1" + }, + "CSIRO-Mk3L-1-3":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UTAS" + ], + "source_id":"CSIRO-Mk3L-1-3", + "source":"CSIRO Mk3L 1.3 (2006): \naerosol: none\natmos: unnamed (R21; 64 x 56 longitude/latitude; 18 levels; top level 36355 m)\natmosChem: none\nland: unnamed\nlandIce: none\nocean: MOM1.x (128 x 112 longitude/latitude; 31 levels; top grid cell 0-10 m; bottom grid cell 4600-5000 m)\nocnBgchem: none\nseaIce: unnamed (same grid as atmosphere)" + }, + "CanESM5":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CCCma" + ], + "source_id":"CanESM5", + "source":"CanESM5 (2017): \naerosol: interactive\natmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: CLASS3.6/CTEM1.2\nlandIce: none\nocean: NEMO3.4.1 (ORCA1, tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 362 x 292 longitude/latitude; 41 vertical levels; top grid cell 0-10 m)\nocnBgchem: CanOE\nseaIce: LIM2" + }, + "E3SM-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "E3SM-Project" + ], + "source_id":"E3SM-1-0", + "source":"E3SM 1.0 (2018): \naerosol: MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)\natmos: EAM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)\natmosChem: Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)\nland: ELM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; satellite phenology mode), MOSART (v1.0, 0.5 degree latitude/longitude grid)\nlandIce: none\nocean: MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: MPAS-Seaice (v6.0, same grid as ocean)" + }, + "EC-Earth3":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DCPP", + "DynVarMIP", + "LS3MIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3", + "source":"EC-Earth3 (2018): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-AerChem":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-AerChem", + "source":"EC-Earth3-AerChem (2018): \naerosol: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-CC":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "LUMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-CC", + "source":"EC-Earth3-CC (2018): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: PISCES v2\nseaIce: LIM3" + }, + "EC-Earth3-GrIS":{ + "activity_participation":[ + "CMIP", + "ISMIP6", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-GrIS", + "source":"EC-Earth3-GrIS (2018): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: PISM 0.7 (5 km x 5 km, 442 levels)\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-HR":{ + "activity_participation":[ + "DCPP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-HR", + "source":"EC-Earth3-HR (2017): \naerosol: none\natmos: IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA025 tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-LR", + "source":"EC-Earth3-LR (2018): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-Veg":{ + "activity_participation":[ + "CMIP", + "LS3MIP", + "LUMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-Veg", + "source":"EC-Earth3-Veg (2018): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-Veg-LR":{ + "activity_participation":[ + "CMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3-Veg-LR", + "source":"EC-Earth3-Veg-LR (2018): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3P", + "source":"EC-Earth3P (2017): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3P-HR", + "source":"EC-Earth3P-HR (2017): \naerosol: none\natmos: IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA025; tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P-VHR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "source_id":"EC-Earth3P-VHR", + "source":"EC-Earth3P-VHR (2017): \naerosol: none\natmos: IFS cy36r4 (TL1279, linearly reduced Gaussian grid equivalent to 2560 x 1280 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA012 tripolar primarily 0.08 degrees; 4322 x 3059 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "ECMWF-IFS-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "ECMWF" + ], + "source_id":"ECMWF-IFS-HR", + "source":"ECMWF-IFS-HR (2017): \naerosol: none\natmos: IFS (IFS CY43R1, Tco399, cubic octahedral reduced Gaussian grid equivalent to 1600 x 800 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (as implemented in IFS CY43R1)\nlandIce: none\nocean: NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)" + }, + "ECMWF-IFS-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "ECMWF" + ], + "source_id":"ECMWF-IFS-LR", + "source":"ECMWF-IFS-LR (2017): \naerosol: none\natmos: IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (as implemented in IFS CY43R1)\nlandIce: none\nocean: NEMO3.4 (NEMO v3.4; ORCA1 tripolar grid; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)" + }, + "ECMWF-IFS-MR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "ECMWF" + ], + "source_id":"ECMWF-IFS-MR", + "source":"ECMWF-IFS-MR (2017): \naerosol: none\natmos: IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (as implemented in IFS CY43R1)\nlandIce: none\nocean: NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)" + }, + "EMAC-2-53-AerChem":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MESSy-Consortium" + ], + "source_id":"EMAC-2-53-AerChem", + "source":"EMAC-2-53-AerChem (2017): \naerosol: gmxe 2.2.x\natmos: ECHAM5.3.02 (modified, spectral T42; 128 x 64 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: MECCA 3.8.x\nland: same as Atmosphere\nlandIce: none\nocean: MPIOM 1.3.0-beta (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: none\nseaIce: thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model" + }, + "EMAC-2-53-Vol":{ + "activity_participation":[ + "CMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MESSy-Consortium" + ], + "source_id":"EMAC-2-53-Vol", + "source":"EMAC-2-53-Vol (2017): \naerosol: gmxe 2.2.x\natmos: ECHAM5.3.02 (modified; spectral T42; 128 x 64 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: MECCA 3.8.x\nland: same as Atmosphere\nlandIce: none\nocean: MPIOM 1.3.0-beta (bipolar GR1.5, approximately 1.5deg reducing toward the poles; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: none\nseaIce: thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model" + }, + "FGOALS-f3-H":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "source_id":"FGOALS-f3-H", + "source":"FGOALS-f3-H (2017): \naerosol: none\natmos: FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: LICOM3.0 (LICOM3.0, tripolar primarily 0.1deg; 3600 x 2302 longitude/latitude; 55 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "FGOALS-f3-L":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "OMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "source_id":"FGOALS-f3-L", + "source":"FGOALS-f3-L (2017): \naerosol: none\natmos: FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "FGOALS-g3":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "LS3MIP", + "OMIP", + "PMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "source_id":"FGOALS-g3", + "source":"FGOALS-g3 (2017): \naerosol: none\natmos: GAMIL2 (180 x 90 longitude/latitude; 26 levels; top level 2.19hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "FIO-ESM-2-0":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "OMIP", + "ScenarioMIP", + "SIMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "FIO-QLNM" + ], + "source_id":"FIO-ESM-2-0", + "source":"FIO-ESM 2.0 (2018): \naerosol: Prescribed monthly fields\natmos: CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)\natmosChem: none\nland: CLM4.0 (same grid at atmos)\nlandIce: none\nocean: POP2-W (POP2 coupled with MASNUM surface wave model, Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0 (same grid as ocean)" + }, + "GFDL-AM4":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-AM4", + "source":"GFDL-AM4 (2018): \naerosol: interactive\natmos: GFDL-AM4.0 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: GFDL-LM4.0\nlandIce: GFDL-LM4.0\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "GFDL-CM4":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DynVarMIP", + "GMMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-CM4", + "source":"GFDL-CM4 (2018): \naerosol: interactive\natmos: GFDL-AM4.0.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: GFDL-LM4.0.1 (1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 20 levels; bottom level 10m); land-Veg:unnamed (dynamic vegetation, dynamic land use); land-Hydro:unnamed (soil water and ice, multi-layer snow, rivers and lakes)\nlandIce: GFDL-LM4.0.1\nocean: GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: GFDL-BLINGv2\nseaIce: GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-CM4C192":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-CM4C192", + "source":"GFDL-CM4C192 (2018): \naerosol: interactive\natmos: GFDL-AM4C192 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: GFDL-LM4.0.1\nlandIce: GFDL-LM4.0.1\nocean: GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: none\nseaIce: GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-ESM2M":{ + "activity_participation":[ + "FAFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-ESM2M", + "source":"GFDL-ESM2M (2012): \naerosol: prescribed\natmos: GFDL-AM2 (144 x 90 longitude/latitude; 24 levels; top level 1 hPa)\natmosChem: prescribed\nland: GFDL-LM3.0\nlandIce: GFDL-LM3.0\nocean: GFDL-MOM4p1 (tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: GFDL-TOPAZ2\nseaIce: GFDL-SIM2 (GFDL-SIS, tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 3 layers; 5 thickness categories)" + }, + "GFDL-ESM4":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "LUMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-ESM4", + "source":"GFDL-ESM4 (2018): \naerosol: interactive\natmos: GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 49 levels; top level 1 Pa)\natmosChem: GFDL-ATMCHEM4.1 (full atmospheric chemistry)\nland: GFDL-LM4.1\nlandIce: GFDL-LM4.1\nocean: GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: GFDL-COBALTv2\nseaIce: GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-OM4p5B":{ + "activity_participation":[ + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "source_id":"GFDL-OM4p5B", + "source":"GFDL-OM4p5B (2018): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: GFDL-BLINGv2\nseaIce: GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GISS-E2-1-G":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "source_id":"GISS-E2-1-G", + "source":"GISS-E2.1G (2016): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: GISS Ocean (1 degree; 360 x 180 latitude/longitude; 32 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "GISS-E2-1-H":{ + "activity_participation":[ + "CMIP", + "OMIP", + "PAMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "source_id":"GISS-E2-1-H", + "source":"GISS-E2.1H (2016): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: HYCOM Ocean (~1 degree tripolar grid; 360 x 180 latitude/longitude; 26 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "GISS-E2-1-MA-G":{ + "activity_participation":[ + "CMIP", + "RFMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "source_id":"GISS-E2-1-MA-G", + "source":"GISS-E2.1MA-G (2018): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.1MA (2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "GISS-E3-G":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "source_id":"GISS-E3-G", + "source":"GISS-E3-G (2018): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E3 (Cubed sphere, C90; 90 x 90 x 6 gridboxes/cubeface, grid resolution aligns with longitude/latitude along central lines for each cubeface; 102 levels; top level 0.002 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "HadGEM3-GC31-HH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "source_id":"HadGEM3-GC31-HH", + "source":"HadGEM3-GC31-HH (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)" + }, + "HadGEM3-GC31-HM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "source_id":"HadGEM3-GC31-HM", + "source":"HadGEM3-GC31-HM (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "HadGEM3-GC31-LL":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "FAFMIP", + "HighResMIP", + "PMIP", + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "source_id":"HadGEM3-GC31-LL", + "source":"HadGEM3-GC31-LL (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)" + }, + "HadGEM3-GC31-LM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "source_id":"HadGEM3-GC31-LM", + "source":"HadGEM3-GC31-LM (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "HadGEM3-GC31-MH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "source_id":"HadGEM3-GC31-MH", + "source":"HadGEM3-GC31-MH (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)" + }, + "HadGEM3-GC31-MM":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "HighResMIP", + "LS3MIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "source_id":"HadGEM3-GC31-MM", + "source":"HadGEM3-GC31-MM (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "ICON-ESM-LR":{ + "activity_participation":[ + "CMIP", + "OMIP", + "SIMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MPI-M" + ], + "source_id":"ICON-ESM-LR", + "source":"ICON-ESM-LR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH4.20\nlandIce: none/prescribed\nocean: ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "IITM-ESM":{ + "activity_participation":[ + "CMIP", + "GMMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CCCR-IITM" + ], + "source_id":"IITM-ESM", + "source":"IITM-ESM (2015): \naerosol: prescribed MAC-v2\natmos: IITM-GFSv1 (T62L64, Linearly Reduced Gaussian Grid; 192 x 94 longitude/latitude; 64 levels; top level 0.2 mb)\natmosChem: none\nland: NOAH LSMv2.7.1\nlandIce: none\nocean: MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: TOPAZv2.0\nseaIce: SISv1.0" + }, + "INM-CM4-8":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INM" + ], + "source_id":"INM-CM4-8", + "source":"INM-CM4-8 (2016): \naerosol: INM-AER1\natmos: INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)\natmosChem: none\nland: INM-LND1\nlandIce: none\nocean: INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)\nocnBgchem: none\nseaIce: INM-ICE1" + }, + "INM-CM5-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INM" + ], + "source_id":"INM-CM5-0", + "source":"INM-CM5-0 (2016): \naerosol: INM-AER1\natmos: INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)\natmosChem: none\nland: INM-LND1\nlandIce: none\nocean: INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)\nocnBgchem: none\nseaIce: INM-ICE1" + }, + "INM-CM5-H":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INM" + ], + "source_id":"INM-CM5-H", + "source":"INM-CM5-H (2016): \naerosol: INM-AER1\natmos: INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)\natmosChem: none\nland: INM-LND1\nlandIce: none\nocean: INM-OM5-H (North Pole shifted to 60N, 90E. 0.167x0.125; 2160x1440 longitude/latitude; 40 levels; vertical sigma coordinate)\nocnBgchem: none\nseaIce: INM-ICE1" + }, + "IPSL-CM6A-ATM-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "IPSL" + ], + "source_id":"IPSL-CM6A-ATM-HR", + "source":"IPSL-CM6A-ATM-HR (2018): \naerosol: none\natmos: LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 40000 m)\natmosChem: none\nland: ORCHIDEE (v2.0, Water/Carbon/Energy mode)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "IPSL-CM6A-LR":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "IPSL" + ], + "source_id":"IPSL-CM6A-LR", + "source":"IPSL-CM6A-LR (2017): \naerosol: none\natmos: LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 40000 m)\natmosChem: none\nland: ORCHIDEE (v2.0, Water/Carbon/Energy mode)\nlandIce: none\nocean: NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: NEMO-PISCES\nseaIce: NEMO-LIM3" + }, + "KACE-1-0-G":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NIMS-KMA" + ], + "source_id":"KACE-1-0-G", + "source":"KACE1.0-G (2018): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)" + }, + "KIOST-ESM":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "DynVarMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "KIOST" + ], + "source_id":"KIOST-ESM", + "source":"KIOST-ESM (2018): \naerosol: none\natmos: GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)\natmosChem: Simple carbon aerosol model (emission type)\nland: NCAR-CLM4\nlandIce: NCAR-CLM4\nocean: GFDL-MOM5.0 (tripolar - nominal 1.0 deg; 360 x 200 longitude/latitude; 52 levels; top grid cell 0-2 m; NK mixed layer scheme)\nocnBgchem: TOPAZ2\nseaIce: GFDL-SIS" + }, + "LBLRTM":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AER" + ], + "source_id":"LBLRTM", + "source":"LBLRTM (2017): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "MCM-UA-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UA" + ], + "source_id":"MCM-UA-1-0", + "source":"MCM-UA-1-0 (1991): \naerosol: Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)\natmos: R30L14 (3.75 X 2.5 degree (long-lat) configuration; 96 x 80 longitude/latitude; 14 levels; top level 0.015 sigma, 15 mb)\natmosChem: none\nland: Standard Manabe bucket hydrology scheme (Manabe 1969, doi: 10.1175/1520-0493(1969)097<0739:CATOC>2.3.CO;2)\nlandIce: Specified location - invariant in time, has high albedo and latent heat capacity\nocean: MOM1.0 (MOM1, 1.875 X 2.5 deg; 192 x 80 longitude/latitude; 18 levels; top grid cell 0-40 m)\nocnBgchem: none\nseaIce: Thermodynamic ice model (free drift dynamics)" + }, + "MIROC-ES2H":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "DynVarMIP", + "GeoMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"MIROC-ES2H", + "source":"MIROC-ES2H (2018): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)\natmosChem: CHASER4.0\nland: MATSIRO6.0+VISIT-e ver.1.0\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles\nseaIce: COCO4.9" + }, + "MIROC-ES2L":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DynVarMIP", + "GeoMIP", + "LUMIP", + "OMIP", + "PMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"MIROC-ES2L", + "source":"MIROC-ES2L (2018): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)\natmosChem: none\nland: MATSIRO6.0+VISIT-e ver.1.0\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles\nseaIce: COCO4.9" + }, + "MIROC6":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "HighResMIP", + "LS3MIP", + "OMIP", + "PAMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"MIROC6", + "source":"MIROC6 (2017): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)\natmosChem: none\nland: MATSIRO6.0\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: none\nseaIce: COCO4.9" + }, + "MPI-ESM-1-2-HAM":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "HAMMOZ-Consortium" + ], + "source_id":"MPI-ESM-1-2-HAM", + "source":"MPI-ESM1.2-HAM (2017): \naerosol: HAM2.3\natmos: ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: sulfur chemistry (unnamed)\nland: JSBACH 3.20\nlandIce: none\nocean: MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC6\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MPI-ESM1-2-HR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DCPP", + "DynVarMIP", + "FAFMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MPI-M", + "DWD", + "DKRZ" + ], + "source_id":"MPI-ESM1-2-HR", + "source":"MPI-ESM1.2-HR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)\natmosChem: none\nland: JSBACH3.20\nlandIce: none/prescribed\nocean: MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MPI-ESM1-2-LR":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MPI-M", + "AWI" + ], + "source_id":"MPI-ESM1-2-LR", + "source":"MPI-ESM1.2-LR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: none\nland: JSBACH3.20\nlandIce: none/prescribed\nocean: MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MRI-AGCM3-2":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MRI" + ], + "source_id":"MRI-AGCM3-2", + "source":"MRI-AGCM3-2 (2017): \naerosol: Prescribed from MRI-ESM2.0\natmos: MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)\natmosChem: none\nland: SIB0109\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "MRI-ESM2-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "LS3MIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MRI" + ], + "source_id":"MRI-ESM2-0", + "source":"MRI-ESM2.0 (2017): \naerosol: MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)\natmos: MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)\natmosChem: MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)\nland: HAL 1.0\nlandIce: none\nocean: MRI.COM4.4 (tripolar primarily 0.5 deg latitude/1 deg longitude with meridional refinement down to 0.3 deg within 10 degrees north and south of the equator; 360 x 364 longitude/latitude; 61 levels; top grid cell 0-2 m)\nocnBgchem: MRI.COM4.4\nseaIce: MRI.COM4.4" + }, + "NESM3":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "GeoMIP", + "PMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NUIST" + ], + "source_id":"NESM3", + "source":"NESM v3 (2016): \naerosol: none\natmos: ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)\natmosChem: none\nland: JSBACH v3.1\nlandIce: none\nocean: NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)\nocnBgchem: none\nseaIce: CICE4.1" + }, + "NICAM16-7S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"NICAM16-7S", + "source":"NICAM16-7S (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (56km icosahedral grid; 163,842 grid cells (=10*4^7+2); 38 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NICAM16-8S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"NICAM16-8S", + "source":"NICAM16-8S (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (28km icosahedral grid; 655,362 grid cells (=10*4^8+2); 38 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NICAM16-9D-L78":{ + "activity_participation":[ + "CFMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"NICAM16-9D-L78", + "source":"NICAM16-9D-L78 (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 78 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NICAM16-9S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "source_id":"NICAM16-9S", + "source":"NICAM16-9S (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 38 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NorESM2-HH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-HH", + "source":"NorESM2-HH (2018): \naerosol: OsloAero\natmos: CAM-OSLO (0.25 degree resolution; 1152 x 768; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (0.25 degree resolution; 1440 x 1152; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-LM":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-LM", + "source":"NorESM2-LM (2017): \naerosol: OsloAero\natmos: CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-LME":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "GeoMIP", + "LUMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-LME", + "source":"NorESM2-LME (2017): \naerosol: OsloAero\natmos: CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-LMEC":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-LMEC", + "source":"NorESM2-LMEC (2017): \naerosol: OsloAero\natmos: CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)\natmosChem: OsloChemComp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-MH":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-MH", + "source":"NorESM2-MH (2017): \naerosol: OsloAero\natmos: CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (0.25 degree resolution; 1440 x 1152; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-MM":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "source_id":"NorESM2-MM", + "source":"NorESM2-MM (2017): \naerosol: OsloAero\natmos: CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "PCMDI-test-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "PCMDI" + ], + "source_id":"PCMDI-test-1-0", + "source":"PCMDI-test 1.0 (1989): \naerosol: none\natmos: Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)\natmosChem: none\nland: Earth1.0\nlandIce: none\nocean: BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: Declining1.0-warming (360 x 180 longitude/latitude)" + }, + "SAM0-UNICON":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "SNU" + ], + "source_id":"SAM0-UNICON", + "source":"SAM0-UNICON (2017): \naerosol: MAM3\natmos: CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "TaiESM1":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "GMMIP", + "LUMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AS-RCEC" + ], + "source_id":"TaiESM1", + "source":"TaiESM 1.0 (2018): \naerosol: SNAP (same grid as atmos)\natmos: TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)\natmosChem: SNAP (same grid as atmos)\nland: CLM4.0 (same grid as atmos)\nlandIce: none\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4" + }, + "UKESM1-0-LL":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CMIP", + "GeoMIP", + "LUMIP", + "OMIP", + "PMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC", + "NIMS-KMA", + "NIWA" + ], + "source_id":"UKESM1-0-LL", + "source":"UKESM1.0-LL (2018): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: UKCA-StratTrop\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: MEDUSA2\nseaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)" + }, + "UKESM1-0-MMh":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "source_id":"UKESM1-0-MMh", + "source":"UKESM1.0-MMh (2018): \naerosol: UKCA-GLOMAP-mode (horizontal resolution degraded relative to that used for atmosphere physics)\natmos: MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)\natmosChem: UKCA-StratTrop (horizontal resolution degraded relative to that used for atmosphere physics)\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: MEDUSA2 (horizontal resolution degraded relative to that used for ocean physics)\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "UofT-CCSM4":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UofT" + ], + "source_id":"UofT-CCSM4", + "source":"UofT-CCSM4 (2014): \naerosol: unnamed\natmos: CAM4 (finite-volume dynamical core; 288 x 192 longitude/latitude; 26 levels; top level ~2 hPa)\natmosChem: none\nland: CLM4\nlandIce: none\nocean: POP2 (displaced dipole grid; 384 x 320 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4" + }, + "VRESM-1-0":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "HighResMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CSIR-CSIRO" + ], + "source_id":"VRESM-1-0", + "source":"VRESM 1.0 (2016): \naerosol: Rotstayn-1.0\natmos: VCAM-1.0 (C192; 192 x 192 x 6 longitude/latitude/cubeface; 35 levels; top level 35km)\natmosChem: none\nland: CABLE v2.2.3\nlandIce: none\nocean: VCOM-1.0 (C192; 384 x 384 x 6 longitude/latitude/cubeface; 35 levels; top grid cell 0-10 m)\nocnBgchem: PISCES v3.4socco\nseaIce: CSIR-ICE (visco-plastic)" + } + }, + "source_type":{ + "AER":"aerosol treatment in an atmospheric model where concentrations are calculated based on emissions, transformation, and removal processes (rather than being prescribed or omitted entirely)", + "AGCM":"atmospheric general circulation model run with prescribed ocean surface conditions and usually a model of the land surface", + "AOGCM":"coupled atmosphere-ocean global climate model, additionally including explicit representation of at least the land and sea ice", + "BGC":"biogeochemistry model component that at the very least accounts for carbon reservoirs and fluxes in the atmosphere, terrestrial biosphere, and ocean", + "CHEM":"chemistry treatment in an atmospheric model that calculates atmospheric oxidant concentrations (including at least ozone), rather than prescribing them", + "ISM":"ice-sheet model that includes ice-flow", + "LAND":"land model run uncoupled from the atmosphere", + "OGCM":"ocean general circulation model run uncoupled from an AGCM but, usually including a sea-ice model", + "RAD":"radiation component of an atmospheric model run 'offline'", + "SLAB":"slab-ocean used with an AGCM in representing the atmosphere-ocean coupled system" + }, + "frequency":{ + "1hr":"sampled hourly", + "1hrCM":"monthly-mean diurnal cycle resolving each day into 1-hour means", + "1hrPt":"sampled hourly, at specified time point within an hour", + "3hr":"sampled every 3 hours", + "3hrPt":"sampled 3 hourly, at specified time point within the time period", + "6hr":"sampled every 6 hours", + "6hrPt":"sampled 6 hourly, at specified time point within the time period", + "day":"daily mean samples", + "dec":"decadal mean samples", + "fx":"fixed (time invariant) field", + "mon":"monthly mean samples", + "monC":"monthly climatology computed from monthly mean samples", + "monPt":"sampled monthly, at specified time point within the time period", + "subhrPt":"sampled sub-hourly, at specified time point within an hour", + "yr":"annual mean samples", + "yrPt":"sampled yearly, at specified time point within the time period" + }, + "grid_label":{ + "gm":"global mean data", + "gn":"data reported on a model's native grid", + "gna":"data reported on a native grid in the region of Antarctica", + "gng":"data reported on a native grid in the region of Greenland", + "gnz":"zonal mean data reported on a model's native latitude grid", + "gr":"regridded data reported on the data provider's preferred target grid", + "gr1":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr1a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr1g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr1z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr2":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr2a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr2g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr2z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr3":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr3a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr3g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr3z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr4":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr4a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr4g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr4z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr5":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr5a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr5g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr5z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr6":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr6a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr6g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr6z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr7":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr7a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr7g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr7z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr8":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr8a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr8g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr8z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr9":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr9a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr9g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr9z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gra":"regridded data in the region of Antarctica reported on the data provider's preferred target grid", + "grg":"regridded data in the region of Greenland reported on the data provider's preferred target grid", + "grz":"regridded zonal mean data reported on the data provider's preferred latitude target grid" + }, + "nominal_resolution":[ + "0.5 km", + "1 km", + "10 km", + "100 km", + "1000 km", + "10000 km", + "1x1 degree", + "2.5 km", + "25 km", + "250 km", + "2500 km", + "5 km", + "50 km", + "500 km", + "5000 km" + ], + "realm":{ + "aerosol":"Aerosol", + "atmos":"Atmosphere", + "atmosChem":"Atmospheric Chemistry", + "land":"Land Surface", + "landIce":"Land Ice", + "ocean":"Ocean", + "ocnBgchem":"Ocean Biogeochemistry", + "seaIce":"Sea Ice" + }, + "table_id":[ + "3hr", + "6hrLev", + "6hrPlev", + "6hrPlevPt", + "AERday", + "AERhr", + "AERmon", + "AERmonZ", + "Amon", + "CF3hr", + "CFday", + "CFmon", + "CFsubhr", + "E1hr", + "E1hrClimMon", + "E3hr", + "E3hrPt", + "E6hrZ", + "Eday", + "EdayZ", + "Efx", + "Emon", + "EmonZ", + "Esubhr", + "Eyr", + "IfxAnt", + "IfxGre", + "ImonAnt", + "ImonGre", + "IyrAnt", + "IyrGre", + "LImon", + "Lmon", + "Oclim", + "Oday", + "Odec", + "Ofx", + "Omon", + "Oyr", + "SIday", + "SImon", + "day", + "fx" + ], + "license":[ + "^CMIP6 model data produced by .* is licensed under a Creative Commons Attribution.*ShareAlike 4.0 International License .https://creativecommons.org/licenses.* *Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment\\. *Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file).*\\. *The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose\\. *All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law\\.$" + ], + "mip_era":[ + "CMIP6" + ], + "sub_experiment_id":{ + "none":"none", + "s1910":"initialized near end of year 1910", + "s1950":"initialized near end of year 1950", + "s1960":"initialized near end of year 1960", + "s1961":"initialized near end of year 1961", + "s1962":"initialized near end of year 1962", + "s1963":"initialized near end of year 1963", + "s1964":"initialized near end of year 1964", + "s1965":"initialized near end of year 1965", + "s1966":"initialized near end of year 1966", + "s1967":"initialized near end of year 1967", + "s1968":"initialized near end of year 1968", + "s1969":"initialized near end of year 1969", + "s1970":"initialized near end of year 1970", + "s1971":"initialized near end of year 1971", + "s1972":"initialized near end of year 1972", + "s1973":"initialized near end of year 1973", + "s1974":"initialized near end of year 1974", + "s1975":"initialized near end of year 1975", + "s1976":"initialized near end of year 1976", + "s1977":"initialized near end of year 1977", + "s1978":"initialized near end of year 1978", + "s1979":"initialized near end of year 1979", + "s1980":"initialized near end of year 1980", + "s1981":"initialized near end of year 1981", + "s1982":"initialized near end of year 1982", + "s1983":"initialized near end of year 1983", + "s1984":"initialized near end of year 1984", + "s1985":"initialized near end of year 1985", + "s1986":"initialized near end of year 1986", + "s1987":"initialized near end of year 1987", + "s1988":"initialized near end of year 1988", + "s1989":"initialized near end of year 1989", + "s1990":"initialized near end of year 1990", + "s1991":"initialized near end of year 1991", + "s1992":"initialized near end of year 1992", + "s1993":"initialized near end of year 1993", + "s1994":"initialized near end of year 1994", + "s1995":"initialized near end of year 1995", + "s1996":"initialized near end of year 1996", + "s1997":"initialized near end of year 1997", + "s1998":"initialized near end of year 1998", + "s1999":"initialized near end of year 1999", + "s2000":"initialized near end of year 2000", + "s2001":"initialized near end of year 2001", + "s2002":"initialized near end of year 2002", + "s2003":"initialized near end of year 2003", + "s2004":"initialized near end of year 2004", + "s2005":"initialized near end of year 2005", + "s2006":"initialized near end of year 2006", + "s2007":"initialized near end of year 2007", + "s2008":"initialized near end of year 2008", + "s2009":"initialized near end of year 2009", + "s2010":"initialized near end of year 2010", + "s2011":"initialized near end of year 2011", + "s2012":"initialized near end of year 2012", + "s2013":"initialized near end of year 2013", + "s2014":"initialized near end of year 2014", + "s2015":"initialized near end of year 2015", + "s2016":"initialized near end of year 2016", + "s2017":"initialized near end of year 2017", + "s2018":"initialized near end of year 2018", + "s2019":"initialized near end of year 2019", + "s2020":"initialized near end of year 2020", + "s2021":"initialized near end of year 2021", + "s2022":"initialized near end of year 2022", + "s2023":"initialized near end of year 2023", + "s2024":"initialized near end of year 2024", + "s2025":"initialized near end of year 2025", + "s2026":"initialized near end of year 2026", + "s2027":"initialized near end of year 2027", + "s2028":"initialized near end of year 2028", + "s2029":"initialized near end of year 2029" + }, + "experiment_id":{ + "1pctCO2":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"1 percent per year increase in CO2", + "experiment_id":"1pctCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-4xext":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"extension from year 140 of 1pctCO2 with 4xCO2", + "experiment_id":"1pctCO2-4xext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "1pctCO2" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment", + "experiment_id":"1pctCO2-bgc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-cdr":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"1 percent per year decrease in CO2 from 4xCO2", + "experiment_id":"1pctCO2-cdr", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-rad":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"radiatively-coupled version of 1 percent per year increasing CO2 experiment", + "experiment_id":"1pctCO2-rad", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2Ndep":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"1 percent per year increasing CO2 experiment with increasing N-deposition", + "experiment_id":"1pctCO2Ndep", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2Ndep-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment with increasing N-deposition", + "experiment_id":"1pctCO2Ndep-bgc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2to4x-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"simulation with interactive ice sheet forced by 1 percent per year increase in CO2 to 4xCO2 (subsequently held fixed)", + "experiment_id":"1pctCO2to4x-withism", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "piControl-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G1":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt quadrupling of CO2 plus reduction in total solar irradiance", + "experiment_id":"G1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6SST1":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs, forcings, and other prescribed conditions from year 2020 of SSP5-8.5", + "experiment_id":"G6SST1", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6SST2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6solar", + "experiment_id":"G6SST2-solar", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6SST2-sulfur":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6sulfur", + "experiment_id":"G6SST2-sulfur", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"total solar irradiance reduction to reduce net forcing from SSP585 to SSP245", + "experiment_id":"G6solar", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6sulfur":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"stratospheric sulfate aerosol injection to reduce net forcing from SSP585 to SSP245", + "experiment_id":"G6sulfur", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G7SST1-cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2020 of SSP5-8.5 and cirrus thinning", + "experiment_id":"G7SST1-cirrus", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G7SST2-cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2100 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G7cirrus", + "experiment_id":"G7SST2-cirrus", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G7cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"increase cirrus ice crystal fall speed to reduce net forcing in SSP585 by 1 W m-2", + "experiment_id":"G7cirrus", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "a4SST":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST but with SSTs from abrupt-4xCO2", + "experiment_id":"a4SST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "abrupt-4xCO2" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "a4SSTice":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2", + "experiment_id":"a4SSTice", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "abrupt-4xCO2" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "a4SSTice-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2, and 4xCO2 seen by radiation and vegetation", + "experiment_id":"a4SSTice-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "abrupt-4xCO2" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-0p5xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt halving of CO2", + "experiment_id":"abrupt-0p5xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-2xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt doubling of CO2", + "experiment_id":"abrupt-2xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-4xCO2":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt quadrupling of CO2", + "experiment_id":"abrupt-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-solm4p":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt 4% decrease in solar constant", + "experiment_id":"abrupt-solm4p", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-solp4p":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt 4% increase in solar constant", + "experiment_id":"abrupt-solp4p", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP", + "experiment_id":"amip", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP SSTs with 4xCO2", + "experiment_id":"amip-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-TIP":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"same as \"amip\" run, but surface elevations of the Tibetan-Iranian Plateau and Himalayas reduced to 500m", + "experiment_id":"amip-TIP", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-TIP-nosh":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"same as \"amip\" run, but sensible heat not allowed for elevations of the Tibetan-Iranian Plateau and Himalayas above 500m", + "experiment_id":"amip-TIP-nosh", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-a4SST-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as AMIP but with warming pattern from abrupt-4xCO2 added to SSTs and 4xCO2 seen by radiation and vegetation", + "experiment_id":"amip-a4SST-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-climSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP with climatological SIC", + "experiment_id":"amip-climSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-climSST":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP with climatological SST", + "experiment_id":"amip-climSST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-future4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP with patterned 4K SST increase", + "experiment_id":"amip-future4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-hist":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP-style simulation covering the period 1870-2014", + "experiment_id":"amip-hist", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-hld":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"same as \"amip\" run, but surface elevations of the East African Highlands in Africa, Sierra Madre in N. America and Andes in S. America reduced to 500m", + "experiment_id":"amip-hld", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lfmip-pObs":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land (from pseudo-observations) and AMIP SSTs", + "experiment_id":"amip-lfmip-pObs", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lfmip-pdLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land (from current climatology) and AMIP SSTs", + "experiment_id":"amip-lfmip-pdLC", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lfmip-rmLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land conditions (from running mean climatology) and AMIP SSTs", + "experiment_id":"amip-lfmip-rmLC", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP experiment with longwave cloud-radiative effects off", + "experiment_id":"amip-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-m4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP with uniform 4K SST decrease", + "experiment_id":"amip-m4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-p4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP with uniform 4K SST increase", + "experiment_id":"amip-p4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-p4K-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP experiment with uniform 4K SST increase and with longwave cloud radiative effects off", + "experiment_id":"amip-p4K-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-piForcing":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP SSTs with pre-industrial anthropogenic and natural forcing", + "experiment_id":"amip-piForcing", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet with control SST and 4xCO2", + "experiment_id":"aqua-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-control":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet control", + "experiment_id":"aqua-control", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-control-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet control with longwave cloud radiative effects off", + "experiment_id":"aqua-control-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-p4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet with uniform 4K SST increase", + "experiment_id":"aqua-p4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-p4K-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet with uniform 4K SST increase and with longwave cloud radiative effects off", + "experiment_id":"aqua-p4K-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "control-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled control with fixed 1950's forcing (HighResMIP equivalent of pre-industrial control)", + "experiment_id":"control-1950", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "spinup-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "control-slab":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control with slab ocean", + "experiment_id":"control-slab", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "SLAB" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppA-assim":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Assimilation run paralleling the historical simulation, which may be used to generate hindcast initial conditions", + "experiment_id":"dcppA-assim", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppA-hindcast":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast initialized based on observations and using historical forcing", + "experiment_id":"dcppA-hindcast", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016" + ] + }, + "dcppA-hindcast-niff":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast initialized based on observations but without using knowledge of subsequent historical forcing", + "experiment_id":"dcppA-hindcast-niff", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016" + ] + }, + "dcppA-historical-niff":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast initialized from historical climate simulation but without using knowledge of subsequent historical forcing", + "experiment_id":"dcppA-historical-niff", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016" + ] + }, + "dcppB-forecast":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"forecast initialized from observations with forcing from ssp245", + "experiment_id":"dcppB-forecast", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2017", + "s2018", + "s2019", + "s2020", + "s2021", + "s2022", + "s2023", + "s2024", + "s2025", + "s2026", + "s2027", + "s2028", + "s2029" + ] + }, + "dcppC-amv-ExTrop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of negative extratropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-ExTrop-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-ExTrop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of positive extratropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-ExTrop-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-Trop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of negative tropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-Trop-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-Trop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized positive tropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-Trop-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of negative AMV anomaly pattern", + "experiment_id":"dcppC-amv-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of positive AMV anomaly pattern", + "experiment_id":"dcppC-amv-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-atl-control":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized Atlantic control", + "experiment_id":"dcppC-atl-control", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-atl-pacemaker":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pacemaker Atlantic experiment", + "experiment_id":"dcppC-atl-pacemaker", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1910", + "s1950" + ] + }, + "dcppC-atl-spg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"predictability of 1990s warming of Atlantic sub-polar gyre", + "experiment_id":"dcppC-atl-spg", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999" + ] + }, + "dcppC-forecast-addAgung":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2015 forecast with added Agung forcing", + "experiment_id":"dcppC-forecast-addAgung", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2014" + ] + }, + "dcppC-forecast-addElChichon":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2015 forecast with added El Chichon forcing", + "experiment_id":"dcppC-forecast-addElChichon", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2014" + ] + }, + "dcppC-forecast-addPinatubo":{ + "activity_id":[ + "DCPP VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2015 forecast with added Pinatubo forcing", + "experiment_id":"dcppC-forecast-addPinatubo", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2014" + ] + }, + "dcppC-hindcast-noAgung":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noAgung", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1962" + ] + }, + "dcppC-hindcast-noElChichon":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noElChichon", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1981" + ] + }, + "dcppC-hindcast-noPinatubo":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noPinatubo", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1990" + ] + }, + "dcppC-ipv-NexTrop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized negative northern extratropical IPV anomaly pattern", + "experiment_id":"dcppC-ipv-NexTrop-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-ipv-NexTrop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized positive northern extratropical IPV anomaly pattern", + "experiment_id":"dcppC-ipv-NexTrop-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-ipv-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized negative IPV anomaly pattern", + "experiment_id":"dcppC-ipv-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-ipv-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized positive IPV anomaly pattern", + "experiment_id":"dcppC-ipv-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-pac-control":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized Pacific control", + "experiment_id":"dcppC-pac-control", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-pac-pacemaker":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pacemaker Pacific experiment", + "experiment_id":"dcppC-pac-pacemaker", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1910", + "s1950" + ] + }, + "deforest-globe":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized transient global deforestation", + "experiment_id":"deforest-globe", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-hist":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"all-forcing simulation of the recent past with atmospheric CO2 concentration calculated", + "experiment_id":"esm-hist", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-hist-ext":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"post-2014 all-forcing simulation with atmospheric CO2 concentration calculated", + "experiment_id":"esm-hist-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-pi-CO2pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pulse addition of 100 Gt carbon to pre-industrial atmosphere", + "experiment_id":"esm-pi-CO2pulse", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-pi-cdr-pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pulse removal of 100 Gt carbon from pre-industrial atmosphere", + "experiment_id":"esm-pi-cdr-pulse", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-piControl":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pre-industrial control simulation with CO2 concentration calculated", + "experiment_id":"esm-piControl", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl-spinup" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-piControl-spinup":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pre-industrial control simulation with CO2 concentration calculated (spin-up)", + "experiment_id":"esm-piControl-spinup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp534-over":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven SSP5-3.4-OS scenario", + "experiment_id":"esm-ssp534-over", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven RCP8.5 based on SSP5", + "experiment_id":"esm-ssp585", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ocn-alk":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven SSP5-8.5 scenario but with ocean alkalinization from year 2020 onward", + "experiment_id":"esm-ssp585-ocn-alk", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ocn-alk-stop":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven SSP5-8.5 scenario with alkalinization terminated in year 2070", + "experiment_id":"esm-ssp585-ocn-alk-stop", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-ssp585-ocn-alk" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ssp126Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emissions-driven SSP5-8.5 with SSP1-2.6 land use", + "experiment_id":"esm-ssp585-ssp126Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ssp126Lu-ext":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"extension of the LUMIP emissions-driven simulation following SSP5-8.5 with SSP1-2.6 land use", + "experiment_id":"esm-ssp585-ssp126Lu-ext", + "parent_activity_id":[ + "LUMIP" + ], + "parent_experiment_id":[ + "esm-ssp585-ssp126Lu" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585ext":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven long-term extension of the SSP5-8.5 scenario", + "experiment_id":"esm-ssp585ext", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-CO2pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"instantaneous 100 Gt C addition to an industrial era atmosphere", + "experiment_id":"esm-yr2010CO2-CO2pulse", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-cdr-pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"instantaneous 100 Gt C removal from industrial era atmosphere", + "experiment_id":"esm-yr2010CO2-cdr-pulse", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-control":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"historical emissions followed by fixed 2010 emissions (both model-diagnosed)", + "experiment_id":"esm-yr2010CO2-control", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-noemit":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"branches from esm-yr2010CO2-control with zero emissions", + "experiment_id":"esm-yr2010CO2-noemit", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-all":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface fluxes of momentum, heat and water into ocean", + "experiment_id":"faf-all", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-heat":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of heat into ocean", + "experiment_id":"faf-heat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-passiveheat":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus surface flux of passive heat tracer into ocean", + "experiment_id":"faf-passiveheat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-stress":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of momentum into ocean", + "experiment_id":"faf-stress", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-water":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of water into ocean", + "experiment_id":"faf-water", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "futSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with future SST and present day SIC", + "experiment_id":"futSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "futureSST-4xCO2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"year 100 SSTs from abrupt-4xCO2 with quadrupled CO2 and solar reduction", + "experiment_id":"futureSST-4xCO2-solar", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G1" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highres-future":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled future 2015-2050 using a scenario as close to CMIP5 RCP8.5 as possible within CMIP6", + "experiment_id":"highres-future", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "hist-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-4xCO2":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"highresSST-present SST with 4xCO2 concentrations", + "experiment_id":"highresSST-4xCO2", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-LAI":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"common LAI dataset within the highresSST-present experiment", + "experiment_id":"highresSST-LAI", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-future":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"forced atmosphere experiment for 2015-2050 using SST/sea-ice derived from CMIP5 RCP8.5 simulations and a scenario as close to RCP8.5 as possible within CMIP6", + "experiment_id":"highresSST-future", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-p4K":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"uniform 4K warming of highresSST-present SST", + "experiment_id":"highresSST-p4K", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-present":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"forced atmosphere experiment for 1950-2014", + "experiment_id":"highresSST-present", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-smoothed":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"smoothed SST version of highresSST-present", + "experiment_id":"highresSST-smoothed", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled historical 1950-2014", + "experiment_id":"hist-1950", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "spinup-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-1950HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical forcing, but with1950s halocarbon concentrations; initialized in 1950", + "experiment_id":"hist-1950HC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-CO2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical CO2-only run", + "experiment_id":"hist-CO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical well-mixed GHG-only run", + "experiment_id":"hist-GHG", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical anthropogenic aerosols-only run", + "experiment_id":"hist-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-all-aer2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical ALL-forcing run with alternate estimates of aerosol forcing", + "experiment_id":"hist-all-aer2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-all-nat2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical ALL-forcing run with alternate estimates of natural forcing", + "experiment_id":"hist-all-nat2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of the simulation of the recent past with CO2 concentration prescribed", + "experiment_id":"hist-bgc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-nat":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical natural-only run", + "experiment_id":"hist-nat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-noLu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical with no land-use change", + "experiment_id":"hist-noLu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-piAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical forcing, but with pre-industrial aerosol emissions", + "experiment_id":"hist-piAer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-piNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical forcing, but with pre-industrial NTCF emissions", + "experiment_id":"hist-piNTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-resAMO":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"initialized from \"historical\" run year 1870 and SSTs in the AMO domain (0deg-70degN, 70degW-0deg) restored to AMIP SSTs with historical forcings", + "experiment_id":"hist-resAMO", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-resIPO":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"initialized from \"historical\" run year 1870 and SSTs in tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW) restored to AMIP SSTs with historical forcings", + "experiment_id":"hist-resIPO", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-sol":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical solar-only run", + "experiment_id":"hist-sol", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-spAer-aer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical simulation with specified anthropogenic aerosols, no other forcings", + "experiment_id":"hist-spAer-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-spAer-all":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical simulation with specified anthropogenic aerosols", + "experiment_id":"hist-spAer-all", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-stratO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "experiment":"historical stratospheric-ozone-only run", + "experiment_id":"hist-stratO3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-volc":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical volcanic-only run", + "experiment_id":"hist-volc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical prescribed SSTs and historical forcing", + "experiment_id":"histSST", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-1950HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with1950 halocarbon concentrations", + "experiment_id":"histSST-1950HC", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial aerosol emissions", + "experiment_id":"histSST-piAer", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial methane concentrations", + "experiment_id":"histSST-piCH4", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piN2O":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcings, but with pre-industrial N2O concentrations", + "experiment_id":"histSST-piN2O", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial NTCF emissions", + "experiment_id":"histSST-piNTCF", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piO3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial ozone precursor emissions", + "experiment_id":"histSST-piO3", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"all-forcing simulation of the recent past", + "experiment_id":"historical", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical-ext":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"post-2014 all-forcing simulation", + "experiment_id":"historical-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical with interactive ice sheet", + "experiment_id":"historical-withism", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "piControl-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-1pctCO2to4x-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet model forced by ISM's own AOGCM 1pctCO2to4x output", + "experiment_id":"ism-1pctCO2to4x-self", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-piControl-self" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-1pctCO2to4x-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet model forced by ISMIP6-specified AOGCM 1pctCO2to4x output", + "experiment_id":"ism-1pctCO2to4x-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-pdControl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-amip-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AGCM AMIP output", + "experiment_id":"ism-amip-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-asmb-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by initMIP synthetic atmospheric experiment", + "experiment_id":"ism-asmb-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-bsmb-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by initMIP synthetic oceanic experiment", + "experiment_id":"ism-bsmb-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-ctrl-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet model initMIP control", + "experiment_id":"ism-ctrl-std", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-historical-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISM's own AOGCM historical output", + "experiment_id":"ism-historical-self", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-piControl-self" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-historical-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM historical output", + "experiment_id":"ism-historical-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-pdControl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-lig127k-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AGCM last interglacial output", + "experiment_id":"ism-lig127k-std", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-pdControl-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM pdControl output", + "experiment_id":"ism-pdControl-std", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-piControl-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISM's own AOGCM piControl output", + "experiment_id":"ism-piControl-self", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-ssp585-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISM's own AOGCM ssp585 output", + "experiment_id":"ism-ssp585-self", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-historical-self" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-ssp585-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM ssp585 output", + "experiment_id":"ism-ssp585-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-historical-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-cCO2":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only constant CO2", + "experiment_id":"land-cCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-cClim":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only constant climate", + "experiment_id":"land-cClim", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-grass":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with cropland as natural grassland", + "experiment_id":"land-crop-grass", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-noFert":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no fertilizer", + "experiment_id":"land-crop-noFert", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-noIrrig":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no irrigation", + "experiment_id":"land-crop-noIrrig", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-noIrrigFert":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with managed crops but with irrigation and fertilization held constant", + "experiment_id":"land-crop-noIrrigFert", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist":{ + "activity_id":[ + "LS3MIP LUMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical land-only", + "experiment_id":"land-hist", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-altLu1":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only alternate land-use history", + "experiment_id":"land-hist-altLu1", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-altLu2":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only alternate land use history", + "experiment_id":"land-hist-altLu2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-altStartYear":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only alternate start year", + "experiment_id":"land-hist-altStartYear", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"as land-hist with CRU-NCEP forcings", + "experiment_id":"land-hist-cruNcep", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"as land-hist with Princeton forcings", + "experiment_id":"land-hist-princeton", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"as land-hist with WFDEI forcings", + "experiment_id":"land-hist-wfdei", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noFire":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no human fire management", + "experiment_id":"land-noFire", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noLu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical land-only with no land-use change", + "experiment_id":"land-noLu", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noPasture":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with constant pastureland", + "experiment_id":"land-noPasture", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noShiftCultivate":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with shifting cultivation turned off", + "experiment_id":"land-noShiftCultivate", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noWoodHarv":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no wood harvest", + "experiment_id":"land-noWoodHarv", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-ssp126":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"future ssp1-2.6 land only", + "experiment_id":"land-ssp126", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-ssp434":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"future ssp4-3.4 land only", + "experiment_id":"land-ssp434", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-ssp585":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"future ssp5-8.5 land only", + "experiment_id":"land-ssp585", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-initLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"initialized from \"historical\" run year 1980, but with land conditions initialized from pseudo-observations", + "experiment_id":"lfmip-initLC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land conditions (from current climate climatology) and initialized from \"historical\" run year 1980", + "experiment_id":"lfmip-pdLC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-pdLC with Land-Hist-cruNcep", + "experiment_id":"lfmip-pdLC-cruNcep", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-pdLC with Land-Hist-princeton", + "experiment_id":"lfmip-pdLC-princeton", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-pdLC with Land-Hist-wfdei", + "experiment_id":"lfmip-pdLC-wfdei", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land conditions (from running mean climatology) and initialized from \"historical\" run year 1980", + "experiment_id":"lfmip-rmLC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-rmLC with Land-Hist-cruNcep", + "experiment_id":"lfmip-rmLC-cruNcep", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-rmLC with Land-Hist-princeton", + "experiment_id":"lfmip-rmLC-princeton", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-rmLC with Land-Hist-wfdei", + "experiment_id":"lfmip-rmLC-wfdei", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lgm":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last glacial maximum", + "experiment_id":"lgm", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lig127k":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last interglacial (127k)", + "experiment_id":"lig127k", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "midHolocene":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"mid-Holocene", + "experiment_id":"midHolocene", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "midPliocene-eoi400":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"mid-Pliocene warm period", + "experiment_id":"midPliocene-eoi400", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "modelSST-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day coupled model SST and future Arctic SIC", + "experiment_id":"modelSST-futArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "modelSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice present day control with coupled model SST", + "experiment_id":"modelSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip1":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized with observed physical and biogeochemical ocean data", + "experiment_id":"omip1", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip1-spunup":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", + "experiment_id":"omip1-spunup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip2":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized with observed physical and biogeochemical ocean data", + "experiment_id":"omip2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip2-spunup":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", + "experiment_id":"omip2-spunup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice constrained by future Antarctic SIC", + "experiment_id":"pa-futAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futAntSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled extended simulation with future Antarctic SIC", + "experiment_id":"pa-futAntSIC-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice constrained by future Arctic SIC", + "experiment_id":"pa-futArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futArcSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled extended simulation with future Arctic SIC", + "experiment_id":"pa-futArcSIC-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice contrained by present day SIC", + "experiment_id":"pa-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-pdSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled extended simulation constrained by present day SIC", + "experiment_id":"pa-pdSIC-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-piAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice with pre-industrial Antarctic SIC", + "experiment_id":"pa-piAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-piArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice constrained by pre-industrial Arctic SIC", + "experiment_id":"pa-piArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "past1000":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last millennium", + "experiment_id":"past1000", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Antarctic SIC", + "experiment_id":"pdSST-futAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Arctic SIC", + "experiment_id":"pdSST-futArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futArcSICSIT":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Arctic SIC and sea ice thickness", + "experiment_id":"pdSST-futArcSICSIT", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futBKSeasSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Barents and Kara Seas SIC", + "experiment_id":"pdSST-futBKSeasSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futOkhotskSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Sea of Okhotsk SIC", + "experiment_id":"pdSST-futOkhotskSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and SIC", + "experiment_id":"pdSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-pdSICSIT":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice constrained by present day conditions including sea ice thickness", + "experiment_id":"pdSST-pdSICSIT", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-piAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and pre-industrial Antarctic SIC", + "experiment_id":"pdSST-piAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-piArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and pre-industrial Arctic SIC", + "experiment_id":"pdSST-piArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xDMS":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of DMS", + "experiment_id":"piClim-2xDMS", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xNOx":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled production of NOx due to lightning", + "experiment_id":"piClim-2xNOx", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xVOC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of biogenic VOCs", + "experiment_id":"piClim-2xVOC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xdust":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of dust", + "experiment_id":"piClim-2xdust", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xfire":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions from fires", + "experiment_id":"piClim-2xfire", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xss":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of sea salt", + "experiment_id":"piClim-2xss", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-4xCO2":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"effective radiative forcing by 4xCO2", + "experiment_id":"piClim-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-BC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 black carbon emissions", + "experiment_id":"piClim-BC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-CH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 methane concentrations (including chemistry)", + "experiment_id":"piClim-CH4", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 halocarbon concentrations (including chemistry)", + "experiment_id":"piClim-HC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-N2O":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 N2O concentrations (including chemistry)", + "experiment_id":"piClim-N2O", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-NH3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ammonia emissions", + "experiment_id":"piClim-NH3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-NOx":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NOx emissions", + "experiment_id":"piClim-NOx", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-NTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NTCF emissions", + "experiment_id":"piClim-NTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-O3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ozone precursor emissions", + "experiment_id":"piClim-O3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-OC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 organic carbon emissions", + "experiment_id":"piClim-OC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-SO2":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 SO2 emissions", + "experiment_id":"piClim-SO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-VOC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 VOC emissions", + "experiment_id":"piClim-VOC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-aer":{ + "activity_id":[ + "RFMIP AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing by present-day aerosols", + "experiment_id":"piClim-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-anthro":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"effective radiative forcing by present day anthropogenic agents", + "experiment_id":"piClim-anthro", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-control":{ + "activity_id":[ + "RFMIP AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing in present-day", + "experiment_id":"piClim-control", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-ghg":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing by present-day greenhouse gases", + "experiment_id":"piClim-ghg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histaer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing by aerosols", + "experiment_id":"piClim-histaer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histall":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing", + "experiment_id":"piClim-histall", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histghg":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing by greenhouse gases", + "experiment_id":"piClim-histghg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histnat":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing by natural perturbations", + "experiment_id":"piClim-histnat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-lu":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing by present-day land use", + "experiment_id":"piClim-lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-aer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, all forcings", + "experiment_id":"piClim-spAer-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-anthro":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, anthropogenic forcings", + "experiment_id":"piClim-spAer-anthro", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-histaer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, aerosol forcing", + "experiment_id":"piClim-spAer-histaer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-histall":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, all forcings", + "experiment_id":"piClim-spAer-histall", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pre-industrial control", + "experiment_id":"piControl", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-spinup" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl-spinup":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pre-industrial control (spin-up)", + "experiment_id":"piControl-spinup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"preindustrial control with interactive ice sheet", + "experiment_id":"piControl-withism", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"experiment forced with pre-industrial SSTs, sea ice and atmospheric constituents", + "experiment_id":"piSST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST with radiation and vegetation seeing 4xCO2", + "experiment_id":"piSST-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-4xCO2-rad":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST with radiation-only seeing 4xCO2", + "experiment_id":"piSST-4xCO2-rad", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-4xCO2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"preindustrial control SSTs with quadrupled CO2 and solar reduction", + "experiment_id":"piSST-4xCO2-solar", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with pre-industrial SST and present day SIC", + "experiment_id":"piSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-piSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with pre-industrial SST and SIC", + "experiment_id":"piSST-piSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-pxK":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST with uniform SST increase with magnitude based on abrupt-4xCO2 response", + "experiment_id":"piSST-pxK", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "rad-irf":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline assessment of radiative transfer parmeterizations in clear skies", + "experiment_id":"rad-irf", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "RAD" + ], + "sub_experiment_id":[ + "none" + ] + }, + "spinup-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled spinup with fixed 1950s forcings from 1950 initial conditions (with ocean at rest) to provide initial condition for control-1950 and hist-1950", + "experiment_id":"spinup-1950", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp119":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"low-end scenario reaching 1.9 W m-2, based on SSP1", + "experiment_id":"ssp119", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp126":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP2.6 based on SSP1", + "experiment_id":"ssp126", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp126-ssp370Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"SSP1-2.6 with SSP3-7.0 land use", + "experiment_id":"ssp126-ssp370Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP4.5 based on SSP2", + "experiment_id":"ssp245", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"well-mixed GHG-only SSP2-4.5 run", + "experiment_id":"ssp245-GHG", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-GHG" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"aerosol-only SSP2-4.5 run", + "experiment_id":"ssp245-aer", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-aer" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-nat":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"natural-only SSP2-4.5 run", + "experiment_id":"ssp245-nat", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-nat" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-stratO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "experiment":"stratospheric-ozone-only SSP2-4.5 run", + "experiment_id":"ssp245-stratO3", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-stratO3" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370":{ + "activity_id":[ + "ScenarioMIP AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"gap-filling scenario reaching 7.0 based on SSP3", + "experiment_id":"ssp370", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370-lowNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, with low NTCF emissions", + "experiment_id":"ssp370-lowNTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370-ssp126Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0 with SSP1-2.6 land use", + "experiment_id":"ssp370-ssp126Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, with SSTs prescribed from ssp370", + "experiment_id":"ssp370SST", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low aerosol emissions", + "experiment_id":"ssp370SST-lowAer", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowBC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low black carbon emissions", + "experiment_id":"ssp370SST-lowBC", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low methane concentrations", + "experiment_id":"ssp370SST-lowCH4", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low NTCF emissions", + "experiment_id":"ssp370SST-lowNTCF", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowO3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low ozone precursor emissions", + "experiment_id":"ssp370SST-lowO3", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-ssp126Lu":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with SSP1-2.6 land use", + "experiment_id":"ssp370SST-ssp126Lu", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp434":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"gap-filling scenario reaching 3.4 based on SSP4", + "experiment_id":"ssp434", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp460":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP6.0 based on SSP4", + "experiment_id":"ssp460", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp534-over":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"overshoot of 3.4 W/m**2 branching from ssp585 in 2040", + "experiment_id":"ssp534-over", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp534-over-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of the RCP3.4-overshoot based on SSP5", + "experiment_id":"ssp534-over-bgc", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "hist-bgc" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp585":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP8.5 based on SSP5", + "experiment_id":"ssp585", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp585-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of the RCP8.5 based on SSP5", + "experiment_id":"ssp585-bgc", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "hist-bgc" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp585-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"ssp585 with interactive ice sheet", + "experiment_id":"ssp585-withism", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "historical-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-cluster-21C":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"volcanic cluster experiment under 21st century SSP2-4.5 scenario", + "experiment_id":"volc-cluster-21C", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-cluster-ctrl":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"19th century volcanic cluster initialized from PiControl", + "experiment_id":"volc-cluster-ctrl", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-cluster-mill":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"19th century volcanic cluster initialized from past1000", + "experiment_id":"volc-cluster-mill", + "parent_activity_id":[ + "PMIP" + ], + "parent_experiment_id":[ + "past1000" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-long-eq":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized equatorial volcanic eruption emitting 56.2 Tg SO2", + "experiment_id":"volc-long-eq", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-long-hlN":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized Northern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", + "experiment_id":"volc-long-hlN", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-long-hlS":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized Southern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", + "experiment_id":"volc-long-hlS", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-full":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment", + "experiment_id":"volc-pinatubo-full", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-slab":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment with slab ocean", + "experiment_id":"volc-pinatubo-slab", + "parent_activity_id":[ + "VolMIP" + ], + "parent_experiment_id":[ + "control-slab" + ], + "required_model_components":[ + "AGCM", + "SLAB" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-strat":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment with partial radiative forcing, includes only stratospheric warming", + "experiment_id":"volc-pinatubo-strat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-surf":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment with partial radiative forcing, solar radiation scattering only", + "experiment_id":"volc-pinatubo-surf", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "yr2010CO2":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"concentration-driven fixed 2010 forcing", + "experiment_id":"yr2010CO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + } + }, + "product":[ + "model-output" + ], + "tracking_id":[ + "hdl:21.14100/.*" + ], + "further_info_url":[ + "https://furtherinfo.es-doc.org/.*" + ], + "realization_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ], + "variant_label":[ + "r[[:digit:]]\\{1,\\}i[[:digit:]]\\{1,\\}p[[:digit:]]\\{1,\\}f[[:digit:]]\\{1,\\}$" + ], + "data_specs_version":[ + "^[[:digit:]]\\{2,2\\}\\.[[:digit:]]\\{2,2\\}\\.[[:digit:]]\\{2,2\\}$" + ], + "Conventions":[ + "^CF-1.7 CMIP-6.[0-2]\\( UGRID-1.0\\)\\{0,\\}$" + ], + "forcing_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ], + "initialization_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ], + "physics_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ] + } +} \ No newline at end of file diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_3hr.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_3hr.json new file mode 100644 index 0000000000000000000000000000000000000000..c81e82b117dffcdd0ab5d8b74f897a7c67532618 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_3hr.json @@ -0,0 +1,432 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table 3hr", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.125000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "clt": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfls": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfss": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "huss": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "longitude latitude time1 height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrro": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Runoff", + "comment": "The total run-off (including drainage through the base of the soil model) per unit area leaving the land portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "mrro", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsos": { + "frequency": "3hrPt", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: point", + "cell_measures": "area: areacella", + "long_name": "Moisture in Upper Portion of Soil Column", + "comment": "The mass of water in all phases in the upper 10cm of the soil layer.", + "dimensions": "longitude latitude time1 sdepth1", + "out_name": "mrsos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prc": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Precipitation", + "comment": "Convective precipitation at surface; includes both liquid and solid phases.", + "dimensions": "longitude latitude time", + "out_name": "prc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snowfall Flux", + "comment": "At surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlds": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rldscs": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlus": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsds": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscs": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "longitude latitude time", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdsdiff": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_diffuse_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Diffuse Downwelling Shortwave Radiation", + "comment": "Surface downwelling solar irradiance from diffuse radiation for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsdsdiff", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsus": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'shortwave' means shortwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsuscs": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky Shortwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rsuscs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time1 height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tos": { + "frequency": "3hrPt", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Temperature", + "comment": "Temperature of upper boundary of the liquid ocean, including temperatures below sea-ice and floating ice shelves.", + "dimensions": "longitude latitude time1", + "out_name": "tos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tslsi": { + "frequency": "3hrPt", + "modeling_realm": "land", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean (comment: over land and sea ice) time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature Where Land or Sea Ice", + "comment": "Surface temperature of all surfaces except open ocean.", + "dimensions": "longitude latitude time1", + "out_name": "tslsi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uas": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time1 height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vas": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "longitude latitude time1 height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_6hrLev.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_6hrLev.json new file mode 100644 index 0000000000000000000000000000000000000000..4794cfe85fb98e631ce67c823dc87d39e0e3b7d7 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_6hrLev.json @@ -0,0 +1,306 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table 6hrLev", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.250000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "bs550aer": { + "frequency": "6hrPt", + "modeling_realm": "aerosol", + "standard_name": "volume_scattering_function_of_radiative_flux_in_air_due_to_ambient_aerosol_particles", + "units": "m-1 sr-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Aerosol Backscatter Coefficient", + "comment": "Aerosol Backscatter at 550nm and 180 degrees, computed from extinction and lidar ratio", + "dimensions": "longitude latitude alevel time1 lambda550nm", + "out_name": "bs550aer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cdnc": { + "frequency": "6hrPt", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_liquid_water_particles_in_air", + "units": "m-3", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Cloud Liquid Droplet Number Concentration", + "comment": "Cloud Droplet Number Concentration in liquid water clouds.", + "dimensions": "longitude latitude alevel time1", + "out_name": "cdnc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cl": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Percentage Cloud Cover", + "comment": "Percentage cloud cover, including both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time1", + "out_name": "cl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cli": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_ice_in_air", + "units": "kg kg-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Ice", + "comment": "Includes both large-scale and convective cloud. This is calculated as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. It includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "cli", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clw": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_liquid_water_in_air", + "units": "kg kg-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Liquid Water", + "comment": "Includes both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Precipitating hydrometeors are included ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ec550aer": { + "frequency": "6hrPt", + "modeling_realm": "aerosol", + "standard_name": "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", + "units": "m-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Aerosol Extinction Coefficient", + "comment": "Aerosol volume extinction coefficient at 550nm wavelength.", + "dimensions": "longitude latitude alevel time1 lambda550nm", + "out_name": "ec550aer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude alevel time1", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icnc": { + "frequency": "6hrPt", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air", + "units": "m-3", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration", + "comment": "Ice Crystal Number Concentration in ice crystal clouds.", + "dimensions": "longitude latitude alevel time1", + "out_name": "icnc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncpip": { + "frequency": "6hrPt", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_primary_cloud_ice_crystal_particles_in_air", + "units": "m-3", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from primary formation", + "comment": "Ice Crystal Number Concentration formed as primary ice.", + "dimensions": "longitude latitude alevel time1", + "out_name": "icncpip", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncsip": { + "frequency": "6hrPt", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_secondary_cloud_ice_crystal_particles_in_air", + "units": "m-3", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from secondary formation", + "comment": "Ice Crystal Number Concentration formed by secondary ice production processes.", + "dimensions": "longitude latitude alevel time1", + "out_name": "icncsip", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "moiairden": { + "frequency": "6hrPt", + "modeling_realm": "aerosol", + "standard_name": "moist_air_density", + "units": "kg m-3", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Density of the moist air", + "comment": "Air density including water vapour", + "dimensions": "longitude latitude alevel time1", + "out_name": "moiairden", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pfull": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "longitude latitude alevel time1", + "out_name": "pfull", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "time: point", + "cell_measures": "--OPT", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude alevel time1", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "time: point", + "cell_measures": "--OPT", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude alevel time1", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_6hrPlev.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_6hrPlev.json new file mode 100644 index 0000000000000000000000000000000000000000..e121bb621c2fa8448d472855e3045fa6ac3b1461 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_6hrPlev.json @@ -0,0 +1,324 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table 6hrPlev", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.250000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "bldep": { + "frequency": "6hr", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Boundary Layer Depth", + "comment": "Boundary layer depth", + "dimensions": "longitude latitude time", + "out_name": "bldep", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hurs": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus4": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev4 time", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prhmax": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: mean within hours time: maximum over hours", + "cell_measures": "area: areacella", + "long_name": "Maximum Hourly Precipitation Rate", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "prhmax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "psl": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time", + "out_name": "psl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rv850": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_relative_vorticity", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Relative Vorticity at 850hPa", + "comment": "Relative vorticity is the upward component of the vorticity vector i.e. the component which arises from horizontal velocity.", + "dimensions": "longitude latitude time p850", + "out_name": "rv850", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfcWind": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Wind Speed", + "comment": "near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua100m": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind at 100m", + "comment": "Zonal wind at 100m height", + "dimensions": "longitude latitude time height100m", + "out_name": "ua100m", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uas": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va100m": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind at 100m", + "comment": "Meridional wind at 100m above the surface.", + "dimensions": "longitude latitude time height100m", + "out_name": "va100m", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vas": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "longitude latitude time height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap4": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude plev4 time", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wsgmax100m": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed_of_gust", + "units": "m s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum Wind Speed of Gust at 100m", + "comment": "Wind speed gust maximum at 100m above surface", + "dimensions": "longitude latitude time height100m", + "out_name": "wsgmax100m", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wsgmax10m": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed_of_gust", + "units": "m s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum Wind Speed of Gust at 10m", + "comment": "Wind speed gust maximum at 10m above surface", + "dimensions": "longitude latitude time height10m", + "out_name": "wsgmax10m", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg1000": { + "frequency": "6hr", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 1000hPa", + "comment": "Geopotential height on the 1000 hPa surface", + "dimensions": "longitude latitude time p1000", + "out_name": "zg1000", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_6hrPlevPt.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_6hrPlevPt.json new file mode 100644 index 0000000000000000000000000000000000000000..85c527a25e6d493850c817d548a9c6f8a811212f --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_6hrPlevPt.json @@ -0,0 +1,684 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table 6hrPlevPt", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.250000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "cldicemxrat27": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_ice_mixing_ratio", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Cloud Ice Mixing Ratio", + "comment": "Cloud ice mixing ratio", + "dimensions": "longitude latitude plev27 time1", + "out_name": "cldicemxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cldwatmxrat27": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_liquid_water_mixing_ratio", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Cloud Water Mixing Ratio", + "comment": "Cloud water mixing ratio", + "dimensions": "longitude latitude plev27 time1", + "out_name": "cldwatmxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dtauc": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_optical_thickness_due_to_convective_cloud", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Optical Depth", + "comment": "This is the in-cloud optical depth obtained by considering only the cloudy portion of the grid cell", + "dimensions": "longitude latitude time1", + "out_name": "dtauc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dtaus": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_optical_thickness_due_to_stratiform_cloud", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Stratiform Cloud Optical Depth", + "comment": "This is the in-cloud optical depth obtained by considering only the cloudy portion of the grid cell.", + "dimensions": "longitude latitude time1", + "out_name": "dtaus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "grplmxrat27": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_graupel_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Graupel Mixing Ratio", + "comment": "Graupel mixing ratio", + "dimensions": "longitude latitude plev27 time1", + "out_name": "grplmxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus27": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev27 time1", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus7h": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev7h time1", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "huss": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "longitude latitude time1 height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwsffluxaero": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Longwave Flux Due to Volcanic Aerosols at the Surface", + "comment": "downwelling longwave flux due to volcanic aerosols at the surface to be diagnosed through double radiation call", + "dimensions": "longitude latitude time1", + "out_name": "lwsffluxaero", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwtoafluxaerocs": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Flux Due to Volcanic Aerosols", + "comment": "downwelling longwave flux due to volcanic aerosols at TOA under clear sky to be diagnosed through double radiation call", + "dimensions": "longitude latitude time1", + "out_name": "lwtoafluxaerocs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsol": { + "frequency": "6hrPt", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Total Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in all phases, including ice. Reported as 'missing' for grid cells occupied entirely by 'sea'", + "dimensions": "longitude latitude sdepth time1", + "out_name": "mrsol", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsos": { + "frequency": "6hrPt", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: point", + "cell_measures": "area: areacella", + "long_name": "Moisture in Upper Portion of Soil Column", + "comment": "The mass of water in all phases in the upper 10cm of the soil layer.", + "dimensions": "longitude latitude time1 sdepth1", + "out_name": "mrsos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "psl": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time1", + "out_name": "psl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rainmxrat27": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_liquid_precipitation_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Rain in Air", + "comment": "Rain mixing ratio", + "dimensions": "longitude latitude plev27 time1", + "out_name": "rainmxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rv850": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_relative_vorticity", + "units": "s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Relative Vorticity at 850hPa", + "comment": "Relative vorticity is the upward component of the vorticity vector i.e. the component which arises from horizontal velocity.", + "dimensions": "longitude latitude time1 p850", + "out_name": "rv850", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfcWind": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Wind Speed", + "comment": "near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time1 height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snowmxrat27": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_snow_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Snow in Air", + "comment": "Snow mixing ratio", + "dimensions": "longitude latitude plev27 time1", + "out_name": "snowmxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snw": { + "frequency": "6hrPt", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Snow Amount", + "comment": "The mass of surface snow on the land portion of the grid cell divided by the land area in the grid cell; reported as missing where the land fraction is 0; excludes snow on vegetation canopy or on sea ice.", + "dimensions": "longitude latitude time1", + "out_name": "snw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "swsffluxaero": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_due_to_volcanic_ambient_aerosol_particles", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Shortwave Heating Rate Due to Volcanic Aerosols", + "comment": "Shortwave heating rate due to volcanic aerosols to be diagnosed through double radiation call", + "dimensions": "longitude latitude time1", + "out_name": "swsffluxaero", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "swtoafluxaerocs": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_due_to_volcanic_ambient_aerosol_particles_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Flux Due to Volcanic Aerosols", + "comment": "Downwelling shortwave flux due to volcanic aerosols at TOA under clear sky to be diagnosed through double radiation call", + "dimensions": "longitude latitude time1", + "out_name": "swtoafluxaerocs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev3 time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta27": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev27 time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta7h": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev7h time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time1 height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ts": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "ts", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsl": { + "frequency": "6hrPt", + "modeling_realm": "land", + "standard_name": "soil_temperature", + "units": "K", + "cell_methods": "area: mean where land time: point", + "cell_measures": "area: areacella", + "long_name": "Temperature of Soil", + "comment": "Temperature of soil. Reported as missing for grid cells with no land.", + "dimensions": "longitude latitude time1 sdepth1", + "out_name": "tsl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev3 time1", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua7h": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev7h time1", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uas": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time1 height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev3 time1", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va7h": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev7h time1", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vas": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "longitude latitude time1 height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vortmean": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_relative_vorticity", + "units": "s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Relative Vorticity", + "comment": "Mean vorticity over 850,700,600 hPa", + "dimensions": "longitude latitude time1 pl700", + "out_name": "vortmean", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wbptemp7h": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "wet_bulb_potential_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Wet Bulb Potential Temperature", + "comment": "Wet bulb potential temperature", + "dimensions": "longitude latitude plev7h time1", + "out_name": "wbptemp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg27": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev27 time1", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg500": { + "frequency": "6hrPt", + "modeling_realm": "aerosol", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 500hPa", + "comment": "geopotential height on the 500 hPa surface", + "dimensions": "longitude latitude time1 p500", + "out_name": "zg500", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg7h": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev7h time1", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERday.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERday.json new file mode 100644 index 0000000000000000000000000000000000000000..957dfd7ec218ef9f332db8174fb228360618d97d --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERday.json @@ -0,0 +1,216 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table AERday", + "realm": "aerosol", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "1.0", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "cod": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_cloud", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Optical Depth", + "comment": "The optical thickness is the integral along the path of radiation of a volume scattering/absorption/attenuation coefficient. The radiative flux is reduced by a factor exp(-optical_thickness) on traversing the path. A coordinate variable of radiation_wavelength or radiation_frequency can be specified to indicate that the optical thickness applies at specific wavelengths or frequencies. The atmosphere optical thickness applies to radiation passing through the entire atmosphere. 'Cloud' means the component of extinction owing to the presence of liquid or ice water particles. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase.", + "dimensions": "longitude latitude time", + "out_name": "cod", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "maxpblz": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Maximum PBL Height", + "comment": "maximum boundary layer height during the day (add cell_methods attribute: 'time: maximum')", + "dimensions": "longitude latitude time", + "out_name": "maxpblz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "minpblz": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: mean time: minimum", + "cell_measures": "area: areacella", + "long_name": "Minimum PBL Height", + "comment": "minimum boundary layer height during the day (add cell_methods attribute: 'time: minimum')", + "dimensions": "longitude latitude time", + "out_name": "minpblz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550aer": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Thickness at 550nm", + "comment": "AOD from the ambient aerosols (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute 'wavelength: 550nm'", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550aer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfo3max": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum O3 Volume Mixing Ratio in Lowest Model Layer", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time", + "out_name": "sfo3max", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "toz": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "equivalent_thickness_at_stp_of_atmosphere_ozone_content", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Column Ozone", + "comment": "Total ozone column calculated at 0 degrees C and 1 bar, such that 1m = 1e5 DU.", + "dimensions": "longitude latitude time", + "out_name": "toz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua10": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind at 10hPa", + "comment": "Zonal wind on the 10 hPa surface", + "dimensions": "longitude latitude time p10", + "out_name": "ua10", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg10": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 10hPa", + "comment": "Geopotential height on the 10hPa surface", + "dimensions": "longitude latitude time p10", + "out_name": "zg10", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg100": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 100hPa", + "comment": "Geopotential height on the 100 hPa surface", + "dimensions": "longitude latitude time p100", + "out_name": "zg100", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg1000": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 1000hPa", + "comment": "Geopotential height on the 1000 hPa surface", + "dimensions": "longitude latitude time p1000", + "out_name": "zg1000", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg500": { + "frequency": "day", + "modeling_realm": "aerosol", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height at 500hPa", + "comment": "geopotential height on the 500 hPa surface", + "dimensions": "longitude latitude time p500", + "out_name": "zg500", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERhr.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERhr.json new file mode 100644 index 0000000000000000000000000000000000000000..aae399cb3ae7ef4d6f94d07ea36df10448cd9d78 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERhr.json @@ -0,0 +1,108 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table AERhr", + "realm": "aerosol", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.041667", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "ps": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfno2": { + "frequency": "1hr", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitrogen_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO2 Volume Mixing Ratio in Lowest Model Layer", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time", + "out_name": "sfno2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfo3": { + "frequency": "1hr", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "O3 Volume Mixing Ratio in Lowest Model Layer", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time", + "out_name": "sfo3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfpm25": { + "frequency": "1hr", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm2p5_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM2.5 Mass Mixing Ratio in Lowest Model Layer", + "comment": "Mass fraction of atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 2.5 micrometers. To specify the relative humidity and temperature at which the particle size applies, provide scalar coordinate variables with the standard names of 'relative_humidity' and 'air_temperature'.", + "dimensions": "longitude latitude time", + "out_name": "sfpm25", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERmon.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERmon.json new file mode 100644 index 0000000000000000000000000000000000000000..64b400e635c2acea9b4b885850cf89262c551a18 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERmon.json @@ -0,0 +1,3096 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table AERmon", + "realm": "aerosol", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "abs550aer": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Absorption Optical Thickness at 550nm", + "comment": "Optical thickness of atmospheric aerosols at wavelength 550 nanometers.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "abs550aer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "airmass": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_mass_of_air_per_unit_area", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Mass Content of Air in Layer", + "comment": "The mass of air in an atmospheric layer.", + "dimensions": "longitude latitude alevel time", + "out_name": "airmass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "aoanh": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tracer_lifetime", + "units": "yr", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northern Hemisphere Tracer Lifetime", + "comment": "Fixed surface layer mixing ratio over 30o-50oN (0 ppbv), uniform fixed source (at all levels) everywhere else (source is unspecified but must be constant in space and time and documented). Note that the source could be 1yr/yr, so the tracer concentration provides mean age in years. For method using linearly increasing tracer include a method attribute: 'linearly increasing tracer'For method using uniform source (1yr/yr) include a method attribute: 'uniform source'", + "dimensions": "longitude latitude alevel time", + "out_name": "aoanh", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bldep": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Boundary Layer Depth", + "comment": "Boundary layer depth", + "dimensions": "longitude latitude time", + "out_name": "bldep", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c2h2": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ethyne_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C2H2 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "c2h2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c2h6": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ethane_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C2H6 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "c2h6", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c3h6": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_propene_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C3H6 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "c3h6", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c3h8": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_propane_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "C3H8 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "c3h8", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ccn": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_condensation_nuclei_at_stp_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Condensation Nuclei Concentration at Liquid Cloud Top", + "comment": "proposed name: number_concentration_of_ambient_aerosol_in_air_at_liquid_water_cloud_top", + "dimensions": "longitude latitude time", + "out_name": "ccn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cdnc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_liquid_water_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Liquid Droplet Number Concentration", + "comment": "Cloud Droplet Number Concentration in liquid water clouds.", + "dimensions": "longitude latitude alevel time", + "out_name": "cdnc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icnc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration", + "comment": "Ice Crystal Number Concentration in ice crystal clouds.", + "dimensions": "longitude latitude alevel time", + "out_name": "icnc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "moiairden": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "moist_air_density", + "units": "kg m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Density of the moist air", + "comment": "Air density including water vapour", + "dimensions": "longitude latitude alevel time", + "out_name": "moiairden", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ch3coch3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_acetone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CH3COCH3 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction 'mole_fraction_of_X_in_Y', where X is a material constituent of Y. A chemical species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. Acetone is an organic molecule with the chemical formula CH3CH3CO. The IUPAC name for acetone is propan-2-one. Acetone is a member of the group of organic compounds known as ketones. There are standard names for the ketone group as well as for some of the individual species.", + "dimensions": "longitude latitude alevel time", + "out_name": "ch3coch3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ch4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CH4", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "ch4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cheaqpso4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_aqueous_phase_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aqueous-Phase Production Rate of SO4", + "comment": "proposed name: tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_due_to_aqueous_phase_net_chemical_production", + "dimensions": "longitude latitude alevel time", + "out_name": "cheaqpso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chegpso4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_gaseous_phase_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Gas-Phase Production Rate of SO4", + "comment": "proposed name: tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_due_to_gas_phase_net_chemical_production", + "dimensions": "longitude latitude alevel time", + "out_name": "chegpso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chepasoa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Net Production of Anthropogenic Secondary Organic Aerosol", + "comment": "anthropogenic part of chepsoa", + "dimensions": "longitude latitude time", + "out_name": "chepasoa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chepsoa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Chemical Production of Dry Aerosol Secondary Organic Matter", + "comment": "If model lumps secondary organic aerosol (SOA) emissions with primary organic aerosol (POA), then the sum of POA and SOA emissions is reported as OA emissions. Here, mass refers to the mass of primary organic matter, not mass of organic carbon alone.", + "dimensions": "longitude latitude time", + "out_name": "chepsoa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cltc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "convective_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Cover Percentage", + "comment": "Convective cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes only convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_carbon_monoxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CO Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "co", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CO2", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "co2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cod": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_cloud", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Optical Depth", + "comment": "The optical thickness is the integral along the path of radiation of a volume scattering/absorption/attenuation coefficient. The radiative flux is reduced by a factor exp(-optical_thickness) on traversing the path. A coordinate variable of radiation_wavelength or radiation_frequency can be specified to indicate that the optical thickness applies at specific wavelengths or frequencies. The atmosphere optical thickness applies to radiation passing through the entire atmosphere. 'Cloud' means the component of extinction owing to the presence of liquid or ice water particles. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase.", + "dimensions": "longitude latitude time", + "out_name": "cod", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dms": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_dimethyl_sulfide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dimethyl Sulphide (DMS) Mole Fraction", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "dms", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "drybc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of Black Carbon Aerosol Mass", + "comment": "Dry deposition includes gravitational settling and turbulent deposition.", + "dimensions": "longitude latitude time", + "out_name": "drybc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "drydust": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of Dust", + "comment": "Dry deposition includes gravitational settling and turbulent deposition.", + "dimensions": "longitude latitude time", + "out_name": "drydust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "drynh3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of NH3", + "comment": "Dry Deposition includes gravitational settling and turbulent deposition", + "dimensions": "longitude latitude time", + "out_name": "drynh3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "drynh4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of NH4", + "comment": "Dry Deposition includes gravitational settling and turbulent deposition", + "dimensions": "longitude latitude time", + "out_name": "drynh4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "drynoy": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of NOy", + "comment": "NOy is the sum of all simulated oxidized nitrogen species out of NO, NO2, HNO3, HNO4, NO3 aerosol, NO3(radical), N2O5, PAN, other organic nitrates. Dry deposition includes gravitational settling and turbulent deposition.", + "dimensions": "longitude latitude time", + "out_name": "drynoy", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dryo3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ozone_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of O3", + "comment": "Dry Deposition includes gravitational settling and turbulent deposition.", + "dimensions": "longitude latitude time", + "out_name": "dryo3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dryoa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of Dry Aerosol Total Organic Matter", + "comment": "Tendency of atmosphere mass content of organic dry aerosol due to dry deposition: This is the sum of dry deposition of primary organic aerosol (POA) and dry deposition of secondary organic aerosol (SOA). Here, mass refers to the mass of organic matter, not mass of organic carbon alone. We recommend a scale factor of POM=1.4*OC, unless your model has more detailed info available. Was called dry_pom in old ACCMIP Excel table. Dry deposition includes gravitational settling and turbulent deposition.", + "dimensions": "longitude latitude time", + "out_name": "dryoa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dryso2": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of SO2", + "comment": "Dry Deposition includes gravitational settling and turbulent deposition", + "dimensions": "longitude latitude time", + "out_name": "dryso2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dryso4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of SO4", + "comment": "Dry Deposition includes gravitational settling and turbulent deposition", + "dimensions": "longitude latitude time", + "out_name": "dryso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dryss": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_dry_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry Deposition Rate of Sea-Salt Aerosol", + "comment": "Dry deposition includes gravitational settling and turbulent deposition.", + "dimensions": "longitude latitude time", + "out_name": "dryss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emiaco": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Anthropogenic CO", + "comment": "Anthropogenic emission of CO.", + "dimensions": "longitude latitude time", + "out_name": "emiaco", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emianox": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Anthropogenic NOx", + "comment": "Store flux as Nitrogen. Anthropogenic fraction. NOx=NO+NO2, Includes agricultural waste burning but no other biomass burning. Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emianox", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emiaoa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Anthropogenic Organic Aerosol", + "comment": "anthropogenic part of emioa", + "dimensions": "longitude latitude time", + "out_name": "emiaoa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emibc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Black Carbon Aerosol Mass", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emibc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emibvoc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_biogenic_nmvoc_expressed_as_carbon_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Biogenic NMVOC", + "comment": "Integrate 3D emission field vertically to 2d field._If_ fixed molecular weight of NMVOC is not available in model, please provide in units of kilomole m-2 s-1 (i.e. kg m-2 s-1 as if model NMVOC had molecular weight of 1) and add a comment to your file.", + "dimensions": "longitude latitude time", + "out_name": "emibvoc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emico": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_monoxide_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of CO", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emidms": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_dimethyl_sulfide_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of DMS", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emidms", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emidust": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Dust", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emidust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emiisop": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_isoprene_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Isoprene", + "comment": "Integrate 3D emission field vertically to 2d field", + "dimensions": "longitude latitude time", + "out_name": "emiisop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emilnox": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_moles_of_nox_expressed_as_nitrogen", + "units": "mol s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Layer-Integrated Lightning Production of NOx", + "comment": "Integrate the NOx production for lightning over model layer. proposed name: tendency_of_atmosphere_mass_content_of_nox_from_lightning", + "dimensions": "longitude latitude alevel time", + "out_name": "emilnox", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "eminh3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_ammonia_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of NH3", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "eminh3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "eminox": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_nox_expressed_as_nitrogen_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of NOx", + "comment": "NOx=NO+NO2. Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "eminox", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emioa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_net_chemical_production_and_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Primary Emission and Chemical Production of Dry Aerosol Organic Matter", + "comment": "This is the sum of total emission of primary organic aerosol (POA) and total production of secondary organic aerosol (SOA) (emipoa+chepsoa). Here, mass refers to the mass of organic matter, not mass of organic carbon alone. We recommend a scale factor of POM=1.4*OC, unless your model has more detailed info available. Integrate 3D chemical production and emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emioa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emiso2": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of SO2", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emiso2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emiso4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Direct Emission Rate of SO4", + "comment": "Direct primary emission does not include secondary sulfate production. Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emiso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emiss": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of Sea-Salt Aerosol", + "comment": "Integrate 3D emission field vertically to 2d field.", + "dimensions": "longitude latitude time", + "out_name": "emiss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "emivoc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mass_content_of_nmvoc_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Emission Rate of NMVOC", + "comment": "Integrate 3D emission field vertically to 2d field. _If_ fixed molecular weight of NMVOC is not available in model, please provide in units of kilomole m-2 s-1 (i.e. kg m-2 s-1 as if model NMVOC had molecular weight of 1) and add a comment to your file.", + "dimensions": "longitude latitude time", + "out_name": "emivoc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "h2o": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_water_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Water", + "comment": "includes all phases of water", + "dimensions": "longitude latitude alevel time", + "out_name": "h2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hcho": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_formaldehyde_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Formaldehyde Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "hcho", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hcl": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydrogen_chloride_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "HCl Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of hydrogen chloride is HCl.", + "dimensions": "longitude latitude alevel time", + "out_name": "hcl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hno3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitric_acid_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "HNO3 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "hno3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "isop": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_isoprene_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Isoprene Volume Mixing Ratio", + "comment": "Mole fraction of isoprene in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "isop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "jno2": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "photolysis_rate_of_nitrogen_dioxide", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Photolysis Rate of NO2", + "comment": "Photolysis rate of nitrogen dioxide (NO2)", + "dimensions": "longitude latitude alevel time", + "out_name": "jno2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lossch4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_methane_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Monthly Loss of Atmospheric Methane", + "comment": "monthly averaged atmospheric loss", + "dimensions": "longitude latitude alevel time", + "out_name": "lossch4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lossco": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_carbon_monoxide_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Monthly Loss of Atmospheric Carbon Monoxide", + "comment": "monthly averaged atmospheric loss", + "dimensions": "longitude latitude alevel time", + "out_name": "lossco", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lossn2o": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_nitrous_oxide_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Monthly Loss of Atmospheric Nitrous Oxide", + "comment": "monthly averaged atmospheric loss", + "dimensions": "longitude latitude alevel time", + "out_name": "lossn2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwp": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_mass_content_of_cloud_liquid_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Path", + "comment": "The total mass of liquid water in cloud per unit area.", + "dimensions": "longitude latitude time", + "out_name": "lwp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmraerh2o": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_water_in_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Water Mass Mixing Ratio", + "comment": "Mass fraction is used in the construction mass_fraction_of_X_in_Y, where X is a material constituent of Y. It means the ratio of the mass of X to the mass of Y (including X). 'Aerosol' means the system of suspended liquid or solid particles in air (except cloud droplets) and their carrier gas, the air itself. 'Ambient_aerosol' means that the aerosol is measured or modelled at the ambient state of pressure, temperature and relative humidity that exists in its immediate environment. 'Ambient aerosol particles' are aerosol particles that have taken up ambient water through hygroscopic growth. The extent of hygroscopic growth depends on the relative humidity and the composition of the particles.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmraerh2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrbc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_elemental_carbon_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Elemental Carbon Mass Mixing Ratio", + "comment": "Dry mass fraction of black carbon aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrbc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrdust": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_dust_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of dust aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrnh4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_ammonium_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NH4 Mass Mixing Ratio", + "comment": "Dry mass fraction of ammonium aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrnh4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrno3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO3 Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of nitrate aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrno3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmroa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_particulate_organic_matter_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Organic Aerosol Mass Mixing Ratio", + "comment": "We recommend a scale factor of POM=1.4*OC, unless your model has more detailed info available.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmroa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrpm1": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm1_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM1.0 Mass Mixing Ratio", + "comment": "Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 1 micrometers", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrpm1", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrpm10": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm10_ambient_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM10 Mass Mixing Ratio", + "comment": "Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 10 micrometers", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrpm10", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrpm2p5": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_pm2p5_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PM2.5 Mass Mixing Ratio", + "comment": "Mass fraction atmospheric particulate compounds with an aerodynamic diameter of less than or equal to 2.5 micrometers", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrpm2p5", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrso4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sulfate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Sulfate Mass Mixing Ratio", + "comment": "Dry mass of sulfate (SO4) in aerosol particles as a fraction of air mass.", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrsoa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_secondary_particulate_organic_matter_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Secondary Organic Aerosol Mass Mixing Ratio", + "comment": "Mass fraction in the atmosphere of secondary organic aerosols (particulate organic matter formed within the atmosphere from gaseous precursors; dry mass).", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrsoa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrss": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_sea_salt_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea-Salt Aerosol Mass Mixing Ratio", + "comment": "Mass fraction in the atmosphere of sea salt aerosol (dry mass).", + "dimensions": "longitude latitude alevel time", + "out_name": "mmrss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "n2o": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of N2O", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O.", + "dimensions": "longitude latitude alevel time", + "out_name": "n2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nh50": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_artificial_tracer_with_fixed_lifetime_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Artificial Tracer with 50 Day Lifetime", + "comment": "Fixed surface layer mixing ratio over 30o-50oN (100ppbv), uniform fixed 50-day exponential decay.", + "dimensions": "longitude latitude alevel time", + "out_name": "nh50", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "no": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitrogen_monoxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "no", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "no2": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitrogen_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO2 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "no2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of O3", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "o3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o3loss": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "O3 Destruction Rate", + "comment": "ONLY provide the sum of the following reactions: (i) O(1D)+H2O; (ii) O3+HO2; (iii) O3+OH; (iv) O3+alkenes (isoprene, ethene,...)", + "dimensions": "longitude latitude alevel time", + "out_name": "o3loss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o3prod": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_atmosphere_mole_concentration_of_ozone_due_to_chemical_production", + "units": "mol m-3 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "O3 Production Rate", + "comment": "ONLY provide the sum of all the HO2/RO2 + NO reactions (as k*[HO2]*[NO])", + "dimensions": "longitude latitude alevel time", + "out_name": "o3prod", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o3ste": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Stratospheric Ozone Tracer Volume Mixing Ratio", + "comment": "Ozone tracer intended to map out strat-trop exchange (STE) of ozone. Set to ozone in the stratosphere, then destroyed in the troposphere using the ozone chemical loss rate. Please specify the tropopause definition used", + "dimensions": "longitude latitude alevel time", + "out_name": "o3ste", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od440aer": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Thickness at 440nm", + "comment": "AOD from the ambient aerosols (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute 'wavelength: 440nm'", + "dimensions": "longitude latitude time", + "out_name": "od440aer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550aer": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Thickness at 550nm", + "comment": "AOD from the ambient aerosols (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute 'wavelength: 550nm'", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550aer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550aerh2o": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_water_in_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Water Optical Thickness at 550nm", + "comment": "proposed name: atmosphere_optical_thickness_due_to_water_ambient_aerosol", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550aerh2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550bb": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Optical Depth at 550nm Due to Biomass Burning", + "comment": "total organic aerosol AOD due to biomass burning (excluding so4, nitrate BB components)", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550bb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550bc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_black_carbon_ambient_aerosol", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Black Carbon Optical Thickness at 550nm", + "comment": "Total aerosol AOD due to black carbon aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550bc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550csaer": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Thickness at 550nm", + "comment": "AOD from the ambient aerosols in clear skies if od550aer is for all-sky (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute 'wavelength: 550nm'", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550csaer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550dust": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust Optical Thickness at 550nm", + "comment": "Total aerosol AOD due to dust aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550dust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550lt1aer": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_pm1_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Fine Aerosol Optical Depth at 550nm", + "comment": "od550 due to particles with wet diameter less than 1 um (ambient here means wetted). When models do not include explicit size information, it can be assumed that all anthropogenic aerosols and natural secondary aerosols have diameter less than 1 um.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550lt1aer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550no3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_nitrate_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrate Aerosol Optical Depth at 550nm", + "comment": "Total aerosol AOD due to nitrate aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550no3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550oa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Organic Aerosol Optical Depth at 550nm", + "comment": "Total aerosol AOD due to organic aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550oa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550so4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sulfate Aerosol Optical Depth at 550nm", + "comment": "Total aerosol AOD due to sulfate aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550so4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550soa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_particulate_organic_matter_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Particulate Organic Aerosol Optical Depth at 550nm", + "comment": "Total organic aerosol AOD due to secondary aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550soa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550ss": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_sea_salt_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea-Salt Aerosol Optical Depth at 550nm", + "comment": "Total aerosol AOD due to sea salt aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550ss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od870aer": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ambient Aerosol Optical Depth at 870nm", + "comment": "AOD from the ambient aerosols (i.e., includes aerosol water). Does not include AOD from stratospheric aerosols if these are prescribed but includes other possible background aerosol types. Needs a comment attribute 'wavelength: 870nm'", + "dimensions": "longitude latitude time", + "out_name": "od870aer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "oh": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydroxyl_radical_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "OH Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "oh", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pan": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_peroxyacetyl_nitrate_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "PAN Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "pan", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pfull": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "longitude latitude alevel time", + "out_name": "pfull", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phalf": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Pressure on Model Half-Levels", + "comment": "Air pressure on model half-levels", + "dimensions": "longitude latitude alevhalf time", + "out_name": "phalf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "photo1d": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "photolysis_rate_of_ozone_to_1D_oxygen_atom", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Photolysis Rate of Ozone (O3) to Excited Atomic Oxygen (the Singlet D State, O1D)", + "comment": "proposed name: photolysis_rate_of_ozone_to_O1D", + "dimensions": "longitude latitude alevel time", + "out_name": "photo1d", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pod0": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "integral_wrt_time_of_mole_stomatal_uptake_of_ozone", + "units": "mol m-2", + "cell_methods": "area: mean time: sum", + "cell_measures": "area: areacella", + "long_name": "Phytotoxic Ozone Dose", + "comment": "Accumulated stomatal ozone flux over the threshold of 0 mol m-2 s-1; Computation: Time Integral of (hourly above canopy ozone concentration * stomatal conductance * Rc/(Rb+Rc) )", + "dimensions": "longitude latitude time", + "out_name": "pod0", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ptp": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tropopause_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropopause Air Pressure", + "comment": "2D monthly mean thermal tropopause calculated using WMO tropopause definition on 3d temperature", + "dimensions": "longitude latitude time", + "out_name": "ptp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclwtop": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "effective_radius_of_cloud_liquid_water_particles_at_liquid_water_cloud_top", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Droplet Radius", + "comment": "Droplets are liquid only. This is the effective radius as seen from space over liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, or for some models it is the sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere (TOA) each time sample when computing monthly mean. Reported values are weighted by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "reffclwtop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlutaf": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Aerosol-Free Longwave Radiation", + "comment": "Flux corresponding to rlut resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", + "dimensions": "longitude latitude time", + "out_name": "rlutaf", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlutcsaf": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky, Aerosol-Free Longwave Radiation", + "comment": "Flux corresponding to rlutcs resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", + "dimensions": "longitude latitude time", + "out_name": "rlutcsaf", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutaf": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Aerosol-Free Shortwave Radiation", + "comment": "Flux corresponding to rsut resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", + "dimensions": "longitude latitude time", + "out_name": "rsutaf", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcsaf": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky, Aerosol-Free Shortwave Radiation", + "comment": "Flux corresponding to rsutcs resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", + "dimensions": "longitude latitude time", + "out_name": "rsutcsaf", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "so2": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_sulfur_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "SO2 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time", + "out_name": "so2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tatp": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tropopause_air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropopause Air Temperature", + "comment": "2D monthly mean thermal tropopause calculated using WMO tropopause definition on 3d temperature", + "dimensions": "longitude latitude time", + "out_name": "tatp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrl": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Longwave Radiative Heating", + "comment": "Tendency of air temperature due to longwave radiative heating", + "dimensions": "longitude latitude alevel time", + "out_name": "tntrl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrs": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Shortwave Radiative Heating", + "comment": "Tendency of air temperature due to shortwave radiative heating", + "dimensions": "longitude latitude alevel time", + "out_name": "tntrs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "toz": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "equivalent_thickness_at_stp_of_atmosphere_ozone_content", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Column Ozone", + "comment": "Total ozone column calculated at 0 degrees C and 1 bar, such that 1m = 1e5 DU.", + "dimensions": "longitude latitude time", + "out_name": "toz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tropoz": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "equivalent_thickness_at_stp_of_atmosphere_ozone_content", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropospheric Ozone Column", + "comment": "Tropospheric ozone column, should be consistent with definition of tropopause used to calculate the pressure of the tropopause (ptp). Calculated at 0 degrees C and 1 bar, such that 1m = 1e5 DU.", + "dimensions": "longitude latitude time", + "out_name": "tropoz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ttop": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "air_temperature_at_cloud_top", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature at Cloud Top", + "comment": "cloud_top refers to the top of the highest cloud. Air temperature is the bulk temperature of the air, not the surface (skin) temperature.", + "dimensions": "longitude latitude time", + "out_name": "ttop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude alevel time", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude alevel time", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "upward_air_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upward Air Velocity", + "comment": "A velocity is a vector quantity. 'Upward' indicates a vector component which is positive when directed upward (negative downward). Upward air velocity is the vertical component of the 3D air velocity vector. The standard name downward_air_velocity may be used for a vector component with the opposite sign convention.", + "dimensions": "longitude latitude alevel time", + "out_name": "wa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetbc": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of Black Carbon Aerosol Mass", + "comment": "Surface deposition rate of black carbon (dry mass) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetbc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetdust": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of Dust", + "comment": "Surface deposition rate of dust (dry mass) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetnh3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonia_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of NH3", + "comment": "Surface deposition rate of ammonia (NH3) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetnh3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetnh4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_ammonium_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of NH4", + "comment": "Surface deposition rate of ammonium (NH4) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetnh4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetnoy": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_noy_expressed_as_nitrogen_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of NOy Including Aerosol Nitrate", + "comment": "NOy is the sum of all simulated oxidized nitrogen species, out of NO, NO2, HNO3, HNO4, NO3 aerosol, NO3 (radical), N2O5, PAN, other organic nitrates.", + "dimensions": "longitude latitude time", + "out_name": "wetnoy", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetoa": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of Dry Aerosol Total Organic Matter", + "comment": "Deposition rate of organic matter in aerosols (measured by the dry mass) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetoa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetso2": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sulfur_dioxide_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of SO2", + "comment": "Deposition rate of sulfur dioxide due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetso2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetso4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sulfate_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of SO4", + "comment": "Deposition rate of sulfate aerosols (measured by the dry mass) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetss": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_sea_salt_dry_aerosol_particles_due_to_wet_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Deposition Rate of Sea-Salt Aerosol", + "comment": "Deposition rate of sea salt aerosols (measured by the dry mass) due to wet processes", + "dimensions": "longitude latitude time", + "out_name": "wetss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude alevel time", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ztp": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tropopause_altitude", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tropopause Altitude Above Geoid", + "comment": "2D monthly mean thermal tropopause calculated using WMO tropopause definition on 3d temperature", + "dimensions": "longitude latitude time", + "out_name": "ztp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsscsaf": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "surface_net_shortwave_flux_aerosol_free_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Net Aerosol-Free Clear-Sky Shortwave Radiation", + "comment": "Flux corresponding to rls resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", + "dimensions": "longitude latitude time", + "out_name": "rsscsaf", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rssaf": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "surface_net_shortwave_flux_aerosol_free", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Net Aerosol-Free Shortwave Radiation", + "comment": "Flux corresponding to rls resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", + "dimensions": "longitude latitude time", + "out_name": "rssaf", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlscsaf": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "surface_net_longwave_flux_aerosol_free_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Net Aerosol-Free Clear-Sky Longwave Radiation", + "comment": "Flux corresponding to rls resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", + "dimensions": "longitude latitude time", + "out_name": "rlscsaf", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlsaf": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "surface_net_longwave_flux_aerosol_free", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Net Aerosol-Free Longwave Radiation", + "comment": "Flux corresponding to rls resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", + "dimensions": "longitude latitude time", + "out_name": "rlsaf", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "quaaci": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_quartz_accumulation_mode_insoluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Quartz in accumulation mode insoluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of quartz in accumulation mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "quaaci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "quacoi": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_quartz_coarse_mode_insoluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Quartz in coarse mode insoluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of quartz in coarse mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "quacoi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "felaci": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_feldspar_accumulation_mode_insoluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Feldspar in accumulation mode insoluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of feldspar in accumulation mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "felaci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "felcoi": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_feldspar_coarse_mode_insoluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Feldspar in coarse mode insoluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of feldspar in coarse mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "felcoi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "duacs": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_dust_accumulation_mode_soluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust in accumulation mode soluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of dust in accumulation mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "duacs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ducos": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_dust_coarse_mode_soluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust in coarse mode soluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of dust in coarse mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "ducos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "duaci": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_dust_accumulation_mode_insoluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust in accumulation mode insoluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of dust in accumulation mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "duaci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ducoi": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_dust_coarse_mode_insoluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust in coarse mode insoluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of dust in coarse mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "ducoi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "moacs": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_marine_organic_aerosols_accumulation_mode_soluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Marine organic aerosols in accumulation mode soluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of marine organic aerosols in accumulation mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "moacs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mocos": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_marine_organic_aerosols_coarse_mode_soluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Marine organic aerosols in coarse mode soluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of marine organic aerosols in coarse mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "mocos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bcacs": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_black_carbon_accumulation_mode_soluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Black carbon in accumulation mode soluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of black carbon in accumulation mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "bcacs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bccos": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_black_carbon_coarse_mode_soluble_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Black carbon in coarse mode soluble Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of black carbon in coarse mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "bccos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncpip": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "in-cloud number_concentration_of_primary_cloud_ice_crystal_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "In-cloud ice Crystal Number Concentration from primary formation", + "comment": "In-cloud ice Crystal Number Concentration formed as primary ice.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncpip", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncsip": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_secondary_cloud_ice_crystal_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from secondary formation", + "comment": "Ice Crystal Number Concentration formed by secondary ice production processes.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncsip", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncatkinson": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_atkinson_parameterization", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Atkinson et al. (2013) parameterization", + "comment": "Ice Crystal Number Concentration formed from Atkinson et al. (2013) immersion freezing of K-feldspar parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncatkinson", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncullrichif": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_ullrich_if", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Ullrich et al. (2017) immersion freezing of soot and dust parameterization", + "comment": "Ice Crystal Number Concentration formed from Ullrich et al. (2017) immersion freezing of soot and dust parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncullrichif", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncullrichdn": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_ullrich_dn", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Ullrich et al. (2017) deposition nucleation of soot and dust parameterization", + "comment": "Ice Crystal Number Concentration formed from Ullrich et al. (2017) deposition nucleation of soot and dust parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncullrichdn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncharrison": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_harrison", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Harrison et al. (2019) immersion freezing of K-feldspar and quartz parameterization", + "comment": "Ice Crystal Number Concentration formed from Harrison et al. (2019) immersion freezing of K-feldspar and quartz parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncharrison", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncwilson": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_wilson", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Wilson et al. (2015) immersion freezing of marine organic aerosols parameterization", + "comment": "Ice Crystal Number Concentration formed from Wilson et al. (2015) immersion freezing of marine organic aerosols parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncwilson", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncpippar": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_primary_cloud_ice_crystal_particles_in_air_from_parameterization", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from primary formation from parameterization", + "comment": "Ice Crystal Number Concentration formed as primary ice directly from the parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncpippar", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncatkinsonpar": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_atkinson_directly_from_parameterization", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Atkinson et al. (2013) directly from the parameterization", + "comment": "Ice Crystal Number Concentration formed from Atkinson et al. (2013) immersion freezing of K-feldspar directly from the parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncatkinsonpar", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncullrichifpar": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_ullrich_if_directly_from_parameterization", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Ullrich et al. (2017) immersion freezing of soot and dust directly from the parameterization", + "comment": "Ice Crystal Number Concentration formed from Ullrich et al. (2017) immersion freezing of soot and dust directly from the parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncullrichifpar", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncullrichdnpar": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_ullrich_dn_directly_from_parameterization", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Ullrich et al. (2017) deposition nucleation of soot and dust directly from the parameterization", + "comment": "Ice Crystal Number Concentration formed from Ullrich et al. (2017) deposition nucleation of soot and dust directly from the parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncullrichdnpar", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncharrisonpar": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_harrison_directly_from_parameterization", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Harrison et al. (2019) immersion freezing of K-feldspar and quartz directly from the parameterization", + "comment": "Ice Crystal Number Concentration formed from Harrison et al. (2019) immersion freezing of K-feldspar and quartz directly from the parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncharrisonpar", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icncwilsonpar": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_wilson_directly_from_parameterization", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration from Wilson et al. (2015) immersion freezing of marine organic aerosols directly from the parameterization", + "comment": "Ice Crystal Number Concentration formed from Wilson et al. (2015) immersion freezing of marine organic aerosols directly from the parameterization.", + "dimensions": "longitude latitude alevel time", + "out_name": "icncwilsonpar", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrmoacs": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_marine_organic_aerosols_accumulation_mode_soluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Marine organic aerosols in accumulation mode soluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of marine organic aerosols in accumulation mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrmoacs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrfelaci": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_feldspar_accumulation_mode_insoluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Feldspar in accumulation mode insoluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of feldspar in accumulation mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrfelaci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrfelcoi": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_feldspar_coarse_mode_insoluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Feldspar in coarse mode insoluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of feldspar in coarse mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrfelcoi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrquaaci": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_quartz_accumulation_mode_insoluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Quartz in accumulation mode insoluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of quartz in accumulation mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrquaaci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrquacoi": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_quartz_coarse_mode_insoluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Quartz in coarse mode insoluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of quartz in coarse mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrquacoi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrduaci": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_dust_accumulation_mode_insoluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust in accumulation mode insoluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of dust in accumulation mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrduaci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrducoi": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_dust_coarse_mode_insoluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust in coarse mode insoluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of dust in coarse mode insoluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrducoi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrduacs": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_dust_accumulation_mode_soluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust in accumulation mode soluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of dust in accumulation mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrduacs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrducos": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_dust_coarse_mode_soluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust in coarse mode soluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of dust in coarse mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrducos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrbcacs": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_black_carbon_accumulation_mode_soluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Black carbon in accumulation mode soluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of black carbon in accumulation mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrbcacs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrbccos": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_mixing_ratio_of_black_carbon_coarse_mode_soluble_in_air", + "units": "g m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Black carbon in coarse mode soluble Aerosol Volume Mixing Ratio", + "comment": "Volume mixing ratio of black carbon in coarse mode soluble aerosol particles in air.", + "dimensions": "longitude latitude alevel time", + "out_name": "vmrbccos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nmraccs": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_median_radius_of_accumulation_soluble_modes", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Number median radius of accumulation soluble modes", + "comment": "Dry count median radius of soluble modes in accumulation mode.", + "dimensions": "longitude latitude alevel time", + "out_name": "nmraccs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nmrcoas": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "number_median_radius_of_coarse_soluble_modes", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Number median radius of coarse soluble modes", + "comment": "Dry count median radius of soluble modes in coarse mode.", + "dimensions": "longitude latitude alevel time", + "out_name": "nmrcoas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fisupsat": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "fractional_ice_supersaturation", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Fractional ice supersaturation", + "comment": "Fractional ice supersaturation (Si-1) is calculated by substracting 1 to the Saturation ratio with respect to ice (S_i). It is useful for the offline ice crystal number concentration calculation with Meyers formula", + "dimensions": "longitude latitude alevel time", + "out_name": "fisupsat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERmonZ.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERmonZ.json new file mode 100644 index 0000000000000000000000000000000000000000..abe45fbe34eca75c670be0ddf9e95978e19c9003 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_AERmonZ.json @@ -0,0 +1,324 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table AERmonZ", + "realm": "aerosol", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "bry": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_inorganic_bromine_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Total Inorganic Bromine Volume Mixing Ratio", + "comment": "Total family (the sum of all appropriate species in the model) ; list the species in the netCDF header, e.g. Bry = Br + BrO + HOBr + HBr + BrONO2 + BrCl Definition: Total inorganic bromine (e.g., HBr and inorganic bromine oxides and radicals (e.g., BrO, atomic bromine (Br), bromine nitrate (BrONO2)) resulting from degradation of bromine-containing organic source gases (halons, methyl bromide, VSLS), and natural inorganic bromine sources (e.g., volcanoes, sea salt, and other aerosols) add comment attribute with detailed description about how the model calculates these fields", + "dimensions": "latitude plev39 time", + "out_name": "bry", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ch4": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Mole Fraction of CH4", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "latitude plev39 time", + "out_name": "ch4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cly": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_inorganic_chlorine_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Total Inorganic Chlorine Volume Mixing Ratio", + "comment": "Total family (the sum of all appropriate species in the model) ; list the species in the netCDF header, e.g. Cly = HCl + ClONO2 + HOCl + ClO + Cl + 2*Cl2O2 +2Cl2 + OClO + BrCl Definition: Total inorganic stratospheric chlorine (e.g., HCl, ClO) resulting from degradation of chlorine-containing source gases (CFCs, HCFCs, VSLS), and natural inorganic chlorine sources (e.g., sea salt and other aerosols) add comment attribute with detailed description about how the model calculates these fields", + "dimensions": "latitude plev39 time", + "out_name": "cly", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "h2o": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_water_in_air", + "units": "1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Mass Fraction of Water", + "comment": "includes all phases of water", + "dimensions": "latitude plev39 time", + "out_name": "h2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hcl": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydrogen_chloride_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "HCl Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of hydrogen chloride is HCl.", + "dimensions": "latitude plev39 time", + "out_name": "hcl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hno3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitric_acid_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "HNO3 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "latitude plev39 time", + "out_name": "hno3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ho2": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydroperoxyl_radical_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "HO2 Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of hydroperoxyl radical is HO2.", + "dimensions": "latitude plev39 time", + "out_name": "ho2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "meanage": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "age_of_stratospheric_air", + "units": "yr", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Mean Age of Stratospheric Air", + "comment": "The mean age of air is defined as the mean time that a stratospheric air mass has been out of contact with the well-mixed troposphere.", + "dimensions": "latitude plev39 time", + "out_name": "meanage", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "n2o": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Mole Fraction of N2O", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O.", + "dimensions": "latitude plev39 time", + "out_name": "n2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "noy": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_noy_expressed_as_nitrogen_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Total Reactive Nitrogen Volume Mixing Ratio", + "comment": "Total family (the sum of all appropriate species in the model); list the species in the netCDF header, e.g. NOy = N + NO + NO2 + NO3 + HNO3 + 2N2O5 + HNO4 + ClONO2 + BrONO2 Definition: Total reactive nitrogen; usually includes atomic nitrogen (N), nitric oxide (NO), NO2, nitrogen trioxide (NO3), dinitrogen radical (N2O5), nitric acid (HNO3), peroxynitric acid (HNO4), BrONO2, ClONO2 add comment attribute with detailed description about how the model calculates these fields", + "dimensions": "latitude plev39 time", + "out_name": "noy", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Mole Fraction of O3", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "latitude plev39 time", + "out_name": "o3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "oh": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mole_fraction_of_hydroxyl_radical_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "OH Volume Mixing Ratio", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "latitude plev39 time", + "out_name": "oh", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "latitude plev39 time", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "latitude plev39 time", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "latitude plev39 time", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vt100": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "covariance_over_longitude_of_northward_wind_and_air_temperature", + "units": "K m s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Northward Eddy Temperature Flux", + "comment": "Zonally averaged eddy temperature flux at 100hPa as monthly means derived from daily (or higher frequency) fields.", + "dimensions": "latitude time p100", + "out_name": "vt100", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "latitude plev39 time", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Amon.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Amon.json new file mode 100644 index 0000000000000000000000000000000000000000..8a6425dcc4ef9f1831fb5795a248eb940375da79 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Amon.json @@ -0,0 +1,1368 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Amon", + "realm": "atmos atmosChem", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "ccb": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_base", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Pressure at Convective Cloud Base", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud base altitude should be that of the bottom of the lowest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "longitude latitude time", + "out_name": "ccb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cct": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_top", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Pressure at Convective Cloud Top", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud top altitude should be that of the top of the highest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "longitude latitude time", + "out_name": "cct", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfc113global": { + "frequency": "mon", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_cfc113_in_air", + "units": "1e-12", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CFC113", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of CFC113 is CCl2FCClF2. The IUPAC name for CFC113 is 1,1,2-trichloro-1,2,2-trifluoro-ethane.", + "dimensions": "time", + "out_name": "cfc113global", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfc11global": { + "frequency": "mon", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_cfc11_in_air", + "units": "1e-12", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CFC11", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of CFC11 is CFCl3. The IUPAC name for CFC11 is trichloro-fluoro-methane.", + "dimensions": "time", + "out_name": "cfc11global", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfc12global": { + "frequency": "mon", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_cfc12_in_air", + "units": "1e-12", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CFC12", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of CFC12 is CF2Cl2. The IUPAC name for CFC12 is dichloro-difluoro-methane.", + "dimensions": "time", + "out_name": "cfc12global", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ch4": { + "frequency": "mon", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CH4", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time", + "out_name": "ch4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ch4Clim": { + "frequency": "monC", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CH4", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time2", + "out_name": "ch4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ch4global": { + "frequency": "mon", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "1e-09", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CH4", + "comment": "Global Mean Mole Fraction of CH4", + "dimensions": "time", + "out_name": "ch4global", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ch4globalClim": { + "frequency": "monC", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "1e-09", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of CH4", + "comment": "Global Mean Mole Fraction of CH4", + "dimensions": "time2", + "out_name": "ch4global", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ci": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "convection_time_fraction", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Fraction of Time Convection Occurs in Cell", + "comment": "Fraction of time that convection occurs in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "ci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cl": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cloud Cover", + "comment": "Percentage cloud cover, including both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "cl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cli": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_ice_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Ice", + "comment": "Includes both large-scale and convective cloud. This is calculated as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. It includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "cli", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clivi": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Water Path", + "comment": "mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clivi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clt": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_liquid_water_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Liquid Water", + "comment": "Includes both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Precipitating hydrometeors are included ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwvi": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Condensed Water Path", + "comment": "Mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clwvi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CO2", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time", + "out_name": "co2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2Clim": { + "frequency": "monC", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CO2", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time2", + "out_name": "co2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2mass": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_of_carbon_dioxide", + "units": "kg", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Total Atmospheric Mass of CO2", + "comment": "Total atmospheric mass of Carbon Dioxide", + "dimensions": "time", + "out_name": "co2mass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2massClim": { + "frequency": "monC", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_of_carbon_dioxide", + "units": "kg", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "", + "long_name": "Total Atmospheric Mass of CO2", + "comment": "Total atmospheric mass of Carbon Dioxide", + "dimensions": "time2", + "out_name": "co2mass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evspsbl": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Evaporation Including Sublimation and Transpiration", + "comment": "Evaporation at surface (also known as evapotranspiration): flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "longitude latitude time", + "out_name": "evspsbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fco2antt": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 [kgC m-2 s-1]", + "comment": "This is requested only for the emission-driven coupled carbon climate model runs. Does not include natural fire sources but, includes all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth.", + "dimensions": "longitude latitude time", + "out_name": "fco2antt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fco2fos": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 [kgC m-2 s-1]", + "comment": "This is the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.)", + "dimensions": "longitude latitude time", + "out_name": "fco2fos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fco2nat": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources [kgC m-2 s-1]", + "comment": "This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon that account for natural exchanges between the atmosphere and land (nep) or ocean (fgco2) reservoirs.", + "dimensions": "longitude latitude time", + "out_name": "fco2nat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hcfc22global": { + "frequency": "mon", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_hcfc22_in_air", + "units": "1e-12", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of HCFC22", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. A chemical species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The chemical formula for HCFC22 is CHClF2. The IUPAC name for HCFC22 is chloro-difluoro-methane.", + "dimensions": "time", + "out_name": "hcfc22global", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfls": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfss": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hur": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude plev19 time", + "out_name": "hur", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hurs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev19 time", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "huss": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "longitude latitude time height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Mass Flux", + "comment": "The net mass flux should represent the difference between the updraft and downdraft components. The flux is computed as the mass divided by the area of the grid cell.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mc", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "n2o": { + "frequency": "mon", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of N2O", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O.", + "dimensions": "longitude latitude plev19 time", + "out_name": "n2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "n2oClim": { + "frequency": "monC", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of N2O", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O.", + "dimensions": "longitude latitude plev19 time2", + "out_name": "n2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "n2oglobal": { + "frequency": "mon", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "1e-09", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of N2O", + "comment": "Global mean Nitrous Oxide (N2O)", + "dimensions": "time", + "out_name": "n2oglobal", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "n2oglobalClim": { + "frequency": "monC", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "1e-09", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "", + "long_name": "Global Mean Mole Fraction of N2O", + "comment": "Global mean Nitrous Oxide (N2O)", + "dimensions": "time2", + "out_name": "n2oglobal", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o3": { + "frequency": "mon", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of O3", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time", + "out_name": "o3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o3Clim": { + "frequency": "monC", + "modeling_realm": "atmos atmosChem", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of O3", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time2", + "out_name": "o3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pfull": { + "frequency": "monC", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "longitude latitude alevel time2", + "out_name": "pfull", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phalf": { + "frequency": "monC", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacella", + "long_name": "Pressure on Model Half-Levels", + "comment": "Air pressure on model half-levels", + "dimensions": "longitude latitude alevhalf time2", + "out_name": "phalf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Precipitation", + "comment": "Convective precipitation at surface; includes both liquid and solid phases.", + "dimensions": "longitude latitude time", + "out_name": "prc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snowfall Flux", + "comment": "At surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "vertically integrated through the atmospheric column", + "dimensions": "longitude latitude time", + "out_name": "prw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "psl": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time", + "out_name": "psl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlds": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rldscs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlus": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlut": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time", + "out_name": "rlut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlutcs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsds": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "longitude latitude time", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdt": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "Shortwave radiation incident at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsus": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'shortwave' means shortwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsuscs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky Shortwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rsuscs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsut": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rtmt": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "net_downward_radiative_flux_at_top_of_atmosphere_model", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Downward Radiative Flux at Top of Model", + "comment": "Net Downward Radiative Flux at Top of Model : I.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. This is reported only if it differs from the net downward radiative flux at the top of the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "rtmt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sbl": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "sbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sci": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "shallow_convection_time_fraction", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Fraction of Time Shallow Convection Occurs", + "comment": "Fraction of time that shallow convection occurs in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "sci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfcWind": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Wind Speed", + "comment": "near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev19 time", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasmax": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: maximum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Air Temperature", + "comment": "maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')", + "dimensions": "longitude latitude time height2m", + "out_name": "tasmax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasmin": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: minimum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Air Temperature", + "comment": "minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')", + "dimensions": "longitude latitude time height2m", + "out_name": "tasmin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauu": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downward_eastward_stress", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Eastward Wind Stress", + "comment": "Downward eastward wind stress at the surface", + "dimensions": "longitude latitude time", + "out_name": "tauu", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauv": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_downward_northward_stress", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Northward Wind Stress", + "comment": "Downward northward wind stress at the surface", + "dimensions": "longitude latitude time", + "out_name": "tauv", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ts": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "ts", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uas": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vas": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "longitude latitude time height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude plev19 time", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev19 time", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_CF3hr.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CF3hr.json new file mode 100644 index 0000000000000000000000000000000000000000..5fba49da4aed23aafea1f8f483a170015842be0b --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CF3hr.json @@ -0,0 +1,1170 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table CF3hr", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.125000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "ci": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "convection_time_fraction", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Fraction of Time Convection Occurs in Cell", + "comment": "Fraction of time that convection occurs in the grid cell.", + "dimensions": "longitude latitude time1", + "out_name": "ci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "convective_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Area Percentage", + "comment": "Include only convective cloud.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clic": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Ice", + "comment": "Calculated as the mass of convective cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clis": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Ice", + "comment": "Calculated as the mass of stratiform cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clivi": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Ice Water Path", + "comment": "mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time1", + "out_name": "clivi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cls": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "stratiform_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover of Stratiform Cloud", + "comment": "Cloud area fraction (reported as a percentage) for the whole atmospheric column due to stratiform clouds, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time1", + "out_name": "cls", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clt": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time1", + "out_name": "clt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cltc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "convective_cloud_area_fraction", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Cover Percentage", + "comment": "Convective cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes only convective cloud.", + "dimensions": "longitude latitude time1", + "out_name": "cltc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Liquid Water", + "comment": "Calculated as the mass of convective cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clwc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clws": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Liquid Water", + "comment": "Calculated as the mass of stratiform cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time1", + "out_name": "clws", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwvi": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Condensed Water Path", + "comment": "Mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time1", + "out_name": "clwvi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "demc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "convective_cloud_longwave_emissivity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Emissivity", + "comment": "This is the in-cloud emissivity obtained by considering only the cloudy portion of the grid cell.", + "dimensions": "longitude latitude alevel time1", + "out_name": "demc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dems": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "stratiform_cloud_longwave_emissivity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Stratiform Cloud Emissivity", + "comment": "This is the in-cloud emissivity obtained by considering only the cloudy portion of the grid cell.", + "dimensions": "longitude latitude alevel time1", + "out_name": "dems", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dtauc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_optical_thickness_due_to_convective_cloud", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Optical Depth", + "comment": "This is the in-cloud optical depth obtained by considering only the cloudy portion of the grid cell", + "dimensions": "longitude latitude alevel time1", + "out_name": "dtauc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dtaus": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_optical_thickness_due_to_stratiform_cloud", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Stratiform Cloud Optical Depth", + "comment": "This is the in-cloud optical depth obtained by considering only the cloudy portion of the grid cell.", + "dimensions": "longitude latitude alevel time1", + "out_name": "dtaus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evspsbl": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Evaporation Including Sublimation and Transpiration", + "comment": "Evaporation at surface (also known as evapotranspiration): flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "longitude latitude time1", + "out_name": "evspsbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "grpllsprof": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "stratiform_graupel_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Stratiform Graupel Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. Stratiform precipitation, whether liquid or frozen, is precipitation that formed in stratiform cloud. Graupel consists of heavily rimed snow particles, often called snow pellets; often indistinguishable from very small soft hail except when the size convention that hail must have a diameter greater than 5 mm is adopted. Reference: American Meteorological Society Glossary http://glossary.ametsoc.org/wiki/Graupel. There are also separate standard names for hail. Standard names for 'graupel_and_hail' should be used to describe data produced by models that do not distinguish between hail and graupel.", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "grpllsprof", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "h2o": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_water_in_air", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Water", + "comment": "includes all phases of water", + "dimensions": "longitude latitude alevel time1", + "out_name": "h2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfls": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time1", + "out_name": "hfls", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfss": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time1", + "out_name": "hfss", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hurs": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time1 height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pfull": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "longitude latitude alevel time1", + "out_name": "pfull", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phalf": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Pressure on Model Half-Levels", + "comment": "Air pressure on model half-levels", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "phalf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time1", + "out_name": "pr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Precipitation", + "comment": "Convective precipitation at surface; includes both liquid and solid phases.", + "dimensions": "longitude latitude time1", + "out_name": "prc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prcprof": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "convective_rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Rainfall Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "prcprof", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prlsns": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "stratiform_snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Stratiform Snowfall Flux", + "comment": "large-scale precipitation of all forms of water in the solid phase.", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "prlsns", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prlsprof": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "stratiform_rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Stratiform Rainfall Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. Stratiform precipitation, whether liquid or frozen, is precipitation that formed in stratiform cloud.", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "prlsprof", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Snowfall Flux", + "comment": "At surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "longitude latitude time1", + "out_name": "prsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsnc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "convective_snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Snowfall Flux", + "comment": "convective precipitation of all forms of water in the solid phase.", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "prsnc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prw": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "vertically integrated through the atmospheric column", + "dimensions": "longitude latitude time1", + "out_name": "prw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "psl": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time1", + "out_name": "psl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclic": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_ice_particles", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Convective Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffclic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclis": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_ice_particles", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Stratiform Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffclis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclwc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffclwc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclws": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Stratiform Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffclws", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffgrpls": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_graupel_particles", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Stratiform Graupel", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffgrpls", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffrainc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_rain_particles", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Convective Rainfall", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffrainc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffrains": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_rain_particles", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Stratiform Rainfall", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffrains", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffsnowc": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_snow_particles", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Convective Snowfall", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffsnowc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffsnows": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_snow_particles", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Stratiform Snowfall", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time1", + "out_name": "reffsnows", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlds": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time1", + "out_name": "rlds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rldscs": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "longitude latitude time1", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlus": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time1", + "out_name": "rlus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlut": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time1", + "out_name": "rlut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlutcs": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsds": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time1", + "out_name": "rsds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscs": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "longitude latitude time1", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdt": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "Shortwave radiation incident at the top of the atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsus": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'shortwave' means shortwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time1", + "out_name": "rsus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsuscs": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky Shortwave Radiation", + "dimensions": "longitude latitude time1", + "out_name": "rsuscs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsut": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "rsut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcs": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time1", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rtmt": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "net_downward_radiative_flux_at_top_of_atmosphere_model", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Net Downward Radiative Flux at Top of Model", + "comment": "Net Downward Radiative Flux at Top of Model : I.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. This is reported only if it differs from the net downward radiative flux at the top of the atmosphere.", + "dimensions": "longitude latitude time1", + "out_name": "rtmt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sbl": { + "frequency": "3hrPt", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "longitude latitude time1", + "out_name": "sbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sci": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "shallow_convection_time_fraction", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Fraction of Time Shallow Convection Occurs", + "comment": "Fraction of time that shallow convection occurs in the grid cell.", + "dimensions": "longitude latitude time1", + "out_name": "sci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfcWind": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Wind Speed", + "comment": "near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time1 height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauu": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downward_eastward_stress", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Eastward Wind Stress", + "comment": "Downward eastward wind stress at the surface", + "dimensions": "longitude latitude time1", + "out_name": "tauu", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauv": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downward_northward_stress", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Northward Wind Stress", + "comment": "Downward northward wind stress at the surface", + "dimensions": "longitude latitude time1", + "out_name": "tauv", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ts": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "ts", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zfull": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "height_above_reference_ellipsoid", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Altitude of Model Full-Levels", + "comment": "Height of full model levels above a reference ellipsoid. A reference ellipsoid is a mathematical figure that approximates the geoid. The geoid is a surface of constant geopotential with which mean sea level would coincide if the ocean were at rest. The ellipsoid is an approximation because the geoid is an irregular shape. A number of reference ellipsoids are defined for use in the field of geodesy. To specify which reference ellipsoid is being used, a grid_mapping variable should be attached to the data variable as described in Chapter 5.6 of the CF Convention.", + "dimensions": "longitude latitude alevel time1", + "out_name": "zfull", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zhalf": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "height_above_reference_ellipsoid", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Altitude of Model Half-Levels", + "comment": "Height of model half-levels above a reference ellipsoid. A reference ellipsoid is a mathematical figure that approximates the geoid. The geoid is a surface of constant geopotential with which mean sea level would coincide if the ocean were at rest. The ellipsoid is an approximation because the geoid is an irregular shape. A number of reference ellipsoids are defined for use in the field of geodesy. To specify which reference ellipsoid is being used, a grid_mapping variable should be attached to the data variable as described in Chapter 5.6 of the CF Convention.", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "zhalf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_CFday.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CFday.json new file mode 100644 index 0000000000000000000000000000000000000000..b240864aeda17baa1fbce149a2409576fbaa93ec --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CFday.json @@ -0,0 +1,666 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table CFday", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "1.00000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "albisccp": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_albedo", + "units": "1", + "cell_methods": "area: time: mean where cloud", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Albedo", + "comment": "ISCCP Mean Cloud Albedo. Time-means are weighted by the ISCCP Total Cloud Fraction {:cltisccp} - see http://cfmip.metoffice.com/COSP.html", + "dimensions": "longitude latitude time", + "out_name": "albisccp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ccb": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_base", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Pressure at Convective Cloud Base", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud base altitude should be that of the bottom of the lowest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "longitude latitude time", + "out_name": "ccb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cct": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_top", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Pressure at Convective Cloud Top", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud top altitude should be that of the top of the highest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "longitude latitude time", + "out_name": "cct", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cloud Cover", + "comment": "Percentage cloud cover, including both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "cl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clcalipso": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Percentage Cloud Cover", + "comment": "Percentage cloud cover in CALIPSO standard atmospheric layers.", + "dimensions": "longitude latitude alt40 time", + "out_name": "clcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clhcalipso": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO High Level Cloud Area Percentage", + "comment": "Percentage cloud cover in layer centred on 220hPa", + "dimensions": "longitude latitude time p220", + "out_name": "clhcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cli": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_ice_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Ice", + "comment": "Includes both large-scale and convective cloud. This is calculated as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. It includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "cli", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clisccp": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "ISCCP Cloud Area Percentage", + "comment": "Percentage cloud cover in optical depth categories.", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clisccp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clivi": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Water Path", + "comment": "mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clivi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cllcalipso": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Low Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 840hPa", + "dimensions": "longitude latitude time p840", + "out_name": "cllcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clmcalipso": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Mid Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 560hPa", + "dimensions": "longitude latitude time p560", + "out_name": "clmcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cltcalipso": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) instrument. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cltisccp": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "ISCCP Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the International Satellite Cloud Climatology Project (ISCCP) analysis. Includes both large-scale and convective cloud. (MODIS). Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltisccp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clw": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_liquid_water_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Cloud Liquid Water", + "comment": "Includes both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Precipitating hydrometeors are included ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwvi": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Condensed Water Path", + "comment": "Mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clwvi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hur": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude alevel time", + "out_name": "hur", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude alevel time", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mc": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Mass Flux", + "comment": "The net mass flux should represent the difference between the updraft and downdraft components. The flux is computed as the mass divided by the area of the grid cell.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mc", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pctisccp": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_cloud_top", + "units": "Pa", + "cell_methods": "area: time: mean where cloud", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Top Pressure", + "comment": "ISCCP Mean Cloud Top Pressure. Time-means are weighted by the ISCCP Total Cloud Fraction {:cltisccp} - see http://cfmip.metoffice.com/COSP.html", + "dimensions": "longitude latitude time", + "out_name": "pctisccp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pfull": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "longitude latitude alevel time", + "out_name": "pfull", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phalf": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Pressure on Model Half-Levels", + "comment": "Air pressure on model half-levels", + "dimensions": "longitude latitude alevhalf time", + "out_name": "phalf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rldscs": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "longitude latitude time", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlutcs": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscs": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "longitude latitude time", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdt": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "Shortwave radiation incident at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsuscs": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky Shortwave Radiation", + "dimensions": "longitude latitude time", + "out_name": "rsuscs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsut": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcs": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta700": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air temperature at 700hPa", + "dimensions": "longitude latitude time p700", + "out_name": "ta700", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude alevel time", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude alevel time", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude alevel time", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap500": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Pressure Tendency", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards) at 500hPa level;", + "dimensions": "longitude latitude time p500", + "out_name": "wap500", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude alevel time", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_CFmon.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CFmon.json new file mode 100644 index 0000000000000000000000000000000000000000..89562a0dd1a730959b3af31bfb98b588f69d9f77 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CFmon.json @@ -0,0 +1,1170 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table CFmon", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "albisccp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_albedo", + "units": "1", + "cell_methods": "area: time: mean where cloud", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Albedo", + "comment": "ISCCP Mean Cloud Albedo. Time-means are weighted by the ISCCP Total Cloud Fraction {:cltisccp} - see http://cfmip.metoffice.com/COSP.html", + "dimensions": "longitude latitude time", + "out_name": "albisccp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "convective_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Area Percentage", + "comment": "Include only convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "clc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clcalipso": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Percentage Cloud Cover", + "comment": "Percentage cloud cover in CALIPSO standard atmospheric layers.", + "dimensions": "longitude latitude alevel time", + "out_name": "clcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clhcalipso": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO High Level Cloud Area Percentage", + "comment": "Percentage cloud cover in layer centred on 220hPa", + "dimensions": "longitude latitude time p220", + "out_name": "clhcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clic": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Ice", + "comment": "Calculated as the mass of convective cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "climodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "ice_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Ice Cloud Area Percentage", + "comment": "Total ice cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Moderate Resolution Imaging Spectroradiometer (MODIS). ", + "dimensions": "longitude latitude time", + "out_name": "climodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_ice_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Ice", + "comment": "Calculated as the mass of stratiform cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clisccp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "ISCCP Cloud Area Percentage", + "comment": "Percentage cloud cover in optical depth categories.", + "dimensions": "longitude latitude plev7c tau time", + "out_name": "clisccp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cllcalipso": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Low Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 840hPa", + "dimensions": "longitude latitude time p840", + "out_name": "cllcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clmcalipso": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Mid Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 560hPa", + "dimensions": "longitude latitude time p560", + "out_name": "clmcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cls": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "stratiform_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover of Stratiform Cloud", + "comment": "Cloud area fraction (reported as a percentage) for the whole atmospheric column due to stratiform clouds, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude alevel time", + "out_name": "cls", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cltcalipso": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) instrument. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cltisccp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "ISCCP Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the International Satellite Cloud Climatology Project (ISCCP) analysis. Includes both large-scale and convective cloud. (MODIS). Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltisccp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cltmodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Moderate Resolution Imaging Spectroradiometer (MODIS). Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_convective_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Convective Cloud Liquid Water", + "comment": "Calculated as the mass of convective cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clwc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwmodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "liquid_water_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Liquid Cloud Percentage", + "comment": "Mass of cloud liquid water, as seen by the Moderate Resolution Imaging Spectroradiometer (MODIS). Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clwmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clws": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_stratiform_cloud_liquid_water_in_air", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Stratiform Cloud Liquid Water", + "comment": "Calculated as the mass of stratiform cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude alevel time", + "out_name": "clws", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dmc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_deep_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Deep Convective Mass Flux", + "comment": "The net mass flux represents the difference between the updraft and downdraft components. This is calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "dmc", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "edt": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_heat_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eddy Diffusivity Coefficient for Temperature", + "comment": "Vertical diffusion coefficient for temperature due to parametrised eddies", + "dimensions": "longitude latitude alevel time", + "out_name": "edt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evu": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_momentum_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eddy Viscosity Coefficient for Momentum", + "comment": "Vertical diffusion coefficient for momentum due to parametrised eddies", + "dimensions": "longitude latitude alevel time", + "out_name": "evu", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hur": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude alevel time", + "out_name": "hur", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude alevel time", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "iwpmodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_ice_water_path", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Cloud Ice Water Path", + "comment": "Cloud Ice Water Path for the whole atmospheric column, as seen by MODIS.", + "dimensions": "longitude latitude time", + "out_name": "iwpmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwpmodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_liquid_water_path", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Cloud Liquid Water Path", + "comment": "Cloud Liquid Water Path for the whole atmospheric column, as seen by MODIS.", + "dimensions": "longitude latitude time", + "out_name": "lwpmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mcd": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_downdraft_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downdraft Convective Mass Flux", + "comment": "Calculated as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mcd", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mcu": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_updraft_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Updraft Mass Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The atmosphere convective mass flux is the vertical transport of mass for a field of cumulus clouds or thermals, given by the product of air density and vertical velocity. For an area-average, cell_methods should specify whether the average is over all the area or the area of updrafts only.", + "dimensions": "longitude latitude alevhalf time", + "out_name": "mcu", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pctisccp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_cloud_top", + "units": "Pa", + "cell_methods": "area: time: mean where cloud", + "cell_measures": "area: areacella", + "long_name": "ISCCP Mean Cloud Top Pressure", + "comment": "ISCCP Mean Cloud Top Pressure. Time-means are weighted by the ISCCP Total Cloud Fraction {:cltisccp} - see http://cfmip.metoffice.com/COSP.html", + "dimensions": "longitude latitude time", + "out_name": "pctisccp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclimodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "ice_cloud_particle_size", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Ice Cloud Particle Size", + "comment": "Ice Cloud Particle Size for the whole atmospheric column, as seen by MODIS.", + "dimensions": "longitude latitude time", + "out_name": "reffclimodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclwmodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "liquid_cloud_particle_size", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Liquid Cloud Particle Size", + "comment": "Liquid Cloud Particle Size for the whole atmospheric column, as seen by MODIS.", + "dimensions": "longitude latitude time", + "out_name": "reffclwmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rld": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Longwave Radiation", + "comment": "Downwelling Longwave Radiation (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rld", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rld4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Longwave Radiation 4XCO2 Atmosphere", + "comment": "Downwelling longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rld4co2", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rldcs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Longwave Radiation", + "comment": "Downwelling clear-sky longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rldcs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rldcs4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere", + "comment": "Downwelling clear-sky longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rldcs4co2", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlu": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Longwave Radiation", + "comment": "Upwelling longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rlu", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlu4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Longwave Radiation 4XCO2 Atmosphere", + "comment": "Upwelling longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rlu4co2", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlucs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rlucs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlucs4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere", + "comment": "Upwelling clear-sky longwave radiation calculated using carbon dioxide concentrations increased fourfold (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rlucs4co2", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlut4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation 4XCO2 Atmosphere", + "comment": "Top-of-atmosphere outgoing longwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude time", + "out_name": "rlut4co2", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlutcs4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation 4XCO2 Atmosphere", + "comment": "Top-of-atmosphere outgoing clear-sky longwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude time", + "out_name": "rlutcs4co2", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsd": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Shortwave Radiation", + "comment": "Downwelling shortwave radiation (includes the fluxes at the surface and top-of-atmosphere)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsd", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsd4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Shortwave Radiation 4XCO2 Atmosphere", + "comment": "Downwelling shortwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsd4co2", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdcs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Shortwave Radiation", + "comment": "Downwelling clear-sky shortwave radiation (includes the fluxes at the surface and top-of-atmosphere)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsdcs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdcs4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere", + "comment": "Downwelling clear-sky shortwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsdcs4co2", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsu": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Shortwave Radiation", + "comment": "Upwelling shortwave radiation (includes also the fluxes at the surface and top of atmosphere)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsu", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsu4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Shortwave Radiation 4XCO2 Atmosphere", + "comment": "Upwelling Shortwave Radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsu4co2", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsucs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Shortwave Radiation", + "comment": "Upwelling clear-sky shortwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsucs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsucs4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere", + "comment": "Upwelling clear-sky shortwave radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude alevhalf time", + "out_name": "rsucs4co2", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsut4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation in 4XCO2 Atmosphere", + "comment": "TOA Outgoing Shortwave Radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude time", + "out_name": "rsut4co2", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcs4co2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation 4XCO2 Atmosphere", + "comment": "TOA Outgoing Clear-Sky Shortwave Radiation calculated using carbon dioxide concentrations increased fourfold", + "dimensions": "longitude latitude time", + "out_name": "rsutcs4co2", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "smc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_shallow_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Shallow Convective Mass Flux", + "comment": "The net mass flux represents the difference between the updraft and downdraft components. For models with a distinct shallow convection scheme, this is calculated as convective mass flux divided by the area of the whole grid cell (not just the area of the cloud).", + "dimensions": "longitude latitude alevhalf time", + "out_name": "smc", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhus": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity", + "comment": "Tendency of Specific Humidity", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusa": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_advection", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Advection", + "comment": "Tendency of Specific Humidity due to Advection", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_convection", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Convection", + "comment": "Tendencies from cumulus convection scheme.", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusd": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_diffusion", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Numerical Diffusion", + "comment": "Tendency of specific humidity due to numerical diffusion.This includes any horizontal or vertical numerical moisture diffusion not associated with the parametrized moist physics or the resolved dynamics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be excluded, as should any diffusion which is included in the terms from the resolved dynamics. This term is required to check the closure of the moisture budget.", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusmp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_model_physics", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Model Physics", + "comment": "Tendency of specific humidity due to model physics. This includes sources and sinks from parametrized moist physics (e.g. convection, boundary layer, stratiform condensation/evaporation, etc.) and excludes sources and sinks from resolved dynamics or from horizontal or vertical numerical diffusion not associated with model physics. For example any diffusive mixing by the boundary layer scheme would be included.", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusmp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusscpbl": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing", + "comment": "Tendency of Specific Humidity Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing (to be specified only in models which do not separate budget terms for stratiform cloud, precipitation and boundary layer schemes. Includes all boundary layer terms including and diffusive terms.)", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusscpbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnt": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature", + "comment": "Tendency of Air Temperature", + "dimensions": "longitude latitude alevel time", + "out_name": "tnt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnta": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_advection", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Advection", + "comment": "Tendency of Air Temperature due to Advection", + "dimensions": "longitude latitude alevel time", + "out_name": "tnta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_convection", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Convection", + "comment": "Tendencies from cumulus convection scheme.", + "dimensions": "longitude latitude alevel time", + "out_name": "tntc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntmp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_model_physics", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Model Physics", + "comment": "Tendency of air temperature due to model physics. This includes sources and sinks from parametrized physics (e.g. radiation, convection, boundary layer, stratiform condensation/evaporation, etc.). It excludes sources and sinks from resolved dynamics and numerical diffusion not associated with parametrized physics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be included, while numerical diffusion applied in addition to physics or resolved dynamics should be excluded. This term is required to check the closure of the heat budget.", + "dimensions": "longitude latitude alevel time", + "out_name": "tntmp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntr": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_radiative_heating", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Radiative Heating", + "comment": "Tendency of Air Temperature due to Radiative Heating", + "dimensions": "longitude latitude alevel time", + "out_name": "tntr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntscpbl": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing", + "comment": "Tendency of Air Temperature Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing (to be specified only in models which do not separate cloud, precipitation and boundary layer terms. Includes all boundary layer terms including diffusive ones.)", + "dimensions": "longitude latitude alevel time", + "out_name": "tntscpbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_CFsubhr.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CFsubhr.json new file mode 100644 index 0000000000000000000000000000000000000000..6cbad75438d29f6a6af5f77f7d8c929b3290966b --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CFsubhr.json @@ -0,0 +1,1442 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table CFsubhr", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.017361", + "approx_interval_error": "0.90", + "approx_interval_warning": "0.5", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "ccb": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_base", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Air Pressure at Convective Cloud Base", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud base altitude should be that of the bottom of the lowest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "site time1", + "out_name": "ccb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cct": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_convective_cloud_top", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Air Pressure at Convective Cloud Top", + "comment": "Where convective cloud is present in the grid cell, the instantaneous cloud top altitude should be that of the top of the highest level containing convective cloud. Missing data should be reported in the absence of convective cloud. The time mean should be calculated from these quantities averaging over occasions when convective cloud is present only, and should contain missing data for occasions when no convective cloud is present during the meaning period.", + "dimensions": "site time1", + "out_name": "cct", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ci": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "convection_time_fraction", + "units": "1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Fraction of Time Convection Occurs in Cell", + "comment": "Fraction of time that convection occurs in the grid cell.", + "dimensions": "site time1", + "out_name": "ci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cl": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Percentage Cloud Cover", + "comment": "Percentage cloud cover, including both large-scale and convective cloud.", + "dimensions": "alevel site time1", + "out_name": "cl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cli": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_ice_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Mass Fraction of Cloud Ice", + "comment": "Includes both large-scale and convective cloud. This is calculated as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. It includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "alevel site time1", + "out_name": "cli", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clivi": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Ice Water Path", + "comment": "mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "site time1", + "out_name": "clivi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clt": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "site time1", + "out_name": "clt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clw": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_cloud_liquid_water_in_air", + "units": "kg kg-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Mass Fraction of Cloud Liquid Water", + "comment": "Includes both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Precipitating hydrometeors are included ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "alevel site time1", + "out_name": "clw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwvi": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Condensed Water Path", + "comment": "Mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "site time1", + "out_name": "clwvi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "edt": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_heat_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Eddy Diffusivity Coefficient for Temperature", + "comment": "Vertical diffusion coefficient for temperature due to parametrised eddies", + "dimensions": "alevel site time1", + "out_name": "edt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evspsbl": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Evaporation Including Sublimation and Transpiration", + "comment": "Evaporation at surface (also known as evapotranspiration): flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "site time1", + "out_name": "evspsbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evu": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_momentum_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Eddy Viscosity Coefficient for Momentum", + "comment": "Vertical diffusion coefficient for momentum due to parametrised eddies", + "dimensions": "alevel site time1", + "out_name": "evu", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fco2antt": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 [kgC m-2 s-1]", + "comment": "This is requested only for the emission-driven coupled carbon climate model runs. Does not include natural fire sources but, includes all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth.", + "dimensions": "site time1", + "out_name": "fco2antt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fco2fos": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 [kgC m-2 s-1]", + "comment": "This is the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.)", + "dimensions": "site time1", + "out_name": "fco2fos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fco2nat": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources [kgC m-2 s-1]", + "comment": "This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon that account for natural exchanges between the atmosphere and land (nep) or ocean (fgco2) reservoirs.", + "dimensions": "site time1", + "out_name": "fco2nat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfls": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "site time1", + "out_name": "hfls", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfss": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "site time1", + "out_name": "hfss", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hur": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "alevel site time1", + "out_name": "hur", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hurs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Near-Surface Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "site time1 height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "alevel site time1", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "huss": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "site time1 height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "latitude": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "latitude", + "units": "degrees_north", + "cell_methods": "area: point", + "cell_measures": "", + "long_name": "Latitude", + "comment": "Latitude is positive northward; its units of degree_north (or equivalent) indicate this explicitly. In a latitude-longitude system defined with respect to a rotated North Pole, the standard name of grid_latitude should be used instead of latitude. Grid latitude is positive in the grid-northward direction, but its units should be plain degree.", + "dimensions": "site", + "out_name": "lat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "longitude": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "longitude", + "units": "degrees_east", + "cell_methods": "area: point", + "cell_measures": "", + "long_name": "Longitude", + "comment": "Longitude is positive eastward; its units of degree_east (or equivalent) indicate this explicitly. In a latitude-longitude system defined with respect to a rotated North Pole, the standard name of grid_longitude should be used instead of longitude. Grid longitude is positive in the grid-eastward direction, but its units should be plain degree.", + "dimensions": "site", + "out_name": "lon", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mc": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Convective Mass Flux", + "comment": "The net mass flux should represent the difference between the updraft and downdraft components. The flux is computed as the mass divided by the area of the grid cell.", + "dimensions": "alevhalf site time1", + "out_name": "mc", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pfull": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Pressure at Model Full-Levels", + "comment": "Air pressure on model levels", + "dimensions": "alevel site time1", + "out_name": "pfull", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phalf": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Pressure on Model Half-Levels", + "comment": "Air pressure on model half-levels", + "dimensions": "alevhalf site time1", + "out_name": "phalf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Precipitation", + "comment": "includes both liquid and solid phases", + "dimensions": "site time1", + "out_name": "pr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prc": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Convective Precipitation", + "comment": "Convective precipitation at surface; includes both liquid and solid phases.", + "dimensions": "site time1", + "out_name": "prc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Snowfall Flux", + "comment": "At surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "site time1", + "out_name": "prsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prw": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Water Vapor Path", + "comment": "vertically integrated through the atmospheric column", + "dimensions": "site time1", + "out_name": "prw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "site time1", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "psl": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "site time1", + "out_name": "psl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rld": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Downwelling Longwave Radiation", + "comment": "Downwelling Longwave Radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rld", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rldcs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Downwelling Clear-Sky Longwave Radiation", + "comment": "Downwelling clear-sky longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rldcs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlds": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "site time1", + "out_name": "rlds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rldscs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downwelling Clear-Sky Longwave Radiation", + "comment": "Surface downwelling clear-sky longwave radiation", + "dimensions": "site time1", + "out_name": "rldscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlu": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Upwelling Longwave Radiation", + "comment": "Upwelling longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rlu", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlucs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Upwelling Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rlucs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlus": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "site time1", + "out_name": "rlus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlut": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "site time1", + "out_name": "rlut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlutcs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "site time1", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsd": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Downwelling Shortwave Radiation", + "comment": "Downwelling shortwave radiation (includes the fluxes at the surface and top-of-atmosphere)", + "dimensions": "alevhalf site time1", + "out_name": "rsd", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdcs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Downwelling Clear-Sky Shortwave Radiation", + "comment": "Downwelling clear-sky shortwave radiation (includes the fluxes at the surface and top-of-atmosphere)", + "dimensions": "alevhalf site time1", + "out_name": "rsdcs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsds": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "site time1", + "out_name": "rsds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation", + "comment": "Surface solar irradiance clear sky for UV calculations", + "dimensions": "site time1", + "out_name": "rsdscs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdt": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "Shortwave radiation incident at the top of the atmosphere", + "dimensions": "site time1", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsu": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Upwelling Shortwave Radiation", + "comment": "Upwelling shortwave radiation (includes also the fluxes at the surface and top of atmosphere)", + "dimensions": "alevhalf site time1", + "out_name": "rsu", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsucs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Upwelling Clear-Sky Shortwave Radiation", + "comment": "Upwelling clear-sky shortwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf site time1", + "out_name": "rsucs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsus": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'shortwave' means shortwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "site time1", + "out_name": "rsus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsuscs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky Shortwave Radiation", + "dimensions": "site time1", + "out_name": "rsuscs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsut": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "site time1", + "out_name": "rsut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "site time1", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rtmt": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "net_downward_radiative_flux_at_top_of_atmosphere_model", + "units": "W m-2", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Net Downward Radiative Flux at Top of Model", + "comment": "Net Downward Radiative Flux at Top of Model : I.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. This is reported only if it differs from the net downward radiative flux at the top of the atmosphere.", + "dimensions": "site time1", + "out_name": "rtmt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sbl": { + "frequency": "subhrPt", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "site time1", + "out_name": "sbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sci": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "shallow_convection_time_fraction", + "units": "1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Fraction of Time Shallow Convection Occurs", + "comment": "Fraction of time that shallow convection occurs in the grid cell.", + "dimensions": "site time1", + "out_name": "sci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfcWind": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Near-Surface Wind Speed", + "comment": "near-surface (usually, 10 meters) wind speed.", + "dimensions": "site time1 height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "alevel site time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "site time1 height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauu": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downward_eastward_stress", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downward Eastward Wind Stress", + "comment": "Downward eastward wind stress at the surface", + "dimensions": "site time1", + "out_name": "tauu", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauv": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downward_northward_stress", + "units": "Pa", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Downward Northward Wind Stress", + "comment": "Downward northward wind stress at the surface", + "dimensions": "site time1", + "out_name": "tauv", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhus": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity", + "comment": "Tendency of Specific Humidity", + "dimensions": "alevel site time1", + "out_name": "tnhus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusa": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_advection", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Advection", + "comment": "Tendency of Specific Humidity due to Advection", + "dimensions": "alevel site time1", + "out_name": "tnhusa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusc": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_convection", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Convection", + "comment": "Tendencies from cumulus convection scheme.", + "dimensions": "alevel site time1", + "out_name": "tnhusc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusd": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_diffusion", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Numerical Diffusion", + "comment": "Tendency of specific humidity due to numerical diffusion.This includes any horizontal or vertical numerical moisture diffusion not associated with the parametrized moist physics or the resolved dynamics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be excluded, as should any diffusion which is included in the terms from the resolved dynamics. This term is required to check the closure of the moisture budget.", + "dimensions": "alevel site time1", + "out_name": "tnhusd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusmp": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_model_physics", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Model Physics", + "comment": "Tendency of specific humidity due to model physics. This includes sources and sinks from parametrized moist physics (e.g. convection, boundary layer, stratiform condensation/evaporation, etc.) and excludes sources and sinks from resolved dynamics or from horizontal or vertical numerical diffusion not associated with model physics. For example any diffusive mixing by the boundary layer scheme would be included.", + "dimensions": "alevel site time1", + "out_name": "tnhusmp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusscpbl": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing", + "comment": "Tendency of Specific Humidity Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing (to be specified only in models which do not separate budget terms for stratiform cloud, precipitation and boundary layer schemes. Includes all boundary layer terms including and diffusive terms.)", + "dimensions": "alevel site time1", + "out_name": "tnhusscpbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnt": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature", + "comment": "Tendency of Air Temperature", + "dimensions": "alevel site time1", + "out_name": "tnt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnta": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_advection", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Advection", + "comment": "Tendency of Air Temperature due to Advection", + "dimensions": "alevel site time1", + "out_name": "tnta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntc": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_convection", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Convection", + "comment": "Tendencies from cumulus convection scheme.", + "dimensions": "alevel site time1", + "out_name": "tntc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntmp": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_model_physics", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Model Physics", + "comment": "Tendency of air temperature due to model physics. This includes sources and sinks from parametrized physics (e.g. radiation, convection, boundary layer, stratiform condensation/evaporation, etc.). It excludes sources and sinks from resolved dynamics and numerical diffusion not associated with parametrized physics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be included, while numerical diffusion applied in addition to physics or resolved dynamics should be excluded. This term is required to check the closure of the heat budget.", + "dimensions": "alevel site time1", + "out_name": "tntmp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntr": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_radiative_heating", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Radiative Heating", + "comment": "Tendency of Air Temperature due to Radiative Heating", + "dimensions": "alevel site time1", + "out_name": "tntr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntscpbl": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing", + "comment": "Tendency of Air Temperature Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing (to be specified only in models which do not separate cloud, precipitation and boundary layer terms. Includes all boundary layer terms including diffusive ones.)", + "dimensions": "alevel site time1", + "out_name": "tntscpbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ts": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "site time1", + "out_name": "ts", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "alevel site time1", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uas": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "site time1 height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "alevel site time1", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vas": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "site time1 height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "alevel site time1", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "alevel site time1", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_CV.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CV.json new file mode 100644 index 0000000000000000000000000000000000000000..2f712672bfc203bbd9543966b367347d774197e5 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_CV.json @@ -0,0 +1,11536 @@ +{ + "CV":{ + "required_global_attributes":[ + "Conventions", + "activity_id", + "creation_date", + "data_specs_version", + "experiment", + "experiment_id", + "forcing_index", + "frequency", + "further_info_url", + "grid", + "grid_label", + "initialization_index", + "institution", + "institution_id", + "license", + "mip_era", + "nominal_resolution", + "physics_index", + "product", + "realization_index", + "realm", + "source", + "source_id", + "source_type", + "sub_experiment", + "sub_experiment_id", + "table_id", + "tracking_id", + "variable_id", + "variant_label" + ], + "version_metadata":{ + "CV_collection_modified":"Thu Feb 23 10:37:06 2023 -0800", + "CV_collection_version":"6.2.58.52", + "author":"Paul J. Durack ", + "experiment_id_CV_modified":"Tue Dec 15 12:25:59 2020 -0800", + "experiment_id_CV_note":"Revise experiment_id historical parent experiments", + "institution_id":"PCMDI", + "previous_commit":"d66efa2f0c9dfc8049450fe3eeda79b0c760dd1e", + "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" + }, + "license":[ + "^CMIP6 model data produced by .* is licensed under a Creative Commons .* License (https://creativecommons\\.org/.*)\\. *Consult https://pcmdi\\.llnl\\.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment\\. *Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file).*\\. *The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose\\. *All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law\\.$" + ], + "activity_id":{ + "AerChemMIP":"Aerosols and Chemistry Model Intercomparison Project", + "C4MIP":"Coupled Climate Carbon Cycle Model Intercomparison Project", + "CDRMIP":"Carbon Dioxide Removal Model Intercomparison Project", + "CFMIP":"Cloud Feedback Model Intercomparison Project", + "CMIP":"CMIP DECK: 1pctCO2, abrupt4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments", + "CORDEX":"Coordinated Regional Climate Downscaling Experiment", + "DAMIP":"Detection and Attribution Model Intercomparison Project", + "DCPP":"Decadal Climate Prediction Project", + "DynVarMIP":"Dynamics and Variability Model Intercomparison Project", + "FAFMIP":"Flux-Anomaly-Forced Model Intercomparison Project", + "FORCeS": "Constrained aerosol forcing for improved climate projections", + "GMMIP":"Global Monsoons Model Intercomparison Project", + "GeoMIP":"Geoengineering Model Intercomparison Project", + "HighResMIP":"High-Resolution Model Intercomparison Project", + "ISMIP6":"Ice Sheet Model Intercomparison Project for CMIP6", + "LS3MIP":"Land Surface, Snow and Soil Moisture", + "LUMIP":"Land-Use Model Intercomparison Project", + "OMIP":"Ocean Model Intercomparison Project", + "PAMIP":"Polar Amplification Model Intercomparison Project", + "PMIP":"Palaeoclimate Modelling Intercomparison Project", + "RFMIP":"Radiative Forcing Model Intercomparison Project", + "SIMIP":"Sea Ice Model Intercomparison Project", + "ScenarioMIP":"Scenario Model Intercomparison Project", + "VIACSAB":"Vulnerability, Impacts, Adaptation and Climate Services Advisory Board", + "VolMIP":"Volcanic Forcings Model Intercomparison Project" + }, + "institution_id":{ + "AER":"Research and Climate Group, Atmospheric and Environmental Research, 131 Hartwell Avenue, Lexington, MA 02421, USA", + "AS-RCEC":"Research Center for Environmental Changes, Academia Sinica, Nankang, Taipei 11529, Taiwan", + "AWI":"Alfred Wegener Institute, Helmholtz Centre for Polar and Marine Research, Am Handelshafen 12, 27570 Bremerhaven, Germany", + "BCC":"Beijing Climate Center, Beijing 100081, China", + "CAMS":"Chinese Academy of Meteorological Sciences, Beijing 100081, China", + "CAS":"Chinese Academy of Sciences, Beijing 100029, China", + "CCCR-IITM":"Centre for Climate Change Research, Indian Institute of Tropical Meteorology Pune, Maharashtra 411 008, India", + "CCCma":"Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada", + "CMCC":"Fondazione Centro Euro-Mediterraneo sui Cambiamenti Climatici, Lecce 73100, Italy", + "CNRM-CERFACS":"CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)", + "CSIRO":"Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia", + "CSIRO-ARCCSS":"CSIRO (Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia), ARCCSS (Australian Research Council Centre of Excellence for Climate System Science). Mailing address: CSIRO, c/o Simon J. Marsland, 107-121 Station Street, Aspendale, Victoria 3195, Australia", + "CSIRO-COSIMA":"CSIRO (Commonwealth Scientific and Industrial Research Organisation, Australia), COSIMA (Consortium for Ocean-Sea Ice Modelling in Australia). Mailing address: CSIRO, c/o Simon J. Marsland, 107-121 Station Street, Aspendale, Victoria 3195, Australia", + "DKRZ":"Deutsches Klimarechenzentrum, Hamburg 20146, Germany", + "DWD":"Deutscher Wetterdienst, Offenbach am Main 63067, Germany", + "E3SM-Project":"LLNL (Lawrence Livermore National Laboratory, Livermore, CA 94550, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545, USA); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); PNNL (Pacific Northwest National Laboratory, Richland, WA 99352, USA); SNL (Sandia National Laboratories, Albuquerque, NM 87185, USA). Mailing address: LLNL Climate Program, c/o David C. Bader, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA", + "EC-Earth-Consortium":"AEMET, Spain; BSC, Spain; CNR-ISAC, Italy; DMI, Denmark; ENEA, Italy; FMI, Finland; Geomar, Germany; ICHEC, Ireland; ICTP, Italy; IDL, Portugal; IMAU, The Netherlands; IPMA, Portugal; KIT, Karlsruhe, Germany; KNMI, The Netherlands; Lund University, Sweden; Met Eireann, Ireland; NLeSC, The Netherlands; NTNU, Norway; Oxford University, UK; surfSARA, The Netherlands; SMHI, Sweden; Stockholm University, Sweden; Unite ASTR, Belgium; University College Dublin, Ireland; University of Bergen, Norway; University of Copenhagen, Denmark; University of Helsinki, Finland; University of Santiago de Compostela, Spain; Uppsala University, Sweden; Utrecht University, The Netherlands; Vrije Universiteit Amsterdam, the Netherlands; Wageningen University, The Netherlands. Mailing address: EC-Earth consortium, Rossby Center, Swedish Meteorological and Hydrological Institute/SMHI, SE-601 76 Norrkoping, Sweden", + "ECMWF":"European Centre for Medium-Range Weather Forecasts, Reading RG2 9AX, UK", + "FIO-QLNM":"FIO (First Institute of Oceanography, Ministry of Natural Resources, Qingdao 266061, China), QNLM (Qingdao National Laboratory for Marine Science and Technology, Qingdao 266237, China)", + "HAMMOZ-Consortium":"ETH Zurich, Switzerland; Max Planck Institut fur Meteorologie, Germany; Forschungszentrum Julich, Germany; University of Oxford, UK; Finnish Meteorological Institute, Finland; Leibniz Institute for Tropospheric Research, Germany; Center for Climate Systems Modeling (C2SM) at ETH Zurich, Switzerland", + "INM":"Institute for Numerical Mathematics, Russian Academy of Science, Moscow 119991, Russia", + "IPSL":"Institut Pierre Simon Laplace, Paris 75252, France", + "KIOST":"Korea Institute of Ocean Science and Technology, Busan 49111, Republic of Korea", + "LLNL":"Lawrence Livermore National Laboratory, Livermore, CA 94550, USA. Mailing address: LLNL Climate Program, c/o Stephen A. Klein, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA", + "MESSy-Consortium":"The Modular Earth Submodel System (MESSy) Consortium, represented by the Institute for Physics of the Atmosphere, Deutsches Zentrum fur Luft- und Raumfahrt (DLR), Wessling, Bavaria 82234, Germany", + "MIROC":"JAMSTEC (Japan Agency for Marine-Earth Science and Technology, Kanagawa 236-0001, Japan), AORI (Atmosphere and Ocean Research Institute, The University of Tokyo, Chiba 277-8564, Japan), NIES (National Institute for Environmental Studies, Ibaraki 305-8506, Japan), and R-CCS (RIKEN Center for Computational Science, Hyogo 650-0047, Japan)", + "MOHC":"Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK", + "MPI-M":"Max Planck Institute for Meteorology, Hamburg 20146, Germany", + "MRI":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", + "NASA-GISS":"Goddard Institute for Space Studies, New York, NY 10025, USA", + "NASA-GSFC":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", + "NCAR":"National Center for Atmospheric Research, Climate and Global Dynamics Laboratory, 1850 Table Mesa Drive, Boulder, CO 80305, USA", + "NCC":"NorESM Climate modeling Consortium consisting of CICERO (Center for International Climate and Environmental Research, Oslo 0349), MET-Norway (Norwegian Meteorological Institute, Oslo 0313), NERSC (Nansen Environmental and Remote Sensing Center, Bergen 5006), NILU (Norwegian Institute for Air Research, Kjeller 2027), UiB (University of Bergen, Bergen 5007), UiO (University of Oslo, Oslo 0313) and UNI (Uni Research, Bergen 5008), Norway. Mailing address: NCC, c/o MET-Norway, Henrik Mohns plass 1, Oslo 0313, Norway", + "NERC":"Natural Environment Research Council, STFC-RAL, Harwell, Oxford, OX11 0QX, UK", + "NIMS-KMA":"National Institute of Meteorological Sciences/Korea Meteorological Administration, Climate Research Division, Seoho-bukro 33, Seogwipo-si, Jejudo 63568, Republic of Korea", + "NIWA":"National Institute of Water and Atmospheric Research, Hataitai, Wellington 6021, New Zealand", + "NOAA-GFDL":"National Oceanic and Atmospheric Administration, Geophysical Fluid Dynamics Laboratory, Princeton, NJ 08540, USA", + "NTU":"National Taiwan University, Taipei 10650, Taiwan", + "NUIST":"Nanjing University of Information Science and Technology, Nanjing, 210044, China", + "PCMDI":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", + "PNNL-WACCEM":"PNNL (Pacific Northwest National Laboratory), Richland, WA 99352, USA", + "RTE-RRTMGP-Consortium":"AER (Atmospheric and Environmental Research, Lexington, MA 02421, USA); UColorado (University of Colorado, Boulder, CO 80309, USA). Mailing address: AER c/o Eli Mlawer, 131 Hartwell Avenue, Lexington, MA 02421, USA", + "RUBISCO":"ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); NAU (Northern Arizona University, Flagstaff, AZ 86011, USA); NCAR (National Center for Atmospheric Research, Boulder, CO 80305, USA); UCI (University of California Irvine, Irvine, CA 92697, USA); UM (University of Michigan, Ann Arbor, MI 48109, USA). Mailing address: ORNL Climate Change Science Institute, c/o Forrest M. Hoffman, Laboratory Research Manager, Building 4500N Room F106, 1 Bethel Valley Road, Oak Ridge, TN 37831-6301, USA", + "SNU":"Seoul National University, Seoul 08826, Republic of Korea", + "THU":"Department of Earth System Science, Tsinghua University, Beijing 100084, China", + "UA":"Department of Geosciences, University of Arizona, Tucson, AZ 85721, USA", + "UCI":"Department of Earth System Science, University of California Irvine, Irvine, CA 92697, USA", + "UCSB":"Bren School of Environmental Science and Management, University of California, Santa Barbara. Mailing address: c/o Samantha Stevenson, 2400 Bren Hall, University of California Santa Barbara, Santa Barbara, CA 93106, USA", + "UHH":"Universitat Hamburg, Hamburg 20148, Germany" + }, + "source_id":{ + "4AOP-v1-5":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2020-06-11: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"4AOP-v1-5", + "source":"4AOP-v1-5 (2019): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "ACCESS-CM2":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "FAFMIP", + "OMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CSIRO-ARCCSS" + ], + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"ACCESS-CM2", + "source":"ACCESS-CM2 (2019): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: CABLE2.5\nlandIce: none\nocean: ACCESS-OM2 (GFDL-MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE5.1.2 (same grid as ocean)" + }, + "ACCESS-ESM1-5":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CSIRO" + ], + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2019-11-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"ACCESS-ESM1-5", + "source":"ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)\natmosChem: none\nland: CABLE2.4\nlandIce: none\nocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: WOMBAT (same grid as ocean)\nseaIce: CICE4.1 (same grid as ocean)" + }, + "ACCESS-OM2":{ + "activity_participation":[ + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CSIRO-COSIMA" + ], + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2021-06-16: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"ACCESS-OM2", + "source":"ACCESS-OM2 (2020): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-2.3 m)\nocnBgchem: WOMBAT (same grid as ocean)\nseaIce: CICE5.1.2 (same grid as ocean)" + }, + "ACCESS-OM2-025":{ + "activity_participation":[ + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CSIRO-COSIMA" + ], + "license_info":{ + "exceptions_contact":"@csiro.au <- access_csiro", + "history":"2021-06-17: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"ACCESS-OM2-025", + "source":"ACCESS-OM2-025 (2020): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: ACCESS-OM2 (MOM5, tripolar primarily 1/4 deg; 1440 x 1080 longitude/latitude; 50 levels; top grid cell 0-2.3 m)\nocnBgchem: WOMBAT (same grid as ocean)\nseaIce: CICE5.1.2 (same grid as ocean)" + }, + "ARTS-2-3":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "UHH" + ], + "license_info":{ + "exceptions_contact":"@uni-hamburg.de <- oliver.lemke", + "history":"2019-06-20: initially published under CC BY-NC-SA 4.0; 2022-07-31: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"ARTS-2-3", + "source":"ARTS 2.3 (2015): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "AWI-CM-1-1-HR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "HighResMIP", + "OMIP", + "SIMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AWI" + ], + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"AWI-CM-1-1-HR", + "source":"AWI-CM 1.1 HR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 1306775 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-CM-1-1-LR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AWI" + ], + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"AWI-CM-1-1-LR", + "source":"AWI-CM 1.1 LR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-CM-1-1-MR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "OMIP", + "PAMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AWI" + ], + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2018-12-18: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"AWI-CM-1-1-MR", + "source":"AWI-CM 1.1 MR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 830305 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-ESM-1-1-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AWI" + ], + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"2020-02-12: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"AWI-ESM-1-1-LR", + "source":"AWI-ESM 1.1 LR (2018): \naerosol: none\natmos: ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20 with dynamic vegetation\nlandIce: none\nocean: FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 1.4" + }, + "AWI-ESM-2-1-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "license_info":{ + "exceptions_contact":"@awi.de <- mip-contact", + "history":"", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"AWI-ESM-2-1-LR", + "source":"AWI-ESM 2.1 LR (2019): \naerosol: none\natmos: ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH 3.20 with dynamic vegetation\nlandIce: none\nocean: FESOM 2 (unstructured grid in the horizontal with 126858 wet nodes; 48 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: FESOM 2" + }, + "BCC-CSM2-HR":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "BCC" + ], + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- twwu", + "history":"2020-07-21: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"BCC-CSM2-HR", + "source":"BCC-CSM 2 HR (2017): \naerosol: none\natmos: BCC_AGCM3_HR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)\natmosChem: none\nland: BCC_AVIM2\nlandIce: none\nocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS2" + }, + "BCC-CSM2-MR":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "LS3MIP", + "LUMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "BCC" + ], + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- twwu", + "history":"2018-10-09: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"BCC-CSM2-MR", + "source":"BCC-CSM 2 MR (2017): \naerosol: none\natmos: BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)\natmosChem: none\nland: BCC_AVIM2\nlandIce: none\nocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS2" + }, + "BCC-ESM1":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "BCC" + ], + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- twwu", + "history":"2018-11-14: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"BCC-ESM1", + "source":"BCC-ESM 1 (2017): \naerosol: none\natmos: BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)\natmosChem: BCC-AGCM3-Chem\nland: BCC_AVIM2\nlandIce: none\nocean: MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS2" + }, + "CAM-MPAS-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "PNNL-WACCEM" + ], + "source_id":"CAM-MPAS-HR", + "source":"CAM-MPAS-HR (2018): \naerosol: none, prescribed MACv2-SP\natmos: CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 30 km mesh with 655362 cells and 1966080 edges; 32 levels, top level 40363 m)\natmosChem: none\nland: CLM (v4.0, same grid as atmos), River Transport Model (v1.0)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "CAM-MPAS-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "PNNL-WACCEM" + ], + "source_id":"CAM-MPAS-LR", + "source":"CAM-MPAS-LR (2018): \naerosol: none, prescribed MACv2-SP\natmos: CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 120 km mesh with 40962 cells and 122880 edges; 32 vertical levels, model top 40363 m)\natmosChem: none\nland: CLM (v4.0, same grid as atmos), River Transport Model (v1.0)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "CAMS-CSM1-0":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "GMMIP", + "HighResMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAMS" + ], + "license_info":{ + "exceptions_contact":"@cma.gov.cn <- rongxy", + "history":"2019-07-08: initially published under CC BY-SA 4.0; 2022-09-29 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CAMS-CSM1-0", + "source":"CAMS-CSM 1.0 (2016): \naerosol: none\natmos: ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)\natmosChem: none\nland: CoLM 1.0\nlandIce: none\nocean: MOM4 (tripolar; 360 x 200 longitude/latitude, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: SIS 1.0" + }, + "CAS-ESM2-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAS" + ], + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- zhanghe", + "history":"2020-03-01: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CAS-ESM2-0", + "source":"CAS-ESM 2.0 (2019): \naerosol: IAP AACM\natmos: IAP AGCM 5.0 (Finite difference dynamical core; 256 x 128 longitude/latitude; 35 levels; top level 2.2 hPa)\natmosChem: IAP AACM\nland: CoLM\nlandIce: none\nocean: LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)\nocnBgchem: IAP OBGCM\nseaIce: CICE4" + }, + "CESM1-1-CAM5-CMIP5":{ + "activity_participation":[ + "CMIP", + "DCPP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-10-07: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CESM1-1-CAM5-CMIP5", + "source":"CESM1-1-CAM5-CMIP5 (2011): \naerosol: MAM3 (same grid as atmos)\natmos: CAM5.2 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)\natmosChem: MAM3 (same grid as atmos)\nland: CLM4 (same grid as atmos)\nlandIce: none\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: BEC (same grid as ocean)\nseaIce: CICE4 (same grid as ocean)" + }, + "CESM1-CAM5-SE-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2020-07-24: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CESM1-CAM5-SE-HR", + "source":"CESM1-CAM5-SE-HR (2012): \naerosol: MAM3 (same grid as atmos)\natmos: CAM5.2 (0.25 degree spectral element; 777602 cells; 30 levels; top level 2.25 mb)\natmosChem: MAM3 (same grid as atmos)\nland: CLM4 (same grid as atmos)\nlandIce: none\nocean: POP2 (3600x2400 longitude/latitude; 62 levels; top grid cell 0-10 m)\nocnBgchem: \"BEC (same grid as ocean)\nseaIce: CICE4 (same grid as ocean)" + }, + "CESM1-CAM5-SE-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2020-07-08: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CESM1-CAM5-SE-LR", + "source":"CESM1-CAM5-SE-LR (2012): \naerosol: MAM3 (same grid as atmos)\natmos: CAM5.2 (1 degree spectral element; 48602 cells; 30 levels; top level 2.25 mb)\natmosChem: MAM3 (same grid as atmos)\nland: CLM4 (same grid as atmos)\nlandIce: none\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: \"BEC (same grid as ocean)\nseaIce: CICE4 (same grid as ocean)" + }, + "CESM1-WACCM-SC":{ + "activity_participation":[ + "PAMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "UCI", + "NCAR" + ], + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2020-10-12: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CESM1-WACCM-SC", + "source":"CESM1-WACCM-SC (2011): \naerosol: MOZART-specified (same grid as atmos)\natmos: WACCM4 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 66 levels; top level 5.9e-06 mb)\natmosChem: MOZART-specified (same grid as atmos)\nland: CLM4.0\nlandIce: none\nocean: POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: BEC (same grid as ocean)\nseaIce: CICE4 (same as grid as ocean)" + }, + "CESM2":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-02-18: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CESM2", + "source":"CESM2 (2018): \naerosol: MAM4 (same grid as atmos)\natmos: CAM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)\natmosChem: MAM4 (same grid as atmos)\nland: CLM5 (same grid as atmos)\nlandIce: CISM2.1\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: MARBL (same grid as ocean)\nseaIce: CICE5.1 (same grid as ocean)" + }, + "CESM2-FV2":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CESM2-FV2", + "source":"CESM2-FV2 (2019): \naerosol: MAM4 (same grid as atmos)\natmos: CAM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 32 levels; top level 2.25 mb)\natmosChem: MAM4 (same grid as atmos)\nland: CLM5 (same grid as atmos)\nlandIce: CISM2.1\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: MARBL (same grid as ocean)\nseaIce: CICE5.1 (same grid as ocean)" + }, + "CESM2-WACCM":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "GeoMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-02-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CESM2-WACCM", + "source":"CESM2-WACCM (2018): \naerosol: MAM4 (same grid as atmos)\natmos: WACCM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 70 levels; top level 4.5e-06 mb)\natmosChem: MAM4 (same grid as atmos)\nland: CLM5 (same grid as atmos)\nlandIce: CISM2.1\nocean: POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: MARBL (same grid as ocean)\nseaIce: CICE5.1 (same grid as ocean)" + }, + "CESM2-WACCM-FV2":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCAR" + ], + "license_info":{ + "exceptions_contact":"@ucar.edu <- cesm_cmip6", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CESM2-WACCM-FV2", + "source":"CESM2-WACCM-FV2 (2019): \naerosol: MAM4 (same grid as atmos)\natmos: WACCM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 70 levels; top level 4.5e-06 mb)\natmosChem: MAM4 (same grid as atmos)\nland: CLM5 (same grid as atmos)\nlandIce: CISM2.1\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: MARBL (same grid as ocean)\nseaIce: CICE5.1 (same grid as ocean)" + }, + "CIESM":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "CORDEX", + "GMMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "THU" + ], + "license_info":{ + "exceptions_contact":"@tsinghua.edu.cn <- yanluan", + "history":"2019-12-02: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CIESM", + "source":"CIESM (2017): \naerosol: MAM4\natmos: CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)\natmosChem: trop_mam4\nland: CIESM-LM (modified CLM4.5)\nlandIce: none\nocean: CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)\nocnBgchem: none\nseaIce: CICE4" + }, + "CMCC-CM2-HR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP", + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CMCC" + ], + "license_info":{ + "exceptions_contact":"@cmcc.it <- silvio.gualdi", + "history":"2017-07-06: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CMCC-CM2-HR4", + "source":"CMCC-CM2-HR4 (2016): \naerosol: prescribed MACv2-SP\natmos: CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (SP mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-CM2-SR5":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CMCC" + ], + "license_info":{ + "exceptions_contact":"@cmcc.it <- silvio.gualdi", + "history":"2020-02-26: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CMCC-CM2-SR5", + "source":"CMCC-CM2-SR5 (2016): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-CM2-VHR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CMCC" + ], + "license_info":{ + "exceptions_contact":"@cmcc.it <- enrico.scoccimarro", + "history":"2017-09-27: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CMCC-CM2-VHR4", + "source":"CMCC-CM2-VHR4 (2017): \naerosol: prescribed MACv2-SP\natmos: CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (SP mode)\nlandIce: none\nocean: NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "CMCC-ESM2":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CMCC" + ], + "license_info":{ + "exceptions_contact":"@cmcc.it <- tomas.lovato", + "history":"2020-02-03: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CMCC-ESM2", + "source":"CMCC-ESM2 (2017): \naerosol: MAM3\natmos: CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)\natmosChem: none\nland: CLM4.5 (BGC mode)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)\nocnBgchem: BFM5.2\nseaIce: CICE4.0" + }, + "CNRM-CM6-1":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "license_info":{ + "exceptions_contact":"@cerfacs.fr <- contact.cmip6", + "history":"2018-06-26: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CNRM-CM6-1", + "source":"CNRM-CM6-1 (2017): \naerosol: prescribed monthly fields computed by TACTIC_v2 scheme\natmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)\natmosChem: OZL_v2\nland: Surfex 8.0c\nlandIce: none\nocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: Gelato 6.1" + }, + "CNRM-CM6-1-HR":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "HighResMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "license_info":{ + "exceptions_contact":"@cerfacs.fr <- contact.cmip6", + "history":"2019-02-21: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CNRM-CM6-1-HR", + "source":"CNRM-CM6-1-HR (2017): \naerosol: prescribed monthly fields computed by TACTIC_v2 scheme\natmos: Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)\natmosChem: OZL_v2\nland: Surfex 8.0c\nlandIce: none\nocean: Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: Gelato 6.1" + }, + "CNRM-ESM2-1":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "CORDEX", + "GMMIP", + "GeoMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "license_info":{ + "exceptions_contact":"@meteo.fr <- contact.cmip", + "history":"2018-09-14: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CNRM-ESM2-1", + "source":"CNRM-ESM2-1 (2017): \naerosol: TACTIC_v2\natmos: Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)\natmosChem: REPROBUS-C_v2\nland: Surfex 8.0c\nlandIce: none\nocean: Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: Pisces 2.s\nseaIce: Gelato 6.1" + }, + "CanESM5":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CCCma" + ], + "license_info":{ + "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history":"2019-03-06: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CanESM5", + "source":"CanESM5 (2019): \naerosol: interactive\natmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)\natmosChem: specified oxidants for aerosols\nland: CLASS3.6/CTEM1.2\nlandIce: specified ice sheets\nocean: NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)\nocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry\nseaIce: LIM2" + }, + "CanESM5-1":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CCCma" + ], + "license_info":{ + "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history":"2022-12-02: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CanESM5-1", + "source":"CanESM5.1 (2022): \naerosol: interactive\natmos: CanAM5.1 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)\natmosChem: specified oxidants for aerosols\nland: CLASS3.6/CTEM1.2\nlandIce: specified ice sheets\nocean: NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)\nocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry\nseaIce: LIM2" + }, + "CanESM5-CanOE":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CCCma" + ], + "license_info":{ + "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", + "history":"2019-04-29: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"CanESM5-CanOE", + "source":"CanESM5-CanOE (2019): \naerosol: interactive\natmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)\natmosChem: specified oxidants for aerosols\nland: CLASS3.6/CTEM1.2\nlandIce: specified ice sheets\nocean: NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)\nocnBgchem: Canadian Ocean Ecosystem (CanOE) with OMIP prescribed carbon chemistry\nseaIce: LIM2" + }, + "E3SM-1-0":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "PAMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project", + "LLNL", + "UCI", + "UCSB" + ], + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2019-02-06: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"E3SM-1-0", + "source":"E3SM 1.0 (2018): \naerosol: MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)\natmos: EAM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)\natmosChem: Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)\nland: ELM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; satellite phenology mode), MOSART (v1.0, 0.5 degree latitude/longitude grid)\nlandIce: none\nocean: MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: MPAS-Seaice (v6.0, same grid as ocean)" + }, + "E3SM-1-1":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "DAMIP", + "LS3MIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project", + "RUBISCO" + ], + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2019-10-29: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"E3SM-1-1", + "source":"E3SM 1.1 (2019): \naerosol: MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)\natmos: EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)\natmosChem: Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)\nland: ELM (v1.1, same grid as atmos; active biogeochemistry using the Converging Trophic Cascade plant and soil carbon and nutrient mechanisms to represent carbon, nitrogen and phosphorus cycles), MOSART (v1.1, 0.5 degree latitude/longitude grid)\nlandIce: none\nocean: MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)\nocnBgchem: BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)\nseaIce: MPAS-Seaice (v6.0; same grid as ocean)" + }, + "E3SM-1-1-ECA":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project" + ], + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2019-12-16: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"E3SM-1-1-ECA", + "source":"E3SM 1.1 ECA (2019): \naerosol: MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)\natmos: EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)\natmosChem: Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)\nland: ELM (v1.1, same as atmos; active biogeochemistry using the Equilibrium Chemistry Approximation to represent plant and soil carbon and nutrient mechanisms especially carbon, nitrogen and phosphorus limitation), MOSART (v1.1, 0.5 degree latitude/longitude grid)\nlandIce: none\nocean: MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)\nocnBgchem: BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)\nseaIce: MPAS-Seaice (v6.0; same grid as ocean)" + }, + "E3SM-2-0":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "E3SM-Project" + ], + "license_info":{ + "exceptions_contact":"@llnl.gov <- e3sm-data-support", + "history":"2022-08-23: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"E3SM-2-0", + "source":"E3SM 2.0 (2022): \naerosol: MAM4 with new resuspension, marine organics, secondary organics, and dust (atmos grid)\natmos: EAM (v2.0, cubed sphere spectral-element grid; 5400 elements, 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral element, 112 km average resolution. Physics: 2x2 finite volume cells within each spectral element, 1.5 degree (168 km) average grid spacing; 72 vertical layers; top level 60 km)\natmosChem: Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)\nland: ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.5 degree latitude/longitude)\nlandIce: none\nocean: MPAS-Ocean (E3SMv2.0, EC30to60E2r2 unstructured SVTs mesh with 236853 cells, 719506 edges, variable resolution 60 to 30 km; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: MPAS-Seaice (E3SMv2.0, ocean grid; 5 ice categories; 7 ice, 5 snow layers)" + }, + "EC-Earth3":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "LS3MIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2019-04-05: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3", + "source":"EC-Earth3 (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-AerChem":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2020-06-22: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3-AerChem", + "source":"EC-Earth3-AerChem (2019): \naerosol: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-CC":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DCPP", + "LUMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3-CC", + "source":"EC-Earth3-CC (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: PISCES v2\nseaIce: LIM3" + }, + "EC-Earth3-GrIS":{ + "activity_participation":[ + "CMIP", + "ISMIP6", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3-GrIS", + "source":"EC-Earth3-GrIS (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: PISM 0.7 (5 km x 5 km, 442 levels)\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-HR":{ + "activity_participation":[ + "CMIP", + "DCPP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2022-06-27: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3-HR", + "source":"EC-Earth3-HR (2019): \naerosol: none\natmos: IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA025 tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2019-01-03: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3-LR", + "source":"EC-Earth3-LR (2019): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-Veg":{ + "activity_participation":[ + "CDRMIP", + "CMIP", + "CORDEX", + "LS3MIP", + "LUMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2019-04-10: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3-Veg", + "source":"EC-Earth3-Veg (2019): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3-Veg-LR":{ + "activity_participation":[ + "CMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2020-02-13: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3-Veg-LR", + "source":"EC-Earth3-Veg-LR (2019): \naerosol: none\natmos: IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2017-09-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3P", + "source":"EC-Earth3P (2017): \naerosol: none\natmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@ec-earth.org <- cmip6-data", + "history":"2017-08-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3P-HR", + "source":"EC-Earth3P-HR (2017): \naerosol: none\natmos: IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA025; tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "EC-Earth3P-VHR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "license_info":{ + "exceptions_contact":"@bsc.es <- pierre-antoine.bretonniere", + "history":"2020-10-07: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"EC-Earth3P-VHR", + "source":"EC-Earth3P-VHR (2017): \naerosol: none\natmos: IFS cy36r4 (TL1279, linearly reduced Gaussian grid equivalent to 2560 x 1280 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (land surface scheme built in IFS)\nlandIce: none\nocean: NEMO3.6 (ORCA012 tripolar primarily 0.08 degrees; 4322 x 3059 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM3" + }, + "ECMWF-IFS-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "ECMWF" + ], + "license_info":{ + "exceptions_contact":"@ecmwf.int <- christopher.roberts", + "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"ECMWF-IFS-HR", + "source":"ECMWF-IFS-HR (2017): \naerosol: none\natmos: IFS (IFS CY43R1, Tco399, cubic octahedral reduced Gaussian grid equivalent to 1600 x 800 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (as implemented in IFS CY43R1)\nlandIce: none\nocean: NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)" + }, + "ECMWF-IFS-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "ECMWF" + ], + "license_info":{ + "exceptions_contact":"@ecmwf.int <- christopher.roberts", + "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"ECMWF-IFS-LR", + "source":"ECMWF-IFS-LR (2017): \naerosol: none\natmos: IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (as implemented in IFS CY43R1)\nlandIce: none\nocean: NEMO3.4 (NEMO v3.4; ORCA1 tripolar grid; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)" + }, + "ECMWF-IFS-MR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "ECMWF" + ], + "license_info":{ + "exceptions_contact":"@ecmwf.int <- christopher.roberts", + "history":"2018-11-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"ECMWF-IFS-MR", + "source":"ECMWF-IFS-MR (2017): \naerosol: none\natmos: IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)\natmosChem: none\nland: HTESSEL (as implemented in IFS CY43R1)\nlandIce: none\nocean: NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)" + }, + "FGOALS-f3-H":{ + "activity_participation":[ + "CMIP", + "HighResMIP", + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAS" + ], + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- linpf", + "history":"2019-08-16: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"FGOALS-f3-H", + "source":"FGOALS-f3-H (2017): \naerosol: none\natmos: FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: LICOM3.0 (LICOM3.0, tripolar primarily 0.1deg; 3600 x 2302 longitude/latitude; 55 levels; top grid cell 0-5 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "FGOALS-f3-L":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "HighResMIP", + "OMIP", + "PAMIP", + "PMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAS" + ], + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- linpf", + "history":"2018-11-08: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"FGOALS-f3-L", + "source":"FGOALS-f3-L (2017): \naerosol: none\natmos: FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "FGOALS-g3":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "LS3MIP", + "OMIP", + "PMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CAS" + ], + "license_info":{ + "exceptions_contact":"@mail.iap.ac.cn <- linpf", + "history":"2019-08-18: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"FGOALS-g3", + "source":"FGOALS-g3 (2017): \naerosol: none\natmos: GAMIL3 (180 x 80 longitude/latitude; 26 levels; top level 2.19hPa)\natmosChem: none\nland: CAS-LSM\nlandIce: none\nocean: LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "FIO-ESM-2-0":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "OMIP", + "ScenarioMIP", + "SIMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "FIO-QLNM" + ], + "license_info":{ + "exceptions_contact":"@fio.org.cn <- songroy", + "history":"2019-09-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"FIO-ESM-2-0", + "source":"FIO-ESM 2.0 (2018): \naerosol: Prescribed monthly fields\natmos: CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)\natmosChem: none\nland: CLM4.0 (same grid at atmos)\nlandIce: none\nocean: POP2-W (POP2 coupled with MASNUM surface wave model, Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0 (same grid as ocean)" + }, + "GFDL-AM4":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"GFDL-AM4", + "source":"GFDL-AM4 (2018): \naerosol: interactive\natmos: GFDL-AM4.0 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: GFDL-LM4.0\nlandIce: GFDL-LM4.0\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "GFDL-CM4":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"GFDL-CM4", + "source":"GFDL-CM4 (2018): \naerosol: interactive\natmos: GFDL-AM4.0.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: GFDL-LM4.0.1 (1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 20 levels; bottom level 10m); land-Veg:unnamed (dynamic vegetation, dynamic land use); land-Hydro:unnamed (soil water and ice, multi-layer snow, rivers and lakes)\nlandIce: GFDL-LM4.0.1\nocean: GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: GFDL-BLINGv2\nseaIce: GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-CM4C192":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"GFDL-CM4C192", + "source":"GFDL-CM4C192 (2018): \naerosol: interactive\natmos: GFDL-AM4C192 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)\natmosChem: fast chemistry, aerosol only\nland: GFDL-LM4.0.1\nlandIce: GFDL-LM4.0.1\nocean: GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: none\nseaIce: GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-ESM2M":{ + "activity_participation":[ + "FAFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"GFDL-ESM2M", + "source":"GFDL-ESM2M (2012): \naerosol: prescribed\natmos: GFDL-AM2 (144 x 90 longitude/latitude; 24 levels; top level 1 hPa)\natmosChem: prescribed\nland: GFDL-LM3.0\nlandIce: GFDL-LM3.0\nocean: GFDL-MOM4p1 (tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: GFDL-TOPAZ2\nseaIce: GFDL-SIM2 (GFDL-SIS, tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 3 layers; 5 thickness categories)" + }, + "GFDL-ESM4":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "LUMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"GFDL-ESM4", + "source":"GFDL-ESM4 (2018): \naerosol: interactive\natmos: GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 49 levels; top level 1 Pa)\natmosChem: GFDL-ATMCHEM4.1 (full atmospheric chemistry)\nland: GFDL-LM4.1\nlandIce: GFDL-LM4.1\nocean: GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: GFDL-COBALTv2\nseaIce: GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-GRTCODE":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"GFDL-GRTCODE", + "source":"GFDL-GRTCODE (2019): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "GFDL-OM4p5B":{ + "activity_participation":[ + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"GFDL-OM4p5B", + "source":"GFDL-OM4p5B (2018): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: GFDL-BLINGv2\nseaIce: GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)" + }, + "GFDL-RFM-DISORT":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "license_info":{ + "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", + "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"GFDL-RFM-DISORT", + "source":"GFDL-RFM-DISORT (2019): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "GISS-E2-1-G":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2018-08-21: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "source_id":"GISS-E2-1-G", + "source":"GISS-E2.1G (2019): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "GISS-E2-1-G-CC":{ + "activity_participation":[ + "C4MIP", + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-03-25: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "source_id":"GISS-E2-1-G-CC", + "source":"GISS-E2-1-G-CC (2019): \naerosol: varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.1 (2 x 2.5 degrees; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)\natmosChem: varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: Fixed\nocean: GISS Ocean (1 deg; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)\nocnBgchem: NOBM (NASA Ocean Biogeochemistry Model; same grid as ocean)\nseaIce: GISS SI (same grid as ocean)" + }, + "GISS-E2-1-H":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "OMIP", + "PAMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2018-08-24: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "source_id":"GISS-E2-1-H", + "source":"GISS-E2.1H (2019): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "GISS-E2-2-G":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "source_id":"GISS-E2-2-G", + "source":"GISS-E2-2-G (2019): \naerosol: varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.2 (High-top, 2 x 2.5 degrees; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)\natmosChem: varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: Fixed\nocean: GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "GISS-E2-2-H":{ + "activity_participation":[ + "CMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "source_id":"GISS-E2-2-H", + "source":"GISS-E2.2H (2021): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E2.2 (High Top, 2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI (same grid as atmos)" + }, + "GISS-E3-G":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NASA-GISS" + ], + "license_info":{ + "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", + "history":"2019-12-30: initially published under CC BY-NC-SA 4.0; 2021-12-01: relaxed to CC0 1.0", + "id":"CC0 1.0", + "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", + "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", + "url":"https://creativecommons.org/publicdomain/zero/1.0/" + }, + "source_id":"GISS-E3-G", + "source":"GISS-E3-G (2020): \naerosol: Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)\natmos: GISS-E3 (Cubed sphere, C90; 90 x 90 x 6 gridboxes/cubeface, grid resolution aligns with longitude/latitude along central lines for each cubeface; 102 levels; top level 0.002 hPa)\natmosChem: Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)\nland: GISS LSM\nlandIce: none\nocean: GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: GISS SI" + }, + "HadGEM3-GC31-HH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2018-09-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"HadGEM3-GC31-HH", + "source":"HadGEM3-GC31-HH (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)" + }, + "HadGEM3-GC31-HM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-08-31: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"HadGEM3-GC31-HM", + "source":"HadGEM3-GC31-HM (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "HadGEM3-GC31-LL":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "FAFMIP", + "HighResMIP", + "LS3MIP", + "LUMIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-09-21: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"HadGEM3-GC31-LL", + "source":"HadGEM3-GC31-LL (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)" + }, + "HadGEM3-GC31-LM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC" + ], + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-09-06: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"HadGEM3-GC31-LM", + "source":"HadGEM3-GC31-LM (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "HadGEM3-GC31-MH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC" + ], + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-12-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"HadGEM3-GC31-MH", + "source":"HadGEM3-GC31-MH (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)" + }, + "HadGEM3-GC31-MM":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "HighResMIP", + "LS3MIP", + "OMIP", + "PAMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC" + ], + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", + "history":"2017-08-18: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"HadGEM3-GC31-MM", + "source":"HadGEM3-GC31-MM (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)" + }, + "HiRAM-SIT-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AS-RCEC" + ], + "license_info":{ + "exceptions_contact":"@gate.sinica.edu.tw <- cytu", + "history":"2020-12-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"HiRAM-SIT-HR", + "source":"HiRAM-SIT-HR (2018): \naerosol: none\natmos: GFDL-HiRAM (Cubed-sphere (c384) - 0.25 degree nominal horizontal resolution; 1536 x 768 longitude/latitude; 32 levels; top level 1 hPa)\natmosChem: none\nland: GFDL-LM3 (same grid as atmos)\nlandIce: none\nocean: SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)\nocnBgchem: none\nseaIce: none" + }, + "HiRAM-SIT-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AS-RCEC" + ], + "license_info":{ + "exceptions_contact":"@gate.sinica.edu.tw <- cytu", + "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"HiRAM-SIT-LR", + "source":"HiRAM-SIT-LR (2018): \naerosol: none\natmos: GFDL-HiRAM (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 768 x 384 longitude/latitude; 32 levels; top level 1 hPa)\natmosChem: none\nland: GFDL-LM3 (same grid as atmos)\nlandIce: none\nocean: SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)\nocnBgchem: none\nseaIce: none" + }, + "ICON-ESM-LR":{ + "activity_participation":[ + "CMIP", + "OMIP", + "SIMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MPI-M" + ], + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2021-02-15: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"ICON-ESM-LR", + "source":"ICON-ESM-LR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)\natmosChem: none\nland: JSBACH4.20\nlandIce: none/prescribed\nocean: ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "IITM-ESM":{ + "activity_participation":[ + "CMIP", + "GMMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "CCCR-IITM" + ], + "license_info":{ + "exceptions_contact":"@tropmet.res.in <- iitm-esm", + "history":"2019-07-19: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IITM-ESM", + "source":"IITM-ESM (2015): \naerosol: prescribed MAC-v2\natmos: IITM-GFSv1 (T62L64, Linearly Reduced Gaussian Grid; 192 x 94 longitude/latitude; 64 levels; top level 0.2 mb)\natmosChem: none\nland: NOAH LSMv2.7.1\nlandIce: none\nocean: MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: TOPAZv2.0\nseaIce: SISv1.0" + }, + "INM-CM4-8":{ + "activity_participation":[ + "CMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "INM" + ], + "license_info":{ + "exceptions_contact":"@gmail.com <- volodinev", + "history":"2019-05-28: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"INM-CM4-8", + "source":"INM-CM4-8 (2016): \naerosol: INM-AER1\natmos: INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)\natmosChem: none\nland: INM-LND1\nlandIce: none\nocean: INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)\nocnBgchem: none\nseaIce: INM-ICE1" + }, + "INM-CM5-0":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "INM" + ], + "license_info":{ + "exceptions_contact":"@gmail.com <- volodinev", + "history":"2019-06-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"INM-CM5-0", + "source":"INM-CM5-0 (2016): \naerosol: INM-AER1\natmos: INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)\natmosChem: none\nland: INM-LND1\nlandIce: none\nocean: INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)\nocnBgchem: none\nseaIce: INM-ICE1" + }, + "INM-CM5-H":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "INM" + ], + "license_info":{ + "exceptions_contact":"@gmail.com <- volodinev", + "history":"2019-08-12: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"INM-CM5-H", + "source":"INM-CM5-H (2016): \naerosol: INM-AER1\natmos: INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)\natmosChem: none\nland: INM-LND1\nlandIce: none\nocean: INM-OM5-H (North Pole shifted to 60N, 90E. 0.167x0.125; 2160x1440 longitude/latitude; 40 levels; vertical sigma coordinate)\nocnBgchem: none\nseaIce: INM-ICE1" + }, + "IPSL-CM5A2-INCA":{ + "activity_participation":[ + "AerChemMIP", + "LUMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2020-07-29: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM5A2-INCA", + "source":"IPSL-CM5A2-INCA (2019): \naerosol: INCA v6 NMHC-AER-S\natmos: LMDZ (APv5; 96 x 96 longitude/latitude; 39 levels; top level 80000 m)\natmosChem: INCA v6 NMHC-AER-S\nland: ORCHIDEE (IPSLCM5A2.1, Water/Carbon/Energy mode)\nlandIce: none\nocean: NEMO-OPA (v3.6, ORCA2 tripolar primarily 2deg; 182 x 149 longitude/latitude; 31 levels; top grid cell 0-10 m)\nocnBgchem: NEMO-PISCES\nseaIce: NEMO-LIM2" + }, + "IPSL-CM6A-ATM-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2019-01-22: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-ATM-HR", + "source":"IPSL-CM6A-ATM-HR (2018): \naerosol: none\natmos: LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 80000 m)\natmosChem: none\nland: ORCHIDEE (v2.0, Water/Carbon/Energy mode)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "IPSL-CM6A-ATM-ICO-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-21: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-ATM-ICO-HR", + "source":"IPSL-CM6A-ATM-ICO-HR (2021): \naerosol: none\natmos: DYNAMICO-LMDZ (NPv6; 256000-point icosahedral-hexagonal; 79 levels; top level 80000 m)\natmosChem: none\nland: ORCHIDEE (v2.2, Water/Carbon/Energy mode)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "IPSL-CM6A-ATM-ICO-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-21: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-ATM-ICO-LR", + "source":"IPSL-CM6A-ATM-ICO-LR (2021): \naerosol: none\natmos: DYNAMICO-LMDZ (NPv6; 16000-point icosahedral-hexagonal; 79 levels; top level 80000 m)\natmosChem: none\nland: ORCHIDEE (v2.2, Water/Carbon/Energy mode)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "IPSL-CM6A-ATM-ICO-MR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-20: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-ATM-ICO-MR", + "source":"IPSL-CM6A-ATM-ICO-MR (2021): \naerosol: none\natmos: DYNAMICO-LMDZ (NPv6; 64000-point icosahedral-hexagonal; 79 levels; top level 80000 m)\natmosChem: none\nland: ORCHIDEE (v2.2, Water/Carbon/Energy mode)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "IPSL-CM6A-ATM-ICO-VHR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2022-07-21: initially published under CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-ATM-ICO-VHR", + "source":"IPSL-CM6A-ATM-ICO-VHR (2021): \naerosol: none\natmos: DYNAMICO-LMDZ (NPv6; 1024000-point icosahedral-hexagonal; 79 levels; top level 80000 m)\natmosChem: none\nland: ORCHIDEE (v2.2, Water/Carbon/Energy mode)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "IPSL-CM6A-ATM-LR-REPROBUS":{ + "activity_participation":[ + "AerChemMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-ATM-LR-REPROBUS", + "source":"IPSL-CM6A-ATM-LR-REPROBUS (2021): \naerosol: LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)\natmos: LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)\natmosChem: REPROBUS v6 (same grid as atmos)\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "IPSL-CM6A-LR":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2018-03-14: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-LR", + "source":"IPSL-CM6A-LR (2017): \naerosol: none\natmos: LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)\natmosChem: none\nland: ORCHIDEE (v2.0, Water/Carbon/Energy mode)\nlandIce: none\nocean: NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: NEMO-PISCES\nseaIce: NEMO-LIM3" + }, + "IPSL-CM6A-LR-INCA":{ + "activity_participation":[ + "AerChemMIP", + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"2020-07-17: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-LR-INCA", + "source":"IPSL-CM6A-LR-INCA (2019): \naerosol: INCA v6 AER\natmos: LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)\natmosChem: none\nland: ORCHIDEE (v2.0, Water/Carbon/Energy mode)\nlandIce: none\nocean: NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: NEMO-PISCES\nseaIce: NEMO-LIM3" + }, + "IPSL-CM6A-MR025":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-MR025", + "source":"IPSL-CM6A-MR025 (2021): \naerosol: none\natmos: LMDZ (NPv6; 256 x 256 longitude/latitude; 79 levels; top level 80000 m)\natmosChem: none\nland: ORCHIDEE (v2.2, Water/Carbon/Energy mode; same grid as atmos)\nlandIce: none\nocean: NEMO-OPA (eORCA025, tripolar primarily 0.25deg; 1442 x 1207 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: none\nseaIce: NEMO-LIM3 (same grid as ocean)" + }, + "IPSL-CM6A-MR1":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "IPSL" + ], + "license_info":{ + "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", + "history":"", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"IPSL-CM6A-MR1", + "source":"IPSL-CM6A-MR1 (2021): \naerosol: none\natmos: LMDZ (NPv6; 256 x 256 longitude/latitude; 79 levels; top level 80000 m)\natmosChem: none\nland: ORCHIDEE (v2.2, Water/Carbon/Energy mode; same grid as atmos)\nlandIce: none\nocean: NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)\nocnBgchem: NEMO-PISCES (same grid as ocean)\nseaIce: NEMO-LIM3 (same grid as ocean)" + }, + "KACE-1-0-G":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NIMS-KMA" + ], + "license_info":{ + "exceptions_contact":"@korea.kr <- sunghm122", + "history":"2019-08-13: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"KACE-1-0-G", + "source":"KACE1.0-G (2018): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-HadGEM3-GL7.1\nlandIce: none\nocean: MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)" + }, + "KIOST-ESM":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "DynVarMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "KIOST" + ], + "license_info":{ + "exceptions_contact":"@pknu.ac.kr <- yhokim", + "history":"2019-11-04: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"KIOST-ESM", + "source":"KIOST-ESM (2018): \naerosol: none\natmos: GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)\natmosChem: Simple carbon aerosol model (emission type)\nland: NCAR-CLM4\nlandIce: NCAR-CLM4\nocean: GFDL-MOM5.0 (tripolar - nominal 1.0 deg; 360 x 200 longitude/latitude; 52 levels; top grid cell 0-2 m; NK mixed layer scheme)\nocnBgchem: TOPAZ2\nseaIce: GFDL-SIS" + }, + "LBLRTM-12-8":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AER" + ], + "license_info":{ + "exceptions_contact":"@aer.com <- aer_lblrtm", + "history":"2019-05-14: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"LBLRTM-12-8", + "source":"LBLRTM 12.8 (2017): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "MCM-UA-1-0":{ + "activity_participation":[ + "CMIP", + "FAFMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "UA" + ], + "license_info":{ + "exceptions_contact":"@email.arizona.edu <- GEOS-CMIP", + "history":"2019-07-31: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MCM-UA-1-0", + "source":"MCM-UA-1-0 (1991): \naerosol: Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)\natmos: R30L14 (3.75 X 2.5 degree (long-lat) configuration; 96 x 80 longitude/latitude; 14 levels; top level 0.015 sigma, 15 mb)\natmosChem: none\nland: Standard Manabe bucket hydrology scheme (Manabe 1969, doi: 10.1175/1520-0493(1969)097<0739:CATOC>2.3.CO;2)\nlandIce: Specified location - invariant in time, has high albedo and latent heat capacity\nocean: MOM1.0 (MOM1, 1.875 X 2.5 deg; 192 x 80 longitude/latitude; 18 levels; top grid cell 0-40 m)\nocnBgchem: none\nseaIce: Thermodynamic ice model (free drift dynamics)" + }, + "MIROC-ES2H":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CMIP", + "DynVarMIP", + "GeoMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2021-01-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MIROC-ES2H", + "source":"MIROC-ES2H (2018): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)\natmosChem: CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)\nland: MATSIRO6.0+VISIT-e ver.1.0\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles\nseaIce: COCO4.9" + }, + "MIROC-ES2H-NB":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2020-04-28: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MIROC-ES2H-NB", + "source":"MIROC-ES2H-NB (2019): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)\natmosChem: CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)\nland: MATSIRO6\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: none\nseaIce: COCO4.9" + }, + "MIROC-ES2L":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "GeoMIP", + "LUMIP", + "OMIP", + "PMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-08-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MIROC-ES2L", + "source":"MIROC-ES2L (2018): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)\natmosChem: none\nland: MATSIRO6.0+VISIT-e ver.1.0\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles\nseaIce: COCO4.9" + }, + "MIROC6":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "HighResMIP", + "LS3MIP", + "OMIP", + "PAMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2018-12-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MIROC6", + "source":"MIROC6 (2017): \naerosol: SPRINTARS6.0\natmos: CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)\natmosChem: none\nland: MATSIRO6.0\nlandIce: none\nocean: COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)\nocnBgchem: none\nseaIce: COCO4.9" + }, + "MPI-ESM-1-2-HAM":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "HAMMOZ-Consortium" + ], + "license_info":{ + "exceptions_contact":"@env.ethz.ch <- david.neubauer", + "history":"2019-06-27: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MPI-ESM-1-2-HAM", + "source":"MPI-ESM1.2-HAM (2017): \naerosol: HAM2.3\natmos: ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: sulfur chemistry (unnamed)\nland: JSBACH 3.20\nlandIce: none\nocean: MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC6\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MPI-ESM1-2-HR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GeoMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MPI-M", + "DWD", + "DKRZ" + ], + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MPI-ESM1-2-HR", + "source":"MPI-ESM1.2-HR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)\natmosChem: none\nland: JSBACH3.20\nlandIce: none/prescribed\nocean: MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC6\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MPI-ESM1-2-LR":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MPI-M", + "AWI", + "DKRZ", + "DWD" + ], + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2019-07-10: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MPI-ESM1-2-LR", + "source":"MPI-ESM1.2-LR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)\natmosChem: none\nland: JSBACH3.20\nlandIce: none/prescribed\nocean: MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC6\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MPI-ESM1-2-XR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MPI-M" + ], + "license_info":{ + "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", + "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MPI-ESM1-2-XR", + "source":"MPI-ESM1.2-XR (2017): \naerosol: none, prescribed MACv2-SP\natmos: ECHAM6.3 (spectral T255; 768 x 384 longitude/latitude; 95 levels; top level 0.01 hPa)\natmosChem: none\nland: JSBACH3.20\nlandIce: none/prescribed\nocean: MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)\nocnBgchem: HAMOCC6\nseaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)" + }, + "MRI-AGCM3-2-H":{ + "activity_participation":[ + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MRI" + ], + "license_info":{ + "exceptions_contact":"@mri-jma.go.jp <- rmizuta", + "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MRI-AGCM3-2-H", + "source":"MRI-AGCM3-2-H (2017): \naerosol: Prescribed from MRI-ESM2.0\natmos: MRI-AGCM3.2H (TL319; 640 x 320 longitude/latitude; 64 levels; top level 0.01 hPa)\natmosChem: none\nland: SIB0109\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "MRI-AGCM3-2-S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MRI" + ], + "license_info":{ + "exceptions_contact":"@mri-jma.go.jp <- rmizuta", + "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MRI-AGCM3-2-S", + "source":"MRI-AGCM3-2-S (2017): \naerosol: Prescribed from MRI-ESM2.0\natmos: MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)\natmosChem: none\nland: SIB0109\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "MRI-ESM2-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "LS3MIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MRI" + ], + "license_info":{ + "exceptions_contact":"@mri-jma.go.jp <- mdeushi", + "history":"2019-02-22: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"MRI-ESM2-0", + "source":"MRI-ESM2.0 (2017): \naerosol: MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)\natmos: MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)\natmosChem: MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)\nland: HAL 1.0\nlandIce: none\nocean: MRI.COM4.4 (tripolar primarily 0.5 deg latitude/1 deg longitude with meridional refinement down to 0.3 deg within 10 degrees north and south of the equator; 360 x 364 longitude/latitude; 61 levels; top grid cell 0-2 m)\nocnBgchem: MRI.COM4.4\nseaIce: MRI.COM4.4" + }, + "NESM3":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "GeoMIP", + "PMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NUIST" + ], + "license_info":{ + "exceptions_contact":"@nuist.edu.cn <- esmc", + "history":"2019-06-25: initially published under CC BY-SA 4.0; 2022-10-05: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"NESM3", + "source":"NESM v3 (2016): \naerosol: none\natmos: ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)\natmosChem: none\nland: JSBACH v3.1\nlandIce: none\nocean: NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)\nocnBgchem: none\nseaIce: CICE4.1" + }, + "NICAM16-7S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-03-18: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"NICAM16-7S", + "source":"NICAM16-7S (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (56km icosahedral grid; 163,842 grid cells (=10*4^7+2); 38 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NICAM16-8S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"NICAM16-8S", + "source":"NICAM16-8S (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (28km icosahedral grid; 655,362 grid cells (=10*4^8+2); 38 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NICAM16-9S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MIROC" + ], + "license_info":{ + "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", + "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"NICAM16-9S", + "source":"NICAM16-9S (2017): \naerosol: Prescribed MACv2-SP\natmos: NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 38 levels; top level 40 km)\natmosChem: none\nland: MATSIRO6 (w/o MOSAIC)\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: Fixed" + }, + "NorCPM1":{ + "activity_participation":[ + "CMIP", + "DCPP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCC" + ], + "license_info":{ + "exceptions_contact":"@uib.no <- norcpm", + "history":"2019-09-14: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"NorCPM1", + "source":"NorCPM1 (2019): \naerosol: OsloAero4.1 (same grid as atmos)\natmos: CAM-OSLO4.1 (2 degree resolution; 144 x 96 longitude/latitude; 26 levels; top level ~2 hPa)\natmosChem: OsloChemSimp4.1 (same grid as atmos)\nland: CLM4 (same grid as atmos)\nlandIce: none\nocean: MICOM1.1 (1 degree resolution; 320 x 384 longitude/latitude; 53 levels; top grid cell 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC5.1 (same grid as ocean)\nseaIce: CICE4 (same grid as ocean)" + }, + "NorESM1-F":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCC" + ], + "license_info":{ + "exceptions_contact":"@met.no <- noresm-ncc", + "history":"2019-09-20: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"NorESM1-F", + "source":"NorESM1-F (2018): \naerosol: none\natmos: CAM4 (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)\natmosChem: none\nland: CLM4\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC5.1\nseaIce: CICE4" + }, + "NorESM2-LM":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCC" + ], + "license_info":{ + "exceptions_contact":"@met.no <- noresm-ncc", + "history":"2019-08-15: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"NorESM2-LM", + "source":"NorESM2-LM (2017): \naerosol: OsloAero\natmos: CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "NorESM2-MM":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NCC" + ], + "license_info":{ + "exceptions_contact":"@met.no <- noresm-ncc", + "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"NorESM2-MM", + "source":"NorESM2-MM (2017): \naerosol: OsloAero\natmos: CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)\natmosChem: OsloChemSimp\nland: CLM\nlandIce: CISM\nocean: MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])\nocnBgchem: HAMOCC\nseaIce: CICE" + }, + "PCMDI-test-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "PCMDI" + ], + "source_id":"PCMDI-test-1-0", + "source":"PCMDI-test 1.0 (1989): \naerosol: none\natmos: Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)\natmosChem: none\nland: Earth1.0\nlandIce: none\nocean: BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: Declining1.0-warming (360 x 180 longitude/latitude)" + }, + "RRTMG-LW-4-91":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AER" + ], + "license_info":{ + "exceptions_contact":"@aer.com <- aer_rrtmg", + "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"RRTMG-LW-4-91", + "source":"RRTMG-LW 4.91 (2017): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "RRTMG-SW-4-02":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AER" + ], + "license_info":{ + "exceptions_contact":"@aer.com <- aer_rrtmg", + "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"RRTMG-SW-4-02", + "source":"RRTMG-SW 4.02 (2017): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "RTE-RRTMGP-181204":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "RTE-RRTMGP-Consortium" + ], + "license_info":{ + "exceptions_contact":"@aer.com <- aer_rrtmgp", + "history":"2019-10-07: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"RTE-RRTMGP-181204", + "source":"RTE+RRTMGP (2018-12-04 full-resolution) (2019): \naerosol: none\natmos: none\natmosChem: none\nland: none\nlandIce: none\nocean: none\nocnBgchem: none\nseaIce: none" + }, + "SAM0-UNICON":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "SNU" + ], + "license_info":{ + "exceptions_contact":"@snu.ac.kr <- sungsup", + "history":"2019-03-23: initially published under CC BY-SA 4.0; 2022-10-12: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"SAM0-UNICON", + "source":"SAM0-UNICON (2017): \naerosol: MAM3\natmos: CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)\natmosChem: none\nland: CLM4.0\nlandIce: none\nocean: POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4.0" + }, + "TaiESM1":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "GMMIP", + "LUMIP", + "PAMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "AS-RCEC" + ], + "license_info":{ + "exceptions_contact":"@gate.sinica.edu.tw <- leelupin", + "history":"2019-12-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"TaiESM1", + "source":"TaiESM 1.0 (2018): \naerosol: SNAP (same grid as atmos)\natmos: TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)\natmosChem: SNAP (same grid as atmos)\nland: CLM4.0 (same grid as atmos)\nlandIce: none\nocean: POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4" + }, + "TaiESM1-TIMCOM":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NTU" + ], + "license_info":{ + "exceptions_contact":"@ntu.edu.tw <- tsengyh", + "history":"2020-09-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"TaiESM1-TIMCOM", + "source":"TaiESM1-TIMCOM (2020): \naerosol: SNAP (same grid as atmos)\natmos: TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)\natmosChem: SNAP (same grid as atmos)\nland: CLM4.0 (same grid as atmos)\nlandIce: none\nocean: TIMCOM (TIMCOMv1.7, primarily 1deg; 360 x 288 longitude/latitude; 45 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4" + }, + "TaiESM1-TIMCOM2":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "NTU" + ], + "license_info":{ + "exceptions_contact":"@ntu.edu.tw <- tsengyh", + "history":"2021-12-13: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"TaiESM1-TIMCOM2", + "source":"TaiESM1-TIMCOM2 (2021): \naerosol: SNAP (same grid as atmos)\natmos: TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)\natmosChem: SNAP (same grid as atmos)\nland: CLM4.0 (same grid as atmos)\nlandIce: none\nocean: TIMCOM (TIMCOMv2.2, primarily 1deg; 320 x 288 longitude/latitude; 55 levels; top grid cell 0-10 m)\nocnBgchem: none\nseaIce: CICE4 (same grid as ocean)" + }, + "UKESM1-0-LL":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "GeoMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC", + "NIMS-KMA", + "NIWA" + ], + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", + "history":"2019-04-04: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"UKESM1-0-LL", + "source":"UKESM1.0-LL (2018): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: UKCA-StratTrop\nland: JULES-ES-1.0\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: MEDUSA2\nseaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)" + }, + "UKESM1-1-LL":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC", + "NIMS-KMA", + "NIWA" + ], + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", + "history":"2022-05-04: initially published under CC BY-SA 4.0; 2022-05-04: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"UKESM1-1-LL", + "source":"UKESM1.1-LL (2021): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: UKCA-StratTrop\nland: JULES-ES-1.0\nlandIce: none\nocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: MEDUSA2\nseaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)" + }, + "UKESM1-ice-LL":{ + "activity_participation":[ + "ISMIP6" + ], + "cohort":[ + "Published" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "license_info":{ + "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", + "history":"2022-02-11: initially published under CC BY-SA 4.0; 2022-02-11: relaxed to CC BY 4.0", + "id":"CC BY 4.0", + "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", + "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", + "url":"https://creativecommons.org/licenses/by/4.0/" + }, + "source_id":"UKESM1-ice-LL", + "source":"UKESM1.ice-LL (2019): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)\natmosChem: none\nland: JULES-ISMIP6-1.0\nlandIce: BISICLES-UKESM-ISMIP6-1.0\nocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)\nocnBgchem: none\nseaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)" + } + }, + "source_type":{ + "AER":"aerosol treatment in an atmospheric model where concentrations are calculated based on emissions, transformation, and removal processes (rather than being prescribed or omitted entirely)", + "AGCM":"atmospheric general circulation model run with prescribed ocean surface conditions and usually a model of the land surface", + "AOGCM":"coupled atmosphere-ocean global climate model, additionally including explicit representation of at least the land and sea ice", + "BGC":"biogeochemistry model component that at the very least accounts for carbon reservoirs and fluxes in the atmosphere, terrestrial biosphere, and ocean", + "CHEM":"chemistry treatment in an atmospheric model that calculates atmospheric oxidant concentrations (including at least ozone), rather than prescribing them", + "ISM":"ice-sheet model that includes ice-flow", + "LAND":"land model run uncoupled from the atmosphere", + "OGCM":"ocean general circulation model run uncoupled from an AGCM but, usually including a sea-ice model", + "RAD":"radiation component of an atmospheric model run 'offline'", + "SLAB":"slab-ocean used with an AGCM in representing the atmosphere-ocean coupled system" + }, + "frequency":{ + "1hr":"sampled hourly", + "1hrCM":"monthly-mean diurnal cycle resolving each day into 1-hour means", + "1hrPt":"sampled hourly, at specified time point within an hour", + "3hr":"3 hourly mean samples", + "3hrPt":"sampled 3 hourly, at specified time point within the time period", + "6hr":"6 hourly mean samples", + "6hrPt":"sampled 6 hourly, at specified time point within the time period", + "day":"daily mean samples", + "dec":"decadal mean samples", + "fx":"fixed (time invariant) field", + "mon":"monthly mean samples", + "monC":"monthly climatology computed from monthly mean samples", + "monPt":"sampled monthly, at specified time point within the time period", + "subhrPt":"sampled sub-hourly, at specified time point within an hour", + "yr":"annual mean samples", + "yrPt":"sampled yearly, at specified time point within the time period" + }, + "grid_label":{ + "gm":"global mean data", + "gn":"data reported on a model's native grid", + "gna":"data reported on a native grid in the region of Antarctica", + "gng":"data reported on a native grid in the region of Greenland", + "gnz":"zonal mean data reported on a model's native latitude grid", + "gr":"regridded data reported on the data provider's preferred target grid", + "gr1":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr1a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr1g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr1z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr2":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr2a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr2g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr2z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr3":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr3a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr3g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr3z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr4":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr4a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr4g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr4z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr5":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr5a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr5g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr5z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr6":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr6a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr6g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr6z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr7":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr7a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr7g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr7z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr8":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr8a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr8g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr8z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gr9":"regridded data reported on a grid other than the native grid and other than the preferred target grid", + "gr9a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", + "gr9g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", + "gr9z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", + "gra":"regridded data in the region of Antarctica reported on the data provider's preferred target grid", + "grg":"regridded data in the region of Greenland reported on the data provider's preferred target grid", + "grz":"regridded zonal mean data reported on the data provider's preferred latitude target grid" + }, + "nominal_resolution":[ + "0.5 km", + "1 km", + "10 km", + "100 km", + "1000 km", + "10000 km", + "1x1 degree", + "2.5 km", + "25 km", + "250 km", + "2500 km", + "5 km", + "50 km", + "500 km", + "5000 km" + ], + "realm":{ + "aerosol":"Aerosol", + "atmos":"Atmosphere", + "atmosChem":"Atmospheric Chemistry", + "land":"Land Surface", + "landIce":"Land Ice", + "ocean":"Ocean", + "ocnBgchem":"Ocean Biogeochemistry", + "seaIce":"Sea Ice" + }, + "table_id":[ + "3hr", + "6hrLev", + "6hrPlev", + "6hrPlevPt", + "AERday", + "AERhr", + "AERmon", + "AERmonZ", + "Amon", + "CF3hr", + "CFday", + "CFmon", + "CFsubhr", + "E1hr", + "E1hrClimMon", + "E3hr", + "E3hrPt", + "E6hrZ", + "Eday", + "EdayZ", + "Efx", + "Emon", + "EmonZ", + "Esubhr", + "Eyr", + "IfxAnt", + "IfxGre", + "ImonAnt", + "ImonGre", + "IyrAnt", + "IyrGre", + "LImon", + "Lmon", + "Oclim", + "Oday", + "Odec", + "Ofx", + "Omon", + "Oyr", + "SIday", + "SImon", + "day", + "fx" + ], + "DRS":{ + "directory_path_example":"CMIP6/CMIP/MOHC/HadGEM3-GC31-MM/historical/r1i1p1f3/Amon/tas/gn/v20191207/", + "directory_path_sub_experiment_example":"CMIP6/DCPP/MOHC/HadGEM3-GC31-MM/dcppA-hindcast/s1960-r1i1p1f2/Amon/tas/gn/v20200417/", + "directory_path_template":"/////////", + "filename_example":"tas_Amon_HadGEM3-GC31-MM_historical_r1i1p1f3_gn_185001-186912.nc", + "filename_sub_experiment_example":"tas_Amon_HadGEM3-GC31-MM_dcppA-hindcast_s1960-r1i1p1f2_gn_196011-196012.nc", + "filename_template":"_____[_].nc" + }, + "mip_era":[ + "CMIP6" + ], + "sub_experiment_id":{ + "none":"none", + "s1910":"initialized near end of year 1910", + "s1920":"initialized near end of year 1920", + "s1950":"initialized near end of year 1950", + "s1960":"initialized near end of year 1960", + "s1961":"initialized near end of year 1961", + "s1962":"initialized near end of year 1962", + "s1963":"initialized near end of year 1963", + "s1964":"initialized near end of year 1964", + "s1965":"initialized near end of year 1965", + "s1966":"initialized near end of year 1966", + "s1967":"initialized near end of year 1967", + "s1968":"initialized near end of year 1968", + "s1969":"initialized near end of year 1969", + "s1970":"initialized near end of year 1970", + "s1971":"initialized near end of year 1971", + "s1972":"initialized near end of year 1972", + "s1973":"initialized near end of year 1973", + "s1974":"initialized near end of year 1974", + "s1975":"initialized near end of year 1975", + "s1976":"initialized near end of year 1976", + "s1977":"initialized near end of year 1977", + "s1978":"initialized near end of year 1978", + "s1979":"initialized near end of year 1979", + "s1980":"initialized near end of year 1980", + "s1981":"initialized near end of year 1981", + "s1982":"initialized near end of year 1982", + "s1983":"initialized near end of year 1983", + "s1984":"initialized near end of year 1984", + "s1985":"initialized near end of year 1985", + "s1986":"initialized near end of year 1986", + "s1987":"initialized near end of year 1987", + "s1988":"initialized near end of year 1988", + "s1989":"initialized near end of year 1989", + "s1990":"initialized near end of year 1990", + "s1991":"initialized near end of year 1991", + "s1992":"initialized near end of year 1992", + "s1993":"initialized near end of year 1993", + "s1994":"initialized near end of year 1994", + "s1995":"initialized near end of year 1995", + "s1996":"initialized near end of year 1996", + "s1997":"initialized near end of year 1997", + "s1998":"initialized near end of year 1998", + "s1999":"initialized near end of year 1999", + "s2000":"initialized near end of year 2000", + "s2001":"initialized near end of year 2001", + "s2002":"initialized near end of year 2002", + "s2003":"initialized near end of year 2003", + "s2004":"initialized near end of year 2004", + "s2005":"initialized near end of year 2005", + "s2006":"initialized near end of year 2006", + "s2007":"initialized near end of year 2007", + "s2008":"initialized near end of year 2008", + "s2009":"initialized near end of year 2009", + "s2010":"initialized near end of year 2010", + "s2011":"initialized near end of year 2011", + "s2012":"initialized near end of year 2012", + "s2013":"initialized near end of year 2013", + "s2014":"initialized near end of year 2014", + "s2015":"initialized near end of year 2015", + "s2016":"initialized near end of year 2016", + "s2017":"initialized near end of year 2017", + "s2018":"initialized near end of year 2018", + "s2019":"initialized near end of year 2019", + "s2020":"initialized near end of year 2020", + "s2021":"initialized near end of year 2021", + "s2022":"initialized near end of year 2022", + "s2023":"initialized near end of year 2023", + "s2024":"initialized near end of year 2024", + "s2025":"initialized near end of year 2025", + "s2026":"initialized near end of year 2026", + "s2027":"initialized near end of year 2027", + "s2028":"initialized near end of year 2028", + "s2029":"initialized near end of year 2029" + }, + "experiment_id":{ + "1pctCO2":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"1 percent per year increase in CO2", + "experiment_id":"1pctCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-4xext":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"extension from year 140 of 1pctCO2 with 4xCO2", + "experiment_id":"1pctCO2-4xext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "1pctCO2" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment", + "experiment_id":"1pctCO2-bgc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-cdr":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"1 percent per year decrease in CO2 from 4xCO2", + "experiment_id":"1pctCO2-cdr", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2-rad":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"radiatively-coupled version of 1 percent per year increasing CO2 experiment", + "experiment_id":"1pctCO2-rad", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2Ndep":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"1 percent per year increasing CO2 experiment with increasing N-deposition", + "experiment_id":"1pctCO2Ndep", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2Ndep-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment with increasing N-deposition", + "experiment_id":"1pctCO2Ndep-bgc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "1pctCO2to4x-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"simulation with interactive ice sheet forced by 1 percent per year increase in CO2 to 4xCO2 (subsequently held fixed)", + "experiment_id":"1pctCO2to4x-withism", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "piControl-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G1":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt quadrupling of CO2 plus reduction in total solar irradiance", + "experiment_id":"G1", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6SST1":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs, forcings, and other prescribed conditions from year 2020 of SSP5-8.5", + "experiment_id":"G6SST1", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6SST2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6solar", + "experiment_id":"G6SST2-solar", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G6solar" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6SST2-sulfur":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6sulfur", + "experiment_id":"G6SST2-sulfur", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G6sulfur" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"total solar irradiance reduction to reduce net forcing from SSP585 to SSP245", + "experiment_id":"G6solar", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G6sulfur":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"stratospheric sulfate aerosol injection to reduce net forcing from SSP585 to SSP245", + "experiment_id":"G6sulfur", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G7SST1-cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2020 of SSP5-8.5 and cirrus thinning", + "experiment_id":"G7SST1-cirrus", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G7SST2-cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"SSTs from year 2100 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G7cirrus", + "experiment_id":"G7SST2-cirrus", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G7cirrus" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "G7cirrus":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"increase cirrus ice crystal fall speed to reduce net forcing in SSP585 by 1 W m-2", + "experiment_id":"G7cirrus", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "a4SST":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST but with SSTs from abrupt-4xCO2", + "experiment_id":"a4SST", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "a4SSTice":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2", + "experiment_id":"a4SSTice", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "a4SSTice-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2, and 4xCO2 seen by radiation and vegetation", + "experiment_id":"a4SSTice-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-0p5xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt halving of CO2", + "experiment_id":"abrupt-0p5xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-2xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt doubling of CO2", + "experiment_id":"abrupt-2xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-4xCO2":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt quadrupling of CO2", + "experiment_id":"abrupt-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-solm4p":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt 4% decrease in solar constant", + "experiment_id":"abrupt-solm4p", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "abrupt-solp4p":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"abrupt 4% increase in solar constant", + "experiment_id":"abrupt-solp4p", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP", + "experiment_id":"amip", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP SSTs with 4xCO2", + "experiment_id":"amip-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-TIP":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"same as \"amip\" run, but surface elevations of the Tibetan-Iranian Plateau and Himalayas reduced to 500m", + "experiment_id":"amip-TIP", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-TIP-nosh":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"same as \"amip\" run, but sensible heat not allowed for elevations of the Tibetan-Iranian Plateau and Himalayas above 500m", + "experiment_id":"amip-TIP-nosh", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-a4SST-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as AMIP but with warming pattern from abrupt-4xCO2 added to SSTs and 4xCO2 seen by radiation and vegetation", + "experiment_id":"amip-a4SST-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-climSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP with climatological SIC", + "experiment_id":"amip-climSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-climSST":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP with climatological SST", + "experiment_id":"amip-climSST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-future4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP with patterned 4K SST increase", + "experiment_id":"amip-future4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-hist":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"AMIP-style simulation covering the period 1870-2014", + "experiment_id":"amip-hist", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-hld":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"same as \"amip\" run, but surface elevations of the East African Highlands in Africa, Sierra Madre in N. America and Andes in S. America reduced to 500m", + "experiment_id":"amip-hld", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lfmip-pObs":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land (from pseudo-observations) and AMIP SSTs", + "experiment_id":"amip-lfmip-pObs", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lfmip-pdLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed modern land surface climatology from historical, prescribed SST and sea-ice from historical plus scenario runs", + "experiment_id":"amip-lfmip-pdLC", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lfmip-rmLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land surface climatology from historical plus scenario 30yr running mean, prescribed SST and sea-ice from historical plus scenario runs", + "experiment_id":"amip-lfmip-rmLC", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP experiment with longwave cloud-radiative effects off", + "experiment_id":"amip-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-m4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP with uniform 4K SST decrease", + "experiment_id":"amip-m4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-p4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP with uniform 4K SST increase", + "experiment_id":"amip-p4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-p4K-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP experiment with uniform 4K SST increase and with longwave cloud radiative effects off", + "experiment_id":"amip-p4K-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "amip-piForcing":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"AMIP SSTs with pre-industrial anthropogenic and natural forcing", + "experiment_id":"amip-piForcing", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet with control SST and 4xCO2", + "experiment_id":"aqua-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-control":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet control", + "experiment_id":"aqua-control", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-control-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet control with longwave cloud radiative effects off", + "experiment_id":"aqua-control-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-p4K":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet with uniform 4K SST increase", + "experiment_id":"aqua-p4K", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "aqua-p4K-lwoff":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"aquaplanet with uniform 4K SST increase and with longwave cloud radiative effects off", + "experiment_id":"aqua-p4K-lwoff", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "control-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled control with fixed 1950's forcing (HighResMIP equivalent of pre-industrial control)", + "experiment_id":"control-1950", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "spinup-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "control-slab":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control with slab ocean", + "experiment_id":"control-slab", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "SLAB" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppA-assim":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Assimilation run paralleling the historical simulation, which may be used to generate hindcast initial conditions", + "experiment_id":"dcppA-assim", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppA-hindcast":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast initialized based on observations and using historical forcing", + "experiment_id":"dcppA-hindcast", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016", + "s2017", + "s2018", + "s2019" + ] + }, + "dcppA-hindcast-niff":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast initialized based on observations but without using knowledge of subsequent historical forcing", + "experiment_id":"dcppA-hindcast-niff", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016", + "s2017", + "s2018", + "s2019" + ] + }, + "dcppA-historical-niff":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast initialized from historical climate simulation but without using knowledge of subsequent historical forcing", + "experiment_id":"dcppA-historical-niff", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1960", + "s1961", + "s1962", + "s1963", + "s1964", + "s1965", + "s1966", + "s1967", + "s1968", + "s1969", + "s1970", + "s1971", + "s1972", + "s1973", + "s1974", + "s1975", + "s1976", + "s1977", + "s1978", + "s1979", + "s1980", + "s1981", + "s1982", + "s1983", + "s1984", + "s1985", + "s1986", + "s1987", + "s1988", + "s1989", + "s1990", + "s1991", + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999", + "s2000", + "s2001", + "s2002", + "s2003", + "s2004", + "s2005", + "s2006", + "s2007", + "s2008", + "s2009", + "s2010", + "s2011", + "s2012", + "s2013", + "s2014", + "s2015", + "s2016", + "s2017", + "s2018", + "s2019" + ] + }, + "dcppB-forecast":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"forecast initialized from observations with forcing from ssp245", + "experiment_id":"dcppB-forecast", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2017", + "s2018", + "s2019", + "s2020", + "s2021", + "s2022", + "s2023", + "s2024", + "s2025", + "s2026", + "s2027", + "s2028", + "s2029" + ] + }, + "dcppC-amv-ExTrop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of negative extratropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-ExTrop-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-ExTrop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of positive extratropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-ExTrop-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-Trop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of negative tropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-Trop-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-Trop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized positive tropical AMV anomaly pattern", + "experiment_id":"dcppC-amv-Trop-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of negative AMV anomaly pattern", + "experiment_id":"dcppC-amv-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-amv-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized climate impact of positive AMV anomaly pattern", + "experiment_id":"dcppC-amv-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-atl-control":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized Atlantic control", + "experiment_id":"dcppC-atl-control", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-atl-pacemaker":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pacemaker Atlantic experiment", + "experiment_id":"dcppC-atl-pacemaker", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1910", + "s1920", + "s1950" + ] + }, + "dcppC-atl-spg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"predictability of 1990s warming of Atlantic sub-polar gyre", + "experiment_id":"dcppC-atl-spg", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1992", + "s1993", + "s1994", + "s1995", + "s1996", + "s1997", + "s1998", + "s1999" + ] + }, + "dcppC-forecast-addAgung":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2015 forecast with added Agung forcing", + "experiment_id":"dcppC-forecast-addAgung", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2014" + ] + }, + "dcppC-forecast-addElChichon":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2015 forecast with added El Chichon forcing", + "experiment_id":"dcppC-forecast-addElChichon", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2014" + ] + }, + "dcppC-forecast-addPinatubo":{ + "activity_id":[ + "DCPP VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2015 forecast with added Pinatubo forcing", + "experiment_id":"dcppC-forecast-addPinatubo", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s2014" + ] + }, + "dcppC-hindcast-noAgung":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noAgung", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1962" + ] + }, + "dcppC-hindcast-noElChichon":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noElChichon", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1981" + ] + }, + "dcppC-hindcast-noPinatubo":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", + "experiment_id":"dcppC-hindcast-noPinatubo", + "parent_activity_id":[ + "no parent", + "DCPP" + ], + "parent_experiment_id":[ + "no parent", + "dcppA-assim" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1990" + ] + }, + "dcppC-ipv-NexTrop-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized negative northern extratropical IPV anomaly pattern", + "experiment_id":"dcppC-ipv-NexTrop-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-ipv-NexTrop-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized positive northern extratropical IPV anomaly pattern", + "experiment_id":"dcppC-ipv-NexTrop-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-ipv-neg":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized negative IPV anomaly pattern", + "experiment_id":"dcppC-ipv-neg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-ipv-pos":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized positive IPV anomaly pattern", + "experiment_id":"dcppC-ipv-pos", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-pac-control":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized Pacific control", + "experiment_id":"dcppC-pac-control", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "dcppC-pac-pacemaker":{ + "activity_id":[ + "DCPP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pacemaker Pacific experiment", + "experiment_id":"dcppC-pac-pacemaker", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "s1910", + "s1920", + "s1950" + ] + }, + "deforest-globe":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized transient global deforestation", + "experiment_id":"deforest-globe", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-1pct-brch-1000PgC":{ + "activity_id":[ + "C4MIP CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"zero emissions simulation branched from 1% run after 1000 PgC cumulative emission", + "experiment_id":"esm-1pct-brch-1000PgC", + "parent_activity_id":[ + "CMIP", + "C4MIP" + ], + "parent_experiment_id":[ + "1pctCO2", + "esm-1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-1pct-brch-2000PgC":{ + "activity_id":[ + "C4MIP CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"zero emissions simulation branched from 1% run after 2000 PgC cumulative emission", + "experiment_id":"esm-1pct-brch-2000PgC", + "parent_activity_id":[ + "CMIP", + "C4MIP" + ], + "parent_experiment_id":[ + "1pctCO2", + "esm-1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-1pct-brch-750PgC":{ + "activity_id":[ + "C4MIP CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"zero emissions simulation branched from 1% run after 750 PgC cumulative emission", + "experiment_id":"esm-1pct-brch-750PgC", + "parent_activity_id":[ + "CMIP", + "C4MIP" + ], + "parent_experiment_id":[ + "1pctCO2", + "esm-1pctCO2" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-1pctCO2":{ + "activity_id":[ + "C4MIP CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emissions driven 1% run", + "experiment_id":"esm-1pctCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-bell-1000PgC":{ + "activity_id":[ + "C4MIP CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emissions driven 1000PgC bell-curve", + "experiment_id":"esm-bell-1000PgC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-bell-2000PgC":{ + "activity_id":[ + "C4MIP CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emissions driven 2000PgC bell-curve", + "experiment_id":"esm-bell-2000PgC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-bell-750PgC":{ + "activity_id":[ + "C4MIP CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emissions driven 750PgC bell-curve", + "experiment_id":"esm-bell-750PgC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-hist":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"all-forcing simulation of the recent past with atmospheric CO2 concentration calculated", + "experiment_id":"esm-hist", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-hist-ext":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"post-2014 all-forcing simulation with atmospheric CO2 concentration calculated", + "experiment_id":"esm-hist-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-past1000":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"last millennium experiment with interactive carbon cycle", + "experiment_id":"esm-past1000", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-pi-CO2pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pulse addition of 100 Gt carbon to pre-industrial atmosphere", + "experiment_id":"esm-pi-CO2pulse", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-pi-cdr-pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pulse removal of 100 Gt carbon from pre-industrial atmosphere", + "experiment_id":"esm-pi-cdr-pulse", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-piControl":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pre-industrial control simulation with CO2 concentration calculated", + "experiment_id":"esm-piControl", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-piControl-spinup" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-piControl-spinup":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"pre-industrial control simulation with CO2 concentration calculated (spin-up)", + "experiment_id":"esm-piControl-spinup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp534-over":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven SSP5-3.4-OS scenario", + "experiment_id":"esm-ssp534-over", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven RCP8.5 based on SSP5", + "experiment_id":"esm-ssp585", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ocn-alk":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven SSP5-8.5 scenario but with ocean alkalinization from year 2020 onward", + "experiment_id":"esm-ssp585-ocn-alk", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ocn-alk-stop":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven SSP5-8.5 scenario with alkalinization terminated in year 2070", + "experiment_id":"esm-ssp585-ocn-alk-stop", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-ssp585-ocn-alk" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ssp126Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emissions-driven SSP5-8.5 with SSP1-2.6 land use", + "experiment_id":"esm-ssp585-ssp126Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585-ssp126Lu-ext":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"extension of the LUMIP emissions-driven simulation following SSP5-8.5 with SSP1-2.6 land use", + "experiment_id":"esm-ssp585-ssp126Lu-ext", + "parent_activity_id":[ + "LUMIP" + ], + "parent_experiment_id":[ + "esm-ssp585-ssp126Lu" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-ssp585ext":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"emission-driven long-term extension of the SSP5-8.5 scenario", + "experiment_id":"esm-ssp585ext", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-CO2pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"instantaneous 100 Gt C addition to an industrial era atmosphere", + "experiment_id":"esm-yr2010CO2-CO2pulse", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-cdr-pulse":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"instantaneous 100 Gt C removal from industrial era atmosphere", + "experiment_id":"esm-yr2010CO2-cdr-pulse", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-control":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"historical emissions followed by fixed 2010 emissions (both model-diagnosed)", + "experiment_id":"esm-yr2010CO2-control", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "esm-yr2010CO2-noemit":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"branches from esm-yr2010CO2-control with zero emissions", + "experiment_id":"esm-yr2010CO2-noemit", + "parent_activity_id":[ + "CDRMIP" + ], + "parent_experiment_id":[ + "esm-yr2010CO2-control" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-all":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface fluxes of momentum, heat and water into ocean", + "experiment_id":"faf-all", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-antwater-stress":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface fluxes of momentum and freshwater into ocean, the latter around the coast of Antarctica only", + "experiment_id":"faf-antwater-stress", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-heat":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of heat into ocean", + "experiment_id":"faf-heat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-heat-NA0pct":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of heat into ocean", + "experiment_id":"faf-heat-NA0pct", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-heat-NA50pct":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of heat into ocean", + "experiment_id":"faf-heat-NA50pct", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-passiveheat":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus surface flux of passive heat tracer into ocean", + "experiment_id":"faf-passiveheat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-stress":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of momentum into ocean", + "experiment_id":"faf-stress", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "faf-water":{ + "activity_id":[ + "FAFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"control plus perturbative surface flux of water into ocean", + "experiment_id":"faf-water", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "futSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with future SST and present day SIC", + "experiment_id":"futSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "futureSST-4xCO2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"year 100 SSTs from abrupt-4xCO2 with quadrupled CO2 and solar reduction", + "experiment_id":"futureSST-4xCO2-solar", + "parent_activity_id":[ + "GeoMIP" + ], + "parent_experiment_id":[ + "G1" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highres-future":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled future 2015-2050 using a scenario as close to CMIP5 RCP8.5 as possible within CMIP6", + "experiment_id":"highres-future", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "hist-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-4xCO2":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"highresSST-present SST with 4xCO2 concentrations", + "experiment_id":"highresSST-4xCO2", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-LAI":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"common LAI dataset within the highresSST-present experiment", + "experiment_id":"highresSST-LAI", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-future":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"forced atmosphere experiment for 2015-2050 using SST/sea-ice derived from CMIP5 RCP8.5 simulations and a scenario as close to RCP8.5 as possible within CMIP6", + "experiment_id":"highresSST-future", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-p4K":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"uniform 4K warming of highresSST-present SST", + "experiment_id":"highresSST-p4K", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-present":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"forced atmosphere experiment for 1950-2014", + "experiment_id":"highresSST-present", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "highresSST-smoothed":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"smoothed SST version of highresSST-present", + "experiment_id":"highresSST-smoothed", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "highresSST-present" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled historical 1950-2014", + "experiment_id":"hist-1950", + "parent_activity_id":[ + "HighResMIP" + ], + "parent_experiment_id":[ + "spinup-1950" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-1950HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical forcing, but with1950s halocarbon concentrations; initialized in 1950", + "experiment_id":"hist-1950HC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-CO2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical CO2-only run", + "experiment_id":"hist-CO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical well-mixed GHG-only run", + "experiment_id":"hist-GHG", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-GHG-cmip5":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical well-mixed GHG-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", + "experiment_id":"hist-GHG-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical anthropogenic aerosols-only run", + "experiment_id":"hist-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-aer-cmip5":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical anthropogenic aerosols-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", + "experiment_id":"hist-aer-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-all-aer2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical ALL-forcing run with alternate estimates of aerosol forcing", + "experiment_id":"hist-all-aer2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-all-nat2":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical ALL-forcing run with alternate estimates of natural forcing", + "experiment_id":"hist-all-nat2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of the simulation of the recent past with CO2 concentration prescribed", + "experiment_id":"hist-bgc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-nat":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical natural-only run", + "experiment_id":"hist-nat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-nat-cmip5":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical natural-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", + "experiment_id":"hist-nat-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-noLu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical with no land-use change", + "experiment_id":"hist-noLu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-piAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical forcing, but with pre-industrial aerosol emissions", + "experiment_id":"hist-piAer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-piNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical forcing, but with pre-industrial NTCF emissions", + "experiment_id":"hist-piNTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-resAMO":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"initialized from \"historical\" run year 1870 and SSTs in the AMO domain (0deg-70degN, 70degW-0deg) restored to AMIP SSTs with historical forcings", + "experiment_id":"hist-resAMO", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-resIPO":{ + "activity_id":[ + "GMMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"initialized from \"historical\" run year 1870 and SSTs in tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW) restored to AMIP SSTs with historical forcings", + "experiment_id":"hist-resIPO", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-sol":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical solar-only run", + "experiment_id":"hist-sol", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-spAer-aer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical simulation with specified anthropogenic aerosols, no other forcings", + "experiment_id":"hist-spAer-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-spAer-all":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical simulation with specified anthropogenic aerosols", + "experiment_id":"hist-spAer-all", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-stratO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "experiment":"historical stratospheric ozone-only run", + "experiment_id":"hist-stratO3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-totalO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "experiment":"historical total ozone-only run", + "experiment_id":"hist-totalO3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "hist-volc":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical volcanic-only run", + "experiment_id":"hist-volc", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical prescribed SSTs and historical forcing", + "experiment_id":"histSST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-1950HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with 1950 halocarbon concentrations. Experiment is initialized from histSST (AerChemMIP) simulation from January 1950", + "experiment_id":"histSST-1950HC", + "parent_activity_id":[ + "AerChemMIP" + ], + "parent_experiment_id":[ + "histSST" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-noLu":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial LULCC", + "experiment_id":"histSST-noLu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial aerosol emissions", + "experiment_id":"histSST-piAer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial methane concentrations", + "experiment_id":"histSST-piCH4", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piN2O":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcings, but with pre-industrial N2O concentrations", + "experiment_id":"histSST-piN2O", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial NTCF emissions", + "experiment_id":"histSST-piNTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "histSST-piO3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical SSTs and historical forcing, but with pre-industrial ozone precursor emissions", + "experiment_id":"histSST-piO3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"all-forcing simulation of the recent past", + "experiment_id":"historical", + "parent_activity_id":[ + "CMIP", + "PMIP" + ], + "parent_experiment_id":[ + "piControl", + "past1000", + "past2k" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical-cmip5":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"all-forcing simulation of the recent past (CMIP5-era [1850-2005] forcing)", + "experiment_id":"historical-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical-ext":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"post-2014 all-forcing simulation", + "experiment_id":"historical-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "historical-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"historical with interactive ice sheet", + "experiment_id":"historical-withism", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "piControl-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ice-nucleation": { + "activity_id": [ + "FORCeS" + ], + "additional_allowed_model_components": [ + "AER", + "CHEM", + "BGC" + ], + "experiment": "ice-nucleation", + "experiment_id": "ice-nucleation", + "parent_activity_id": [ + "no parent" + ], + "parent_experiment_id": [ + "no parent" + ], + "required_model_components": [ + "AOGCM" + ], + "sub_experiment_id": [ + "none" + ] + }, + "ism-1pctCO2to4x-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet model forced by ISM's own AOGCM 1pctCO2to4x output", + "experiment_id":"ism-1pctCO2to4x-self", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-piControl-self" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-1pctCO2to4x-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet model forced by ISMIP6-specified AOGCM 1pctCO2to4x output", + "experiment_id":"ism-1pctCO2to4x-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-pdControl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-amip-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AGCM AMIP output", + "experiment_id":"ism-amip-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-asmb-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by initMIP synthetic atmospheric experiment", + "experiment_id":"ism-asmb-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-bsmb-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by initMIP synthetic oceanic experiment", + "experiment_id":"ism-bsmb-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-ctrl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-ctrl-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet model initMIP control", + "experiment_id":"ism-ctrl-std", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-historical-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISM's own AOGCM historical output", + "experiment_id":"ism-historical-self", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-piControl-self" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-historical-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM historical output", + "experiment_id":"ism-historical-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-pdControl-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-lig127k-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AGCM last interglacial output", + "experiment_id":"ism-lig127k-std", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-pdControl-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM pdControl output", + "experiment_id":"ism-pdControl-std", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-piControl-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISM's own AOGCM piControl output", + "experiment_id":"ism-piControl-self", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-ssp585-self":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISM's own AOGCM ssp585 output", + "experiment_id":"ism-ssp585-self", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-historical-self" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ism-ssp585-std":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM ssp585 output", + "experiment_id":"ism-ssp585-std", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "ism-historical-std" + ], + "required_model_components":[ + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-cCO2":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only constant CO2", + "experiment_id":"land-cCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-cClim":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only constant climate", + "experiment_id":"land-cClim", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-grass":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with cropland as natural grassland", + "experiment_id":"land-crop-grass", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-noFert":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no fertilizer", + "experiment_id":"land-crop-noFert", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-noIrrig":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no irrigation", + "experiment_id":"land-crop-noIrrig", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-crop-noIrrigFert":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with managed crops but with irrigation and fertilization held constant", + "experiment_id":"land-crop-noIrrigFert", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist":{ + "activity_id":[ + "LS3MIP LUMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical land-only", + "experiment_id":"land-hist", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-altLu1":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only alternate land-use history", + "experiment_id":"land-hist-altLu1", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-altLu2":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only alternate land use history", + "experiment_id":"land-hist-altLu2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-altStartYear":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only alternate start year", + "experiment_id":"land-hist-altStartYear", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"as land-hist with CRU-NCEP forcings", + "experiment_id":"land-hist-cruNcep", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"as land-hist with Princeton forcings", + "experiment_id":"land-hist-princeton", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-hist-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"as land-hist with WFDEI forcings", + "experiment_id":"land-hist-wfdei", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noFire":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no human fire management", + "experiment_id":"land-noFire", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noLu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"historical land-only with no land-use change", + "experiment_id":"land-noLu", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noPasture":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with constant pastureland", + "experiment_id":"land-noPasture", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noShiftCultivate":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with shifting cultivation turned off", + "experiment_id":"land-noShiftCultivate", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-noWoodHarv":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"historical land-only with no wood harvest", + "experiment_id":"land-noWoodHarv", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-ssp126":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"future ssp1-2.6 land only", + "experiment_id":"land-ssp126", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-ssp434":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"future ssp4-3.4 land only", + "experiment_id":"land-ssp434", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "land-ssp585":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"future ssp5-8.5 land only", + "experiment_id":"land-ssp585", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "LAND" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-initLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"initialized from \"historical\" run year 1980, but with land conditions initialized from pseudo-observations", + "experiment_id":"lfmip-initLC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land conditions (from current climate climatology) and initialized from \"historical\" run year 1980", + "experiment_id":"lfmip-pdLC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-pdLC with Land-Hist-cruNcep", + "experiment_id":"lfmip-pdLC-cruNcep", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-pdLC with Land-Hist-princeton", + "experiment_id":"lfmip-pdLC-princeton", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-pdLC-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-pdLC with Land-Hist-wfdei", + "experiment_id":"lfmip-pdLC-wfdei", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"prescribed land conditions (from running mean climatology) and initialized from \"historical\" run year 1980", + "experiment_id":"lfmip-rmLC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC-cruNcep":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-rmLC with Land-Hist-cruNcep", + "experiment_id":"lfmip-rmLC-cruNcep", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC-princeton":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-rmLC with Land-Hist-princeton", + "experiment_id":"lfmip-rmLC-princeton", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lfmip-rmLC-wfdei":{ + "activity_id":[ + "LS3MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"as LFMIP-rmLC with Land-Hist-wfdei", + "experiment_id":"lfmip-rmLC-wfdei", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lgm":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last glacial maximum", + "experiment_id":"lgm", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "lig127k":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last interglacial (127k)", + "experiment_id":"lig127k", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "midHolocene":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"mid-Holocene", + "experiment_id":"midHolocene", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "midPliocene-eoi400":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"mid-Pliocene warm period", + "experiment_id":"midPliocene-eoi400", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "modelSST-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day coupled model SST and future Arctic SIC", + "experiment_id":"modelSST-futArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "modelSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice present day control with coupled model SST", + "experiment_id":"modelSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip1":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized with observed physical and biogeochemical ocean data", + "experiment_id":"omip1", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip1-spunup":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[], + "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", + "experiment_id":"omip1-spunup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip2":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized with observed physical and biogeochemical ocean data", + "experiment_id":"omip2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "omip2-spunup":{ + "activity_id":[ + "OMIP" + ], + "additional_allowed_model_components":[], + "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", + "experiment_id":"omip2-spunup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice constrained by future Antarctic SIC", + "experiment_id":"pa-futAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futAntSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled extended simulation with future Antarctic SIC", + "experiment_id":"pa-futAntSIC-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice constrained by future Arctic SIC", + "experiment_id":"pa-futArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-futArcSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled extended simulation with future Arctic SIC", + "experiment_id":"pa-futArcSIC-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice contrained by present day SIC", + "experiment_id":"pa-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-pdSIC-ext":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled extended simulation constrained by present day SIC", + "experiment_id":"pa-pdSIC-ext", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-piAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice with pre-industrial Antarctic SIC", + "experiment_id":"pa-piAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pa-piArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Partially-coupled time slice constrained by pre-industrial Arctic SIC", + "experiment_id":"pa-piArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "past1000":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last millennium", + "experiment_id":"past1000", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "past1000-solaronly":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last millennium experiment using only solar forcing", + "experiment_id":"past1000-solaronly", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "past1000-volconly":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last millennium experiment using only volcanic forcing", + "experiment_id":"past1000-volconly", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "past2k":{ + "activity_id":[ + "PMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"last two millennia experiment", + "experiment_id":"past2k", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Antarctic SIC", + "experiment_id":"pdSST-futAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Arctic SIC", + "experiment_id":"pdSST-futArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futArcSICSIT":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Arctic SIC and sea ice thickness", + "experiment_id":"pdSST-futArcSICSIT", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futBKSeasSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Barents and Kara Seas SIC", + "experiment_id":"pdSST-futBKSeasSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-futOkhotskSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and future Sea of Okhotsk SIC", + "experiment_id":"pdSST-futOkhotskSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and SIC", + "experiment_id":"pdSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-pdSICSIT":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice constrained by present day conditions including sea ice thickness", + "experiment_id":"pdSST-pdSICSIT", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-piAntSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and pre-industrial Antarctic SIC", + "experiment_id":"pdSST-piAntSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "pdSST-piArcSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with present day SST and pre-industrial Arctic SIC", + "experiment_id":"pdSST-piArcSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xDMS":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of DMS", + "experiment_id":"piClim-2xDMS", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xNOx":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled production of NOx due to lightning", + "experiment_id":"piClim-2xNOx", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xVOC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of biogenic VOCs", + "experiment_id":"piClim-2xVOC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xdust":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of dust", + "experiment_id":"piClim-2xdust", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xfire":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions from fires", + "experiment_id":"piClim-2xfire", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-2xss":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of sea salt", + "experiment_id":"piClim-2xss", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-4xCO2":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"effective radiative forcing by 4xCO2", + "experiment_id":"piClim-4xCO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-BC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 black carbon emissions", + "experiment_id":"piClim-BC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-CH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 methane concentrations (including chemistry)", + "experiment_id":"piClim-CH4", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-HC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 halocarbon concentrations (including chemistry)", + "experiment_id":"piClim-HC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-N2O":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 N2O concentrations (including chemistry)", + "experiment_id":"piClim-N2O", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-NH3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ammonia emissions", + "experiment_id":"piClim-NH3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-NOx":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NOx emissions", + "experiment_id":"piClim-NOx", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-NTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NTCF emissions", + "experiment_id":"piClim-NTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-O3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ozone precursor emissions", + "experiment_id":"piClim-O3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-OC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 organic carbon emissions", + "experiment_id":"piClim-OC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-SO2":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 SO2 emissions", + "experiment_id":"piClim-SO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-VOC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 VOC emissions", + "experiment_id":"piClim-VOC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-aer":{ + "activity_id":[ + "RFMIP AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing by present-day aerosols", + "experiment_id":"piClim-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-anthro":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"effective radiative forcing by present day anthropogenic agents", + "experiment_id":"piClim-anthro", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-control":{ + "activity_id":[ + "RFMIP AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Control simulation providing baseline for evaluating effective radiative forcing (ERF)", + "experiment_id":"piClim-control", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-ghg":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing by present-day greenhouse gases", + "experiment_id":"piClim-ghg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histaer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing by aerosols", + "experiment_id":"piClim-histaer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histall":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing", + "experiment_id":"piClim-histall", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histghg":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing by greenhouse gases", + "experiment_id":"piClim-histghg", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-histnat":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"transient effective radiative forcing by natural perturbations", + "experiment_id":"piClim-histnat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-lu":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"effective radiative forcing by present-day land use", + "experiment_id":"piClim-lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-aer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, all forcings", + "experiment_id":"piClim-spAer-aer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-anthro":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, anthropogenic forcings", + "experiment_id":"piClim-spAer-anthro", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-histaer":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, aerosol forcing", + "experiment_id":"piClim-spAer-histaer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piClim-spAer-histall":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, all forcings", + "experiment_id":"piClim-spAer-histall", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pre-industrial control", + "experiment_id":"piControl", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-spinup" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl-cmip5":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pre-industrial control (CMIP5-era [1850-2005] forcing)", + "experiment_id":"piControl-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl-spinup-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl-spinup":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pre-industrial control (spin-up)", + "experiment_id":"piControl-spinup", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl-spinup-cmip5":{ + "activity_id":[ + "CMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"pre-industrial control (spin-up; CMIP5-era [1850-2005] forcing)", + "experiment_id":"piControl-spinup-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piControl-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"preindustrial control with interactive ice sheet", + "experiment_id":"piControl-withism", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"experiment forced with pre-industrial SSTs, sea ice and atmospheric constituents", + "experiment_id":"piSST", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-4xCO2":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST with radiation and vegetation seeing 4xCO2", + "experiment_id":"piSST-4xCO2", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-4xCO2-rad":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST with radiation-only seeing 4xCO2", + "experiment_id":"piSST-4xCO2-rad", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-4xCO2-solar":{ + "activity_id":[ + "GeoMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"preindustrial control SSTs with quadrupled CO2 and solar reduction", + "experiment_id":"piSST-4xCO2-solar", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-pdSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with pre-industrial SST and present day SIC", + "experiment_id":"piSST-pdSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-piSIC":{ + "activity_id":[ + "PAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Atmosphere time slice with pre-industrial SST and SIC", + "experiment_id":"piSST-piSIC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "amip" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "piSST-pxK":{ + "activity_id":[ + "CFMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"as piSST with uniform SST increase with magnitude based on abrupt-4xCO2 response", + "experiment_id":"piSST-pxK", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "rad-irf":{ + "activity_id":[ + "RFMIP" + ], + "additional_allowed_model_components":[ + "" + ], + "experiment":"offline assessment of radiative transfer parmeterizations in clear skies", + "experiment_id":"rad-irf", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "RAD" + ], + "sub_experiment_id":[ + "none" + ] + }, + "rcp26-cmip5":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"future projection based on CMIP5-era RCP2.6 scenario (CMIP5-era [2006-2100] forcing)", + "experiment_id":"rcp26-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "rcp45-cmip5":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"future projection based on CMIP5-era RCP4.5 scenario (CMIP5-era [2006-2100] forcing)", + "experiment_id":"rcp45-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "rcp60-cmip5":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"future projection based on CMIP5-era RCP6.0 scenario (CMIP5-era [2006-2100] forcing)", + "experiment_id":"rcp60-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "rcp85-cmip5":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"future projection based on CMIP5-era RCP8.5 scenario (CMIP5-era [2006-2100] forcing)", + "experiment_id":"rcp85-cmip5", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical-cmip5" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "spinup-1950":{ + "activity_id":[ + "HighResMIP" + ], + "additional_allowed_model_components":[ + "AER" + ], + "experiment":"coupled spinup with fixed 1950s forcings from 1950 initial conditions (with ocean at rest) to provide initial condition for control-1950 and hist-1950", + "experiment_id":"spinup-1950", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp119":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"low-end scenario reaching 1.9 W m-2, based on SSP1", + "experiment_id":"ssp119", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp126":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP2.6 based on SSP1", + "experiment_id":"ssp126", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp126-ssp370Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"SSP1-2.6 with SSP3-7.0 land use", + "experiment_id":"ssp126-ssp370Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP4.5 based on SSP2", + "experiment_id":"ssp245", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"well-mixed GHG-only SSP2-4.5 run", + "experiment_id":"ssp245-GHG", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-GHG" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"aerosol-only SSP2-4.5 run", + "experiment_id":"ssp245-aer", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-aer" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-cov-GHG":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2-year Covid-19 emissions blip including well mixed GHG only, based upon ssp245", + "experiment_id":"ssp245-cov-GHG", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-cov-aer":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2-year Covid-19 emissions blip including anthropogenic aerosols only, based upon ssp245", + "experiment_id":"ssp245-cov-aer", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-cov-fossil":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2-year Covid-19 emissions blip followed by increased emissions due to a fossil-fuel based recovery, based upon ssp245", + "experiment_id":"ssp245-cov-fossil", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-cov-modgreen":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2-year Covid-19 emissions blip followed by moderate-green stimulus recovery, based upon ssp245", + "experiment_id":"ssp245-cov-modgreen", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-cov-strgreen":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2-year Covid-19 emissions blip followed by strong-green stimulus recovery, based upon ssp245", + "experiment_id":"ssp245-cov-strgreen", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-covid":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"2-year Covid-19 emissions blip based upon ssp245", + "experiment_id":"ssp245-covid", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp245" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-nat":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"natural-only SSP2-4.5 run", + "experiment_id":"ssp245-nat", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-nat" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp245-stratO3":{ + "activity_id":[ + "DAMIP" + ], + "additional_allowed_model_components":[ + "AER", + "BGC" + ], + "experiment":"stratospheric ozone-only SSP2-4.5 (ssp245) run", + "experiment_id":"ssp245-stratO3", + "parent_activity_id":[ + "DAMIP" + ], + "parent_experiment_id":[ + "hist-stratO3" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370":{ + "activity_id":[ + "ScenarioMIP AerChemMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"gap-filling scenario reaching 7.0 based on SSP3", + "experiment_id":"ssp370", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370-lowNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, with low NTCF emissions", + "experiment_id":"ssp370-lowNTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370-lowNTCFCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, with low NTCF emissions and methane concentrations", + "experiment_id":"ssp370-lowNTCFCH4", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370-ssp126Lu":{ + "activity_id":[ + "LUMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0 with SSP1-2.6 land use", + "experiment_id":"ssp370-ssp126Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, with SSTs prescribed from ssp370", + "experiment_id":"ssp370SST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowAer":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low aerosol emissions", + "experiment_id":"ssp370SST-lowAer", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowBC":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low black carbon emissions", + "experiment_id":"ssp370SST-lowBC", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low methane concentrations", + "experiment_id":"ssp370SST-lowCH4", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowNTCF":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low NTCF emissions", + "experiment_id":"ssp370SST-lowNTCF", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowNTCFCH4":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low NTCF emissions and methane concentrations", + "experiment_id":"ssp370SST-lowNTCFCH4", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-lowO3":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with low ozone precursor emissions", + "experiment_id":"ssp370SST-lowO3", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370SST-ssp126Lu":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, prescribed SSTs, with SSP1-2.6 land use", + "experiment_id":"ssp370SST-ssp126Lu", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp370pdSST":{ + "activity_id":[ + "AerChemMIP" + ], + "additional_allowed_model_components":[ + "CHEM", + "BGC" + ], + "experiment":"SSP3-7.0, with SSTs prescribed as present day", + "experiment_id":"ssp370pdSST", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp434":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"gap-filling scenario reaching 3.4 based on SSP4", + "experiment_id":"ssp434", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp460":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP6.0 based on SSP4", + "experiment_id":"ssp460", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp534-over":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"overshoot of 3.4 W/m**2 branching from ssp585 in 2040", + "experiment_id":"ssp534-over", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp534-over-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of the RCP3.4-overshoot based on SSP5", + "experiment_id":"ssp534-over-bgc", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "ssp585-bgc" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp585":{ + "activity_id":[ + "ScenarioMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"update of RCP8.5 based on SSP5", + "experiment_id":"ssp585", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp585-bgc":{ + "activity_id":[ + "C4MIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"biogeochemically-coupled version of the RCP8.5 based on SSP5", + "experiment_id":"ssp585-bgc", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "hist-bgc" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + }, + "ssp585-withism":{ + "activity_id":[ + "ISMIP6" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"ssp585 with interactive ice sheet", + "experiment_id":"ssp585-withism", + "parent_activity_id":[ + "ISMIP6" + ], + "parent_experiment_id":[ + "historical-withism" + ], + "required_model_components":[ + "AOGCM", + "ISM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-cluster-21C":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"volcanic cluster experiment under 21st century SSP2-4.5 scenario", + "experiment_id":"volc-cluster-21C", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-cluster-ctrl":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"19th century volcanic cluster initialized from PiControl", + "experiment_id":"volc-cluster-ctrl", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-cluster-mill":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"19th century volcanic cluster initialized from past1000", + "experiment_id":"volc-cluster-mill", + "parent_activity_id":[ + "PMIP" + ], + "parent_experiment_id":[ + "past1000" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-long-eq":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized equatorial volcanic eruption emitting 56.2 Tg SO2", + "experiment_id":"volc-long-eq", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-long-hlN":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"idealized Northern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", + "experiment_id":"volc-long-hlN", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-long-hlS":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Idealized Southern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", + "experiment_id":"volc-long-hlS", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-full":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment", + "experiment_id":"volc-pinatubo-full", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-slab":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment with slab ocean", + "experiment_id":"volc-pinatubo-slab", + "parent_activity_id":[ + "VolMIP" + ], + "parent_experiment_id":[ + "control-slab" + ], + "required_model_components":[ + "AGCM", + "SLAB" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-strat":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment with partial radiative forcing, includes only stratospheric warming", + "experiment_id":"volc-pinatubo-strat", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "volc-pinatubo-surf":{ + "activity_id":[ + "VolMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM", + "BGC" + ], + "experiment":"Pinatubo experiment with partial radiative forcing, solar radiation scattering only", + "experiment_id":"volc-pinatubo-surf", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "sub_experiment_id":[ + "none" + ] + }, + "yr2010CO2":{ + "activity_id":[ + "CDRMIP" + ], + "additional_allowed_model_components":[ + "AER", + "CHEM" + ], + "experiment":"concentration-driven fixed 2010 forcing", + "experiment_id":"yr2010CO2", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "sub_experiment_id":[ + "none" + ] + } + }, + "product":[ + "model-output" + ], + "tracking_id":[ + "hdl:21.14100/.*" + ], + "further_info_url":[ + "https://furtherinfo.es-doc.org/.*" + ], + "realization_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ], + "variant_label":[ + "r[[:digit:]]\\{1,\\}i[[:digit:]]\\{1,\\}p[[:digit:]]\\{1,\\}f[[:digit:]]\\{1,\\}$" + ], + "data_specs_version":[ + "^[[:digit:]]\\{2,2\\}\\.[[:digit:]]\\{2,2\\}\\.[[:digit:]]\\{2,2\\}$" + ], + "Conventions":[ + "^CF-1.7 CMIP-6.[0-2]\\( UGRID-1.0\\)\\{0,\\}$" + ], + "forcing_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ], + "initialization_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ], + "physics_index":[ + "^\\[\\{0,\\}[[:digit:]]\\{1,\\}\\]\\{0,\\}$" + ] + } +} \ No newline at end of file diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_E1hr.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E1hr.json new file mode 100644 index 0000000000000000000000000000000000000000..bcd616b42c55eecf2646061d109dc41846675ccc --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E1hr.json @@ -0,0 +1,306 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table E1hr", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.041667", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "pr": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prc": { + "frequency": "1hr", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Precipitation", + "comment": "Convective precipitation at surface; includes both liquid and solid phases.", + "dimensions": "longitude latitude time", + "out_name": "prc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "psl": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time1", + "out_name": "psl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlut": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time1", + "out_name": "rlut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev3 time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta27": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev27 time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntr27": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_radiative_heating", + "units": "K s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Radiative Heating", + "comment": "Tendency of Air Temperature due to Radiative Heating", + "dimensions": "longitude latitude plev27 time1", + "out_name": "tntr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev3 time1", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua27": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev27 time1", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendnogw27": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Tendency of the eastward wind by parameterized nonorographic gravity waves.", + "dimensions": "longitude latitude plev27 time1", + "out_name": "utendnogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev3 time1", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va27": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev27 time1", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vtendnogw27": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Tendency of the northward wind by parameterized nonorographic gravity waves. (Note that CF name tables only have a general northward tendency for all gravity waves, and we need it separated by type.)", + "dimensions": "longitude latitude plev27 time1", + "out_name": "vtendnogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude plev3 time1", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap27": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude plev27 time1", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg27": { + "frequency": "1hrPt", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev27 time1", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_E1hrClimMon.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E1hrClimMon.json new file mode 100644 index 0000000000000000000000000000000000000000..7a2cacbc55de4050ece1d3be0e53466788d2a26e --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E1hrClimMon.json @@ -0,0 +1,108 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table E1hrClimMon", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.041667", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "rlut": { + "frequency": "1hrCM", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time3", + "out_name": "rlut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlutcs": { + "frequency": "1hrCM", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time3", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdt": { + "frequency": "1hrCM", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "Shortwave radiation incident at the top of the atmosphere", + "dimensions": "longitude latitude time3", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsut": { + "frequency": "1hrCM", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time3", + "out_name": "rsut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcs": { + "frequency": "1hrCM", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: mean within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time3", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_E3hr.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E3hr.json new file mode 100644 index 0000000000000000000000000000000000000000..c61531794a451bf1adfc0d7c4242c8bc3ea0fa47 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E3hr.json @@ -0,0 +1,360 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table E3hr", + "realm": "land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.125000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "clivi": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Water Path", + "comment": "mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clivi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwvi": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Condensed Water Path", + "comment": "Mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clwvi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "gpp": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land [kgC m-2 s-1]", + "comment": "The rate of synthesis of biomass from inorganic precursors by autotrophs ('producers') expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production. ", + "dimensions": "longitude latitude time", + "out_name": "gpp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prcsh": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "shallow_convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux from Shallow Convection", + "comment": "Convection precipitation from shallow convection", + "dimensions": "longitude latitude time", + "out_name": "prcsh", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prra": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Rainfall Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "prra", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prrc": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "convective_rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Rainfall Rate", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "prrc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsnc": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "convective_snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Snowfall Flux", + "comment": "convective precipitation of all forms of water in the solid phase.", + "dimensions": "longitude latitude time", + "out_name": "prsnc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prw": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "vertically integrated through the atmospheric column", + "dimensions": "longitude latitude time", + "out_name": "prw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "psl": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time", + "out_name": "psl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ra": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Autotrophic (Plant) Respiration on Land [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to autotrophic respiration on land (respiration by producers) [see rh for heterotrophic production]", + "dimensions": "longitude latitude time", + "out_name": "ra", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rh": { + "frequency": "3hr", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Heterotrophic Respiration on Land as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to heterotrophic respiration on land (respiration by consumers)", + "dimensions": "longitude latitude time", + "out_name": "rh", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlut": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time", + "out_name": "rlut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlutcs": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Longwave Radiation", + "comment": "Upwelling clear-sky longwave radiation at top of atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rlutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdt": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "Shortwave radiation incident at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsut": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "rsut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcs": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation", + "comment": "Calculated in the absence of clouds.", + "dimensions": "longitude latitude time", + "out_name": "rsutcs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfcWind": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Wind Speed", + "comment": "near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uas": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vas": { + "frequency": "3hr", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "longitude latitude time height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_E3hrPt.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E3hrPt.json new file mode 100644 index 0000000000000000000000000000000000000000..e50d9b3734a99872ea663e7be2c81ef2e727b8db --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E3hrPt.json @@ -0,0 +1,882 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table E3hrPt", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.125000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "aerasymbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "asymmetry_factor_of_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Aerosol Level Asymmetry Parameter for Each Band", + "comment": "The asymmetry factor is the angular integral of the aerosol scattering phase function weighted by the cosine of the angle with the incident radiation flux. The asymmetry coefficient is here an integral over all wavelength bands.", + "dimensions": "longitude latitude alevel spectband time1", + "out_name": "aerasymbnd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "aeroptbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_absorption_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Aerosol Level Absorption Optical Thickness for Each Band", + "comment": "Optical thickness of atmospheric aerosols in wavelength bands.", + "dimensions": "longitude latitude alevel spectband time1", + "out_name": "aeroptbnd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "aerssabnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "single_scattering_albedo_in_air_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Aerosol Level Single Scattering Albedo for Each Band", + "comment": "The single scattering albedo is the fraction of radiation in an incident light beam scattered by the particles of an aerosol reference volume for a given wavelength. It is the ratio of the scattering and the extinction coefficients of the aerosol particles in the reference volume. ", + "dimensions": "longitude latitude alevel spectband time1", + "out_name": "aerssabnd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "albdiffbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_diffuse_shortwave_hemispherical_reflectance", + "units": "1", + "cell_methods": "time: point", + "cell_measures": "area: areacella", + "long_name": "Diffuse Surface Albedo for Each Band", + "comment": "The fraction of the surface diffuse downwelling shortwave radiation flux which is reflected. If the diffuse radiation is isotropic, this term is equivalent to the integral of surface bidirectional reflectance over all incident angles and over all outgoing angles in the hemisphere above the surface. Reported in spectral frequency bands.", + "dimensions": "longitude latitude spectband time1", + "out_name": "albdiffbnd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "albdirbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_direct_shortwave_hemispherical_reflectance", + "units": "1", + "cell_methods": "time: point", + "cell_measures": "area: areacella", + "long_name": "Direct Surface Albedo for Each Band", + "comment": "The fraction of the surface direct downwelling shortwave radiation flux which is reflected. It is equivalent to the surface bidirectional reflectance at the incident angle of the incoming solar radiation and integrated over all outgoing angles in the hemisphere above the surface. Reported in spectral frequency bands.", + "dimensions": "longitude latitude spectband time1", + "out_name": "albdirbnd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfadDbze94": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "CloudSat Radar Reflectivity CFAD", + "comment": "CFAD (Cloud Frequency Altitude Diagrams) are frequency distributions of radar reflectivity (or lidar scattering ratio) as a function of altitude. The variable cfadDbze94 is defined as the simulated relative frequency of occurrence of radar reflectivity in sampling volumes defined by altitude bins. The radar is observing at a frequency of 94GHz.", + "dimensions": "longitude latitude alt40 dbze time1", + "out_name": "cfadDbze94", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfadLidarsr532": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Scattering Ratio CFAD", + "comment": "CFAD (Cloud Frequency Altitude Diagrams) are frequency distributions of radar reflectivity (or lidar scattering ratio) as a function of altitude. The variable cfadLidarsr532 is defined as the simulated relative frequency of lidar scattering ratio in sampling volumes defined by altitude bins. The lidar is observing at a wavelength of 532nm.", + "dimensions": "longitude latitude alt40 scatratio time1", + "out_name": "cfadLidarsr532", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ch4": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_methane_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CH4", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time1", + "out_name": "ch4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clcalipso": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Percentage Cloud Cover", + "comment": "Percentage cloud cover in CALIPSO standard atmospheric layers.", + "dimensions": "longitude latitude alt40 time1", + "out_name": "clcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clcalipso2": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Cloud Cover Percentage Undetected by CloudSat (as Percentage of Area Covered)", + "comment": "Clouds detected by CALIPSO but below the detectability threshold of CloudSat", + "dimensions": "longitude latitude alt40 time1", + "out_name": "clcalipso2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clhcalipso": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "CALIPSO High Level Cloud Area Percentage", + "comment": "Percentage cloud cover in layer centred on 220hPa", + "dimensions": "longitude latitude time1 p220", + "out_name": "clhcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clisccp": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "ISCCP Cloud Area Percentage", + "comment": "Percentage cloud cover in optical depth categories.", + "dimensions": "longitude latitude plev7c tau time1", + "out_name": "clisccp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cllcalipso": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Low Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 840hPa", + "dimensions": "longitude latitude time1 p840", + "out_name": "cllcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clmcalipso": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Mid Level Cloud Cover Percentage", + "comment": "Percentage cloud cover in layer centred on 560hPa", + "dimensions": "longitude latitude time1 p560", + "out_name": "clmcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clmisr": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Percentage Cloud Cover as Calculated by the MISR Simulator (Including Error Flag)", + "comment": "Cloud percentage in spectral bands and layers as observed by the Multi-angle Imaging SpectroRadiometer (MISR) instrument. The first layer in each profile is reserved for a retrieval error flag.", + "dimensions": "longitude latitude alt16 tau time1", + "out_name": "clmisr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cltcalipso": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) instrument. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time1", + "out_name": "cltcalipso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CO2", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time1", + "out_name": "co2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude alevel time1", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus7h": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev7h time1", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "jpdftaureicemodis": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "MODIS Joint Distribution of Optical Thickness and Particle Size, Ice", + "comment": "Joint probability distribution function, giving probability of cloud as a function of optical thickness and particle size, as measured by MODIS. For cloud ice particles.", + "dimensions": "longitude latitude effectRadIc tau time1", + "out_name": "jpdftaureicemodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "jpdftaureliqmodis": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "MODIS Optical Thickness-Particle Size Joint Distribution, Liquid", + "comment": "Joint probability distribution function, giving probability of cloud as a function of optical thickness and particle size, as measured by MODIS. For liquid cloud particles.", + "dimensions": "longitude latitude effectRadLi tau time1", + "out_name": "jpdftaureliqmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "n2o": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_nitrous_oxide_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of N2O", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y. The chemical formula of nitrous oxide is N2O.", + "dimensions": "longitude latitude alevel time1", + "out_name": "n2o", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o3": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_ozone_in_air", + "units": "mol mol-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of O3", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude alevel time1", + "out_name": "o3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "parasolRefl": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_bidirectional_reflectance", + "units": "1", + "cell_methods": "area: mean where sea time: point", + "cell_measures": "area: areacella", + "long_name": "PARASOL Reflectance", + "comment": "Simulated reflectance from PARASOL as seen at the top of the atmosphere for 5 solar zenith angles. Valid only over ocean and for one viewing direction (viewing zenith angle of 30 degrees and relative azimuth angle 320 degrees).", + "dimensions": "longitude latitude sza5 time1", + "out_name": "parasolRefl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdcs": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Shortwave Radiation", + "comment": "Downwelling clear-sky shortwave radiation (includes the fluxes at the surface and top-of-atmosphere)", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "rsdcs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdcsaf": { + "frequency": "3hrPt", + "modeling_realm": "aerosol", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky, Aerosol-Free Shortwave Radiation", + "comment": "Calculated in the absence of aerosols and clouds (following Ghan). This requires a double-call in the radiation code with precisely the same meteorology.", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "rsdcsaf", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdcsafbnd": { + "frequency": "3hrPt", + "modeling_realm": "aerosol", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky, Aerosol-Free, Shortwave Radiation in Bands", + "comment": "Calculated in the absence of aerosols and clouds (following Ghan). This requires a double-call in the radiation code with precisely the same meteorology.", + "dimensions": "longitude latitude alevhalf spectband time1", + "out_name": "rsdcsafbnd", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdcsbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Downwelling Clear-Sky Shortwave Radiation at Each Level for Each Band", + "comment": "Calculated with aerosols but without clouds. This is a standard clear-sky calculation", + "dimensions": "longitude latitude alevhalf spectband time1", + "out_name": "rsdcsbnd", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscsaf": { + "frequency": "3hrPt", + "modeling_realm": "aerosol", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky, Aerosol-Free Shortwave Radiation", + "comment": "Calculated in the absence of aerosols and clouds.", + "dimensions": "longitude latitude time1", + "out_name": "rsdscsaf", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscsafbnd": { + "frequency": "3hrPt", + "modeling_realm": "aerosol", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky, Aerosol-Free Shortwave Radiation in Bands", + "comment": "Calculated in the absence of aerosols and clouds, following Ghan (2013, ACP). This requires a double-call in the radiation code with precisely the same meteorology.", + "dimensions": "longitude latitude spectband time1", + "out_name": "rsdscsafbnd", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscsbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Clear-Sky Shortwave Radiation for Each Band", + "comment": "Calculated with aerosols but without clouds. This is a standard clear-sky calculation", + "dimensions": "longitude latitude spectband time1", + "out_name": "rsdscsbnd", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsucs": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Shortwave Radiation", + "comment": "Upwelling clear-sky shortwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "rsucs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsucsaf": { + "frequency": "3hrPt", + "modeling_realm": "aerosol", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky, Aerosol-Free Shortwave Radiation", + "comment": "Calculated in the absence of aerosols and clouds (following Ghan). This requires a double-call in the radiation code with precisely the same meteorology.", + "dimensions": "longitude latitude alevhalf time1", + "out_name": "rsucsaf", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsucsafbnd": { + "frequency": "3hrPt", + "modeling_realm": "aerosol", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky, Aerosol-Free Shortwave Radiation in Bands", + "comment": "Calculated in the absence of aerosols and clouds (following Ghan). This requires a double-call in the radiation code with precisely the same meteorology.", + "dimensions": "longitude latitude alevhalf spectband time1", + "out_name": "rsucsafbnd", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsucsbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Upwelling Clear-Sky Shortwave Radiation at Each Level for Each Band", + "comment": "Calculated with aerosols but without clouds. This is a standard clear-sky calculation", + "dimensions": "longitude latitude alevhalf spectband time1", + "out_name": "rsucsbnd", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsuscsaf": { + "frequency": "3hrPt", + "modeling_realm": "aerosol", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clean Clear-Sky Shortwave Radiation", + "comment": "Surface Upwelling Clear-sky, Aerosol Free Shortwave Radiation", + "dimensions": "longitude latitude time1", + "out_name": "rsuscsaf", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsuscsafbnd": { + "frequency": "3hrPt", + "modeling_realm": "aerosol", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky, Aerosol-Free Shortwave Radiation in Bands", + "comment": "Calculated in the absence of aerosols and clouds, following Ghan (ACP, 2013). This requires a double-call in the radiation code with precisely the same meteorology.", + "dimensions": "longitude latitude spectband time1", + "out_name": "rsuscsafbnd", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsuscsbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Clear-Sky Shortwave Radiation for Each Band", + "comment": "Calculated with aerosols but without clouds. This is a standard clear-sky calculation", + "dimensions": "longitude latitude spectband time1", + "out_name": "rsuscsbnd", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcsaf": { + "frequency": "3hrPt", + "modeling_realm": "aerosol", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky, Aerosol-Free Shortwave Radiation", + "comment": "Flux corresponding to rsutcs resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", + "dimensions": "longitude latitude time1", + "out_name": "rsutcsaf", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcsafbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky_and_no_aerosol", + "units": "W m-2", + "cell_methods": "time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky, Aerosol-Free Shortwave Radiation in Bands", + "comment": "Calculated in the absence of aerosols and clouds, following Ghan (2013, ACP). This requires a double-call in the radiation code with precisely the same meteorology.", + "dimensions": "longitude latitude spectband time1", + "out_name": "rsutcsafbnd", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsutcsbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Clear-Sky Shortwave Radiation for Each Band", + "comment": "Calculated with aerosols but without clouds. This is a standard clear-sky calculation", + "dimensions": "longitude latitude spectband time1", + "out_name": "rsutcsbnd", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "solbnd": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Solar Irradiance for Each Band", + "comment": "Solar irradiance at a horizontal surface at top of atmosphere.", + "dimensions": "longitude latitude spectband time1", + "out_name": "solbnd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sza": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "solar_zenith_angle", + "units": "degree", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Solar Zenith Angle", + "comment": "The angle between the line of sight to the sun and the local vertical", + "dimensions": "longitude latitude time1", + "out_name": "sza", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta7h": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev7h time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua7h": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev7h time1", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va7h": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev7h time1", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap7h": { + "frequency": "3hrPt", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude plev7h time1", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_E6hrZ.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E6hrZ.json new file mode 100644 index 0000000000000000000000000000000000000000..fa7585e10e18264df09732fb570f17d28f5bbc39 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_E6hrZ.json @@ -0,0 +1,54 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table E6hrZ", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.250000", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "zmlwaero": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating_from_volcanic_ambient_aerosol_particles", + "units": "K s-1", + "cell_methods": "longitude: mean time: point", + "cell_measures": "", + "long_name": "Zonal Mean Longwave Heating Rate Due to Volcanic Aerosols", + "comment": "longwave heating rate due to volcanic aerosols to be diagnosed through double radiation call, zonal average values required", + "dimensions": "latitude alevel time1", + "out_name": "zmlwaero", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmswaero": { + "frequency": "6hrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating_from_volcanic_ambient_aerosol_particles", + "units": "K s-1", + "cell_methods": "longitude: mean time: point", + "cell_measures": "", + "long_name": "Zonal Mean Shortwave Heating Rate Due to Volcanic Aerosols", + "comment": "shortwave heating rate due to volcanic aerosols to be diagnosed through double radiation call, zonal average values required", + "dimensions": "latitude alevel time1", + "out_name": "zmswaero", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Eday.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Eday.json new file mode 100644 index 0000000000000000000000000000000000000000..4527590a18d749154d29abce62eb4eb4b7d53cdf --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Eday.json @@ -0,0 +1,2232 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Eday", + "realm": "land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "1.00000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "agesno": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "age_of_surface_snow", + "units": "day", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mean Age of Snow", + "comment": "Age of Snow (when computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as missing data in regions free of snow on land.", + "dimensions": "longitude latitude time", + "out_name": "agesno", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "albc": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "canopy_albedo", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Canopy Albedo", + "comment": "Albedo of the vegetation: fraction of incoming solar radiation which is reflected before reaching the ground.", + "dimensions": "longitude latitude time", + "out_name": "albc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "albsn": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_albedo", + "units": "1", + "cell_methods": "area: time: mean where snow (comment: mask=snc)", + "cell_measures": "area: areacella", + "long_name": "Snow Albedo", + "comment": "Albedo of the snow-covered surface, averaged over the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "albsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "aod550volso4": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "stratosphere_optical_thickness_due_to_volcanic_ambient_aerosol_particles", + "units": "1e-09", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Optical Depth at 550nm Due to Stratospheric Volcanic Aerosols", + "comment": "Aerosol optical depth at 550nm due to stratospheric volcanic aerosols", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "aod550volso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ares": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "aerodynamic_resistance", + "units": "s m-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerodynamic Resistance", + "comment": "The 'aerodynamic_resistance' is the resistance to mixing through the boundary layer toward the surface by means of the dominant process, turbulent transport. Reference: Wesely, M. L., 1989, doi:10.1016/0004-6981(89)90153-4.", + "dimensions": "longitude latitude time", + "out_name": "ares", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ccldncl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Droplet Number Concentration of Convective Cloud Tops", + "comment": "Droplets are liquid only. Report concentration 'as seen from space' over convective liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, it is better to sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "ccldncl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cldnci": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration of Cloud Tops", + "comment": "Concentration 'as seen from space' over ice-cloud portion of grid cell. This is the value from uppermost model layer with ice cloud or, if available, it is the sum over all ice cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total ice cloud top fraction (as seen from TOA) of each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "cldnci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cldnvi": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_number_content_of_cloud_droplets", + "units": "m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Column Integrated Cloud Droplet Number", + "comment": "Droplets are liquid only. Values are weighted by liquid cloud fraction in each layer when vertically integrating, and for monthly means the samples are weighted by total liquid cloud fraction (as seen from TOA).", + "dimensions": "longitude latitude time", + "out_name": "cldnvi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clivic": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_convective_cloud_ice", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Ice Water Path", + "comment": "calculate mass of convective ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating frozen hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clivic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clt": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwvic": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_convective_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Condensed Water Path", + "comment": "calculate mass of convective condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clwvic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cnc": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "vegetation_area_fraction", + "units": "%", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Canopy Covered Area Percentage", + "comment": "Percentage of area covered by vegetation.", + "dimensions": "longitude latitude time", + "out_name": "cnc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cw": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "canopy_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Canopy Water Storage", + "comment": "'Amount' means mass per unit area. 'Water' means water in all phases, including frozen i.e. ice and snow. 'Canopy' means the plant or vegetation canopy. The canopy water is the water on the canopy.", + "dimensions": "longitude latitude time", + "out_name": "cw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dcw": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_canopy_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Interception Storage", + "comment": "The phrase 'change_over_time_in_X' means change in a quantity X over a time-interval, which should be defined by the bounds of the time coordinate. 'Canopy' means the plant or vegetation canopy. Canopy water is the water on the canopy. 'Water' means water in all phases, including frozen, i.e. ice and snow. 'Amount' means mass per unit area.", + "dimensions": "longitude latitude time", + "out_name": "dcw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dgw": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_groundwater_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Change in Groundwater", + "comment": "Groundwater is subsurface water below the depth of the water table.", + "dimensions": "longitude latitude time", + "out_name": "dgw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dmlt": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "depth_at_shallowest_isotherm_defined_by_soil_temperature", + "units": "m", + "cell_methods": "area: time: mean where unfrozen_soil", + "cell_measures": "area: areacella", + "long_name": "Depth to Soil Thaw", + "comment": "Depth from surface to the zero degree isotherm. Above this isotherm T > 0o, and below this line T < 0o. Missing if surface is frozen or if soil is unfrozen at all depths.", + "dimensions": "longitude latitude time stempzero", + "out_name": "dmlt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "drivw": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_river_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Change in River Storage", + "comment": "Change over time of the mass of water per unit area in the fluvial system (stream and floodplain).", + "dimensions": "longitude latitude time", + "out_name": "drivw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dslw": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_mass_content_of_water_in_soil", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Soil Moisture", + "comment": "The phrase 'change_over_time_in_X' means change in a quantity X over a time-interval, which should be defined by the bounds of the time coordinate. 'Content' indicates a quantity per unit area. The mass content of water in soil refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including 'content_of_soil_layer' are used. 'Water' means water in all phases.", + "dimensions": "longitude latitude time", + "out_name": "dslw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dsn": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_amount_of_ice_and_snow_on_land", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Snow Water Equivalent", + "comment": "Change in time of the mass per unit area of ice in glaciers, ice caps, ice sheets and shelves, river and lake ice, any other ice on a land surface, such as frozen flood water, and snow lying on such ice or on the land surface.", + "dimensions": "longitude latitude time", + "out_name": "dsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dsw": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_land_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Surface Water Storage", + "comment": "The phrase 'land_water_amount', often known as 'Terrestrial Water Storage', includes: surface liquid water (water in rivers, wetlands, lakes, reservoirs, rainfall intercepted by the canopy); surface ice and snow (glaciers, ice caps, grounded ice sheets not displacing sea water, river and lake ice, other surface ice such as frozen flood water, snow lying on the surface and intercepted by the canopy); subsurface water (liquid and frozen soil water, groundwater).", + "dimensions": "longitude latitude time", + "out_name": "dsw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dtes": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_thermal_energy_content_of_vegetation_and_litter_and_soil", + "units": "J m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Surface Heat Storage", + "comment": "Change in heat storage over the soil layer and the vegetation for which the energy balance is calculated, accumulated over the sampling time interval.", + "dimensions": "longitude latitude time", + "out_name": "dtes", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dtesn": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "change_over_time_in_thermal_energy_content_of_ice_and_snow_on_land", + "units": "J m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Change in Snow and Ice Cold Content", + "comment": "Change in cold content over the snow layer for which the energy balance is calculated, accumulated over the sampling time interval. This should also include the energy contained in the liquid water in the snow pack.", + "dimensions": "longitude latitude time", + "out_name": "dtesn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ec": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_canopy", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Interception Evaporation", + "comment": "Evaporation flux from water in all phases on the vegetation canopy.", + "dimensions": "longitude latitude time", + "out_name": "ec", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "eow": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_water_evaporation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Open Water Evaporation", + "comment": "Evaporation (conversion of liquid or solid into vapor) from open water. ", + "dimensions": "longitude latitude time", + "out_name": "eow", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "es": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Bare Soil Evaporation", + "comment": "Water here means water in all phases. Evaporation is the conversion of liquid or solid into vapor. (The conversion of solid alone into vapor is called 'sublimation'.) In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "es", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "esn": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Evaporation", + "comment": "Water here means water in all phases. Evaporation is the conversion of liquid or solid into vapor. (The conversion of solid alone into vapor is called 'sublimation'.) In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. Unless indicated in the cell_methods attribute, a quantity is assumed to apply to the whole area of each horizontal grid box. Previously, the qualifier where_type was used to specify that the quantity applies only to the part of the grid box of the named type. Names containing the where_type qualifier are deprecated and newly created data should use the cell_methods attribute to indicate the horizontal area to which the quantity applies.", + "dimensions": "longitude latitude time", + "out_name": "esn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evspsbl": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Evaporation Including Sublimation and Transpiration", + "comment": "Evaporation at surface (also known as evapotranspiration): flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "longitude latitude time", + "out_name": "evspsbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evspsblpot": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_potential_evaporation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Potential Evapotranspiration", + "comment": "at surface; potential flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "longitude latitude time", + "out_name": "evspsblpot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfdsl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downward_heat_flux_in_air", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Downward Heat Flux at Land Surface", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Downward' indicates a vector component which is positive when directed downward (negative upward). The vertical heat flux in air is the sum of all heat fluxes i.e. radiative, latent and sensible. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "hfdsl", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfdsn": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "surface_downward_heat_flux_in_snow", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Downward Heat Flux into Snow Where Land over Land", + "comment": "the net downward heat flux from the atmosphere into the snow that lies on land divided by the land area in the grid cell; reported as 0.0 for snow-free land regions or where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "hfdsn", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfdsnb": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "downward_heat_flux_at_ground_level_in_snow", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Downward Heat Flux at Snow Base", + "comment": "Heat flux from snow into the ice or land under the snow.", + "dimensions": "longitude latitude time", + "out_name": "hfdsnb", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfls": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfmlt": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_snow_and_ice_melt_heat_flux", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Energy of Fusion", + "comment": "Energy consumed or released during liquid/solid phase changes.", + "dimensions": "longitude latitude time", + "out_name": "hfmlt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfrs": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_thermal_energy_content_of_surface_snow_due_to_rainfall_temperature_excess_above_freezing", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Heat Transferred to Snowpack by Rainfall", + "comment": "Heat transferred to a snow cover by rain..", + "dimensions": "longitude latitude time", + "out_name": "hfrs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfsbl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux_due_to_sublimation", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Energy of Sublimation", + "comment": "Energy consumed or released during vapor/solid phase changes.", + "dimensions": "longitude latitude time", + "out_name": "hfsbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfss": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hursminCrop": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean where crops time: minimum", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Relative Humidity over Crop Tile", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hursminCrop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev19 time", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus850": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude time p850", + "out_name": "hus850", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "jpdftaureicemodis": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Joint Distribution of Optical Thickness and Particle Size, Ice", + "comment": "Joint probability distribution function, giving probability of cloud as a function of optical thickness and particle size, as measured by MODIS. For cloud ice particles.", + "dimensions": "longitude latitude effectRadIc tau time", + "out_name": "jpdftaureicemodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "jpdftaureliqmodis": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Optical Thickness-Particle Size Joint Distribution, Liquid", + "comment": "Joint probability distribution function, giving probability of cloud as a function of optical thickness and particle size, as measured by MODIS. For liquid cloud particles.", + "dimensions": "longitude latitude effectRadLi tau time", + "out_name": "jpdftaureliqmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lai": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "leaf_area_index", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Leaf Area Index", + "comment": "A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows.", + "dimensions": "longitude latitude time", + "out_name": "lai", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadbc": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_elemental_carbon_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Black Carbon Aerosol", + "comment": "The total dry mass of black carbon aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadbc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loaddust": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_dust_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Dust", + "comment": "The total dry mass of dust aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loaddust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadnh4": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_ammonium_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of NH4", + "comment": "The total dry mass of ammonium aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadnh4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadno3": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_nitrate_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of NO3", + "comment": "The total dry mass of nitrate aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadno3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadoa": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_particulate_organic_matter_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Dry Aerosol Organic Matter", + "comment": "atmosphere dry organic content: This is the vertically integrated sum of atmosphere_primary_organic_content and atmosphere_secondary_organic_content (see next two table entries).", + "dimensions": "longitude latitude time", + "out_name": "loadoa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadpoa": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_primary_particulate_organic_matter_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Dry Aerosol Primary Organic Matter", + "comment": "The total dry mass of primary particulate organic aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadpoa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadso4": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of SO4", + "comment": "The total dry mass of sulfate aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadsoa": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_secondary_particulate_organic_matter_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Dry Aerosol Secondary Organic Matter", + "comment": "The total dry mass of secondary particulate organic aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadsoa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadss": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Sea-Salt Aerosol", + "comment": "The total dry mass of sea salt aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwsnl": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "liquid_water_content_of_surface_snow", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Snow Layer", + "comment": "The total mass of liquid water contained interstitially within the whole depth of the snow layer of the land portion of a grid cell divided by the area of the land portion of the cell.", + "dimensions": "longitude latitude time", + "out_name": "lwsnl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mlotst": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Mixed Layer Thickness Defined by Sigma T", + "comment": "Sigma T is potential density referenced to ocean surface.", + "dimensions": "longitude latitude time", + "out_name": "mlotst", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrfsofr": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_fraction_of_frozen_water_in_soil_moisture", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Average Layer Fraction of Frozen Moisture", + "comment": "Fraction of soil moisture mass in the solid phase in each user-defined soil layer (3D variable)", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrfsofr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrlqso": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_fraction_of_unfrozen_water_in_soil_moisture", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Average Layer Fraction of Liquid Moisture", + "comment": "Fraction of soil moisture mass in the liquid phase in each user-defined soil layer (3D variable)", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrlqso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrrob": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "subsurface_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Subsurface Runoff", + "comment": "Runoff is the liquid water which drains from land. If not specified, 'runoff' refers to the sum of surface runoff and subsurface drainage. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "mrrob", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrros": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Runoff", + "comment": "The total surface run off leaving the land portion of the grid cell (excluding drainage through the base of the soil model).", + "dimensions": "longitude latitude time", + "out_name": "mrros", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsfl": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "frozen_water_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Frozen Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in ice phase. Reported as 'missing' for grid cells occupied entirely by 'sea'", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsfl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsll": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "liquid_water_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in liquid phase. Reported as 'missing' for grid cells occupied entirely by 'sea'", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsll", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsol": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in all phases, including ice. Reported as 'missing' for grid cells occupied entirely by 'sea'", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsol", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsow": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "volume_fraction_of_condensed_water_in_soil_at_field_capacity", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Soil Wetness", + "comment": "Vertically integrated soil moisture divided by maximum allowable soil moisture above wilting point.", + "dimensions": "longitude latitude time", + "out_name": "mrsow", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrtws": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "land_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Terrestrial Water Storage", + "comment": "Mass of water in all phases and in all components including soil, canopy, vegetation, ice sheets, rivers and ground water.", + "dimensions": "longitude latitude time", + "out_name": "mrtws", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nudgincsm": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "nudging_increment_in_mass_content_of_water_in_soil", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nudging Increment of Water in Soil Moisture", + "comment": "A nudging increment refers to an amount added to parts of a model system. The phrase 'nudging_increment_in_X' refers to an increment in quantity X over a time period which should be defined in the bounds of the time coordinate. 'Content' indicates a quantity per unit area. 'Water' means water in all phases. The mass content of water in soil refers to the vertical integral from the surface down to the bottom of the soil model. The 'soil content' of a quantity refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including 'content_of_soil_layer' are used.", + "dimensions": "longitude latitude time", + "out_name": "nudgincsm", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nudgincswe": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "nudging_increment_in_snow_and_ice_amount_on_land", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nudging Increment of Water in Snow", + "comment": "A nudging increment refers to an amount added to parts of a model system. The phrase 'nudging_increment_in_X' refers to an increment in quantity X over a time period which should be defined in the bounds of the time coordinate. The surface called 'surface' means the lower boundary of the atmosphere. 'Amount' means mass per unit area. 'Snow and ice on land' means ice in glaciers, ice caps, ice sheets & shelves, river and lake ice, any other ice on a land surface, such as frozen flood water, and snow lying on such ice or on the land surface.", + "dimensions": "longitude latitude time", + "out_name": "nudgincswe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "parasolRefl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_bidirectional_reflectance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacella", + "long_name": "PARASOL Reflectance", + "comment": "Simulated reflectance from PARASOL as seen at the top of the atmosphere for 5 solar zenith angles. Valid only over ocean and for one viewing direction (viewing zenith angle of 30 degrees and relative azimuth angle 320 degrees).", + "dimensions": "longitude latitude sza5 time", + "out_name": "parasolRefl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pflw": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "liquid_water_content_of_permafrost_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Permafrost Layer", + "comment": "*where land over land*, i.e., this is the total mass of liquid water contained within the permafrost layer within the land portion of a grid cell divided by the area of the land portion of the cell.", + "dimensions": "longitude latitude time", + "out_name": "pflw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prCrop": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where crops (comment: mask=cropFrac)", + "cell_measures": "area: areacella", + "long_name": "Precipitation over Crop Tile", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time", + "out_name": "prCrop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prhmax": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: mean within hours time: maximum over hours", + "cell_measures": "area: areacella", + "long_name": "Maximum Hourly Precipitation Rate", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "prhmax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prra": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Rainfall Flux over Land", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "prra", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prrc": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "convective_rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Rainfall Rate", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "prrc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prrsn": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_rainfall_falling_onto_surface_snow", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Fraction of Rainfall on Snow", + "comment": "The fraction of the grid averaged rainfall which falls on the snow pack", + "dimensions": "longitude latitude time", + "out_name": "prrsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsnc": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "convective_snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Snowfall Flux", + "comment": "convective precipitation of all forms of water in the solid phase.", + "dimensions": "longitude latitude time", + "out_name": "prsnc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsnsn": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_solid_precipitation_falling_onto_surface_snow", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Fraction of Snowfall (Including Hail and Graupel) on Snow", + "comment": "The fraction of the snowfall which falls on the snow pack", + "dimensions": "longitude latitude time", + "out_name": "prsnsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prveg": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "precipitation_flux_onto_canopy", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation onto Canopy", + "comment": "The precipitation flux that is intercepted by the vegetation canopy (if present in model) before reaching the ground.", + "dimensions": "longitude latitude time", + "out_name": "prveg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prw": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "vertically integrated through the atmospheric column", + "dimensions": "longitude latitude time", + "out_name": "prw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "qgwr": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "downward_liquid_water_mass_flux_into_groundwater", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Groundwater Recharge from Soil Layer", + "comment": "Mass flux of water from the soil layer into ground water.", + "dimensions": "longitude latitude time", + "out_name": "qgwr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffcclwtop": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles_at_convective_liquid_water_cloud_top", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Droplet Radius in Convective Cloud", + "comment": "Droplets are liquid only. This is the effective radius 'as seen from space' over convective liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, or for some models it is the sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Reported values are weighted by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.daily data, separated to large-scale clouds, convective clouds. If any of the cloud is from more than one process (i.e. shallow convection), please provide them separately.", + "dimensions": "longitude latitude time", + "out_name": "reffcclwtop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffsclwtop": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud-Top Effective Droplet Radius in Stratiform Cloud", + "comment": "Droplets are liquid only. This is the effective radius 'as seen from space' over liquid stratiform cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, or for some models it is the sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Reported values are weighted by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.daily data, separated to large-scale clouds, convective clouds. If any of the cloud is from more than one process (i.e. shallow convection), please provide them separately.", + "dimensions": "longitude latitude time", + "out_name": "reffsclwtop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rivi": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "incoming_water_volume_transport_along_river_channel", + "units": "m3 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "River Inflow", + "comment": "Inflow of River Water into Cell", + "dimensions": "longitude latitude time", + "out_name": "rivi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rivo": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "outgoing_water_volume_transport_along_river_channel", + "units": "m3 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "River Discharge", + "comment": "Outflow of River Water from Cell", + "dimensions": "longitude latitude time", + "out_name": "rivo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rls": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_longwave_flux", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Longwave Surface Radiation", + "comment": "Net longwave surface radiation", + "dimensions": "longitude latitude time", + "out_name": "rls", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscsdiff": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Diffuse Downwelling Clear Sky Shortwave Radiation", + "comment": "Surface downwelling solar irradiance from diffuse radiation for UV calculations in clear sky conditions", + "dimensions": "longitude latitude time", + "out_name": "rsdscsdiff", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdsdiff": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_diffuse_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Diffuse Downwelling Shortwave Radiation", + "comment": "Surface downwelling solar irradiance from diffuse radiation for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsdsdiff", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rss": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Shortwave Surface Radiation", + "comment": "Net downward shortwave radiation at the surface", + "dimensions": "longitude latitude time", + "out_name": "rss", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rzwc": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer_defined_by_root_depth", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Root Zone Soil Moisture", + "comment": "'Content' indicates a quantity per unit area. The content of a soil layer is the vertical integral of the specified quantity within the layer. The quantity with standard name mass_content_of_water_in_soil_layer_defined_by_root_depth is the vertical integral between the surface and the depth to which plant roots penetrate. A coordinate variable or scalar coordinate variable with standard name root_depth can be used to specify the extent of the layer. 'Water' means water in all phases.", + "dimensions": "longitude latitude time", + "out_name": "rzwc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sbl": { + "frequency": "day", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "sbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sblnosn": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Sublimation of the Snow Free Area", + "comment": "Rate of sublimation of ice into the atmosphere from areas with no snow.", + "dimensions": "longitude latitude time", + "out_name": "sblnosn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "scldncl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_stratiform_cloud_liquid_water_particles_at_stratiform_liquid_water_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Droplet Number Concentration of Stratiform Cloud Tops", + "comment": "Droplets are liquid only. Report concentration 'as seen from space' over stratiform liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, it is better to sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "scldncl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snd": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Depth", + "comment": "where land over land, this is computed as the mean thickness of snow in the land portion of the grid cell (averaging over the entire land portion, including the snow-free fraction). Reported as 0.0 where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "snd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snm": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow Melt", + "comment": "The total surface snow melt rate on the land portion of the grid cell divided by the land area in the grid cell; report as zero for snow-free land regions and missing where there is no land.", + "dimensions": "longitude latitude time", + "out_name": "snm", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snmsl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "liquid_water_mass_flux_into_soil_due_to_surface_snow_melt", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Flowing out of Snowpack", + "comment": "Mass flow rate of water draining out of the snow pack.", + "dimensions": "longitude latitude time", + "out_name": "snmsl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snrefr": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_snow_and_ice_refreezing_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Refreezing of Water in the Snow", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The surface called 'surface' means the lower boundary of the atmosphere. 'Surface snow and ice refreezing flux' means the mass flux of surface meltwater which refreezes within the snow or firn.", + "dimensions": "longitude latitude time", + "out_name": "snrefr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snwc": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "canopy_snow_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Water Equivalent Intercepted by the Vegetation", + "comment": "Total water mass of the snowpack (liquid or frozen), averaged over a grid cell and intercepted by the canopy.", + "dimensions": "longitude latitude time", + "out_name": "snwc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sootsn": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "soot_content_of_surface_snow", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Soot Content", + "comment": "the entire land portion of the grid cell is considered, with snow soot content set to 0.0 in regions free of snow.", + "dimensions": "longitude latitude time", + "out_name": "sootsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sw": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "land_surface_liquid_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Water Storage", + "comment": "Total liquid water storage, other than soil, snow or interception storage (i.e. lakes, river channel or depression storage).", + "dimensions": "longitude latitude time", + "out_name": "sw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "t20d": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "depth_of_isosurface_of_sea_water_potential_temperature", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth of 20 degree Celsius Isotherm", + "comment": "This quantity, sometimes called the 'isotherm depth', is the depth (if it exists) at which the sea water potential temperature equals some specified value. This value should be specified in a scalar coordinate variable. Depth is the vertical distance below the surface. Potential temperature is the temperature a parcel of air or sea water would have if moved adiabatically to sea level pressure.", + "dimensions": "longitude latitude time", + "out_name": "t20d", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev19 time", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta500": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Temperature on the 500 hPa surface", + "dimensions": "longitude latitude time p500", + "out_name": "ta500", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta850": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air temperature at 850hPa", + "dimensions": "longitude latitude time p850", + "out_name": "ta850", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasmaxCrop": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean where crops time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Air Temperature over Crop Tile", + "comment": "maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')", + "dimensions": "longitude latitude time height2m", + "out_name": "tasmaxCrop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasminCrop": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean where crops time: minimum", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Air Temperature over Crop Tile", + "comment": "minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')", + "dimensions": "longitude latitude time height2m", + "out_name": "tasminCrop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tau": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "magnitude_of_surface_downward_stress", + "units": "N m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Momentum Flux", + "comment": "module of the momentum lost by the atmosphere to the surface.", + "dimensions": "longitude latitude time", + "out_name": "tau", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauu": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downward_eastward_stress", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Eastward Wind Stress", + "comment": "Downward eastward wind stress at the surface", + "dimensions": "longitude latitude time", + "out_name": "tauu", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauupbl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downward_eastward_stress_due_to_boundary_layer_mixing", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Surface Stress from Planetary Boundary Layer Scheme", + "comment": "The downward eastward stress associated with the models parameterization of the planetary boundary layer. (This request is related to a WGNE effort to understand how models parameterize the surface stresses.)", + "dimensions": "longitude latitude time", + "out_name": "tauupbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauv": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downward_northward_stress", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downward Northward Wind Stress", + "comment": "Downward northward wind stress at the surface", + "dimensions": "longitude latitude time", + "out_name": "tauv", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauvpbl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downward_northward_stress_due_to_boundary_layer_mixing", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Surface Stress from Planetary Boundary Layer Scheme", + "comment": "The downward northward stress associated with the models parameterization of the planetary boundary layer. (This request is related to a WGNE effort to understand how models parameterize the surface stresses.)", + "dimensions": "longitude latitude time", + "out_name": "tauvpbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tcs": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "canopy_temperature", + "units": "K", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Vegetation Canopy Temperature", + "comment": "Vegetation temperature, averaged over all vegetation types", + "dimensions": "longitude latitude time", + "out_name": "tcs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tdps": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "dew_point_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "2m Dewpoint Temperature", + "comment": "Dew point temperature is the temperature at which a parcel of air reaches saturation upon being cooled at constant pressure and specific humidity.", + "dimensions": "longitude latitude time", + "out_name": "tdps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tgs": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Temperature of Bare Soil", + "comment": "Surface bare soil temperature", + "dimensions": "longitude latitude time", + "out_name": "tgs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tpf": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "permafrost_layer_thickness", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Permafrost Layer Thickness", + "comment": "The mean thickness of the permafrost layer in the land portion of the grid cell. Reported as zero in permafrost-free regions.", + "dimensions": "longitude latitude time", + "out_name": "tpf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tr": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Radiative Temperature", + "comment": "Effective radiative surface temperature, averaged over the grid cell", + "dimensions": "longitude latitude time", + "out_name": "tr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tran": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "transpiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Transpiration", + "comment": "Transpiration (may include dew formation as a negative flux).", + "dimensions": "longitude latitude time", + "out_name": "tran", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ts": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "ts", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsl": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "soil_temperature", + "units": "K", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Temperature of Soil", + "comment": "Temperature of soil. Reported as missing for grid cells with no land.", + "dimensions": "longitude latitude sdepth time", + "out_name": "tsl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsland": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Land Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "tsland", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsn": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "area: mean where land time: mean (with samples weighted by snow mass)", + "cell_measures": "area: areacella", + "long_name": "Snow Internal Temperature", + "comment": "This temperature is averaged over all the snow in the grid cell that rests on land or land ice. When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as missing in regions free of snow on land.", + "dimensions": "longitude latitude time", + "out_name": "tsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsns": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Surface Temperature", + "comment": "Temperature of the snow surface as it interacts with the atmosphere, averaged over a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "tsns", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev19 time", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude plev19 time", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wtd": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "water_table_depth", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Water Table Depth", + "comment": "Depth is the vertical distance below the surface. The water table is the surface below which the soil is saturated with water such that all pore spaces are filled.", + "dimensions": "longitude latitude time", + "out_name": "wtd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev19 time", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmla": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Height of Boundary Layer", + "comment": "The atmosphere boundary layer thickness is the 'depth' or 'height' of the (atmosphere) planetary boundary layer.", + "dimensions": "longitude latitude time", + "out_name": "zmla", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_EdayZ.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_EdayZ.json new file mode 100644 index 0000000000000000000000000000000000000000..184ca33d7e6a3f55b2fd486c79ab70401649c141 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_EdayZ.json @@ -0,0 +1,288 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table EdayZ", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "1.00000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "epfy": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_eliassen_palm_flux_in_air", + "units": "m3 s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Northward Component of the Eliassen-Palm Flux", + "comment": "Transformed Eulerian Mean Diagnostics Meridional component Fy of Eliassen-Palm (EP) flux (Fy, Fz) derived from 6hr or higher frequency fields (use daily fields or 12 hr fields if the 6 hr are not available). Please use the definitions given by equation 3.5.3a of Andrews, Holton and Leovy text book, but scaled by density to have units m3 s-2.", + "dimensions": "latitude plev39 time", + "out_name": "epfy", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "epfz": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "upward_eliassen_palm_flux_in_air", + "units": "m3 s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Upward Component of the Eliassen-Palm Flux", + "comment": "Transformed Eulerian Mean Diagnostics Meridional component Fz of the Eliassen-Palm (EP) flux (Fy, Fz) derived from 6hr or higher frequency fields (use daily fields or 12 hr fields if the 6 hr are not available). Please use the definitions given by equation 3.5.3b of Andrews, Holton and Leovy text book, but scaled by density to have units m3 s-2.", + "dimensions": "latitude plev39 time", + "out_name": "epfz", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "latitude plev19 time", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "psitem": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_transformed_eulerian_mean_meridional_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Mass Streamfunction", + "comment": "Residual mass streamfunction, computed from vstar and integrated from the top of the atmosphere (on the native model grid). Reference: Andrews et al (1987): Middle Atmospheric Dynamics. Academic Press.", + "dimensions": "latitude plev39 time", + "out_name": "psitem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "latitude plev19 time", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "latitude plev39 time", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendepfd": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", + "units": "m s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Eastward Wind Due to Eliassen-Palm Flux Divergence", + "comment": "Tendency of the zonal mean zonal wind due to the divergence of the Eliassen-Palm flux.", + "dimensions": "latitude plev39 time", + "out_name": "utendepfd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendnogw": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Eastward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Tendency of the eastward wind by parameterized nonorographic gravity waves.", + "dimensions": "latitude plev39 time", + "out_name": "utendnogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendogw": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Eastward Acceleration Due to Orographic Gravity Wave Drag", + "comment": "Tendency of the eastward wind by parameterized orographic gravity waves.", + "dimensions": "latitude plev39 time", + "out_name": "utendogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendvtem": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_advection_by_northward_transformed_eulerian_mean_air_velocity", + "units": "m s-1 d-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Eastward Wind Due to TEM Northward Advection and Coriolis Term", + "comment": "Tendency of zonally averaged eastward wind, by the residual northward wind advection (on the native model grid). Reference: Andrews et al (1987): Middle Atmospheric Dynamics. Academic Press.", + "dimensions": "latitude plev39 time", + "out_name": "utendvtem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendwtem": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_advection_by_upward_transformed_eulerian_mean_air_velocity", + "units": "m s-1 d-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Eastward Wind Due to TEM Upward Advection", + "comment": "Tendency of zonally averaged eastward wind, by the residual upward wind advection (on the native model grid). Reference: Andrews et al (1987): Middle Atmospheric Dynamics. Academic Press.", + "dimensions": "latitude plev39 time", + "out_name": "utendwtem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "latitude plev19 time", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vtem": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_transformed_eulerian_mean_air_velocity", + "units": "m s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Northward Wind", + "comment": "Transformed Eulerian Mean Diagnostics v*, meridional component of the residual meridional circulation (v*, w*) derived from 6 hr or higher frequency data fields (use instantaneous daily fields or 12 hr fields if the 6 hr data are not available).", + "dimensions": "latitude plev39 time", + "out_name": "vtem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wtem": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "upward_transformed_eulerian_mean_air_velocity", + "units": "m s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Upward Wind", + "comment": "Transformed Eulerian Mean Diagnostics w*, upward component of the residual meridional circulation (v*, w*) derived from 6 hr or higher frequency data fields (use instantaneous daily fields or 12 hr fields if the 6 hr data are not available). Scale height: 6950 m", + "dimensions": "latitude plev39 time", + "out_name": "wtem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "latitude plev19 time", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Efx.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Efx.json new file mode 100644 index 0000000000000000000000000000000000000000..3f6545b1db9994ea201c633d774eaa6775e1d6a1 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Efx.json @@ -0,0 +1,306 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Efx", + "realm": "land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.00000", + "generic_levels": "alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "clayfrac": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "volume_fraction_of_clay_in_soil", + "units": "1", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Clay Fraction", + "comment": "'Volume fraction' is used in the construction volume_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude sdepth", + "out_name": "clayfrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fldcapacity": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "volume_fraction_of_condensed_water_in_soil_at_field_capacity", + "units": "%", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Field Capacity", + "comment": "The field capacity of soil is the maximum content of water it can retain against gravitational drainage. Provide as a percentage of the soil volume.", + "dimensions": "longitude latitude sdepth", + "out_name": "fldcapacity", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ksat": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "soil_hydraulic_conductivity_at_saturation", + "units": "micron s-1", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Saturated Hydraulic Conductivity", + "comment": "Hydraulic conductivity is the constant k in Darcy's Law q=-k grad h for fluid flow q (volume transport per unit area i.e. velocity) through a porous medium, where h is the hydraulic head (pressure expressed as an equivalent depth of water).", + "dimensions": "longitude latitude sdepth", + "out_name": "ksat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rld": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point", + "cell_measures": "", + "long_name": "Downwelling Longwave Radiation", + "comment": "Downwelling Longwave Radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf spectband", + "out_name": "rld", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlu": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point", + "cell_measures": "", + "long_name": "Upwelling Longwave Radiation", + "comment": "Upwelling longwave radiation (includes the fluxes at the surface and TOA)", + "dimensions": "alevhalf spectband", + "out_name": "rlu", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rootdsl": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "root_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Root Distribution", + "comment": "Mass of carbon in roots.", + "dimensions": "longitude latitude sdepth", + "out_name": "rootdsl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsd": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point", + "cell_measures": "", + "long_name": "Downwelling Shortwave Radiation", + "comment": "Downwelling shortwave radiation (includes the fluxes at the surface and top-of-atmosphere)", + "dimensions": "alevhalf spectband", + "out_name": "rsd", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsu": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: point", + "cell_measures": "", + "long_name": "Upwelling Shortwave Radiation", + "comment": "Upwelling shortwave radiation (includes also the fluxes at the surface and top of atmosphere)", + "dimensions": "alevhalf spectband", + "out_name": "rsu", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sandfrac": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "volume_fraction_of_sand_in_soil", + "units": "1", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Sand Fraction", + "comment": "'Volume fraction' is used in the construction volume_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude sdepth", + "out_name": "sandfrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftflf": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Floating Ice Shelf Area Percentage", + "comment": "Percentage of grid cell covered by floating ice shelf, the component of the ice sheet that is flowing over sea water", + "dimensions": "longitude latitude", + "out_name": "sftflf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftgrf": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Grounded Ice Sheet Area Percentage", + "comment": "Percentage of grid cell covered by grounded ice sheet", + "dimensions": "longitude latitude", + "out_name": "sftgrf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siltfrac": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "volume_fraction_of_silt_in_soil", + "units": "1", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Silt Fraction", + "comment": "Volume fraction of silt in soil", + "dimensions": "longitude latitude sdepth", + "out_name": "siltfrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "slthick": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Thickness of Soil Layers", + "comment": "'Thickness' means the vertical extent of a layer. 'Cell' refers to a model grid cell.", + "dimensions": "longitude latitude sdepth", + "out_name": "slthick", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vegHeight": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Height of the Vegetation Canopy", + "comment": "Vegetation height averaged over all vegetation types and over the vegetated fraction of a grid cell.", + "dimensions": "longitude latitude", + "out_name": "vegHeight", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wilt": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "volume_fraction_of_condensed_water_in_soil_at_wilting_point", + "units": "%", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Wilting Point", + "comment": "Percentage water content of soil by volume at the wilting point. The wilting point of soil is the water content below which plants cannot extract sufficient water to balance their loss through transpiration. ", + "dimensions": "longitude latitude sdepth", + "out_name": "wilt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Emon.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Emon.json new file mode 100644 index 0000000000000000000000000000000000000000..cdabdf0660d1c19fdc9e840b33290ffb4cf9c670 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Emon.json @@ -0,0 +1,6048 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Emon", + "realm": "land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "alevel olevel", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "c13Land": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 13C in All Terrestrial Carbon Pools", + "comment": "Carbon-13 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass), litter (dead plant material in or above the soil), soil, and forestry and agricultural products (e.g. paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock).", + "dimensions": "longitude latitude time", + "out_name": "c13Land", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c13Litter": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_13C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 13C in Litter Pool", + "comment": "Carbon-13 mass content per unit area litter (dead plant material in or above the soil).", + "dimensions": "longitude latitude time", + "out_name": "c13Litter", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c13Soil": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_13C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 13C in Soil Pool", + "comment": "Carbon-13 mass content per unit area in soil.", + "dimensions": "longitude latitude time", + "out_name": "c13Soil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c13Veg": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_mass_content_of_13C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 13C in Vegetation", + "comment": "Carbon-13 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass).", + "dimensions": "longitude latitude time", + "out_name": "c13Veg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c14Land": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 14C in All Terrestrial Carbon Pools", + "comment": "Carbon-14 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass), litter (dead plant material in or above the soil), soil, and forestry and agricultural products (e.g. paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock).", + "dimensions": "longitude latitude time", + "out_name": "c14Land", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c14Litter": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_14C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 14C in Litter Pool", + "comment": "Carbon-14 mass content per unit area litter (dead plant material in or above the soil).", + "dimensions": "longitude latitude time", + "out_name": "c14Litter", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c14Soil": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_14C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 14C in Soil Pool", + "comment": "Carbon-14 mass content per unit area in soil.", + "dimensions": "longitude latitude time", + "out_name": "c14Soil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c14Veg": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_mass_content_of_14C", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of 14C in Vegetation", + "comment": "Carbon-14 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass).", + "dimensions": "longitude latitude time", + "out_name": "c14Veg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLand": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon in All Terrestrial Carbon Pools", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "cLand", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLand1": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon in All Terrestrial Carbon Pools", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "cLand1", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitterCwd": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "wood_debris_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Coarse Woody Debris", + "comment": "'Content' indicates a quantity per unit area. 'Wood debris' means dead organic matter composed of coarse wood. It is distinct from fine litter. The precise distinction between 'fine' and 'coarse' is model dependent.", + "dimensions": "longitude latitude time", + "out_name": "cLitterCwd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitterGrass": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Litter on Grass Tiles", + "comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.", + "dimensions": "longitude latitude time", + "out_name": "cLitterGrass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitterShrub": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Litter on Shrub Tiles", + "comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.", + "dimensions": "longitude latitude time", + "out_name": "cLitterShrub", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitterSubSurf": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "subsurface_litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Below-Ground Litter", + "comment": "subsurface litter pool fed by root inputs.", + "dimensions": "longitude latitude time", + "out_name": "cLitterSubSurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitterSurf": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Above-Ground Litter", + "comment": "Surface or near-surface litter pool fed by leaf and above-ground litterfall", + "dimensions": "longitude latitude time", + "out_name": "cLitterSurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitterTree": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: time: mean where trees (comment: mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Litter on Tree Tiles", + "comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.", + "dimensions": "longitude latitude time", + "out_name": "cLitterTree", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cMisc": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "miscellaneous_living_matter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Other Living Compartments on Land", + "comment": "e.g., labile, fruits, reserves, etc.", + "dimensions": "longitude latitude time", + "out_name": "cMisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cOther": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "miscellaneous_living_matter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation Components Other than Leaves, Stems and Roots", + "comment": "E.g. fruits, seeds, etc.", + "dimensions": "longitude latitude time", + "out_name": "cOther", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoil": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Model Soil Pool", + "comment": "Carbon mass in the full depth of the soil model.", + "dimensions": "longitude latitude time", + "out_name": "cSoil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilAbove1m": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Soil Pool Above 1m Depth", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time sdepth10", + "out_name": "cSoilAbove1m", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilGrass": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Soil on Grass Tiles", + "comment": "'Content' indicates a quantity per unit area. The 'soil content' of a quantity refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including content_of_soil_layer are used.", + "dimensions": "longitude latitude time", + "out_name": "cSoilGrass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilLevels": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Each Model Soil Level (Summed over All Soil Carbon Pools in That Level)", + "comment": "for models with vertically discretised soil carbon, report total soil carbon for each level", + "dimensions": "longitude latitude sdepth time", + "out_name": "cSoilLevels", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilPools": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Each Model Soil Pool (Summed over Vertical Levels)", + "comment": "For models with multiple soil carbon pools, report each pool here. If models also have vertical discretisation these should be aggregated", + "dimensions": "longitude latitude soilpools time", + "out_name": "cSoilPools", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilShrub": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Soil on Shrub Tiles", + "comment": "'Content' indicates a quantity per unit area. The 'soil content' of a quantity refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including content_of_soil_layer are used.", + "dimensions": "longitude latitude time", + "out_name": "cSoilShrub", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilTree": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: time: mean where trees (comment: mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Soil on Tree Tiles", + "comment": "'Content' indicates a quantity per unit area. The 'soil content' of a quantity refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including content_of_soil_layer are used.", + "dimensions": "longitude latitude time", + "out_name": "cSoilTree", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cStem": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "stem_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Stem", + "comment": "including sapwood and hardwood.", + "dimensions": "longitude latitude time", + "out_name": "cStem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cTotFireLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Loss from Natural and Managed Fire on Land-Use Tile, Including Deforestation Fires [kgC m-2 s-1]", + "comment": "Different from LMON this flux should include all fires occurring on the land use tile, including natural, man-made and deforestation fires", + "dimensions": "longitude latitude landUse time", + "out_name": "cTotFireLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cVegGrass": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation on Grass Tiles", + "comment": "'Content' indicates a quantity per unit area. 'Vegetation' means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. 'producers' of biomass using carbon obtained from carbon dioxide.", + "dimensions": "longitude latitude time", + "out_name": "cVegGrass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cVegShrub": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation on Shrub Tiles", + "comment": "'Content' indicates a quantity per unit area. 'Vegetation' means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. 'producers' of biomass using carbon obtained from carbon dioxide.", + "dimensions": "longitude latitude time", + "out_name": "cVegShrub", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cVegTree": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: time: mean where trees (comment: mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation on Tree Tiles", + "comment": "'Content' indicates a quantity per unit area. 'Vegetation' means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. 'producers' of biomass using carbon obtained from carbon dioxide.", + "dimensions": "longitude latitude time", + "out_name": "cVegTree", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cWood": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "stem_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Wood", + "comment": "Carbon mass per unit area in wood, including sapwood and hardwood.", + "dimensions": "longitude latitude time", + "out_name": "cWood", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfadDbze94": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CloudSat Radar Reflectivity CFAD", + "comment": "CFAD (Cloud Frequency Altitude Diagrams) are frequency distributions of radar reflectivity (or lidar scattering ratio) as a function of altitude. The variable cfadDbze94 is defined as the simulated relative frequency of occurrence of radar reflectivity in sampling volumes defined by altitude bins. The radar is observing at a frequency of 94GHz.", + "dimensions": "longitude latitude alt40 dbze time", + "out_name": "cfadDbze94", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfadLidarsr532": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Scattering Ratio CFAD", + "comment": "CFAD (Cloud Frequency Altitude Diagrams) are frequency distributions of radar reflectivity (or lidar scattering ratio) as a function of altitude. The variable cfadLidarsr532 is defined as the simulated relative frequency of lidar scattering ratio in sampling volumes defined by altitude bins. The lidar is observing at a wavelength of 532nm.", + "dimensions": "longitude latitude alt40 scatratio time", + "out_name": "cfadLidarsr532", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clcalipsoice": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "ice_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Ice Cloud Percentage", + "comment": "Percentage cloud cover in CALIPSO standard atmospheric layers.", + "dimensions": "longitude latitude alt40 time", + "out_name": "clcalipsoice", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clcalipsoliq": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "liquid_water_cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "CALIPSO Liquid Cloud Percentage", + "comment": "Percentage liquid water ice cloud cover in CALIPSO standard atmospheric layers.", + "dimensions": "longitude latitude alt40 time", + "out_name": "clcalipsoliq", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cldicemxrat27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_ice_mixing_ratio", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Ice Mixing Ratio", + "comment": "Cloud ice mixing ratio", + "dimensions": "longitude latitude plev27 time", + "out_name": "cldicemxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cldnci": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Crystal Number Concentration of Cloud Tops", + "comment": "Concentration 'as seen from space' over ice-cloud portion of grid cell. This is the value from uppermost model layer with ice cloud or, if available, it is the sum over all ice cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total ice cloud top fraction (as seen from TOA) of each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "cldnci", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cldncl": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Droplet Number Concentration of Cloud Tops", + "comment": "Droplets are liquid only. Report concentration 'as seen from space' over liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, it is better to sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.", + "dimensions": "longitude latitude time", + "out_name": "cldncl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cldnvi": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_number_content_of_cloud_droplets", + "units": "m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Column Integrated Cloud Droplet Number", + "comment": "Droplets are liquid only. Values are weighted by liquid cloud fraction in each layer when vertically integrating, and for monthly means the samples are weighted by total liquid cloud fraction (as seen from TOA).", + "dimensions": "longitude latitude time", + "out_name": "cldnvi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cldwatmxrat27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_liquid_water_mixing_ratio", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Cloud Water Mixing Ratio", + "comment": "Cloud water mixing ratio", + "dimensions": "longitude latitude plev27 time", + "out_name": "cldwatmxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "climodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "ice_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Ice Cloud Area Percentage", + "comment": "Total ice cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Moderate Resolution Imaging Spectroradiometer (MODIS). ", + "dimensions": "longitude latitude time", + "out_name": "climodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clmisr": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cloud Cover as Calculated by the MISR Simulator (Including Error Flag)", + "comment": "Cloud percentage in spectral bands and layers as observed by the Multi-angle Imaging SpectroRadiometer (MISR) instrument. The first layer in each profile is reserved for a retrieval error flag.", + "dimensions": "longitude latitude alt16 tau time", + "out_name": "clmisr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cltmodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Moderate Resolution Imaging Spectroradiometer (MODIS). Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "cltmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwmodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "liquid_water_cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Liquid Cloud Percentage", + "comment": "Mass of cloud liquid water, as seen by the Moderate Resolution Imaging Spectroradiometer (MODIS). Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clwmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "clwvic": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_convective_cloud_condensed_water", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Condensed Water Path", + "comment": "calculate mass of convective condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.", + "dimensions": "longitude latitude time", + "out_name": "clwvic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co23D": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_carbon_dioxide_tracer_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "3D-Field of Transported CO2", + "comment": "report 3D field of model simulated atmospheric CO2 mass mixing ration on model levels", + "dimensions": "longitude latitude alevel time", + "out_name": "co23D", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2s": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "1e-06", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Atmosphere CO2", + "comment": "As co2, but only at the surface", + "dimensions": "longitude latitude time", + "out_name": "co2s", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "columnmassflux": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Column Integrated Mass Flux", + "comment": "Column integral of (mcu-mcd)", + "dimensions": "longitude latitude time", + "out_name": "columnmassflux", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "conccmcn": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Number Concentration Coarse Mode Aerosol", + "comment": "includes all particles with diameter larger than 1 micron", + "dimensions": "longitude latitude alevel time", + "out_name": "conccmcn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "conccn": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_ambient_aerosol_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Number Concentration", + "comment": "'Number concentration' means the number of particles or other specified objects per unit volume. 'Aerosol' means the system of suspended liquid or solid particles in air (except cloud droplets) and their carrier gas, the air itself. 'Ambient_aerosol' means that the aerosol is measured or modelled at the ambient state of pressure, temperature and relative humidity that exists in its immediate environment. 'Ambient aerosol particles' are aerosol particles that have taken up ambient water through hygroscopic growth. The extent of hygroscopic growth depends on the relative humidity and the composition of the particles.", + "dimensions": "longitude latitude alevel time", + "out_name": "conccn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "concdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_concentration_of_dust_dry_aerosol_particles_in_air", + "units": "kg m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Concentration of Dust", + "comment": "Mass concentration means mass per unit volume and is used in the construction mass_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. 'Aerosol' means the system of suspended liquid or solid particles in air (except cloud droplets) and their carrier gas, the air itself. Aerosol particles take up ambient water (a process known as hygroscopic growth) depending on the relative humidity and the composition of the particles. 'Dry aerosol particles' means aerosol particles without any water uptake.", + "dimensions": "longitude latitude alevel time", + "out_name": "concdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "concnmcn": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air", + "units": "m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Number Concentration of Nucleation Mode Aerosol", + "comment": "includes all particles with diameter smaller than 3 nm", + "dimensions": "longitude latitude alevel time", + "out_name": "concnmcn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cropFracC3": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by C3 Crops", + "comment": "Percentage of entire grid cell covered by C3 crops", + "dimensions": "longitude latitude time typec3crop", + "out_name": "cropFracC3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cropFracC4": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by C4 Crops", + "comment": "Percentage of entire grid cell covered by C4 crops", + "dimensions": "longitude latitude time typec4crop", + "out_name": "cropFracC4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "depdust": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Deposition Rate of Dust", + "comment": "Fdry mass deposition rate of dust", + "dimensions": "longitude latitude time", + "out_name": "depdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diabdrag": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_numerical_artefacts", + "units": "m s-2", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Eastward Wind from Numerical Artefacts", + "comment": "Other sub-grid scale/numerical zonal drag excluding that already provided for the parameterized orographic and non-orographic gravity waves. This would be used to calculate the total 'diabatic drag'. Contributions to this additional drag such Rayleigh friction and diffusion that can be calculated from the monthly mean wind fields should not be included, but details (e.g. coefficients) of the friction and/or diffusion used in the model should be provided separately.", + "dimensions": "longitude latitude plev19 time", + "out_name": "diabdrag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissi14c": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Inorganic Carbon-14 Concentration", + "comment": "Dissolved inorganic carbon-14 (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissi14c", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ec550aer": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "volume_extinction_coefficient_in_air_due_to_ambient_aerosol_particles", + "units": "m-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Aerosol Extinction Coefficient", + "comment": "Aerosol volume extinction coefficient at 550nm wavelength.", + "dimensions": "longitude latitude alevel time lambda550nm", + "out_name": "ec550aer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evspsblpot": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "water_potential_evaporation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Potential Evapotranspiration", + "comment": "at surface; potential flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)", + "dimensions": "longitude latitude time", + "out_name": "evspsblpot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "exparag": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downward Flux of Aragonite", + "comment": "Downward flux of Aragonite", + "dimensions": "longitude latitude olevel time", + "out_name": "exparag", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expcalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downward Flux of Calcite", + "comment": "Downward flux of Calcite", + "dimensions": "longitude latitude olevel time", + "out_name": "expcalc", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expfe": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_iron_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sinking Particulate Iron Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude olevel time", + "out_name": "expfe", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expn": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sinking Particulate Organic Nitrogen Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude olevel time", + "out_name": "expn", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expp": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sinking Particulate Organic Phosphorus Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude olevel time", + "out_name": "expp", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expsi": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_silicon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sinking Particulate Silicon Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude olevel time", + "out_name": "expsi", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fAnthDisturb": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux from Vegetation, Litter or Soil Pools into the Atmosphere Due to any Human Activity [kgC m-2 s-1]", + "comment": "Anthropogenic flux of carbon as carbon dioxide into the atmosphere. That is, emissions influenced, caused, or created by human activity. Anthropogenic emission of carbon dioxide includes fossil fuel use, cement production, agricultural burning and sources associated with anthropogenic land use change, except forest regrowth.", + "dimensions": "longitude latitude time", + "out_name": "fAnthDisturb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fBNF": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_soil_and_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Biological Nitrogen Fixation", + "comment": "The fixation (uptake of nitrogen gas directly from the atmosphere) of nitrogen due to biological processes.", + "dimensions": "longitude latitude time", + "out_name": "fBNF", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fCLandToOcean": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Lateral Transfer of Carbon out of Grid Cell That Eventually Goes into Ocean", + "comment": "leached carbon etc that goes into run off or river routing and finds its way into ocean should be reported here.", + "dimensions": "longitude latitude time", + "out_name": "fCLandToOcean", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fDeforestToAtmos": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Deforested Biomass That Goes into Atmosphere as a Result of Anthropogenic Land-Use Change [kgC m-2 s-1]", + "comment": "When land use change results in deforestation of natural vegetation (trees or grasslands) then natural biomass is removed. The treatment of deforested biomass differs significantly across models, but it should be straight-forward to compare deforested biomass across models.", + "dimensions": "longitude latitude time", + "out_name": "fDeforestToAtmos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fDeforestToProduct": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Deforested Biomass That Goes into Product Pool as a Result of Anthropogenic Land-Use Change", + "comment": "When land use change results in deforestation of natural vegetation (trees or grasslands) then natural biomass is removed. The treatment of deforested biomass differs significantly across models, but it should be straight-forward to compare deforested biomass across models.", + "dimensions": "longitude latitude time", + "out_name": "fDeforestToProduct", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fFireAll": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to CO2 Emission from Fire Including All Sources [kgC m-2 s-1]", + "comment": "From all sources, Including natural, anthropogenic and Land-use change. Only total fire emissions can be compared to observations.", + "dimensions": "longitude latitude time", + "out_name": "fFireAll", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fFireNat": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to CO2 Emission from Natural Fire [kgC m-2 s-1]", + "comment": "CO2 emissions from natural fires", + "dimensions": "longitude latitude time", + "out_name": "fFireNat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fHarvestToAtmos": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Harvested Biomass That Goes Straight into Atmosphere as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "any harvested carbon that is assumed to decompose immediately into the atmosphere is reported here", + "dimensions": "longitude latitude time", + "out_name": "fHarvestToAtmos", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fHarvestToProduct": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_forestry_and_agricultural_products_due_to_crop_harvesting", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Harvested Biomass That Goes into Product Pool", + "comment": "be it food or wood harvest, any carbon that is subsequently stored is reported here", + "dimensions": "longitude latitude time", + "out_name": "fHarvestToProduct", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fLitterFire": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_litter_in_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux from Litter, CWD or any non-Living Pool into Atmosphere Due to CO2 Emission from All Fire [kgC m-2 s-1]", + "comment": "Required for unambiguous separation of vegetation and soil + litter turnover times, since total fire flux draws from both sources", + "dimensions": "longitude latitude time", + "out_name": "fLitterFire", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fLuc": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Carbon Mass Flux into Atmosphere Due to Land-Use Change [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to human changes to land (excluding forest regrowth) accounting possibly for different time-scales related to fate of the wood, for example.", + "dimensions": "longitude latitude time", + "out_name": "fLuc", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fLulccAtmLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_land_use_or_land_cover_change_excluding_forestry_and_agricultural_products", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Carbon Transferred Directly to Atmosphere Due to any Land-Use or Land-Cover Change Activities [kgC m-2 s-1]", + "comment": "This annual mean flux refers to the transfer of carbon directly to the atmosphere due to any land-use or land-cover change activities. Include carbon transferred due to deforestation or agricultural directly into atmosphere, and emissions form anthropogenic pools into atmosphere", + "dimensions": "longitude latitude landUse time", + "out_name": "fLulccAtmLut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fLulccProductLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Carbon Harvested Due to Land-Use or Land-Cover Change Process That Enters Anthropogenic Product Pools on Tile", + "comment": "This annual mean flux refers to the transfer of carbon primarily through harvesting land use into anthropogenic product pools, e.g.,deforestation or wood harvesting from primary or secondary lands, food harvesting on croplands, harvesting (grazing) by animals on pastures.", + "dimensions": "longitude latitude landUse time", + "out_name": "fLulccProductLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fLulccResidueLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_flux_into_litter_and_soil_due_to_anthropogenic_land_use_or_land_cover_change", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Carbon Transferred to Soil or Litter Pools Due to Land-Use or Land-Cover Change Processes on Tile", + "comment": "This annual mean flux refers to the transfer of carbon into soil or litter pools due to any land use or land-cover change activities", + "dimensions": "longitude latitude landUse time", + "out_name": "fLulccResidueLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fN2O": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrous_oxide_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Land N2O Flux", + "comment": "Surface upward flux of nitrous oxide (N2O) from vegetation (any living plants e.g. trees, shrubs, grass), litter (dead plant material in or above the soil), soil.", + "dimensions": "longitude latitude time", + "out_name": "fN2O", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNAnthDisturb": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_anthropogenic_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass Flux out of Land Due to any Human Activity", + "comment": "will require some careful definition to make sure we capture everything - any human activity that releases nitrogen from land instead of into product pool goes here. E.g. Deforestation fire, harvest assumed to decompose straight away, grazing...", + "dimensions": "longitude latitude time", + "out_name": "fNAnthDisturb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNLandToOcean": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_into_sea_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Lateral Transfer of Nitrogen out of Grid Cell That Eventually Goes into Ocean", + "comment": "leached nitrogen etc that goes into run off or river routing and finds its way into ocean should be reported here.", + "dimensions": "longitude latitude time", + "out_name": "fNLandToOcean", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNLitterSoil": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_flux_into_soil_from_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Mass Flux from Litter to Soil", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Litter' is dead plant material in or above the soil.", + "dimensions": "longitude latitude time", + "out_name": "fNLitterSoil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNOx": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nox_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Land NOx Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. 'Nox' means a combination of two radical species containing nitrogen and oxygen NO+NO2. 'Vegetation' means any living plants e.g. trees, shrubs, grass. 'Litter' is dead plant material in or above the soil.", + "dimensions": "longitude latitude time", + "out_name": "fNOx", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNProduct": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_flux_into_forestry_and_agricultural_products_due_to_anthropogenic_land_use_or_land_cover_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Deforested or Harvested Biomass as a Result of Anthropogenic Land-Use or Change", + "comment": "When land use change results in deforestation of natural vegetation (trees or grasslands) then natural biomass is removed. The treatment of deforested biomass differs significantly across models, but it should be straight-forward to compare deforested biomass across models.", + "dimensions": "longitude latitude time", + "out_name": "fNProduct", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNVegLitter": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_flux_into_litter_from_vegetation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Mass Flux from Vegetation to Litter", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Litter' is dead plant material in or above the soil. 'Vegetation' means any living plants e.g. trees, shrubs, grass.", + "dimensions": "longitude latitude time", + "out_name": "fNVegLitter", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNVegSoil": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_flux_into_soil_from_vegetation_excluding_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Mass Flux from Vegetation Directly to Soil", + "comment": "In some models part of nitrogen (e.g., root exudate) can go directly into the soil pool without entering litter.", + "dimensions": "longitude latitude time", + "out_name": "fNVegSoil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNdep": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Dry and Wet Deposition of Reactive Nitrogen onto Land", + "comment": "Surface deposition rate of nitrogen.", + "dimensions": "longitude latitude time", + "out_name": "fNdep", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNfert": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_soil_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fertilization", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Added for Cropland Fertilisation (Artificial and Manure)", + "comment": "Total Nitrogen added for cropland fertilisation (artificial and manure). Relative to total land area of a grid cell, not relative to agricultural area", + "dimensions": "longitude latitude time", + "out_name": "fNfert", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNgas": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Lost to the Atmosphere (Sum of NHx, NOx, N2O, N2)", + "comment": "Total flux of Nitrogen from the land into the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "fNgas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNgasFire": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_emission_from_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Lost to the Atmosphere (Including NHx, NOx, N2O, N2) from Fire", + "comment": "Flux of Nitrogen from the land into the atmosphere due to fire", + "dimensions": "longitude latitude time", + "out_name": "fNgasFire", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNgasNonFire": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_due_to_all_land_processes_excluding_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Lost to the Atmosphere (Including NHx, NOx, N2O, N2) from All Processes Except Fire", + "comment": "Flux of Nitrogen from the land into the atmosphere due to all processes other than fire", + "dimensions": "longitude latitude time", + "out_name": "fNgasNonFire", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNleach": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_out_of_soil_due_to_leaching_and_runoff", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Loss to Leaching or Runoff (Sum of Ammonium, Nitrite and Nitrate)", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase 'due_to_' process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'Leaching' means the loss of water soluble chemical species from soil. Runoff is the liquid water which drains from land. If not specified, 'runoff' refers to the sum of surface runoff and subsurface drainage.", + "dimensions": "longitude latitude time", + "out_name": "fNleach", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNloss": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_vegetation_and_litter_and_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen Lost (Including NHx, NOx, N2O, N2 and Leaching)", + "comment": "Not all models split losses into gaseous and leaching", + "dimensions": "longitude latitude time", + "out_name": "fNloss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNnetmin": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_nitrogen_compounds_expressed_as_nitrogen_out_of_litter_and_soil_due_to_immobilisation_and_remineralization", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Nitrogen Release from Soil and Litter as the Outcome of Nitrogen Immobilisation and Gross Mineralisation", + "comment": "Loss of soil nitrogen through remineralization and immobilisation. Remineralization is the degradation of organic matter into inorganic forms of carbon, nitrogen, phosphorus and other micronutrients, which consumes oxygen and releases energy. Immobilisation of nitrogen refers to retention of nitrogen by micro-organisms under certain conditions, making it unavailable for plants.", + "dimensions": "longitude latitude time", + "out_name": "fNnetmin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fNup": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_vegetation_mass_content_of_nitrogen_compounds_expressed_as_nitrogen_due_to_fixation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Plant Nitrogen Uptake (Sum of Ammonium and Nitrate) Irrespective of the Source of Nitrogen", + "comment": "The uptake of nitrogen by fixation: nitrogen fixation means the uptake of nitrogen gas directly from the atmosphere. ", + "dimensions": "longitude latitude time", + "out_name": "fNup", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fProductDecomp": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Decomposition out of Product Pools to CO2 in Atmosphere as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Flux of CO2 from product pools into the atmosphere. Examples of 'forestry and agricultural products' are paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock. Models that simulate land use changes have one or more pools of carbon that represent these products in order to conserve carbon and allow its eventual release into the atmosphere, for example, when the products decompose in landfill sites.", + "dimensions": "longitude latitude time", + "out_name": "fProductDecomp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fProductDecompLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_forestry_and_agricultural_products", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Net Carbon Mass Flux from Wood and Agricultural Product Pools on Land Use Tile into Atmosphere [kgC m-2 s-1]", + "comment": "Flux of CO2 from product pools into the atmosphere. Examples of 'forestry and agricultural products' are paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock. Models that simulate land use changes have one or more pools of carbon that represent these products in order to conserve carbon and allow its eventual release into the atmosphere, for example, when the products decompose in landfill sites. Produce this variable i a model has explicit anthropogenic product pools by land use tile", + "dimensions": "longitude latitude landUse time", + "out_name": "fProductDecompLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fVegFire": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_vegetation_in_fires", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux from Vegetation into Atmosphere Due to CO2 Emission from All Fire [kgC m-2 s-1]", + "comment": "Required for unambiguous separation of vegetation and soil + litter turnover times, since total fire flux draws from both sources", + "dimensions": "longitude latitude time", + "out_name": "fVegFire", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fVegLitterMortality": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Litter as a Result of Mortality", + "comment": "needed to separate changing vegetation C turnover times resulting from changing allocation versus changing mortality", + "dimensions": "longitude latitude time", + "out_name": "fVegLitterMortality", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fVegLitterSenescence": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Litter as a Result of Leaf, Branch, and Root Senescence", + "comment": "needed to separate changing vegetation C turnover times resulting from changing allocation versus changing mortality", + "dimensions": "longitude latitude time", + "out_name": "fVegLitterSenescence", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fVegSoilMortality": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_soil_from_vegetation_due_to_mortality", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Soil as a Result of Mortality", + "comment": "needed to separate changing vegetation C turnover times resulting from changing allocation versus changing mortality", + "dimensions": "longitude latitude time", + "out_name": "fVegSoilMortality", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fVegSoilSenescence": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_soil_from_vegetation_due_to_senescence", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Soil as a Result of Leaf, Branch, and Root Senescence", + "comment": "needed to separate changing vegetation C turnover times resulting from changing allocation versus changing mortality", + "dimensions": "longitude latitude time", + "out_name": "fVegSoilSenescence", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fahLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_heat_flux_due_to_anthropogenic_energy_consumption", + "units": "W m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Anthropogenic Heat Flux Generated from non-Renewable Human Primary Energy Consumption", + "comment": "Anthropogenic heat flux generated from non-renewable human primary energy consumption, including energy use by vehicles, commercial and residential buildings, industry, and power plants. Primary energy refers to energy in natural resources, fossil and nonfossil, before conversion into other forms, such as electricity.", + "dimensions": "longitude latitude landUse time", + "out_name": "fahLut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fg14co2": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon-14 as 14CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of carbon-14 as CO2 (positive into ocean)", + "dimensions": "longitude latitude time", + "out_name": "fg14co2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "flandice": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_land_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water from Land Ice", + "comment": "Computed as the water flux into the ocean due to land ice (runoff water from surface and base of land ice or melt from base of ice shelf or vertical ice front) into the ocean divided by the area ocean portion of the grid cell", + "dimensions": "longitude latitude time", + "out_name": "flandice", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "flashrate": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "frequency_of_lightning_flashes_per_unit_area", + "units": "km-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Lightning Flash Rate", + "comment": "proposed name: lightning_flash_rate (units to be interpreted as 'counts km-2 s-1)", + "dimensions": "longitude latitude time", + "out_name": "flashrate", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fracLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Grid Cell for Each Land-Use Tile", + "comment": "End of year values (not annual mean); note that percentage should be reported as percentage of land grid cell (example: frac_lnd = 0.5, frac_ocn = 0.5, frac_crop_lnd = 0.2 (of land portion of grid cell), then frac_lut(crop) = 0.5*0.2 = 0.1)", + "dimensions": "longitude latitude landUse time", + "out_name": "fracLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "gppGrass": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Gross Primary Production on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total GPP of grass in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "gppGrass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "gppLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Gross Primary Production on Land-Use Tile as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "The rate of synthesis of biomass from inorganic precursors by autotrophs ('producers') expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production. Reported on land-use tiles.", + "dimensions": "longitude latitude landUse time", + "out_name": "gppLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "gppShrub": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Gross Primary Production on Shrub Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total GPP of shrubs in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "gppShrub", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "gppTree": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where trees (comment: mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Gross Primary Production on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total GPP of trees in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "gppTree", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "gppc13": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_13C", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-13 Mass Flux out of Atmosphere Due to Gross Primary Production on Land [kgC m-2 s-1]", + "comment": "The rate of synthesis of carbon-13 in biomass from inorganic precursors by autotrophs ('producers') expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production. ", + "dimensions": "longitude latitude time", + "out_name": "gppc13", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "gppc14": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_14C", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-14 Mass Flux out of Atmosphere Due to Gross Primary Production on Land [kgC m-2 s-1]", + "comment": "The rate of synthesis of carbon-14 in biomass from inorganic precursors by autotrophs ('producers') expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production. ", + "dimensions": "longitude latitude time", + "out_name": "gppc14", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "grassFracC3": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "C3 Natural Grass Area Percentage", + "comment": "Percentage of entire grid cell covered by C3 natural grass.", + "dimensions": "longitude latitude time typec3natg", + "out_name": "grassFracC3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "grassFracC4": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "C4 Natural Grass Area Percentage", + "comment": "Percentage of entire grid cell covered by C4 natural grass.", + "dimensions": "longitude latitude time typec4natg", + "out_name": "grassFracC4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "grplmxrat27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_graupel_in_air", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Graupel Mixing Ratio", + "comment": "Graupel mixing ratio", + "dimensions": "longitude latitude plev27 time", + "out_name": "grplmxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hflsLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Latent Heat Flux on Land-Use Tile", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude landUse time", + "out_name": "hflsLut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfssLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Sensible Heat Flux on Land-Use Tile", + "comment": "Upward sensible heat flux on land use tiles. The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude landUse time", + "out_name": "hfssLut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hursminCrop": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean where crops time: minimum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Relative Humidity over Crop Tile", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hursminCrop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev7h time", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev27 time", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hussLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity on Land-Use Tile", + "comment": "Normally, the specific humidity should be reported at the 2 meter height", + "dimensions": "longitude latitude landUse time height2m", + "out_name": "hussLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intuadse": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_atmosphere_dry_static_energy_transport_across_unit_distance", + "units": "MJ m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Eastward Dry Statice Energy Transport", + "comment": "Vertically integrated eastward dry static energy transport (cp.T +zg).v (Mass_weighted_vertical integral of the product of eastward wind by dry static_energy per mass unit)", + "dimensions": "longitude latitude time", + "out_name": "intuadse", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intuaw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_atmosphere_water_transport_across_unit_distance", + "units": "kg m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Eastward Moisture Transport", + "comment": "Vertically integrated Eastward moisture transport (Mass weighted vertical integral of the product of eastward wind by total water mass per unit mass)", + "dimensions": "longitude latitude time", + "out_name": "intuaw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intvadse": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_atmosphere_dry_static_energy_transport_across_unit_distance", + "units": "MJ m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Northward Dry Static Energy Transport", + "comment": "Vertically integrated northward dry static energy transport (cp.T +zg).v (Mass_weighted_vertical integral of the product of northward wind by dry static_energy per mass unit)", + "dimensions": "longitude latitude time", + "out_name": "intvadse", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intvaw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_atmosphere_water_transport_across_unit_distance", + "units": "kg m-1 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Vertically Integrated Northward Moisture Transport", + "comment": "Vertically integrated Northward moisture transport (Mass_weighted_vertical integral of the product of northward wind by total water mass per unit mass)", + "dimensions": "longitude latitude time", + "out_name": "intvaw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "irrLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_downward_mass_flux_of_water_due_to_irrigation", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Irrigation Flux Including any Irrigation for Crops, Trees, Pasture, or Urban Lawns", + "comment": "Mass flux of water due to irrigation.", + "dimensions": "longitude latitude landUse time", + "out_name": "irrLut", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "jpdftaureicemodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Joint Distribution of Optical Thickness and Particle Size, Ice", + "comment": "Joint probability distribution function, giving probability of cloud as a function of optical thickness and particle size, as measured by MODIS. For cloud ice particles.", + "dimensions": "longitude latitude effectRadIc tau time", + "out_name": "jpdftaureicemodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "jpdftaureliqmodis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction_in_atmosphere_layer", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "MODIS Optical Thickness-Particle Size Joint Distribution, Liquid", + "comment": "Joint probability distribution function, giving probability of cloud as a function of optical thickness and particle size, as measured by MODIS. For liquid cloud particles.", + "dimensions": "longitude latitude effectRadLi tau time", + "out_name": "jpdftaureliqmodis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "laiLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "leaf_area_index", + "units": "1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Leaf Area Index on Land-Use Tile", + "comment": "A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows.", + "dimensions": "longitude latitude landUse time", + "out_name": "laiLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loaddust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_dust_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Dust", + "comment": "The total dry mass of dust aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loaddust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadso4": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_sulfate_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of SO4", + "comment": "The total dry mass of sulfate aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "loadss": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_sea_salt_dry_aerosol_particles", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Load of Sea-Salt Aerosol", + "comment": "The total dry mass of sea salt aerosol particles per unit area.", + "dimensions": "longitude latitude time", + "out_name": "loadss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwsrfasdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "All-Sky Surface Longwave Radiative Flux Due to Dust", + "comment": "The direct radiative effect refers to the instantaneous radiative impact on the Earth's energy balance, excluding secondary effects such as changes in cloud cover.", + "dimensions": "longitude latitude time", + "out_name": "lwsrfasdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwsrfcsdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Clear-Sky Surface Longwave Radiative Flux Due to Dust", + "comment": "The direct radiative effect refers to the instantaneous radiative impact on the Earth's energy balance, excluding secondary effects such as changes in cloud cover. Calculating in clear-sky conditions.", + "dimensions": "longitude latitude time", + "out_name": "lwsrfcsdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwtoaasdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_instantaneous_longwave_forcing", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA All-Sky Longwave Radiative Forcing Due to Dust", + "comment": "Instantaneous forcing is the radiative flux change caused instantaneously by an imposed change in radiative forcing agent (greenhouse gases, aerosol, solar radiation, etc.).", + "dimensions": "longitude latitude time", + "out_name": "lwtoaasdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwtoacsaer": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_instantaneous_longwave_forcing", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Clear-Sky Longwave Radiative Forcing Due to Aerosols", + "comment": "Instantaneous forcing is the radiative flux change caused instantaneously by an imposed change in radiative forcing agent (greenhouse gases, aerosol, solar radiation, etc.).", + "dimensions": "longitude latitude time", + "out_name": "lwtoacsaer", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwtoacsdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_longwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Clear-Sky Longwave Radiative Forcing Due to Dust", + "comment": "The direct radiative effect refers to the instantaneous radiative impact on the Earth's energy balance, excluding secondary effects such as changes in cloud cover.", + "dimensions": "longitude latitude time", + "out_name": "lwtoacsdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "md": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_emission", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Wet Diameter Mode Coarse Insoluble", + "comment": "Emission from a primary source located anywhere within the atmosphere, including at the lower boundary (i.e. the surface of the earth). ", + "dimensions": "longitude latitude alevel time", + "out_name": "md", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mmrno3": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "mass_fraction_of_nitrate_dry_aerosol_particles_in_air", + "units": "kg kg-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "NO3 Aerosol Mass Mixing Ratio", + "comment": "Dry mass fraction of nitrate aerosol particles in air.", + "dimensions": "longitude latitude time", + "out_name": "mmrno3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrlso": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "liquid_water_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Soil Liquid Water Content", + "comment": "The mass (summed over all all layers) of liquid water.", + "dimensions": "longitude latitude time", + "out_name": "mrlso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrroLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Total Runoff from Land-Use Tile", + "comment": "the total runoff (including 'drainage' through the base of the soil model) leaving the land use tile portion of the grid cell", + "dimensions": "longitude latitude landUse time", + "out_name": "mrroLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsfl": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "frozen_water_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Frozen Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in ice phase. Reported as 'missing' for grid cells occupied entirely by 'sea'", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsfl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsll": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "liquid_water_content_of_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in liquid phase. Reported as 'missing' for grid cells occupied entirely by 'sea'", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsll", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsoLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil", + "units": "kg m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Total Soil Moisture", + "comment": "'Water' means water in all phases. 'Content' indicates a quantity per unit area. The mass content of water in soil refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including 'content_of_soil_layer' are used.", + "dimensions": "longitude latitude landUse time", + "out_name": "mrsoLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsol": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Water Content of Soil Layer", + "comment": "in each soil layer, the mass of water in all phases, including ice. Reported as 'missing' for grid cells occupied entirely by 'sea'", + "dimensions": "longitude latitude sdepth time", + "out_name": "mrsol", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsosLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Moisture in Upper Portion of Soil Column of Land-Use Tile", + "comment": "the mass of water in all phases in a thin surface layer; integrate over uppermost 10cm", + "dimensions": "longitude latitude landUse time sdepth1", + "out_name": "mrsosLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrtws": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "land_water_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Terrestrial Water Storage", + "comment": "Mass of water in all phases and in all components including soil, canopy, vegetation, ice sheets, rivers and ground water.", + "dimensions": "longitude latitude time", + "out_name": "mrtws", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nLand": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_nitrogen_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Nitrogen in All Terrestrial Nitrogen Pools", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nLand", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nLeaf": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "leaf_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Leaves", + "comment": "'Content' indicates a quantity per unit area.", + "dimensions": "longitude latitude time", + "out_name": "nLeaf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nLitter": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Litter Pool", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nLitter", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nLitterCwd": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "wood_debris_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Coarse Woody Debris", + "comment": "'Content' indicates a quantity per unit area. 'Wood debris' means dead organic matter composed of coarse wood. It is distinct from fine litter. The precise distinction between 'fine' and 'coarse' is model dependent. The sum of the quantities with standard names wood_debris_mass_content_of_nitrogen, surface_litter_mass_content_of_nitrogen and subsurface_litter_mass_content_of_nitrogen is the total nitrogen mass content of dead plant material.", + "dimensions": "longitude latitude time", + "out_name": "nLitterCwd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nLitterSubSurf": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "subsurface_litter_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Below-Ground Litter (non CWD)", + "comment": "'Content' indicates a quantity per unit area. 'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Subsurface litter' means the part of the litter mixed within the soil below the surface. The sum of the quantities with standard names wood_debris_mass_content_of_nitrogen, surface_litter_mass_content_of_nitrogen and subsurface_litter_mass_content_of_nitrogen is the total nitrogen mass content of dead plant material.", + "dimensions": "longitude latitude time", + "out_name": "nLitterSubSurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nLitterSurf": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_litter_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Above-Ground Litter (non CWD)", + "comment": "'Content' indicates a quantity per unit area. 'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Surface litter' means the part of the litter resting above the soil surface. The sum of the quantities with standard names wood_debris_mass_content_of_nitrogen, surface_litter_mass_content_of_nitrogen and subsurface_litter_mass_content_of_nitrogen is the total nitrogen mass content of dead plant material.", + "dimensions": "longitude latitude time", + "out_name": "nLitterSurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nMineral": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_inorganic_nitrogen_expressed_as_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mineral Nitrogen in the Soil", + "comment": "SUM of ammonium, nitrite, nitrate, etc over all soil layers", + "dimensions": "longitude latitude time", + "out_name": "nMineral", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nMineralNH4": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_inorganic_ammonium_expressed_as_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mineral Ammonium in the Soil", + "comment": "SUM of ammonium over all soil layers", + "dimensions": "longitude latitude time", + "out_name": "nMineralNH4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nMineralNO3": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_inorganic_nitrate_expressed_as_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Mineral Nitrate in the Soil", + "comment": "SUM of nitrate over all soil layers", + "dimensions": "longitude latitude time", + "out_name": "nMineralNO3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nOther": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "miscellaneous_living_matter_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Vegetation Components Other than Leaves, Stem and Root", + "comment": "E.g. fruits, seeds, etc.", + "dimensions": "longitude latitude time", + "out_name": "nOther", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nProduct": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "nitrogen_mass_content_of_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Products of Land-Use Change", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nProduct", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nRoot": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "root_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Roots", + "comment": "including fine and coarse roots.", + "dimensions": "longitude latitude time", + "out_name": "nRoot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nSoil": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Soil Pool", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nSoil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nStem": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "stem_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Stem", + "comment": "including sapwood and hardwood.", + "dimensions": "longitude latitude time", + "out_name": "nStem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nVeg": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_mass_content_of_nitrogen", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Nitrogen Mass in Vegetation", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "nVeg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "necbLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Net Carbon Mass Flux into Land-Use Tile [kgC m-2 s-1]", + "comment": "Computed as npp minus heterotrophic respiration minus fire minus C leaching minus harvesting/clearing. Positive rate is into the land, negative rate is from the land. Do not include fluxes from anthropogenic product pools to atmosphere", + "dimensions": "longitude latitude landUse time", + "out_name": "necbLut", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nep": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Carbon Mass Flux out of Atmosphere Due to Net Ecosystem Productivity on Land [kgC m-2 s-1]", + "comment": "Natural flux of CO2 (expressed as a mass flux of carbon) from the atmosphere to the land calculated as the difference between uptake associated will photosynthesis and the release of CO2 from the sum of plant and soil respiration and fire. Positive flux is into the land. Emissions from natural fires and human ignition fires as calculated by the fire module of the dynamic vegetation model, but excluding any CO2 flux from fire included in fLuc (CO2 Flux to Atmosphere from Land Use Change).", + "dimensions": "longitude latitude time", + "out_name": "nep", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "netAtmosLandC13Flux": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_all_land_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Mass Flux of 13C Between Atmosphere and Land (Positive into Land) as a Result of All Processes [kgC m-2 s-1]", + "comment": "Flux of carbon 31as carbon dioxide into the land. This flux should be reproducible by differencing the sum of all carbon pools (cVeg, cLitter, cSoil, and cProducts or equivalently cLand) from one time step to the next, except in the case of lateral transfer of carbon due to harvest, riverine transport of dissolved organic and/or inorganic carbon, or any other process (in which case the lateral_carbon_transfer_over_land term, see below, will be zero data).-", + "dimensions": "longitude latitude time", + "out_name": "netAtmosLandC13Flux", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "netAtmosLandC14Flux": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_all_land_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Mass Flux of 14C Between Atmosphere and Land (Positive into Land) as a Result of All Processes [kgC m-2 s-1]", + "comment": "Flux of carbon-14 as carbon dioxide into the land. This flux should be reproducible by differencing the sum of all carbon pools (cVeg, cLitter, cSoil, and cProducts or equivalently cLand) from one time step to the next, except in the case of lateral transfer of carbon due to harvest, riverine transport of dissolved organic and/or inorganic carbon, or any other process (in which case the lateral_carbon_transfer_over_land term, see below, will be zero data).", + "dimensions": "longitude latitude time", + "out_name": "netAtmosLandC14Flux", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "netAtmosLandCO2Flux": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Flux of CO2 Between Atmosphere and Land (Positive into Land) as a Result of All Processes [kgC m-2 s-1]", + "comment": "Flux of carbon as carbon dioxide into the land. This flux should be reproducible by differencing the sum of all carbon pools (cVeg, cLitter, cSoil, and cProducts or equivalently cLand) from one time step to the next, except in the case of lateral transfer of carbon due to harvest, riverine transport of dissolved organic and/or inorganic carbon, or any other process (in which case the lateral_carbon_transfer_over_land term, see below, will be zero data).", + "dimensions": "longitude latitude time", + "out_name": "netAtmosLandCO2Flux", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nppGrass": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total NPP of grass in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "nppGrass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nppLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Land-Use Tile as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "'Production of carbon' means the production of biomass expressed as the mass of carbon which it contains. Net primary production is the excess of gross primary production (rate of synthesis of biomass from inorganic precursors) by autotrophs ('producers'), for example, photosynthesis in plants or phytoplankton, over the rate at which the autotrophs themselves respire some of this biomass. 'Productivity' means production per unit area. The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A.", + "dimensions": "longitude latitude landUse time", + "out_name": "nppLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nppOther": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_miscellaneous_living_matter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production Allocated to Other Pools (not Leaves Stem or Roots) as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with npp_root", + "dimensions": "longitude latitude time", + "out_name": "nppOther", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nppShrub": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Shrub Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total NPP of shrubs in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "nppShrub", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nppStem": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_stems", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production Allocated to Stem as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with npp_root", + "dimensions": "longitude latitude time", + "out_name": "nppStem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nppTree": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where trees (comment: mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total NPP of trees in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "nppTree", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nwdFracLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Non-Woody Vegetation Percentage Cover", + "comment": "Percentage of land use tile tile that is non-woody vegetation ( e.g. herbaceous crops)", + "dimensions": "longitude latitude landUse time typenwd", + "out_name": "nwdFracLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontempdiff": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Dianeutral Mixing", + "comment": "Tendency of heat content for a grid cell from parameterized dianeutral mixing. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontempdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontempmint": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", + "units": "degC kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Integral of Product of Sea Water Density and Conservative Temperature", + "comment": "Full column sum of density*cell thickness*conservative temperature. If the model is Boussinesq, then use Boussinesq reference density for the density factor.", + "dimensions": "longitude latitude time", + "out_name": "ocontempmint", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemppadvect": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Eddy Advection", + "comment": "Tendency of heat content for a grid cell from parameterized eddy advection (any form of eddy advection). Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemppadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemppmdiff": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Mesoscale Diffusion", + "comment": "Tendency of heat content for a grid cell from parameterized mesoscale eddy diffusion. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemppmdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemppsmadvect": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of heat content for a grid cell from parameterized submesoscale eddy advection. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemppsmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemprmadvect": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Residual Mean Advection", + "comment": "Conservative Temperature is defined as part of the Thermodynamic Equation of Seawater 2010 (TEOS-10) which was adopted in 2010 by the International Oceanographic Commission (IOC). The phrase 'residual mean advection' refers to the sum of the model's resolved advective transport plus any parameterized advective transport. Parameterized advective transport includes processes such as parameterized mesoscale and submesoscale transport, as well as any other advectively parameterized transport. When the parameterized advective transport is represented in the model as a skew-diffusion rather than an advection, then the parameterized skew diffusion should be included in this diagnostic, since the convergence of skew-fluxes are identical (in the continuous formulation) to the convergence of advective fluxes.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemprmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemptend": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content", + "comment": "Tendency of heat content for a grid cell from all processes. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemptend", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od443dust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Optical Thickness at 443nm Dust", + "comment": "Total aerosol AOD due to dust aerosol at a wavelength of 443 nanometres.", + "dimensions": "longitude latitude time", + "out_name": "od443dust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550aerso": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "stratosphere_optical_thickness_due_to_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Stratospheric Optical Depth at 550nm (All Aerosols) 2D-Field (Stratosphere Only)", + "comment": "From tropopause to stratopause as defined by the model", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550aerso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od550so4so": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "stratosphere_optical_thickness_due_to_sulfate_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Stratospheric Optical Depth at 550nm (Sulphate Only) 2D-Field (Stratosphere Only)", + "comment": "Stratospheric aerosol AOD due to sulfate aerosol at a wavelength of 550 nanometres.", + "dimensions": "longitude latitude time lambda550nm", + "out_name": "od550so4so", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "od865dust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_optical_thickness_due_to_dust_ambient_aerosol_particles", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Dust Optical Depth at 865nm", + "comment": "Total aerosol AOD due to dust aerosol at a wavelength of 865 nanometres.", + "dimensions": "longitude latitude time", + "out_name": "od865dust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottempdiff": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Dianeutral Mixing", + "comment": "Tendency of heat content for a grid cell from parameterized dianeutral mixing. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottempdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottempmint": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", + "units": "degC kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Integral with Respect to Depth of Product of Sea Water Density and Potential Temperature", + "comment": "Integral over the full ocean depth of the product of sea water density and potential temperature.", + "dimensions": "longitude latitude time", + "out_name": "opottempmint", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemppadvect": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Eddy Advection", + "comment": "Tendency of heat content for a grid cell from parameterized eddy advection (any form of eddy advection). Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemppadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemppmdiff": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Mesoscale Diffusion", + "comment": "Tendency of heat content for a grid cell from parameterized mesoscale eddy diffusion. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemppmdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemppsmadvect": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of heat content for a grid cell from parameterized submesoscale eddy advection. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemppsmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemprmadvect": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Residual Mean Advection", + "comment": "The phrase 'residual mean advection' refers to the sum of the model's resolved advective transport plus any parameterized advective transport. Parameterized advective transport includes processes such as parameterized mesoscale and submesoscale transport, as well as any other advectively parameterized transport. When the parameterized advective transport is represented in the model as a skew-diffusion rather than an advection, then the parameterized skew diffusion should be included in this diagnostic, since the convergence of skew-fluxes are identical (in the continuous formulation) to the convergence of advective fluxes.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemprmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemptend": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content", + "comment": "Tendency of heat content for a grid cell from all processes. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemptend", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "orog": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Altitude", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. Altitude is the (geometric) height above the geoid, which is the reference geopotential surface. The geoid is similar to mean sea level.", + "dimensions": "longitude latitude time", + "out_name": "orog", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltdiff": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Dianeutral Mixing", + "comment": "Tendency of salt content for a grid cell from parameterized dianeutral mixing.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltpadvect": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Eddy Advection", + "comment": "Tendency of salt content for a grid cell from parameterized eddy advection (any form of eddy advection).", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltpmdiff": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Mesoscale Diffusion", + "comment": "Tendency of salt content for a grid cell from parameterized mesoscale eddy diffusion.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpmdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltpsmadvect": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of salt content for a grid cell from parameterized submesoscale eddy advection.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpsmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltrmadvect": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Residual Mean Advection", + "comment": "The phrase 'residual mean advection' refers to the sum of the model's resolved advective transport plus any parameterized advective transport. Parameterized advective transport includes processes such as parameterized mesoscale and submesoscale transport, as well as any other advectively parameterized transport. When the parameterized advective transport is represented in the model as a skew-diffusion rather than an advection, then the parameterized skew diffusion should be included in this diagnostic, since the convergence of skew-fluxes are identical (in the continuous formulation) to the convergence of advective fluxes.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltrmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osalttend": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content", + "comment": "Tendency of salt content for a grid cell from all processes.", + "dimensions": "longitude latitude olevel time", + "out_name": "osalttend", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pabigthetao": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_added_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Added Conservative Temperature", + "comment": "A passive tracer in an ocean model whose surface flux does not come from the atmosphere but is imposed externally upon the simulated climate system. The surface flux is expressed as a heat flux and converted to a passive tracer increment as if it were a heat flux being added to conservative temperature. The passive tracer is transported within the ocean as if it were conservative temperature. The passive tracer is zero in the control climate of the model. ", + "dimensions": "longitude latitude olevel time", + "out_name": "pabigthetao", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "parasolRefl": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_bidirectional_reflectance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacella", + "long_name": "PARASOL Reflectance", + "comment": "Simulated reflectance from PARASOL as seen at the top of the atmosphere for 5 solar zenith angles. Valid only over ocean and for one viewing direction (viewing zenith angle of 30 degrees and relative azimuth angle 320 degrees).", + "dimensions": "longitude latitude sza5 time", + "out_name": "parasolRefl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pastureFracC3": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "C3 Pasture Area Percentage", + "comment": "Percentage of entire grid cell covered by C3 pasture", + "dimensions": "longitude latitude time typec3pastures", + "out_name": "pastureFracC3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pastureFracC4": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "C4 Pasture Area Percentage", + "comment": "Percentage of entire grid cell covered by C4 pasture", + "dimensions": "longitude latitude time typec4pastures", + "out_name": "pastureFracC4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pathetao": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_added_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Additional Potential Temperature", + "comment": "The quantity with standard name sea_water_added_potential_temperature is a passive tracer in an ocean model whose surface flux does not come from the atmosphere but is imposed externally upon the simulated climate system. The surface flux is expressed as a heat flux and converted to a passive tracer increment as if it were a heat flux being added to potential temperature. The passive tracer is transported within the ocean as if it were potential temperature. The passive tracer is zero in the control climate of the model. The passive tracer records added heat, as described for the CMIP6 FAFMIP experiment (doi:10.5194/gmd-9-3993-2016), following earlier ideas. Potential temperature is the temperature a parcel of air or sea water would have if moved adiabatically to sea level pressure.", + "dimensions": "longitude latitude olevel time", + "out_name": "pathetao", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ppcalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Mole Productivity of Carbon by Calcareous Phytoplankton", + "comment": "Primary (organic carbon) production by the calcite-producing phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "ppcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ppdiat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Organic Carbon Production by Diatoms", + "comment": "Primary (organic carbon) production by the diatom component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "ppdiat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ppdiaz": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Mole Productivity of Carbon by Diazotrophs", + "comment": "Primary (organic carbon) production by the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "ppdiaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ppmisc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Organic Carbon Production by Other Phytoplankton", + "comment": "Primary (organic carbon) production by other phytoplankton components alone", + "dimensions": "longitude latitude olevel time", + "out_name": "ppmisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pppico": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Mole Productivity of Carbon by Picophytoplankton", + "comment": "Primary (organic carbon) production by the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "pppico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr17O": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux_containing_17O", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Water Containing Oxygen-17 (H2 17O)", + "comment": "Precipitation mass flux of water molecules that contain the oxygen-17 isotope (H2 17O), including solid and liquid phases.", + "dimensions": "longitude latitude time", + "out_name": "pr17O", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr18O": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux_containing_18O", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Water Containing Oxygen-18 (H2 18O)", + "comment": "Precipitation mass flux of water molecules that contain the oxygen-18 isotope (H2 18O), including solid and liquid phases.", + "dimensions": "longitude latitude time", + "out_name": "pr18O", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr2h": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux_containing_single_2H", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Water Containing Deuterium (1H 2H O)", + "comment": "Precipitation mass flux of water molecules that contain one atom of the hydrogen-2 isotope (1H 2H O), including solid and liquid phases.", + "dimensions": "longitude latitude time", + "out_name": "pr2h", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prCrop": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where crops (comment: mask=cropFrac)", + "cell_measures": "area: areacella", + "long_name": "Precipitation over Crop Tile", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time", + "out_name": "prCrop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prbigthetao": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_redistributed_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Redistributed Conservative Temperature", + "comment": "A passive tracer in an ocean model which is subject to an externally imposed perturbative surface heat flux. The passive tracer is initialised to the conservative temperature in the control climate before the perturbation is imposed. Its surface flux is the heat flux from the atmosphere, not including the imposed perturbation, and is converted to a passive tracer increment as if it were being added to conservative temperature. The passive tracer is transported within the ocean as if it were conservative temperature. ", + "dimensions": "longitude latitude olevel time", + "out_name": "prbigthetao", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prhmax": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: mean within hours time: maximum over hours", + "cell_measures": "area: areacella", + "long_name": "Maximum Hourly Precipitation Rate", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "prhmax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn17O": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "solid_precipitation_flux_containing_17O", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Snow and Ice Containing Oxygen-17 (H2 17O)", + "comment": "Precipitation mass flux of water molecules that contain the oxygen-17 isotope (H2 17O), including solid phase only.", + "dimensions": "longitude latitude time", + "out_name": "prsn17O", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn18O": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "solid_precipitation_flux_containing_18O", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Snow and Ice Containing Oxygen-18 (H2 18O)", + "comment": "Precipitation mass flux of water molecules that contain the oxygen-18 isotope (H2 18O), including solid phase only.", + "dimensions": "longitude latitude time", + "out_name": "prsn18O", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn2h": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "solid_precipitation_flux_containing_single_2H", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation Flux of Snow and Ice Containing Deuterium (1H 2H O)", + "comment": "Precipitation mass flux of water molecules that contain one atom of the hydrogen-2 isotope (1H 2H O), including solid phase only.", + "dimensions": "longitude latitude time", + "out_name": "prsn2h", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prthetao": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_redistributed_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Redistributed Potential Temperature", + "comment": "A passive tracer in an ocean model which is subject to an externally imposed perturbative surface heat flux. The passive tracer is initialised to the potential temperature in the control climate before the perturbation is imposed. Its surface flux is the heat flux from the atmosphere, not including the imposed perturbation, and is converted to a passive tracer increment as if it were being added to potential temperature. The passive tracer is transported within the ocean as if it were potential temperature. ", + "dimensions": "longitude latitude olevel time", + "out_name": "prthetao", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prw17O": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_content_of_water_vapor_containing_17O_in_atmosphere_layer", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of Water Vapor Containing Oxygen-17 (H2 17O) in Layer", + "comment": "Water vapor path for water molecules that contain oxygen-17 (H2 17O)", + "dimensions": "longitude latitude alevel time", + "out_name": "prw17O", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prw18O": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "mass_content_of_water_vapor_containing_18O_in_atmosphere_layer", + "units": "kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass of Water Vapor Containing Oxygen-18 (H2 18O) in Layer", + "comment": "Water vapor path for water molecules that contain oxygen-18 (H2 18O)", + "dimensions": "longitude latitude olevel time", + "out_name": "prw18O", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prw2H": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_content_of_water_vapor_containing_single_2H_in_atmosphere_layer", + "units": "kg m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass of Water Containing Deuterium (1H 2H O) in Layer", + "comment": "Water vapor path for water molecules that contain one atom of the hydrogen-2 isotope (1H 2H O)", + "dimensions": "longitude latitude alevel time", + "out_name": "prw2H", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "raGrass": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Autotrophic Respiration on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RA of grass in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "raGrass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "raLeaf": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_leaves", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Respiration from Leaves as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with Ra_root", + "dimensions": "longitude latitude time", + "out_name": "raLeaf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "raLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Autotrophic Respiration on Land-Use Tile as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to autotrophic respiration on land (respiration by producers) [see rh for heterotrophic production]. Calculated on land-use tiles.", + "dimensions": "longitude latitude landUse time", + "out_name": "raLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "raOther": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_miscellaneous_living_matter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Respiration from Other Pools (not Leaves Stem or Roots) as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with Ra_root", + "dimensions": "longitude latitude time", + "out_name": "raOther", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "raRoot": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_roots", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Respiration from Roots as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total autotrophic respiration from all belowground plant parts. This has benchmarking value because the sum of Rh and root respiration can be compared to observations of total soil respiration.", + "dimensions": "longitude latitude time", + "out_name": "raRoot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "raShrub": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Autotrophic Respiration on Shrub Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RA of shrubs in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "raShrub", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "raStem": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_in_stems", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Respiration from Stem as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "added for completeness with Ra_root", + "dimensions": "longitude latitude time", + "out_name": "raStem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "raTree": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where trees (comment: mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Autotrophic Respiration on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RA of trees in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "raTree", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rac13": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-13 Mass Flux into Atmosphere Due to Autotrophic (Plant) Respiration on Land [kgC m-2 s-1]", + "comment": "Flux of carbon-13 into the atmosphere due to plant respiration. Plant respiration is the sum of respiration by parts of plants both above and below the soil. It is assumed that all the respired carbon dioxide is emitted to the atmosphere. ", + "dimensions": "longitude latitude time", + "out_name": "rac13", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rac14": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-14 Mass Flux into Atmosphere Due to Autotrophic (Plant) Respiration on Land [kgC m-2 s-1]", + "comment": "Flux of carbon-14 into the atmosphere due to plant respiration. Plant respiration is the sum of respiration by parts of plants both above and below the soil. It is assumed that all the respired carbon dioxide is emitted to the atmosphere. ", + "dimensions": "longitude latitude time", + "out_name": "rac14", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rainmxrat27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_liquid_precipitation_in_air", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Rain in Air", + "comment": "Rain mixing ratio", + "dimensions": "longitude latitude plev27 time", + "out_name": "rainmxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclic": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_ice_particles", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Convective Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclis": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_ice_particles", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Hydrometeor Effective Radius of Stratiform Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclwc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclwc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclws": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Stratiform Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "longitude latitude alevel time", + "out_name": "reffclws", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rhGrass": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Heterotrophic Respiration on Grass Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RH of grass in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "rhGrass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rhLitter": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Heterotrophic Respiration from Litter on Land", + "comment": "Needed to calculate litter bulk turnover time. Includes respiration from CWD as well.", + "dimensions": "longitude latitude time", + "out_name": "rhLitter", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rhLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Heterotrophic Respiration on Land-Use Tile as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to heterotrophic respiration on land (respiration by consumers), calculated on land-use tiles.", + "dimensions": "longitude latitude landUse time", + "out_name": "rhLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rhShrub": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Heterotrophic Respiration on Shrub Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RH of shrubs in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "rhShrub", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rhSoil": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_due_to_heterotrophic_respiration_in_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Heterotrophic Respiration from Soil on Land", + "comment": "Needed to calculate soil bulk turnover time", + "dimensions": "longitude latitude time", + "out_name": "rhSoil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rhTree": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where trees (comment: mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Heterotrophic Respiration on Tree Tiles as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Total RH of trees in the grid cell", + "dimensions": "longitude latitude time", + "out_name": "rhTree", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rhc13": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_13C_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-13 Mass Flux into Atmosphere Due to Heterotrophic Respiration on Land [kgC m-2 s-1]", + "comment": "Heterotrophic respiration is respiration by heterotrophs ('consumers'), which are organisms (including animals and decomposers) that consume other organisms or dead organic material, rather than synthesising organic material from inorganic precursors using energy from the environment (especially sunlight) as autotrophs ('producers') do. Heterotrophic respiration goes on within both the soil and litter pools.", + "dimensions": "longitude latitude time", + "out_name": "rhc13", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rhc14": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_14C_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon-14 Mass Flux into Atmosphere Due to Heterotrophic Respiration on Land [kgC m-2 s-1]", + "comment": "Heterotrophic respiration is respiration by heterotrophs ('consumers'), which are organisms (including animals and decomposers) that consume other organisms or dead organic material, rather than synthesising organic material from inorganic precursors using energy from the environment (especially sunlight) as autotrophs ('producers') do. Heterotrophic respiration goes on within both the soil and litter pools.", + "dimensions": "longitude latitude time", + "out_name": "rhc14", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rls": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Longwave Surface Radiation", + "comment": "Net longwave surface radiation", + "dimensions": "longitude latitude time", + "out_name": "rls", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlusLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Longwave on Land-Use Tile", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude landUse time", + "out_name": "rlusLut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdoabsorb": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Rate of Absorption of Shortwave Energy in Ocean Layer", + "comment": "'shortwave' means shortwave radiation. 'Layer' means any layer with upper and lower boundaries that have constant values in some vertical coordinate. There must be a vertical coordinate variable indicating the extent of the layer(s). If the layers are model layers, the vertical coordinate can be model_level_number, but it is recommended to specify a physical coordinate (in a scalar or auxiliary coordinate variable) as well. Net absorbed radiation is the difference between absorbed and emitted radiation.", + "dimensions": "longitude latitude olevel time", + "out_name": "rsdoabsorb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdscsdiff": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_diffuse_downwelling_shortwave_flux_in_air_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Diffuse Downwelling Clear Sky Shortwave Radiation", + "comment": "Surface downwelling solar irradiance from diffuse radiation for UV calculations in clear sky conditions", + "dimensions": "longitude latitude time", + "out_name": "rsdscsdiff", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdsdiff": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_diffuse_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Diffuse Downwelling Shortwave Radiation", + "comment": "Surface downwelling solar irradiance from diffuse radiation for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsdsdiff", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rss": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Shortwave Surface Radiation", + "comment": "Net downward shortwave radiation at the surface", + "dimensions": "longitude latitude time", + "out_name": "rss", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsusLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave on Land-Use Tile", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'shortwave' means shortwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude landUse time", + "out_name": "rsusLut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sconcdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_concentration_of_dust_dry_aerosol_particles_in_air", + "units": "kg m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Concentration of Dust", + "comment": "mass concentration of dust dry aerosol in air in model lowest layer", + "dimensions": "longitude latitude time", + "out_name": "sconcdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sconcso4": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_concentration_of_sulfate_dry_aerosol_particles_in_air", + "units": "kg m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Concentration of SO4", + "comment": "mass concentration of sulfate dry aerosol in air in model lowest layer.", + "dimensions": "longitude latitude time", + "out_name": "sconcso4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sconcss": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_concentration_of_sea_salt_dry_aerosol_particles_in_air", + "units": "kg m-3", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Concentration of Sea-Salt Aerosol", + "comment": "mass concentration of sea-salt dry aerosol in air in model lowest layer", + "dimensions": "longitude latitude time", + "out_name": "sconcss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sedustCI": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "minus_tendency_of_atmosphere_mass_content_of_insoluble_dust_dry_aerosol_particles_due_to_deposition", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sedimentation Flux of Dust Mode Coarse Insoluble", + "comment": "Dry mass deposition rate of dust aerosol.", + "dimensions": "longitude latitude time", + "out_name": "sedustCI", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfcWindmax": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: mean time: maximum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Wind Speed", + "comment": "Daily maximum near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWindmax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snowmxrat27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "mass_fraction_of_snow_in_air", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Mass Fraction of Snow in Air", + "comment": "Snow mixing ratio", + "dimensions": "longitude latitude plev27 time", + "out_name": "snowmxrat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "somint": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", + "units": "g m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Integral of Product of Sea Water Density and Prognostic Salinity", + "comment": "Full column sum of density*cell thickness*prognostic salinity. If the model is Boussinesq, then use Boussinesq reference density for the density factor.", + "dimensions": "longitude latitude time", + "out_name": "somint", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sw17O": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "isotope_ratio_of_17O_to_16O_in_sea_water_excluding_solutes_and_solids", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Isotopic Ratio of Oxygen-17 in Sea Water", + "comment": "Ratio of abundance of oxygen-17 (17O) atoms to oxygen-16 (16O) atoms in sea water", + "dimensions": "longitude latitude olevel time", + "out_name": "sw17O", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sw18O": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "isotope_ratio_of_18O_to_16O_in_sea_water_excluding_solutes_and_solids", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Isotopic Ratio of Oxygen-18 in Sea Water", + "comment": "Ratio of abundance of oxygen-18 (18O) atoms to oxygen-16 (16O) atoms in sea water", + "dimensions": "longitude latitude alevel time", + "out_name": "sw18O", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sw2H": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "isotope_ratio_of_2H_to_1H_in_sea_water_excluding_solutes_and_solids", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Isotopic Ratio of Deuterium in Sea Water", + "comment": "Ratio of abundance of hydrogen-2 (2H) atoms to hydrogen-1 (1H) atoms in sea water", + "dimensions": "longitude latitude olevel time", + "out_name": "sw2H", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sweLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "lwe_thickness_of_surface_snow_amount", + "units": "m", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Snow Water Equivalent on Land-Use Tile", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'lwe' means liquid water equivalent. 'Amount' means mass per unit area. The construction lwe_thickness_of_X_amount or _content means the vertical extent of a layer of liquid water having the same mass per unit area. Surface amount refers to the amount on the ground, excluding that on the plant or vegetation canopy.", + "dimensions": "longitude latitude landUse time", + "out_name": "sweLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "swsrfasdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "All-Sky Surface Shortwave Radiative Flux Due to Dust", + "comment": "The direct radiative effect refers to the instantaneous radiative impact on the Earth's energy balance, excluding secondary effects such as changes in cloud cover.", + "dimensions": "longitude latitude time", + "out_name": "swsrfasdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "swsrfcsdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_shortwave_dust_ambient_aerosol_particles_direct_radiative_effect_assuming_clear_sky", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Clear-Sky Surface Shortwave Radiative Flux Due to Dust", + "comment": "The direct radiative effect refers to the instantaneous radiative impact on the Earth's energy balance, excluding secondary effects such as changes in cloud cover. Calculated in clear-sky conditions.", + "dimensions": "longitude latitude time", + "out_name": "swsrfcsdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "swtoaasdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_instantaneous_shortwave_forcing", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "All-Sky Shortwave Flux Due to Dust at Toa", + "comment": "Instantaneous forcing is the radiative flux change caused instantaneously by an imposed change in radiative forcing agent (greenhouse gases, aerosol, solar radiation, etc.).", + "dimensions": "longitude latitude time", + "out_name": "swtoaasdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "swtoacsdust": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "toa_instantaneous_shortwave_forcing", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Clear Sky Shortwave Flux Due to Dust at Toa", + "comment": "Instantaneous forcing is the radiative flux change caused instantaneously by an imposed change in radiative forcing agent (greenhouse gases, aerosol, solar radiation, etc.).", + "dimensions": "longitude latitude time", + "out_name": "swtoacsdust", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "t2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "square_of_air_temperature", + "units": "K2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mean-Squared Air Temperature", + "comment": "Air temperature squared", + "dimensions": "longitude latitude alevel time", + "out_name": "t2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "t20d": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "depth_of_isosurface_of_sea_water_potential_temperature", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth of 20 degree Celsius Isotherm", + "comment": "This quantity, sometimes called the 'isotherm depth', is the depth (if it exists) at which the sea water potential temperature equals some specified value. This value should be specified in a scalar coordinate variable. Depth is the vertical distance below the surface. Potential temperature is the temperature a parcel of air or sea water would have if moved adiabatically to sea level pressure.", + "dimensions": "longitude latitude time", + "out_name": "t20d", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tSoilPools": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_pool_carbon_decay_rate", + "units": "s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Turnover Rate of Each Model Soil Carbon Pool", + "comment": "defined as 1/(turnover time) for each soil pool. Use the same pools reported under cSoilPools", + "dimensions": "longitude latitude soilpools time", + "out_name": "tSoilPools", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev27 time", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature on Land Use Tile", + "comment": "Air temperature is the bulk temperature of the air, not the surface (skin) temperature.", + "dimensions": "longitude latitude landUse time height2m", + "out_name": "tasLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasmaxCrop": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean where crops time: maximum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Air Temperature over Crop Tile", + "comment": "maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')", + "dimensions": "longitude latitude time height2m", + "out_name": "tasmaxCrop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasminCrop": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean where crops time: minimum within days time: mean over days", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Air Temperature over Crop Tile", + "comment": "minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')", + "dimensions": "longitude latitude time height2m", + "out_name": "tasminCrop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tdps": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "dew_point_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "2m Dewpoint Temperature", + "comment": "Dew point temperature is the temperature at which a parcel of air reaches saturation upon being cooled at constant pressure and specific humidity.", + "dimensions": "longitude latitude time", + "out_name": "tdps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thetaot": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: depth: time: mean", + "cell_measures": "area: areacello", + "long_name": "Vertically Averaged Sea Water Potential Temperature", + "comment": "Vertical average of the sea water potential temperature through the whole ocean depth", + "dimensions": "longitude latitude time", + "out_name": "thetaot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thetaot2000": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: depth: time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Average Potential Temperature of Upper 2000m", + "comment": "Upper 2000m, 2D field", + "dimensions": "longitude latitude time depth2000m", + "out_name": "thetaot2000", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thetaot300": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: depth: time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Average Potential Temperature of Upper 300m", + "comment": "Upper 300m, 2D field", + "dimensions": "longitude latitude time depth300m", + "out_name": "thetaot300", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thetaot700": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: depth: time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Average Potential Temperature of Upper 700m", + "comment": "Upper 700m, 2D field", + "dimensions": "longitude latitude time depth700m", + "out_name": "thetaot700", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhuspbl": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_boundary_layer_mixing", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Boundary Layer Mixing", + "comment": "Includes all boundary layer terms including diffusive terms.", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhuspbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusscp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", + "units": "s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity Due to Stratiform Clouds and Precipitation", + "comment": "The phrase 'tendency_of_X' means derivative of X with respect to time. 'Specific' means per unit mass. Specific humidity is the mass fraction of water vapor in (moist) air. The specification of a physical process by the phrase 'due_to_' process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. A variable with the standard name of tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation should contain the effects of all processes which convert stratiform clouds and precipitation to or from water vapor. In an atmosphere model, stratiform cloud is that produced by large-scale convergence (not the convection schemes).", + "dimensions": "longitude latitude alevel time", + "out_name": "tnhusscp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntd": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_diffusion", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Numerical Diffusion", + "comment": "This includes any horizontal or vertical numerical temperature diffusion not associated with the parametrized moist physics or the resolved dynamics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be excluded, as should any diffusion which is included in the terms from the resolved dynamics. This term is required to check the closure of the temperature budget.", + "dimensions": "longitude latitude alevel time", + "out_name": "tntd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntmp27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_model_physics", + "units": "K s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Model Physics", + "comment": "Tendency of air temperature due to model physics. This includes sources and sinks from parametrized physics (e.g. radiation, convection, boundary layer, stratiform condensation/evaporation, etc.). It excludes sources and sinks from resolved dynamics and numerical diffusion not associated with parametrized physics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be included, while numerical diffusion applied in addition to physics or resolved dynamics should be excluded. This term is required to check the closure of the heat budget.", + "dimensions": "longitude latitude plev27 time", + "out_name": "tntmp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntpbl": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_boundary_layer_mixing", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Boundary Layer Mixing", + "comment": "Includes all boundary layer terms including diffusive terms.", + "dimensions": "longitude latitude alevel time", + "out_name": "tntpbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrl27": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating", + "units": "K s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Longwave Radiative Heating", + "comment": "Tendency of air temperature due to longwave radiative heating", + "dimensions": "longitude latitude plev27 time", + "out_name": "tntrl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrlcs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Clear Sky Longwave Radiative Heating", + "comment": "Tendency of Air Temperature due to Clear Sky Longwave Radiative Heating", + "dimensions": "longitude latitude alevel time", + "out_name": "tntrlcs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrs27": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating", + "units": "K s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Shortwave Radiative Heating", + "comment": "Tendency of air temperature due to shortwave radiative heating", + "dimensions": "longitude latitude plev27 time", + "out_name": "tntrs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrscs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Clear Sky Shortwave Radiative Heating", + "comment": "Tendency of Air Temperature due to Clear Sky Shortwave Radiative Heating", + "dimensions": "longitude latitude alevel time", + "out_name": "tntrscs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntscp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", + "units": "K s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature Due to Stratiform Clouds and Precipitation", + "comment": "The phrase 'tendency_of_X' means derivative of X with respect to time. Air temperature is the bulk temperature of the air, not the surface (skin) temperature. The specification of a physical process by the phrase 'due_to_' process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. A variable with the standard name tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation should contain net latent heating effects of all processes which convert stratiform clouds and precipitation between water vapour, liquid or ice phases. In an atmosphere model, stratiform cloud is that produced by large-scale convergence (not the convection schemes).", + "dimensions": "longitude latitude alevel time", + "out_name": "tntscp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFracBdlDcd": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Broadleaf Deciduous Tree Area Percentage", + "comment": "This is the percentage of the entire grid cell that is covered by broadleaf deciduous trees.", + "dimensions": "longitude latitude time typetreebd", + "out_name": "treeFracBdlDcd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFracBdlEvg": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Broadleaf Evergreen Tree Area Percentage", + "comment": "This is the percentage of the entire grid cell that is covered by broadleaf evergreen trees.", + "dimensions": "longitude latitude time typetreebe", + "out_name": "treeFracBdlEvg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFracNdlDcd": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Needleleaf Deciduous Tree Area Percentage", + "comment": "This is the percentage of the entire grid cell that is covered by needleleaf deciduous trees.", + "dimensions": "longitude latitude time typetreend", + "out_name": "treeFracNdlDcd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFracNdlEvg": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Needleleaf Evergreen Tree Area Percentage", + "comment": "This is the percentage of the entire grid cell that is covered by needleleaf evergreen trees.", + "dimensions": "longitude latitude time typetreene", + "out_name": "treeFracNdlEvg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tslsiLut": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sector", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature on Landuse Tile", + "comment": "Surface temperature (i.e. temperature at which long-wave radiation emitted)", + "dimensions": "longitude latitude landUse time", + "out_name": "tslsiLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "twap": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "product_of_lagrangian_tendency_of_air_pressure_and_air_temperature", + "units": "K Pa s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Product of Air Temperature and Omega", + "comment": "Product of air temperature and pressure tendency", + "dimensions": "longitude latitude alevel time", + "out_name": "twap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "u2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "square_of_eastward_wind", + "units": "m2 s-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mean-Squared Eastward Wind Speed", + "comment": "u*u", + "dimensions": "longitude latitude alevel time", + "out_name": "u2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev7h time", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev27 time", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uqint": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "integral_wrt_height_of_product_of_eastward_wind_and_specific_humidity", + "units": "m2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Humidity Transport", + "comment": "Column integrated eastward wind times specific humidity", + "dimensions": "longitude latitude time", + "out_name": "uqint", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ut": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "product_of_eastward_wind_and_air_temperature", + "units": "K m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Product of Air Temperature and Eastward Wind", + "comment": "Product of air temperature and eastward wind", + "dimensions": "longitude latitude alevel time", + "out_name": "ut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendnogw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Tendency of the eastward wind by parameterized nonorographic gravity waves.", + "dimensions": "longitude latitude plev19 time", + "out_name": "utendnogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendogw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_orographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Acceleration Due to Orographic Gravity Wave Drag", + "comment": "Tendency of the eastward wind by parameterized orographic gravity waves.", + "dimensions": "longitude latitude plev19 time", + "out_name": "utendogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uv": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "product_of_eastward_wind_and_northward_wind", + "units": "m2 s-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Product of Eastward Wind and Northward Wind", + "comment": "u*v", + "dimensions": "longitude latitude alevel time", + "out_name": "uv", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uwap": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "product_of_eastward_wind_and_lagrangian_tendency_of_air_pressure", + "units": "Pa m s-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Product of Eastward Wind and Omega", + "comment": "u*omega", + "dimensions": "longitude latitude alevel time", + "out_name": "uwap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "v2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "square_of_northward_wind", + "units": "m2 s-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mean-Squared Northward Wind Speed", + "comment": "v*v", + "dimensions": "longitude latitude alevel time", + "out_name": "v2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev7h time", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev27 time", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vegFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Vegetated Percentage Cover", + "comment": "Percentage of grid cell that is covered by vegetation.This SHOULD be the sum of tree, grass (natural and pasture), crop and shrub fractions.", + "dimensions": "longitude latitude time typeveg", + "out_name": "vegFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vegHeight": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where vegetation (comment: mask=vegFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of the Vegetation Canopy", + "comment": "Vegetation height averaged over all vegetation types and over the vegetated fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeight", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vegHeightCrop": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where crops (comment: mask=cropFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of Crops", + "comment": "Vegetation height averaged over the crop fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeightCrop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vegHeightGrass": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of Grass", + "comment": "Vegetation height averaged over the grass fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeightGrass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vegHeightPasture": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where pastures (comment: mask=pastureFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of Pastures", + "comment": "Vegetation height averaged over the pasture fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeightPasture", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vegHeightShrub": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of Shrubs", + "comment": "Vegetation height averaged over the shrub fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeightShrub", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vegHeightTree": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "canopy_height", + "units": "m", + "cell_methods": "area: time: mean where trees (comment: mask=treeFrac)", + "cell_measures": "area: areacella", + "long_name": "Height of Trees", + "comment": "Vegetation height averaged over the tree fraction of a grid cell.", + "dimensions": "longitude latitude time", + "out_name": "vegHeightTree", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vqint": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "integral_wrt_height_of_product_of_northward_wind_and_specific_humidity", + "units": "m2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Humidity Transport", + "comment": "Column integrated northward wind times specific humidity", + "dimensions": "longitude latitude time", + "out_name": "vqint", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vt": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "product_of_northward_wind_and_air_temperature", + "units": "K m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Product of Air Temperature and Northward Wind", + "comment": "Product of air temperature and northward wind", + "dimensions": "longitude latitude alevel time", + "out_name": "vt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vtendnogw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Tendency of the northward wind by parameterized nonorographic gravity waves. (Note that CF name tables only have a general northward tendency for all gravity waves, and we need it separated by type.)", + "dimensions": "longitude latitude plev19 time", + "out_name": "vtendnogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vtendogw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_northward_wind_due_to_orographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Acceleration Due to Orographic Gravity Wave Drag", + "comment": "Tendency of the northward wind by parameterized orographic gravity waves. (Note that CF name tables only have a general northward tendency for all gravity waves, and we need it separated by type.)", + "dimensions": "longitude latitude plev19 time", + "out_name": "vtendogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vwap": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "product_of_northward_wind_and_lagrangian_tendency_of_air_pressure", + "units": "Pa m s-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Product of Northward Wind and Omega", + "comment": "v*omega", + "dimensions": "longitude latitude alevel time", + "out_name": "vwap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude alevel time", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "square_of_lagrangian_tendency_of_air_pressure", + "units": "Pa2 s-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Mean-Squared Vertical Velocity (Omega)", + "comment": "omega*omega", + "dimensions": "longitude latitude alevel time", + "out_name": "wap2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetlandCH4": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Grid Averaged Methane Emissions from Wetlands", + "comment": "Net upward flux of methane (NH4) from wetlands (areas where water covers the soil, or is present either at or near the surface of the soil all year or for varying periods of time during the year, including during the growing season). ", + "dimensions": "longitude latitude time", + "out_name": "wetlandCH4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetlandCH4cons": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_downward_mass_flux_of_methane_due_to_wetland_biological_consumption", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Grid Averaged Methane Consumption (Methanotrophy) from Wetlands", + "comment": "Biological consumption (methanotrophy) of methane (NH4) by wetlands (areas where water covers the soil, or is present either at or near the surface of the soil all year or for varying periods of time during the year, including during the growing season). ", + "dimensions": "longitude latitude time", + "out_name": "wetlandCH4cons", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetlandCH4prod": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_methane_due_to_emission_from_wetland_biological_production", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Grid Averaged Methane Production (Methanogenesis) from Wetlands", + "comment": "Biological emissions (methanogenesis) of methane (NH4) from wetlands (areas where water covers the soil, or is present either at or near the surface of the soil all year or for varying periods of time during the year, including during the growing season). ", + "dimensions": "longitude latitude time", + "out_name": "wetlandCH4prod", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wetlandFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Wetland Percentage Cover", + "comment": "Percentage of grid cell covered by wetland. Report only one year if fixed percentage is used, or time series if values are determined dynamically.", + "dimensions": "longitude latitude time typewetla", + "out_name": "wetlandFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wtd": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "water_table_depth", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacellr", + "long_name": "Water Table Depth", + "comment": "Depth is the vertical distance below the surface. The water table is the surface below which the soil is saturated with water such that all pore spaces are filled.", + "dimensions": "longitude latitude time", + "out_name": "wtd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "xgwdparam": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_eastward_stress_due_to_gravity_wave_drag", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Gravity Wave Drag", + "comment": "Parameterised x-component of gravity wave drag", + "dimensions": "longitude latitude alevel time", + "out_name": "xgwdparam", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ygwdparam": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_northward_stress_due_to_gravity_wave_drag", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Gravity Wave Drag", + "comment": "Parameterised y- component of gravity wave drag", + "dimensions": "longitude latitude alevel time", + "out_name": "ygwdparam", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg27": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev27 time", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "liqcldtime": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "liquid_cloud_time", + "units": "s", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Cloud Time", + "comment": "Liquid Cloud Time.", + "dimensions": "longitude latitude alevel time", + "out_name": "liqcldtime", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icecldtime": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "ice_cloud_time", + "units": "s", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Ice Cloud Time", + "comment": "Ice Cloud Time.", + "dimensions": "longitude latitude alevel time", + "out_name": "icecldtime", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "alltime": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "alltime", + "units": "s", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Time accumulated for all grid-cells", + "comment": "Time accumulated for all grid-cells (in and out the clouds).", + "dimensions": "longitude latitude alevel time", + "out_name": "alltime", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_EmonZ.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_EmonZ.json new file mode 100644 index 0000000000000000000000000000000000000000..d57870bd84ae8f6415571aebf0af8501b0c8d233 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_EmonZ.json @@ -0,0 +1,468 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table EmonZ", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "alevel olevel", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "epfy": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_eliassen_palm_flux_in_air", + "units": "m3 s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Northward Component of the Eliassen-Palm Flux", + "comment": "Transformed Eulerian Mean Diagnostics Meridional component Fy of Eliassen-Palm (EP) flux (Fy, Fz) derived from 6hr or higher frequency fields (use daily fields or 12 hr fields if the 6 hr are not available). Please use the definitions given by equation 3.5.3a of Andrews, Holton and Leovy text book, but scaled by density to have units m3 s-2.", + "dimensions": "latitude plev39 time", + "out_name": "epfy", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "epfz": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upward_eliassen_palm_flux_in_air", + "units": "m3 s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Upward Component of the Eliassen-Palm Flux", + "comment": "Transformed Eulerian Mean Diagnostics Meridional component Fz of the Eliassen-Palm (EP) flux (Fy, Fz) derived from 6hr or higher frequency fields (use daily fields or 12 hr fields if the 6 hr are not available). Please use the definitions given by equation 3.5.3b of Andrews, Holton and Leovy text book, but scaled by density to have units m3 s-2.", + "dimensions": "latitude plev39 time", + "out_name": "epfz", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "jo2": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "photolysis_rate_of_molecular_oxygen", + "units": "s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Photolysis Rate of Diatomic Molecular Oxygen", + "comment": "Rate of photolysis of molecular oxygen to atomic oxygen (o2 -> o1d+o)", + "dimensions": "latitude plev39 time", + "out_name": "jo2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "jo3": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "photolysis_rate_of_ozone", + "units": "s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Photolysis Rate of Ozone (O3)", + "comment": "Sum of photolysis rates o3 -> o1d+o2 and o3 -> o+o2", + "dimensions": "latitude plev39 time", + "out_name": "jo3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "oxloss": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_destruction", + "units": "mol m-3 s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Total Odd Oxygen (Ox) Loss Rate", + "comment": "total chemical loss rate for o+o1d+o3", + "dimensions": "latitude plev39 time", + "out_name": "oxloss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "oxprod": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "tendency_of_mole_concentration_of_ox_in_air_due_to_chemical_and_photolytic_production", + "units": "mol m-3 s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Total Odd Oxygen (Ox) Production Rate", + "comment": "total production rate of o+o1d+o3 including o2 photolysis and all o3 producing reactions", + "dimensions": "latitude plev39 time", + "out_name": "oxprod", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sltbasin": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_salt_transport", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Salt Transport", + "comment": "function of latitude, basin", + "dimensions": "latitude basin time", + "out_name": "sltbasin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntc": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_convection", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Convection", + "comment": "Tendencies from cumulus convection scheme.", + "dimensions": "latitude plev39 time", + "out_name": "tntc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntmp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_model_physics", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Model Physics", + "comment": "Tendency of air temperature due to model physics. This includes sources and sinks from parametrized physics (e.g. radiation, convection, boundary layer, stratiform condensation/evaporation, etc.). It excludes sources and sinks from resolved dynamics and numerical diffusion not associated with parametrized physics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be included, while numerical diffusion applied in addition to physics or resolved dynamics should be excluded. This term is required to check the closure of the heat budget.", + "dimensions": "latitude plev39 time", + "out_name": "tntmp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntnogw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_dissipation_of_nonorographic_gravity_waves", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Temperature Tendency Due to Non-Orographic Gravity Wave Dissipation", + "comment": "Temperature tendency due to dissipation of parameterized nonorographic gravity waves.", + "dimensions": "latitude plev39 time", + "out_name": "tntnogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntogw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_dissipation_of_orographic_gravity_waves", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Temperature Tendency Due to Orographic Gravity Wave Dissipation", + "comment": "Temperature tendency due to dissipation of parameterized orographic gravity waves.", + "dimensions": "latitude plev39 time", + "out_name": "tntogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrl": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Longwave Radiative Heating", + "comment": "Tendency of air temperature due to longwave radiative heating", + "dimensions": "latitude plev39 time", + "out_name": "tntrl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrlcs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Clear Sky Longwave Radiative Heating", + "comment": "Tendency of Air Temperature due to Clear Sky Longwave Radiative Heating", + "dimensions": "latitude plev39 time", + "out_name": "tntrlcs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrs": { + "frequency": "mon", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Shortwave Radiative Heating", + "comment": "Tendency of air temperature due to shortwave radiative heating", + "dimensions": "latitude plev39 time", + "out_name": "tntrs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrscs": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Clear Sky Shortwave Radiative Heating", + "comment": "Tendency of Air Temperature due to Clear Sky Shortwave Radiative Heating", + "dimensions": "latitude plev39 time", + "out_name": "tntrscs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntscp": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Stratiform Clouds and Precipitation", + "comment": "The phrase 'tendency_of_X' means derivative of X with respect to time. Air temperature is the bulk temperature of the air, not the surface (skin) temperature. The specification of a physical process by the phrase 'due_to_' process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. A variable with the standard name tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation should contain net latent heating effects of all processes which convert stratiform clouds and precipitation between water vapour, liquid or ice phases. In an atmosphere model, stratiform cloud is that produced by large-scale convergence (not the convection schemes).", + "dimensions": "latitude plev39 time", + "out_name": "tntscp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendepfd": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_eliassen_palm_flux_divergence", + "units": "m s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Tendency of Eastward Wind Due to Eliassen-Palm Flux Divergence", + "comment": "Tendency of the zonal mean zonal wind due to the divergence of the Eliassen-Palm flux.", + "dimensions": "latitude plev39 time", + "out_name": "utendepfd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "utendnogw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_eastward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Eastward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Tendency of the eastward wind by parameterized nonorographic gravity waves.", + "dimensions": "latitude plev39 time", + "out_name": "utendnogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmrox": { + "frequency": "mon", + "modeling_realm": "atmosChem", + "standard_name": "mole_fraction_of_ox_in_air", + "units": "mol mol-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Mole Fraction of Odd Oxygen (O, O3 and O1D)", + "comment": "Mole Fraction of Ox", + "dimensions": "latitude plev39 time", + "out_name": "vmrox", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vtem": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "northward_transformed_eulerian_mean_air_velocity", + "units": "m s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Northward Wind", + "comment": "Transformed Eulerian Mean Diagnostics v*, meridional component of the residual meridional circulation (v*, w*) derived from 6 hr or higher frequency data fields (use instantaneous daily fields or 12 hr fields if the 6 hr data are not available).", + "dimensions": "latitude plev39 time", + "out_name": "vtem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vtendnogw": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_northward_wind_due_to_nonorographic_gravity_wave_drag", + "units": "m s-2", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Northward Acceleration Due to Non-Orographic Gravity Wave Drag", + "comment": "Tendency of the northward wind by parameterized nonorographic gravity waves. (Note that CF name tables only have a general northward tendency for all gravity waves, and we need it separated by type.)", + "dimensions": "latitude plev39 time", + "out_name": "vtendnogw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wtem": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "upward_transformed_eulerian_mean_air_velocity", + "units": "m s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Transformed Eulerian Mean Upward Wind", + "comment": "Transformed Eulerian Mean Diagnostics w*, upward component of the residual meridional circulation (v*, w*) derived from 6 hr or higher frequency data fields (use instantaneous daily fields or 12 hr fields if the 6 hr data are not available). Scale height: 6950 m", + "dimensions": "latitude plev39 time", + "out_name": "wtem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "xgwdparam": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_eastward_stress_due_to_gravity_wave_drag", + "units": "Pa", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Eastward Gravity Wave Drag", + "comment": "Parameterised x-component of gravity wave drag", + "dimensions": "latitude plev39 time", + "out_name": "xgwdparam", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ygwdparam": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "atmosphere_northward_stress_due_to_gravity_wave_drag", + "units": "Pa", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Northward Gravity Wave Drag", + "comment": "Parameterised y- component of gravity wave drag", + "dimensions": "latitude plev39 time", + "out_name": "ygwdparam", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmtnt": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_diabatic_processes", + "units": "K s-1", + "cell_methods": "longitude: mean time: mean", + "cell_measures": "", + "long_name": "Zonal Mean Diabatic Heating Rates", + "comment": "The diabatic heating rates due to all the processes that may change potential temperature", + "dimensions": "latitude plev39 time", + "out_name": "zmtnt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Esubhr.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Esubhr.json new file mode 100644 index 0000000000000000000000000000000000000000..2e1f30b908fc5eae0d766b6125041eca619a29f9 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Esubhr.json @@ -0,0 +1,614 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Esubhr", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.017361", + "approx_interval_error": "0.90", + "approx_interval_warning": "0.5", + "generic_levels": "alevel alevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "bldep": { + "frequency": "subhrPt", + "modeling_realm": "aerosol", + "standard_name": "atmosphere_boundary_layer_thickness", + "units": "m", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Boundary Layer Depth", + "comment": "Boundary layer depth", + "dimensions": "longitude latitude time1", + "out_name": "bldep", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfls": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time1", + "out_name": "hfls", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfss": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time1", + "out_name": "hfss", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude alevel time1", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "huss": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "longitude latitude time1 height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mc": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_net_upward_convective_mass_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Mass Flux", + "comment": "The net mass flux should represent the difference between the updraft and downdraft components. The flux is computed as the mass divided by the area of the grid cell.", + "dimensions": "longitude latitude alevel time1", + "out_name": "mc", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time1", + "out_name": "pr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prc": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Convective Precipitation", + "comment": "Convective precipitation at surface; includes both liquid and solid phases.", + "dimensions": "longitude latitude time1", + "out_name": "prc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prw": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_content_of_water_vapor", + "units": "kg m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Water Vapor Path", + "comment": "vertically integrated through the atmospheric column", + "dimensions": "longitude latitude time1", + "out_name": "prw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ps": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "surface_air_pressure", + "units": "Pa", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Surface Air Pressure", + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclic": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_ice_particles", + "units": "m", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Hydrometeor Effective Radius of Convective Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "alevel site time1", + "out_name": "reffclic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclis": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_ice_particles", + "units": "m", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Hydrometeor Effective Radius of Stratiform Cloud Ice", + "comment": "This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell).", + "dimensions": "alevel site time1", + "out_name": "reffclis", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclwc": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_convective_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Convective Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "alevel site time1", + "out_name": "reffclwc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "reffclws": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "effective_radius_of_stratiform_cloud_liquid_water_particles", + "units": "m", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Stratiform Cloud Liquid Droplet Effective Radius", + "comment": "Droplets are liquid. The effective radius is defined as the ratio of the third moment over the second moment of the particle size distribution and the time-mean should be calculated, weighting the individual samples by the cloudy fraction of the grid cell.", + "dimensions": "alevel site time1", + "out_name": "reffclws", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlut": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time1", + "out_name": "rlut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdt": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "toa_incoming_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Incident Shortwave Radiation", + "comment": "Shortwave radiation incident at the top of the atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "rsdt", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsut": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Shortwave Radiation", + "comment": "at the top of the atmosphere", + "dimensions": "longitude latitude time1", + "out_name": "rsut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude alevel time1", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time1 height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhus": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity", + "units": "s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Tendency of Specific Humidity", + "comment": "Tendency of Specific Humidity", + "dimensions": "longitude latitude alevel time1", + "out_name": "tnhus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhuspbl": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_boundary_layer_mixing", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Boundary Layer Mixing", + "comment": "Includes all boundary layer terms including diffusive terms.", + "dimensions": "alevel site time1", + "out_name": "tnhuspbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnhusscp": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation", + "units": "s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Specific Humidity Due to Stratiform Clouds and Precipitation", + "comment": "The phrase 'tendency_of_X' means derivative of X with respect to time. 'Specific' means per unit mass. Specific humidity is the mass fraction of water vapor in (moist) air. The specification of a physical process by the phrase 'due_to_' process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. A variable with the standard name of tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation should contain the effects of all processes which convert stratiform clouds and precipitation to or from water vapor. In an atmosphere model, stratiform cloud is that produced by large-scale convergence (not the convection schemes).", + "dimensions": "alevel site time1", + "out_name": "tnhusscp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnt": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature", + "units": "K s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Tendency of Air Temperature", + "comment": "Tendency of Air Temperature", + "dimensions": "longitude latitude alevel time1", + "out_name": "tnt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntd": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_diffusion", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Numerical Diffusion", + "comment": "This includes any horizontal or vertical numerical temperature diffusion not associated with the parametrized moist physics or the resolved dynamics. For example, any vertical diffusion which is part of the boundary layer mixing scheme should be excluded, as should any diffusion which is included in the terms from the resolved dynamics. This term is required to check the closure of the temperature budget.", + "dimensions": "alevel site time1", + "out_name": "tntd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntpbl": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_boundary_layer_mixing", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Boundary Layer Mixing", + "comment": "Includes all boundary layer terms including diffusive terms.", + "dimensions": "alevel site time1", + "out_name": "tntpbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrl": { + "frequency": "subhrPt", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Longwave Radiative Heating", + "comment": "Tendency of air temperature due to longwave radiative heating", + "dimensions": "alevel site time1", + "out_name": "tntrl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrlcs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Clear Sky Longwave Radiative Heating", + "comment": "Tendency of Air Temperature due to Clear Sky Longwave Radiative Heating", + "dimensions": "alevel site time1", + "out_name": "tntrlcs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrs": { + "frequency": "subhrPt", + "modeling_realm": "aerosol", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Shortwave Radiative Heating", + "comment": "Tendency of air temperature due to shortwave radiative heating", + "dimensions": "alevel site time1", + "out_name": "tntrs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntrscs": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Clear Sky Shortwave Radiative Heating", + "comment": "Tendency of Air Temperature due to Clear Sky Shortwave Radiative Heating", + "dimensions": "alevel site time1", + "out_name": "tntrscs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tntscp": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation", + "units": "K s-1", + "cell_methods": "area: point time: point", + "cell_measures": "", + "long_name": "Tendency of Air Temperature Due to Stratiform Clouds and Precipitation", + "comment": "The phrase 'tendency_of_X' means derivative of X with respect to time. Air temperature is the bulk temperature of the air, not the surface (skin) temperature. The specification of a physical process by the phrase 'due_to_' process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. A variable with the standard name tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation should contain net latent heating effects of all processes which convert stratiform clouds and precipitation between water vapour, liquid or ice phases. In an atmosphere model, stratiform cloud is that produced by large-scale convergence (not the convection schemes).", + "dimensions": "alevel site time1", + "out_name": "tntscp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude alevel time1", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude alevel time1", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap": { + "frequency": "subhrPt", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "area: mean time: point", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude alevel time1", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Eyr.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Eyr.json new file mode 100644 index 0000000000000000000000000000000000000000..5949e071e18ac684ba28cadaf8d1bb34283bca3a --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Eyr.json @@ -0,0 +1,396 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Eyr", + "realm": "land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "365", + "generic_levels": "alevel olevel", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "baresoilFrac": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Bare Soil Percentage Area Coverage", + "comment": "Percentage of entire grid cell that is covered by bare soil.", + "dimensions": "longitude latitude time typebare", + "out_name": "baresoilFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitter": { + "frequency": "yrPt", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Litter Pool", + "comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.", + "dimensions": "longitude latitude time1", + "out_name": "cLitter", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitterLut": { + "frequency": "yrPt", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sector time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon in Above and Below-Ground Litter Pools on Land-Use Tiles", + "comment": "end of year values (not annual mean)", + "dimensions": "longitude latitude landUse time1", + "out_name": "cLitterLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cProduct": { + "frequency": "yrPt", + "modeling_realm": "land", + "standard_name": "carbon_mass_content_of_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Products of Land-Use Change", + "comment": "Carbon mass per unit area in that has been removed from the environment through land use change.", + "dimensions": "longitude latitude time1", + "out_name": "cProduct", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cProductLut": { + "frequency": "yrPt", + "modeling_realm": "land", + "standard_name": "carbon_mass_content_of_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where sector time: point", + "cell_measures": "area: areacella", + "long_name": "Wood and Agricultural Product Pool Carbon Associated with Land-Use Tiles", + "comment": "Anthropogenic pools associated with land use tiles into which harvests and cleared carbon are deposited before release into atmosphere PLUS any remaining anthropogenic pools that may be associated with lands which were converted into land use tiles during reported period. Examples of products include paper, cardboard, timber for construction, and crop harvest for food or fuel. Does NOT include residue which is deposited into soil or litter; end of year values (not annual mean).", + "dimensions": "longitude latitude landUse time1", + "out_name": "cProductLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoil": { + "frequency": "yrPt", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Model Soil Pool", + "comment": "Carbon mass in the full depth of the soil model.", + "dimensions": "longitude latitude time1", + "out_name": "cSoil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilLut": { + "frequency": "yrPt", + "modeling_realm": "land", + "standard_name": "soil_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sector time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon in Soil Pool on Land-Use Tiles", + "comment": "end of year values (not annual mean)", + "dimensions": "longitude latitude landUse time1", + "out_name": "cSoilLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cVeg": { + "frequency": "yrPt", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: mean where land time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation", + "comment": "Carbon mass per unit area in vegetation.", + "dimensions": "longitude latitude time1", + "out_name": "cVeg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cVegLut": { + "frequency": "yrPt", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: mean where sector time: point", + "cell_measures": "area: areacella", + "long_name": "Carbon in Vegetation on Land-Use Tiles", + "comment": "end of year values (not annual mean)", + "dimensions": "longitude latitude landUse time1", + "out_name": "cVegLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cropFrac": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Crop Cover", + "comment": "Percentage of entire grid cell that is covered by crop.", + "dimensions": "longitude latitude time typecrop", + "out_name": "cropFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fracInLut": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: sum", + "cell_measures": "area: areacella", + "long_name": "Annual Gross Percentage That Was Transferred into This Tile from Other Land-Use Tiles", + "comment": "Cumulative percentage transitions over the year; note that percentage should be reported as a percentage of atmospheric grid cell", + "dimensions": "longitude latitude landUse time", + "out_name": "fracInLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fracLut": { + "frequency": "yrPt", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: point", + "cell_measures": "area: areacella", + "long_name": "Percentage of Grid Cell for Each Land-Use Tile", + "comment": "End of year values (not annual mean); note that percentage should be reported as percentage of land grid cell (example: frac_lnd = 0.5, frac_ocn = 0.5, frac_crop_lnd = 0.2 (of land portion of grid cell), then frac_lut(crop) = 0.5*0.2 = 0.1)", + "dimensions": "longitude latitude landUse time1", + "out_name": "fracLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fracOutLut": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: sum", + "cell_measures": "area: areacella", + "long_name": "Annual Gross Percentage of Land-Use Tile That Was Transferred into Other Land-Use Tiles", + "comment": "Cumulative percentage transitions over the year; note that percentage should be reported as percentage of atmospheric grid cell", + "dimensions": "longitude latitude landUse time", + "out_name": "fracOutLut", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "grassFrac": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Natural Grass Area Percentage", + "comment": "Percentage of entire grid cell that is covered by natural grass.", + "dimensions": "longitude latitude time typenatgr", + "out_name": "grassFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "residualFrac": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Grid Cell That Is Land but neither Vegetation Covered nor Bare Soil", + "comment": "Percentage of entire grid cell that is land and is covered by neither vegetation nor bare-soil (e.g., urban, ice, lakes, etc.)", + "dimensions": "longitude latitude time typeresidual", + "out_name": "residualFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "shrubFrac": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by Shrub", + "comment": "Percentage of entire grid cell that is covered by shrub.", + "dimensions": "longitude latitude time typeshrub", + "out_name": "shrubFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFrac": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Tree Cover Percentage", + "comment": "Percentage of entire grid cell that is covered by trees.", + "dimensions": "longitude latitude time typetree", + "out_name": "treeFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vegFrac": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Vegetated Percentage Cover", + "comment": "Percentage of grid cell that is covered by vegetation.This SHOULD be the sum of tree, grass (natural and pasture), crop and shrub fractions.", + "dimensions": "longitude latitude time typeveg", + "out_name": "vegFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zfullo": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "depth_below_geoid", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Depth Below Geoid of Ocean Layer", + "comment": "Depth below geoid", + "dimensions": "longitude latitude olevel time", + "out_name": "zfullo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLandYr": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon in All Terrestrial Carbon Pools", + "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", + "dimensions": "longitude latitude time", + "out_name": "cLandYr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cFluxYr": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "cFluxYr", + "units": "kg m-2 yr-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "cFluxYr", + "comment": "cFluxYr", + "dimensions": "longitude latitude time", + "out_name": "cFluxYr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_IfxAnt.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_IfxAnt.json new file mode 100644 index 0000000000000000000000000000000000000000..08cbdcae13499e807ba37c6cc0d6fc9571d093d5 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_IfxAnt.json @@ -0,0 +1,90 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table IfxAnt", + "realm": "landIce", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "areacellg": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for Ice Sheet Variables", + "comment": "Area of the target grid (not the interpolated area of the source grid).", + "dimensions": "longitude latitude", + "out_name": "areacellg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfgeoubed": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "upward_geothermal_heat_flux_at_ground_level_in_land_ice", + "units": "W m-2", + "cell_methods": "area: mean where grounded_ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Geothermal Heat Flux Beneath Land Ice", + "comment": "Upward geothermal heat flux per unit area into the base of grounded land ice. This is related to the geothermal heat flux out of the bedrock, but may be modified by horizontal transport due to run-off and by melting at the interface.", + "dimensions": "xant yant", + "out_name": "hfgeoubed", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lithk": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "land_ice_thickness", + "units": "m", + "cell_methods": "area: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Ice Sheet Thickness", + "comment": "The thickness of the ice sheet", + "dimensions": "xant yant", + "out_name": "lithk", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "topg": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "bedrock_altitude", + "units": "m", + "cell_methods": "area: mean where grounded_ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Bedrock Altitude", + "comment": "The bedrock topography beneath the land ice", + "dimensions": "xant yant", + "out_name": "topg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_IfxGre.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_IfxGre.json new file mode 100644 index 0000000000000000000000000000000000000000..1f199e19c18270e4b5ec921d2c1bd5f5cafcb67a --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_IfxGre.json @@ -0,0 +1,90 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table IfxGre", + "realm": "landIce", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "areacellg": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for Ice Sheet Variables", + "comment": "Area of the target grid (not the interpolated area of the source grid).", + "dimensions": "longitude latitude", + "out_name": "areacellg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfgeoubed": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "upward_geothermal_heat_flux_at_ground_level_in_land_ice", + "units": "W m-2", + "cell_methods": "area: mean where grounded_ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Geothermal Heat Flux Beneath Land Ice", + "comment": "Upward geothermal heat flux per unit area into the base of grounded land ice. This is related to the geothermal heat flux out of the bedrock, but may be modified by horizontal transport due to run-off and by melting at the interface.", + "dimensions": "xgre ygre", + "out_name": "hfgeoubed", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lithk": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "land_ice_thickness", + "units": "m", + "cell_methods": "area: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Ice Sheet Thickness", + "comment": "The thickness of the ice sheet", + "dimensions": "xgre ygre", + "out_name": "lithk", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "topg": { + "frequency": "fx", + "modeling_realm": "landIce", + "standard_name": "bedrock_altitude", + "units": "m", + "cell_methods": "area: mean where grounded_ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Bedrock Altitude", + "comment": "The bedrock topography beneath the land ice", + "dimensions": "xgre ygre", + "out_name": "topg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_ImonAnt.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_ImonAnt.json new file mode 100644 index 0000000000000000000000000000000000000000..5e1a84b103c4f5bf364de6f4a1ee7b9ad1f875ee --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_ImonAnt.json @@ -0,0 +1,504 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table ImonAnt", + "realm": "landIce land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "acabf": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Mass Balance Flux", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice surface. Computed as the total surface mass balance on the land ice portion of the grid cell divided by land ice area in the grid cell. A negative value means loss of ice", + "dimensions": "xant yant time", + "out_name": "acabf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfls": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xant yant time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfss": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "xant yant time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icem": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Ice Melt Flux", + "comment": "Loss of ice mass resulting from surface melting. Computed as the total surface melt water on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "xant yant time", + "out_name": "icem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "libmassbffl": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Floating Ice Shelf", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice base. A negative value means loss of ice. Computed as the total basal mass balance on the floating land ice (floating ice shelf) portion of the grid cell divided by floating land ice (floating ice shelf) area in the grid cell. Cell_methods: area: mean where floating_ice_shelf", + "dimensions": "xant yant time", + "out_name": "libmassbffl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "libmassbfgr": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Grounded Ice Sheet", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice base. A negative value means loss of ice. Computed as the total basal mass balance on the grounded land ice portion of the grid cell divided by grounded land ice area in the grid cell. Cell_methods: area: mean where grounded_ice_sheet", + "dimensions": "xant yant time", + "out_name": "libmassbfgr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "licalvf": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Calving Flux", + "comment": "Loss of ice mass resulting from iceberg calving. Computed as the rate of mass loss by the ice shelf (in kg s-1) divided by the horizontal area of the ice sheet (m2) in the grid box.", + "dimensions": "xant yant time", + "out_name": "licalvf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lifmassbf": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Vertical Front Mass Balance Flux", + "comment": "Total mass balance at the ice front (or vertical margin). It includes both iceberg calving and melt on vertical ice front", + "dimensions": "xant yant time", + "out_name": "lifmassbf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litempbotfl": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Floating Ice Shelf", + "comment": "Basal temperature that is used to force the ice sheet models, it is the temperature AT ice shelf-ocean interface. Cell_methods: area: mean where floating_ice_shelf", + "dimensions": "xant yant time", + "out_name": "litempbotfl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litempbotgr": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Grounded Ice Sheet", + "comment": "Basal temperature that is used to force the ice sheet models, it is the temperature AT ice sheet - bedrock interface. Cell_methods: area: mean where grounded_ice_sheet", + "dimensions": "xant yant time", + "out_name": "litempbotgr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litemptop": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Temperature at Top of Ice Sheet Model", + "comment": "Upper boundary temperature that is used to force ice sheet models. It is the temperature at the base of the snowpack models, and does not vary with seasons. Report surface temperature of ice sheet where snow thickness is zero", + "dimensions": "xant yant time", + "out_name": "litemptop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrroLi": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "land_ice_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Runoff Flux", + "comment": "Runoff flux over land ice is the difference between any available liquid water in the snowpack less any refreezing. Computed as the sum of rainfall and melt of snow or ice less any refreezing or water retained in the snowpack", + "dimensions": "xant yant time", + "out_name": "mrroLi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "orog": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Altitude", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. Altitude is the (geometric) height above the geoid, which is the reference geopotential surface. The geoid is similar to mean sea level.", + "dimensions": "xant yant time", + "out_name": "orog", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prra": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Rainfall Flux over Land Ice", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xant yant time", + "out_name": "prra", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snowfall Flux", + "comment": "At surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "xant yant time", + "out_name": "prsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlds": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xant yant time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlus": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xant yant time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsds": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "xant yant time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsus": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'shortwave' means shortwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xant yant time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sbl": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "xant yant time", + "out_name": "sbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snc": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Area Percentage", + "comment": "Percentage of each grid cell that is occupied by snow that rests on land portion of cell.", + "dimensions": "xant yant time", + "out_name": "snc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snicefreez": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_refreezing_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Refreeze Flux", + "comment": "Mass flux of surface meltwater which refreezes within the snowpack. Computed as the total refreezing on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "xant yant time", + "out_name": "snicefreez", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snicem": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Melt Flux", + "comment": "Loss of snow and ice mass resulting from surface melting. Computed as the total surface melt on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "xant yant time", + "out_name": "snicem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snm": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow Melt", + "comment": "The total surface snow melt rate on the land portion of the grid cell divided by the land area in the grid cell; report as zero for snow-free land regions and missing where there is no land.", + "dimensions": "xant yant time", + "out_name": "snm", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ts": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "xant yant time", + "out_name": "ts", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsn": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Internal Temperature", + "comment": "This temperature is averaged over all the snow in the grid cell that rests on land or land ice. When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as missing in regions free of snow on land.", + "dimensions": "xant yant time", + "out_name": "tsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_ImonGre.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_ImonGre.json new file mode 100644 index 0000000000000000000000000000000000000000..5507a996c3860fc075f6ed0408c88a49da56a2ec --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_ImonGre.json @@ -0,0 +1,504 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table ImonGre", + "realm": "landIce land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "acabf": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Mass Balance Flux", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice surface. Computed as the total surface mass balance on the land ice portion of the grid cell divided by land ice area in the grid cell. A negative value means loss of ice", + "dimensions": "xgre ygre time", + "out_name": "acabf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfls": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xgre ygre time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfss": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "xgre ygre time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icem": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Ice Melt Flux", + "comment": "Loss of ice mass resulting from surface melting. Computed as the total surface melt water on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "xgre ygre time", + "out_name": "icem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "libmassbffl": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Floating Ice Shelf", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice base. A negative value means loss of ice. Computed as the total basal mass balance on the floating land ice (floating ice shelf) portion of the grid cell divided by floating land ice (floating ice shelf) area in the grid cell. Cell_methods: area: mean where floating_ice_shelf", + "dimensions": "xgre ygre time", + "out_name": "libmassbffl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "libmassbfgr": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Grounded Ice Sheet", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice base. A negative value means loss of ice. Computed as the total basal mass balance on the grounded land ice portion of the grid cell divided by grounded land ice area in the grid cell. Cell_methods: area: mean where grounded_ice_sheet", + "dimensions": "xgre ygre time", + "out_name": "libmassbfgr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "licalvf": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Calving Flux", + "comment": "Loss of ice mass resulting from iceberg calving. Computed as the rate of mass loss by the ice shelf (in kg s-1) divided by the horizontal area of the ice sheet (m2) in the grid box.", + "dimensions": "xgre ygre time", + "out_name": "licalvf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lifmassbf": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Vertical Front Mass Balance Flux", + "comment": "Total mass balance at the ice front (or vertical margin). It includes both iceberg calving and melt on vertical ice front", + "dimensions": "xgre ygre time", + "out_name": "lifmassbf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litempbotfl": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Floating Ice Shelf", + "comment": "Basal temperature that is used to force the ice sheet models, it is the temperature AT ice shelf-ocean interface. Cell_methods: area: mean where floating_ice_shelf", + "dimensions": "xgre ygre time", + "out_name": "litempbotfl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litempbotgr": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Grounded Ice Sheet", + "comment": "Basal temperature that is used to force the ice sheet models, it is the temperature AT ice sheet - bedrock interface. Cell_methods: area: mean where grounded_ice_sheet", + "dimensions": "xgre ygre time", + "out_name": "litempbotgr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litemptop": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Temperature at Top of Ice Sheet Model", + "comment": "Upper boundary temperature that is used to force ice sheet models. It is the temperature at the base of the snowpack models, and does not vary with seasons. Report surface temperature of ice sheet where snow thickness is zero", + "dimensions": "xgre ygre time", + "out_name": "litemptop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrroLi": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "land_ice_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Runoff Flux", + "comment": "Runoff flux over land ice is the difference between any available liquid water in the snowpack less any refreezing. Computed as the sum of rainfall and melt of snow or ice less any refreezing or water retained in the snowpack", + "dimensions": "xgre ygre time", + "out_name": "mrroLi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "orog": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Altitude", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. Altitude is the (geometric) height above the geoid, which is the reference geopotential surface. The geoid is similar to mean sea level.", + "dimensions": "xgre ygre time", + "out_name": "orog", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prra": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Rainfall Flux over Land Ice", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xgre ygre time", + "out_name": "prra", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snowfall Flux", + "comment": "At surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "xgre ygre time", + "out_name": "prsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlds": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xgre ygre time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlus": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xgre ygre time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsds": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "xgre ygre time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsus": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'shortwave' means shortwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "xgre ygre time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sbl": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "xgre ygre time", + "out_name": "sbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snc": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Area Percentage", + "comment": "Percentage of each grid cell that is occupied by snow that rests on land portion of cell.", + "dimensions": "xgre ygre time", + "out_name": "snc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snicefreez": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_refreezing_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Refreeze Flux", + "comment": "Mass flux of surface meltwater which refreezes within the snowpack. Computed as the total refreezing on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "xgre ygre time", + "out_name": "snicefreez", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snicem": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow and Ice Melt Flux", + "comment": "Loss of snow and ice mass resulting from surface melting. Computed as the total surface melt on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "xgre ygre time", + "out_name": "snicem", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snm": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Snow Melt", + "comment": "The total surface snow melt rate on the land portion of the grid cell divided by the land area in the grid cell; report as zero for snow-free land regions and missing where there is no land.", + "dimensions": "xgre ygre time", + "out_name": "snm", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ts": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "xgre ygre time", + "out_name": "ts", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsn": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Internal Temperature", + "comment": "This temperature is averaged over all the snow in the grid cell that rests on land or land ice. When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as missing in regions free of snow on land.", + "dimensions": "xgre ygre time", + "out_name": "tsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_IyrAnt.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_IyrAnt.json new file mode 100644 index 0000000000000000000000000000000000000000..80ca01be335181005613e49f84117af8885df1c7 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_IyrAnt.json @@ -0,0 +1,612 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table IyrAnt", + "realm": "landIce", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "365.00", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "acabf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Mass Balance Flux", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice surface. Computed as the total surface mass balance on the land ice portion of the grid cell divided by land ice area in the grid cell. A negative value means loss of ice", + "dimensions": "xant yant time", + "out_name": "acabf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfgeoubed": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "upward_geothermal_heat_flux_at_ground_level_in_land_ice", + "units": "W m-2", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Geothermal Heat Flux Beneath Land Ice", + "comment": "Upward geothermal heat flux per unit area into the base of grounded land ice. This is related to the geothermal heat flux out of the bedrock, but may be modified by horizontal transport due to run-off and by melting at the interface.", + "dimensions": "xant yant time", + "out_name": "hfgeoubed", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "iareafl": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area", + "units": "m2", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "", + "long_name": "Area Covered by Floating Ice Shelves", + "comment": "Total area of the floating ice shelves (the component of ice sheet that flows over ocean)", + "dimensions": "time", + "out_name": "iareafl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "iareagr": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area", + "units": "m2", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "", + "long_name": "Area Covered by Grounded Ice Sheet", + "comment": "Total area of the grounded ice sheets (the component of ice sheet resting over bedrock)", + "dimensions": "time", + "out_name": "iareagr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "libmassbffl": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Floating Ice Shelf", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice base. A negative value means loss of ice. Computed as the total basal mass balance on the floating land ice (floating ice shelf) portion of the grid cell divided by floating land ice (floating ice shelf) area in the grid cell. Cell_methods: area: mean where floating_ice_shelf", + "dimensions": "xant yant time", + "out_name": "libmassbffl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "libmassbfgr": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Grounded Ice Sheet", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice base. A negative value means loss of ice. Computed as the total basal mass balance on the grounded land ice portion of the grid cell divided by grounded land ice area in the grid cell. Cell_methods: area: mean where grounded_ice_sheet", + "dimensions": "xant yant time", + "out_name": "libmassbfgr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "licalvf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Calving Flux", + "comment": "Loss of ice mass resulting from iceberg calving. Computed as the rate of mass loss by the ice shelf (in kg s-1) divided by the horizontal area of the ice sheet (m2) in the grid box.", + "dimensions": "xant yant time", + "out_name": "licalvf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lifmassbf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Vertical Front Mass Balance Flux", + "comment": "Total mass balance at the ice front (or vertical margin). It includes both iceberg calving and melt on vertical ice front", + "dimensions": "xant yant time", + "out_name": "lifmassbf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lim": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_mass", + "units": "kg", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Ice Sheet Mass", + "comment": "The ice sheet mass is computed as the volume times density", + "dimensions": "time", + "out_name": "lim", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limnsw": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_mass_not_displacing_sea_water", + "units": "kg", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "", + "long_name": "Ice Sheet Mass That Does not Displace Sea Water", + "comment": "The ice sheet mass is computed as the volume above flotation times density. Changes in land_ice_mass_not_displacing_sea_water will always result in a change in sea level, unlike changes in land_ice_mass which may not result in sea level change (such as melting of the floating ice shelves, or portion of ice that sits on bedrock below sea level)", + "dimensions": "time", + "out_name": "limnsw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litempbotfl": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Floating Ice Shelf", + "comment": "Basal temperature that is used to force the ice sheet models, it is the temperature AT ice shelf-ocean interface. Cell_methods: area: mean where floating_ice_shelf", + "dimensions": "xant yant time", + "out_name": "litempbotfl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litempbotgr": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Grounded Ice Sheet", + "comment": "Basal temperature that is used to force the ice sheet models, it is the temperature AT ice sheet - bedrock interface. Cell_methods: area: mean where grounded_ice_sheet", + "dimensions": "xant yant time", + "out_name": "litempbotgr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litemptop": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Temperature at Top of Ice Sheet Model", + "comment": "Upper boundary temperature that is used to force ice sheet models. It is the temperature at the base of the snowpack models, and does not vary with seasons. Report surface temperature of ice sheet where snow thickness is zero", + "dimensions": "xant yant time", + "out_name": "litemptop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lithk": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Ice Sheet Thickness", + "comment": "The thickness of the ice sheet", + "dimensions": "xant yant time", + "out_name": "lithk", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "modelCellAreai": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "The Cell Area of the Ice Sheet Model", + "comment": "Horizontal area of ice-sheet grid cells", + "dimensions": "xant yant time", + "out_name": "modelCellAreai", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "orog": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Altitude", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. Altitude is the (geometric) height above the geoid, which is the reference geopotential surface. The geoid is similar to mean sea level.", + "dimensions": "xant yant time", + "out_name": "orog", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftflf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Floating Ice Shelf Area Percentage", + "comment": "Percentage of grid cell covered by floating ice shelf, the component of the ice sheet that is flowing over sea water", + "dimensions": "xant yant time", + "out_name": "sftflf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftgif": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "land_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Area Percentage", + "comment": "Percentage of grid cell covered by land ice (ice sheet, ice shelf, ice cap, glacier)", + "dimensions": "xant yant time", + "out_name": "sftgif", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftgrf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Grounded Ice Sheet Area Percentage", + "comment": "Percentage of grid cell covered by grounded ice sheet", + "dimensions": "xant yant time", + "out_name": "sftgrf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snc": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Area Percentage", + "comment": "Percentage of each grid cell that is occupied by snow that rests on land portion of cell.", + "dimensions": "xant yant time", + "out_name": "snc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "strbasemag": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_drag", + "units": "Pa", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Basal Drag", + "comment": "Magnitude of basal drag at land ice base", + "dimensions": "xant yant time", + "out_name": "strbasemag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tendacabf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_surface_mass_balance", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Surface Mass Balance Flux", + "comment": "The total surface mass balance flux over land ice is a spatial integration of the surface mass balance flux", + "dimensions": "time", + "out_name": "tendacabf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tendlibmassbf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_basal_mass_balance", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Basal Mass Balance Flux", + "comment": "The total basal mass balance flux over land ice is a spatial integration of the basal mass balance flux", + "dimensions": "time", + "out_name": "tendlibmassbf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tendlicalvf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_calving", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Calving Flux", + "comment": "The total calving flux over land ice is a spatial integration of the calving flux", + "dimensions": "time", + "out_name": "tendlicalvf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "topg": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "bedrock_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Bedrock Altitude", + "comment": "The bedrock topography beneath the land ice", + "dimensions": "xant yant time", + "out_name": "topg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "xvelbase": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Basal Velocity", + "comment": "A velocity is a vector quantity. 'x' indicates a vector component along the grid x-axis, positive with increasing x. 'Land ice' means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. 'basal' means the lower boundary of the land ice.", + "dimensions": "xant yant time", + "out_name": "xvelbase", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "xvelmean": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_vertical_mean_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Vertical Mean Velocity", + "comment": "The vertical mean land ice velocity is the average from the bedrock to the surface of the ice", + "dimensions": "xant yant time", + "out_name": "xvelmean", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "xvelsurf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Surface Velocity", + "comment": "A velocity is a vector quantity. 'x' indicates a vector component along the grid x-axis, positive with increasing x. 'Land ice' means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. The surface called 'surface' means the lower boundary of the atmosphere.", + "dimensions": "xant yant time", + "out_name": "xvelsurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "yvelbase": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Basal Velocity", + "comment": "A velocity is a vector quantity. 'y' indicates a vector component along the grid y-axis, positive with increasing y. 'Land ice' means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. 'basal' means the lower boundary of the land ice.", + "dimensions": "xant yant time", + "out_name": "yvelbase", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "yvelmean": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_vertical_mean_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Vertical Mean Velocity", + "comment": "The vertical mean land ice velocity is the average from the bedrock to the surface of the ice", + "dimensions": "xant yant time", + "out_name": "yvelmean", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "yvelsurf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Surface Velocity", + "comment": "A velocity is a vector quantity. 'y' indicates a vector component along the grid y-axis, positive with increasing y. 'Land ice' means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. The surface called 'surface' means the lower boundary of the atmosphere.'", + "dimensions": "xant yant time", + "out_name": "yvelsurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zvelbase": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_upward_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Upward Component of Land-Ice Basal Velocity", + "comment": "A velocity is a vector quantity. 'Upward' indicates a vector component which is positive when directed upward (negative downward). 'basal' means the lower boundary of the atmosphere", + "dimensions": "xant yant time", + "out_name": "zvelbase", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zvelsurf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_upward_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Upward Component of Land-Ice Surface Velocity", + "comment": "A velocity is a vector quantity. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface called 'surface' means the lower boundary of the atmosphere", + "dimensions": "xant yant time", + "out_name": "zvelsurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_IyrGre.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_IyrGre.json new file mode 100644 index 0000000000000000000000000000000000000000..f3fdd8540e0757e48be2d2c1c3bbf47aa57e13ee --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_IyrGre.json @@ -0,0 +1,612 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table IyrGre", + "realm": "landIce", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "365.00", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "acabf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Mass Balance Flux", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice surface. Computed as the total surface mass balance on the land ice portion of the grid cell divided by land ice area in the grid cell. A negative value means loss of ice", + "dimensions": "xgre ygre time", + "out_name": "acabf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfgeoubed": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "upward_geothermal_heat_flux_at_ground_level_in_land_ice", + "units": "W m-2", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Geothermal Heat Flux Beneath Land Ice", + "comment": "Upward geothermal heat flux per unit area into the base of grounded land ice. This is related to the geothermal heat flux out of the bedrock, but may be modified by horizontal transport due to run-off and by melting at the interface.", + "dimensions": "xgre ygre time", + "out_name": "hfgeoubed", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "iareafl": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area", + "units": "m2", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "", + "long_name": "Area Covered by Floating Ice Shelves", + "comment": "Total area of the floating ice shelves (the component of ice sheet that flows over ocean)", + "dimensions": "time", + "out_name": "iareafl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "iareagr": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area", + "units": "m2", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "", + "long_name": "Area Covered by Grounded Ice Sheet", + "comment": "Total area of the grounded ice sheets (the component of ice sheet resting over bedrock)", + "dimensions": "time", + "out_name": "iareagr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "libmassbffl": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Floating Ice Shelf", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice base. A negative value means loss of ice. Computed as the total basal mass balance on the floating land ice (floating ice shelf) portion of the grid cell divided by floating land ice (floating ice shelf) area in the grid cell. Cell_methods: area: mean where floating_ice_shelf", + "dimensions": "xgre ygre time", + "out_name": "libmassbffl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "libmassbfgr": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Specific Mass Balance Flux of Grounded Ice Sheet", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice base. A negative value means loss of ice. Computed as the total basal mass balance on the grounded land ice portion of the grid cell divided by grounded land ice area in the grid cell. Cell_methods: area: mean where grounded_ice_sheet", + "dimensions": "xgre ygre time", + "out_name": "libmassbfgr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "licalvf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Calving Flux", + "comment": "Loss of ice mass resulting from iceberg calving. Computed as the rate of mass loss by the ice shelf (in kg s-1) divided by the horizontal area of the ice sheet (m2) in the grid box.", + "dimensions": "xgre ygre time", + "out_name": "licalvf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lifmassbf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_specific_mass_flux_due_to_calving_and_ice_front_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Vertical Front Mass Balance Flux", + "comment": "Total mass balance at the ice front (or vertical margin). It includes both iceberg calving and melt on vertical ice front", + "dimensions": "xgre ygre time", + "out_name": "lifmassbf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lim": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_mass", + "units": "kg", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Ice Sheet Mass", + "comment": "The ice sheet mass is computed as the volume times density", + "dimensions": "time", + "out_name": "lim", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limnsw": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_mass_not_displacing_sea_water", + "units": "kg", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "", + "long_name": "Ice Sheet Mass That Does not Displace Sea Water", + "comment": "The ice sheet mass is computed as the volume above flotation times density. Changes in land_ice_mass_not_displacing_sea_water will always result in a change in sea level, unlike changes in land_ice_mass which may not result in sea level change (such as melting of the floating ice shelves, or portion of ice that sits on bedrock below sea level)", + "dimensions": "time", + "out_name": "limnsw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litempbotfl": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where floating_ice_shelf (comment: mask=sftflf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Floating Ice Shelf", + "comment": "Basal temperature that is used to force the ice sheet models, it is the temperature AT ice shelf-ocean interface. Cell_methods: area: mean where floating_ice_shelf", + "dimensions": "xgre ygre time", + "out_name": "litempbotfl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litempbotgr": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where grounded_ice_sheet (comment: mask=sfgrlf)", + "cell_measures": "area: areacellg", + "long_name": "Basal Temperature of Grounded Ice Sheet", + "comment": "Basal temperature that is used to force the ice sheet models, it is the temperature AT ice sheet - bedrock interface. Cell_methods: area: mean where grounded_ice_sheet", + "dimensions": "xgre ygre time", + "out_name": "litempbotgr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litemptop": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Temperature at Top of Ice Sheet Model", + "comment": "Upper boundary temperature that is used to force ice sheet models. It is the temperature at the base of the snowpack models, and does not vary with seasons. Report surface temperature of ice sheet where snow thickness is zero", + "dimensions": "xgre ygre time", + "out_name": "litemptop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lithk": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Ice Sheet Thickness", + "comment": "The thickness of the ice sheet", + "dimensions": "xgre ygre time", + "out_name": "lithk", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "modelCellAreai": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "The Cell Area of the Ice Sheet Model", + "comment": "Horizontal area of ice-sheet grid cells", + "dimensions": "xgre ygre time", + "out_name": "modelCellAreai", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "orog": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Surface Altitude", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. Altitude is the (geometric) height above the geoid, which is the reference geopotential surface. The geoid is similar to mean sea level.", + "dimensions": "xgre ygre time", + "out_name": "orog", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftflf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Floating Ice Shelf Area Percentage", + "comment": "Percentage of grid cell covered by floating ice shelf, the component of the ice sheet that is flowing over sea water", + "dimensions": "xgre ygre time", + "out_name": "sftflf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftgif": { + "frequency": "yr", + "modeling_realm": "land", + "standard_name": "land_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Area Percentage", + "comment": "Percentage of grid cell covered by land ice (ice sheet, ice shelf, ice cap, glacier)", + "dimensions": "xgre ygre time", + "out_name": "sftgif", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftgrf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacellg", + "long_name": "Grounded Ice Sheet Area Percentage", + "comment": "Percentage of grid cell covered by grounded ice sheet", + "dimensions": "xgre ygre time", + "out_name": "sftgrf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snc": { + "frequency": "yr", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Snow Area Percentage", + "comment": "Percentage of each grid cell that is occupied by snow that rests on land portion of cell.", + "dimensions": "xgre ygre time", + "out_name": "snc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "strbasemag": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_drag", + "units": "Pa", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Land Ice Basal Drag", + "comment": "Magnitude of basal drag at land ice base", + "dimensions": "xgre ygre time", + "out_name": "strbasemag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tendacabf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_surface_mass_balance", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Surface Mass Balance Flux", + "comment": "The total surface mass balance flux over land ice is a spatial integration of the surface mass balance flux", + "dimensions": "time", + "out_name": "tendacabf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tendlibmassbf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_basal_mass_balance", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Basal Mass Balance Flux", + "comment": "The total basal mass balance flux over land ice is a spatial integration of the basal mass balance flux", + "dimensions": "time", + "out_name": "tendlibmassbf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tendlicalvf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "tendency_of_land_ice_mass_due_to_calving", + "units": "kg s-1", + "cell_methods": "area: sum where ice_sheet time: mean", + "cell_measures": "", + "long_name": "Total Calving Flux", + "comment": "The total calving flux over land ice is a spatial integration of the calving flux", + "dimensions": "time", + "out_name": "tendlicalvf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "topg": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "bedrock_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Bedrock Altitude", + "comment": "The bedrock topography beneath the land ice", + "dimensions": "xgre ygre time", + "out_name": "topg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "xvelbase": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Basal Velocity", + "comment": "A velocity is a vector quantity. 'x' indicates a vector component along the grid x-axis, positive with increasing x. 'Land ice' means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. 'basal' means the lower boundary of the land ice.", + "dimensions": "xgre ygre time", + "out_name": "xvelbase", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "xvelmean": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_vertical_mean_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Vertical Mean Velocity", + "comment": "The vertical mean land ice velocity is the average from the bedrock to the surface of the ice", + "dimensions": "xgre ygre time", + "out_name": "xvelmean", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "xvelsurf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "X-Component of Land Ice Surface Velocity", + "comment": "A velocity is a vector quantity. 'x' indicates a vector component along the grid x-axis, positive with increasing x. 'Land ice' means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. The surface called 'surface' means the lower boundary of the atmosphere.", + "dimensions": "xgre ygre time", + "out_name": "xvelsurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "yvelbase": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Basal Velocity", + "comment": "A velocity is a vector quantity. 'y' indicates a vector component along the grid y-axis, positive with increasing y. 'Land ice' means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. 'basal' means the lower boundary of the land ice.", + "dimensions": "xgre ygre time", + "out_name": "yvelbase", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "yvelmean": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_vertical_mean_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Vertical Mean Velocity", + "comment": "The vertical mean land ice velocity is the average from the bedrock to the surface of the ice", + "dimensions": "xgre ygre time", + "out_name": "yvelmean", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "yvelsurf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Y-Component of Land Ice Surface Velocity", + "comment": "A velocity is a vector quantity. 'y' indicates a vector component along the grid y-axis, positive with increasing y. 'Land ice' means glaciers, ice-caps and ice-sheets resting on bedrock and also includes ice-shelves. The surface called 'surface' means the lower boundary of the atmosphere.'", + "dimensions": "xgre ygre time", + "out_name": "yvelsurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zvelbase": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_basal_upward_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Upward Component of Land-Ice Basal Velocity", + "comment": "A velocity is a vector quantity. 'Upward' indicates a vector component which is positive when directed upward (negative downward). 'basal' means the lower boundary of the atmosphere", + "dimensions": "xgre ygre time", + "out_name": "zvelbase", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zvelsurf": { + "frequency": "yr", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_upward_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacellg", + "long_name": "Upward Component of Land-Ice Surface Velocity", + "comment": "A velocity is a vector quantity. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface called 'surface' means the lower boundary of the atmosphere", + "dimensions": "xgre ygre time", + "out_name": "zvelsurf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_LImon.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_LImon.json new file mode 100644 index 0000000000000000000000000000000000000000..dc232ded4ab7ef3cfa6c7b4a396dedb94c9a932a --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_LImon.json @@ -0,0 +1,666 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table LImon", + "realm": "landIce land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "acabfIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_specific_mass_balance_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Mass Balance Flux", + "comment": "Specific mass balance means the net rate at which ice is added per unit area at the land ice surface. Computed as the total surface mass balance on the land ice portion of the grid cell divided by land ice area in the grid cell. A negative value means loss of ice", + "dimensions": "longitude latitude time", + "out_name": "acabfIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "agesno": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "age_of_surface_snow", + "units": "day", + "cell_methods": "area: mean where land time: mean (with samples weighted by snow mass)", + "cell_measures": "area: areacella", + "long_name": "Mean Age of Snow", + "comment": "Age of Snow (when computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as missing data in regions free of snow on land.", + "dimensions": "longitude latitude time", + "out_name": "agesno", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfdsn": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_downward_heat_flux_in_snow", + "units": "W m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Downward Heat Flux into Snow Where Land over Land", + "comment": "the net downward heat flux from the atmosphere into the snow that lies on land divided by the land area in the grid cell; reported as 0.0 for snow-free land regions or where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "hfdsn", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hflsIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Upward Latent Heat Flux", + "comment": "Upward latent heat flux from the ice sheet surface", + "dimensions": "longitude latitude time", + "out_name": "hflsIs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfssIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Upward Sensible Heat Flux", + "comment": "Upward sensible heat flux from the ice sheet surface. The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfssIs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icemIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "land_ice_surface_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Ice Melt Flux", + "comment": "Loss of ice mass resulting from surface melting. Computed as the total surface melt water on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "icemIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "litemptopIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_at_top_of_ice_sheet_model", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Temperature at Top of Ice Sheet Model", + "comment": "Upper boundary temperature that is used to force ice sheet models. It is the temperature at the base of the snowpack models, and does not vary with seasons. Report surface temperature of ice sheet where snow thickness is zero", + "dimensions": "longitude latitude time", + "out_name": "litemptopIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lwsnl": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "liquid_water_content_of_surface_snow", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Snow Layer", + "comment": "The total mass of liquid water contained interstitially within the whole depth of the snow layer of the land portion of a grid cell divided by the area of the land portion of the cell.", + "dimensions": "longitude latitude time", + "out_name": "lwsnl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrroIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Total Runoff", + "comment": "The total run-off (including drainage through the base of the soil model) per unit area leaving the land portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "mrroIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "orogIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Altitude", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. Altitude is the (geometric) height above the geoid, which is the reference geopotential surface. The geoid is similar to mean sea level.", + "dimensions": "longitude latitude time", + "out_name": "orogIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pflw": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "liquid_water_content_of_permafrost_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Liquid Water Content of Permafrost Layer", + "comment": "*where land over land*, i.e., this is the total mass of liquid water contained within the permafrost layer within the land portion of a grid cell divided by the area of the land portion of the cell.", + "dimensions": "longitude latitude time", + "out_name": "pflw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prraIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Rainfall Rate", + "comment": "Rainfall rate over the ice sheet", + "dimensions": "longitude latitude time", + "out_name": "prraIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsnIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Snowfall Flux", + "comment": "at surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "longitude latitude time", + "out_name": "prsnIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rldsIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Downwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rldsIs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlusIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Upwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlusIs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdsIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations", + "dimensions": "longitude latitude time", + "out_name": "rsdsIs", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsusIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Upwelling Shortwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'shortwave' means shortwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rsusIs", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sbl": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "sbl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sblIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Snow and Ice Sublimation Flux", + "comment": "The snow and ice sublimation flux is the loss of snow and ice mass per unit area from the surface resulting from their direct conversion to water vapor that enters the atmosphere.", + "dimensions": "longitude latitude time", + "out_name": "sblIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftflf": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "floating_ice_shelf_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Floating Ice Shelf Area Percentage", + "comment": "Percentage of grid cell covered by floating ice shelf, the component of the ice sheet that is flowing over sea water", + "dimensions": "longitude latitude time", + "out_name": "sftflf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftgif": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "land_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Land Ice Area Percentage", + "comment": "Percentage of grid cell covered by land ice (ice sheet, ice shelf, ice cap, glacier)", + "dimensions": "longitude latitude time", + "out_name": "sftgif", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftgrf": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "grounded_ice_sheet_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Grounded Ice Sheet Area Percentage", + "comment": "Percentage of grid cell covered by grounded ice sheet", + "dimensions": "longitude latitude time", + "out_name": "sftgrf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snc": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Area Percentage", + "comment": "Percentage of each grid cell that is occupied by snow that rests on land portion of cell.", + "dimensions": "longitude latitude time", + "out_name": "snc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sncIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Snow Cover Percentage", + "comment": "Percentage of each grid cell that is occupied by snow that rests on land portion of cell.", + "dimensions": "longitude latitude time", + "out_name": "sncIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snd": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Depth", + "comment": "where land over land, this is computed as the mean thickness of snow in the land portion of the grid cell (averaging over the entire land portion, including the snow-free fraction). Reported as 0.0 where the land fraction is 0.", + "dimensions": "longitude latitude time", + "out_name": "snd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snicefreezIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_refreezing_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Snow and Ice Refreeze Flux", + "comment": "Mass flux of surface meltwater which refreezes within the snowpack. Computed as the total refreezing on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "snicefreezIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snicemIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_and_ice_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Snow and Ice Melt Flux", + "comment": "Loss of snow and ice mass resulting from surface melting. Computed as the total surface melt on the land ice portion of the grid cell divided by land ice area in the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "snicemIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snm": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow Melt", + "comment": "The total surface snow melt rate on the land portion of the grid cell divided by the land area in the grid cell; report as zero for snow-free land regions and missing where there is no land.", + "dimensions": "longitude latitude time", + "out_name": "snm", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snmIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Snow Melt", + "comment": "The total surface snow melt rate on the land portion of the grid cell divided by the land area in the grid cell; report as zero for snow-free land regions and missing where there is no land.", + "dimensions": "longitude latitude time", + "out_name": "snmIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snw": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow Amount", + "comment": "The mass of surface snow on the land portion of the grid cell divided by the land area in the grid cell; reported as missing where the land fraction is 0; excludes snow on vegetation canopy or on sea ice.", + "dimensions": "longitude latitude time", + "out_name": "snw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sootsn": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "soot_content_of_surface_snow", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Soot Content", + "comment": "the entire land portion of the grid cell is considered, with snow soot content set to 0.0 in regions free of snow.", + "dimensions": "longitude latitude time", + "out_name": "sootsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time", + "out_name": "tasIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tpf": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "permafrost_layer_thickness", + "units": "m", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Permafrost Layer Thickness", + "comment": "The mean thickness of the permafrost layer in the land portion of the grid cell. Reported as zero in permafrost-free regions.", + "dimensions": "longitude latitude time", + "out_name": "tpf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Surface Temperature", + "comment": "Temperature of the lower boundary of the atmosphere", + "dimensions": "longitude latitude time", + "out_name": "tsIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsn": { + "frequency": "mon", + "modeling_realm": "landIce land", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "area: mean where land time: mean (with samples weighted by snow mass)", + "cell_measures": "area: areacella", + "long_name": "Snow Internal Temperature", + "comment": "This temperature is averaged over all the snow in the grid cell that rests on land or land ice. When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as missing in regions free of snow on land.", + "dimensions": "longitude latitude time", + "out_name": "tsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsnIs": { + "frequency": "mon", + "modeling_realm": "landIce", + "standard_name": "temperature_in_surface_snow", + "units": "K", + "cell_methods": "area: time: mean where ice_sheet", + "cell_measures": "area: areacella", + "long_name": "Ice Sheet Snow Internal Temperature", + "comment": "This temperature is averaged over all the snow in the grid cell that rests on land or land ice. When computing the time-mean here, the time samples, weighted by the mass of snow on the land portion of the grid cell, are accumulated and then divided by the sum of the weights. Reported as missing in regions free of snow on land.", + "dimensions": "longitude latitude time", + "out_name": "tsnIs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Lmon.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Lmon.json new file mode 100644 index 0000000000000000000000000000000000000000..3d098c2922ecfb69170d1558d749008906c571d3 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Lmon.json @@ -0,0 +1,990 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Lmon", + "realm": "land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "baresoilFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Bare Soil Percentage Area Coverage", + "comment": "Percentage of entire grid cell that is covered by bare soil.", + "dimensions": "longitude latitude time typebare", + "out_name": "baresoilFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "burntFractionAll": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Entire Grid Cell That Is Covered by Burnt Vegetation (All Classes)", + "comment": "Percentage of grid cell burned due to all fires including natural and anthropogenic fires and those associated with anthropogenic Land-use change", + "dimensions": "longitude latitude time typeburnt", + "out_name": "burntFractionAll", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c3PftFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by C3 Plant Functional Type", + "comment": "Percentage of entire grid cell that is covered by C3 PFTs (including grass, crops, and trees).", + "dimensions": "longitude latitude time typec3pft", + "out_name": "c3PftFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "c4PftFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by C4 Plant Functional Type", + "comment": "Percentage of entire grid cell that is covered by C4 PFTs (including grass and crops).", + "dimensions": "longitude latitude time typec4pft", + "out_name": "c4PftFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cCwd": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "wood_debris_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Coarse Woody Debris", + "comment": "Carbon mass per unit area in woody debris (dead organic matter composed of coarse wood. It is distinct from litter)", + "dimensions": "longitude latitude time", + "out_name": "cCwd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLeaf": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "leaf_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Leaves", + "comment": "Carbon mass per unit area in leaves.", + "dimensions": "longitude latitude time", + "out_name": "cLeaf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitter": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Litter Pool", + "comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.", + "dimensions": "longitude latitude time", + "out_name": "cLitter", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitterAbove": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Above-Ground Litter", + "comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Surface litter' means the part of the litter resting above the soil surface. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.", + "dimensions": "longitude latitude time", + "out_name": "cLitterAbove", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cLitterBelow": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "subsurface_litter_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Below-Ground Litter", + "comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'subsurface litter' means the part of the litter mixed within the soil below the surface. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.", + "dimensions": "longitude latitude time", + "out_name": "cLitterBelow", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cProduct": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_content_of_forestry_and_agricultural_products", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Products of Land-Use Change", + "comment": "Carbon mass per unit area in that has been removed from the environment through land use change.", + "dimensions": "longitude latitude time", + "out_name": "cProduct", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cRoot": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "root_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Roots", + "comment": "Carbon mass per unit area in roots, including fine and coarse roots.", + "dimensions": "longitude latitude time", + "out_name": "cRoot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilFast": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "fast_soil_pool_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Fast Soil Pool", + "comment": "Carbon mass per unit area in fast soil pool. Fast means a lifetime of less than 10 years for reference climate conditions (20th century) in the absence of water limitations.", + "dimensions": "longitude latitude time", + "out_name": "cSoilFast", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilMedium": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "medium_soil_pool_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Medium Soil Pool", + "comment": "Carbon mass per unit area in medium (rate) soil pool. Medium means a lifetime of more than than 10 years and less than 100 years for reference climate conditions (20th century) in the absence of water limitations.", + "dimensions": "longitude latitude time", + "out_name": "cSoilMedium", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cSoilSlow": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "slow_soil_pool_mass_content_of_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Slow Soil Pool", + "comment": "Carbon mass per unit area in slow soil pool. Slow means a lifetime of more than 100 years for reference climate (20th century) in the absence of water limitations.", + "dimensions": "longitude latitude time", + "out_name": "cSoilSlow", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cVeg": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "vegetation_carbon_content", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass in Vegetation", + "comment": "Carbon mass per unit area in vegetation.", + "dimensions": "longitude latitude time", + "out_name": "cVeg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cropFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Crop Cover", + "comment": "Percentage of entire grid cell that is covered by crop.", + "dimensions": "longitude latitude time typecrop", + "out_name": "cropFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evspsblsoi": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_soil", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Water Evaporation from Soil", + "comment": "Water evaporation from soil (including sublimation).", + "dimensions": "longitude latitude time", + "out_name": "evspsblsoi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evspsblveg": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "water_evaporation_flux_from_canopy", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Evaporation from Canopy", + "comment": "The canopy evaporation and sublimation (if present in model); may include dew formation as a negative flux.", + "dimensions": "longitude latitude time", + "out_name": "evspsblveg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fco2nat": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources [kgC m-2 s-1]", + "comment": "This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon that account for natural exchanges between the atmosphere and land (nep) or ocean (fgco2) reservoirs.", + "dimensions": "longitude latitude time", + "out_name": "fco2nat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fFire": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to CO2 Emission from Fire Excluding Land-Use Change [kgC m-2 s-1]", + "comment": "CO2 emissions (expressed as a carbon mass flux per unit area) from natural fires and human ignition fires as calculated by the fire module of the dynamic vegetation model, but excluding any CO2 flux from fire included in fLuc (CO2 Flux to Atmosphere from Land Use Change).", + "dimensions": "longitude latitude time", + "out_name": "fFire", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fGrazing": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Grazing on Land [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area due to grazing on land", + "dimensions": "longitude latitude time", + "out_name": "fGrazing", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fHarvest": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Crop Harvesting [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area due to crop harvesting", + "dimensions": "longitude latitude time", + "out_name": "fHarvest", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fLitterSoil": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_flux_into_soil_from_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Litter to Soil", + "comment": "Carbon mass flux per unit area into soil from litter (dead plant material in or above the soil).", + "dimensions": "longitude latitude time", + "out_name": "fLitterSoil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fVegLitter": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_flux_of_carbon_into_litter_from_vegetation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation to Litter", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Vegetation' means any living plants e.g. trees, shrubs, grass. 'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. The sum of the quantities with standard names mass_flux_of_carbon_into_litter_from_vegetation_due_to_mortality and mass_flux_of_carbon_into_litter_from_vegetation_due_to_senescence is mass_flux_of_carbon_into_litter_from_vegetation.", + "dimensions": "longitude latitude time", + "out_name": "fVegLitter", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fVegSoil": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "carbon_mass_flux_into_soil_from_vegetation_excluding_litter", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Carbon Mass Flux from Vegetation Directly to Soil", + "comment": "Carbon mass flux per unit area from vegetation directly into soil, without intermediate conversion to litter.", + "dimensions": "longitude latitude time", + "out_name": "fVegSoil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "gpp": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land [kgC m-2 s-1]", + "comment": "The rate of synthesis of biomass from inorganic precursors by autotrophs ('producers') expressed as the mass of carbon which it contains. For example, photosynthesis in plants or phytoplankton. The producers also respire some of this biomass and the difference is referred to as the net primary production. ", + "dimensions": "longitude latitude time", + "out_name": "gpp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "grassFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Natural Grass Area Percentage", + "comment": "Percentage of entire grid cell that is covered by natural grass.", + "dimensions": "longitude latitude time typenatgr", + "out_name": "grassFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "lai": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "leaf_area_index", + "units": "1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Leaf Area Index", + "comment": "A ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows.", + "dimensions": "longitude latitude time", + "out_name": "lai", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "landCoverFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Area by Vegetation or Land-Cover Category", + "comment": "Percentage of grid cell area occupied by different model vegetation/land cover categories. The categories may differ from model to model, depending on each model's subgrid land cover category definitions. Categories may include natural vegetation, anthropogenic vegetation, bare soil, lakes, urban areas, glaciers, etc. Sum of all should equal the percentage of the grid cell that is land.", + "dimensions": "longitude latitude vegtype time", + "out_name": "landCoverFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrfso": { + "frequency": "mon", + "modeling_realm": "land landIce", + "standard_name": "soil_frozen_water_content", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Soil Frozen Water Content", + "comment": "The mass per unit area (summed over all model layers) of frozen water.", + "dimensions": "longitude latitude time", + "out_name": "mrfso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrro": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Runoff", + "comment": "The total run-off (including drainage through the base of the soil model) per unit area leaving the land portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "mrro", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrros": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Runoff", + "comment": "The total surface run off leaving the land portion of the grid cell (excluding drainage through the base of the soil model).", + "dimensions": "longitude latitude time", + "out_name": "mrros", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrso": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Soil Moisture Content", + "comment": "the mass per unit area (summed over all soil layers) of water in all phases.", + "dimensions": "longitude latitude time", + "out_name": "mrso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsos": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Moisture in Upper Portion of Soil Column", + "comment": "The mass of water in all phases in the upper 10cm of the soil layer.", + "dimensions": "longitude latitude time sdepth1", + "out_name": "mrsos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nbp": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux out of Atmosphere Due to Net Biospheric Production on Land [kgC m-2 s-1]", + "comment": "This is the net mass flux of carbon from atmosphere into land, calculated as photosynthesis MINUS the sum of plant and soil respiration, carbon fluxes from fire, harvest, grazing and land use change. Positive flux is into the land.", + "dimensions": "longitude latitude time", + "out_name": "nbp", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "npp": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production on Land as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "'Production of carbon' means the production of biomass expressed as the mass of carbon which it contains. Net primary production is the excess of gross primary production (rate of synthesis of biomass from inorganic precursors) by autotrophs ('producers'), for example, photosynthesis in plants or phytoplankton, over the rate at which the autotrophs themselves respire some of this biomass. 'Productivity' means production per unit area. The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A.", + "dimensions": "longitude latitude time", + "out_name": "npp", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nppLeaf": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_leaves", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production Allocated to Leaves as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "This is the rate of carbon uptake by leaves due to NPP", + "dimensions": "longitude latitude time", + "out_name": "nppLeaf", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nppRoot": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_roots", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production Allocated to Roots as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "This is the rate of carbon uptake by roots due to NPP", + "dimensions": "longitude latitude time", + "out_name": "nppRoot", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nppWood": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "net_primary_productivity_of_biomass_expressed_as_carbon_accumulated_in_wood", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Primary Production Allocated to Wood as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "This is the rate of carbon uptake by wood due to NPP", + "dimensions": "longitude latitude time", + "out_name": "nppWood", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pastureFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Land Which Is Anthropogenic Pasture", + "comment": "Percentage of entire grid cell that is covered by anthropogenic pasture.", + "dimensions": "longitude latitude time typepasture", + "out_name": "pastureFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prveg": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "precipitation_flux_onto_canopy", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation onto Canopy", + "comment": "The precipitation flux that is intercepted by the vegetation canopy (if present in model) before reaching the ground.", + "dimensions": "longitude latitude time", + "out_name": "prveg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rGrowth": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_growth", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Autotrophic Respiration on Land as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Growth respiration is defined as the additional carbon cost for the synthesis of new growth.", + "dimensions": "longitude latitude time", + "out_name": "rGrowth", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rMaint": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration_for_biomass_maintenance", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Maintenance Autotrophic Respiration on Land [kgC m-2 s-1]", + "comment": "Maintenance respiration is defined as the carbon cost to support the metabolic activity of existing live tissue.", + "dimensions": "longitude latitude time", + "out_name": "rMaint", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ra": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_plant_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Carbon Mass Flux into Atmosphere Due to Autotrophic (Plant) Respiration on Land [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to autotrophic respiration on land (respiration by producers) [see rh for heterotrophic production]", + "dimensions": "longitude latitude time", + "out_name": "ra", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "residualFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of Grid Cell That Is Land but neither Vegetation Covered nor Bare Soil", + "comment": "Percentage of entire grid cell that is land and is covered by neither vegetation nor bare-soil (e.g., urban, ice, lakes, etc.)", + "dimensions": "longitude latitude time typeresidual", + "out_name": "residualFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rh": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_heterotrophic_respiration", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Heterotrophic Respiration on Land as Carbon Mass Flux [kgC m-2 s-1]", + "comment": "Carbon mass flux per unit area into atmosphere due to heterotrophic respiration on land (respiration by consumers)", + "dimensions": "longitude latitude time", + "out_name": "rh", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "shrubFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by Shrub", + "comment": "Percentage of entire grid cell that is covered by shrub.", + "dimensions": "longitude latitude time typeshrub", + "out_name": "shrubFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tran": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "transpiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Transpiration", + "comment": "Transpiration (may include dew formation as a negative flux).", + "dimensions": "longitude latitude time", + "out_name": "tran", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFrac": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Tree Cover Percentage", + "comment": "Percentage of entire grid cell that is covered by trees.", + "dimensions": "longitude latitude time typetree", + "out_name": "treeFrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFracPrimDec": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by Primary Deciduous Tree", + "comment": "Percentage of the entire grid cell that is covered by total primary deciduous trees.", + "dimensions": "longitude latitude time typepdec", + "out_name": "treeFracPrimDec", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFracPrimEver": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by Primary Evergreen Trees", + "comment": "Percentage of entire grid cell that is covered by primary evergreen trees.", + "dimensions": "longitude latitude time typepever", + "out_name": "treeFracPrimEver", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFracSecDec": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by Secondary Deciduous Trees", + "comment": "Percentage of entire grid cell that is covered by secondary deciduous trees.", + "dimensions": "longitude latitude time typesdec", + "out_name": "treeFracSecDec", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "treeFracSecEver": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: mean where land over all_area_types time: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage Cover by Secondary Evergreen Trees", + "comment": "Percentage of entire grid cell that is covered by secondary evergreen trees.", + "dimensions": "longitude latitude time typesever", + "out_name": "treeFracSecEver", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tsl": { + "frequency": "mon", + "modeling_realm": "land", + "standard_name": "soil_temperature", + "units": "K", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Temperature of Soil", + "comment": "Temperature of soil. Reported as missing for grid cells with no land.", + "dimensions": "longitude latitude sdepth time", + "out_name": "tsl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Oclim.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Oclim.json new file mode 100644 index 0000000000000000000000000000000000000000..940fd2c23b1da874696bb8c2126ae89e46c8bbe1 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Oclim.json @@ -0,0 +1,630 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Oclim", + "realm": "ocean", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "olevel olevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "difmxybo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_momentum_xy_biharmonic_diffusivity", + "units": "m4 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Momentum XY Biharmonic Diffusivity", + "comment": "Lateral biharmonic viscosity applied to the momentum equations.", + "dimensions": "longitude latitude olevel time2", + "out_name": "difmxybo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difmxybo2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_momentum_xy_biharmonic_diffusivity", + "units": "m4 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Ocean Momentum XY Biharmonic Diffusivity", + "comment": "Lateral biharmonic viscosity applied to the momentum equations.", + "dimensions": "longitude latitude time2", + "out_name": "difmxybo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difmxylo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_momentum_xy_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Momentum XY Laplacian Diffusivity", + "comment": "Lateral Laplacian viscosity applied to the momentum equations.", + "dimensions": "longitude latitude olevel time2", + "out_name": "difmxylo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difmxylo2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_momentum_xy_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Ocean Momentum XY Laplacian Diffusivity", + "comment": "Lateral Laplacian viscosity applied to the momentum equations.", + "dimensions": "longitude latitude time2", + "out_name": "difmxylo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrbbo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", + "units": "m4 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer Bolus Biharmonic Diffusivity", + "comment": "Parameterized mesoscale eddy advection occurs on a spatial scale of many tens of kilometres and an evolutionary time of weeks(sometimes called bolus advection). Reference: James C. McWilliams 2016, Submesoscale currents in the ocean, Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sciences, volume 472, issue 2189. DOI: 10.1098/rspa.2016.0117. ", + "dimensions": "longitude latitude olevel time2", + "out_name": "diftrbbo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrbbo2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_biharmonic_diffusivity_due_to_parameterized_mesoscale_eddy_advection", + "units": "m4 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Ocean Tracer Bolus Biharmonic Diffusivity", + "comment": "Parameterized mesoscale eddy advection occurs on a spatial scale of many tens of kilometres and an evolutionary time of weeks(sometimes called bolus advection). Reference: James C. McWilliams 2016, Submesoscale currents in the ocean, Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sciences, volume 472, issue 2189. DOI: 10.1098/rspa.2016.0117. ", + "dimensions": "longitude latitude time2", + "out_name": "diftrbbo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrblo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer Diffusivity Due to Parameterized Mesoscale Advection", + "comment": "Ocean tracer diffusivity associated with parameterized eddy-induced advective transport. Sometimes this diffusivity is called the 'thickness' diffusivity. For CMIP5, this diagnostic was called 'ocean tracer bolus laplacian diffusivity'. The CMIP6 name is physically more relevant.", + "dimensions": "longitude latitude olevel time2", + "out_name": "diftrblo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrblo2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Ocean Tracer Diffusivity Due to Parameterized Mesoscale Advection", + "comment": "Ocean tracer diffusivity associated with parameterized eddy-induced advective transport. Sometimes this diffusivity is called the 'thickness' diffusivity. For CMIP5, this diagnostic was called 'ocean tracer bolus laplacian diffusivity'. The CMIP6 name is physically more relevant.", + "dimensions": "longitude latitude time2", + "out_name": "diftrblo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrebo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_epineutral_biharmonic_diffusivity", + "units": "m4 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer Epineutral Biharmonic Diffusivity", + "comment": "Epineutral diffusivity means a lateral diffusivity along a either a neutral or isopycnal density surface due to motion which is not resolved on the grid scale of an ocean model. The type of density surface is dependent on the model formulation. ", + "dimensions": "longitude latitude olevel time2", + "out_name": "diftrebo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrebo2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_epineutral_biharmonic_diffusivity", + "units": "m4 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Ocean Tracer Epineutral Biharmonic Diffusivity", + "comment": "Epineutral diffusivity means a lateral diffusivity along a either a neutral or isopycnal density surface due to motion which is not resolved on the grid scale of an ocean model. The type of density surface is dependent on the model formulation. ", + "dimensions": "longitude latitude time2", + "out_name": "diftrebo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrelo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_epineutral_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer Epineutral Laplacian Diffusivity", + "comment": "Ocean tracer diffusivity associated with parameterized eddy-induced diffusive transport oriented along neutral or isopycnal directions. Sometimes this diffusivity is called the neutral diffusivity or isopycnal diffusivity or Redi diffusivity.", + "dimensions": "longitude latitude olevel time2", + "out_name": "diftrelo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrelo2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_epineutral_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Ocean Tracer Epineutral Laplacian Diffusivity", + "comment": "Ocean tracer diffusivity associated with parameterized eddy-induced diffusive transport oriented along neutral or isopycnal directions. Sometimes this diffusivity is called the neutral diffusivity or isopycnal diffusivity or Redi diffusivity.", + "dimensions": "longitude latitude time2", + "out_name": "diftrelo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrxybo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_xy_biharmonic_diffusivity", + "units": "m4 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer XY Biharmonic Diffusivity", + "comment": "Diffusivity is also sometimes known as the coefficient of diffusion. Diffusion occurs as a result of a gradient in the spatial distribution of mass concentration, temperature or momentum. The diffusivity may be very different in the vertical and horizontal directions. 'xy diffusivity' means the lateral along_coordinate component of diffusivity due to motion which is not resolved on the grid scale of the model. xy diffusivities are used in some ocean models to counteract the numerical instabilities inherent in certain implementations of rotated neutral diffusion. 'biharmonic diffusivity' means diffusivity for use with a biharmonic diffusion operator.", + "dimensions": "longitude latitude olevel time2", + "out_name": "diftrxybo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrxybo2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_xy_biharmonic_diffusivity", + "units": "m4 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Ocean Tracer XY Biharmonic Diffusivity", + "comment": "Diffusivity is also sometimes known as the coefficient of diffusion. Diffusion occurs as a result of a gradient in the spatial distribution of mass concentration, temperature or momentum. The diffusivity may be very different in the vertical and horizontal directions. 'xy diffusivity' means the lateral along_coordinate component of diffusivity due to motion which is not resolved on the grid scale of the model. xy diffusivities are used in some ocean models to counteract the numerical instabilities inherent in certain implementations of rotated neutral diffusion. 'biharmonic diffusivity' means diffusivity for use with a biharmonic diffusion operator.", + "dimensions": "longitude latitude time2", + "out_name": "diftrxybo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrxylo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_xy_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer XY Laplacian Diffusivity", + "comment": "Diffusivity is also sometimes known as the coefficient of diffusion. Diffusion occurs as a result of a gradient in the spatial distribution of mass concentration, temperature or momentum. The diffusivity may be very different in the vertical and horizontal directions. 'xy diffusivity' means the lateral along_coordinate component of diffusivity due to motion which is not resolved on the grid scale of the model. xy diffusivities are used in some ocean models to counteract the numerical instabilities inherent in certain implementations of rotated neutral diffusion. 'laplacian diffusivity' means diffusivity for use with a Laplacian diffusion operator.", + "dimensions": "longitude latitude olevel time2", + "out_name": "diftrxylo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrxylo2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_xy_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Ocean Tracer XY Laplacian Diffusivity", + "comment": "Diffusivity is also sometimes known as the coefficient of diffusion. Diffusion occurs as a result of a gradient in the spatial distribution of mass concentration, temperature or momentum. The diffusivity may be very different in the vertical and horizontal directions. 'xy diffusivity' means the lateral along_coordinate component of diffusivity due to motion which is not resolved on the grid scale of the model. xy diffusivities are used in some ocean models to counteract the numerical instabilities inherent in certain implementations of rotated neutral diffusion. 'laplacian diffusivity' means diffusivity for use with a Laplacian diffusion operator.", + "dimensions": "longitude latitude time2", + "out_name": "diftrxylo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvho": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_heat_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Heat Diffusivity", + "comment": "Vertical/dianeutral diffusivity applied to prognostic temperature field.", + "dimensions": "longitude latitude olevel time2", + "out_name": "difvho", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvmbo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_momentum_diffusivity_due_to_background", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Momentum Diffusivity Due to Background", + "comment": "Vertical/dianeutral diffusivity applied to momentum due to the background (i.e. caused by a time invariant imposed field which may be either constant over the globe or spatially varying, depending on the ocean model used).", + "dimensions": "longitude latitude olevel time2", + "out_name": "difvmbo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvmfdo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_momentum_diffusivity_due_to_form_drag", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Momentum Diffusivity Due to Form Drag", + "comment": "Vertical/dianeutral diffusivity applied to momentum due to form drag (i.e. resulting from a model scheme representing mesoscale eddy-induced form drag).", + "dimensions": "longitude latitude olevel time2", + "out_name": "difvmfdo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvmo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_momentum_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Momentum Diffusivity", + "comment": "Vertical/dianeutral diffusivity applied to momentum.", + "dimensions": "longitude latitude olevel time2", + "out_name": "difvmo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvmto": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_momentum_diffusivity_due_to_tides", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Momentum Diffusivity Due to Tides", + "comment": "Diffusivity is also sometimes known as the coefficient of diffusion. Diffusion occurs as a result of a gradient in the spatial distribution of mass concentration, temperature or momentum. The diffusivity may be very different in the vertical and horizontal directions. The construction vertical_X_diffusivity means the vertical component of the diffusivity of X due to motion which is not resolved on the grid scale of the model. 'Due to tides' means due to all astronomical gravity changes which manifest as tides. No distinction is made between different tidal components. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase.", + "dimensions": "longitude latitude olevel time2", + "out_name": "difvmto", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvso": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_salt_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Salt Diffusivity", + "comment": "Vertical/dianeutral diffusivity applied to prognostic salinity field.", + "dimensions": "longitude latitude olevel time2", + "out_name": "difvso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvtrbo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_tracer_diffusivity_due_to_background", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Tracer Diffusivity Due to Background", + "comment": "Vertical/dianeutral diffusivity applied to tracers due to the background (i.e. caused by a time invariant imposed field which may be either constant over the globe or spatially varying, depending on the ocean model used).", + "dimensions": "longitude latitude olevel time2", + "out_name": "difvtrbo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvtrto": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_tracer_diffusivity_due_to_tides", + "units": "m2 s-1", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Tracer Diffusivity Due to Tides", + "comment": "Vertical/dianeutral diffusivity applied to tracers due to tides (i.e. caused by astronomical gravity changes which manifest as tides).", + "dimensions": "longitude latitude olevel time2", + "out_name": "difvtrto", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dispkevfo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_kinetic_energy_dissipation_per_unit_area_due_to_vertical_friction", + "units": "W m-2", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Kinetic Energy Dissipation per Unit Area Due to Vertical Friction", + "comment": "Friction, leading to the dissipation of kinetic energy, arises in ocean models as a result of the viscosity of sea water. Generally, the lateral (xy) viscosity is given a large value to maintain the numerical stability of the model. In contrast, the vertical viscosity is usually much smaller. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase.", + "dimensions": "longitude latitude olevel time2", + "out_name": "dispkevfo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dispkexyfo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", + "units": "W m-2", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Kinetic Energy Dissipation per Unit Area Due to XY Friction", + "comment": "Depth integrated impacts on kinetic energy arising from lateral frictional dissipation associated with Laplacian and/or biharmonic viscosity. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements.", + "dimensions": "longitude latitude olevel time2", + "out_name": "dispkexyfo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dispkexyfo2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", + "units": "W m-2", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Ocean Kinetic Energy Dissipation per Unit Area Due to XY Friction", + "comment": "Depth integrated impacts on kinetic energy arising from lateral frictional dissipation associated with Laplacian and/or biharmonic viscosity. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements.", + "dimensions": "longitude latitude time2", + "out_name": "dispkexyfo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnkebto": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Ocean Eddy Kinetic Energy Content Due to Parameterized Eddy Advection", + "comment": "Depth integrated impacts on kinetic energy arising from parameterized eddy-induced advection. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements.", + "dimensions": "longitude latitude olevel time2", + "out_name": "tnkebto", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnkebto2d": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Tendency of Ocean Eddy Kinetic Energy Content Due to Parameterized Eddy Advection", + "comment": "Depth integrated impacts on kinetic energy arising from parameterized eddy-induced advection. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements.", + "dimensions": "longitude latitude time2", + "out_name": "tnkebto", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnpeo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "tendency_of_ocean_potential_energy_content", + "units": "W m-2", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Ocean Potential Energy Content", + "comment": "Rate that work is done against vertical stratification, as measured by the vertical heat and salt diffusivity. Report here as depth integrated two-dimensional field.", + "dimensions": "longitude latitude olevel time2", + "out_name": "tnpeo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnpeot": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "tendency_of_ocean_potential_energy_content_due_to_tides", + "units": "W m-2", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Ocean Potential Energy Content Due to Tides", + "comment": "'Content' indicates a quantity per unit area. Potential energy is the sum of the gravitational potential energy relative to the geoid and the centripetal potential energy. (The geopotential is the specific potential energy.) 'Due to tides' means due to all astronomical gravity changes which manifest as tides. No distinction is made between different tidal components. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'tendency_of_X' means derivative of X with respect to time.", + "dimensions": "longitude latitude olevel time2", + "out_name": "tnpeot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnpeotb": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "tendency_of_ocean_potential_energy_content_due_to_background", + "units": "W m-2", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Ocean Potential Energy Content Due to Background", + "comment": "'Content' indicates a quantity per unit area. Potential energy is the sum of the gravitational potential energy relative to the geoid and the centripetal potential energy. (The geopotential is the specific potential energy.) 'Due to background' means caused by a time invariant imposed field which may be either constant over the globe or spatially varying, depending on the ocean model used. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'tendency_of_X' means derivative of X with respect to time.", + "dimensions": "longitude latitude olevel time2", + "out_name": "tnpeotb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zfullo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "depth_below_geoid", + "units": "m", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Depth Below Geoid of Ocean Layer", + "comment": "Depth below geoid", + "dimensions": "longitude latitude olevel time2", + "out_name": "zfullo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zhalfo": { + "frequency": "monC", + "modeling_realm": "ocean", + "standard_name": "depth_below_geoid", + "units": "m", + "cell_methods": "area: mean time: mean within years time: mean over years", + "cell_measures": "area: areacello", + "long_name": "Depth Below Geoid of Interfaces Between Ocean Layers", + "comment": "Depth below geoid", + "dimensions": "longitude latitude olevhalf time2", + "out_name": "zhalfo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Oday.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Oday.json new file mode 100644 index 0000000000000000000000000000000000000000..d6c8de50b91ee268b1fcd7137377aad605eed15d --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Oday.json @@ -0,0 +1,144 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Oday", + "realm": "ocnBgchem", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "1.00000", + "generic_levels": "olevel", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "chlos": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Total Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "Sum of chlorophyll from all phytoplankton group concentrations at the sea surface. In most models this is equal to chldiat+chlmisc, that is the sum of 'Diatom Chlorophyll Mass Concentration' plus 'Other Phytoplankton Chlorophyll Mass Concentration'", + "dimensions": "longitude latitude time", + "out_name": "chlos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "omldamax": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_mixing_scheme", + "units": "m", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacello", + "long_name": "Mean Daily Maximum Ocean Mixed Layer Thickness Defined by Mixing Scheme", + "comment": "The ocean mixed layer is the upper part of the ocean, regarded as being well-mixed. The base of the mixed layer defined by the mixing scheme is a diagnostic of ocean models. 'Thickness' means the vertical extent of a layer.", + "dimensions": "longitude latitude time", + "out_name": "omldamax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phycos": { + "frequency": "day", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Phytoplankton Carbon Concentration", + "comment": "sum of phytoplankton organic carbon component concentrations at the sea surface", + "dimensions": "longitude latitude time", + "out_name": "phycos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sos": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "sea_surface_salinity", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "longitude latitude time", + "out_name": "sos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sossq": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "square_of_sea_surface_salinity", + "units": "1e-06", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "longitude latitude time", + "out_name": "sossq", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tos": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Temperature", + "comment": "Temperature of upper boundary of the liquid ocean, including temperatures below sea-ice and floating ice shelves.", + "dimensions": "longitude latitude time", + "out_name": "tos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tossq": { + "frequency": "day", + "modeling_realm": "ocean", + "standard_name": "square_of_sea_surface_temperature", + "units": "degC2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Sea Surface Temperature", + "comment": "Square of temperature of liquid ocean.", + "dimensions": "longitude latitude time", + "out_name": "tossq", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Odec.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Odec.json new file mode 100644 index 0000000000000000000000000000000000000000..455345a1b34439c6cf9d42c69a397256e701b628 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Odec.json @@ -0,0 +1,558 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Odec", + "realm": "ocean", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "3650.00000", + "generic_levels": "olevel", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "agessc": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_age_since_surface_contact", + "units": "yr", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Age Since Surface Contact", + "comment": "Time elapsed since water was last in surface layer of the ocean.", + "dimensions": "longitude latitude olevel time", + "out_name": "agessc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bigthetao": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Conservative Temperature", + "comment": "Sea water conservative temperature (this should be contributed only for models using conservative temperature as prognostic field)", + "dimensions": "longitude latitude olevel time", + "out_name": "bigthetao", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bigthetaoga": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Water Conservative Temperature", + "comment": "Diagnostic should be contributed only for models using conservative temperature as prognostic field.", + "dimensions": "time", + "out_name": "bigthetaoga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfbasin": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport", + "units": "W", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport", + "comment": "Contains contributions from all physical processes affecting the northward heat transport, including resolved advection, parameterized advection, lateral diffusion, etc. Diagnosed here as a function of latitude and basin. Use Celsius for temperature scale.", + "dimensions": "latitude basin time", + "out_name": "hfbasin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfds": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "surface_downward_heat_flux_in_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Heat Flux at Sea Water Surface", + "comment": "This is the net flux of heat entering the liquid water column through its upper surface (excluding any 'flux adjustment') .", + "dimensions": "longitude latitude time", + "out_name": "hfds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "masscello": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass_per_unit_area", + "units": "kg m-2", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Mass per Area", + "comment": "Tracer grid-cell mass per unit area used for computing tracer budgets. For Boussinesq models with static ocean grid cell thickness, masscello = rhozero*thickcello, where thickcello is static cell thickness and rhozero is constant Boussinesq reference density. More generally, masscello is time dependent and reported as part of Omon.", + "dimensions": "longitude latitude olevel time", + "out_name": "masscello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "masso": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass", + "units": "kg", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "", + "long_name": "Sea Water Mass", + "comment": "Total mass of liquid sea water. For Boussinesq models, report this diagnostic as Boussinesq reference density times total volume.", + "dimensions": "time", + "out_name": "masso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftmrho": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude rho basin time", + "out_name": "msftmrho", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftmz": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude olevel basin time", + "out_name": "msftmz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftyrho": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "time: mean grid_longitude: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "gridlatitude rho basin time", + "out_name": "msftyrho", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftyz": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "time: mean grid_longitude: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "gridlatitude olevel basin time", + "out_name": "msftyz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfdsi": { + "frequency": "dec", + "modeling_realm": "ocean seaIce", + "standard_name": "downward_sea_ice_basal_salt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Sea Ice Basal Salt Flux", + "comment": "This field is physical, and it arises since sea ice has a nonzero salt content, so it exchanges salt with the liquid ocean upon melting and freezing.", + "dimensions": "longitude latitude time", + "out_name": "sfdsi", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfriver": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "salt_flux_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Salt Flux into Sea Water from Rivers", + "comment": "This field is physical, and it arises when rivers carry a nonzero salt content. Often this is zero, with rivers assumed to be fresh.", + "dimensions": "longitude latitude time", + "out_name": "sfriver", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "so": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "longitude latitude olevel time", + "out_name": "so", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "soga": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Mean Sea Water Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "time", + "out_name": "soga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sos": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_surface_salinity", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "longitude latitude time", + "out_name": "sos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sosga": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_surface_salinity", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "time", + "out_name": "sosga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauuo": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "downward_x_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Surface Downward X Stress", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauuo", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauvo": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "downward_y_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Surface Downward Y Stress", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauvo", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thetao": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Potential Temperature", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "thetao", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thetaoga": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Water Potential Temperature", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field", + "dimensions": "time", + "out_name": "thetaoga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thkcello": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Model Cell Thickness", + "comment": "'Thickness' means the vertical extent of a layer. 'Cell' refers to a model grid-cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "thkcello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tos": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Temperature", + "comment": "Temperature of upper boundary of the liquid ocean, including temperatures below sea-ice and floating ice shelves.", + "dimensions": "longitude latitude time", + "out_name": "tos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tosga": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Surface Temperature", + "comment": "Temperature of upper boundary of the liquid ocean, including temperatures below sea-ice and floating ice shelves.", + "dimensions": "time", + "out_name": "tosga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uo": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_x_velocity", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Sea Water X Velocity", + "comment": "Prognostic x-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "uo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vo": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_y_velocity", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Sea Water Y Velocity", + "comment": "Prognostic y-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "vo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "volcello": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "ocean_volume", + "units": "m3", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Volume", + "comment": "grid-cell volume ca. 2000.", + "dimensions": "longitude latitude olevel time", + "out_name": "volcello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "volo": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "sea_water_volume", + "units": "m3", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "", + "long_name": "Sea Water Volume", + "comment": "Total volume of liquid sea water.", + "dimensions": "time", + "out_name": "volo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wfo": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water", + "comment": "Computed as the water flux into the ocean divided by the area of the ocean portion of the grid cell. This is the sum *wfonocorr* and *wfcorr*.", + "dimensions": "longitude latitude time", + "out_name": "wfo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wo": { + "frequency": "dec", + "modeling_realm": "ocean", + "standard_name": "upward_sea_water_velocity", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Sea Water Vertical Velocity", + "comment": "A velocity is a vector quantity. 'Upward' indicates a vector component which is positive when directed upward (negative downward).", + "dimensions": "longitude latitude olevel time", + "out_name": "wo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Ofx.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Ofx.json new file mode 100644 index 0000000000000000000000000000000000000000..bc6529e689d50024653086cbbd86fb07e3085ca1 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Ofx.json @@ -0,0 +1,182 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Ofx", + "realm": "ocean", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.00000", + "generic_levels": "olevel", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "areacello": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for Ocean Variables", + "comment": "Horizontal area of ocean grid cells", + "dimensions": "longitude latitude", + "out_name": "areacello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "basin": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "region", + "units": "1", + "cell_methods": "area: mean", + "cell_measures": "area: areacello", + "long_name": "Region Selection Index", + "comment": "A variable with the standard name of region contains strings which indicate geographical regions. These strings must be chosen from the standard region list.", + "dimensions": "longitude latitude", + "out_name": "basin", + "type": "integer", + "positive": "", + "valid_min": "", + "valid_max": "", + "flag_values": "0 1 2 3 4 5 6 7 8 9 10", + "flag_meanings": "global_land southern_ocean atlantic_ocean pacific_ocean arctic_ocean indian_ocean mediterranean_sea black_sea hudson_bay baltic_sea red_sea", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "deptho": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "sea_floor_depth_below_geoid", + "units": "m", + "cell_methods": "area: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Sea Floor Depth Below Geoid", + "comment": "Ocean bathymetry. Reported here is the sea floor depth for present day relative to z=0 geoid. Reported as missing for land grid cells.", + "dimensions": "longitude latitude", + "out_name": "deptho", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfgeou": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "upward_geothermal_heat_flux_at_sea_floor", + "units": "W m-2", + "cell_methods": "area: mean where sea", + "cell_measures": "area: areacello", + "long_name": "Upward Geothermal Heat Flux at Sea Floor", + "comment": "Upward geothermal heat flux per unit area on the sea floor", + "dimensions": "longitude latitude", + "out_name": "hfgeou", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "masscello": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass_per_unit_area", + "units": "kg m-2", + "cell_methods": "area: sum", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Mass per Area", + "comment": "Tracer grid-cell mass per unit area used for computing tracer budgets. For Boussinesq models with static ocean grid cell thickness, masscello = rhozero*thickcello, where thickcello is static cell thickness and rhozero is constant Boussinesq reference density. More generally, masscello is time dependent and reported as part of Omon.", + "dimensions": "longitude latitude olevel", + "out_name": "masscello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftof": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "sea_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Area Percentage", + "comment": "Percentage of horizontal area occupied by ocean.", + "dimensions": "longitude latitude", + "out_name": "sftof", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thkcello": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Model Cell Thickness", + "comment": "'Thickness' means the vertical extent of a layer. 'Cell' refers to a model grid-cell.", + "dimensions": "longitude latitude olevel", + "out_name": "thkcello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ugrido": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "longitude", + "units": "", + "cell_methods": "", + "cell_measures": "--UGRID", + "long_name": "UGRID Grid Specification", + "comment": "Ony required for models with unstructured grids: this label should be used for a file containing information about the grid structure, following the UGRID convention.", + "dimensions": "longitude latitude", + "out_name": "ugrido", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "volcello": { + "frequency": "fx", + "modeling_realm": "ocean", + "standard_name": "ocean_volume", + "units": "m3", + "cell_methods": "area: sum", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Volume", + "comment": "grid-cell volume ca. 2000.", + "dimensions": "longitude latitude olevel", + "out_name": "volcello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Omon.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Omon.json new file mode 100644 index 0000000000000000000000000000000000000000..fb8e1b17f279d4e44d8abdfff251c6cd1ac9d0e0 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Omon.json @@ -0,0 +1,5382 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Omon", + "realm": "ocnBgchem", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "olevel olevhalf", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "agessc": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_age_since_surface_contact", + "units": "yr", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Age Since Surface Contact", + "comment": "Time elapsed since water was last in surface layer of the ocean.", + "dimensions": "longitude latitude olevel time", + "out_name": "agessc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "arag": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Aragonite Concentration", + "comment": "Sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude olevel time", + "out_name": "arag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "aragos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Aragonite Concentration", + "comment": "sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude time", + "out_name": "aragos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bacc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Bacterial Carbon Concentration", + "comment": "Sum of bacterial carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "bacc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "baccos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Bacterial Carbon Concentration", + "comment": "Sum of bacterial carbon component concentrations", + "dimensions": "longitude latitude time", + "out_name": "baccos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bfe": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Particulate Organic Matter Expressed as Iron in Sea Water", + "comment": "Sum of particulate organic iron component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "bfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bfeos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Particulate Organic Matter Expressed as Iron in Sea Water", + "comment": "sum of particulate organic iron component concentrations", + "dimensions": "longitude latitude time", + "out_name": "bfeos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bigthetao": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Conservative Temperature", + "comment": "Sea water conservative temperature (this should be contributed only for models using conservative temperature as prognostic field)", + "dimensions": "longitude latitude olevel time", + "out_name": "bigthetao", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bigthetaoga": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_conservative_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Water Conservative Temperature", + "comment": "Diagnostic should be contributed only for models using conservative temperature as prognostic field.", + "dimensions": "time", + "out_name": "bigthetaoga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bsi": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Particulate Organic Matter Expressed as Silicon in Sea Water", + "comment": "Sum of particulate silica component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "bsi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bsios": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Particulate Organic Matter Expressed as Silicon in Sea Water", + "comment": "sum of particulate silica component concentrations", + "dimensions": "longitude latitude time", + "out_name": "bsios", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "calc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Calcite Concentration", + "comment": "Sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude olevel time", + "out_name": "calc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "calcos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Calcite Concentration", + "comment": "sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude time", + "out_name": "calcos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "calving": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_icebergs", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water From Icebergs", + "comment": "", + "dimensions": "longitude latitude time", + "out_name": "calving", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfc11": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "mole_concentration_of_cfc11_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of CFC11 in Sea Water", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The chemical formula of CFC11 is CFCl3. The IUPAC name for CFC11 is trichloro-fluoro-methane.", + "dimensions": "longitude latitude olevel time", + "out_name": "cfc11", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfc12": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "mole_concentration_of_cfc12_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of CFC12 in Sea Water", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The chemical formula for CFC12 is CF2Cl2. The IUPAC name for CFC12 is dichloro-difluoro-methane.", + "dimensions": "longitude latitude olevel time", + "out_name": "cfc12", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chl": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Total Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "Sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of Diatom Chlorophyll Mass Concentration and Other Phytoplankton Chlorophyll Mass Concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "chl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlcalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Calcareous Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the calcite-producing phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chlcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlcalcos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Calcareous Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the calcite-producing phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "chlcalcos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chldiat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Diatoms Expressed as Chlorophyll in Sea Water", + "comment": "Chlorophyll from diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chldiat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chldiatos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Diatoms Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll from diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude time", + "out_name": "chldiatos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chldiaz": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Diazotrophs Expressed as Chlorophyll in Sea Water", + "comment": "Chlorophyll concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chldiaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chldiazos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Diazotrophs Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "chldiazos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlmisc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Other Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "Chlorophyll from additional phytoplankton component concentrations alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chlmisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlmiscos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Other Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll from additional phytoplankton component concentrations alone", + "dimensions": "longitude latitude time", + "out_name": "chlmiscos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Total Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "Sum of chlorophyll from all phytoplankton group concentrations at the sea surface. In most models this is equal to chldiat+chlmisc, that is the sum of 'Diatom Chlorophyll Mass Concentration' plus 'Other Phytoplankton Chlorophyll Mass Concentration'", + "dimensions": "longitude latitude time", + "out_name": "chlos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlpico": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Picophytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chlpico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlpicoos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mass Concentration of Picophytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude time", + "out_name": "chlpicoos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Carbonate Ion Concentration", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3).", + "dimensions": "longitude latitude olevel time", + "out_name": "co3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3abio": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Abiotic Carbonate Ion Concentration", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the abiotic-analogue carbonate anion (CO3). An abiotic analogue is used to simulate the effect on a modelled variable when biological effects on ocean carbon concentration and alkalinity are ignored. ", + "dimensions": "longitude latitude olevel time", + "out_name": "co3abio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3abioos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Abiotic Carbonate Ion Concentration", + "comment": "Near surface mole concentration (number of moles per unit volume: molarity) of the abiotic-analogue carbonate anion (CO3). An abiotic analogue is used to simulate the effect on a modelled variable when biological effects on ocean carbon concentration and alkalinity are ignored. ", + "dimensions": "longitude latitude time", + "out_name": "co3abioos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3nat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Natural Carbonate Ion Concentration", + "comment": "Surface mole concentration (number of moles per unit volume: molarity) of the natural-analogue carbonate anion (CO3). A natural analogue is used to simulate the effect on a modelled variable of imposing preindustrial atmospheric carbon dioxide concentrations, even when the model as a whole may be subjected to varying forcings. ", + "dimensions": "longitude latitude olevel time", + "out_name": "co3nat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3natos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Natural Carbonate Ion Concentration", + "comment": "Near surface mole concentration (number of moles per unit volume: molarity) of the natural-analogue carbonate anion (CO3). A natural analogue is used to simulate the effect on a modelled variable of imposing preindustrial atmospheric carbon dioxide concentrations, even when the model as a whole may be subjected to varying forcings. ", + "dimensions": "longitude latitude time", + "out_name": "co3natos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3os": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Carbonate Ion Concentration", + "comment": "Near surface mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3).", + "dimensions": "longitude latitude time", + "out_name": "co3os", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3satarag": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Carbonate Ion in Equilibrium with Pure Aragonite in Sea Water", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3) for sea water in equilibrium with pure Aragonite. Aragonite (CaCO3) is a mineral that is a polymorph of calcium carbonate.", + "dimensions": "longitude latitude olevel time", + "out_name": "co3satarag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3sataragos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Carbonate Ion in Equilibrium with Pure Aragonite in Sea Water", + "comment": "Near surface mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3) for sea water in equilibrium with pure Aragonite. Aragonite (CaCO3) is a mineral that is a polymorph of calcium carbonate.", + "dimensions": "longitude latitude time", + "out_name": "co3sataragos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3satcalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Carbonate Ion in Equilibrium with Pure Calcite in Sea Water", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3) for sea water in equilibrium with pure calcite. Aragonite (CaCO3) is a mineral that is a polymorph of calcium carbonate.", + "dimensions": "longitude latitude olevel time", + "out_name": "co3satcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3satcalcos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Carbonate Ion in Equilibrium with Pure Calcite in Sea Water", + "comment": "Near surface mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3) for sea water in equilibrium with pure calcite. Aragonite (CaCO3) is a mineral that is a polymorph of calcium carbonate.", + "dimensions": "longitude latitude time", + "out_name": "co3satcalcos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "detoc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Detrital Organic Carbon Concentration", + "comment": "Sum of detrital organic carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "detoc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "detocos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Detrital Organic Carbon Concentration", + "comment": "sum of detrital organic carbon component concentrations", + "dimensions": "longitude latitude time", + "out_name": "detocos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dfe": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Iron Concentration", + "comment": "Dissolved iron in sea water, including both Fe2+ and Fe3+ ions (but not particulate detrital iron)", + "dimensions": "longitude latitude olevel time", + "out_name": "dfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dfeos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Iron Concentration", + "comment": "dissolved iron in sea water is meant to include both Fe2+ and Fe3+ ions (but not, e.g., particulate detrital iron)", + "dimensions": "longitude latitude time", + "out_name": "dfeos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissi13c": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Inorganic Carbon-13 Concentration", + "comment": "Dissolved inorganic carbon-13 (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissi13c", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissi13cos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Inorganic Carbon-13 Concentration", + "comment": "Near surface dissolved inorganic carbon-13 (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude time", + "out_name": "dissi13cos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissi14cabio": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Abiotic Dissolved Inorganic Carbon-14 Concentration", + "comment": "Abiotic Dissolved inorganic carbon-14 (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissi14cabio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissi14cabioos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Abiotic Dissolved Inorganic Carbon-14 Concentration", + "comment": "Abiotic Dissolved inorganic carbon-14 (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude time", + "out_name": "dissi14cabioos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissic": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Inorganic Carbon Concentration", + "comment": "Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissicabio": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Abiotic Dissolved Inorganic Carbon Concentration", + "comment": "Abiotic Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissicabio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissicabioos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Abiotic Dissolved Inorganic Carbon Concentration", + "comment": "Abiotic Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude time", + "out_name": "dissicabioos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissicnat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Natural Dissolved Inorganic Carbon Concentration", + "comment": "Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration at preindustrial atmospheric xCO2", + "dimensions": "longitude latitude olevel time", + "out_name": "dissicnat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissicnatos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Natural Dissolved Inorganic Carbon Concentration", + "comment": "Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration at preindustrial atmospheric xCO2", + "dimensions": "longitude latitude time", + "out_name": "dissicnatos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissicos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Inorganic Carbon Concentration", + "comment": "Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude time", + "out_name": "dissicos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissoc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_organic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Organic Carbon Concentration", + "comment": "Sum of dissolved carbon component concentrations explicitly represented (i.e. not ~40 uM refractory unless explicit)", + "dimensions": "longitude latitude olevel time", + "out_name": "dissoc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissocos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_organic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Organic Carbon Concentration", + "comment": "Sum of dissolved carbon component concentrations explicitly represented (i.e. not ~40 uM refractory unless explicit)", + "dimensions": "longitude latitude time", + "out_name": "dissocos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dmso": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dimethyl_sulfide_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Dimethyl Sulphide in Sea Water", + "comment": "Mole concentration of dimethyl sulphide in water", + "dimensions": "longitude latitude olevel time", + "out_name": "dmso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dmsos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dimethyl_sulfide_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Dimethyl Sulphide in Sea Water", + "comment": "Mole concentration of dimethyl sulphide in water in the near surface layer", + "dimensions": "longitude latitude time", + "out_name": "dmsos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dpco2": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Delta CO2 Partial Pressure", + "comment": "Difference in partial pressure of carbon dioxide between sea water and air. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. ", + "dimensions": "longitude latitude time depth0m", + "out_name": "dpco2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dpco2abio": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Abiotic Delta Pco Partial Pressure", + "comment": "Difference in partial pressure of abiotic-analogue carbon dioxide between sea water and air. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. An abiotic analogue is used to simulate the effect on a modelled variable when biological effects on ocean carbon concentration and alkalinity are ignored.", + "dimensions": "longitude latitude time depth0m", + "out_name": "dpco2abio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dpco2nat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Natural Delta CO2 Partial Pressure ", + "comment": "Difference in partial pressure of natural-analogue carbon dioxide between sea water and air. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. A natural analogue is used to simulate the effect on a modelled variable of imposing preindustrial atmospheric carbon dioxide concentrations, even when the model as a whole may be subjected to varying forcings. ", + "dimensions": "longitude latitude time depth0m", + "out_name": "dpco2nat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dpo2": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Delta O2 Partial Pressure", + "comment": "The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. The partial pressure of a gaseous constituent of air is the pressure which it alone would exert with unchanged temperature and number of moles per unit volume. The surface called 'surface' means the lower boundary of the atmosphere.", + "dimensions": "longitude latitude time depth0m", + "out_name": "dpo2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "eparag100": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Aragonite", + "comment": "The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid. Aragonite is a mineral that is a polymorph of calcium carbonate. The chemical formula of aragonite is CaCO3. Standard names also exist for calcite, another polymorph of calcium carbonate.", + "dimensions": "longitude latitude time depth100m", + "out_name": "eparag100", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "epc100": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Organic Carbon", + "comment": "The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epc100", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "epcalc100": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Calcite", + "comment": "The phrase 'expressed_as' is used in the construction A_expressed_as_B, where B is a chemical constituent of A. It means that the quantity indicated by the standard name is calculated solely with respect to the B contained in A, neglecting all other chemical constituents of A. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid. Calcite is a mineral that is a polymorph of calcium carbonate. The chemical formula of calcite is CaCO3. Standard names also exist for aragonite, another polymorph of calcium carbonate.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epcalc100", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "epfe100": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_iron_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Iron", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epfe100", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "epn100": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Nitrogen", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epn100", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "epp100": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Phosphorus", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epp100", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "epsi100": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_silicon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Flux of Particulate Silicon", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude time depth100m", + "out_name": "epsi100", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "evs": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where ice_free_sea over sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Evaporation Flux Where Ice Free Ocean over Sea", + "comment": "computed as the total mass of water vapor evaporating from the ice-free portion of the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "evs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downward Flux of Particulate Organic Carbon", + "comment": "Downward flux of particulate organic carbon", + "dimensions": "longitude latitude olevel time", + "out_name": "expc", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fbddtalk": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Biological Alkalinity Due to Biological Activity", + "comment": "vertical integral of net biological terms in time rate of change of alkalinity", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fbddtalk", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fbddtdic": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Dissolved Inorganic Carbon Due to Biological Activity", + "comment": "vertical integral of net biological terms in time rate of change of dissolved inorganic carbon", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fbddtdic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fbddtdife": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Dissolved Inorganic Iron Due to Biological Activity", + "comment": "vertical integral of net biological terms in time rate of change of dissolved inorganic iron", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fbddtdife", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fbddtdin": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Dissolved Inorganic Nitrogen Due to Biological Activity", + "comment": "vertical integral of net biological terms in time rate of change of nitrogen nutrients (e.g. NO3+NH4)", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fbddtdin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fbddtdip": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Dissolved Inorganic Phosphorus Due to Biological Activity", + "comment": "vertical integral of net biological terms in time rate of change of phosphate", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fbddtdip", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fbddtdisi": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Dissolved Inorganic Silicon Due to Biological Activity", + "comment": "vertical integral of net biological terms in time rate of change of dissolved inorganic silicate", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fbddtdisi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fddtalk": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Total Alkalinity", + "comment": "vertical integral of net time rate of change of alkalinity", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fddtalk", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fddtdic": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Net Dissolved Inorganic Carbon", + "comment": "'Content' indicates a quantity per unit area. 'tendency_of_X' means derivative of X with respect to time. 'Dissolved inorganic carbon' describes a family of chemical species in solution, including carbon dioxide, carbonic acid and the carbonate and bicarbonate anions. 'Dissolved inorganic carbon' is the term used in standard names for all species belonging to the family that are represented within a given model. The list of individual species that are included in a quantity having a group chemical standard name can vary between models. Where possible, the data variable should be accompanied by a complete description of the species represented, for example, by using a comment attribute.", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fddtdic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fddtdife": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_iron", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Net Dissolved Inorganic Iron", + "comment": "vertical integral of net time rate of change of dissolved inorganic iron", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fddtdife", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fddtdin": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Net Dissolved Inorganic Nitrogen", + "comment": "Net time rate of change of nitrogen nutrients (e.g. NO3+NH4)", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fddtdin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fddtdip": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Net Dissolved Inorganic Phosphorus", + "comment": "vertical integral of net time rate of change of phosphate", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fddtdip", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fddtdisi": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea (top 100m only) time: mean", + "cell_measures": "area: areacello", + "long_name": "Rate of Change of Net Dissolved Inorganic Silicon", + "comment": "vertical integral of net time rate of change of dissolved inorganic silicate", + "dimensions": "longitude latitude time olayer100m", + "out_name": "fddtdisi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fg13co2": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon-13 as 13CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of carbon-13 as CO2 (positive into ocean)", + "dimensions": "longitude latitude time depth0m", + "out_name": "fg13co2", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fg14co2abio": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon-14 as Abiotic 14CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of abiotic 14CO2 (positive into ocean)", + "dimensions": "longitude latitude time depth0m", + "out_name": "fg14co2abio", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgcfc11": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_downward_mole_flux_of_cfc11", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward CFC11 Flux", + "comment": "gas exchange flux of CFC11", + "dimensions": "longitude latitude time", + "out_name": "fgcfc11", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgcfc12": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_downward_mole_flux_of_cfc12", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward CFC12 Flux", + "comment": "gas exchange flux of CFC12", + "dimensions": "longitude latitude time", + "out_name": "fgcfc12", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgco2": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon as CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of CO2 (positive into ocean)", + "dimensions": "longitude latitude time depth0m", + "out_name": "fgco2", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgco2abio": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon as Abiotic CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of abiotic CO2 (positive into ocean)", + "dimensions": "longitude latitude time depth0m", + "out_name": "fgco2abio", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgco2nat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon as Natural CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of natural CO2 (positive into ocean)", + "dimensions": "longitude latitude time depth0m", + "out_name": "fgco2nat", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgdms": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_upward_mole_flux_of_dimethyl_sulfide", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Upward Flux of DMS", + "comment": "Gas exchange flux of DMS (positive into atmosphere)", + "dimensions": "longitude latitude time depth0m", + "out_name": "fgdms", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgo2": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mole_flux_of_molecular_oxygen", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Flux of O2", + "comment": "Gas exchange flux of O2 (positive into ocean)", + "dimensions": "longitude latitude time depth0m", + "out_name": "fgo2", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgsf6": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_downward_mole_flux_of_sulfur_hexafluoride", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward SF6 Flux", + "comment": "gas exchange flux of SF6", + "dimensions": "longitude latitude time", + "out_name": "fgsf6", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ficeberg": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_icebergs", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Water Flux into Sea Water from Icebergs", + "comment": "computed as the iceberg melt water flux into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "ficeberg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ficeberg2d": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_icebergs", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water from Icebergs", + "comment": "computed as the iceberg melt water flux into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "ficeberg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "frfe": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minus_tendency_of_ocean_mole_content_of_iron_due_to_sedimentation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Loss to Sediments", + "comment": "'Content' indicates a quantity per unit area. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'tendency_of_X' means derivative of X with respect to time.", + "dimensions": "longitude latitude time", + "out_name": "frfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fric": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minus_tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_sedimentation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Inorganic Carbon Flux at Ocean Bottom", + "comment": "Inorganic Carbon loss to sediments", + "dimensions": "longitude latitude time", + "out_name": "fric", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "friver": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water from Rivers", + "comment": "computed as the river flux of water into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "friver", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "frn": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minus_tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Loss to Sediments and Through Denitrification", + "comment": "'Content' indicates a quantity per unit area. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'Denitrification' is the conversion of nitrate into gaseous compounds such as nitric oxide, nitrous oxide and molecular nitrogen which are then emitted to the atmosphere. 'Sedimentation' is the sinking of particulate matter to the floor of a body of water. 'tendency_of_X' means derivative of X with respect to time.", + "dimensions": "longitude latitude time", + "out_name": "frn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "froc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minus_tendency_of_ocean_mole_content_of_organic_carbon_due_to_sedimentation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Organic Carbon Flux at Ocean Bottom", + "comment": "Organic Carbon loss to sediments", + "dimensions": "longitude latitude time", + "out_name": "froc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fsfe": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Net Flux of Iron", + "comment": "Iron supply through deposition flux onto sea surface, runoff, coasts, sediments, etc", + "dimensions": "longitude latitude time depth0m", + "out_name": "fsfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fsitherm": { + "frequency": "mon", + "modeling_realm": "ocean seaIce", + "standard_name": "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water Due to Sea Ice Thermodynamics", + "comment": "computed as the sea ice thermodynamic water flux into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "fsitherm", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fsn": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Net Flux of Nitrogen", + "comment": "Flux of nitrogen into the ocean due to deposition (sum of dry and wet deposition), fixation (the production of ammonia from nitrogen gas by diazotrophs) and runoff (liquid water which drains from land).", + "dimensions": "longitude latitude time depth0m", + "out_name": "fsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "graz": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Grazing of Phytoplankton by Zooplankton", + "comment": "Total grazing of phytoplankton by zooplankton defined as tendency of moles of carbon per cubic metre.", + "dimensions": "longitude latitude olevel time", + "out_name": "graz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfbasin": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport", + "units": "W", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport", + "comment": "Contains contributions from all physical processes affecting the northward heat transport, including resolved advection, parameterized advection, lateral diffusion, etc. Diagnosed here as a function of latitude and basin. Use Celsius for temperature scale.", + "dimensions": "latitude basin time", + "out_name": "hfbasin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfbasinpadv": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_parameterized_eddy_advection", + "units": "W", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Parameterized Eddy Advection", + "comment": "Contributions to heat transport from parameterized eddy-induced advective transport due to any subgrid advective process. Diagnosed here as a function of latitude and basin. Use Celsius for temperature scale.", + "dimensions": "latitude basin time", + "out_name": "hfbasinpadv", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfbasinpmadv": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_advection", + "units": "W", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Parameterized Mesoscale Advection", + "comment": "Contributions to heat transport from parameterized mesoscale eddy-induced advective transport. Diagnosed here as a function of latitude and basin. Use Celsius for temperature scale.", + "dimensions": "latitude basin time", + "out_name": "hfbasinpmadv", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfbasinpmdiff": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "W", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Parameterized Mesoscale Diffusion", + "comment": "Contributions to heat transport from parameterized mesoscale eddy-induced diffusive transport (i.e., neutral diffusion). Diagnosed here as a function of latitude and basin.", + "dimensions": "latitude basin time", + "out_name": "hfbasinpmdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfbasinpsmadv": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_parameterized_submesoscale_eddy_advection", + "units": "W", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Parameterized Submesoscale Advection", + "comment": "Contributions to heat transport from parameterized mesoscale eddy-induced advective transport. Diagnosed here as a function of latitude and basin. Use Celsius for temperature scale.", + "dimensions": "latitude basin time", + "out_name": "hfbasinpsmadv", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfcorr": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "heat_flux_correction", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Heat Flux Correction", + "comment": "Flux correction is also called 'flux adjustment'. A positive flux correction is downward i.e. added to the ocean. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "hfcorr", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfds": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_downward_heat_flux_in_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Heat Flux at Sea Water Surface", + "comment": "This is the net flux of heat entering the liquid water column through its upper surface (excluding any 'flux adjustment') .", + "dimensions": "longitude latitude time", + "out_name": "hfds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfevapds": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where ice_free_sea over sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Temperature Flux Due to Evaporation Expressed as Heat Flux out of Sea Water", + "comment": "This is defined as 'where ice_free_sea over sea'", + "dimensions": "longitude latitude time", + "out_name": "hfevapds", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfgeou": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "upward_geothermal_heat_flux_at_sea_floor", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Upward Geothermal Heat Flux at Sea Floor", + "comment": "Upward geothermal heat flux per unit area on the sea floor", + "dimensions": "longitude latitude time", + "out_name": "hfgeou", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfibthermds": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Heat Flux into Sea Water Due to Iceberg Thermodynamics", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. ' Iceberg thermodynamics' refers to the addition or subtraction of mass due to surface and basal fluxes, i.e., due to melting, sublimation and fusion.", + "dimensions": "longitude latitude olevel time", + "out_name": "hfibthermds", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfibthermds2d": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "heat_flux_into_sea_water_due_to_iceberg_thermodynamics", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Heat Flux into Sea Water Due to Iceberg Thermodynamics", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. ' Iceberg thermodynamics' refers to the addition or subtraction of mass due to surface and basal fluxes, i.e., due to melting, sublimation and fusion.", + "dimensions": "longitude latitude time", + "out_name": "hfibthermds", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hflso": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_downward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: mean where ice_free_sea over sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Latent Heat Flux", + "comment": "This is defined as with the cell methods string: where ice_free_sea over sea", + "dimensions": "longitude latitude time", + "out_name": "hflso", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfrainds": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where ice_free_sea over sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Temperature Flux Due to Rainfall Expressed as Heat Flux into Sea Water", + "comment": "This is defined as 'where ice_free_sea over sea'; i.e., the total flux (considered here) entering the ice-free portion of the grid cell divided by the area of the ocean portion of the grid cell. All such heat fluxes are computed based on Celsius scale.", + "dimensions": "longitude latitude time", + "out_name": "hfrainds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfrunoffds": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Temperature Flux Due to Runoff Expressed as Heat Flux into Sea Water", + "comment": "Heat flux associated with liquid water which drains from land. It is calculated relative to the heat that would be transported by runoff water entering the sea at zero degrees Celsius. ", + "dimensions": "longitude latitude olevel time", + "out_name": "hfrunoffds", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfrunoffds2d": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Temperature Flux Due to Runoff Expressed as Heat Flux into Sea Water", + "comment": "Heat flux associated with liquid water which drains from land. It is calculated relative to the heat that would be transported by runoff water entering the sea at zero degrees Celsius. ", + "dimensions": "longitude latitude time", + "out_name": "hfrunoffds", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfsifrazil": { + "frequency": "mon", + "modeling_realm": "ocean seaIce", + "standard_name": "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Heat Flux into Sea Water Due to Frazil Ice Formation", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'Frazil' consists of needle like crystals of ice, typically between three and four millimeters in diameter, which form as sea water begins to freeze. Salt is expelled during the freezing process and frazil ice consists of nearly pure fresh water.", + "dimensions": "longitude latitude olevel time", + "out_name": "hfsifrazil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfsifrazil2d": { + "frequency": "mon", + "modeling_realm": "ocean seaIce", + "standard_name": "heat_flux_into_sea_water_due_to_freezing_of_frazil_ice", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Heat Flux into Sea Water Due to Frazil Ice Formation", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'Frazil' consists of needle like crystals of ice, typically between three and four millimeters in diameter, which form as sea water begins to freeze. Salt is expelled during the freezing process and frazil ice consists of nearly pure fresh water.", + "dimensions": "longitude latitude time", + "out_name": "hfsifrazil", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfsnthermds": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "heat_flux_into_sea_water_due_to_snow_thermodynamics", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Heat Flux into Sea Water Due to Snow Thermodynamics", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'Snow thermodynamics' refers to the addition or subtraction of mass due to surface and basal fluxes, i.e., due to melting, sublimation and fusion.", + "dimensions": "longitude latitude olevel time", + "out_name": "hfsnthermds", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfsnthermds2d": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "heat_flux_into_sea_water_due_to_snow_thermodynamics", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Heat Flux into Sea Water Due to Snow Thermodynamics", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'Snow thermodynamics' refers to the addition or subtraction of mass due to surface and basal fluxes, i.e., due to melting, sublimation and fusion.", + "dimensions": "longitude latitude time", + "out_name": "hfsnthermds", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfsso": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_downward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: mean where ice_free_sea over sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Sensible Heat Flux", + "comment": "Downward sensible heat flux over sea ice free sea. The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfsso", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfx": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_heat_x_transport", + "units": "W", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Heat X Transport", + "comment": "Contains all contributions to 'x-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale.", + "dimensions": "longitude latitude time", + "out_name": "hfx", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfy": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_heat_y_transport", + "units": "W", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Heat Y Transport", + "comment": "Contains all contributions to 'y-ward' heat transport from resolved and parameterized processes. Use Celsius for temperature scale.", + "dimensions": "longitude latitude time", + "out_name": "hfy", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "htovgyre": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_gyre", + "units": "W", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Gyre", + "comment": "From all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude basin time", + "out_name": "htovgyre", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "htovovrt": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_heat_transport_due_to_overturning", + "units": "W", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Heat Transport Due to Overturning", + "comment": "From all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude basin time", + "out_name": "htovovrt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "icfriver": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_inorganic_carbon_due_to_runoff_and_sediment_dissolution", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Flux of Inorganic Carbon into Ocean Surface by Runoff", + "comment": "Inorganic Carbon supply to ocean through runoff (separate from gas exchange)", + "dimensions": "longitude latitude time depth0m", + "out_name": "icfriver", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intdic": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "ocean_mass_content_of_dissolved_inorganic_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Dissolved Inorganic Carbon Content", + "comment": "Vertically integrated DIC", + "dimensions": "longitude latitude time", + "out_name": "intdic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intdoc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "ocean_mass_content_of_dissolved_organic_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Dissolved Organic Carbon Content", + "comment": "Vertically integrated DOC (explicit pools only)", + "dimensions": "longitude latitude time", + "out_name": "intdoc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intparag": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Aragonite Production", + "comment": "Vertically integrated aragonite production", + "dimensions": "longitude latitude time", + "out_name": "intparag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intpbfe": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_iron_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Production", + "comment": "Vertically integrated biogenic iron production", + "dimensions": "longitude latitude time", + "out_name": "intpbfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intpbn": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_nitrogen_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Production", + "comment": "Vertically integrated biogenic nitrogen production", + "dimensions": "longitude latitude time", + "out_name": "intpbn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intpbp": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_phosphorus_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Phosphorus Production", + "comment": "Vertically integrated biogenic phosphorus production", + "dimensions": "longitude latitude time", + "out_name": "intpbp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intpbsi": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_silicon_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Silicon Production", + "comment": "Vertically integrated biogenic silica production", + "dimensions": "longitude latitude time", + "out_name": "intpbsi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intpcalcite": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Calcite Production", + "comment": "Vertically integrated calcite production", + "dimensions": "longitude latitude time", + "out_name": "intpcalcite", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intpn2": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Fixation Rate in Ocean", + "comment": "Vertically integrated nitrogen fixation", + "dimensions": "longitude latitude time", + "out_name": "intpn2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intpoc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "ocean_mass_content_of_particulate_organic_matter_expressed_as_carbon", + "units": "kg m-2", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Particulate Organic Carbon Content", + "comment": "Vertically integrated POC", + "dimensions": "longitude latitude time", + "out_name": "intpoc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intpp": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Organic Carbon Production by All Types of Phytoplankton", + "comment": "Vertically integrated total primary (organic carbon) production by phytoplankton. This should equal the sum of intpdiat+intpphymisc, but those individual components may be unavailable in some models.", + "dimensions": "longitude latitude time", + "out_name": "intpp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intppcalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_calcareous_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Mole Productivity of Carbon by Calcareous Phytoplankton", + "comment": "Vertically integrated primary (organic carbon) production by the calcareous phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "intppcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intppdiat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diatoms", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Organic Carbon Production by Diatoms", + "comment": "Vertically integrated primary (organic carbon) production by the diatom phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "intppdiat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intppdiaz": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_diazotrophic_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Mole Productivity of Carbon by Diazotrophs", + "comment": "Vertically integrated primary (organic carbon) production by the diazotrophs alone", + "dimensions": "longitude latitude time", + "out_name": "intppdiaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intppmisc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_miscellaneous_phytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Organic Carbon Production by Other Phytoplankton", + "comment": "Vertically integrated total primary (organic carbon) production by other phytoplankton components alone", + "dimensions": "longitude latitude time", + "out_name": "intppmisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intppnitrate": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_due_to_nitrate_utilization", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Organic Carbon Production by Phytoplankton Based on Nitrate Uptake Alone", + "comment": "Vertically integrated primary (organic carbon) production by phytoplankton based on nitrate uptake alone", + "dimensions": "longitude latitude time", + "out_name": "intppnitrate", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "intpppico": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "net_primary_mole_productivity_of_biomass_expressed_as_carbon_by_picophytoplankton", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea depth: sum where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Primary Mole Productivity of Carbon by Picophytoplankton", + "comment": "Vertically integrated primary (organic carbon) production by the picophytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "intpppico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limfecalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_calcareous_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Calcareous Phytoplankton", + "comment": "'Calcareous phytoplankton' are phytoplankton that produce calcite. Calcite is a mineral that is a polymorph of calcium carbonate. The chemical formula of calcite is CaCO3. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Iron growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfecalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limfediat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_diatoms", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Diatoms", + "comment": "Diatoms are phytoplankton with an external skeleton made of silica. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Iron growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfediat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limfediaz": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_diazotrophic_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Diazotrophs", + "comment": "In ocean modelling, diazotrophs are phytoplankton of the phylum cyanobacteria distinct from other phytoplankton groups in their ability to fix nitrogen gas in addition to nitrate and ammonium. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Iron growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfediaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limfemisc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_miscellaneous_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Other Phytoplankton", + "comment": "Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Miscellaneous phytoplankton' are all those phytoplankton that are not diatoms, diazotrophs, calcareous phytoplankton, picophytoplankton or other separately named components of the phytoplankton population. 'Iron growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfemisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limfepico": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "iron_growth_limitation_of_picophytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Iron Limitation of Picophytoplankton", + "comment": "Picophytoplankton are phytoplankton of less than 2 micrometers in size. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Iron growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of iron) to the theoretical growth rate if there were no such limit on iron availability.", + "dimensions": "longitude latitude time", + "out_name": "limfepico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limirrcalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_calcareous_phytoplankton_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Calcareous Phytoplankton", + "comment": "Growth limitation of calcareous phytoplankton due to solar irradiance. 'Growth limitation due to solar irradiance' means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limirrdiat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_diatoms_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Diatoms", + "comment": "Growth limitation of diatoms due to solar irradiance. 'Growth limitation due to solar irradiance' means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrdiat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limirrdiaz": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_diazotrophic_phytoplankton_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Diazotrophs", + "comment": "Growth limitation of diazotrophs due to solar irradiance. 'Growth limitation due to solar irradiance' means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrdiaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limirrmisc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_miscellaneous_phytoplankton_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Other Phytoplankton", + "comment": "Growth limitation of miscellaneous phytoplankton due to solar irradiance. 'Growth limitation due to solar irradiance' means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrmisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limirrpico": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "growth_limitation_of_picophytoplankton_due_to_solar_irradiance", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Irradiance Limitation of Picophytoplankton", + "comment": "Growth limitation of picophytoplankton due to solar irradiance. 'Growth limitation due to solar irradiance' means the ratio of the growth rate of a species population in the environment (where the amount of sunlight reaching a location may be limited) to the theoretical growth rate if there were no such limit on solar irradiance.", + "dimensions": "longitude latitude time", + "out_name": "limirrpico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limncalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_calcareous_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Calcareous Phytoplankton", + "comment": "'Calcareous phytoplankton' are phytoplankton that produce calcite. Calcite is a mineral that is a polymorph of calcium carbonate. The chemical formula of calcite is CaCO3. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Nitrogen growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limncalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limndiat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_diatoms", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Diatoms", + "comment": "Diatoms are phytoplankton with an external skeleton made of silica. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Nitrogen growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limndiat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limndiaz": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_diazotrophic_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Diazotrophs", + "comment": "In ocean modelling, diazotrophs are phytoplankton of the phylum cyanobacteria distinct from other phytoplankton groups in their ability to fix nitrogen gas in addition to nitrate and ammonium. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Nitrogen growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limndiaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limnmisc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_miscellaneous_phytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Other Phytoplankton", + "comment": "Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Miscellaneous phytoplankton' are all those phytoplankton that are not diatoms, diazotrophs, calcareous phytoplankton, picophytoplankton or other separately named components of the phytoplankton population. 'Nitrogen growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limnmisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "limnpico": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "nitrogen_growth_limitation_of_picophytoplankton", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Nitrogen Limitation of Picophytoplankton", + "comment": "Picophytoplankton are phytoplankton of less than 2 micrometers in size. Phytoplankton are algae that grow where there is sufficient light to support photosynthesis. 'Nitrogen growth limitation' means the ratio of the growth rate of a species population in the environment (where there is a finite availability of nitrogen) to the theoretical growth rate if there were no such limit on nitrogen availability.", + "dimensions": "longitude latitude time", + "out_name": "limnpico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "masscello": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass_per_unit_area", + "units": "kg m-2", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Mass per Area", + "comment": "Tracer grid-cell mass per unit area used for computing tracer budgets. For Boussinesq models with static ocean grid cell thickness, masscello = rhozero*thickcello, where thickcello is static cell thickness and rhozero is constant Boussinesq reference density. More generally, masscello is time dependent and reported as part of Omon.", + "dimensions": "longitude latitude olevel time", + "out_name": "masscello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "masso": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_mass", + "units": "kg", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "", + "long_name": "Sea Water Mass", + "comment": "Total mass of liquid sea water. For Boussinesq models, report this diagnostic as Boussinesq reference density times total volume.", + "dimensions": "time", + "out_name": "masso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mfo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_transport_across_line", + "units": "kg s-1", + "cell_methods": "time: mean", + "cell_measures": "", + "long_name": "Sea Water Transport", + "comment": "Transport across_line means that which crosses a particular line on the Earth's surface; formally this means the integral along the line of the normal component of the transport.", + "dimensions": "oline time", + "out_name": "mfo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mlotst": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Mixed Layer Thickness Defined by Sigma T", + "comment": "Sigma T is potential density referenced to ocean surface.", + "dimensions": "longitude latitude time", + "out_name": "mlotst", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mlotstmax": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacello", + "long_name": "Maximum Ocean Mixed Layer Thickness Defined by Sigma T", + "comment": "Sigma T is potential density referenced to ocean surface.", + "dimensions": "longitude latitude time", + "out_name": "mlotstmax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mlotstmin": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m", + "cell_methods": "area: mean time: minimum", + "cell_measures": "area: areacello", + "long_name": "Minimum Ocean Mixed Layer Thickness Defined by Sigma T", + "comment": "Sigma T is potential density referenced to ocean surface.", + "dimensions": "longitude latitude time", + "out_name": "mlotstmin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mlotstsq": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_ocean_mixed_layer_thickness_defined_by_sigma_t", + "units": "m2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Ocean Mixed Layer Thickness Defined by Sigma T", + "comment": "The phrase 'square_of_X' means X*X. The ocean mixed layer is the upper part of the ocean, regarded as being well-mixed. The base of the mixed layer defined by 'temperature', 'sigma', 'sigma_theta', 'sigma_t' or vertical diffusivity is the level at which the quantity indicated differs from its surface value by a certain amount. A coordinate variable or scalar coordinate variable with standard name sea_water_sigma_t_difference can be used to specify the sigma_t criterion that determines the layer thickness. Sigma-t of sea water is the density of water at atmospheric pressure (i.e. the surface) having the same temperature and salinity, minus 1000 kg m-3. 'Thickness' means the vertical extent of a layer.", + "dimensions": "longitude latitude time", + "out_name": "mlotstsq", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftbarot": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_barotropic_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Barotropic Mass Streamfunction", + "comment": "Streamfunction or its approximation for free surface models. See OMDP document for details.", + "dimensions": "longitude latitude time", + "out_name": "msftbarot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftmrho": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude rho basin time", + "out_name": "msftmrho", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftmrhompa": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction Due to Parameterized Mesoscale Advection", + "comment": "CMIP5 called this 'due to Bolus Advection'. Name change respects the more general physics of the mesoscale parameterizations.", + "dimensions": "latitude rho basin time", + "out_name": "msftmrhompa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftmz": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude olevel basin time", + "out_name": "msftmz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftmzmpa": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction Due to Parameterized Mesoscale Advection", + "comment": "CMIP5 called this 'due to Bolus Advection'. Name change respects the more general physics of the mesoscale parameterizations.", + "dimensions": "latitude olevel basin time", + "out_name": "msftmzmpa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftmzsmpa": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Ocean Meridional Overturning Mass Streamfunction Due to Parameterized Submesoscale Advection", + "comment": "Report only if there is a submesoscale eddy parameterization.", + "dimensions": "latitude olevel basin time", + "out_name": "msftmzsmpa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftyrho": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "time: mean grid_longitude: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "gridlatitude rho basin time", + "out_name": "msftyrho", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftyrhompa": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "time: mean grid_longitude: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction Due to Parameterized Mesoscale Advection", + "comment": "CMIP5 called this 'due to Bolus Advection'. Name change respects the more general physics of the mesoscale parameterizations.", + "dimensions": "gridlatitude rho basin time", + "out_name": "msftyrhompa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftyz": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction", + "units": "kg s-1", + "cell_methods": "time: mean grid_longitude: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction", + "comment": "Overturning mass streamfunction arising from all advective mass transport processes, resolved and parameterized.", + "dimensions": "gridlatitude olevel basin time", + "out_name": "msftyz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftyzmpa": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_y_overturning_mass_streamfunction_due_to_parameterized_mesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "time: mean grid_longitude: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction Due to Parameterized Mesoscale Advection", + "comment": "CMIP5 called this 'due to Bolus Advection'. Name change respects the more general physics of the mesoscale parameterizations.", + "dimensions": "gridlatitude olevel basin time", + "out_name": "msftyzmpa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "msftyzsmpa": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_meridional_overturning_mass_streamfunction_due_to_parameterized_submesoscale_eddy_advection", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Ocean Y Overturning Mass Streamfunction Due to Parameterized Submesoscale Advection", + "comment": "Report only if there is a submesoscale eddy parameterization.", + "dimensions": "latitude olevel basin time", + "out_name": "msftyzsmpa", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nh4": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_ammonium_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Ammonium Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude olevel time", + "out_name": "nh4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nh4os": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_ammonium_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Ammonium Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time", + "out_name": "nh4os", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "no3": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_nitrate_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Nitrate Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude olevel time", + "out_name": "no3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "no3os": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_nitrate_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Nitrate Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude time", + "out_name": "no3os", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o2": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Oxygen Concentration", + "comment": "'Mole concentration' means number of moles per unit volume, also called 'molarity', and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'.", + "dimensions": "longitude latitude olevel time", + "out_name": "o2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o2min": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Oxygen Minimum Concentration", + "comment": "'Mole concentration' means number of moles per unit volume, also called 'molarity', and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The concentration of any chemical species, whether particulate or dissolved, may vary with depth in the ocean. A depth profile may go through one or more local minima in concentration. The mole_concentration_of_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile is the mole concentration of oxygen at the local minimum in the concentration profile that occurs closest to the sea surface.", + "dimensions": "longitude latitude time", + "out_name": "o2min", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o2os": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Oxygen Concentration", + "comment": "'Mole concentration' means number of moles per unit volume, also called 'molarity', and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'.", + "dimensions": "longitude latitude time", + "out_name": "o2os", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o2sat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Oxygen Concentration at Saturation", + "comment": "'Mole concentration at saturation' means the mole concentration in a saturated solution. Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'.", + "dimensions": "longitude latitude olevel time", + "out_name": "o2sat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o2satos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Dissolved Oxygen Concentration at Saturation", + "comment": "'Mole concentration at saturation' means the mole concentration in a saturated solution. Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'.", + "dimensions": "longitude latitude time", + "out_name": "o2satos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "obvfsq": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_brunt_vaisala_frequency_in_sea_water", + "units": "s-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Square of Brunt Vaisala Frequency in Sea Water", + "comment": "The phrase 'square_of_X' means X*X. Frequency is the number of oscillations of a wave per unit time. Brunt-Vaisala frequency is also sometimes called 'buoyancy frequency' and is a measure of the vertical stratification of the medium.", + "dimensions": "longitude latitude olevel time", + "out_name": "obvfsq", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocfriver": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_ocean_mole_content_of_organic_carbon_due_to_runoff_and_sediment_dissolution", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Flux of Organic Carbon into Ocean Surface by Runoff", + "comment": "Organic Carbon supply to ocean through runoff (separate from gas exchange)", + "dimensions": "longitude latitude time depth0m", + "out_name": "ocfriver", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pbo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_pressure_at_sea_floor", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Pressure at Sea Floor", + "comment": "'Sea water pressure' is the pressure that exists in the medium of sea water. It includes the pressure due to overlying sea water, sea ice, air and any other medium that may be present.", + "dimensions": "longitude latitude time", + "out_name": "pbo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ph": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "pH", + "comment": "negative log of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude olevel time", + "out_name": "ph", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phabio": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_abiotic_analogue_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Abiotic pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1 (abiotic component)..", + "dimensions": "longitude latitude olevel time", + "out_name": "phabio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phabioos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_abiotic_analogue_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Abiotic pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude time", + "out_name": "phabioos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phnat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_natural_analogue_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Natural pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude olevel time", + "out_name": "phnat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phnatos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_natural_analogue_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Natural pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude time", + "out_name": "phnatos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude time", + "out_name": "phos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phyc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Phytoplankton Carbon Concentration", + "comment": "sum of phytoplankton carbon component concentrations. In most (all?) cases this is the sum of phycdiat and phycmisc (i.e., 'Diatom Carbon Concentration' and 'Non-Diatom Phytoplankton Carbon Concentration'", + "dimensions": "longitude latitude olevel time", + "out_name": "phyc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phycalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Calcareous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from calcareous (calcite-producing) phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phycalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phycalcos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Calcareous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from calcareous (calcite-producing) phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "phycalcos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phycos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Phytoplankton Carbon Concentration", + "comment": "sum of phytoplankton organic carbon component concentrations at the sea surface", + "dimensions": "longitude latitude time", + "out_name": "phycos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phydiat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Diatoms Expressed as Carbon in Sea Water", + "comment": "carbon from the diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phydiat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phydiatos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Diatoms Expressed as Carbon in Sea Water", + "comment": "carbon from the diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude time", + "out_name": "phydiatos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phydiaz": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Diazotrophs Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phydiaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phydiazos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Diazotrophs Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "phydiazos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phyfe": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Total Phytoplankton Expressed as Iron in Sea Water", + "comment": "sum of phytoplankton iron component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "phyfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phyfeos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Total Phytoplankton Expressed as Iron in Sea Water", + "comment": "sum of phytoplankton iron component concentrations", + "dimensions": "longitude latitude time", + "out_name": "phyfeos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phymisc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Miscellaneous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from additional phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phymisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phymiscos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Miscellaneous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from additional phytoplankton component alone", + "dimensions": "longitude latitude time", + "out_name": "phymiscos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phyn": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Total Phytoplankton Expressed as Nitrogen in Sea Water", + "comment": "sum of phytoplankton nitrogen component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "phyn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phynos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Phytoplankton Nitrogen in Sea Water", + "comment": "sum of phytoplankton nitrogen component concentrations", + "dimensions": "longitude latitude time", + "out_name": "phynos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phyp": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Total Phytoplankton Expressed as Phosphorus in Sea Water", + "comment": "sum of phytoplankton phosphorus components", + "dimensions": "longitude latitude olevel time", + "out_name": "phyp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phypico": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Picophytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phypico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phypicoos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Picophytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude time", + "out_name": "phypicoos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phypos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Total Phytoplankton Expressed as Phosphorus in Sea Water", + "comment": "sum of phytoplankton phosphorus components", + "dimensions": "longitude latitude time", + "out_name": "phypos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "physi": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Total Phytoplankton Expressed as Silicon in Sea Water", + "comment": "sum of phytoplankton silica component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "physi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "physios": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Total Phytoplankton Expressed as Silicon in Sea Water", + "comment": "sum of phytoplankton silica component concentrations", + "dimensions": "longitude latitude time", + "out_name": "physios", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "po4": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Dissolved Inorganic Phosphorus Concentration", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. 'Dissolved inorganic phosphorus' means the sum of all inorganic phosphorus in solution (including phosphate, hydrogen phosphate, dihydrogen phosphate, and phosphoric acid).", + "dimensions": "longitude latitude olevel time", + "out_name": "po4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "po4os": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Total Dissolved Inorganic Phosphorus Concentration", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. 'Dissolved inorganic phosphorus' means the sum of all inorganic phosphorus in solution (including phosphate, hydrogen phosphate, dihydrogen phosphate, and phosphoric acid).", + "dimensions": "longitude latitude time", + "out_name": "po4os", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pon": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Particulate Organic Matter Expressed as Nitrogen in Sea Water", + "comment": "sum of particulate organic nitrogen component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "pon", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ponos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Particulate Organic Matter Expressed as Nitrogen in Sea Water", + "comment": "sum of particulate organic nitrogen component concentrations", + "dimensions": "longitude latitude time", + "out_name": "ponos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pop": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Particulate Organic Matter Expressed as Phosphorus in Sea Water", + "comment": "sum of particulate organic phosphorus component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "pop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "popos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Particulate Organic Matter Expressed as Phosphorus in Sea Water", + "comment": "sum of particulate organic phosphorus component concentrations", + "dimensions": "longitude latitude time", + "out_name": "popos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pp": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Primary Carbon Production by Phytoplankton", + "comment": "total primary (organic carbon) production by phytoplankton", + "dimensions": "longitude latitude olevel time", + "out_name": "pp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ppos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Primary Carbon Production by Phytoplankton", + "comment": "total primary (organic carbon) production by phytoplankton", + "dimensions": "longitude latitude time depth0m", + "out_name": "ppos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prra": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where ice_free_sea over sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Rainfall Flux where Ice Free Ocean over Sea", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "prra", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn": { + "frequency": "mon", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where ice_free_sea over sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Snowfall Flux where Ice Free Ocean over Sea", + "comment": "At surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "precip": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Precipitation Flux", + "comment": "Precipitation Flux from nemo", + "dimensions": "longitude latitude time", + "out_name": "precip", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pso": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_pressure_at_sea_water_surface", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Pressure at Sea Water Surface", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Sea water pressure' is the pressure that exists in the medium of sea water. It includes the pressure due to overlying sea water, sea ice, air and any other medium that may be present.", + "dimensions": "longitude latitude time", + "out_name": "pso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rhopo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "potential_density", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Potentail Density", + "comment": "Potential Density of the ocean'", + "dimensions": "longitude latitude olevel time", + "out_name": "rhopo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlntds": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_net_downward_longwave_flux", + "units": "W m-2", + "cell_methods": "area: mean where ice_free_sea over sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Net Downward Longwave Radiation", + "comment": "This is defined as 'where ice_free_sea over sea'", + "dimensions": "longitude latitude time", + "out_name": "rlntds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "downwelling_shortwave_flux_in_sea_water", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downwelling Shortwave Radiation in Sea Water", + "comment": "Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'shortwave' means shortwave radiation.", + "dimensions": "longitude latitude olevel time", + "out_name": "rsdo", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsntds": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "net_downward_shortwave_flux_at_sea_water_surface", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Net Downward Shortwave Radiation at Sea Water Surface", + "comment": "This is the flux into the surface of liquid sea water only. This excludes shortwave flux absorbed by sea ice, but includes any light that passes through the ice and is absorbed by the ocean.", + "dimensions": "longitude latitude time", + "out_name": "rsntds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sf6": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "mole_concentration_of_sulfur_hexafluoride_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of SF6 in Sea Water", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The chemical formula of sulfur hexafluoride is SF6.", + "dimensions": "longitude latitude olevel time", + "out_name": "sf6", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfdsi": { + "frequency": "mon", + "modeling_realm": "ocean seaIce", + "standard_name": "downward_sea_ice_basal_salt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Downward Sea Ice Basal Salt Flux", + "comment": "This field is physical, and it arises since sea ice has a nonzero salt content, so it exchanges salt with the liquid ocean upon melting and freezing.", + "dimensions": "longitude latitude time", + "out_name": "sfdsi", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfriver": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "salt_flux_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Salt Flux into Sea Water from Rivers", + "comment": "This field is physical, and it arises when rivers carry a nonzero salt content. Often this is zero, with rivers assumed to be fresh.", + "dimensions": "longitude latitude time", + "out_name": "sfriver", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "si": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Dissolved Inorganic Silicon Concentration", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. 'Dissolved inorganic silicon' means the sum of all inorganic silicon in solution (including silicic acid and its first dissociated anion SiO(OH)3-).", + "dimensions": "longitude latitude olevel time", + "out_name": "si", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sios": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Total Dissolved Inorganic Silicon Concentration", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. 'Dissolved inorganic silicon' means the sum of all inorganic silicon in solution (including silicic acid and its first dissociated anion SiO(OH)3-).", + "dimensions": "longitude latitude time", + "out_name": "sios", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sltovgyre": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_salt_transport_due_to_gyre", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Salt Transport Due to Gyre", + "comment": "From all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude basin time", + "out_name": "sltovgyre", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sltovovrt": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "northward_ocean_salt_transport_due_to_overturning", + "units": "kg s-1", + "cell_methods": "longitude: sum (comment: basin sum [along zig-zag grid path]) depth: sum time: mean", + "cell_measures": "", + "long_name": "Northward Ocean Salt Transport Due to Overturning", + "comment": "From all advective mass transport processes, resolved and parameterized.", + "dimensions": "latitude basin time", + "out_name": "sltovovrt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "so": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "longitude latitude olevel time", + "out_name": "so", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sob": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity_at_sea_floor", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Salinity at Sea Floor", + "comment": "Model prognostic salinity at bottom-most model grid cell", + "dimensions": "longitude latitude time", + "out_name": "sob", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "soga": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_salinity", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Mean Sea Water Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "time", + "out_name": "soga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sos": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_salinity", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "longitude latitude time", + "out_name": "sos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sosga": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_salinity", + "units": "0.001", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "time", + "out_name": "sosga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sossq": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_sea_surface_salinity", + "units": "1e-06", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Sea Surface Salinity", + "comment": "Sea water salinity is the salt content of sea water, often on the Practical Salinity Scale of 1978. However, the unqualified term 'salinity' is generic and does not necessarily imply any particular method of calculation. The units of salinity are dimensionless and the units attribute should normally be given as 1e-3 or 0.001 i.e. parts per thousand. ", + "dimensions": "longitude latitude time", + "out_name": "sossq", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "spco2": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_partial_pressure_of_carbon_dioxide_in_sea_water", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Aqueous Partial Pressure of CO2", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. The partial pressure of a gaseous constituent of air is the pressure which it alone would exert with unchanged temperature and number of moles per unit volume. The chemical formula for carbon dioxide is CO2.", + "dimensions": "longitude latitude time depth0m", + "out_name": "spco2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "spco2abio": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_carbon_dioxide_abiotic_analogue_partial_pressure_difference_between_sea_water_and_air", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Abiotic Surface Aqueous Partial Pressure of CO2", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. The chemical formula for carbon dioxide is CO2. In ocean biogeochemistry models, an 'abiotic analogue' is used to simulate the effect on a modelled variable when biological effects on ocean carbon concentration and alkalinity are ignored. The partial pressure of a gaseous constituent of air is the pressure which it alone would exert with unchanged temperature and number of moles per unit volume. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. The partial pressure difference between sea water and air is positive when the partial pressure of the dissolved gas in sea water is greater than the partial pressure in air.", + "dimensions": "longitude latitude time depth0m", + "out_name": "spco2abio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "spco2nat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_carbon_dioxide_natural_analogue_partial_pressure_difference_between_sea_water_and_air", + "units": "Pa", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Natural Surface Aqueous Partial Pressure of CO2", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. The chemical formula for carbon dioxide is CO2. In ocean biogeochemistry models, a 'natural analogue' is used to simulate the effect on a modelled variable of imposing preindustrial atmospheric carbon dioxide concentrations, even when the model as a whole may be subjected to varying forcings. The partial pressure of a gaseous constituent of air is the pressure which it alone would exert with unchanged temperature and number of moles per unit volume. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. The partial pressure difference between sea water and air is positive when the partial pressure of the dissolved gas in sea water is greater than the partial pressure in air.", + "dimensions": "longitude latitude time depth0m", + "out_name": "spco2nat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "subl": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "surface_snow_and_ice_sublimation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello OR areacella", + "long_name": "Sublimation over sea-ice", + "comment": "Sublimation over sea-ice (cell average)", + "dimensions": "longitude latitude time", + "out_name": "subl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "talk": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_alkalinity_expressed_as_mole_equivalent", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Alkalinity", + "comment": "total alkalinity equivalent concentration (including carbonate, nitrogen, silicate, and borate components)", + "dimensions": "longitude latitude olevel time", + "out_name": "talk", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "talknat": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Natural Total Alkalinity", + "comment": "total alkalinity equivalent concentration (including carbonate, borate, phosphorus, silicon, and nitrogen components) at preindustrial atmospheric xCO2", + "dimensions": "longitude latitude olevel time", + "out_name": "talknat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "talknatos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Natural Total Alkalinity", + "comment": "total alkalinity equivalent concentration (including carbonate, borate, phosphorus, silicon, and nitrogen components) at preindustrial atmospheric xCO2", + "dimensions": "longitude latitude time", + "out_name": "talknatos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "talkos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_alkalinity_expressed_as_mole_equivalent", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Total Alkalinity", + "comment": "total alkalinity equivalent concentration (including carbonate, borate, phosphorus, silicon, and nitrogen components)", + "dimensions": "longitude latitude time", + "out_name": "talkos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauucorr": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "downward_x_stress_correction_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Surface Downward X Stress Correction", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauucorr", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauuo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "downward_x_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Sea Water Surface Downward X Stress", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauuo", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauvcorr": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "downward_y_stress_correction_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Surface Downward Y Stress Correction", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauvcorr", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tauvo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "downward_y_stress_at_sea_water_surface", + "units": "N m-2", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Sea Water Surface Downward Y Stress", + "comment": "This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc.", + "dimensions": "longitude latitude time", + "out_name": "tauvo", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "taum": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "magnitude_of_surface_downward_stress", + "units": "N m-2", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Wind stress module", + "comment": "Wind stress module", + "dimensions": "longitude latitude time", + "out_name": "taum", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thetao": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sea Water Potential Temperature", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "thetao", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thetaoga": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Water Potential Temperature", + "comment": "Diagnostic should be contributed even for models using conservative temperature as prognostic field", + "dimensions": "time", + "out_name": "thetaoga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "thkcello": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "cell_thickness", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Model Cell Thickness", + "comment": "'Thickness' means the vertical extent of a layer. 'Cell' refers to a model grid-cell.", + "dimensions": "longitude latitude olevel time", + "out_name": "thkcello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tob": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_potential_temperature_at_sea_floor", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Water Potential Temperature at Sea Floor", + "comment": "Potential temperature at the ocean bottom-most grid cell.", + "dimensions": "longitude latitude time", + "out_name": "tob", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tos": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Temperature", + "comment": "Temperature of upper boundary of the liquid ocean, including temperatures below sea-ice and floating ice shelves.", + "dimensions": "longitude latitude time", + "out_name": "tos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tosga": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_temperature", + "units": "degC", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Sea Surface Temperature", + "comment": "Temperature of upper boundary of the liquid ocean, including temperatures below sea-ice and floating ice shelves.", + "dimensions": "time", + "out_name": "tosga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tossq": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_sea_surface_temperature", + "units": "degC2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Sea Surface Temperature", + "comment": "Square of temperature of liquid ocean.", + "dimensions": "longitude latitude time", + "out_name": "tossq", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "umo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mass_x_transport", + "units": "kg s-1", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Ocean Mass X Transport", + "comment": "X-ward mass transport from resolved and parameterized advective transport.", + "dimensions": "longitude latitude olevel time", + "out_name": "umo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_x_velocity", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Sea Water X Velocity", + "comment": "Prognostic x-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "uo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vmo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_mass_y_transport", + "units": "kg s-1", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Ocean Mass Y Transport", + "comment": "Y-ward mass transport from resolved and parameterized advective transport.", + "dimensions": "longitude latitude olevel time", + "out_name": "vmo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_y_velocity", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Sea Water Y Velocity", + "comment": "Prognostic y-ward velocity component resolved by the model.", + "dimensions": "longitude latitude olevel time", + "out_name": "vo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "volcello": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "ocean_volume", + "units": "m3", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Volume", + "comment": "grid-cell volume ca. 2000.", + "dimensions": "longitude latitude olevel time", + "out_name": "volcello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "volo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_water_volume", + "units": "m3", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "", + "long_name": "Sea Water Volume", + "comment": "Total volume of liquid sea water.", + "dimensions": "time", + "out_name": "volo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vsf": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_into_sea_water", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water", + "comment": "It is set to zero in models which receive a real water flux.", + "dimensions": "longitude latitude time", + "out_name": "vsf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vsfcorr": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_correction", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux Correction", + "comment": "It is set to zero in models which receive a real water flux.", + "dimensions": "longitude latitude time", + "out_name": "vsfcorr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vsfevap": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_into_sea_water_due_to_evaporation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water Due to Evaporation", + "comment": "zero for models using real water fluxes.", + "dimensions": "longitude latitude time", + "out_name": "vsfevap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vsfpr": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_into_sea_water_due_to_rainfall", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water Due to Rainfall", + "comment": "zero for models using real water fluxes.", + "dimensions": "longitude latitude time", + "out_name": "vsfpr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vsfriver": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "virtual_salt_flux_into_sea_water_from_rivers", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water from Rivers", + "comment": "zero for models using real water fluxes.", + "dimensions": "longitude latitude time", + "out_name": "vsfriver", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vsfsit": { + "frequency": "mon", + "modeling_realm": "ocean seaIce", + "standard_name": "virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Virtual Salt Flux into Sea Water Due to Sea Ice Thermodynamics", + "comment": "This variable measures the virtual salt flux into sea water due to the melting of sea ice. It is set to zero in models which receive a real water flux.", + "dimensions": "longitude latitude time", + "out_name": "vsfsit", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wfcorr": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_correction", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux Correction", + "comment": "Computed as the water flux into the ocean due to flux correction divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "wfcorr", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wfo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water", + "comment": "Computed as the water flux into the ocean divided by the area of the ocean portion of the grid cell. This is the sum *wfonocorr* and *wfcorr*.", + "dimensions": "longitude latitude time", + "out_name": "wfo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wfonocorr": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "water_flux_into_sea_water_without_flux_correction", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Water Flux into Sea Water Without Flux Correction", + "comment": "Computed as the water flux (without flux correction) into the ocean divided by the area of the ocean portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "wfonocorr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wmo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "upward_ocean_mass_transport", + "units": "kg s-1", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Upward Ocean Mass Transport", + "comment": "Upward mass transport from resolved and parameterized advective transport.", + "dimensions": "longitude latitude olevel time", + "out_name": "wmo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "upward_sea_water_velocity", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Sea Water Vertical Velocity", + "comment": "A velocity is a vector quantity. 'Upward' indicates a vector component which is positive when directed upward (negative downward).", + "dimensions": "longitude latitude olevel time", + "out_name": "wo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wspd": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "--OPT", + "long_name": "Wind Speed Module", + "comment": "Wind speed module", + "dimensions": "longitude latitude time", + "out_name": "wspd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zfullo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "depth_below_geoid", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Depth Below Geoid of Ocean Layer", + "comment": "Depth below geoid", + "dimensions": "longitude latitude olevel time", + "out_name": "zfullo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zhalfo": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "depth_below_geoid", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Below Geoid of Interfaces Between Ocean Layers", + "comment": "Depth below geoid", + "dimensions": "longitude latitude olevhalf time", + "out_name": "zhalfo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmeso": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Mesozooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from mesozooplankton (20-200 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "zmeso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmesoos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Mesozooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from mesozooplankton (20-200 um) component alone", + "dimensions": "longitude latitude time", + "out_name": "zmesoos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmicro": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Microzooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the microzooplankton (<20 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "zmicro", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmicroos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Microzooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the microzooplankton (<20 um) component alone", + "dimensions": "longitude latitude time", + "out_name": "zmicroos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmisc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Other Zooplankton Expressed as Carbon in Sea Water", + "comment": "carbon from additional zooplankton component concentrations alone (e.g. Micro, meso). Since the models all have different numbers of components, this variable has been included to provide a check for intercomparison between models since some phytoplankton groups are supersets.", + "dimensions": "longitude latitude olevel time", + "out_name": "zmisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmiscos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Mole Concentration of Other Zooplankton Expressed as Carbon in Sea Water", + "comment": "carbon from additional zooplankton component concentrations alone (e.g. Micro, meso). Since the models all have different numbers of components, this variable has been included to provide a check for intercomparison between models since some phytoplankton groups are supersets.", + "dimensions": "longitude latitude time", + "out_name": "zmiscos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zo2min": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth of Oxygen Minimum Concentration", + "comment": "Depth of vertical minimum concentration of dissolved oxygen gas (if two, then the shallower)", + "dimensions": "longitude latitude time", + "out_name": "zo2min", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zooc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Zooplankton Carbon Concentration", + "comment": "sum of zooplankton carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "zooc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zoocos": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Zooplankton Carbon Concentration", + "comment": "sum of zooplankton carbon component concentrations", + "dimensions": "longitude latitude time", + "out_name": "zoocos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zos": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "sea_surface_height_above_geoid", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea Surface Height Above Geoid", + "comment": "This is the dynamic sea level, so should have zero global area mean. It should not include inverse barometer depressions from sea ice.", + "dimensions": "longitude latitude time", + "out_name": "zos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zossq": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "square_of_sea_surface_height_above_geoid", + "units": "m2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Square of Sea Surface Height Above Geoid", + "comment": "Surface ocean geoid defines z=0.", + "dimensions": "longitude latitude time", + "out_name": "zossq", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zostoga": { + "frequency": "mon", + "modeling_realm": "ocean", + "standard_name": "global_average_thermosteric_sea_level_change", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "", + "long_name": "Global Average Thermosteric Sea Level Change", + "comment": "There is no CMIP6 request for zosga nor zossga.", + "dimensions": "time", + "out_name": "zostoga", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zsatarag": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minimum_depth_of_aragonite_undersaturation_in_sea_water", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Aragonite Saturation Depth", + "comment": "Depth of aragonite saturation horizon (0 if undersaturated at all depths, 'missing' if supersaturated at all depths; if multiple horizons exist, the shallowest should be taken).", + "dimensions": "longitude latitude time", + "out_name": "zsatarag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zsatcalc": { + "frequency": "mon", + "modeling_realm": "ocnBgchem", + "standard_name": "minimum_depth_of_calcite_undersaturation_in_sea_water", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Calcite Saturation Depth", + "comment": "Depth of calcite saturation horizon (0 if undersaturated at all depths, and missing saturated through whole depth; if two or more horizons exist, then the shallowest is reported)", + "dimensions": "longitude latitude time", + "out_name": "zsatcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_Oyr.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Oyr.json new file mode 100644 index 0000000000000000000000000000000000000000..01ab9594c1b1c0884c30841c08020b1dd93041ff --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_Oyr.json @@ -0,0 +1,2214 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table Oyr", + "realm": "ocnBgchem", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "365.00000", + "generic_levels": "olevel", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "arag": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Aragonite Concentration", + "comment": "Sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude olevel time", + "out_name": "arag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bacc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Bacterial Carbon Concentration", + "comment": "Sum of bacterial carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "bacc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bddtalk": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Rate of Change of Alkalinity Due to Biological Activity", + "comment": "Net total of biological terms in time rate of change of alkalinity", + "dimensions": "longitude latitude olevel time", + "out_name": "bddtalk", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bddtdic": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_dissolved_inorganic_carbon_in_sea_water_due_to_biological_processes", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Rate of Change of Dissolved Inorganic Carbon Due to Biological Activity", + "comment": "Net total of biological terms in time rate of change of dissolved inorganic carbon", + "dimensions": "longitude latitude olevel time", + "out_name": "bddtdic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bddtdife": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_dissolved_inorganic_iron_in_sea_water_due_to_biological_processes", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Rate of Change of Dissolved Inorganic Iron Due to Biological Activity", + "comment": "Net total of biological terms in time rate of change of dissolved inorganic iron", + "dimensions": "longitude latitude olevel time", + "out_name": "bddtdife", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bddtdin": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_dissolved_inorganic_nitrogen_in_sea_water_due_to_biological_processes", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Rate of Change of Nitrogen Nutrient Due to Biological Activity", + "comment": "Net total of biological terms in time rate of change of nitrogen nutrients (e.g. NO3+NH4)", + "dimensions": "longitude latitude olevel time", + "out_name": "bddtdin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bddtdip": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water_due_to_biological_processes", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Rate of Change of Dissolved Phosphorus Due to Biological Activity", + "comment": "Net of biological terms in time rate of change of dissolved phosphate", + "dimensions": "longitude latitude olevel time", + "out_name": "bddtdip", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bddtdisi": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_dissolved_inorganic_silicon_in_sea_water_due_to_biological_processes", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Rate of Change of Dissolved Inorganic Silicon Due to Biological Activity", + "comment": "Net of biological terms in time rate of change of dissolved inorganic silicon", + "dimensions": "longitude latitude olevel time", + "out_name": "bddtdisi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bfe": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Particulate Organic Matter Expressed as Iron in Sea Water", + "comment": "Sum of particulate organic iron component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "bfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "bsi": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Particulate Organic Matter Expressed as Silicon in Sea Water", + "comment": "Sum of particulate silica component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "bsi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "calc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Calcite Concentration", + "comment": "Sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.)", + "dimensions": "longitude latitude olevel time", + "out_name": "calc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfc11": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "mole_concentration_of_cfc11_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of CFC11 in Sea Water", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The chemical formula of CFC11 is CFCl3. The IUPAC name for CFC11 is trichloro-fluoro-methane.", + "dimensions": "longitude latitude olevel time", + "out_name": "cfc11", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "cfc12": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "mole_concentration_of_cfc12_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of CFC12 in Sea Water", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The chemical formula for CFC12 is CF2Cl2. The IUPAC name for CFC12 is dichloro-difluoro-methane.", + "dimensions": "longitude latitude olevel time", + "out_name": "cfc12", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chl": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Total Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "Sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of Diatom Chlorophyll Mass Concentration and Other Phytoplankton Chlorophyll Mass Concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "chl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlcalc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Calcareous Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the calcite-producing phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chlcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chldiat": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Diatoms Expressed as Chlorophyll in Sea Water", + "comment": "Chlorophyll from diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chldiat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chldiaz": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_diazotrophic_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Diazotrophs Expressed as Chlorophyll in Sea Water", + "comment": "Chlorophyll concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chldiaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlmisc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Other Phytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "Chlorophyll from additional phytoplankton component concentrations alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chlmisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "chlpico": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water", + "units": "kg m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mass Concentration of Picophytoplankton Expressed as Chlorophyll in Sea Water", + "comment": "chlorophyll concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "chlpico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Carbonate Ion Concentration", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3).", + "dimensions": "longitude latitude olevel time", + "out_name": "co3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3abio": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_abiotic_analogue_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Abiotic Carbonate Ion Concentration", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the abiotic-analogue carbonate anion (CO3). An abiotic analogue is used to simulate the effect on a modelled variable when biological effects on ocean carbon concentration and alkalinity are ignored. ", + "dimensions": "longitude latitude olevel time", + "out_name": "co3abio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3nat": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_natural_analogue_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Natural Carbonate Ion Concentration", + "comment": "Surface mole concentration (number of moles per unit volume: molarity) of the natural-analogue carbonate anion (CO3). A natural analogue is used to simulate the effect on a modelled variable of imposing preindustrial atmospheric carbon dioxide concentrations, even when the model as a whole may be subjected to varying forcings. ", + "dimensions": "longitude latitude olevel time", + "out_name": "co3nat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3satarag": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_aragonite_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Carbonate Ion in Equilibrium with Pure Aragonite in Sea Water", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3) for sea water in equilibrium with pure Aragonite. Aragonite (CaCO3) is a mineral that is a polymorph of calcium carbonate.", + "dimensions": "longitude latitude olevel time", + "out_name": "co3satarag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co3satcalc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_carbonate_expressed_as_carbon_at_equilibrium_with_pure_calcite_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Carbonate Ion in Equilibrium with Pure Calcite in Sea Water", + "comment": "Mole concentration (number of moles per unit volume: molarity) of the carbonate anion (CO3) for sea water in equilibrium with pure calcite. Aragonite (CaCO3) is a mineral that is a polymorph of calcium carbonate.", + "dimensions": "longitude latitude olevel time", + "out_name": "co3satcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "darag": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_dissolution", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Aragonite Dissolution", + "comment": "Rate of change of Aragonite carbon mole concentration due to dissolution", + "dimensions": "longitude latitude olevel time", + "out_name": "darag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dcalc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_dissolution", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Calcite Dissolution", + "comment": "Rate of change of Calcite carbon mole concentration due to dissolution", + "dimensions": "longitude latitude olevel time", + "out_name": "dcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "detoc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Detrital Organic Carbon Concentration", + "comment": "Sum of detrital organic carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "detoc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dfe": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Iron Concentration", + "comment": "Dissolved iron in sea water, including both Fe2+ and Fe3+ ions (but not particulate detrital iron)", + "dimensions": "longitude latitude olevel time", + "out_name": "dfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difmxybo": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_momentum_xy_biharmonic_diffusivity", + "units": "m4 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Momentum XY Biharmonic Diffusivity", + "comment": "Lateral biharmonic viscosity applied to the momentum equations.", + "dimensions": "longitude latitude olevel time", + "out_name": "difmxybo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difmxylo": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_momentum_xy_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Momentum XY Laplacian Diffusivity", + "comment": "Lateral Laplacian viscosity applied to the momentum equations.", + "dimensions": "longitude latitude olevel time", + "out_name": "difmxylo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrblo": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_laplacian_diffusivity_due_to_parameterized_mesoscale_eddy_advection", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer Diffusivity Due to Parameterized Mesoscale Advection", + "comment": "Ocean tracer diffusivity associated with parameterized eddy-induced advective transport. Sometimes this diffusivity is called the 'thickness' diffusivity. For CMIP5, this diagnostic was called 'ocean tracer bolus laplacian diffusivity'. The CMIP6 name is physically more relevant.", + "dimensions": "longitude latitude olevel time", + "out_name": "diftrblo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "diftrelo": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_tracer_epineutral_laplacian_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Tracer Epineutral Laplacian Diffusivity", + "comment": "Ocean tracer diffusivity associated with parameterized eddy-induced diffusive transport oriented along neutral or isopycnal directions. Sometimes this diffusivity is called the neutral diffusivity or isopycnal diffusivity or Redi diffusivity.", + "dimensions": "longitude latitude olevel time", + "out_name": "diftrelo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvho": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_heat_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Heat Diffusivity", + "comment": "Vertical/dianeutral diffusivity applied to prognostic temperature field.", + "dimensions": "longitude latitude olevel time", + "out_name": "difvho", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "difvso": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_vertical_salt_diffusivity", + "units": "m2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Vertical Salt Diffusivity", + "comment": "Vertical/dianeutral diffusivity applied to prognostic salinity field.", + "dimensions": "longitude latitude olevel time", + "out_name": "difvso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dispkexyfo": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_kinetic_energy_dissipation_per_unit_area_due_to_xy_friction", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Ocean Kinetic Energy Dissipation per Unit Area Due to XY Friction", + "comment": "Depth integrated impacts on kinetic energy arising from lateral frictional dissipation associated with Laplacian and/or biharmonic viscosity. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements.", + "dimensions": "longitude latitude time", + "out_name": "dispkexyfo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissi13c": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_13C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Inorganic Carbon-13 Concentration", + "comment": "Dissolved inorganic carbon-13 (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissi13c", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissi14cabio": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_14C_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Abiotic Dissolved Inorganic Carbon-14 Concentration", + "comment": "Abiotic Dissolved inorganic carbon-14 (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissi14cabio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissic": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Inorganic Carbon Concentration", + "comment": "Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissicabio": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_abiotic_analogue_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Abiotic Dissolved Inorganic Carbon Concentration", + "comment": "Abiotic Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration", + "dimensions": "longitude latitude olevel time", + "out_name": "dissicabio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissicnat": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_carbon_natural_analogue_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Natural Dissolved Inorganic Carbon Concentration", + "comment": "Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration at preindustrial atmospheric xCO2", + "dimensions": "longitude latitude olevel time", + "out_name": "dissicnat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dissoc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_organic_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Organic Carbon Concentration", + "comment": "Sum of dissolved carbon component concentrations explicitly represented (i.e. not ~40 uM refractory unless explicit)", + "dimensions": "longitude latitude olevel time", + "out_name": "dissoc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "dmso": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dimethyl_sulfide_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Dimethyl Sulphide in Sea Water", + "comment": "Mole concentration of dimethyl sulphide in water", + "dimensions": "longitude latitude olevel time", + "out_name": "dmso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "exparag": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downward Flux of Aragonite", + "comment": "Downward flux of Aragonite", + "dimensions": "longitude latitude olevel time", + "out_name": "exparag", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downward Flux of Particulate Organic Carbon", + "comment": "Downward flux of particulate organic carbon", + "dimensions": "longitude latitude olevel time", + "out_name": "expc", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expcalc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Downward Flux of Calcite", + "comment": "Downward flux of Calcite", + "dimensions": "longitude latitude olevel time", + "out_name": "expcalc", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expfe": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_iron_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sinking Particulate Iron Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude olevel time", + "out_name": "expfe", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expn": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_nitrogen_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sinking Particulate Organic Nitrogen Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude olevel time", + "out_name": "expn", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expp": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_organic_phosphorus_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sinking Particulate Organic Phosphorus Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude olevel time", + "out_name": "expp", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "expsi": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sinking_mole_flux_of_particulate_silicon_in_sea_water", + "units": "mol m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Sinking Particulate Silicon Flux", + "comment": "In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics. 'Sinking' is the gravitational settling of particulate matter suspended in a liquid. A sinking flux is positive downwards and is calculated relative to the movement of the surrounding fluid.", + "dimensions": "longitude latitude olevel time", + "out_name": "expsi", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fediss": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_dissolution_from_inorganic_particles", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Particulate Source of Dissolved Iron", + "comment": "Dissolution, remineralization and desorption of iron back to the dissolved phase", + "dimensions": "longitude latitude olevel time", + "out_name": "fediss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fescav": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_dissolved_iron_in_sea_water_due_to_scavenging_by_inorganic_particles", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Non-Biogenic Iron Scavenging", + "comment": "Dissolved Fe removed through nonbiogenic scavenging onto particles", + "dimensions": "longitude latitude olevel time", + "out_name": "fescav", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fg13co2": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_13C_dioxide_abiotic_analogue_expressed_as_13C", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon-13 as 13CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of carbon-13 as CO2 (positive into ocean)", + "dimensions": "longitude latitude time", + "out_name": "fg13co2", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fg14co2abio": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_14C_dioxide_abiotic_analogue_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon-14 as Abiotic 14CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of abiotic 14CO2 (positive into ocean)", + "dimensions": "longitude latitude time", + "out_name": "fg14co2abio", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgco2": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon as CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of CO2 (positive into ocean)", + "dimensions": "longitude latitude time", + "out_name": "fgco2", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgco2abio": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_carbon_dioxide_abiotic_analogue_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon as Abiotic CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of abiotic CO2 (positive into ocean)", + "dimensions": "longitude latitude time", + "out_name": "fgco2abio", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "fgco2nat": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "surface_downward_mass_flux_of_carbon_dioxide_natural_analogue_expressed_as_carbon", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Surface Downward Mass Flux of Carbon as Natural CO2 [kgC m-2 s-1]", + "comment": "Gas exchange flux of natural CO2 (positive into ocean)", + "dimensions": "longitude latitude time", + "out_name": "fgco2nat", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "graz": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_grazing_of_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Grazing of Phytoplankton by Zooplankton", + "comment": "Total grazing of phytoplankton by zooplankton defined as tendency of moles of carbon per cubic metre.", + "dimensions": "longitude latitude olevel time", + "out_name": "graz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "nh4": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_ammonium_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Ammonium Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude olevel time", + "out_name": "nh4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "no3": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_nitrate_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Nitrate Concentration", + "comment": "Mole concentration means moles (amount of substance) per unit volume and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude olevel time", + "out_name": "no3", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o2": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Oxygen Concentration", + "comment": "'Mole concentration' means number of moles per unit volume, also called 'molarity', and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'.", + "dimensions": "longitude latitude olevel time", + "out_name": "o2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "o2sat": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Dissolved Oxygen Concentration at Saturation", + "comment": "'Mole concentration at saturation' means the mole concentration in a saturated solution. Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'.", + "dimensions": "longitude latitude olevel time", + "out_name": "o2sat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontempdiff": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Dianeutral Mixing", + "comment": "Tendency of heat content for a grid cell from parameterized dianeutral mixing. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontempdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontempmint": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_product_of_conservative_temperature_and_sea_water_density", + "units": "degC kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Integral of Product of Sea Water Density and Conservative Temperature", + "comment": "Full column sum of density*cell thickness*conservative temperature. If the model is Boussinesq, then use Boussinesq reference density for the density factor.", + "dimensions": "longitude latitude time", + "out_name": "ocontempmint", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemppadvect": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Eddy Advection", + "comment": "Tendency of heat content for a grid cell from parameterized eddy advection (any form of eddy advection). Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemppadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemppmdiff": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Mesoscale Diffusion", + "comment": "Tendency of heat content for a grid cell from parameterized mesoscale eddy diffusion. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemppmdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemppsmadvect": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of heat content for a grid cell from parameterized submesoscale eddy advection. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemppsmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemprmadvect": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content_due_to_residual_mean_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content Due to Residual Mean Advection", + "comment": "Conservative Temperature is defined as part of the Thermodynamic Equation of Seawater 2010 (TEOS-10) which was adopted in 2010 by the International Oceanographic Commission (IOC). The phrase 'residual mean advection' refers to the sum of the model's resolved advective transport plus any parameterized advective transport. Parameterized advective transport includes processes such as parameterized mesoscale and submesoscale transport, as well as any other advectively parameterized transport. When the parameterized advective transport is represented in the model as a skew-diffusion rather than an advection, then the parameterized skew diffusion should be included in this diagnostic, since the convergence of skew-fluxes are identical (in the continuous formulation) to the convergence of advective fluxes.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemprmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ocontemptend": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_conservative_temperature_expressed_as_heat_content", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Conservative Temperature Expressed as Heat Content", + "comment": "Tendency of heat content for a grid cell from all processes. Reported only for models that use conservative temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "ocontemptend", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottempdiff": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_dianeutral_mixing", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Dianeutral Mixing", + "comment": "Tendency of heat content for a grid cell from parameterized dianeutral mixing. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottempdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottempmint": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_product_of_potential_temperature_and_sea_water_density", + "units": "degC kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Integral with Respect to Depth of Product of Sea Water Density and Potential Temperature", + "comment": "Integral over the full ocean depth of the product of sea water density and potential temperature.", + "dimensions": "longitude latitude time", + "out_name": "opottempmint", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemppadvect": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Eddy Advection", + "comment": "Tendency of heat content for a grid cell from parameterized eddy advection (any form of eddy advection). Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemppadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemppmdiff": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Mesoscale Diffusion", + "comment": "Tendency of heat content for a grid cell from parameterized mesoscale eddy diffusion. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemppmdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemppsmadvect": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of heat content for a grid cell from parameterized submesoscale eddy advection. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemppsmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemprmadvect": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content_due_to_residual_mean_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content Due to Residual Mean Advection", + "comment": "The phrase 'residual mean advection' refers to the sum of the model's resolved advective transport plus any parameterized advective transport. Parameterized advective transport includes processes such as parameterized mesoscale and submesoscale transport, as well as any other advectively parameterized transport. When the parameterized advective transport is represented in the model as a skew-diffusion rather than an advection, then the parameterized skew diffusion should be included in this diagnostic, since the convergence of skew-fluxes are identical (in the continuous formulation) to the convergence of advective fluxes.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemprmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "opottemptend": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_potential_temperature_expressed_as_heat_content", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Potential Temperature Expressed as Heat Content", + "comment": "Tendency of heat content for a grid cell from all processes. Reported only for models that use potential temperature as prognostic field.", + "dimensions": "longitude latitude olevel time", + "out_name": "opottemptend", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltdiff": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_dianeutral_mixing", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Dianeutral Mixing", + "comment": "Tendency of salt content for a grid cell from parameterized dianeutral mixing.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltpadvect": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_eddy_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Eddy Advection", + "comment": "Tendency of salt content for a grid cell from parameterized eddy advection (any form of eddy advection).", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltpmdiff": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_mesoscale_eddy_diffusion", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Mesoscale Diffusion", + "comment": "Tendency of salt content for a grid cell from parameterized mesoscale eddy diffusion.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpmdiff", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltpsmadvect": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_parameterized_submesoscale_eddy_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Parameterized Submesoscale Advection", + "comment": "Tendency of salt content for a grid cell from parameterized submesoscale eddy advection.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltpsmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osaltrmadvect": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content_due_to_residual_mean_advection", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content Due to Residual Mean Advection", + "comment": "The phrase 'residual mean advection' refers to the sum of the model's resolved advective transport plus any parameterized advective transport. Parameterized advective transport includes processes such as parameterized mesoscale and submesoscale transport, as well as any other advectively parameterized transport. When the parameterized advective transport is represented in the model as a skew-diffusion rather than an advection, then the parameterized skew diffusion should be included in this diagnostic, since the convergence of skew-fluxes are identical (in the continuous formulation) to the convergence of advective fluxes.", + "dimensions": "longitude latitude olevel time", + "out_name": "osaltrmadvect", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "osalttend": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_sea_water_salinity_expressed_as_salt_content", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Tendency of Sea Water Salinity Expressed as Salt Content", + "comment": "Tendency of salt content for a grid cell from all processes.", + "dimensions": "longitude latitude olevel time", + "out_name": "osalttend", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "parag": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_due_to_biological_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Aragonite Production", + "comment": "Production rate of Aragonite, a mineral that is a polymorph of calcium carbonate. The chemical formula of aragonite is CaCO3.", + "dimensions": "longitude latitude olevel time", + "out_name": "parag", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pbfe": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_iron_in_sea_water_due_to_biological_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Biogenic Iron Production", + "comment": "'Mole concentration' means number of moles per unit volume, also called 'molarity', and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'tendency_of_X' means derivative of X with respect to time.", + "dimensions": "longitude latitude olevel time", + "out_name": "pbfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pbsi": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_silicon_in_sea_water_due_to_biological_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Biogenic Silicon Production", + "comment": "'Mole concentration' means number of moles per unit volume, also called 'molarity', and is used in the construction mole_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The specification of a physical process by the phrase due_to_process means that the quantity named is a single term in a sum of terms which together compose the general quantity named by omitting the phrase. 'tendency_of_X' means derivative of X with respect to time.", + "dimensions": "longitude latitude olevel time", + "out_name": "pbsi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pcalc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_due_to_biological_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Calcite Production", + "comment": "Production rate of Calcite, a mineral that is a polymorph of calcium carbonate. The chemical formula of calcite is CaCO3. ", + "dimensions": "longitude latitude olevel time", + "out_name": "pcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ph": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "pH", + "comment": "negative log of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude olevel time", + "out_name": "ph", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phabio": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_abiotic_analogue_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Abiotic pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1 (abiotic component)..", + "dimensions": "longitude latitude olevel time", + "out_name": "phabio", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phnat": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_ph_natural_analogue_reported_on_total_scale", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Natural pH", + "comment": "negative log10 of hydrogen ion concentration with the concentration expressed as mol H kg-1.", + "dimensions": "longitude latitude olevel time", + "out_name": "phnat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phyc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Phytoplankton Carbon Concentration", + "comment": "sum of phytoplankton carbon component concentrations. In most (all?) cases this is the sum of phycdiat and phycmisc (i.e., 'Diatom Carbon Concentration' and 'Non-Diatom Phytoplankton Carbon Concentration'", + "dimensions": "longitude latitude olevel time", + "out_name": "phyc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phycalc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Calcareous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from calcareous (calcite-producing) phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phycalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phydiat": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Diatoms Expressed as Carbon in Sea Water", + "comment": "carbon from the diatom phytoplankton component concentration alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phydiat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phydiaz": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_diazotrophic_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Diazotrophs Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phydiaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phyfe": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Total Phytoplankton Expressed as Iron in Sea Water", + "comment": "sum of phytoplankton iron component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "phyfe", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phymisc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Miscellaneous Phytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from additional phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phymisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phyn": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Total Phytoplankton Expressed as Nitrogen in Sea Water", + "comment": "sum of phytoplankton nitrogen component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "phyn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phyp": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Total Phytoplankton Expressed as Phosphorus in Sea Water", + "comment": "sum of phytoplankton phosphorus components", + "dimensions": "longitude latitude olevel time", + "out_name": "phyp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "phypico": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Picophytoplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "phypico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "physi": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Total Phytoplankton Expressed as Silicon in Sea Water", + "comment": "sum of phytoplankton silica component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "physi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pnitrate": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_nitrate_utilization", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Primary Carbon Production by Phytoplankton Due to Nitrate Uptake Alone", + "comment": "Primary (organic carbon) production by phytoplankton due to nitrate uptake alone", + "dimensions": "longitude latitude olevel time", + "out_name": "pnitrate", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "po4": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Dissolved Inorganic Phosphorus Concentration", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. 'Dissolved inorganic phosphorus' means the sum of all inorganic phosphorus in solution (including phosphate, hydrogen phosphate, dihydrogen phosphate, and phosphoric acid).", + "dimensions": "longitude latitude olevel time", + "out_name": "po4", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pon": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Particulate Organic Matter Expressed as Nitrogen in Sea Water", + "comment": "sum of particulate organic nitrogen component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "pon", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pop": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Particulate Organic Matter Expressed as Phosphorus in Sea Water", + "comment": "sum of particulate organic phosphorus component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "pop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pp": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Primary Carbon Production by Phytoplankton", + "comment": "total primary (organic carbon) production by phytoplankton", + "dimensions": "longitude latitude olevel time", + "out_name": "pp", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ppcalc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_calcareous_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Mole Productivity of Carbon by Calcareous Phytoplankton", + "comment": "Primary (organic carbon) production by the calcite-producing phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "ppcalc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ppdiat": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diatoms", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Organic Carbon Production by Diatoms", + "comment": "Primary (organic carbon) production by the diatom component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "ppdiat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ppdiaz": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_diazotrophic_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Mole Productivity of Carbon by Diazotrophs", + "comment": "Primary (organic carbon) production by the diazotrophic phytoplankton component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "ppdiaz", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ppmisc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_miscellaneous_phytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Organic Carbon Production by Other Phytoplankton", + "comment": "Primary (organic carbon) production by other phytoplankton components alone", + "dimensions": "longitude latitude olevel time", + "out_name": "ppmisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pppico": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_net_primary_production_by_picophytoplankton", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Primary Mole Productivity of Carbon by Picophytoplankton", + "comment": "Primary (organic carbon) production by the picophytoplankton (<2 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "pppico", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "remoc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "tendency_of_mole_concentration_of_particulate_organic_matter_expressed_as_carbon_in_sea_water_due_to_remineralization", + "units": "mol m-3 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Remineralization of Organic Carbon", + "comment": "Remineralization is the degradation of organic matter into inorganic forms of carbon, nitrogen, phosphorus and other micronutrients, which consumes oxygen and releases energy.", + "dimensions": "longitude latitude olevel time", + "out_name": "remoc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsdoabsorb": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "net_rate_of_absorption_of_shortwave_energy_in_ocean_layer", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Net Rate of Absorption of Shortwave Energy in Ocean Layer", + "comment": "'shortwave' means shortwave radiation. 'Layer' means any layer with upper and lower boundaries that have constant values in some vertical coordinate. There must be a vertical coordinate variable indicating the extent of the layer(s). If the layers are model layers, the vertical coordinate can be model_level_number, but it is recommended to specify a physical coordinate (in a scalar or auxiliary coordinate variable) as well. Net absorbed radiation is the difference between absorbed and emitted radiation.", + "dimensions": "longitude latitude olevel time", + "out_name": "rsdoabsorb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sf6": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "mole_concentration_of_sulfur_hexafluoride_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of SF6 in Sea Water", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. The chemical formula of sulfur hexafluoride is SF6.", + "dimensions": "longitude latitude olevel time", + "out_name": "sf6", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "si": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_dissolved_inorganic_silicon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Dissolved Inorganic Silicon Concentration", + "comment": "Mole concentration means number of moles per unit volume, also called 'molarity', and is used in the construction 'mole_concentration_of_X_in_Y', where X is a material constituent of Y. A chemical or biological species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. 'Dissolved inorganic silicon' means the sum of all inorganic silicon in solution (including silicic acid and its first dissociated anion SiO(OH)3-).", + "dimensions": "longitude latitude olevel time", + "out_name": "si", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "somint": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "integral_wrt_depth_of_product_of_salinity_and_sea_water_density", + "units": "g m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Depth Integral of Product of Sea Water Density and Prognostic Salinity", + "comment": "Full column sum of density*cell thickness*prognostic salinity. If the model is Boussinesq, then use Boussinesq reference density for the density factor.", + "dimensions": "longitude latitude time", + "out_name": "somint", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "talk": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_alkalinity_expressed_as_mole_equivalent", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Total Alkalinity", + "comment": "total alkalinity equivalent concentration (including carbonate, nitrogen, silicate, and borate components)", + "dimensions": "longitude latitude olevel time", + "out_name": "talk", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "talknat": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "sea_water_alkalinity_natural_analogue_expressed_as_mole_equivalent", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Natural Total Alkalinity", + "comment": "total alkalinity equivalent concentration (including carbonate, borate, phosphorus, silicon, and nitrogen components) at preindustrial atmospheric xCO2", + "dimensions": "longitude latitude olevel time", + "out_name": "talknat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnkebto": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_ocean_eddy_kinetic_energy_content_due_to_parameterized_eddy_advection", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Tendency of Ocean Eddy Kinetic Energy Content Due to Parameterized Eddy Advection", + "comment": "Depth integrated impacts on kinetic energy arising from parameterized eddy-induced advection. For CMIP5, this diagnostic was 3d, whereas the CMIP6 depth integrated diagnostic is sufficient for many purposes and reduces archive requirements.", + "dimensions": "longitude latitude time", + "out_name": "tnkebto", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tnpeo": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "tendency_of_ocean_potential_energy_content", + "units": "W m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Tendency of Ocean Potential Energy Content", + "comment": "Rate that work is done against vertical stratification, as measured by the vertical heat and salt diffusivity. Report here as depth integrated two-dimensional field.", + "dimensions": "longitude latitude time", + "out_name": "tnpeo", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "volcello": { + "frequency": "yr", + "modeling_realm": "ocean", + "standard_name": "ocean_volume", + "units": "m3", + "cell_methods": "area: sum where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Ocean Grid-Cell Volume", + "comment": "grid-cell volume ca. 2000.", + "dimensions": "longitude latitude olevel time", + "out_name": "volcello", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmeso": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Mesozooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from mesozooplankton (20-200 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "zmeso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmicro": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Microzooplankton Expressed as Carbon in Sea Water", + "comment": "carbon concentration from the microzooplankton (<20 um) component alone", + "dimensions": "longitude latitude olevel time", + "out_name": "zmicro", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zmisc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Mole Concentration of Other Zooplankton Expressed as Carbon in Sea Water", + "comment": "carbon from additional zooplankton component concentrations alone (e.g. Micro, meso). Since the models all have different numbers of components, this variable has been included to provide a check for intercomparison between models since some phytoplankton groups are supersets.", + "dimensions": "longitude latitude olevel time", + "out_name": "zmisc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zooc": { + "frequency": "yr", + "modeling_realm": "ocnBgchem", + "standard_name": "mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water", + "units": "mol m-3", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello volume: volcello", + "long_name": "Zooplankton Carbon Concentration", + "comment": "sum of zooplankton carbon component concentrations", + "dimensions": "longitude latitude olevel time", + "out_name": "zooc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_SIday.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_SIday.json new file mode 100644 index 0000000000000000000000000000000000000000..c57ad671f898e9e47810963cb4e3f672b1e73a81 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_SIday.json @@ -0,0 +1,180 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table SIday", + "realm": "seaIce", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "1.00000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "siconc": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentage (Ocean Grid)", + "comment": "Percentage of grid cell covered by sea ice", + "dimensions": "longitude latitude time typesi", + "out_name": "siconc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siconca": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea-Ice Area Percentage (Atmospheric Grid)", + "comment": "Percentage of grid cell covered by sea ice", + "dimensions": "longitude latitude time typesi", + "out_name": "siconca", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sisnthick": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: mean where snow over sea_ice area: time: mean where sea_ice", + "cell_measures": "area: areacello", + "long_name": "Snow Thickness", + "comment": "Actual thickness of snow (snow volume divided by snow-covered area)", + "dimensions": "longitude latitude time", + "out_name": "sisnthick", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sispeed": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_speed", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Speed", + "comment": "Speed of ice (i.e. mean absolute velocity) to account for back-and-forth movement of the ice", + "dimensions": "longitude latitude time", + "out_name": "sispeed", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sitemptop": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Surface Temperature of Sea Ice", + "comment": "Report surface temperature of snow where snow covers the sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sitemptop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sithick": { + "frequency": "day", + "modeling_realm": "seaIce ocean", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea Ice Thickness", + "comment": "Actual (floe) thickness of sea ice (NOT volume divided by grid area as was done in CMIP5)", + "dimensions": "longitude latitude time", + "out_name": "sithick", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sitimefrac": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "fraction_of_time_with_sea_ice_area_fraction_above_threshold", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Fraction of Time Steps with Sea Ice", + "comment": "Fraction of time steps of the averaging period during which sea ice is present (siconc >0 ) in a grid cell", + "dimensions": "longitude latitude time", + "out_name": "sitimefrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siu": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "X-Component of Sea-Ice Velocity", + "comment": "The x-velocity of ice on native model grid", + "dimensions": "longitude latitude time", + "out_name": "siu", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siv": { + "frequency": "day", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "Y-Component of Sea-Ice Velocity", + "comment": "The y-velocity of ice on native model grid", + "dimensions": "longitude latitude time", + "out_name": "siv", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_SImon.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_SImon.json new file mode 100644 index 0000000000000000000000000000000000000000..cef692c6a0331470beb92e7eae0738c46ae1a228 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_SImon.json @@ -0,0 +1,1620 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table SImon", + "realm": "seaIce", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "30.00000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "sfdsi": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "downward_sea_ice_basal_salt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Downward Sea Ice Basal Salt Flux", + "comment": "This field is physical, and it arises since sea ice has a nonzero salt content, so it exchanges salt with the liquid ocean upon melting and freezing.", + "dimensions": "longitude latitude time", + "out_name": "sfdsi", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siage": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "age_of_sea_ice", + "units": "s", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Age of Sea Ice", + "comment": "Age of sea ice", + "dimensions": "longitude latitude time", + "out_name": "siage", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siareaacrossline": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_transport_across_line", + "units": "m2 s-1", + "cell_methods": "time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Area Flux Through Straits", + "comment": "net (sum of transport in all directions) sea ice area transport through the following four passages, positive into the Arctic Ocean 1. Fram Strait = (11.5W,81.3N to (10.5E,79.6N) 2. Canadian Archipelago = (128.2W,70.6N) to (59.3W,82.1N) 3. Barents opening = (16.8E,76.5N) to (19.2E,70.2N) 4. Bering Strait = (171W,66.2N) to (166W,65N)", + "dimensions": "siline time", + "out_name": "siareaacrossline", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siarean": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area", + "units": "1e6 km2", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Area North", + "comment": "total area of sea ice in the Northern hemisphere", + "dimensions": "time", + "out_name": "siarean", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siareas": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area", + "units": "1e6 km2", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Area South", + "comment": "total area of sea ice in the Southern hemisphere", + "dimensions": "time", + "out_name": "siareas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sicompstren": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "compressive_strength_of_sea_ice", + "units": "N m-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Compressive Sea Ice Strength", + "comment": "Computed strength of the ice pack, defined as the energy (J m-2) dissipated per unit area removed from the ice pack under compression, and assumed proportional to the change in potential energy caused by ridging. For Hibler-type models, this is P (= P*h exp(-C(1-A)) where P* is compressive strength, h ice thickness, A compactness and C strength reduction constant).", + "dimensions": "longitude latitude time", + "out_name": "sicompstren", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siconc": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentage (Ocean Grid)", + "comment": "Percentage of grid cell covered by sea ice", + "dimensions": "longitude latitude time typesi", + "out_name": "siconc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siconca": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea-Ice Area Percentage (Atmospheric Grid)", + "comment": "Percentage of grid cell covered by sea ice", + "dimensions": "longitude latitude time typesi", + "out_name": "siconca", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidconcdyn": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_area_fraction_due_to_dynamics", + "units": "s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentage Tendency Due to Dynamics", + "comment": "Total change in sea-ice area fraction through dynamics-related processes (advection, divergence...)", + "dimensions": "longitude latitude time", + "out_name": "sidconcdyn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidconcth": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_area_fraction_due_to_thermodynamics", + "units": "s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentage Tendency Due to Thermodynamics", + "comment": "Total change in sea-ice area fraction through thermodynamic processes", + "dimensions": "longitude latitude time", + "out_name": "sidconcth", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidivvel": { + "frequency": "monPt", + "modeling_realm": "seaIce", + "standard_name": "divergence_of_sea_ice_velocity", + "units": "s-1", + "cell_methods": "area: mean where sea_ice (comment: mask=siconc) time: point", + "cell_measures": "area: areacello", + "long_name": "Divergence of the Sea-Ice Velocity Field", + "comment": "Divergence of sea-ice velocity field (first shear strain invariant)", + "dimensions": "longitude latitude time1", + "out_name": "sidivvel", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmassdyn": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_sea_ice_dynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change from Dynamics", + "comment": "Total change in sea-ice mass through dynamics-related processes (advection,...) divided by grid-cell area", + "dimensions": "longitude latitude time", + "out_name": "sidmassdyn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmassevapsubl": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "water_evapotranspiration_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Evaporation and Sublimation", + "comment": "The rate of change of sea-ice mass change through evaporation and sublimation divided by grid-cell area", + "dimensions": "longitude latitude time", + "out_name": "sidmassevapsubl", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmassgrowthbot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Basal Growth", + "comment": "The rate of change of sea ice mass due to vertical growth of existing sea ice at its base divided by grid-cell area.", + "dimensions": "longitude latitude time", + "out_name": "sidmassgrowthbot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmassgrowthwat": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_frazil_ice_accumulation_in_leads", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Growth in Supercooled Open Water (Frazil)", + "comment": "The rate of change of sea ice mass due to sea ice formation in supercooled water (often through frazil formation) divided by grid-cell area. Together, sidmassgrowthwat and sidmassgrowthbot should give total ice growth", + "dimensions": "longitude latitude time", + "out_name": "sidmassgrowthwat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmasslat": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_lateral_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Lateral Sea Ice Melt Rate", + "comment": "The rate of change of sea ice mass through lateral melting divided by grid-cell area (report 0 if not explicitly calculated thermodynamically)", + "dimensions": "longitude latitude time", + "out_name": "sidmasslat", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmassmeltbot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_basal_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Bottom Melting", + "comment": "The rate of change of sea ice mass through melting at the ice bottom divided by grid-cell area", + "dimensions": "longitude latitude time", + "out_name": "sidmassmeltbot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmassmelttop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_surface_melting", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Surface Melting", + "comment": "The rate of change of sea ice mass through melting at the ice surface divided by grid-cell area", + "dimensions": "longitude latitude time", + "out_name": "sidmassmelttop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmasssi": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_conversion_of_snow_to_sea_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change Through Snow-to-Ice Conversion", + "comment": "The rate of change of sea ice mass due to transformation of snow to sea ice divided by grid-cell area", + "dimensions": "longitude latitude time", + "out_name": "sidmasssi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmassth": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_sea_ice_amount_due_to_sea_ice_thermodynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass Change from Thermodynamics", + "comment": "Total change in sea-ice mass from thermodynamic processes divided by grid-cell area", + "dimensions": "longitude latitude time", + "out_name": "sidmassth", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmasstranx": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_transport", + "units": "kg s-1", + "cell_methods": "time: mean", + "cell_measures": "--MODEL", + "long_name": "X-Component of Sea-Ice Mass Transport", + "comment": "Includes transport of both sea ice and snow by advection", + "dimensions": "longitude latitude time", + "out_name": "sidmasstranx", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidmasstrany": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_transport", + "units": "kg s-1", + "cell_methods": "time: mean", + "cell_measures": "--MODEL", + "long_name": "Y-Component of Sea-Ice Mass Transport", + "comment": "Includes transport of both sea ice and snow by advection", + "dimensions": "longitude latitude time", + "out_name": "sidmasstrany", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidragbot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_basal_drag_coefficient_for_momentum_in_sea_water", + "units": "1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Ocean Drag Coefficient", + "comment": "Oceanic drag coefficient that is used to calculate the oceanic momentum drag on sea ice", + "dimensions": "longitude latitude time", + "out_name": "sidragbot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sidragtop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_drag_coefficient_for_momentum_in_air", + "units": "1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Atmospheric Drag Coefficient", + "comment": "Atmospheric drag coefficient that is used to calculate the atmospheric momentum drag on sea ice", + "dimensions": "longitude latitude time", + "out_name": "sidragtop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siextentn": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_extent", + "units": "1e6 km2", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Extent North", + "comment": "Total area of all Northern-Hemisphere grid cells that are covered by at least 15 % areal fraction of sea ice", + "dimensions": "time", + "out_name": "siextentn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siextents": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_extent", + "units": "1e6 km2", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Extent South", + "comment": "Total area of all Southern-Hemisphere grid cells that are covered by at least 15 % areal fraction of sea ice", + "dimensions": "time", + "out_name": "siextents", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sifb": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_freeboard", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Freeboard", + "comment": "Mean height of sea-ice surface (=snow-ice interface when snow covered) above sea level", + "dimensions": "longitude latitude time", + "out_name": "sifb", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siflcondbot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "basal_downward_heat_flux_in_sea_ice", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Net Conductive Heat Fluxes in Ice at the Bottom", + "comment": "the net heat conduction flux at the ice base", + "dimensions": "longitude latitude time", + "out_name": "siflcondbot", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siflcondtop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Net Conductive Heat Flux in Ice at the Surface", + "comment": "the net heat conduction flux at the ice surface", + "dimensions": "longitude latitude time", + "out_name": "siflcondtop", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siflfwbot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "water_flux_into_sea_water_due_to_sea_ice_thermodynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Freshwater Flux from Sea Ice", + "comment": "Total flux of fresh water from water into sea ice divided by grid-cell area; This flux is negative during ice growth (liquid water mass decreases, hence upward flux of freshwater), positive during ice melt (liquid water mass increases, hence downward flux of freshwater)", + "dimensions": "longitude latitude time", + "out_name": "siflfwbot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siflfwdrain": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "water_flux_into_sea_water_due_to_surface_drainage", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Freshwater Flux from Sea-Ice Surface", + "comment": "Total flux of fresh water from sea-ice surface into underlying ocean. This combines both surface melt water that drains directly into the ocean and the drainage of surface melt pond. By definition, this flux is always positive.", + "dimensions": "longitude latitude time", + "out_name": "siflfwdrain", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sifllatstop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Net Latent Heat Flux over Sea Ice", + "comment": "the net latent heat flux over sea ice", + "dimensions": "longitude latitude time", + "out_name": "sifllatstop", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sifllwdtop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Downwelling Longwave Flux over Sea Ice", + "comment": "the downwelling longwave flux over sea ice (always positive)", + "dimensions": "longitude latitude time", + "out_name": "sifllwdtop", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sifllwutop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Upwelling Longwave Flux over Sea Ice", + "comment": "the upwelling longwave flux over sea ice (always negative)", + "dimensions": "longitude latitude time", + "out_name": "sifllwutop", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siflsenstop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Net Upward Sensible Heat Flux over Sea Ice", + "comment": "the net sensible heat flux over sea ice", + "dimensions": "longitude latitude time", + "out_name": "siflsenstop", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siflsensupbot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "upward_sea_ice_basal_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Net Upward Sensible Heat Flux Under Sea Ice", + "comment": "the net sensible heat flux under sea ice from the ocean", + "dimensions": "longitude latitude time", + "out_name": "siflsensupbot", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siflswdbot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "downwelling_shortwave_flux_in_sea_water_at_sea_ice_base", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Downwelling Shortwave Flux Under Sea Ice", + "comment": "The downwelling shortwave flux underneath sea ice (always positive)", + "dimensions": "longitude latitude time", + "out_name": "siflswdbot", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siflswdtop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Downwelling Shortwave Flux over Sea Ice", + "comment": "The downwelling shortwave flux over sea ice (always positive by sign convention)", + "dimensions": "longitude latitude time", + "out_name": "siflswdtop", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siflswutop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconca)", + "cell_measures": "area: areacella", + "long_name": "Upwelling Shortwave Flux over Sea Ice", + "comment": "The upwelling shortwave flux over sea ice (always negative)", + "dimensions": "longitude latitude time", + "out_name": "siflswutop", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siforcecoriolx": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_force_per_unit_area_due_to_coriolis_effect", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "Coriolis Force Term in Force Balance (X-Component)", + "comment": "X-component of force on sea ice caused by coriolis force", + "dimensions": "longitude latitude time", + "out_name": "siforcecoriolx", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siforcecorioly": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_force_per_unit_area_due_to_coriolis_effect", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "Coriolis Force Term in Force Balance (Y-Component)", + "comment": "Y-component of force on sea ice caused by coriolis force", + "dimensions": "longitude latitude time", + "out_name": "siforcecorioly", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siforceintstrx": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_internal_stress", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "Internal Stress Term in Force Balance (X-Component)", + "comment": "X-component of force on sea ice caused by internal stress (divergence of sigma)", + "dimensions": "longitude latitude time", + "out_name": "siforceintstrx", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siforceintstry": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_internal_stress", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "Internal Stress Term in Force Balance (Y-Component)", + "comment": "Y-component of force on sea ice caused by internal stress (divergence of sigma)", + "dimensions": "longitude latitude time", + "out_name": "siforceintstry", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siforcetiltx": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_force_per_unit_area_due_to_sea_surface_tilt", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "Sea-Surface Tilt Term in Force Balance (X-Component)", + "comment": "X-component of force on sea ice caused by sea-surface tilt", + "dimensions": "longitude latitude time", + "out_name": "siforcetiltx", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siforcetilty": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_force_per_unit_area_due_to_sea_surface_tilt", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "Sea-Surface Tilt Term in Force Balance (Y-Component)", + "comment": "Y-component of force on sea ice caused by sea-surface tilt", + "dimensions": "longitude latitude time", + "out_name": "siforcetilty", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sihc": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_temperature_expressed_as_heat_content", + "units": "J m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Heat Content per Unit Area", + "comment": "Heat content of all ice in grid cell divided by total grid-cell area. Water at 0 Celsius is assumed to have a heat content of 0 J. Does not include heat content of snow, but does include heat content of brine. Heat content is always negative, since both the sensible and the latent heat content of ice are less than that of water", + "dimensions": "longitude latitude time", + "out_name": "sihc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siitdconc": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Area Percentages in Thickness Categories", + "comment": "Percentage of grid cell covered by each ice-thickness category (vector with one entry for each thickness category starting from the thinnest category, netcdf file should use thickness bounds of the categories as third coordinate axis)", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdconc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siitdsnconc": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siitdconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Area Percentages in Ice Thickness Categories", + "comment": "Percentage of grid cell covered by snow in each ice-thickness category (vector with one entry for each thickness category starting from the thinnest category, netcdf file should use thickness bounds of the categories as third coordinate axis)", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdsnconc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siitdsnthick": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siitdconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Thickness in Ice Thickness Categories", + "comment": "Actual thickness of snow in each category (NOT volume divided by grid area), (vector with one entry for each thickness category starting from the thinnest category, netcdf file should use thickness bounds of categories as third coordinate axis)", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdsnthick", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siitdthick": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siitdconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Thickness in Thickness Categories", + "comment": "Actual (floe) thickness of sea ice in each category (NOT volume divided by grid area), (vector with one entry for each thickness category starting from the thinnest category, netcdf file should use thickness bounds of categories as third coordinate axis)", + "dimensions": "longitude latitude iceband time", + "out_name": "siitdthick", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "simass": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_amount", + "units": "kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Mass per Area", + "comment": "Total mass of sea ice divided by grid-cell area", + "dimensions": "longitude latitude time", + "out_name": "simass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "simassacrossline": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_transport_across_line", + "units": "kg s-1", + "cell_methods": "time: mean", + "cell_measures": "", + "long_name": "Sea Mass Area Flux Through Straits", + "comment": "net (sum of transport in all directions) sea ice area transport through the following four passages, positive into the Arctic Ocean 1. Fram Strait = (11.5W,81.3N to (10.5E,79.6N) 2. Canadian Archipelago = (128.2W,70.6N) to (59.3W,82.1N) 3. Barents opening = (16.8E,76.5N) to (19.2E,70.2N) 4. Bering Strait = (171W,66.2N) to (166W,65N)", + "dimensions": "siline time", + "out_name": "simassacrossline", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "simpconc": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Percentage Cover of Sea Ice by Meltpond", + "comment": "Percentage of sea ice, by area, which is covered by melt ponds, giving equal weight to every square metre of sea ice .", + "dimensions": "longitude latitude time typemp", + "out_name": "simpconc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "simpmass": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_melt_pond_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice_melt_pond (comment: mask=simpconc)", + "cell_measures": "area: areacello", + "long_name": "Meltpond Mass per Unit Area (as Depth)", + "comment": "Meltpond Depth", + "dimensions": "longitude latitude time", + "out_name": "simpmass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "simprefrozen": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "thickness_of_ice_on_sea_ice_melt_pond", + "units": "m", + "cell_methods": "area: time: mean where sea_ice_melt_pond (comment: mask=simpconc)", + "cell_measures": "area: areacello", + "long_name": "Thickness of Refrozen Ice on Melt Pond", + "comment": "Volume of refrozen ice on melt ponds divided by meltpond covered area", + "dimensions": "longitude latitude time", + "out_name": "simprefrozen", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sipr": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "rainfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Rainfall Rate over Sea Ice", + "comment": "mass of liquid precipitation falling onto sea ice divided by grid-cell area", + "dimensions": "longitude latitude time", + "out_name": "sipr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sirdgconc": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "area_fraction", + "units": "1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Percentage Cover of Sea Ice by Ridging", + "comment": "Fraction of sea ice, by area, which is covered by sea ice ridges, giving equal weight to every square metre of sea ice .", + "dimensions": "longitude latitude time typesirdg", + "out_name": "sirdgconc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sirdgthick": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice_ridges (comment: mask=sirdgconc)", + "cell_measures": "area: areacello", + "long_name": "Ridged Ice Thickness", + "comment": "Sea Ice Ridge Height (representing mean height over the ridged area)", + "dimensions": "longitude latitude time", + "out_name": "sirdgthick", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sisali": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_salinity", + "units": "0.001", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea Ice Salinity", + "comment": "Mean sea-ice salinity of all sea ice in grid cell", + "dimensions": "longitude latitude time", + "out_name": "sisali", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sisaltmass": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_mass_content_of_salt", + "units": "kg m-2", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Mass of Salt in Sea Ice per Area", + "comment": "Total mass of all salt in sea ice divided by grid-cell area", + "dimensions": "longitude latitude time", + "out_name": "sisaltmass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sishevel": { + "frequency": "monPt", + "modeling_realm": "seaIce", + "standard_name": "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_strain_rate", + "units": "s-1", + "cell_methods": "area: mean where sea_ice (comment: mask=siconc) time: point", + "cell_measures": "area: areacello", + "long_name": "Maximum Shear of Sea-Ice Velocity Field", + "comment": "Maximum shear of sea-ice velocity field (second shear strain invariant)", + "dimensions": "longitude latitude time1", + "out_name": "sishevel", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sisnconc": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Area Percentage", + "comment": "Percentage of sea ice, by area, which is covered by snow, giving equal weight to every square metre of sea ice . Exclude snow that lies on land or land ice.", + "dimensions": "longitude latitude time", + "out_name": "sisnconc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sisnhc": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "thermal_energy_content_of_surface_snow", + "units": "J m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Heat Content per Unit Area", + "comment": "Heat-content of all snow in grid cell divided by total grid-cell area. Snow-water equivalent at 0 Celsius is assumed to have a heat content of 0 J. Does not include heat content of sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sisnhc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sisnmass": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "liquid_water_content_of_surface_snow", + "units": "kg m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass per Area", + "comment": "Total mass of snow on sea ice divided by sea-ice area.", + "dimensions": "longitude latitude time", + "out_name": "sisnmass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sisnthick": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_thickness", + "units": "m", + "cell_methods": "area: mean where snow over sea_ice area: time: mean where sea_ice", + "cell_measures": "area: areacello", + "long_name": "Snow Thickness", + "comment": "Actual thickness of snow (snow volume divided by snow-covered area)", + "dimensions": "longitude latitude time", + "out_name": "sisnthick", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sispeed": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_speed", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Speed", + "comment": "Speed of ice (i.e. mean absolute velocity) to account for back-and-forth movement of the ice", + "dimensions": "longitude latitude time", + "out_name": "sispeed", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sistremax": { + "frequency": "monPt", + "modeling_realm": "seaIce", + "standard_name": "maximum_over_coordinate_rotation_of_sea_ice_horizontal_shear_stress", + "units": "N m-1", + "cell_methods": "area: mean where sea_ice (comment: mask=siconc) time: point", + "cell_measures": "area: areacello", + "long_name": "Maximum Shear Stress in Sea Ice", + "comment": "Maximum shear stress in sea ice (second stress invariant)", + "dimensions": "longitude latitude time1", + "out_name": "sistremax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sistresave": { + "frequency": "monPt", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_average_normal_horizontal_stress", + "units": "N m-1", + "cell_methods": "area: mean where sea_ice (comment: mask=siconc) time: point", + "cell_measures": "area: areacello", + "long_name": "Average Normal Stress in Sea Ice", + "comment": "Average normal stress in sea ice (first stress invariant)", + "dimensions": "longitude latitude time1", + "out_name": "sistresave", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sistrxdtop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_x_stress", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "X-Component of Atmospheric Stress on Sea Ice", + "comment": "X-component of atmospheric stress on sea ice", + "dimensions": "longitude latitude time", + "out_name": "sistrxdtop", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sistrxubot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "upward_x_stress_at_sea_ice_base", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "X-Component of Ocean Stress on Sea Ice", + "comment": "X-component of ocean stress on sea ice", + "dimensions": "longitude latitude time", + "out_name": "sistrxubot", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sistrydtop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_downward_y_stress", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "Y-Component of Atmospheric Stress on Sea Ice", + "comment": "Y-component of atmospheric stress on sea ice", + "dimensions": "longitude latitude time", + "out_name": "sistrydtop", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sistryubot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "upward_y_stress_at_sea_ice_base", + "units": "N m-2", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Y-Component of Ocean Stress on Sea Ice", + "comment": "Y-component of ocean stress on sea ice", + "dimensions": "longitude latitude time", + "out_name": "sistryubot", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sitempbot": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_basal_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Temperature at Ice-Ocean Interface", + "comment": "Report temperature at interface, NOT temperature within lowermost model layer", + "dimensions": "longitude latitude time", + "out_name": "sitempbot", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sitempsnic": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Temperature at Snow-Ice Interface", + "comment": "Report surface temperature of ice where snow thickness is zero", + "dimensions": "longitude latitude time", + "out_name": "sitempsnic", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sitemptop": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_surface_temperature", + "units": "K", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Surface Temperature of Sea Ice", + "comment": "Report surface temperature of snow where snow covers the sea ice.", + "dimensions": "longitude latitude time", + "out_name": "sitemptop", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sithick": { + "frequency": "mon", + "modeling_realm": "seaIce ocean", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Sea Ice Thickness", + "comment": "Actual (floe) thickness of sea ice (NOT volume divided by grid area as was done in CMIP5)", + "dimensions": "longitude latitude time", + "out_name": "sithick", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sitimefrac": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "fraction_of_time_with_sea_ice_area_fraction_above_threshold", + "units": "1", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Fraction of Time Steps with Sea Ice", + "comment": "Fraction of time steps of the averaging period during which sea ice is present (siconc >0 ) in a grid cell", + "dimensions": "longitude latitude time", + "out_name": "sitimefrac", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siu": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_x_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "X-Component of Sea-Ice Velocity", + "comment": "The x-velocity of ice on native model grid", + "dimensions": "longitude latitude time", + "out_name": "siu", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "siv": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_y_velocity", + "units": "m s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "--MODEL", + "long_name": "Y-Component of Sea-Ice Velocity", + "comment": "The y-velocity of ice on native model grid", + "dimensions": "longitude latitude time", + "out_name": "siv", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sivol": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_thickness", + "units": "m", + "cell_methods": "area: mean where sea time: mean", + "cell_measures": "area: areacello", + "long_name": "Sea-Ice Volume per Area", + "comment": "Total volume of sea ice divided by grid-cell area (this used to be called ice thickness in CMIP5)", + "dimensions": "longitude latitude time", + "out_name": "sivol", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sivoln": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_volume", + "units": "1e3 km3", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Volume North", + "comment": "total volume of sea ice in the Northern hemisphere", + "dimensions": "time", + "out_name": "sivoln", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sivols": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "sea_ice_volume", + "units": "1e3 km3", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Sea-Ice Volume South", + "comment": "total volume of sea ice in the Southern hemisphere", + "dimensions": "time", + "out_name": "sivols", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sndmassdyn": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_surface_snow_amount_due_to_sea_ice_dynamics", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Advection by Sea-Ice Dynamics", + "comment": "The rate of change of snow mass through advection with sea ice divided by sea-ice area", + "dimensions": "longitude latitude time", + "out_name": "sndmassdyn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sndmassmelt": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "surface_snow_melt_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Melt", + "comment": "the rate of change of snow mass through melt divided by sea-ice area", + "dimensions": "longitude latitude time", + "out_name": "sndmassmelt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sndmasssi": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_surface_snow_amount_due_to_conversion_of_snow_to_sea_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Snow-to-Ice Conversion", + "comment": "the rate of change of snow mass due to transformation of snow to sea ice divided by sea-ice area", + "dimensions": "longitude latitude time", + "out_name": "sndmasssi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sndmasssnf": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Change Through Snow Fall", + "comment": "mass of solid precipitation falling onto sea ice divided by sea-ice area", + "dimensions": "longitude latitude time", + "out_name": "sndmasssnf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sndmasssubl": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_atmosphere_mass_content_of_water_vapor_due_to_sublimation_of_surface_snow_and_ice", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Evaporation or Sublimation", + "comment": "the rate of change of snow mass through sublimation and evaporation divided by sea-ice area", + "dimensions": "longitude latitude time", + "out_name": "sndmasssubl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sndmasswindrif": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "tendency_of_surface_snow_amount_due_to_drifting_into_sea", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean where sea_ice (comment: mask=siconc)", + "cell_measures": "area: areacello", + "long_name": "Snow Mass Rate of Change Through Wind Drift of Snow", + "comment": "the rate of change of snow mass through wind drift of snow (from sea-ice into the sea) divided by sea-ice area", + "dimensions": "longitude latitude time", + "out_name": "sndmasswindrif", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snmassacrossline": { + "frequency": "mon", + "modeling_realm": "seaIce", + "standard_name": "snow_transport_across_line_due_to_sea_ice_dynamics", + "units": "kg s-1", + "cell_methods": "time: mean", + "cell_measures": "", + "long_name": "Snow Mass Flux Through Straits", + "comment": "net (sum of transport in all directions) sea ice area transport through the following four passages, positive into the Arctic Ocean 1. Fram Strait = (11.5W,81.3N to (10.5E,79.6N) 2. Canadian Archipelago = (128.2W,70.6N) to (59.3W,82.1N) 3. Barents opening = (16.8E,76.5N) to (19.2E,70.2N) 4. Bering Strait = (171W,66.2N) to (166W,65N)", + "dimensions": "siline time", + "out_name": "snmassacrossline", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_coordinate.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_coordinate.json new file mode 100644 index 0000000000000000000000000000000000000000..dd88595881746585692d3fb65b72184565a80645 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_coordinate.json @@ -0,0 +1,3289 @@ +{ + "axis_entry": { + "alt16": { + "standard_name": "altitude", + "units": "m", + "axis": "Z", + "long_name": "altitude", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "alt16", + "positive": "up", + "requested": [ + "0", + "250", + "750", + "1250", + "1750", + "2250", + "2750", + "3500", + "4500", + "6000", + "8000", + "10000", + "12000", + "14500", + "16000", + "18000" + ], + "requested_bounds": [ + "-99000.0", + "0.0", + "0.0", + "500.0", + "500.0", + "1000.0", + "1000.0", + "1500.0", + "1500.0", + "2000.0", + "2000.0", + "2500.0", + "2500.0", + "3000.0", + "3000.0", + "4000.0", + "4000.0", + "5000.0", + "5000.0", + "7000.0", + "7000.0", + "9000.0", + "9000.0", + "11000.0", + "11000.0", + "13000.0", + "13000.0", + "15000.0", + "15000.0", + "17000.0", + "17000.0", + "99000.0" + ], + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "alt40": { + "standard_name": "altitude", + "units": "m", + "axis": "Z", + "long_name": "altitude", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "alt40", + "positive": "up", + "requested": [ + "240.", + "720.", + "1200.", + "1680.", + "2160.", + "2640.", + "3120.", + "3600.", + "4080.", + "4560.", + "5040.", + "5520.", + "6000.", + "6480.", + "6960.", + "7440.", + "7920.", + "8400.", + "8880.", + "9360.", + "9840.", + "10320.", + "10800.", + "11280.", + "11760.", + "12240.", + "12720.", + "13200.", + "13680.", + "14160.", + "14640.", + "15120.", + "15600.", + "16080.", + "16560.", + "17040.", + "17520.", + "18000.", + "18480.", + "18960." + ], + "requested_bounds": [ + "0.0", + "480.0", + "480.0", + "960.0", + "960.0", + "1440.0", + "1440.0", + "1920.0", + "1920.0", + "2400.0", + "2400.0", + "2880.0", + "2880.0", + "3360.0", + "3360.0", + "3840.0", + "3840.0", + "4320.0", + "4320.0", + "4800.0", + "4800.0", + "5280.0", + "5280.0", + "5760.0", + "5760.0", + "6240.0", + "6240.0", + "6720.0", + "6720.0", + "7200.0", + "7200.0", + "7680.0", + "7680.0", + "8160.0", + "8160.0", + "8640.0", + "8640.0", + "9120.0", + "9120.0", + "9600.0", + "9600.0", + "10080.0", + "10080.0", + "10560.0", + "10560.0", + "11040.0", + "11040.0", + "11520.0", + "11520.0", + "12000.0", + "12000.0", + "12480.0", + "12480.0", + "12960.0", + "12960.0", + "13440.0", + "13440.0", + "13920.0", + "13920.0", + "14400.0", + "14400.0", + "14880.0", + "14880.0", + "15360.0", + "15360.0", + "15840.0", + "15840.0", + "16320.0", + "16320.0", + "16800.0", + "16800.0", + "17280.0", + "17280.0", + "17760.0", + "17760.0", + "18240.0", + "18240.0", + "18720.0", + "18720.0", + "19200.0" + ], + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "alternate_hybrid_sigma": { + "standard_name": "atmosphere_hybrid_sigma_pressure_coordinate", + "units": "1", + "axis": "Z", + "long_name": "hybrid sigma pressure coordinate", + "climatology": "", + "formula": "p = ap + b*ps", + "must_have_bounds": "yes", + "out_name": "lev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "", + "valid_max": "1.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "ap: ap_bnds b: b_bnds ps: ps", + "z_factors": "ap: ap b: b ps: ps", + "bounds_values": "", + "generic_level_name": "alevel" + }, + "alternate_hybrid_sigma_half": { + "standard_name": "atmosphere_hybrid_sigma_pressure_coordinate", + "units": "1", + "axis": "Z", + "long_name": "hybrid sigma pressure coordinate", + "climatology": "", + "formula": "p = ap + b*ps", + "must_have_bounds": "no", + "out_name": "lev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "", + "valid_max": "1.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "ap: ap b: b ps: ps", + "bounds_values": "", + "generic_level_name": "alevhalf" + }, + "basin": { + "standard_name": "region", + "units": "", + "axis": "", + "long_name": "ocean basin", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "basin", + "positive": "", + "requested": [ + "atlantic_arctic_ocean", + "indian_pacific_ocean", + "global_ocean" + ], + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "dbze": { + "standard_name": "equivalent_reflectivity_factor", + "units": "dBZ", + "axis": "", + "long_name": "CloudSat simulator equivalent radar reflectivity factor", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "dbze", + "positive": "", + "requested": [ + "-47.5", + "-42.5", + "-37.5", + "-32.5", + "-27.5", + "-22.5", + "-17.5", + "-12.5", + "-7.5", + "-2.5", + "2.5", + "7.5", + "12.5", + "17.5", + "22.5" + ], + "requested_bounds": [ + "-50.0", + "-45.0", + "-45.0", + "-40.0", + "-40.0", + "-35.0", + "-35.0", + "-30.0", + "-30.0", + "-25.0", + "-25.0", + "-20.0", + "-20.0", + "-15.0", + "-15.0", + "-10.0", + "-10.0", + "-5.0", + "-5.0", + "0.0", + "0.0", + "5.0", + "5.0", + "10.0", + "10.0", + "15.0", + "15.0", + "20.0", + "20.0", + "25.0" + ], + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "depth0m": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "depth", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "depth", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "100.0", + "valid_min": "0.0", + "value": "0.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "depth100m": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "depth", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "depth", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "120.0", + "valid_min": "80.0", + "value": "100.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "depth2000m": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "depth", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "depth", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "2000.0", + "valid_min": "0.0", + "value": "1000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "0.0 2000.0", + "generic_level_name": "" + }, + "depth300m": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "depth", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "depth", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "300.0", + "valid_min": "0.0", + "value": "150.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "0.0 300.0", + "generic_level_name": "" + }, + "depth700m": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "depth", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "depth", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "700.0", + "valid_min": "0.0", + "value": "350.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "0.0 700.0", + "generic_level_name": "" + }, + "depth_coord": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "ocean depth coordinate", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "lev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "", + "valid_max": "12000.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "olevel" + }, + "depth_coord_half": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "ocean depth coordinate", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "lev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "", + "valid_max": "12000.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "olevhalf" + }, + "effectRadIc": { + "standard_name": "effective_radius_of_convective_cloud_ice_particles", + "units": "micron", + "axis": "", + "long_name": "Effective Radius [Values to be specified]", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "effectRadIc", + "positive": "", + "requested": [ + "5.", + "15.", + "25.", + "35.", + "50.", + "75." + ], + "requested_bounds": [ + "0.0", + "10.0", + "10.0", + "20.0", + "20.0", + "30.0", + "30.0", + "40.0", + "40.0", + "60.0", + "60.0", + "90.0" + ], + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "effectRadLi": { + "standard_name": "effective_radius_of_cloud_liquid_water_particles", + "units": "micron", + "axis": "", + "long_name": "Effective Radius [Values to be specified]", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "effectRadLi", + "positive": "", + "requested": [ + "4.", + "9.", + "11.5", + "14.", + "17.5", + "25." + ], + "requested_bounds": [ + "0.0", + "8.0", + "8.0", + "10.0", + "10.0", + "13.0", + "13.0", + "15.0", + "15.0", + "20.0", + "20.0", + "30.0" + ], + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "gridlatitude": { + "standard_name": "grid_latitude", + "units": "degrees", + "axis": "Y", + "long_name": "Grid Latitude", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "rlat", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "90.0", + "valid_min": "-90.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "height100m": { + "standard_name": "height", + "units": "m", + "axis": "Z", + "long_name": "height", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "height", + "positive": "up", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "120.0", + "valid_min": "80.0", + "value": "100.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "height10m": { + "standard_name": "height", + "units": "m", + "axis": "Z", + "long_name": "height", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "height", + "positive": "up", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "30.0", + "valid_min": "1.0", + "value": "10.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "height2m": { + "standard_name": "height", + "units": "m", + "axis": "Z", + "long_name": "height", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "height", + "positive": "up", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "10.0", + "valid_min": "1.0", + "value": "2.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "hybrid_height": { + "standard_name": "atmosphere_hybrid_height_coordinate", + "units": "m", + "axis": "Z", + "long_name": "hybrid height coordinate", + "climatology": "", + "formula": "z = a + b*orog", + "must_have_bounds": "yes", + "out_name": "lev", + "positive": "up", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "", + "valid_max": "", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "a: lev_bnds b: b_bnds orog: orog", + "z_factors": "a: lev b: b orog: orog", + "bounds_values": "", + "generic_level_name": "alevel" + }, + "hybrid_height_half": { + "standard_name": "atmosphere_hybrid_height_coordinate", + "units": "m", + "axis": "Z", + "long_name": "hybrid height coordinate", + "climatology": "", + "formula": "z = a + b*orog", + "must_have_bounds": "no", + "out_name": "lev", + "positive": "up", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "", + "valid_max": "", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "a: lev b: b orog: orog", + "bounds_values": "", + "generic_level_name": "alevhalf" + }, + "iceband": { + "standard_name": "sea_ice_thickness", + "units": "m", + "axis": "", + "long_name": "Ice Depth Band", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "iceband", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "lambda550nm": { + "standard_name": "radiation_wavelength", + "units": "nm", + "axis": "", + "long_name": "Radiation Wavelength 550 nanometers", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "wavelength", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "550.0", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "landUse": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Land use type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "landuse", + "positive": "", + "requested": [ + "primary_and_secondary_land", + "pastures", + "crops", + "urban" + ], + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "latitude": { + "standard_name": "latitude", + "units": "degrees_north", + "axis": "Y", + "long_name": "Latitude", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "lat", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "90.0", + "valid_min": "-90.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "longitude": { + "standard_name": "longitude", + "units": "degrees_east", + "axis": "X", + "long_name": "Longitude", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "lon", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "360.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "ocean_sigma": { + "standard_name": "ocean_sigma_coordinate", + "units": "", + "axis": "Z", + "long_name": "ocean sigma coordinate", + "climatology": "", + "formula": "z(n,k,j,i) = eta(n,j,i) + sigma(k)*(depth(j,i)+eta(n,j,i))", + "must_have_bounds": "yes", + "out_name": "lev", + "positive": "up", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "", + "valid_max": "0.0", + "valid_min": "-1.0", + "value": "", + "z_bounds_factors": "sigma: lev_bnds eta: eta depth: depth", + "z_factors": "sigma: lev eta: eta depth: depth", + "bounds_values": "", + "generic_level_name": "olevel" + }, + "ocean_sigma_half": { + "standard_name": "ocean_sigma_coordinate", + "units": "", + "axis": "Z", + "long_name": "ocean sigma coordinate", + "climatology": "", + "formula": "z(n,k,j,i) = eta(n,j,i) + sigma(k)*(depth(j,i)+eta(n,j,i))", + "must_have_bounds": "no", + "out_name": "lev", + "positive": "up", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "", + "valid_max": "0.0", + "valid_min": "-1.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "sigma: lev eta: eta depth: depth", + "bounds_values": "", + "generic_level_name": "olevhalf" + }, + "ocean_sigma_z": { + "standard_name": "ocean_sigma_z_coordinate", + "units": "", + "axis": "Z", + "long_name": "ocean sigma over z coordinate", + "climatology": "", + "formula": "for k <= nsigma: z(n,k,j,i) = eta(n,j,i) + sigma(k)*(min(depth_c,depth(j,i))+eta(n,j,i)) ; for k > nsigma: z(n,k,j,i) = zlev(k)", + "must_have_bounds": "yes", + "out_name": "lev", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "sigma: lev_bnds eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev_bnds", + "z_factors": "sigma: lev eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev", + "bounds_values": "", + "generic_level_name": "olevel" + }, + "ocean_sigma_z_half": { + "standard_name": "ocean_sigma_z_coordinate", + "units": "", + "axis": "Z", + "long_name": "ocean sigma over z coordinate", + "climatology": "", + "formula": "for k <= nsigma: z(n,k,j,i) = eta(n,j,i) + sigma(k)*(min(depth_c,depth(j,i))+eta(n,j,i)) ; for k > nsigma: z(n,k,j,i) = zlev(k)", + "must_have_bounds": "no", + "out_name": "lev", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "sigma: lev eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev", + "bounds_values": "", + "generic_level_name": "olevhalf" + }, + "olayer100m": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "depth", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "depth", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "100.0", + "valid_min": "0.0", + "value": "50.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "0.0 100.0", + "generic_level_name": "" + }, + "oline": { + "standard_name": "region", + "units": "", + "axis": "", + "long_name": "ocean passage", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "line", + "positive": "", + "requested": [ + "barents_opening", + "bering_strait", + "windward_passage", + "davis_strait", + "denmark_strait", + "drake_passage", + "english_channel", + "faroe_scotland_channel", + "florida_bahamas_strait", + "fram_strait", + "gibraltar_strait", + "iceland_faroe_channel", + "indonesian_throughflow", + "mozambique_channel", + "pacific_equatorial_undercurrent", + "taiwan_luzon_straits" + ], + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "p10": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "1000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "p100": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "10000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "p1000": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "100000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "p200": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "20000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "p220": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "22000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "44000.0 0.0", + "generic_level_name": "" + }, + "p500": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "50000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "p560": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "56000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "68000.0 44000.0", + "generic_level_name": "" + }, + "p700": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "70000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "p840": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "84000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "100000.0 68000.0", + "generic_level_name": "" + }, + "p850": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "85000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "pl700": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "plev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "70000.", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "85000.0 60000.0", + "generic_level_name": "" + }, + "plev19": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "100000.", + "92500.", + "85000.", + "70000.", + "60000.", + "50000.", + "40000.", + "30000.", + "25000.", + "20000.", + "15000.", + "10000.", + "7000.", + "5000.", + "3000.", + "2000.", + "1000.", + "500.", + "100." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev23": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "100000.", + "92500.", + "85000.", + "70000.", + "60000.", + "50000.", + "40000.", + "30000.", + "25000.", + "20000.", + "15000.", + "10000.", + "7000.", + "5000.", + "3000.", + "2000.", + "1000.", + "700.", + "500.", + "300.", + "200.", + "100.", + "40." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev27": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "100000.", + "97500.", + "95000.", + "92500.", + "90000.", + "87500.", + "85000.", + "82500.", + "80000.", + "77500.", + "75000.", + "70000.", + "65000.", + "60000.", + "55000.", + "50000.", + "45000.", + "40000.", + "35000.", + "30000.", + "25000.", + "22500.", + "20000.", + "17500.", + "15000.", + "12500.", + "10000." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev3": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "85000.", + "50000.", + "5000." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev39": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "100000.", + "92500.", + "85000.", + "70000.", + "60000.", + "50000.", + "40000.", + "30000.", + "25000.", + "20000.", + "17000.", + "15000.", + "13000.", + "11500.", + "10000.", + "9000.", + "8000.", + "7000.", + "5000.", + "3000.", + "2000.", + "1500.", + "1000.", + "700.", + "500.", + "300.", + "200.", + "150.", + "100.", + "70.", + "50.", + "40.", + "30.", + "20.", + "15.", + "10.", + "7.", + "5.", + "3." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev3h": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "10000.", + "1000.", + "100." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev4": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "92500.", + "85000.", + "50000.", + "25000." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev5": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "85000.", + "50000.", + "20000.", + "10000.", + "5000" + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev7c": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "plev", + "positive": "down", + "requested": [ + "90000.", + "74000.", + "62000.", + "50000.", + "37500.", + "24500.", + "9000." + ], + "requested_bounds": [ + "100000.0", + "80000.0", + "80000.0", + "68000.0", + "68000.0", + "56000.0", + "56000.0", + "44000.0", + "44000.0", + "31000.0", + "31000.0", + "18000.0", + "18000.0", + "0.0" + ], + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev7h": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "92500.", + "85000.", + "70000.", + "60000.", + "50000.", + "25000.", + "5000." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev8": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "100000.", + "85000.", + "70000.", + "50000.", + "25000.", + "10000.", + "5000.", + "1000." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "plev10": { + "standard_name": "air_pressure", + "units": "Pa", + "axis": "Z", + "long_name": "pressure", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "plev", + "positive": "down", + "requested": [ + "100000.", + "92500.", + "85000.", + "70000.", + "60000.", + "50000.", + "25000.", + "10000.", + "5000.", + "1000." + ], + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "rho": { + "standard_name": "sea_water_potential_density", + "units": "kg m-3", + "axis": "Z", + "long_name": "potential density referenced to 2000 dbar", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "rho", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "scatratio": { + "standard_name": "backscattering_ratio_in_air", + "units": "1", + "axis": "", + "long_name": "lidar backscattering ratio", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "scatratio", + "positive": "", + "requested": [ + "0.005", + "0.605", + "2.1", + "4.", + "6.", + "8.5", + "12.5", + "17.5", + "22.5", + "27.5", + "35.", + "45.", + "55.", + "70.", + "50040." + ], + "requested_bounds": [ + "0.0", + "0.01", + "0.01", + "1.2", + "1.2", + "3.0", + "3.0", + "5.0", + "5.0", + "7.0", + "7.0", + "10.0", + "10.0", + "15.0", + "15.0", + "20.0", + "20.0", + "25.0", + "25.0", + "30.0", + "30.0", + "40.0", + "40.0", + "50.0", + "50.0", + "60.0", + "60.0", + "80.0", + "80.0", + "100000.0" + ], + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "scatter180": { + "standard_name": "scattering_angle", + "units": "degree", + "axis": "", + "long_name": "Scattering Angle", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "scatangle", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "180.0", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "sdepth": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "depth", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "depth", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "200.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "sdepth1": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "depth", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "depth", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "0.1", + "valid_min": "0.0", + "value": "0.05", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "0.0 0.1", + "generic_level_name": "" + }, + "sdepth10": { + "standard_name": "depth", + "units": "m", + "axis": "Z", + "long_name": "depth", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "depth", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "1.0", + "valid_min": "0.0", + "value": "0.5", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "0.0 1.0", + "generic_level_name": "" + }, + "siline": { + "standard_name": "region", + "units": "", + "axis": "", + "long_name": "ocean passage", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "line", + "positive": "", + "requested": [ + "fram_strait,", + "canadian_archipelego,", + "barents_opening,", + "bering_strait" + ], + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "site": { + "standard_name": "", + "units": "", + "axis": "", + "long_name": "site index", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "site", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "integer", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "sithreshold": { + "standard_name": "sea_ice_area_fraction", + "units": "%", + "axis": "", + "long_name": "Sea Ice Area Fraction Threshold", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "threshold", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "15.0", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "snowband": { + "standard_name": "surface_snow_thickness", + "units": "m", + "axis": "", + "long_name": "Snow Depth Band", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "snowband", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "soilpools": { + "standard_name": "", + "units": "", + "axis": "", + "long_name": "Soil Pools", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "spectband": { + "standard_name": "sensor_band_central_radiation_wavenumber", + "units": "m-1", + "axis": "", + "long_name": "Spectral Frequency Band", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "spectband", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "standard_hybrid_sigma": { + "standard_name": "atmosphere_hybrid_sigma_pressure_coordinate", + "units": "1", + "axis": "Z", + "long_name": "hybrid sigma pressure coordinate", + "climatology": "", + "formula": "p = a*p0 + b*ps", + "must_have_bounds": "yes", + "out_name": "lev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "", + "valid_max": "1.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "p0: p0 a: a_bnds b: b_bnds ps: ps", + "z_factors": "p0: p0 a: a b: b ps: ps", + "bounds_values": "", + "generic_level_name": "alevel" + }, + "standard_hybrid_sigma_half": { + "standard_name": "atmosphere_hybrid_sigma_pressure_coordinate", + "units": "1", + "axis": "Z", + "long_name": "hybrid sigma pressure coordinate", + "climatology": "", + "formula": "p = a*p0 + b*ps", + "must_have_bounds": "no", + "out_name": "lev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "", + "valid_max": "1.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "p0: p0 a: a b: b ps: ps", + "bounds_values": "", + "generic_level_name": "alevhalf" + }, + "standard_sigma": { + "standard_name": "atmosphere_sigma_coordinate", + "units": "", + "axis": "Z", + "long_name": "sigma coordinate", + "climatology": "", + "formula": "p = ptop + sigma*(ps - ptop)", + "must_have_bounds": "yes", + "out_name": "lev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "", + "valid_max": "1.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "ptop: ptop sigma: lev_bnds ps: ps", + "z_factors": "ptop: ptop sigma: lev ps: ps", + "bounds_values": "", + "generic_level_name": "alevel" + }, + "standard_sigma_half": { + "standard_name": "atmosphere_sigma_coordinate", + "units": "", + "axis": "Z", + "long_name": "sigma coordinate", + "climatology": "", + "formula": "p = ptop + sigma*(ps - ptop)", + "must_have_bounds": "no", + "out_name": "lev", + "positive": "down", + "requested": "", + "requested_bounds": "", + "stored_direction": "decreasing", + "tolerance": "", + "type": "", + "valid_max": "1.0", + "valid_min": "0.0", + "value": "", + "z_bounds_factors": "", + "z_factors": "ptop: ptop sigma: lev ps: ps", + "bounds_values": "", + "generic_level_name": "alevhalf" + }, + "stempzero": { + "standard_name": "soil_temperature", + "units": "degC", + "axis": "Z", + "long_name": "Soil Temperature Zero", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "stempzero", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "0.0", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "sza5": { + "standard_name": "solar_zenith_angle", + "units": "degree", + "axis": "", + "long_name": "solar zenith angle", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "sza", + "positive": "", + "requested": [ + "0.", + "20.", + "40.", + "60.", + "80." + ], + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "tau": { + "standard_name": "atmosphere_optical_thickness_due_to_cloud", + "units": "1", + "axis": "", + "long_name": "cloud optical thickness", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "tau", + "positive": "", + "requested": [ + "0.15", + "0.8", + "2.45", + "6.5", + "16.2", + "41.5", + "100." + ], + "requested_bounds": [ + "0.0", + "0.3", + "0.3", + "1.3", + "1.3", + "3.6", + "3.6", + "9.4", + "9.4", + "23.0", + "23.0", + "60.0", + "60.0", + "100000.0" + ], + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "time": { + "standard_name": "time", + "units": "days since ?", + "axis": "T", + "long_name": "time", + "climatology": "", + "formula": "", + "must_have_bounds": "yes", + "out_name": "time", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "time1": { + "standard_name": "time", + "units": "days since ?", + "axis": "T", + "long_name": "time", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "time", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typebare": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "surface type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "bare_ground", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typeburnt": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Burnt vegetation area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "burnt_vegetation", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typec3crop": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "surface type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "crops_of_c3_plant_functional_types", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typec3natg": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "C3 Natural grass area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "natural_grasses_of_c3_plant_functional_types", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typec3pastures": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "C3 Pastures area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "pastures_of_c3_plant_functional_types", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typec3pft": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "surface type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "c3_plant_functional_types", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typec4crop": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "surface type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "crops_of_c4_plant_functional_types", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typec4natg": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "C4 Natural grass area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "natural_grasses_of_c4_plant_functional_types", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typec4pastures": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "C4 Pastures area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "pastures_of_c4_plant_functional_types", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typec4pft": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "surface type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "c4_plant_functional_types", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typecloud": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Cloud area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "cloud", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typecrop": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Crop area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "crops", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typefis": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Floating Ice Shelf area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "floating_ice_shelf", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typegis": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Grounded Ice Sheet area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "grounded_ice_sheet", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typeland": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Land area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "land", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typeli": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Land Ice area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "land_ice", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typemp": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Melt pond area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "sea_ice_melt_pond", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typenatgr": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Natural grass area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "natural_grasses", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typenwd": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Non-Woody Vegetation area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "herbaceous_vegetation", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typepasture": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Pasture area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "pastures", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typepdec": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "surface type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "primary_deciduous_trees", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typepever": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "surface type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "primary_evergreen_trees", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typeresidual": { + "standard_name": "", + "units": "", + "axis": "", + "long_name": "Residual area", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "residual", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typesdec": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "surface type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "secondary_decidous_trees", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typesea": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Ocean area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "sea", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typesever": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "surface type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "secondary_evergreen_trees", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typeshrub": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Shrub area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "shrubs", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typesi": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Sea Ice area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "sea_ice", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typesirdg": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Sea Ice Ridge area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "sea_ice_ridges", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typetree": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Tree area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "trees", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typetreebd": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Tree area type (Broadleaf Deciduous)", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "trees", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typetreebe": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Tree area type (Broadleaf Evergreen)", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "trees", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typetreend": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Tree area type (Needleleaf Deciduous)", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "trees", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typetreene": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Tree area type (Needleleaf Evergreen)", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "trees", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typeveg": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Vegetation area type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "vegetation", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "typewetla": { + "standard_name": "area_type", + "units": "", + "axis": "", + "long_name": "Wetland", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "wetland", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "vegtype": { + "standard_name": "", + "units": "", + "axis": "", + "long_name": "Vegetation or Land Cover Type", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "type", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "character", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "xant": { + "standard_name": "projection_x_coordinate", + "units": "km", + "axis": "", + "long_name": "X-coordinate of Antarctic grid", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "xant", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "xgre": { + "standard_name": "projection_x_coordinate", + "units": "km", + "axis": "", + "long_name": "X-coordinate of Greenland grid", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "xgre", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "yant": { + "standard_name": "projection_y_coordinate", + "units": "km", + "axis": "", + "long_name": "Y-coordinate of Antarctic grid", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "yant", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "ygre": { + "standard_name": "projection_y_coordinate", + "units": "km", + "axis": "", + "long_name": "Y-coordinate of Greenland grid", + "climatology": "", + "formula": "", + "must_have_bounds": "no", + "out_name": "ygre", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "time2": { + "standard_name": "time", + "units": "days since ?", + "axis": "T", + "long_name": "time", + "climatology": "yes", + "formula": "", + "must_have_bounds": "yes", + "out_name": "time", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + }, + "time3": { + "standard_name": "time", + "units": "days since ?", + "axis": "T", + "long_name": "time", + "climatology": "yes", + "formula": "", + "must_have_bounds": "yes", + "out_name": "time", + "positive": "", + "requested": "", + "requested_bounds": "", + "stored_direction": "increasing", + "tolerance": "", + "type": "double", + "valid_max": "", + "valid_min": "", + "value": "", + "z_bounds_factors": "", + "z_factors": "", + "bounds_values": "", + "generic_level_name": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_day.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_day.json new file mode 100644 index 0000000000000000000000000000000000000000..4f0a21a05b62a4c2151611e78676964e5ff56162 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_day.json @@ -0,0 +1,756 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table day", + "realm": "atmos", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "1.00000", + "generic_levels": "", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "clt": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "cloud_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Cloud Cover Percentage", + "comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Includes both large-scale and convective cloud.", + "dimensions": "longitude latitude time", + "out_name": "clt", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2mass": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "atmosphere_mass_of_carbon_dioxide", + "units": "kg", + "cell_methods": "area: time: mean", + "cell_measures": "", + "long_name": "Total Atmospheric Mass of CO2", + "comment": "Total atmospheric mass of Carbon Dioxide", + "dimensions": "time", + "out_name": "co2mass", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "mol mol-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Mole Fraction of CO2", + "comment": "Mole fraction is used in the construction mole_fraction_of_X_in_Y, where X is a material constituent of Y.", + "dimensions": "longitude latitude plev19 time", + "out_name": "co2", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "co2s": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "mole_fraction_of_carbon_dioxide_in_air", + "units": "1e-06", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Atmosphere CO2", + "comment": "As co2, but only at the surface", + "dimensions": "longitude latitude time", + "out_name": "co2s", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfls": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upward_latent_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Latent Heat Flux", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'Upward' indicates a vector component which is positive when directed upward (negative downward). The surface latent heat flux is the exchange of heat between the surface and the air on account of evaporation (including sublimation). In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "hfls", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hfss": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upward_sensible_heat_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upward Sensible Heat Flux", + "comment": "The surface sensible heat flux, also called turbulent heat flux, is the exchange of heat between the surface and the air by motion of air.", + "dimensions": "longitude latitude time", + "out_name": "hfss", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hur": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude plev8 time", + "out_name": "hur", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hurs": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hurs", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hursmax": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hursmax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hursmin": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "relative_humidity", + "units": "%", + "cell_methods": "area: mean time: minimum", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Relative Humidity", + "comment": "The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.", + "dimensions": "longitude latitude time height2m", + "out_name": "hursmin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "hus": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Specific Humidity", + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", + "dimensions": "longitude latitude plev8 time", + "out_name": "hus", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "huss": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "specific_humidity", + "units": "1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Specific Humidity", + "comment": "Near-surface (usually, 2 meter) specific humidity.", + "dimensions": "longitude latitude time height2m", + "out_name": "huss", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrro": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "runoff_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Runoff", + "comment": "The total run-off (including drainage through the base of the soil model) per unit area leaving the land portion of the grid cell.", + "dimensions": "longitude latitude time", + "out_name": "mrro", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrso": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Total Soil Moisture Content", + "comment": "the mass per unit area (summed over all soil layers) of water in all phases.", + "dimensions": "longitude latitude time", + "out_name": "mrso", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsos": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "mass_content_of_water_in_soil_layer", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Moisture in Upper Portion of Soil Column", + "comment": "The mass of water in all phases in the upper 10cm of the soil layer.", + "dimensions": "longitude latitude time sdepth1", + "out_name": "mrsos", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "pr": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Precipitation", + "comment": "includes both liquid and solid phases", + "dimensions": "longitude latitude time", + "out_name": "pr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prc": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "convective_precipitation_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Convective Precipitation", + "comment": "Convective precipitation at surface; includes both liquid and solid phases.", + "dimensions": "longitude latitude time", + "out_name": "prc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "prsn": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "snowfall_flux", + "units": "kg m-2 s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snowfall Flux", + "comment": "At surface; includes precipitation of all forms of water in the solid phase", + "dimensions": "longitude latitude time", + "out_name": "prsn", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "psl": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_pressure_at_mean_sea_level", + "units": "Pa", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Sea Level Pressure", + "comment": "Sea Level Pressure", + "dimensions": "longitude latitude time", + "out_name": "psl", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlds": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rls": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Longwave Surface Radiation", + "comment": "Net longwave surface radiation", + "dimensions": "longitude latitude time", + "out_name": "rls", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlus": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_longwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Longwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rlus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rlut": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "toa_outgoing_longwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "TOA Outgoing Longwave Radiation", + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", + "dimensions": "longitude latitude time", + "out_name": "rlut", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsds": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_downwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Downwelling Shortwave Radiation", + "comment": "Surface solar irradiance for UV calculations.", + "dimensions": "longitude latitude time", + "out_name": "rsds", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rss": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_net_downward_shortwave_flux", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Net Shortwave Surface Radiation", + "comment": "Net downward shortwave radiation at the surface", + "dimensions": "longitude latitude time", + "out_name": "rss", + "type": "real", + "positive": "down", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rsus": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "surface_upwelling_shortwave_flux_in_air", + "units": "W m-2", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Upwelling Shortwave Radiation", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. 'shortwave' means shortwave radiation. Upwelling radiation is radiation from below. It does not mean 'net upward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.", + "dimensions": "longitude latitude time", + "out_name": "rsus", + "type": "real", + "positive": "up", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfcWind": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Daily-Mean Near-Surface Wind Speed", + "comment": "near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWind", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sfcWindmax": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "wind_speed", + "units": "m s-1", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Wind Speed", + "comment": "Daily maximum near-surface (usually, 10 meters) wind speed.", + "dimensions": "longitude latitude time height10m", + "out_name": "sfcWindmax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snc": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_area_fraction", + "units": "%", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Snow Area Percentage", + "comment": "Percentage of each grid cell that is occupied by snow that rests on land portion of cell.", + "dimensions": "longitude latitude time", + "out_name": "snc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "snw": { + "frequency": "day", + "modeling_realm": "landIce land", + "standard_name": "surface_snow_amount", + "units": "kg m-2", + "cell_methods": "area: mean where land time: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Snow Amount", + "comment": "The mass of surface snow on the land portion of the grid cell divided by the land area in the grid cell; reported as missing where the land fraction is 0; excludes snow on vegetation canopy or on sea ice.", + "dimensions": "longitude latitude time", + "out_name": "snw", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ta": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Air Temperature", + "comment": "Air Temperature", + "dimensions": "longitude latitude plev8 time", + "out_name": "ta", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tas": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Near-Surface Air Temperature", + "comment": "near-surface (usually, 2 meter) air temperature", + "dimensions": "longitude latitude time height2m", + "out_name": "tas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasmax": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: maximum", + "cell_measures": "area: areacella", + "long_name": "Daily Maximum Near-Surface Air Temperature", + "comment": "maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')", + "dimensions": "longitude latitude time height2m", + "out_name": "tasmax", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tasmin": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "air_temperature", + "units": "K", + "cell_methods": "area: mean time: minimum", + "cell_measures": "area: areacella", + "long_name": "Daily Minimum Near-Surface Air Temperature", + "comment": "minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')", + "dimensions": "longitude latitude time height2m", + "out_name": "tasmin", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "tslsi": { + "frequency": "day", + "modeling_realm": "land", + "standard_name": "surface_temperature", + "units": "K", + "cell_methods": "area: time: mean (comment: over land and sea ice)", + "cell_measures": "area: areacella", + "long_name": "Surface Temperature Where Land or Sea Ice", + "comment": "Surface temperature of all surfaces except open ocean.", + "dimensions": "longitude latitude time", + "out_name": "tslsi", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "ua": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Wind", + "comment": "Zonal wind (positive in a eastward direction).", + "dimensions": "longitude latitude plev8 time", + "out_name": "ua", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "uas": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "eastward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Eastward Near-Surface Wind", + "comment": "Eastward component of the near-surface (usually, 10 meters) wind", + "dimensions": "longitude latitude time height10m", + "out_name": "uas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "va": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Wind", + "comment": "Meridional wind (positive in a northward direction).", + "dimensions": "longitude latitude plev8 time", + "out_name": "va", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "vas": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "northward_wind", + "units": "m s-1", + "cell_methods": "area: time: mean", + "cell_measures": "area: areacella", + "long_name": "Northward Near-Surface Wind", + "comment": "Northward component of the near surface wind", + "dimensions": "longitude latitude time height10m", + "out_name": "vas", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "wap": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "lagrangian_tendency_of_air_pressure", + "units": "Pa s-1", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Omega (=dp/dt)", + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", + "dimensions": "longitude latitude plev8 time", + "out_name": "wap", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zg": { + "frequency": "day", + "modeling_realm": "atmos", + "standard_name": "geopotential_height", + "units": "m", + "cell_methods": "time: mean", + "cell_measures": "area: areacella", + "long_name": "Geopotential Height", + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.", + "dimensions": "longitude latitude plev8 time", + "out_name": "zg", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_formula_terms.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_formula_terms.json new file mode 100644 index 0000000000000000000000000000000000000000..afcef0cb9af74e95fc54113f383166a1bc754507 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_formula_terms.json @@ -0,0 +1,204 @@ +{ + "formula_entry": { + "a": { + "long_name": "vertical coordinate formula term: a", + "units": "", + "dimensions": "alevel", + "out_name": "a", + "standard_name": "", + "type": "double" + }, + "a_bnds": { + "long_name": "vertical coordinate formula term: a(k+1/2)", + "units": "", + "dimensions": "alevel", + "out_name": "a_bnds", + "standard_name": "", + "type": "double" + }, + "a_half": { + "long_name": "vertical coordinate formula term: a(k)", + "units": "", + "dimensions": "alevhalf", + "out_name": "a", + "standard_name": "", + "type": "double" + }, + "ap": { + "long_name": "vertical coordinate formula term: ap", + "units": "Pa", + "dimensions": "alevel", + "out_name": "ap", + "standard_name": "", + "type": "double" + }, + "ap_bnds": { + "long_name": "vertical coordinate formula term: ap(k+1/2)", + "units": "Pa", + "dimensions": "alevel", + "out_name": "ap_bnds", + "standard_name": "", + "type": "double" + }, + "ap_half": { + "long_name": "vertical coordinate formula term: ap(k)", + "units": "Pa", + "dimensions": "alevhalf", + "out_name": "ap", + "standard_name": "", + "type": "double" + }, + "b": { + "long_name": "vertical coordinate formula term: b", + "units": "", + "dimensions": "alevel", + "out_name": "b", + "standard_name": "", + "type": "double" + }, + "b_bnds": { + "long_name": "vertical coordinate formula term: b(k+1/2)", + "units": "", + "dimensions": "alevel", + "out_name": "b_bnds", + "standard_name": "", + "type": "double" + }, + "b_half": { + "long_name": "vertical coordinate formula term: b(k)", + "units": "", + "dimensions": "alevhalf", + "out_name": "b", + "standard_name": "", + "type": "double" + }, + "depth": { + "long_name": "Sea Floor Depth", + "units": "m", + "dimensions": "longitude latitude", + "out_name": "depth", + "standard_name": "", + "type": "real" + }, + "depth_c": { + "long_name": "vertical coordinate formula term: depth_c", + "units": "m", + "dimensions": "", + "out_name": "depth_c", + "standard_name": "", + "type": "double" + }, + "eta": { + "long_name": "Sea Surface Height", + "units": "m", + "dimensions": "longitude latitude time", + "out_name": "eta", + "standard_name": "", + "type": "real" + }, + "eta2": { + "long_name": "Sea Surface Height", + "units": "m", + "dimensions": "longitude latitude time2", + "out_name": "eta", + "standard_name": "", + "type": "real" + }, + "k_c": { + "long_name": "vertical coordinate formula term: k_c", + "units": "", + "dimensions": "", + "out_name": "k_c", + "standard_name": "", + "type": "integer" + }, + "nsigma": { + "long_name": "vertical coordinate formula term: nsigma", + "units": "", + "dimensions": "", + "out_name": "nsigma", + "standard_name": "", + "type": "integer" + }, + "orog": { + "long_name": "Surface Altitude", + "units": "m", + "dimensions": "longitude latitude", + "out_name": "orog", + "standard_name": "", + "type": "real" + }, + "orog2d": { + "long_name": "Surface Altitude", + "units": "m", + "dimensions": "latitude", + "out_name": "orog", + "standard_name": "", + "type": "real" + }, + "p0": { + "long_name": "vertical coordinate formula term: reference pressure", + "units": "Pa", + "dimensions": "", + "out_name": "p0", + "standard_name": "reference_air_pressure_for_atmosphere_vertical_coordinate", + "type": "double" + }, + "ps": { + "long_name": "Surface Air Pressure", + "units": "Pa", + "dimensions": "longitude latitude time", + "out_name": "ps", + "standard_name": "air_pressure", + "type": "real" + }, + "ps1": { + "long_name": "Surface Air Pressure", + "units": "Pa", + "dimensions": "longitude latitude time1", + "out_name": "ps", + "standard_name": "air_pressure", + "type": "real" + }, + "ps2": { + "long_name": "Surface Air Pressure", + "units": "Pa", + "dimensions": "longitude latitude time2", + "out_name": "ps", + "standard_name": "air_pressure", + "type": "real" + }, + "ps2d": { + "long_name": "Surface Air Pressure", + "units": "Pa", + "dimensions": "latitude time1", + "out_name": "ps", + "standard_name": "air_pressure", + "type": "real" + }, + "ptop": { + "long_name": "pressure at top of model", + "units": "Pa", + "dimensions": "", + "out_name": "ptop", + "standard_name": "air_pressure_at_top_of_atmosphere", + "type": "double" + }, + "zlev": { + "long_name": "vertical coordinate formula term: zlev(k)", + "units": "m", + "dimensions": "olevel", + "out_name": "zlev", + "standard_name": "", + "type": "double" + }, + "zlev_bnds": { + "long_name": "vertical coordinate formula term: zlev(k+1/2)", + "units": "m", + "dimensions": "olevel", + "out_name": "zlev_bnds", + "standard_name": "", + "type": "double" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_fx.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_fx.json new file mode 100644 index 0000000000000000000000000000000000000000..0dafff48512f070bbdd00e7105a96be13521e9eb --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_fx.json @@ -0,0 +1,162 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "cmor_version": "3.5", + "table_id": "Table fx", + "realm": "land", + "table_date": "18 November 2020", + "missing_value": "1e20", + "int_missing_value": "-999", + "product": "model-output", + "approx_interval": "0.00000", + "generic_levels": "alevel", + "mip_era": "CMIP6", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "variable_entry": { + "areacella": { + "frequency": "fx", + "modeling_realm": "atmos land", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for Atmospheric Grid Variables", + "comment": "For atmospheres with more than 1 mesh (e.g., staggered grids), report areas that apply to surface vertical fluxes of energy.", + "dimensions": "longitude latitude", + "out_name": "areacella", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "areacellr": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "cell_area", + "units": "m2", + "cell_methods": "area: sum", + "cell_measures": "", + "long_name": "Grid-Cell Area for River Model Variables", + "comment": "For river routing model, if grid differs from the atmospheric grid.", + "dimensions": "longitude latitude", + "out_name": "areacellr", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "mrsofc": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "soil_moisture_content_at_field_capacity", + "units": "kg m-2", + "cell_methods": "area: mean where land", + "cell_measures": "area: areacella", + "long_name": "Capacity of Soil to Store Water (Field Capacity)", + "comment": "The bulk water content retained by the soil at -33 J/kg of suction pressure, expressed as mass per unit land area; report as missing where there is no land", + "dimensions": "longitude latitude", + "out_name": "mrsofc", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "orog": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "surface_altitude", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Surface Altitude", + "comment": "The surface called 'surface' means the lower boundary of the atmosphere. Altitude is the (geometric) height above the geoid, which is the reference geopotential surface. The geoid is similar to mean sea level.", + "dimensions": "longitude latitude", + "out_name": "orog", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "rootd": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "root_depth", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Maximum Root Depth", + "comment": "report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as *missing* where the land fraction is 0.", + "dimensions": "longitude latitude", + "out_name": "rootd", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftgif": { + "frequency": "fx", + "modeling_realm": "land", + "standard_name": "land_ice_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Land Ice Area Percentage", + "comment": "Percentage of grid cell covered by land ice (ice sheet, ice shelf, ice cap, glacier)", + "dimensions": "longitude latitude", + "out_name": "sftgif", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "sftlf": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "land_area_fraction", + "units": "%", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Percentage of the Grid Cell Occupied by Land (Including Lakes)", + "comment": "Percentage of horizontal area occupied by land.", + "dimensions": "longitude latitude", + "out_name": "sftlf", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + }, + "zfull": { + "frequency": "fx", + "modeling_realm": "atmos", + "standard_name": "height_above_reference_ellipsoid", + "units": "m", + "cell_methods": "area: mean", + "cell_measures": "area: areacella", + "long_name": "Altitude of Model Full-Levels", + "comment": "Height of full model levels above a reference ellipsoid. A reference ellipsoid is a mathematical figure that approximates the geoid. The geoid is a surface of constant geopotential with which mean sea level would coincide if the ocean were at rest. The ellipsoid is an approximation because the geoid is an irregular shape. A number of reference ellipsoids are defined for use in the field of geodesy. To specify which reference ellipsoid is being used, a grid_mapping variable should be attached to the data variable as described in Chapter 5.6 of the CF Convention.", + "dimensions": "longitude latitude alevel", + "out_name": "zfull", + "type": "real", + "positive": "", + "valid_min": "", + "valid_max": "", + "ok_min_mean_abs": "", + "ok_max_mean_abs": "" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_grids.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_grids.json new file mode 100644 index 0000000000000000000000000000000000000000..4476155e4faa37f9ed28768a73d83402e74ff0a9 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_grids.json @@ -0,0 +1,158 @@ +{ + "Header": { + "data_specs_version": "01.00.33", + "table_id": "Table grids", + "cmor_version": "3.5", + "table_date": "18 November 2020", + "missing_value": "1e20", + "product": "output", + "Conventions": "CF-1.7 CMIP-6.2" + }, + "mapping_entry": { + "sample_user_mapping": { + "parameter1": "false_easting", + "parameter2": "false_northing", + "coordinates": "rlon rlat" + } + }, + "axis_entry": { + "grid_latitude": { + "standard_name": "grid_latitude", + "units": "degrees", + "axis": "Y", + "long_name": "latitude in rotated pole grid", + "out_name": "rlat", + "type": "double" + }, + "grid_longitude": { + "standard_name": "grid_longitude", + "units": "degrees", + "axis": "X", + "long_name": "longitude in rotated pole grid", + "out_name": "rlon", + "type": "double" + }, + "i_index": { + "standard_name": "", + "units": "1", + "axis": "", + "long_name": "first spatial index for variables stored on an unstructured grid", + "out_name": "i", + "type": "integer" + }, + "j_index": { + "standard_name": "", + "units": "1", + "axis": "", + "long_name": "second spatial index for variables stored on an unstructured grid", + "out_name": "j", + "type": "integer" + }, + "k_index": { + "standard_name": "", + "units": "1", + "axis": "", + "long_name": "third spatial index for variables stored on an unstructured grid", + "out_name": "k", + "type": "integer" + }, + "l_index": { + "standard_name": "", + "units": "1", + "axis": "", + "long_name": "fourth spatial index for variables stored on an unstructured grid", + "out_name": "l", + "type": "integer" + }, + "m_index": { + "standard_name": "", + "units": "1", + "axis": "", + "long_name": "fifth spatial index for variables stored on an unstructured grid", + "out_name": "m", + "type": "integer" + }, + "vertices": { + "standard_name": "", + "units": "", + "axis": "", + "long_name": "", + "out_name": "", + "type": "" + }, + "x": { + "standard_name": "projection_x_coordinate", + "units": "m", + "axis": "X", + "long_name": "x coordinate of projection", + "out_name": "", + "type": "double" + }, + "x_deg": { + "standard_name": "projection_x_coordinate", + "units": "degrees", + "axis": "X", + "long_name": "x coordinate of projection", + "out_name": "x", + "type": "double" + }, + "y": { + "standard_name": "projection_y_coordinate", + "units": "m", + "axis": "Y", + "long_name": "y coordinate of projection", + "out_name": "", + "type": "double" + }, + "y_deg": { + "standard_name": "projection_y_coordinate", + "units": "degrees", + "axis": "Y", + "long_name": "y coordinate of projection", + "out_name": "y", + "type": "double" + } + }, + "variable_entry": { + "latitude": { + "standard_name": "latitude", + "units": "degrees_north", + "long_name": "latitude", + "dimensions": "longitude latitude", + "out_name": "latitude", + "valid_min": "-90.0", + "valid_max": "90.0", + "type": "double" + }, + "longitude": { + "standard_name": "longitude", + "units": "degrees_east", + "long_name": "longitude", + "dimensions": "longitude latitude", + "out_name": "longitude", + "valid_min": "0.0", + "valid_max": "360.0", + "type": "double" + }, + "vertices_latitude": { + "standard_name": "", + "units": "degrees_north", + "long_name": "", + "dimensions": "vertices longitude latitude", + "out_name": "vertices_latitude", + "valid_min": "-90.0", + "valid_max": "90.0", + "type": "double" + }, + "vertices_longitude": { + "standard_name": "", + "units": "degrees_east", + "long_name": "", + "dimensions": "vertices longitude latitude", + "out_name": "vertices_longitude", + "valid_min": "0.0", + "valid_max": "360.0", + "type": "double" + } + } +} diff --git a/ece2cmor/ece2cmor3/resources/tables/CMIP6_input_example.json b/ece2cmor/ece2cmor3/resources/tables/CMIP6_input_example.json new file mode 100644 index 0000000000000000000000000000000000000000..159060d4543ad286d6e2090fd1b40d2c41487a8f --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tables/CMIP6_input_example.json @@ -0,0 +1,74 @@ +{ + "#note_source_type": "explanation of what source_type is goes here", + "source_type": "AOGCM ISM AER", + + "#note_experiment_id": "CMIP6 valid experiment_ids are found in CMIP6_CV.json", + "experiment_id": "piControl-withism", + "activity_id": "ISMIP6", + "sub_experiment_id": "none", + + "realization_index": "3", + "initialization_index": "1", + "physics_index": "1", + "forcing_index": "1", + + "#note_run_variant": "Text stored in attribute variant_info (recommended, not required description of run variant)", + "run_variant": "3rd realization", + + "parent_experiment_id": "historical", + "parent_activity_id": "CMIP", + "parent_source_id": "PCMDI-test-1-0", + "parent_variant_label": "r3i1p1f1", + + "parent_time_units": "days since 1850-01-01", + "branch_method": "standard", + "branch_time_in_child": 59400.0, + "branch_time_in_parent": 59400.0, + + "#note_institution_id": "institution_id must be registered at https://github.com/WCRP-CMIP/CMIP6_CVs/issues/new ", + "institution_id": "PCMDI", + + "#note_source_id": "source_id (model name) must be registered at https://github.com/WCRP-CMIP/CMIP6_CVs/issues/new ", + "source_id": "PCMDI-test-1-0", + + "calendar": "360_day", + + "grid": "native atmosphere regular grid (3x4 latxlon)", + "grid_label": "gn", + "nominal_resolution": "10000 km", + + "license": "CMIP6 model data produced by Lawrence Livermore PCMDI is licensed under a Creative Commons Attribution ShareAlike 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at https:///pcmdi.llnl.gov/. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.", + + "#output": "Root directory for output (can be either a relative or full path)", + "outpath": "CMIP6", + + "#note_optional": " **** The following descriptors are optional and may be set to an empty string ", + + "contact ": "Python Coder (coder@a.b.c.com)", + "history": "Output from archivcl_A1.nce/giccm_03_std_2xCO2_2256.", + "comment": "", + "references": "Model described by Koder and Tolkien (J. Geophys. Res., 2001, 576-591). Also see http://www.GICC.su/giccm/doc/index.html. The ssp245 simulation is described in Dorkey et al. '(Clim. Dyn., 2003, 323-357.)'", + + "#note_CV": " **** The following will be obtained from the CV and do not need to be defined here", + + "sub_experiment": "none", + "institution": "", + "source": "PCMDI-test 1.0 (1989)", + + "#note_CMIP6": " **** The following are set correctly for CMIP6 and should not normally need editing", + + "_controlled_vocabulary_file": "CMIP6_CV.json", + "_AXIS_ENTRY_FILE": "CMIP6_coordinate.json", + "_FORMULA_VAR_FILE": "CMIP6_formula_terms.json", + "_cmip6_option": "CMIP6", + + "mip_era": "CMIP6", + "parent_mip_era": "CMIP6", + + "tracking_prefix": "hdl:21.14100", + "_history_template": "%s ;rewrote data to be consistent with for variable found in table .", + + "#output_path_template": "Template for output path directory using tables keys or global attributes, these should follow the relevant data reference syntax", + "output_path_template": "<_member_id>", + "output_file_template": "
<_member_id>" + } \ No newline at end of file diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/cmip6-data-request-varlist-6hrPlevPt-hus7h.json b/ece2cmor/ece2cmor3/resources/test-data-request/cmip6-data-request-varlist-6hrPlevPt-hus7h.json new file mode 100644 index 0000000000000000000000000000000000000000..48ab0be149f8ce95d127c6385123f26e292c71a7 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/cmip6-data-request-varlist-6hrPlevPt-hus7h.json @@ -0,0 +1,10 @@ +{ + "ifs": { + "6hrPlevPt": [ + "hus7h" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM-without-zhalfo.json b/ece2cmor/ece2cmor3/resources/test-data-request/cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM-without-zhalfo.json new file mode 100644 index 0000000000000000000000000000000000000000..e5da2f0c9b9629ff93f4f37bc58e31930fb328e7 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM-without-zhalfo.json @@ -0,0 +1,318 @@ +{ + "ifs": { + "3hr": [ + "pr", + "tas", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "uas", + "vas", + "huss", + "mrsos", + "tslsi", + "prc", + "prsn", + "mrro", + "rldscs", + "rsdscs", + "rsuscs", + "ps", + "clt" + ], + "6hrLev": [ + "ta", + "ua", + "va", + "hus", + "ps" + ], + "6hrPlevPt": [ + "rv850", + "zg500", + "psl", + "ua7h", + "va7h", + "zg7h", + "ta7h", + "hus7h" + ], + "AERmonZ": [ + "ta" + ], + "Amon": [ + "tas", + "ts", + "tasmin", + "tasmax", + "psl", + "ps", + "uas", + "vas", + "sfcWind", + "hurs", + "huss", + "pr", + "prsn", + "prc", + "evspsbl", + "sbl", + "tauu", + "tauv", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rsdscs", + "rsuscs", + "rldscs", + "rsdt", + "rsut", + "rlut", + "rlutcs", + "rsutcs", + "prw", + "clt", + "clwvi", + "clivi", + "rtmt", + "cl", + "clw", + "cli", + "ta", + "ua", + "va", + "hus", + "hur", + "wap", + "zg", + "pfull" + ], + "CFday": [ + "ps" + ], + "Eday": [ + "prw", + "tauu", + "tauv", + "hus", + "ta", + "ua", + "va", + "wap", + "zg" + ], + "EdayZ": [ + "zg", + "ua" + ], + "Emon": [ + "mrsol", + "ps" + ], + "LImon": [ + "snc", + "snd", + "snw", + "snm", + "sbl", + "hfdsn", + "tsn" + ], + "Lmon": [ + "mrsos", + "mrso", + "mrfso", + "mrros", + "mrro" + ], + "Omon": [ + "prra", + "prsn" + ], + "SIday": [ + "siconca" + ], + "SImon": [ + "siconca" + ], + "day": [ + "huss", + "tasmin", + "tasmax", + "tas", + "pr", + "psl", + "sfcWind", + "mrso", + "mrsos", + "hurs", + "hursmin", + "hursmax", + "snc", + "clt", + "tslsi", + "snw", + "prc", + "prsn", + "mrro", + "uas", + "vas", + "sfcWindmax", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rlut", + "ta", + "hur", + "hus", + "wap", + "va", + "ua", + "zg" + ] + }, + "lpjg": {}, + "nemo": { + "3hr": [ + "tos" + ], + "Oday": [ + "tossq", + "tos", + "omldamax" + ], + "Ofx": [ + "deptho", + "areacello", + "sftof", + "basin", + "hfgeou" + ], + "Omon": [ + "masso", + "pbo", + "dissicos", + "pso", + "volo", + "zos", + "zostoga", + "masscello", + "thkcello", + "thetao", + "thetaoga", + "bigthetao", + "bigthetaoga", + "tos", + "tob", + "tosga", + "tossq", + "so", + "soga", + "sos", + "sob", + "sosga", + "talkos", + "agessc", + "msftbarot", + "phos", + "mlotst", + "mlotstmax", + "o2os", + "mlotstmin", + "no3os", + "obvfsq", + "uo", + "po4os", + "vo", + "wo", + "wmo", + "chlos", + "umo", + "vmo", + "msftyz", + "hfbasin", + "hfbasinpmadv", + "htovgyre", + "htovovrt", + "sltovgyre", + "sltovovrt", + "evs", + "friver", + "ficeberg2d", + "fsitherm", + "wfo", + "wfonocorr", + "wfcorr", + "sfdsi", + "hfgeou", + "hfevapds", + "hfibthermds2d", + "rlntds", + "hflso", + "hfsso", + "rsntds", + "hfcorr", + "hfds", + "tauuo", + "tauvo", + "intpp", + "epc100", + "epsi100", + "epcalc100", + "spco2", + "dpco2", + "fgco2", + "fgo2", + "froc", + "o2min", + "talk", + "o2", + "chl" + ], + "Oyr": [ + "dissic", + "talk", + "ph", + "o2", + "no3", + "po4", + "dfe", + "si", + "chl", + "fgco2" + ], + "SIday": [ + "sitimefrac", + "siconc", + "sithick", + "sisnthick", + "sitemptop", + "siu", + "siv", + "sispeed" + ], + "SImon": [ + "sitimefrac", + "siconc", + "simass", + "sithick", + "sivol", + "sisnmass", + "sisnthick", + "sitemptop", + "siu", + "siv", + "sispeed" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/convert-varlist.sh b/ece2cmor/ece2cmor3/resources/test-data-request/convert-varlist.sh new file mode 100755 index 0000000000000000000000000000000000000000..57be4a5988a53203fc4ec00507c6d44a3faecaec --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/convert-varlist.sh @@ -0,0 +1,27 @@ +#!/bin/bash +# Thomas Reerink +# +# This scripts requires 1 argument: +# +# ${1} the first argument is the drqlist.json file to convert +# +# Run example: +# ./convert-varlist.sh varlist-nemo-Omon-msftbarot.json +# +# This script converts a drqlist.json file to a varlist.json file + + +if [ "$#" -eq 1 ]; then + + file_name=$1 + + # Note that the --ececonf argument is omitted here to leave out the preferences: + ../../scripts/drq2varlist.py --drq ${file_name} --varlist ${file_name}-new; + mv -f ${file_name}-new ${file_name} + +else + echo ' ' + echo ' This scripts requires one argument, e.g.:' + echo ' ' $0 varlist-nemo-Omon-msftbarot.json + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/cordex-model-level-output-for-rcm-forcing.json b/ece2cmor/ece2cmor3/resources/test-data-request/cordex-model-level-output-for-rcm-forcing.json new file mode 100644 index 0000000000000000000000000000000000000000..00b8674f67672988897cf39217d49e1da16ca343 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/cordex-model-level-output-for-rcm-forcing.json @@ -0,0 +1,30 @@ +{ + "ifs": { + "6hrLev": [ + "ta", + "ua", + "va", + "hus", + "ps" + ], + "6hrPlev": [ + "siconca" + ], + "6hrPlevPt": [ + "tosa", + "tsl4sl", + "mrsol" + ], + "Amon": [ + "tas" + ], + "fx": [ + "areacella", + "orog", + "sftlf" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/drqlist-nemo-all.json b/ece2cmor/ece2cmor3/resources/test-data-request/drqlist-nemo-all.json new file mode 100644 index 0000000000000000000000000000000000000000..4065a948bae1cf753860d18cc29a0721a7e58dc0 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/drqlist-nemo-all.json @@ -0,0 +1,397 @@ +{ + "EmonZ": [ + "sltbasin" + ], + "3hr": [ + "tos" + ], + "SImon": [ + "sfdsi", + "siage", + "siareaacrossline", + "siarean", + "siareas", + "sicompstren", + "siconc", + "sidconcdyn", + "sidconcth", + "sidivvel", + "sidmassdyn", + "sidmassevapsubl", + "sidmassgrowthbot", + "sidmassgrowthwat", + "sidmassmeltbot", + "sidmassmelttop", + "sidmasssi", + "sidmassth", + "sidmasstranx", + "sidmasstrany", + "siextentn", + "siextents", + "sifb", + "siflcondbot", + "siflcondtop", + "siflfwbot", + "siflfwdrain", + "siflsensupbot", + "siflswdtop", + "siforcecoriolx", + "siforcecorioly", + "siforceintstrx", + "siforceintstry", + "siforcetiltx", + "siforcetilty", + "sihc", + "siitdconc", + "siitdsnthick", + "siitdthick", + "simass", + "simassacrossline", + "sisali", + "sisaltmass", + "sishevel", + "sisnhc", + "sisnmass", + "sisnthick", + "sispeed", + "sistremax", + "sistresave", + "sistrxdtop", + "sistrxubot", + "sistrydtop", + "sistryubot", + "sitempbot", + "sitempsnic", + "sitemptop", + "sithick", + "sitimefrac", + "siu", + "siv", + "sivol", + "sivoln", + "sivols", + "sndmassdyn", + "sndmassmelt", + "sndmasssi", + "sndmasssnf", + "sndmasssubl", + "snmassacrossline" + ], + "Omon": [ + "agessc", + "bfe", + "bfeos", + "bigthetao", + "bigthetaoga", + "bsi", + "bsios", + "calc", + "calcos", + "cfc11", + "cfc12", + "chl", + "chldiat", + "chldiatos", + "chlmisc", + "chlmiscos", + "chlos", + "co3", + "co3os", + "co3satcalc", + "co3satcalcos", + "detoc", + "detocos", + "dfe", + "dfeos", + "dissic", + "dissicnat", + "dissicnatos", + "dissicos", + "dissoc", + "dissocos", + "dpco2", + "dpo2", + "epc100", + "epcalc100", + "epfe100", + "epsi100", + "evs", + "expc", + "fbddtalk", + "fbddtdic", + "fbddtdife", + "fbddtdin", + "fbddtdip", + "fbddtdisi", + "fgcfc11", + "fgcfc12", + "fgco2", + "fgo2", + "fgsf6", + "ficeberg2d", + "fric", + "friver", + "frn", + "froc", + "fsfe", + "fsitherm", + "fsn", + "graz", + "hfbasin", + "hfbasinpmadv", + "hfcorr", + "hfds", + "hfevapds", + "hfgeou", + "hfibthermds2d", + "hflso", + "hfrainds", + "hfrunoffds2d", + "hfsnthermds2d", + "hfsso", + "hfx", + "hfy", + "htovgyre", + "htovovrt", + "intdic", + "intdoc", + "intpbfe", + "intpbsi", + "intpcalcite", + "intpn2", + "intpp", + "intppcalc", + "intppdiat", + "intppmisc", + "intppnitrate", + "limfediat", + "limfemisc", + "limirrdiat", + "limirrmisc", + "limndiaz", + "limnmisc", + "masscello", + "masso", + "mfo", + "mlotst", + "mlotstmax", + "mlotstmin", + "mlotstsq", + "msftbarot", + "msftyz", + "nh4", + "nh4os", + "no3", + "no3os", + "o2", + "o2min", + "o2os", + "obvfsq", + "pbo", + "ph", + "phos", + "phyc", + "phycos", + "phydiat", + "phydiatos", + "phyfe", + "phyfeos", + "phymisc", + "phymiscos", + "physi", + "physios", + "po4", + "po4os", + "pp", + "ppos", + "pso", + "rlntds", + "rsdo", + "rsntds", + "sf6", + "sfdsi", + "si", + "sios", + "sltovgyre", + "sltovovrt", + "so", + "sob", + "soga", + "sos", + "sosga", + "sossq", + "spco2", + "talk", + "talknat", + "talknatos", + "talkos", + "tauuo", + "tauvo", + "thetao", + "thetaoga", + "thkcello", + "tob", + "tos", + "tosga", + "tossq", + "umo", + "uo", + "vmo", + "vo", + "volo", + "wfcorr", + "wfo", + "wfonocorr", + "wmo", + "wo", + "zhalfo", + "zmeso", + "zmesoos", + "zmicro", + "zmicroos", + "zo2min", + "zooc", + "zoocos", + "zos", + "zossq", + "zostoga" + ], + "SIday": [ + "siconc", + "sisnthick", + "sispeed", + "sitemptop", + "sithick", + "sitimefrac", + "siu", + "siv" + ], + "Oyr": [ + "bfe", + "bsi", + "calc", + "cfc11", + "cfc12", + "chl", + "chldiat", + "chlmisc", + "co3", + "co3satcalc", + "dcalc", + "detoc", + "dfe", + "difvho", + "difvso", + "dissic", + "dissicnat", + "dissoc", + "expc", + "expcalc", + "expfe", + "expn", + "expp", + "expsi", + "fgco2", + "graz", + "nh4", + "no3", + "o2", + "ocontempdiff", + "ocontemppadvect", + "ocontemppmdiff", + "ocontemprmadvect", + "ocontemptend", + "osaltdiff", + "osaltpadvect", + "osaltpmdiff", + "osaltrmadvect", + "osalttend", + "pbfe", + "pbsi", + "pcalc", + "ph", + "phyc", + "phydiat", + "phyfe", + "phymisc", + "physi", + "pnitrate", + "po4", + "pp", + "ppdiat", + "ppmisc", + "remoc", + "sf6", + "si", + "somint", + "talk", + "talknat", + "tnpeo", + "zmeso", + "zmicro", + "zooc" + ], + "Emon": [ + "expcalc", + "expfe", + "expn", + "expp", + "expsi", + "flandice", + "ocontempdiff", + "ocontemppadvect", + "ocontemppmdiff", + "ocontemprmadvect", + "ocontemptend", + "osaltdiff", + "osaltpadvect", + "osaltpmdiff", + "osaltrmadvect", + "osalttend", + "ppdiat", + "ppmisc", + "somint", + "t20d", + "thetaot", + "thetaot2000", + "thetaot300", + "thetaot700" + ], + "Oday": [ + "chlos", + "omldamax", + "phycos", + "sos", + "sossq", + "tos", + "tossq" + ], + "Oclim": [ + "diftrblo2d", + "diftrelo2d", + "diftrxylo2d", + "difvho", + "difvmo", + "difvmto", + "difvso", + "difvtrto", + "dispkevfo", + "dispkexyfo2d", + "tnkebto2d", + "tnpeo", + "zhalfo" + ], + "Ofx": [ + "areacello", + "basin", + "deptho", + "hfgeou", + "masscello", + "sftof", + "thkcello" + ], + "Eday": [ + "mlotst", + "t20d" + ] +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/fix-request-for-issues-671+684-CMIP-historical-EC-EARTH-AOGCM.json b/ece2cmor/ece2cmor3/resources/test-data-request/fix-request-for-issues-671+684-CMIP-historical-EC-EARTH-AOGCM.json new file mode 100644 index 0000000000000000000000000000000000000000..ea699ad047be087fa64a9692297e956265c34a12 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/fix-request-for-issues-671+684-CMIP-historical-EC-EARTH-AOGCM.json @@ -0,0 +1,49 @@ +{ + "ifs": { + "3hr": [ + "mrsos", + "tslsi", + "mrro" + ], + "6hrPlevPt": [ + "tsl" + ], + "Efx": [ + "clayfrac", + "siltfrac", + "sandfrac", + "slthick" + ], + "Emon": [ + "mrsol" + ], + "LImon": [ + "lwsnl", + "snw", + "snm" + ], + "Lmon": [ + "mrsos", + "mrso", + "mrfso", + "mrros", + "mrro", + "tsl" + ], + "day": [ + "mrso", + "mrsos", + "tslsi", + "snw", + "mrro" + ], + "fx": [ + "areacella", + "orog", + "sftlf" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/fix-request-for-issues-671+684-ScenarioMIP-ssps-EC-EARTH-AOGCM.json b/ece2cmor/ece2cmor3/resources/test-data-request/fix-request-for-issues-671+684-ScenarioMIP-ssps-EC-EARTH-AOGCM.json new file mode 100644 index 0000000000000000000000000000000000000000..a324ebb3a5d551dbc98463ef2f55d5567282d29c --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/fix-request-for-issues-671+684-ScenarioMIP-ssps-EC-EARTH-AOGCM.json @@ -0,0 +1,43 @@ +{ + "ifs": { + "3hr": [ + "mrsos", + "tslsi", + "mrro" + ], + "6hrPlevPt": [ + "tsl" + ], + "Emon": [ + "mrsol" + ], + "LImon": [ + "lwsnl", + "snw", + "snm" + ], + "Lmon": [ + "mrsos", + "mrso", + "mrfso", + "mrros", + "mrro", + "tsl" + ], + "day": [ + "mrso", + "mrsos", + "tslsi", + "snw", + "mrro" + ], + "fx": [ + "areacella", + "orog", + "sftlf" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-Efx.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-Efx.json new file mode 100644 index 0000000000000000000000000000000000000000..326a23b739757a1757c9917a61df3c9dea4a2f50 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-Efx.json @@ -0,0 +1,13 @@ +{ + "ifs": { + "Efx": [ + "clayfrac", + "siltfrac", + "sandfrac", + "slthick" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-Lmon-tsl.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-Lmon-tsl.json new file mode 100644 index 0000000000000000000000000000000000000000..67809c472816e8ae4b7491de26238d2007e3d12d --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-Lmon-tsl.json @@ -0,0 +1,10 @@ +{ + "ifs": { + "Lmon": [ + "tsl" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-all.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-all.json new file mode 100644 index 0000000000000000000000000000000000000000..ea69b30221d035a2e4a133510ebb8a483a43c9de --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-all.json @@ -0,0 +1,859 @@ +{ + "ifs": { + "3hr": [ + "pr", + "tas", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "uas", + "vas", + "huss", + "mrsos", + "tslsi", + "prc", + "prsn", + "mrro", + "rldscs", + "rsdscs", + "rsuscs", + "ps", + "clt" + ], + "6hrLev": [ + "ta", + "ua", + "va", + "hus", + "ps", + "pfull" + ], + "6hrPlev": [ + "rv850", + "wap4", + "hus4", + "ua100m", + "va100m", + "wsgmax10m", + "hurs" + ], + "6hrPlevPt": [ + "rv850", + "zg500", + "ua", + "va", + "ta", + "psl", + "ua7h", + "va7h", + "zg7h", + "uas", + "vas", + "ta7h", + "hus7h", + "vortmean", + "zg27", + "tsl" + ], + "AERday": [ + "zg1000", + "zg500" + ], + "AERhr": [ + "ps", + "tas" + ], + "AERmon": [ + "cltc", + "lwp", + "o3", + "pfull", + "ua", + "va", + "wa", + "zg", + "ps" + ], + "AERmonZ": [ + "o3", + "ta", + "ua", + "va", + "zg" + ], + "Amon": [ + "tas", + "ts", + "tasmin", + "tasmax", + "psl", + "ps", + "uas", + "vas", + "sfcWind", + "hurs", + "huss", + "pr", + "prsn", + "prc", + "evspsbl", + "sbl", + "tauu", + "tauv", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rsdscs", + "rsuscs", + "rldscs", + "rsdt", + "rsut", + "rlut", + "rlutcs", + "rsutcs", + "prw", + "clt", + "clwvi", + "clivi", + "rtmt", + "cl", + "clw", + "cli", + "ta", + "ua", + "va", + "hus", + "hur", + "wap", + "zg", + "pfull" + ], + "CF3hr": [ + "pfull", + "ta", + "psl", + "rsuscs", + "ts" + ], + "CFday": [ + "ps", + "rsdt", + "rsut", + "rsdscs", + "rsuscs", + "rldscs", + "rlutcs", + "rsutcs", + "clwvi", + "clivi", + "wap500", + "ta700", + "ua", + "va", + "ta", + "hus", + "wap", + "zg", + "hur", + "cl", + "clw", + "cli", + "pfull" + ], + "CFmon": [ + "ta", + "hur", + "hus" + ], + "E1hr": [ + "pr", + "prc" + ], + "E3hr": [ + "rsutcs", + "sfcWind", + "vas", + "uas" + ], + "E3hrPt": [ + "hus" + ], + "Eday": [ + "mrsol", + "ts", + "prw", + "ta850", + "tauu", + "tauv", + "hus", + "ta", + "ua", + "va", + "wap", + "zg", + "zmla", + "hus850", + "ta500" + ], + "EdayZ": [ + "zg", + "ua" + ], + "Efx": [ + "clayfrac", + "siltfrac", + "sandfrac", + "slthick" + ], + "Emon": [ + "mrsol", + "tdps", + "sfcWindmax", + "ps", + "ua", + "va", + "hus", + "rls", + "rss" + ], + "ImonAnt": [ + "tas", + "ts", + "tsn", + "prsn", + "sbl", + "snm", + "hfls", + "hfss", + "rsds", + "rsus", + "rlds", + "rlus", + "snc" + ], + "ImonGre": [ + "tas", + "ts", + "tsn", + "prsn", + "prra", + "sbl", + "snm", + "hfls", + "hfss", + "rsds", + "rsus", + "rlds", + "rlus", + "snc" + ], + "LImon": [ + "tasIs", + "tsIs", + "tsnIs", + "prsnIs", + "prraIs", + "sblIs", + "snmIs", + "mrroIs", + "orogIs", + "hflsIs", + "hfssIs", + "rsdsIs", + "rsusIs", + "rldsIs", + "rlusIs", + "snc", + "lwsnl", + "snd", + "snw", + "snm", + "sbl", + "hfdsn", + "tsn" + ], + "Lmon": [ + "mrsos", + "mrso", + "mrfso", + "mrros", + "mrro", + "tsl" + ], + "Omon": [ + "prsn" + ], + "SIday": [ + "siconca" + ], + "SImon": [ + "siconca" + ], + "day": [ + "huss", + "tasmin", + "tasmax", + "tas", + "pr", + "psl", + "sfcWind", + "mrso", + "mrsos", + "hurs", + "hursmin", + "hursmax", + "snc", + "clt", + "tslsi", + "snw", + "prc", + "prsn", + "mrro", + "uas", + "vas", + "sfcWindmax", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rlut", + "ta", + "hur", + "hus", + "wap", + "va", + "ua", + "zg" + ] + }, + "lpjg": { + "3hr": [ + "mrsos", + "mrro" + ], + "6hrPlevPt": [ + "tsl" + ], + "Amon": [ + "fco2antt", + "fco2nat" + ], + "Eday": [ + "lai", + "mrsol", + "mrsll", + "prCrop" + ], + "Emon": [ + "cSoil", + "mrsol", + "fCLandToOcean", + "fFireNat", + "fProductDecomp", + "fAnthDisturb", + "fDeforestToProduct", + "nLitter", + "nProduct", + "nLand", + "nMineral", + "fNloss", + "fNfert", + "fNdep", + "fBNF", + "fNup", + "fNnetmin", + "fNVegLitter", + "fNLandToOcean", + "fNLitterSoil", + "fNProduct", + "fNAnthDisturb", + "treeFracNdlDcd", + "treeFracBdlEvg", + "treeFracBdlDcd", + "grassFracC3", + "grassFracC4", + "pastureFracC3", + "pastureFracC4", + "fNleach", + "netAtmosLandCO2Flux", + "nep", + "fLuc", + "cWood", + "gppLut", + "raLut", + "nppLut", + "cTotFireLut", + "rhLut", + "necbLut", + "nwdFracLut", + "laiLut", + "mrsosLut", + "mrroLut", + "mrsoLut", + "irrLut", + "fProductDecompLut", + "fLulccProductLut", + "fLulccResidueLut", + "fLulccAtmLut", + "fracLut", + "evspsblpot", + "mrsll", + "vegFrac", + "treeFracNdlEvg", + "cropFracC3", + "cropFracC4", + "cLand", + "nVeg", + "nSoil", + "fNgas", + "prCrop" + ], + "Eyr": [ + "treeFrac", + "grassFrac", + "shrubFrac", + "cropFrac", + "vegFrac", + "baresoilFrac", + "cSoilLut", + "cVegLut", + "cLitterLut", + "cProductLut", + "cSoil", + "cVeg", + "cLitter", + "cProduct", + "fracOutLut", + "fracInLut", + "fracLut" + ], + "Lmon": [ + "mrsos", + "mrso", + "mrros", + "mrro", + "prveg", + "evspsblveg", + "evspsblsoi", + "tran", + "tsl", + "treeFrac", + "grassFrac", + "shrubFrac", + "cropFrac", + "pastureFrac", + "baresoilFrac", + "residualFrac", + "cVeg", + "cLitter", + "cProduct", + "lai", + "gpp", + "ra", + "npp", + "rh", + "fFire", + "fGrazing", + "fHarvest", + "nbp", + "fVegLitter", + "fLitterSoil", + "cLeaf", + "cRoot", + "cCwd", + "cLitterAbove", + "cLitterBelow", + "cSoilFast", + "cSoilMedium", + "cSoilSlow", + "landCoverFrac", + "rGrowth", + "rMaint" + ], + "day": [ + "mrso", + "mrsos", + "mrro" + ] + }, + "nemo": { + "3hr": [ + "tos" + ], + "Emon": [ + "thetaot300", + "thetaot700", + "thetaot2000", + "flandice", + "t20d", + "thetaot" + ], + "EmonZ": [ + "sltbasin" + ], + "Oclim": [ + "difvho", + "difvso", + "difvtrto", + "tnpeo", + "difvmo", + "difvmto", + "dispkevfo", + "zhalfo" + ], + "Oday": [ + "tossq", + "tos", + "omldamax" + ], + "Ofx": [ + "deptho", + "areacello", + "sftof", + "basin", + "hfgeou" + ], + "Omon": [ + "masso", + "pbo", + "dissicos", + "pso", + "dissicnatos", + "volo", + "zos", + "fgcfc12", + "zossq", + "zostoga", + "masscello", + "thkcello", + "thetao", + "thetaoga", + "bigthetao", + "bigthetaoga", + "tos", + "tob", + "tosga", + "tossq", + "so", + "soga", + "sos", + "sob", + "sosga", + "talkos", + "agessc", + "talknatos", + "msftbarot", + "phos", + "mlotst", + "mlotstsq", + "mlotstmax", + "o2os", + "mlotstmin", + "no3os", + "obvfsq", + "uo", + "po4os", + "vo", + "dfeos", + "wo", + "sios", + "wmo", + "chlos", + "umo", + "vmo", + "msftyz", + "hfbasin", + "hfbasinpmadv", + "hfx", + "hfy", + "htovgyre", + "htovovrt", + "sltovgyre", + "sltovovrt", + "evs", + "friver", + "ficeberg2d", + "fsitherm", + "wfo", + "wfonocorr", + "wfcorr", + "sfdsi", + "hfgeou", + "hfrainds", + "hfevapds", + "hfibthermds2d", + "rlntds", + "hflso", + "hfsso", + "rsntds", + "rsdo", + "hfcorr", + "hfds", + "tauuo", + "tauvo", + "zhalfo", + "intpp", + "intppnitrate", + "intppdiat", + "intppcalc", + "intppmisc", + "intpbfe", + "intpbsi", + "intpcalcite", + "epc100", + "epfe100", + "epsi100", + "epcalc100", + "intdic", + "intdoc", + "spco2", + "dpco2", + "fgco2", + "fgo2", + "froc", + "intpn2", + "fsn", + "frn", + "fsfe", + "o2min", + "zo2min", + "zooc", + "zmicro", + "talk", + "ph", + "o2", + "po4", + "chl" + ], + "Oyr": [ + "cfc12", + "dissic", + "dissoc", + "zooc", + "detoc", + "calc", + "phydiat", + "phymisc", + "zmicro", + "zmeso", + "talk", + "ph", + "o2", + "no3", + "nh4", + "po4", + "dfe", + "si", + "chl", + "co3", + "co3satcalc", + "pp", + "pnitrate", + "pbfe", + "pbsi", + "pcalc", + "expc", + "expn", + "expp", + "dcalc", + "graz", + "fgco2" + ], + "SIday": [ + "sitimefrac", + "siconc", + "sithick", + "sisnthick", + "sitemptop", + "siu", + "siv", + "sispeed" + ], + "SImon": [ + "sitimefrac", + "siconc", + "simass", + "sithick", + "sivol", + "sisnmass", + "sisnthick", + "sitemptop", + "siage", + "sisali", + "sihc", + "sidmassgrowthwat", + "sidmassgrowthbot", + "sidmasssi", + "sidmassevapsubl", + "sidmassmelttop", + "sidmassmeltbot", + "sndmasssnf", + "sndmassmelt", + "siflswdtop", + "siu", + "siv", + "sispeed", + "sidmasstranx", + "sidmasstrany", + "sicompstren", + "sidivvel" + ] + }, + "tm5": { + "3hr": [ + "ps" + ], + "6hrLev": [ + "ps", + "ec550aer" + ], + "6hrPlev": [ + "bldep" + ], + "AERday": [ + "maxpblz", + "minpblz", + "od550aer", + "sfo3max", + "toz" + ], + "AERhr": [ + "ps", + "sfno2", + "sfo3", + "sfpm25" + ], + "AERmon": [ + "abs550aer", + "airmass", + "bldep", + "c2h6", + "c3h6", + "c3h8", + "ch3coch3", + "ch4", + "cheaqpso4", + "chegpso4", + "chepsoa", + "co", + "dms", + "drybc", + "drydust", + "drynh3", + "drynh4", + "drynoy", + "dryo3", + "dryoa", + "dryso2", + "dryso4", + "dryss", + "emibc", + "emibvoc", + "emico", + "emidms", + "emidust", + "emiisop", + "emilnox", + "eminh3", + "eminox", + "emioa", + "emiso2", + "emiso4", + "emiss", + "emivoc", + "hcho", + "hno3", + "isop", + "jno2", + "lossch4", + "lossco", + "mmraerh2o", + "mmrbc", + "mmrdust", + "mmrnh4", + "mmrno3", + "mmroa", + "mmrpm1", + "mmrpm10", + "mmrpm2p5", + "mmrso4", + "mmrsoa", + "mmrss", + "no", + "no2", + "o3", + "o3loss", + "o3prod", + "o3ste", + "od440aer", + "od550aer", + "od550aerh2o", + "od550bc", + "od550dust", + "od550lt1aer", + "od550no3", + "od550oa", + "od550so4", + "od550soa", + "od550ss", + "od870aer", + "oh", + "pan", + "phalf", + "ptp", + "so2", + "tatp", + "toz", + "tropoz", + "wetbc", + "wetdust", + "wetnh3", + "wetnh4", + "wetnoy", + "wetoa", + "wetso2", + "wetso4", + "wetss", + "ztp", + "ps" + ], + "AERmonZ": [ + "ch4", + "hno3", + "ho2", + "noy", + "o3", + "oh" + ], + "Amon": [ + "ps", + "ch4", + "ch4global" + ], + "CFday": [ + "ps", + "phalf" + ], + "E3hrPt": [ + "ch4" + ], + "Emon": [ + "ps", + "flashrate", + "mmrno3", + "depdust", + "sedustCI", + "md", + "loaddust", + "concdust" + ] + } +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-fx-sftlf.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-fx-sftlf.json new file mode 100644 index 0000000000000000000000000000000000000000..932da483c190fec62054f95f17c4e3ae1f16824e --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-fx-sftlf.json @@ -0,0 +1,10 @@ +{ + "ifs": { + "fx": [ + "sftlf" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-AERmonZ-ta.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-AERmonZ-ta.json new file mode 100644 index 0000000000000000000000000000000000000000..e72c5245fb8339bb9138da126a250eb75584416f --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-AERmonZ-ta.json @@ -0,0 +1,10 @@ +{ + "ifs": { + "AERmonZ": [ + "ta" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-cdnc.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-cdnc.json new file mode 100644 index 0000000000000000000000000000000000000000..1c9ecaf12f927dd167205abb1e5d20f458794322 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-cdnc.json @@ -0,0 +1,10 @@ +{ + "ifs": { + "AERmon": [ + "cdnc" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-mrsol.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-mrsol.json new file mode 100644 index 0000000000000000000000000000000000000000..1b36a6a71c5dd4232eba134bb24d39d73b18faa7 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-mrsol.json @@ -0,0 +1,10 @@ +{ + "ifs": { + "Emon": [ + "mrsol" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-slthick.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-slthick.json new file mode 100644 index 0000000000000000000000000000000000000000..6b53a9307186c543591d7e922dfa4bf4b35b77b2 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-slthick.json @@ -0,0 +1,10 @@ +{ + "ifs": { + "Efx": [ + "slthick" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-tsl.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-tsl.json new file mode 100644 index 0000000000000000000000000000000000000000..208dcec3c3c5ccf6f3f3d02bf6e70060a92a739e --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-ifs-tsl.json @@ -0,0 +1,16 @@ +{ + "ifs": { + "6hrPlevPt": [ + "tsl" + ], + "Eday": [ + "tsl" + ], + "Lmon": [ + "tsl" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-lpjg.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-lpjg.json new file mode 100644 index 0000000000000000000000000000000000000000..a459cf0112d4cd099785f9d24df04bbfc0584dbc --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-lpjg.json @@ -0,0 +1,20 @@ +{ + "ifs": {}, + "lpjg": { + "Amon": [ + "fco2nat" + ], + "Emon": [ + "mrsosLut", + "fLulccAtmLut", + "mrsll", + "cLand" + ], + "Lmon": [ + "baresoilFrac", + "cLitter" + ] + }, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-minimal-test.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-minimal-test.json new file mode 100644 index 0000000000000000000000000000000000000000..637e83b621b172a2ee3f99718396c7f254775f1f --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-minimal-test.json @@ -0,0 +1,17 @@ +{ + "ifs": { + "Amon": [ + "tas" + ] + }, + "lpjg": {}, + "nemo": { + "Omon": [ + "tos" + ], + "Ofx": [ + "basin" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Ofx-basin.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Ofx-basin.json new file mode 100644 index 0000000000000000000000000000000000000000..5706b97efbc97a94e5b46794923581db25cd96ce --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Ofx-basin.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Ofx": [ + "basin" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Ofx-deptho.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Ofx-deptho.json new file mode 100644 index 0000000000000000000000000000000000000000..46e9b365c1ff0bb76c99d3cabbe871ec3245b45d --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Ofx-deptho.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Ofx": [ + "deptho" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-hfx.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-hfx.json new file mode 100644 index 0000000000000000000000000000000000000000..6bafa008d3b9ee63fbbe63d87f090c300800edcf --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-hfx.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Omon": [ + "hfx" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-masscello.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-masscello.json new file mode 100644 index 0000000000000000000000000000000000000000..605cd06ed1048b9d70c0f18b19ed2706a780fffb --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-masscello.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Omon": [ + "masscello" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-msftbarot.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-msftbarot.json new file mode 100644 index 0000000000000000000000000000000000000000..03b6d8a18faeac8b41fcc47f3094eb83716732c6 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-msftbarot.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Omon": [ + "msftbarot" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-tauuo.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-tauuo.json new file mode 100644 index 0000000000000000000000000000000000000000..54c9128fa0d0d74822a5fc8a832b48cdf6e79553 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-tauuo.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Omon": [ + "tauuo" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-thkcello.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-thkcello.json new file mode 100644 index 0000000000000000000000000000000000000000..67a9248824a984c9c25df387d9133b9256360a4b --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Omon-thkcello.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Omon": [ + "thkcello" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Oyr-cfc11.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Oyr-cfc11.json new file mode 100644 index 0000000000000000000000000000000000000000..a02e11f9ab34211a1082694657f4a21d9b938cd7 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Oyr-cfc11.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Oyr": [ + "cfc11" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Oyr-ocontempdiff.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Oyr-ocontempdiff.json new file mode 100644 index 0000000000000000000000000000000000000000..4fab6abf9276cf2a37e0e457381fd8b26074e5ff --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-Oyr-ocontempdiff.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Oyr": [ + "ocontempdiff" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-SImon-siitdconc.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-SImon-siitdconc.json new file mode 100644 index 0000000000000000000000000000000000000000..ff9ca964ff4062e6b8ef252c54057e6b030d07d8 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-SImon-siitdconc.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "SImon": [ + "siitdconc" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-all-ec-earth-aogcm-without-cfc11-group.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-all-ec-earth-aogcm-without-cfc11-group.json new file mode 100644 index 0000000000000000000000000000000000000000..3f63b82fb4c2f4e02caafccd08ff5b9a26429ba0 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-all-ec-earth-aogcm-without-cfc11-group.json @@ -0,0 +1,221 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "3hr": [ + "tos" + ], + "Eday": [ + "mlotst", + "t20d" + ], + "Emon": [ + "flandice", + "ocontempdiff", + "ocontemppadvect", + "ocontemppmdiff", + "ocontemprmadvect", + "ocontemptend", + "osaltdiff", + "osaltpadvect", + "osaltpmdiff", + "osaltrmadvect", + "osalttend", + "somint", + "t20d", + "thetaot", + "thetaot2000", + "thetaot300", + "thetaot700" + ], + "EmonZ": [ + "sltbasin" + ], + "Oclim": [ + "diftrblo2d", + "diftrelo2d", + "diftrxylo2d", + "difvho", + "difvmo", + "difvmto", + "difvso", + "difvtrto", + "dispkevfo", + "dispkexyfo2d", + "tnkebto2d", + "tnpeo", + "zhalfo" + ], + "Oday": [ + "omldamax", + "sos", + "sossq", + "tos", + "tossq" + ], + "Ofx": [ + "areacello", + "basin", + "deptho", + "hfgeou", + "sftof" + ], + "Omon": [ + "bigthetao", + "bigthetaoga", + "cfc11", + "evs", + "fgcfc11", + "fgcfc12", + "fgsf6", + "ficeberg2d", + "friver", + "fsitherm", + "hfbasin", + "hfbasinpmadv", + "hfds", + "hfevapds", + "hfgeou", + "hfibthermds2d", + "hfrainds", + "hfrunoffds2d", + "hfsnthermds2d", + "hfx", + "hfy", + "htovgyre", + "htovovrt", + "masscello", + "masso", + "mlotst", + "mlotstmax", + "mlotstmin", + "mlotstsq", + "msftbarot", + "msftyz", + "obvfsq", + "pbo", + "pso", + "rsdo", + "rsntds", + "sfdsi", + "sltovgyre", + "sltovovrt", + "so", + "sob", + "soga", + "sos", + "sosga", + "sossq", + "tauuo", + "tauvo", + "thetao", + "thetaoga", + "thkcello", + "tob", + "tos", + "tosga", + "tossq", + "umo", + "uo", + "vmo", + "vo", + "volo", + "wfo", + "wfonocorr", + "wmo", + "wo", + "zhalfo", + "zos", + "zossq", + "zostoga" + ], + "Oyr": [ + "difvho", + "difvso", + "somint", + "tnpeo" + ], + "SIday": [ + "siconc", + "sisnthick", + "sispeed", + "sitemptop", + "sithick", + "sitimefrac", + "siu", + "siv" + ], + "SImon": [ + "sfdsi", + "siage", + "siareaacrossline", + "siarean", + "siareas", + "sicompstren", + "siconc", + "sidconcdyn", + "sidconcth", + "sidivvel", + "sidmassdyn", + "sidmassevapsubl", + "sidmassgrowthbot", + "sidmassgrowthwat", + "sidmassmeltbot", + "sidmassmelttop", + "sidmasssi", + "sidmassth", + "sidmasstranx", + "sidmasstrany", + "siextentn", + "siextents", + "sifb", + "siflcondbot", + "siflcondtop", + "siflfwbot", + "siflfwdrain", + "siflsensupbot", + "siflswdtop", + "siforcecoriolx", + "siforcecorioly", + "siforceintstrx", + "siforceintstry", + "siforcetiltx", + "siforcetilty", + "sihc", + "siitdconc", + "siitdsnthick", + "siitdthick", + "simass", + "sisali", + "sisaltmass", + "sishevel", + "sisnhc", + "sisnmass", + "sisnthick", + "sispeed", + "sistremax", + "sistresave", + "sistrxdtop", + "sistrxubot", + "sistrydtop", + "sistryubot", + "sitempbot", + "sitempsnic", + "sitemptop", + "sithick", + "sitimefrac", + "siu", + "siv", + "sivol", + "sivoln", + "sivols", + "sndmassdyn", + "sndmassmelt", + "sndmasssi", + "sndmasssnf", + "sndmasssubl", + "snmassacrossline" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-all-ec-earth-aogcm.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-all-ec-earth-aogcm.json new file mode 100644 index 0000000000000000000000000000000000000000..99fb2b746a44c89e2f3e76eab8625618d167f23e --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-all-ec-earth-aogcm.json @@ -0,0 +1,220 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "3hr": [ + "tos" + ], + "Eday": [ + "mlotst", + "t20d" + ], + "Emon": [ + "flandice", + "ocontempdiff", + "ocontemppadvect", + "ocontemppmdiff", + "ocontemprmadvect", + "ocontemptend", + "osaltdiff", + "osaltpadvect", + "osaltpmdiff", + "osaltrmadvect", + "osalttend", + "somint", + "t20d", + "thetaot", + "thetaot2000", + "thetaot300", + "thetaot700" + ], + "EmonZ": [ + "sltbasin" + ], + "Oclim": [ + "diftrblo2d", + "diftrelo2d", + "diftrxylo2d", + "difvho", + "difvmo", + "difvmto", + "difvso", + "difvtrto", + "dispkevfo", + "dispkexyfo2d", + "tnkebto2d", + "tnpeo", + "zhalfo" + ], + "Oday": [ + "omldamax", + "sos", + "sossq", + "tos", + "tossq" + ], + "Ofx": [ + "areacello", + "basin", + "deptho", + "hfgeou", + "sftof" + ], + "Omon": [ + "bigthetao", + "bigthetaoga", + "dissicnat", + "evs", + "fgcfc11", + "friver", + "fsitherm", + "hfbasin", + "hfbasinpmadv", + "hfds", + "hfevapds", + "hfgeou", + "hfrainds", + "hfrunoffds2d", + "hfsnthermds2d", + "hfx", + "hfy", + "htovgyre", + "htovovrt", + "masscello", + "masso", + "mlotst", + "mlotstmax", + "mlotstmin", + "mlotstsq", + "msftbarot", + "msftyz", + "obvfsq", + "pbo", + "pso", + "rsdo", + "rsntds", + "sfdsi", + "sltovgyre", + "sltovovrt", + "so", + "sob", + "soga", + "sos", + "sosga", + "sossq", + "talknat", + "tauuo", + "tauvo", + "thetao", + "thetaoga", + "thkcello", + "tob", + "tos", + "tosga", + "tossq", + "umo", + "uo", + "vmo", + "vo", + "volo", + "wfo", + "wfonocorr", + "wmo", + "wo", + "zhalfo", + "zos", + "zossq", + "zostoga" + ], + "Oyr": [ + "difvho", + "difvso", + "dissicnat", + "somint", + "talknat", + "tnpeo" + ], + "SIday": [ + "siconc", + "sisnthick", + "sispeed", + "sitemptop", + "sithick", + "sitimefrac", + "siu", + "siv" + ], + "SImon": [ + "sfdsi", + "siage", + "siareaacrossline", + "siarean", + "siareas", + "sicompstren", + "siconc", + "sidconcdyn", + "sidconcth", + "sidivvel", + "sidmassdyn", + "sidmassevapsubl", + "sidmassgrowthbot", + "sidmassgrowthwat", + "sidmassmeltbot", + "sidmassmelttop", + "sidmasssi", + "sidmassth", + "sidmasstranx", + "sidmasstrany", + "siextentn", + "siextents", + "sifb", + "siflcondbot", + "siflcondtop", + "siflfwbot", + "siflfwdrain", + "siflsensupbot", + "siflswdtop", + "siforcecoriolx", + "siforcecorioly", + "siforceintstrx", + "siforceintstry", + "siforcetiltx", + "siforcetilty", + "sihc", + "siitdconc", + "siitdsnthick", + "siitdthick", + "simass", + "sisali", + "sisaltmass", + "sishevel", + "sisnhc", + "sisnmass", + "sisnthick", + "sispeed", + "sistremax", + "sistresave", + "sistrxdtop", + "sistrxubot", + "sistrydtop", + "sistryubot", + "sitempbot", + "sitempsnic", + "sitemptop", + "sithick", + "sitimefrac", + "siu", + "siv", + "sivol", + "sivoln", + "sivols", + "sndmassdyn", + "sndmassmelt", + "sndmasssi", + "sndmasssnf", + "sndmasssubl", + "snmassacrossline" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-all-ec-earth-cc.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-all-ec-earth-cc.json new file mode 100644 index 0000000000000000000000000000000000000000..871f774906a10c652387daa19887342bbe9288d7 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-all-ec-earth-cc.json @@ -0,0 +1,413 @@ +{ + "ifs": {}, + "lpjg": { + "Emon": [ + "cOther", + "fBNF", + "nStem", + "nLitterCwd", + "fNfert", + "nLitterSurf", + "nRoot", + "fLuc", + "nLitterSubSurf", + "nLeaf", + "cLitterSubSurf", + "nep", + "fNdep", + "cSoil", + "fNnetmin", + "fCLandToOcean", + "cLitterSurf", + "cStem", + "fFireNat", + "nMineral", + "nLand", + "nVeg", + "nSoil", + "cLitterCwd", + "nProduct", + "nLitter", + "fNloss", + "fNup", + "nOther", + "fNLandToOcean", + "fProductDecomp", + "cLand" + ], + "Eyr": [ + "cProduct", + "cVeg", + "cLitter", + "cSoil" + ], + "Lmon": [ + "burntFractionAll", + "nbp", + "cProduct", + "cLeaf", + "rh", + "cVeg", + "cRoot", + "ra", + "npp", + "gpp", + "cLitter" + ] + }, + "nemo": { + "3hr": [ + "tos" + ], + "Eday": [ + "mlotst", + "t20d" + ], + "Emon": [ + "expn", + "expp", + "flandice", + "ocontempdiff", + "ocontemppadvect", + "ocontemppmdiff", + "ocontemprmadvect", + "ocontemptend", + "osaltdiff", + "osaltpadvect", + "osaltpmdiff", + "osaltrmadvect", + "osalttend", + "somint", + "t20d", + "thetaot", + "thetaot2000", + "thetaot300", + "thetaot700" + ], + "EmonZ": [ + "sltbasin" + ], + "Oclim": [ + "diftrblo2d", + "diftrelo2d", + "diftrxylo2d", + "difvho", + "difvmo", + "difvmto", + "difvso", + "difvtrto", + "dispkevfo", + "dispkexyfo2d", + "tnkebto2d", + "tnpeo", + "zhalfo" + ], + "Oday": [ + "chlos", + "omldamax", + "phycos", + "sos", + "sossq", + "tos", + "tossq" + ], + "Ofx": [ + "areacello", + "basin", + "deptho", + "hfgeou", + "sftof" + ], + "Omon": [ + "bfe", + "bfeos", + "bigthetao", + "bigthetaoga", + "bsi", + "bsios", + "calc", + "calcos", + "cfc12", + "chl", + "chldiat", + "chldiatos", + "chlmisc", + "chlmiscos", + "chlos", + "co3", + "co3os", + "co3satcalc", + "co3satcalcos", + "detoc", + "detocos", + "dfe", + "dfeos", + "dissic", + "dissicnat", + "dissicnatos", + "dissicos", + "dissoc", + "dissocos", + "dpco2", + "dpo2", + "epc100", + "epcalc100", + "epfe100", + "epsi100", + "evs", + "expc", + "fgcfc11", + "fgco2", + "fgo2", + "fric", + "friver", + "frn", + "froc", + "fsfe", + "fsitherm", + "fsn", + "graz", + "hfbasin", + "hfbasinpmadv", + "hfds", + "hfevapds", + "hfgeou", + "hfrainds", + "hfrunoffds2d", + "hfsnthermds2d", + "hfx", + "hfy", + "htovgyre", + "htovovrt", + "intdic", + "intpbfe", + "intpbsi", + "intpcalcite", + "intpn2", + "intpp", + "intppcalc", + "intppdiat", + "intppmisc", + "intppnitrate", + "limfediat", + "limfemisc", + "limirrdiat", + "limirrmisc", + "limndiaz", + "limnmisc", + "masscello", + "masso", + "mlotst", + "mlotstmax", + "mlotstmin", + "mlotstsq", + "msftbarot", + "msftyz", + "nh4", + "nh4os", + "no3", + "no3os", + "o2", + "o2min", + "o2os", + "obvfsq", + "pbo", + "ph", + "phos", + "phyc", + "phycos", + "phydiat", + "phydiatos", + "phyfe", + "phyfeos", + "phymisc", + "phymiscos", + "physi", + "physios", + "po4", + "po4os", + "pp", + "ppos", + "pso", + "rsdo", + "rsntds", + "sf6", + "sfdsi", + "si", + "sios", + "sltovgyre", + "sltovovrt", + "so", + "sob", + "soga", + "sos", + "sosga", + "sossq", + "spco2", + "talk", + "talknat", + "talknatos", + "talkos", + "tauuo", + "tauvo", + "thetao", + "thetaoga", + "thkcello", + "tob", + "tos", + "tosga", + "tossq", + "umo", + "uo", + "vmo", + "vo", + "volo", + "wfo", + "wfonocorr", + "wmo", + "wo", + "zhalfo", + "zmeso", + "zmesoos", + "zmicro", + "zmicroos", + "zo2min", + "zooc", + "zoocos", + "zos", + "zossq", + "zostoga" + ], + "Oyr": [ + "bfe", + "bsi", + "calc", + "cfc12", + "chl", + "chldiat", + "chlmisc", + "co3", + "co3satcalc", + "dcalc", + "detoc", + "dfe", + "difvho", + "difvso", + "dissic", + "dissicnat", + "dissoc", + "expc", + "expn", + "expp", + "fgco2", + "graz", + "nh4", + "no3", + "o2", + "pbfe", + "pbsi", + "pcalc", + "ph", + "phyc", + "phydiat", + "phyfe", + "phymisc", + "physi", + "pnitrate", + "po4", + "pp", + "remoc", + "sf6", + "si", + "somint", + "talk", + "talknat", + "tnpeo", + "zmeso", + "zmicro", + "zooc" + ], + "SIday": [ + "siconc", + "sisnthick", + "sispeed", + "sitemptop", + "sithick", + "sitimefrac", + "siu", + "siv" + ], + "SImon": [ + "sfdsi", + "siage", + "siareaacrossline", + "siarean", + "siareas", + "sicompstren", + "siconc", + "sidconcdyn", + "sidconcth", + "sidivvel", + "sidmassdyn", + "sidmassevapsubl", + "sidmassgrowthbot", + "sidmassgrowthwat", + "sidmassmeltbot", + "sidmassmelttop", + "sidmasssi", + "sidmassth", + "sidmasstranx", + "sidmasstrany", + "siextentn", + "siextents", + "sifb", + "siflcondbot", + "siflcondtop", + "siflfwbot", + "siflfwdrain", + "siflsensupbot", + "siflswdtop", + "siforcecoriolx", + "siforcecorioly", + "siforceintstrx", + "siforceintstry", + "siforcetiltx", + "siforcetilty", + "sihc", + "siitdconc", + "siitdsnthick", + "siitdthick", + "simass", + "sisali", + "sisaltmass", + "sishevel", + "sisnhc", + "sisnmass", + "sisnthick", + "sispeed", + "sistremax", + "sistresave", + "sistrxdtop", + "sistrxubot", + "sistrydtop", + "sistryubot", + "sitempbot", + "sitempsnic", + "sitemptop", + "sithick", + "sitimefrac", + "siu", + "siv", + "sivol", + "sivoln", + "sivols", + "sndmassdyn", + "sndmassmelt", + "sndmasssi", + "sndmasssnf", + "sndmasssubl", + "snmassacrossline" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-hfgeou.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-hfgeou.json new file mode 100644 index 0000000000000000000000000000000000000000..3bcfb194c8eaa3b1feeead475c9a114e443d8e8e --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-hfgeou.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Omon": [ + "hfgeou" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-test.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-test.json new file mode 100644 index 0000000000000000000000000000000000000000..29a2c06be74506c72ed92c8941312d32897b9c32 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-test.json @@ -0,0 +1,10 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Omon": [ + "tos" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-zhalfo.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-zhalfo.json new file mode 100644 index 0000000000000000000000000000000000000000..f0c780bfa94c25b74c619e8e391aeb8954f85f75 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-nemo-zhalfo.json @@ -0,0 +1,13 @@ +{ + "ifs": {}, + "lpjg": {}, + "nemo": { + "Oclim": [ + "zhalfo" + ], + "Omon": [ + "zhalfo" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist-non-cmor-variables.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-non-cmor-variables.json new file mode 100644 index 0000000000000000000000000000000000000000..dc6413a37f70128a9f8630b12cb9c529873eb3eb --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist-non-cmor-variables.json @@ -0,0 +1,13 @@ +{ + "ifs": { + "AERmon": [ + "rsscsaf", + "rssaf", + "rlscsaf", + "rlsaf" + ] + }, + "lpjg": {}, + "nemo": {}, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/test-data-request/varlist.json b/ece2cmor/ece2cmor3/resources/test-data-request/varlist.json new file mode 100644 index 0000000000000000000000000000000000000000..6bde3bbc9483aecc28ea056a2882cf14b27559c8 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/test-data-request/varlist.json @@ -0,0 +1,426 @@ +{ + "ifs": { + "3hr": [ + "pr", + "tas", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "uas", + "vas", + "huss", + "mrsos", + "tslsi", + "prc", + "prsn", + "mrro", + "rldscs", + "rsdscs", + "rsuscs", + "ps", + "clt" + ], + "6hrPlev": [ + "psl", + "wap4" + ], + "6hrPlevPt": [ + "hus27", + "huss", + "mrsos", + "psl", + "sfcWind", + "snw", + "ta27", + "tas", + "ts", + "tsl", + "uas", + "vas", + "vortmean", + "zg27", + "va7h", + "ua7h" + ], + "Amon": [ + "tas", + "ts", + "tasmin", + "tasmax", + "psl", + "ps", + "uas", + "vas", + "sfcWind", + "hurs", + "huss", + "pr", + "prsn", + "prc", + "evspsbl", + "sbl", + "tauu", + "tauv", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rsdscs", + "rsuscs", + "rldscs", + "rsdt", + "rsut", + "rlut", + "rlutcs", + "rsutcs", + "prw", + "clt", + "clwvi", + "clivi", + "cl", + "clw", + "cli", + "ta", + "ua", + "va", + "hus", + "hur", + "wap", + "zg" + ], + "CFday": [ + "ps", + "rsdt", + "rsut", + "rsdscs", + "rsuscs", + "rldscs", + "rlutcs", + "rsutcs", + "clwvi", + "clivi", + "wap500", + "ta700", + "ua", + "va", + "ta", + "hus", + "wap", + "zg", + "hur", + "cl", + "clw", + "cli", + "pfull" + ], + "CFmon": [ + "ta", + "hur", + "hus" + ], + "E3hr": [ + "rlut", + "rsut", + "rlutcs", + "rsdt", + "prw", + "clwvi", + "clivi", + "rsutcs" + ], + "Eday": [ + "mrsol", + "tauu", + "tauv", + "mrros", + "mrrob", + "snd", + "lwsnl", + "snm", + "tsl" + ], + "Emon": [ + "ta27", + "ua27", + "va27", + "zg27", + "hus27", + "wap", + "u2", + "v2", + "wap2", + "t2", + "uv", + "uwap", + "vwap", + "ut", + "vt", + "twap", + "mrsol" + ], + "LImon": [ + "snc", + "snw", + "snd", + "lwsnl", + "tsn", + "snm", + "sbl", + "hfdsn" + ], + "Lmon": [ + "mrro", + "mrros", + "mrso", + "mrsos", + "tsl" + ], + "day": [ + "huss", + "tasmin", + "tasmax", + "tas", + "pr", + "psl", + "sfcWind", + "mrsos", + "hurs", + "hursmin", + "hursmax", + "snc", + "clt", + "tslsi", + "prc", + "prsn", + "uas", + "vas", + "sfcWindmax", + "hfls", + "hfss", + "rlds", + "rlus", + "rsds", + "rsus", + "rlut", + "ta", + "hur", + "hus", + "wap", + "va", + "ua", + "zg", + "snw", + "mrro" + ] + }, + "lpjg": { + "Eday": [ + "evspsblpot", + "lai", + "tran" + ], + "Emon": [ + "cLand", + "cLitterCwd", + "cLitterSubSurf", + "cLitterSurf", + "cOther", + "cropFracC3", + "cropFracC4", + "cSoil", + "cStem", + "cTotFireLut", + "cWood", + "evspsblpot", + "fAnthDisturb", + "fBNF", + "fCLandToOcean", + "fDeforestToAtmos", + "fDeforestToProduct", + "fFireAll", + "fFireNat", + "fHarvestToAtmos", + "fHarvestToProduct", + "fLitterFire", + "fLuc", + "fLulccAtmLut", + "fLulccProductLut", + "fLulccResidueLut", + "fNAnthDisturb", + "fNdep", + "fNfert", + "fNgas", + "fNgasFire", + "fNgasNonFire", + "fNLandToOcean", + "fNleach", + "fNLitterSoil", + "fNloss", + "fNnetmin", + "fNProduct", + "fNup", + "fNVegLitter", + "fProductDecomp", + "fProductDecompLut", + "fracLut", + "fVegFire", + "gppGrass", + "gppLut", + "gppTree", + "grassFracC3", + "grassFracC4", + "irrLut", + "laiLut", + "mrroLut", + "mrsll", + "mrsoLut", + "mrsosLut", + "necbLut", + "nep", + "netAtmosLandCO2Flux", + "nLand", + "nLeaf", + "nLitter", + "nLitterCwd", + "nLitterSubSurf", + "nLitterSurf", + "nMineral", + "nMineralNH4", + "nMineralNO3", + "nOther", + "nppGrass", + "nppLut", + "nppTree", + "nProduct", + "nRoot", + "nSoil", + "nStem", + "nwdFracLut", + "nVeg", + "pastureFracC3", + "pastureFracC4", + "prCrop", + "raGrass", + "raLeaf", + "raLut", + "raOther", + "raRoot", + "raStem", + "raTree", + "rhLitter", + "rhLut", + "rhSoil", + "treeFracBdlDcd", + "treeFracBdlEvg", + "treeFracNdlDcd", + "treeFracNdlEvg", + "vegFrac", + "vegHeightTree" + ], + "Eyr": [ + "cLitterLut", + "cProductLut", + "cSoilLut", + "cVegLut", + "fracInLut", + "fracLut", + "fracOutLut" + ], + "Lmon": [ + "baresoilFrac", + "cCwd", + "cLeaf", + "cLitter", + "cLitterAbove", + "cLitterBelow", + "cProduct", + "cRoot", + "cropFrac", + "cSoilFast", + "cSoilMedium", + "cSoilSlow", + "cVeg", + "evspsblsoi", + "evspsblveg", + "fFire", + "fGrazing", + "fHarvest", + "fLitterSoil", + "fVegLitter", + "gpp", + "grassFrac", + "lai", + "landCoverFrac", + "nbp", + "npp", + "pastureFrac", + "prveg", + "ra", + "residualFrac", + "rGrowth", + "rh", + "rMaint", + "shrubFrac", + "tran", + "treeFrac" + ] + }, + "nemo": { + "3hr": [ + "tos" + ], + "Oday": [ + "tossq", + "tos", + "sos" + ], + "Omon": [ + "tauuo", + "tauvo", + "masso", + "pbo", + "volo", + "zos", + "zossq", + "masscello", + "thkcello", + "thetao", + "thetaoga", + "tos", + "tossq", + "so", + "soga", + "sos", + "mlotst", + "uo", + "vo", + "wmo", + "umo", + "vmo", + "hfbasin", + "hfx", + "hfy", + "friver", + "ficeberg2d", + "wfo", + "rsntds", + "rsdo", + "hfds", + "zhalfo", + "tosga", + "bigthetaoga" + ], + "SIday": [ + "sithick", + "siu", + "siv", + "siconc" + ] + }, + "tm5": {} +} diff --git a/ece2cmor/ece2cmor3/resources/tm5par.json b/ece2cmor/ece2cmor3/resources/tm5par.json new file mode 100644 index 0000000000000000000000000000000000000000..e80a7df247de2b5e52f7232e1a70e1b46ff7c941 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/tm5par.json @@ -0,0 +1,458 @@ +[ + { + "source": "abs550aer", + "target": "abs550aer" + }, + { + "source": "airmass", + "target": "airmass" + }, + { + "source": "bldep", + "target": "bldep" + }, + { + "source": "c2h6", + "target": "c2h6" + }, + { + "source": "c3h6", + "target": "c3h6" + }, + { + "source": "c3h8", + "target": "c3h8" + }, + { + "source": "ch3coch3", + "target": "ch3coch3" + }, + { + "source": "ch4", + "target": "ch4" + }, + { + "source": "ch4", + "target": "ch4Clim" + }, + { + "source": "ch4", + "target": "ch4global" + }, + { + "source": "ch4", + "target": "ch4globalClim" + }, + { + "source": "cheaqpso4", + "target": "cheaqpso4" + }, + { + "source": "chegpso4", + "target": "chegpso4" + }, + { + "source": "chepsoa", + "target": "chepsoa" + }, + { + "source": "co", + "target": "co" + }, + { + "source": "co2", + "target": "co2s" + }, + { + "source": "co2", + "target": "co2" + }, + { + "source": "co2mass", + "target": "co2mass" + }, + { + "source": "concdust", + "target": "concdust" + }, + { + "source": "depdust", + "target": "depdust" + }, + { + "source": "dms", + "target": "dms" + }, + { + "source": "drybc", + "target": "drybc" + }, + { + "source": "drydust", + "target": "drydust" + }, + { + "source": "drynh3", + "target": "drynh3" + }, + { + "source": "drynh4", + "target": "drynh4" + }, + { + "source": "drynoy", + "target": "drynoy" + }, + { + "source": "dryo3", + "target": "dryo3" + }, + { + "source": "dryoa", + "target": "dryoa" + }, + { + "source": "dryso2", + "target": "dryso2" + }, + { + "source": "dryso4", + "target": "dryso4" + }, + { + "source": "dryss", + "target": "dryss" + }, + { + "source": "ec550aer", + "target": "ec550aer" + }, + { + "source": "emibc", + "target": "emibc" + }, + { + "source": "emibvoc", + "target": "emibvoc" + }, + { + "source": "emico", + "target": "emico" + }, + { + "source": "emidms", + "target": "emidms" + }, + { + "source": "emidust", + "target": "emidust" + }, + { + "source": "emiisop", + "target": "emiisop" + }, + { + "source": "emilnox", + "target": "emilnox" + }, + { + "source": "eminh3", + "target": "eminh3" + }, + { + "source": "eminox", + "target": "eminox" + }, + { + "source": "emioa", + "target": "emioa" + }, + { + "source": "emiso2", + "target": "emiso2" + }, + { + "source": "emiso4", + "target": "emiso4" + }, + { + "source": "emiss", + "target": "emiss" + }, + { + "source": "emivoc", + "target": "emivoc" + }, + { + "source": "flashrate", + "target": "flashrate" + }, + { + "source": "hcho", + "target": "hcho" + }, + { + "source": "hno3", + "target": "hno3" + }, + { + "source": "ho2", + "target": "ho2" + }, + { + "source": "isop", + "target": "isop" + }, + { + "source": "jno2", + "target": "jno2" + }, + { + "source": "loaddust", + "target": "loaddust" + }, + { + "source": "lossch4", + "target": "lossch4" + }, + { + "source": "lossco", + "target": "lossco" + }, + { + "source": "maxpblz", + "target": "maxpblz" + }, + { + "source": "md", + "target": "md" + }, + { + "source": "minpblz", + "target": "minpblz" + }, + { + "source": "mmraerh2o", + "target": "mmraerh2o" + }, + { + "source": "mmrbc", + "target": "mmrbc" + }, + { + "source": "mmrdust", + "target": "mmrdust" + }, + { + "source": "mmrnh4", + "target": "mmrnh4" + }, + { + "source": "mmrno3", + "target": "mmrno3" + }, + { + "source": "mmroa", + "target": "mmroa" + }, + { + "source": "mmrpm1", + "target": "mmrpm1" + }, + { + "source": "mmrpm10", + "target": "mmrpm10" + }, + { + "source": "mmrpm2p5", + "target": "mmrpm2p5" + }, + { + "source": "mmrso4", + "target": "mmrso4" + }, + { + "source": "mmrsoa", + "target": "mmrsoa" + }, + { + "source": "mmrss", + "target": "mmrss" + }, + { + "source": "no", + "target": "no" + }, + { + "source": "no2", + "target": "no2" + }, + { + "source": "noy", + "target": "noy" + }, + { + "source": "o3", + "target": "o3" + }, + { + "source": "o3Clim", + "target": "o3Clim" + }, + { + "source": "o3loss", + "target": "o3loss" + }, + { + "source": "o3prod", + "target": "o3prod" + }, + { + "source": "o3ste", + "target": "o3ste" + }, + { + "source": "od440aer", + "target": "od440aer" + }, + { + "source": "od550aer", + "target": "od550aer" + }, + { + "source": "od550aerh2o", + "target": "od550aerh2o" + }, + { + "source": "od550bc", + "target": "od550bc" + }, + { + "source": "od550dust", + "target": "od550dust" + }, + { + "source": "od550lt1aer", + "target": "od550lt1aer" + }, + { + "source": "od550no3", + "target": "od550no3" + }, + { + "source": "od550oa", + "target": "od550oa" + }, + { + "source": "od550so4", + "target": "od550so4" + }, + { + "source": "od550soa", + "target": "od550soa" + }, + { + "source": "od550ss", + "target": "od550ss" + }, + { + "source": "od870aer", + "target": "od870aer" + }, + { + "source": "oh", + "target": "oh" + }, + { + "source": "pan", + "target": "pan" + }, + { + "source": "phalf", + "target": "phalf" + }, + { + "source": "ps", + "target": "ps" + }, + { + "source": "ptp", + "target": "ptp" + }, + { + "source": "sedustCI", + "target": "sedustCI" + }, + { + "source": "sfno2", + "target": "sfno2" + }, + { + "source": "sfo3", + "target": "sfo3" + }, + { + "source": "sfo3max", + "target": "sfo3max" + }, + { + "source": "sfpm25", + "target": "sfpm25" + }, + { + "source": "so2", + "target": "so2" + }, + { + "source": "tatp", + "target": "tatp" + }, + { + "source": "toz", + "target": "toz" + }, + { + "source": "tropoz", + "target": "tropoz" + }, + { + "source": "wetbc", + "target": "wetbc" + }, + { + "source": "wetdust", + "target": "wetdust" + }, + { + "source": "wetnh3", + "target": "wetnh3" + }, + { + "source": "wetnh4", + "target": "wetnh4" + }, + { + "source": "wetnoy", + "target": "wetnoy" + }, + { + "source": "wetoa", + "target": "wetoa" + }, + { + "source": "wetso2", + "target": "wetso2" + }, + { + "source": "wetso4", + "target": "wetso4" + }, + { + "source": "wetss", + "target": "wetss" + }, + { + "source": "ztp", + "target": "ztp" + } +] diff --git a/ece2cmor/ece2cmor3/resources/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml b/ece2cmor/ece2cmor3/resources/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml new file mode 100644 index 0000000000000000000000000000000000000000..9eee374d144df1b0b6580a59e71444a975651d86 --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml @@ -0,0 +1,600 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + this * $convSpsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @CFC11_E3T / @e3t + @CFC12_E3T / @e3t + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + @SF6_E3T / @e3t + + + + + + + + + + this * $convSpsu + + + + + 100 - this + + + + + + + @avt_e3w / @e3w + @avs_e3w / @e3w + + + + + + + + + + + + + + + this * $convSpsu + this * $convSpsu * $convSpsu + + + + + + + + + + + @Age_E3T / @e3t + @toce_e3t / @e3t + @CFC11_E3T / @e3t + @CFC12_E3T / @e3t + + @bn2_e3t / @e3t + @qsr3d_e3t_SBC / @e3t_SBC + @SF6_E3T / @e3t + @soce_e3t / @e3t * $convSpsu + @toce_pot_e3t / @e3t + + + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + + + + + + + + + + + + + + this + vdiff_heattr + + + + + + + + this * $rau0 + @voce_e3v / @e3v + + + + + + + + + + + + + + + qt - qrp + + + + + + + + + + + + this * this + this * 1e4 + + + + this * $convSpsu + @sbs_e3tb / @e3tb * $convSpsu + this * $convSpsu + this * $convSpsu * $convSpsu + @toce_potb_e3tb / @e3tb + + + + + empmr - erp + + + + this * $convSpsu + + + + + + + + + + + + this + udiff_heattr + this * $rau0 + + + + + + + + + + + + + + + + + + + + + + this * $rau0 + @woce_e3w / @e3w + @avt_e3w / @e3w + @avm_e3w / @e3w + @av_wave_e3w / @e3w + @avs_e3w / @e3w + @av_wave_e3w / @e3w + + + + + + + + + + + + + + + + this * $rau0 + @uoce_e3u / @e3u + + + + + + + + + + + + + + + + this * $convSpsu + this * $convSpsu + + + + + + + + + + + this * 1e6 * $convSpsu + this * 1e15 + this * 1e15 + sopht_vt_3bsn * 1e15 - this * 1e15 + this * 1e15 + sopst_vs_3bsn*1e6*$convSpsu - this*1e6*$convSpsu + this * 1e6 * $convSpsu + + + + + + + + + + + + + + this * 1e6 * $rau0 + + + + + + + @BFe_E3T / @e3t * 1e-3 + @SFe_E3T / @e3t * 1e-3 + @GSi_E3T / @e3t * 1e-3 + @CaCO3_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + + + + @POC_E3T / @e3t * 1e-3 + @GOC_E3T / @e3t * 1e-3 + @Fer_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DOC_E3T / @e3t * 1e-3 + + + + + + + this + GRAZ2 + @NH4_E3T / @e3t * 1e-3 + @NO3_E3T / @e3t * 1e-3 + @O2_E3T / @e3t * 1e-3 + this + PFeD + + + + @PHY_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @NFe_E3T / @e3t * 1e-3 + @DFe_E3T / @e3t * 1e-3 + @PHY_E3T / @e3t * 1e-3 + @DSi_E3T / @e3t * 1e-3 + + @PO4_E3T / @e3t * 1e-3 + + + + + @Si_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + + + + + + + this * 12 * 1e-3 + + + + + + + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + @PHYSFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + + + + + + + @BFe_E3T / @e3t * 1e-3 + @SFe_E3T / @e3t * 1e-3 + @GSi_E3T / @e3t * 1e-3 + @CaCO3_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + + + @POC_E3T / @e3t * 1e-3 + @GOC_E3T / @e3t * 1e-3 + @Fer_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DOC_E3T / @e3t * 1e-3 + + this + GRAZ2 + + @NH4_E3T / @e3t * 1e-3 + @NO3_E3T / @e3t * 1e-3 + @O2_E3T / @e3t * 1e-3 + + @PHY_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @NFe_E3T / @e3t * 1e-3 + @DFe_E3T / @e3t * 1e-3 + @PHY_E3T / @e3t * 1e-3 + @DSi_E3T / @e3t * 1e-3 + @PO4_E3T / @e3t * 1e-3 + + @Si_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + + + + + + + + + + + + + + this * 0.101325 + this * 0.101325 + + + + + + + + + + + this * 12 * 1e-3 + + + + + + + + + + + + + + + + + + this * 0.101325 + + + + + + + + @BFeSFC_E3T / @E3TSFC * 1e-3 + @SFeSFC_E3T / @E3TSFC * 1e-3 + @GSiSFC_E3T / @E3TSFC * 1e-3 + @CaCO3SFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + + + @POCSFC_E3T / @E3TSFC * 1e-3 + @GOCSFC_E3T / @E3TSFC * 1e-3 + @FerSFC_E3T / @E3TSFC * 1e-3 + @DICSFC_E3T / @E3TSFC * 1e-3 + @DICSFC_E3T / @E3TSFC * 1e-3 + @DOCSFC_E3T / @E3TSFC * 1e-3 + + + + + + + @NH4SFC_E3T / @E3TSFC * 1e-3 + @NO3SFC_E3T / @E3TSFC * 1e-3 + @O2SFC_E3T / @E3TSFC * 1e-3 + + @PHYSFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + @NFeSFC_E3T / @E3TSFC * 1e-3 + @DFeSFC_E3T / @E3TSFC * 1e-3 + @PHYSFC_E3T / @E3TSFC * 1e-3 + @DSiSFC_E3T / @E3TSFC * 1e-3 + @PO4SFC_E3T / @E3TSFC * 1e-3 + + @SiSFC_E3T / @E3TSFC * 1e-3 + @AlkaliniSFC_E3T / @E3TSFC * 1e-3 + @AlkaliniSFC_E3T / @E3TSFC * 1e-3 + @ZOO2SFC_E3T / @E3TSFC * 1e-3 + @ZOOSFC_E3T / @E3TSFC * 1e-3 + @ZOOSFC_E3T / @E3TSFC * 1e-3 + @ZOO2SFC_E3T / @E3TSFC * 1e-3 + + + + + + + + diff --git a/ece2cmor/ece2cmor3/resources/xios-nemo-file_def-files/basic-flat-cmip6-file_def_nemo.xml b/ece2cmor/ece2cmor3/resources/xios-nemo-file_def-files/basic-flat-cmip6-file_def_nemo.xml new file mode 100644 index 0000000000000000000000000000000000000000..039b0930eeb25a8a29f988505acf2656f4916e2e --- /dev/null +++ b/ece2cmor/ece2cmor3/resources/xios-nemo-file_def-files/basic-flat-cmip6-file_def_nemo.xml @@ -0,0 +1,391 @@ + + + + + + + + + + + this * 1e6 * $convSpsu + + this * $convSpsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @Age_E3T / @e3t + @BFe_E3T / @e3t * 1e-3 + @SFe_E3T / @e3t * 1e-3 + @BFeSFC_E3T / @E3TSFC * 1e-3 + @SFeSFC_E3T / @E3TSFC * 1e-3 + @toce_e3t / @e3t + + @GSi_E3T / @e3t * 1e-3 + @GSiSFC_E3T / @E3TSFC * 1e-3 + @CaCO3_E3T / @e3t * 1e-3 + @CaCO3SFC_E3T / @E3TSFC * 1e-3 + @CFC11_E3T / @e3t + @CFC12_E3T / @e3t + @NCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + + + + + @POC_E3T / @e3t * 1e-3 + @GOC_E3T / @e3t * 1e-3 + @POCSFC_E3T / @E3TSFC * 1e-3 + @GOCSFC_E3T / @E3TSFC * 1e-3 + @Fer_E3T / @e3t * 1e-3 + @FerSFC_E3T / @E3TSFC * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DICSFC_E3T / @E3TSFC * 1e-3 + @DICSFC_E3T / @E3TSFC * 1e-3 + @DOC_E3T / @e3t * 1e-3 + @DOCSFC_E3T / @E3TSFC * 1e-3 + this * 0.101325 + this * 0.101325 + + + + + + + + + + + + + + + this * 12 * 1e-3 + + + + + + + + + + + this + GRAZ2 + this * 1e15 + this * 1e15 + + qt - qrp + + + + + + + + + this + udiff_heattr + this + vdiff_heattr + sopht_vt_3bsn * 1e15 - this * 1e15 + this * 1e15 + + + + + + + + + + + + + + + + + + + + + + + + this * this + this * $rau0 + this * 1e6 * $rau0 + @NH4_E3T / @e3t * 1e-3 + @NH4SFC_E3T / @E3TSFC * 1e-3 + @NO3_E3T / @e3t * 1e-3 + @NO3SFC_E3T / @E3TSFC * 1e-3 + @O2_E3T / @e3t * 1e-3 + + @O2SFC_E3T / @E3TSFC * 1e-3 + @bn2_e3t / @e3t + this * 1e4 + + + @PHY_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHYSFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + @NFe_E3T / @e3t * 1e-3 + @DFe_E3T / @e3t * 1e-3 + @NFeSFC_E3T / @E3TSFC * 1e-3 + @DFeSFC_E3T / @E3TSFC * 1e-3 + @PHY_E3T / @e3t * 1e-3 + @PHYSFC_E3T / @E3TSFC * 1e-3 + @DSi_E3T / @e3t * 1e-3 + @DSiSFC_E3T / @E3TSFC * 1e-3 + @PO4_E3T / @e3t * 1e-3 + @PO4SFC_E3T / @E3TSFC * 1e-3 + + + + + @qsr3d_e3t_SBC / @e3t_SBC + + @SF6_E3T / @e3t + this * $convSpsu + @Si_E3T / @e3t * 1e-3 + @SiSFC_E3T / @E3TSFC * 1e-3 + sopst_vs_3bsn*1e6*$convSpsu - this*1e6*$convSpsu + this * 1e6 * $convSpsu + @soce_e3t / @e3t * $convSpsu + @sbs_e3tb / @e3tb * $convSpsu + this * $convSpsu + this * $convSpsu + this * $convSpsu + this * $convSpsu * $convSpsu + this * 0.101325 + @Alkalini_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @AlkaliniSFC_E3T / @E3TSFC * 1e-3 + @AlkaliniSFC_E3T / @E3TSFC * 1e-3 + + + @toce_pot_e3t / @e3t + + + @toce_potb_e3tb / @e3tb + + + + this * $rau0 + @uoce_e3u / @e3u + this * $rau0 + @voce_e3v / @e3v + + + + empmr - erp + this * $rau0 + @woce_e3w / @e3w + + @ZOO2_E3T / @e3t * 1e-3 + @ZOO2SFC_E3T / @E3TSFC * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOOSFC_E3T / @E3TSFC * 1e-3 + + @ZOO_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + @ZOOSFC_E3T / @E3TSFC * 1e-3 + @ZOO2SFC_E3T / @E3TSFC * 1e-3 + + + + + + + + + + + + @BFe_E3T / @e3t * 1e-3 + @SFe_E3T / @e3t * 1e-3 + @GSi_E3T / @e3t * 1e-3 + @CaCO3_E3T / @e3t * 1e-3 + @CFC11_E3T / @e3t + @CFC12_E3T / @e3t + @NCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + + + + @POC_E3T / @e3t * 1e-3 + @GOC_E3T / @e3t * 1e-3 + @Fer_E3T / @e3t * 1e-3 + @avt_e3w / @e3w + @avs_e3w / @e3w + @DIC_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DOC_E3T / @e3t * 1e-3 + + + + + + + this * 12 * 1e-3 + this + GRAZ2 + @NH4_E3T / @e3t * 1e-3 + @NO3_E3T / @e3t * 1e-3 + @O2_E3T / @e3t * 1e-3 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this + PFeD + + + + @PHY_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @NFe_E3T / @e3t * 1e-3 + @DFe_E3T / @e3t * 1e-3 + @PHY_E3T / @e3t * 1e-3 + @DSi_E3T / @e3t * 1e-3 + + @PO4_E3T / @e3t * 1e-3 + + + + + @SF6_E3T / @e3t + @Si_E3T / @e3t * 1e-3 + this * $convSpsu + @Alkalini_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + + @ZOO2_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + + + + + + + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + + + this * $convSpsu + + + + + + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + + @PHYSFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + this * $convSpsu + this * $convSpsu * $convSpsu + + + + + + @avt_e3w / @e3w + @avm_e3w / @e3w + @av_wave_e3w / @e3w + @avs_e3w / @e3w + @av_wave_e3w / @e3w + + + + + + + + + + 100 - this + + + + + + + + + + + + diff --git a/ece2cmor/ece2cmor3/scripts/__init__.py b/ece2cmor/ece2cmor3/scripts/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/ece2cmor3/scripts/add-covidMIP-experiments.sh b/ece2cmor/ece2cmor3/scripts/add-covidMIP-experiments.sh new file mode 100755 index 0000000000000000000000000000000000000000..43826ac0756441601454adf9eac8b52e7d4ebf85 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/add-covidMIP-experiments.sh @@ -0,0 +1,177 @@ +#!/bin/bash +# Thomas Reerink +# +# This script adds / inserts some non-cmor variables and /or non (yet) approved CMIP endorsed experiments (which thus +# do not exit in the CMIP6 data request) to the end of the cmor table in question. +# +# This scripts requires no arguments. +# + +if [ "$#" -eq 0 ]; then + + add_the_covidMIP_experiments=True + + if [ add_the_covidMIP_experiments ]; then + # See #847 https://dev.ec-earth.org/issues/847 + # See #895 https://dev.ec-earth.org/issues/895 + + # The addition of five Covid experiments (meanwhile they are part of the official data request) + # CovidMIP ssp245-covid + # CovidMIP ssp245-cov-strgreen + # CovidMIP ssp245-cov-modgreen + # CovidMIP ssp245-cov-fossil + # CovidMIP ssp245-cov-aer + + table_path=../resources/cmip6-cmor-tables/Tables/ + table_file_cv=CMIP6_CV.json + + cd ${table_path} + git checkout ${table_file_cv} + + sed -i '/"ssp370":{/i \ + "ssp245-covid":{ \ + "activity_id":[ \ + "DAMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"2-year Covid-19 emissions blip based upon ssp245", \ + "experiment_id":"ssp245-covid", \ + "parent_activity_id":[ \ + "ScenarioMIP" \ + ], \ + "parent_experiment_id":[ \ + "ssp245" \ + ], \ + "required_model_components":[ \ + "AOGCM" \ + ], \ + "sub_experiment_id":[ \ + "none" \ + ] \ + }, \ + "ssp245-cov-strgreen":{ \ + "activity_id":[ \ + "DAMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"2-year Covid-19 emissions blip followed by strong-green stimulus recovery, based upon ssp245", \ + "experiment_id":"ssp245-cov-strgreen", \ + "parent_activity_id":[ \ + "ScenarioMIP" \ + ], \ + "parent_experiment_id":[ \ + "ssp245" \ + ], \ + "required_model_components":[ \ + "AOGCM" \ + ], \ + "sub_experiment_id":[ \ + "none" \ + ] \ + }, \ + "ssp245-cov-modgreen":{ \ + "activity_id":[ \ + "DAMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"2-year Covid-19 emissions blip followed by moderate-green stimulus recovery, based upon ssp245", \ + "experiment_id":"ssp245-cov-modgreen", \ + "parent_activity_id":[ \ + "ScenarioMIP" \ + ], \ + "parent_experiment_id":[ \ + "ssp245" \ + ], \ + "required_model_components":[ \ + "AOGCM" \ + ], \ + "sub_experiment_id":[ \ + "none" \ + ] \ + }, \ + "ssp245-cov-fossil":{ \ + "activity_id":[ \ + "DAMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"2-year Covid-19 emissions blip followed by increased emissions due to a fossil-fuel based recovery, based upon ssp245", \ + "experiment_id":"ssp245-cov-fossil", \ + "parent_activity_id":[ \ + "ScenarioMIP" \ + ], \ + "parent_experiment_id":[ \ + "ssp245" \ + ], \ + "required_model_components":[ \ + "AOGCM" \ + ], \ + "sub_experiment_id":[ \ + "none" \ + ] \ + }, \ + "ssp245-cov-aer":{ \ + "activity_id":[ \ + "DAMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"2-year Covid-19 emissions blip including anthropogenic aerosols only, based upon ssp245", \ + "experiment_id":"ssp245-cov-aer", \ + "parent_activity_id":[ \ + "ScenarioMIP" \ + ], \ + "parent_experiment_id":[ \ + "ssp245" \ + ], \ + "required_model_components":[ \ + "AOGCM" \ + ], \ + "sub_experiment_id":[ \ + "none" \ + ] \ + }, + ' ${table_file_cv} + + # Remove the trailing spaces of the inserted block above: + sed -i -e 's/\s*$//g' ${table_file_cv} + + cd - + + echo + echo " $0 reports:" + echo " The adjusted file is: ${table_path}/${table_file_cv}" + echo " Which is part of a nested repository, therefore to view the diff, run:" + echo " cd ${table_path}; git diff; cd -" + echo + + else + echo + echo " Nothing done, no set of variables and / or experiments has been selected to add to the tables." + echo + fi + +else + echo + echo " This scripts requires no argument:" + echo " $0" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/add-lamaclima-experiments.sh b/ece2cmor/ece2cmor3/scripts/add-lamaclima-experiments.sh new file mode 100755 index 0000000000000000000000000000000000000000..ffc1b9d41eab673c6bf9f797885d572cac46b2e6 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/add-lamaclima-experiments.sh @@ -0,0 +1,105 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This script adds / inserts a not (yet) approved CMIP endorsed MIP and experiment(s), +# which thus do not exist in the CMIP6 CMOR tables. +# +# This scripts requires no arguments. +# + +if [ "$#" -eq 0 ]; then + + add_the_lamaclima_experiments=True + + if [ add_the_lamaclima_experiments ]; then + # See #645 https://github.com/EC-Earth/ece2cmor3/issues/645 + # See #699 https://github.com/EC-Earth/ece2cmor3/issues/699 + # See #739 https://github.com/EC-Earth/ece2cmor3/issues/739 + # See #853 https://dev.ec-earth.org/issues/853 + + # LAMACLIMA ssp585-lamaclima + + table_path=../resources/cmip6-cmor-tables/Tables/ + table_file_cv=CMIP6_CV.json + + cd ${table_path} + git checkout ${table_file_cv} + + sed -i '/"ssp126":{/i \ + "ssp119-lamaclima":{ \ + "activity_id":[ \ + "LAMACLIMA" \ + ], \ + "additional_allowed_model_components":[ \ + "BGC" \ + ], \ + "experiment":"Lamaclima experiment based upon SSP119", \ + "experiment_id":"ssp119-lamaclima", \ + "parent_activity_id":[ \ + "CMIP" \ + ], \ + "parent_experiment_id":[ \ + "historical" \ + ], \ + "required_model_components":[ \ + "AOGCM" \ + ], \ + "sub_experiment_id":[ \ + "none" \ + ] \ + }, + ' ${table_file_cv} + + sed -i '/"ssp585-withism":{/i \ + "ssp585-lamaclima":{ \ + "activity_id":[ \ + "LAMACLIMA" \ + ], \ + "additional_allowed_model_components":[ \ + "AER" \ + ], \ + "experiment":"Lamaclima experiment based upon SSP585", \ + "experiment_id":"ssp585-lamaclima", \ + "parent_activity_id":[ \ + "CMIP" \ + ], \ + "parent_experiment_id":[ \ + "historical" \ + ], \ + "required_model_components":[ \ + "AOGCM" \ + ], \ + "sub_experiment_id":[ \ + "none" \ + ] \ + }, + ' ${table_file_cv} + + sed -i '/"LS3MIP":/i \ + "LAMACLIMA":"LAnd MAnagement for CLImate Mitigation and Adaptation", + ' ${table_file_cv} + + # Remove the trailing spaces of the inserted block above: + sed -i 's/\s*$//g' ${table_file_cv} + + cd - + + echo + echo " $0 reports:" + echo " The adjusted file is: ${table_path}/${table_file_cv}" + echo " Which is part of a nested repository, therefore to view the diff, run:" + echo " cd ${table_path}; git diff; cd -" + echo + + else + echo + echo " Nothing done, no set of variables and / or experiments has been selected to add to the tables." + echo + fi + +else + echo + echo " This scripts requires no argument:" + echo " $0" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/add-non-cmor-variables-barakuda.sh b/ece2cmor/ece2cmor3/scripts/add-non-cmor-variables-barakuda.sh new file mode 100755 index 0000000000000000000000000000000000000000..1318d0fc267227bf2d35ae6c9feed78df5b9edf6 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/add-non-cmor-variables-barakuda.sh @@ -0,0 +1,137 @@ +#!/bin/bash +# Thomas Reerink +# +# This script adds some non-cmor variables (which thus do not exit in the CMIP6 data request) to the end of the cmor table in question. +# +# This scripts requires no arguments. +# +# Run example: +# ./add-non-cmor-variables.sh +# + +if [ "$#" -eq 0 ]; then + + add_barakuda_variables=True + + + if [ add_barakuda_variables ]; then + # calving Water Flux into Sea Water From Icebergs + # taum Wind Stress Module + # wspd Wind Speed Module + # precip Precipitation Flux + + head --lines=-3 ../resources/tables/CMIP6_Omon.json > extended-CMIP6_Omon.json + + echo ' }, ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "calving": { ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "frequency": "mon", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "modeling_realm": "ocean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "standard_name": "water_flux_into_sea_water_from_icebergs", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "units": "kg m-2 s-1", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_methods": "area: mean where sea time: mean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_measures": "area: areacella", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "long_name": "Water Flux into Sea Water From Icebergs", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "comment": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "dimensions": "longitude latitude time", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "out_name": "calving", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "type": "real", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "positive": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_min": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_max": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_min_mean_abs": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_max_mean_abs": "" ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + + echo ' }, ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "rhopo": { ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "frequency": "mon", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "modeling_realm": "ocean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "standard_name": "potential_dentisty", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "units": "kg m-3", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_methods": "area: mean where sea time: mean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_measures": "area: areacella", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "long_name": "Potential Density", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "comment": "Potential Density", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "dimensions": "longitude latitude olevel time", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "out_name": "rhopo", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "type": "real", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "positive": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_min": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_max": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_min_mean_abs": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_max_mean_abs": "" ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + + echo ' }, ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "taum": { ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "frequency": "mon", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "modeling_realm": "ocean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "standard_name": "magnitude_of_surface_downward_stress", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "units": "N m-2", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_methods": "time: mean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_measures": "area: areacella", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "long_name": "Wind stress module", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "comment": "Wind stress module", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "dimensions": "longitude latitude time", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "out_name": "taum", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "type": "real", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "positive": "down", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_min": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_max": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_min_mean_abs": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_max_mean_abs": "" ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' }, ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + + echo ' "wspd": { ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "frequency": "mon", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "modeling_realm": "ocean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "standard_name": "wind_speed", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "units": "m s-1", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_methods": "time: mean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_measures": "area: areacella", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "long_name": "Wind speed module", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "comment": "Wind speed module", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "dimensions": "longitude latitude time", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "out_name": "wspd", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "type": "real", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "positive": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_min": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_max": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_min_mean_abs": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_max_mean_abs": "" ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + + echo ' }, ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "precip": { ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "frequency": "mon", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "modeling_realm": "ocean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "standard_name": "precipitation_flux", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "units": "kg m-2 s-1", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_methods": "area: mean where sea time: mean", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "cell_measures": "area: areacella", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "long_name": "Precipitation Flux", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "comment": "Precipitation Flux from nemo", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "dimensions": "longitude latitude time", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "out_name": "precip", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "type": "real", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "positive": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_min": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "valid_max": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_min_mean_abs": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + echo ' "ok_max_mean_abs": "" ' | sed 's/\s*$//g' >> extended-CMIP6_Omon.json + + echo ' }' >> extended-CMIP6_Omon.json + echo ' }' >> extended-CMIP6_Omon.json + echo '}' >> extended-CMIP6_Omon.json + + mv -f extended-CMIP6_Omon.json ../resources/tables/CMIP6_Omon.json + + else + echo ' ' + echo ' Noting done, no set of variables has been selected to add to the tables.' + echo ' ' + fi + +else + echo ' ' + echo ' This scripts requires no argument:' + echo ' ' $0 + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/scripts/add-non-cmor-variables-lpjg.sh b/ece2cmor/ece2cmor3/scripts/add-non-cmor-variables-lpjg.sh new file mode 100755 index 0000000000000000000000000000000000000000..460a5cb65bd8d638cb85c799bfc4386660ba1cf5 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/add-non-cmor-variables-lpjg.sh @@ -0,0 +1,132 @@ +#!/bin/bash +# Thomas Reerink +# +# This script adds some non-cmor variables (which thus do not exit in the CMIP6 data request) to the end of the cmor table in question. +# +# This scripts requires no arguments. +# +# Run example: +# ./add-non-cmor-variables.sh +# + +if [ "$#" -eq 0 ]; then + + add_lpjg_variables=True + + + if [ add_lpjg_variables ]; then + # cLan1 + + head --lines=-3 ../resources/tables/CMIP6_Emon.json > extended-CMIP6_Emon.json + + echo ' }, ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "cLand1": { ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "frequency": "mon", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "modeling_realm": "land", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "standard_name": "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products",' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "units": "kg m-2", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "cell_methods": "area: mean where land time: mean", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "cell_measures": "area: areacella", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "long_name": "Total Carbon in All Terrestrial Carbon Pools", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "dimensions": "longitude latitude time", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "out_name": "cLand1", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "type": "real", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "positive": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "valid_min": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "valid_max": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "ok_min_mean_abs": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + echo ' "ok_max_mean_abs": "" ' | sed 's/\s*$//g' >> extended-CMIP6_Emon.json + + echo ' }' >> extended-CMIP6_Emon.json + echo ' }' >> extended-CMIP6_Emon.json + echo '}' >> extended-CMIP6_Emon.json + + mv -f extended-CMIP6_Emon.json ../resources/tables/CMIP6_Emon.json + + head --lines=-3 ../resources/tables/CMIP6_Lmon.json > extended-CMIP6_Lmon.json + + echo ' }, ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "fco2nat": { ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "frequency": "mon", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "modeling_realm": "atmos", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources",' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "units": "kg m-2 s-1", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "cell_methods": "area:time: mean", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "cell_measures": "area: areacella", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "long_name": "Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources [kgC m-2 s-1]", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "comment": "This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon that account for natural exchanges between the atmosphere and land (nep) or ocean (fgco2) reservoirs.", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "dimensions": "longitude latitude time", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "out_name": "fco2nat", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "type": "real", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "positive": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "valid_min": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "valid_max": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "ok_min_mean_abs": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + echo ' "ok_max_mean_abs": "" ' | sed 's/\s*$//g' >> extended-CMIP6_Lmon.json + + echo ' }' >> extended-CMIP6_Lmon.json + echo ' }' >> extended-CMIP6_Lmon.json + echo '}' >> extended-CMIP6_Lmon.json + + mv -f extended-CMIP6_Lmon.json ../resources/tables/CMIP6_Lmon.json + + head --lines=-3 ../resources/tables/CMIP6_Eyr.json > extended-CMIP6_Eyr.json + + echo ' }, ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "cLandYr": { ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "frequency": "yr", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "modeling_realm": "land", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "standard_name": "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products",' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "units": "kg m-2", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "cell_methods": "area: mean where land time: mean", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "cell_measures": "area: areacella", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "long_name": "Total Carbon in All Terrestrial Carbon Pools", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "dimensions": "longitude latitude time", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "out_name": "cLandYr", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "type": "real", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "positive": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "valid_min": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "valid_max": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "ok_min_mean_abs": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "ok_max_mean_abs": "" ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' }, ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + + + echo ' "cFluxYr": { ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "frequency": "yr", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "modeling_realm": "land", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "standard_name": "cFluxYr", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "units": "kg m-2 yr-1", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "cell_methods": "area: mean where land time: mean", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "cell_measures": "area: areacella", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "long_name": "cFluxYr", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "comment": "cFluxYr", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "dimensions": "longitude latitude time", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "out_name": "cFluxYr", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "type": "real", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "positive": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "valid_min": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "valid_max": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "ok_min_mean_abs": "", ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + echo ' "ok_max_mean_abs": "" ' | sed 's/\s*$//g' >> extended-CMIP6_Eyr.json + + echo ' }' >> extended-CMIP6_Eyr.json + echo ' }' >> extended-CMIP6_Eyr.json + echo '}' >> extended-CMIP6_Eyr.json + + mv -f extended-CMIP6_Eyr.json ../resources/tables/CMIP6_Eyr.json + + else + echo ' ' + echo ' Noting done, no set of variables has been selected to add to the tables.' + echo ' ' + fi + +else + echo ' ' + echo ' This scripts requires no argument:' + echo ' ' $0 + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/scripts/add-non-cmor-variables.sh b/ece2cmor/ece2cmor3/scripts/add-non-cmor-variables.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c067ee3fdb80b5a17eda319d93779e185c035ca --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/add-non-cmor-variables.sh @@ -0,0 +1,242 @@ +#!/bin/bash +# Thomas Reerink +# +# This script adds some non-cmor variables (which thus do not exit in +# the CMIP6 data request) to the AERmon cmor table. +# +# This script requires no arguments. +# +# Run example: +# ./add-non-cmor-variables.sh +# + +if [ "$#" -eq 0 ]; then + + add_the_clear_sky_aerosol_free_net_surface_radiation_fluxes=True + + if [ add_the_clear_sky_aerosol_free_net_surface_radiation_fluxes ]; then + # See #575 https://github.com/EC-Earth/ece2cmor3/issues/575 + # See #403-56 https://dev.ec-earth.org/issues/403-56 + # See #732 https://dev.ec-earth.org/issues/732 + # See #736-7 https://dev.ec-earth.org/issues/736-7 + + # rsscsaf 126070 CVEXTR2(11)='clear SW surf', grib 126.70 clear SW surf rsscsaf (r: radiation, s: short wave, s:surface, cs: clear sky, af: aerosol free) + # rssaf 126071 CVEXTR2(12)='total SW surf', grib 126.71 total SW surf rssaf + # rlscsaf 126074 CVEXTR2(15)='clear LW surf', grib 126.74 clear LW surf rlscsaf + # rlsaf 126075 CVEXTR2(16)='total LW surf', grib 126.75 total LW surf rlsaf + + # Also add the AerChem related Ice Crystal variables (see https://dev.ec-earth.org/issues/1079) + + table_path=../resources/cmip6-cmor-tables/Tables/ + table_file_aermon=CMIP6_AERmon.json + + cd ${table_path} + git checkout ${table_file_aermon} + + sed -i '/"so2": {/i \ + "rsscsaf": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "surface_net_shortwave_flux_aerosol_free_clear_sky", \ + "units": "W m-2", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Surface Net Aerosol-Free Clear-Sky Shortwave Radiation", \ + "comment": "Flux corresponding to rls resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", \ + "dimensions": "longitude latitude time", \ + "out_name": "rsscsaf", \ + "type": "real", \ + "positive": "down", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "rssaf": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "surface_net_shortwave_flux_aerosol_free", \ + "units": "W m-2", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Surface Net Aerosol-Free Shortwave Radiation", \ + "comment": "Flux corresponding to rls resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", \ + "dimensions": "longitude latitude time", \ + "out_name": "rssaf", \ + "type": "real", \ + "positive": "down", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "rlscsaf": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "surface_net_longwave_flux_aerosol_free_clear_sky", \ + "units": "W m-2", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Surface Net Aerosol-Free Clear-Sky Longwave Radiation", \ + "comment": "Flux corresponding to rls resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", \ + "dimensions": "longitude latitude time", \ + "out_name": "rlscsaf", \ + "type": "real", \ + "positive": "down", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "rlsaf": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "surface_net_longwave_flux_aerosol_free", \ + "units": "W m-2", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Surface Net Aerosol-Free Longwave Radiation", \ + "comment": "Flux corresponding to rls resulting from aerosol-free call to radiation, following Ghan (ACP, 2013)", \ + "dimensions": "longitude latitude time", \ + "out_name": "rlsaf", \ + "type": "real", \ + "positive": "down", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "icnc": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air", \ + "units": "m-3", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Ice Crystal Number Concentration", \ + "comment": "Ice Crystal Number Concentration in ice clouds.", \ + "dimensions": "longitude latitude alevel time", \ + "out_name": "icnc", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "icncsip": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "number_concentration_of_secondary_cloud_ice_crystal_particles_in_air", \ + "units": "m-3", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Ice Crystal Number Concentration from secondary formation", \ + "comment": "Ice Crystal Number Concentration formed by secondary ice production processes.", \ + "dimensions": "longitude latitude alevel time", \ + "out_name": "icncsip", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "icncullrichdn": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_ullrich_dn", \ + "units": "m-3", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Ice Crystal Number Concentration from Ullrich et al. (2017) deposition nucleation of soot and dust parameterization", \ + "comment": "Ice Crystal Number Concentration formed from Ullrich et al. (2017) deposition nucleation of soot and dust parameterization.", \ + "dimensions": "longitude latitude alevel time", \ + "out_name": "icncullrichdn", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "icncharrison": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_harrison", \ + "units": "m-3", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Ice Crystal Number Concentration from Harrison et al. (2019) immersion freezing of K-feldspar and quartz parameterization", \ + "comment": "Ice Crystal Number Concentration formed from Harrison et al. (2019) immersion freezing of K-feldspar and quartz parameterization.", \ + "dimensions": "longitude latitude alevel time", \ + "out_name": "icncharrison", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "icncwilson": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "number_concentration_of_cloud_ice_crystal_particles_in_air_from_wilson", \ + "units": "m-3", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Ice Crystal Number Concentration from Wilson et al. (2015) immersion freezing of marine organic aerosols parameterization", \ + "comment": "Ice Crystal Number Concentration formed from Wilson et al. (2015) immersion freezing of marine organic aerosols parameterization.", \ + "dimensions": "longitude latitude alevel time", \ + "out_name": "icncwilson", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "icncpip": { \ + "frequency": "mon", \ + "modeling_realm": "aerosol", \ + "standard_name": "number_concentration_of_primary_cloud_ice_crystal_particles_in_air", \ + "units": "m-3", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Ice Crystal Number Concentration from primary formation", \ + "comment": "Ice Crystal Number Concentration formed as primary ice.", \ + "dimensions": "longitude latitude alevel time", \ + "out_name": "icncpip", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_aermon} + + # Remove the trailing spaces of the inserted block above: + sed -i -e 's/\s*$//g' -e 's/,$/, /g' ${table_file_aermon} + + cd - + + echo + echo " $0 reports:" + echo " The adjusted file is: ${table_path}/${table_file_aermon}" + echo " Which is part of a nested repository, therefore to view the diff, run:" + echo " cd ${table_path}; git diff; cd -" + echo + + else + echo + echo " Nothing done, no set of variables and / or experiments has been selected to add to the tables." + echo + fi + +else + echo + echo " This scripts requires no argument:" + echo " $0" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/add-sofiamip-experiments.sh b/ece2cmor/ece2cmor3/scripts/add-sofiamip-experiments.sh new file mode 100755 index 0000000000000000000000000000000000000000..054f90e7dba2cc611e823a1939f01f4a5c2edd22 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/add-sofiamip-experiments.sh @@ -0,0 +1,91 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This script adds / inserts a not (yet) approved CMIP endorsed MIP and experiment(s), +# which thus do not exist in the CMIP6 CMOR tables. +# +# This scripts requires no arguments. +# + +if [ "$#" -eq 0 ]; then + + add_the_sofiamip_experiments=True + + if [ add_the_sofiamip_experiments ]; then + # See #749 https://github.com/EC-Earth/ece2cmor3/issues/749 + + # SOFIAMIP faf-antwater + + table_path=../resources/cmip6-cmor-tables/Tables/ + table_file_cv=CMIP6_CV.json + + cd ${table_path} + git checkout ${table_file_cv} + + sed -i '/"faf-antwater-stress":{/i \ + "faf-antwater":{ \ + "activity_id":[ \ + "SOFIAMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"control plus perturbative surface fluxes of freshwater into ocean, the latter around the coast of Antarctica only", \ + "experiment_id":"faf-antwater", \ + "parent_activity_id":[ \ + "CMIP" \ + ], \ + "parent_experiment_id":[ \ + "piControl" \ + ], \ + "required_model_components":[ \ + "AOGCM" \ + ], \ + "sub_experiment_id":[ \ + "none" \ + ] \ + }, + ' ${table_file_cv} + + sed -i '/"VIACSAB":/i \ + "SOFIAMIP":"Southern Ocean Freshwater release model experiments Initiative", + ' ${table_file_cv} + + # Add KNMI as an institute with its own institution_id: + sed -i '/"KIOST":/i \ + "KNMI":"The Royal Netherlands Meteorological Institute (KNMI), De Bilt, The Netherlands", + ' ${table_file_cv} + + # Adjust the license such that it matches with the production institute KNMI. + sed -i -e 's/CMIP6 model data/The SOFIAMIP model data/' -e 's/Consult.*acknowledgment//' ${table_file_cv} + + # Allow KNMI on it self to be a institute which produces EC-Earth3 experiments: + # This insert is vulnerable for upstream table changes within 20 lines after the match: + sed -i -e '/"EC-Earth3":{/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;a\ "KNMI",' ${table_file_cv} + + # Remove the trailing spaces of the inserted block above: + sed -i 's/\s*$//g' ${table_file_cv} + + cd - + + echo + echo " $0 reports:" + echo " The adjusted file is: ${table_path}/${table_file_cv}" + echo " Which is part of a nested repository, therefore to view the diff, run:" + echo " cd ${table_path}; git diff; cd -" + echo + + else + echo + echo " Nothing done, no set of variables and / or experiments has been selected to add to the tables." + echo + fi + +else + echo + echo " This scripts requires no argument:" + echo " $0" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/add-varex-experiments.sh b/ece2cmor/ece2cmor3/scripts/add-varex-experiments.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c486443b895080988fe17157f2573a21ad40389 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/add-varex-experiments.sh @@ -0,0 +1,63 @@ +#!/bin/bash +# Thomas Reerink +# +# This script adds / inserts some non-cmor metadata for the VAREX project which thus +# does not exit in the CMIP6 data request. +# +# This scripts requires no arguments. +# + +if [ "$#" -eq 0 ]; then + + add_the_varex_experiments=True + + if [ add_the_varex_experiments ]; then + # See #728 https://github.com/EC-Earth/ece2cmor3/issues/728 + # See #1062 https://dev.ec-earth.org/issues/1062 + + # VAREX + + table_path=../resources/cmip6-cmor-tables/Tables/ + table_file_cv=CMIP6_CV.json + + # Always first revert the CMOR table file in its repository: + cd ${table_path} + git checkout ${table_file_cv} + + # Add KNMI as an institute with its own institution_id: + sed -i '/"KIOST":/i \ + "KNMI":"The Royal Netherlands Meteorological Institute (KNMI), De Bilt, The Netherlands", + ' ${table_file_cv} + + # Adjust the license such that it matches with the production institute KNMI. + sed -i -e 's/CMIP6 model data/The VAREX model data/' -e 's/Consult.*acknowledgment//' ${table_file_cv} + + # Allow KNMI on it self to be a institute which produces EC-Earth3 experiments: + # This insert is vulnerable for upstream table changes within 20 lines after the match: + sed -i -e '/"EC-Earth3":{/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;a\ "KNMI",' ${table_file_cv} + + # Allow a historical experiment to have a parent_experiment_id which is an historical experiment as well: + # This insert is vulnerable for upstream table changes within 15 lines after the match: + sed -i -e '/ "historical":{/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;a\ "historical",' ${table_file_cv} + + cd - + + echo + echo " $0 reports:" + echo " The adjusted file is: ${table_path}/${table_file_cv}" + echo " Which is part of a nested repository, therefore to view the diff, run:" + echo " cd ${table_path}; git diff; cd -" + echo + + else + echo + echo " Nothing done, no set of variables and / or experiments has been selected to add to the tables." + echo + fi + +else + echo + echo " This scripts requires no argument:" + echo " $0" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/add-variables-for-extremeX.sh b/ece2cmor/ece2cmor3/scripts/add-variables-for-extremeX.sh new file mode 100755 index 0000000000000000000000000000000000000000..225de3d152d605c12e277ce1bfbd0fb9c3e1428a --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/add-variables-for-extremeX.sh @@ -0,0 +1,1353 @@ +#!/bin/bash +# Thomas Reerink +# +# This script adds / inserts some non-cmor variables and coordinates in order to have a set of +# variables with optimal pressure levels for RCM dynamic forcing. +# +# This scripts requires no arguments. +# + +if [ "$#" -eq 0 ]; then + + add_variables_with_pressure_levels_for_rcm_forcing=True + + if [ add_variables_with_pressure_levels_for_rcm_forcing ]; then + # See #717 https://github.com/EC-Earth/ece2cmor3/issues/717 + + table_path=../resources/cmip6-cmor-tables/Tables/ + table_file_coordinate=CMIP6_coordinate.json + table_file_6hrPlevPt=CMIP6_6hrPlevPt.json + table_file_Amon=CMIP6_Amon.json + table_file_day=CMIP6_day.json + table_file_Lmon=CMIP6_Lmon.json + table_file_CV=CMIP6_CV.json + + cd ../resources/ + git checkout ifspar.json + cd - + + head --lines=-1 ../resources/ifspar.json > extended-ifspar.json + + #echo ' ' | sed 's/\s*$//g' >> extended-ifspar.json + #echo ' ' | sed 's/\s*$//g' >> extended-ifspar.json + #echo ' ' | sed 's/\s*$//g' >> extended-ifspar.json + #echo ' ' | sed 's/\s*$//g' >> extended-ifspar.json + #echo ' ' | sed 's/\s*$//g' >> extended-ifspar.json + #echo ' ' | sed 's/\s*$//g' >> extended-ifspar.json + #echo ' ' | sed 's/\s*$//g' >> extended-ifspar.json + + echo ' { ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "source": "59.128", ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "target": "cape" ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' }, ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' { ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "source": "60.128", ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "target": "pv" ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' }, ' | sed 's/\s*$//g' >> extended-ifspar.json + + echo ' { ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "source": "178.128", ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "convert": "cum2inst", ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "target": "fsntoa" ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' }, ' | sed 's/\s*$//g' >> extended-ifspar.json + + echo ' { ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "source": "213.128", ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "convert": "cum2inst", ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "target": [ ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' "vimd" ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' ] ' | sed 's/\s*$//g' >> extended-ifspar.json + echo ' }, ' | sed 's/\s*$//g' >> extended-ifspar.json + + echo ']' >> extended-ifspar.json + + sed -i '/"areacella",/i \ + "zg9", \ + "zg200", \ + "zg850", ' extended-ifspar.json + + + sed -i '/"ta",/i \ + "ta3", \ + "ta9", ' extended-ifspar.json + + sed -i '/"ua",/i \ + "ua3", \ + "ua9", \ + "ua850", ' extended-ifspar.json + + sed -i '/"va",/i \ + "va3", \ + "va9", \ + "va850", ' extended-ifspar.json + + sed -i '/"hus",/i \ + "hus3", \ + "hus9", ' extended-ifspar.json + + sed -i '/"wap",/i \ + "wap850", ' extended-ifspar.json + + mv -f extended-ifspar.json ../resources/ifspar.json + + + cd ${table_path} + git checkout ${table_file_coordinate} + git checkout ${table_file_6hrPlevPt} + git checkout ${table_file_Amon} + git checkout ${table_file_day} + git checkout ${table_file_Lmon} + git checkout ${table_file_CV} + +# Adding the plev9 coordinate to the CMOR tables: + + sed -i '/"plev39": {/i \ + "plev9": { \ + "standard_name": "air_pressure", \ + "units": "Pa", \ + "axis": "Z", \ + "long_name": "pressure", \ + "climatology": "", \ + "formula": "", \ + "must_have_bounds": "no", \ + "out_name": "plev", \ + "positive": "down", \ + "requested": [ \ + "92500.", \ + "85000.", \ + "70000.", \ + "50000.", \ + "40000.", \ + "30000.", \ + "25000.", \ + "20000.", \ + "15000." \ + ], \ + "requested_bounds": "", \ + "stored_direction": "decreasing", \ + "tolerance": "", \ + "type": "double", \ + "valid_max": "", \ + "valid_min": "", \ + "value": "", \ + "z_bounds_factors": "", \ + "z_factors": "", \ + "bounds_values": "", \ + "generic_level_name": "" \ + }, + ' ${table_file_coordinate} + + + +# Additions to CMIP6_6hrPlevPt.json: + + sed -i '/"hus7h": {/i \ + "hus": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "specific_humidity", \ + "units": "1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Specific Humidity", \ + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", \ + "dimensions": "longitude latitude plev3 time1", \ + "out_name": "hus", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "hus3": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "specific_humidity", \ + "units": "1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Specific Humidity", \ + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", \ + "dimensions": "longitude latitude plev3 time1", \ + "out_name": "hus", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + sed -i '/"rainmxrat27": {/i \ + "ps": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "surface_air_pressure", \ + "units": "Pa", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Surface Air Pressure", \ + "comment": "surface pressure (not mean sea-level pressure), 2-D field to calculate the 3-D pressure field from hybrid coordinates", \ + "dimensions": "longitude latitude time1", \ + "out_name": "ps", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "pv": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "potential_vorticity", \ + "units": "K m2 kg-1 s-1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Potential Vorticity", \ + "comment": "Ertel potential vorticity", \ + "dimensions": "longitude latitude plev9 time1", \ + "out_name": "pv", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "cape": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "cape", \ + "units": "J kg-1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Convective available potential energy", \ + "comment": "Convective available potential energy", \ + "dimensions": "longitude latitude time1", \ + "out_name": "cape", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + sed -i '/"ta27": {/i \ + "ta3": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "air_temperature", \ + "units": "K", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Air Temperature", \ + "comment": "Air Temperature", \ + "dimensions": "longitude latitude plev3 time1", \ + "out_name": "ta", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + sed -i '/"ua7h": {/i \ + "ua3": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "eastward_wind", \ + "units": "m s-1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Eastward Wind", \ + "comment": "Zonal wind (positive in a eastward direction).", \ + "dimensions": "longitude latitude plev3 time1", \ + "out_name": "ua", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + sed -i '/"va7h": {/i \ + "va3": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "northward_wind", \ + "units": "m s-1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Northward Wind", \ + "comment": "Meridional wind (positive in a northward direction).", \ + "dimensions": "longitude latitude plev3 time1", \ + "out_name": "va", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + + +# Additions to CMIP6_Amon.json: + + sed -i '/"huss": {/i \ + "hus9": { \ + "frequency": "mon", \ + "modeling_realm": "atmos", \ + "standard_name": "specific_humidity", \ + "units": "1", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Specific Humidity", \ + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", \ + "dimensions": "longitude latitude plev9 time", \ + "out_name": "hus", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_Amon} + + sed -i '/"rlut": {/i \ + "fsntoa": { \ + "frequency": "mon", \ + "modeling_realm": "atmos", \ + "standard_name": "toa_net_shortwave_flux", \ + "units": "W m-2", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "TOA Net Solar Radiation", \ + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", \ + "dimensions": "longitude latitude time", \ + "out_name": "fsntoa", \ + "type": "real", \ + "positive": "up", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_Amon} + + sed -i '/"tas": {/i \ + "ta9": { \ + "frequency": "mon", \ + "modeling_realm": "atmos", \ + "standard_name": "air_temperature", \ + "units": "K", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Air Temperature", \ + "comment": "Air Temperature", \ + "dimensions": "longitude latitude plev9 time", \ + "out_name": "ta", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_Amon} + + sed -i '/"uas": {/i \ + "ua9": { \ + "frequency": "mon", \ + "modeling_realm": "atmos", \ + "standard_name": "eastward_wind", \ + "units": "m s-1", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Eastward Wind", \ + "comment": "Zonal wind (positive in a eastward direction).", \ + "dimensions": "longitude latitude plev9 time", \ + "out_name": "ua", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_Amon} + + sed -i '/"vas": {/i \ + "va9": { \ + "frequency": "mon", \ + "modeling_realm": "atmos", \ + "standard_name": "northward_wind", \ + "units": "m s-1", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Northward Wind", \ + "comment": "Meridional wind (positive in a northward direction).", \ + "dimensions": "longitude latitude plev9 time", \ + "out_name": "va", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_Amon} + + sed -i '/"zg": {/i \ + "zg9": { \ + "frequency": "mon", \ + "modeling_realm": "atmos", \ + "standard_name": "geopotential_height", \ + "units": "m", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Geopotential Height", \ + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.",\ + "dimensions": "longitude latitude plev9 time", \ + "out_name": "zg", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "zmla": { \ + "frequency": "mon", \ + "modeling_realm": "atmos", \ + "standard_name": "atmosphere_boundary_layer_thickness", \ + "units": "m", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Height of Boundary Layer", \ + "comment": "The atmosphere boundary layer thickness is the \x27depth\x27 or \x27height\x27 of the (atmosphere) planetary boundary layer.", \ + "dimensions": "longitude latitude time", \ + "out_name": "zmla", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_Amon} + + + +# Additions to CMIP6_day.json: + + sed -i '/"hfls": {/i \ + "evspsbl": { \ + "frequency": "day", \ + "modeling_realm": "atmos", \ + "standard_name": "water_evapotranspiration_flux", \ + "units": "kg m-2 s-1", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Evaporation Including Sublimation and Transpiration", \ + "comment": "Evaporation at surface (also known as evapotranspiration): flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation)",\ + "dimensions": "longitude latitude time", \ + "out_name": "evspsbl", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "vimd": { \ + "frequency": "day", \ + "modeling_realm": "atmos", \ + "standard_name": "vertically_integrated_moisture_flux_divergence", \ + "units": "kg m-2 s-1", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Vertically integrated moisture flux divergence", \ + "comment": "The vertical integral of the moisture flux is the horizontal rate of flow of moisture (water vapour, cloud liquid and cloud ice), per metre across the flow, for a column of air extending from the surface of the Earth to the top of the atmosphere. Its horizontal divergence is the rate of moisture spreading outward from a point, per square metre.",\ + "dimensions": "longitude latitude time", \ + "out_name": "vimd", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_day} + + sed -i '/"pr": {/i \ + "mrsol": { \ + "frequency": "day", \ + "modeling_realm": "land", \ + "standard_name": "mass_content_of_water_in_soil_layer", \ + "units": "kg m-2", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Total Water Content of Soil Layer", \ + "comment": "in each soil layer, the mass of water in all phases, including ice. Reported as \x27missing\x27 for grid cells occupied entirely by \x27sea\x27", \ + "dimensions": "longitude latitude sdepth time1", \ + "out_name": "mrsol", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_day} + + sed -i '/"rsds": {/i \ + "fsntoa": { \ + "frequency": "day", \ + "modeling_realm": "atmos", \ + "standard_name": "toa_net_shortwave_flux", \ + "units": "W m-2", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "TOA Net Solar Radiation", \ + "comment": "at the top of the atmosphere (to be compared with satellite measurements)", \ + "dimensions": "longitude latitude time", \ + "out_name": "fsntoa", \ + "type": "real", \ + "positive": "up", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_day} + + sed -i '/"tas": {/i \ + "tas": { \ + "frequency": "day", \ + "modeling_realm": "atmos", \ + "standard_name": "air_temperature", \ + "units": "K", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Near-Surface Air Temperature", \ + "comment": "near-surface (usually, 2 meter) air temperature", \ + "dimensions": "longitude latitude time height2m", \ + "out_name": "tas", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_day} + + sed -i '/"uas": {/i \ + "ua9": { \ + "frequency": "day", \ + "modeling_realm": "atmos", \ + "standard_name": "eastward_wind", \ + "units": "m s-1", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Eastward Wind", \ + "comment": "Zonal wind (positive in a eastward direction).", \ + "dimensions": "longitude latitude plev9 time", \ + "out_name": "ua", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_day} + + sed -i '/"zg": {/i \ + "wap850": { \ + "frequency": "day", \ + "modeling_realm": "atmos", \ + "standard_name": "lagrangian_tendency_of_air_pressure", \ + "units": "Pa s-1", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Omega (=dp/dt)", \ + "comment": "Omega (vertical velocity in pressure coordinates, positive downwards)", \ + "dimensions": "longitude latitude p850 time", \ + "out_name": "wap", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_day} + + sed -i '/"zg": {/i \ + "zg200": { \ + "frequency": "day", \ + "modeling_realm": "atmos", \ + "standard_name": "geopotential_height", \ + "units": "m", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Geopotential Height", \ + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.",\ + "dimensions": "longitude latitude p200 time", \ + "out_name": "zg200", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "zg500": { \ + "frequency": "day", \ + "modeling_realm": "atmos", \ + "standard_name": "geopotential_height", \ + "units": "m", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Geopotential Height", \ + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.",\ + "dimensions": "longitude latitude p500 time", \ + "out_name": "zg500", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "zg850": { \ + "frequency": "day", \ + "modeling_realm": "atmos", \ + "standard_name": "geopotential_height", \ + "units": "m", \ + "cell_methods": "time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Geopotential Height", \ + "comment": "Geopotential is the sum of the specific gravitational potential energy relative to the geoid and the specific centripetal potential energy. Geopotential height is the geopotential divided by the standard acceleration due to gravity. It is numerically similar to the altitude (or geometric height) and not to the quantity with standard name height, which is relative to the surface.",\ + "dimensions": "longitude latitude p850 time", \ + "out_name": "zg850", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "mrros": { \ + "frequency": "day", \ + "modeling_realm": "land", \ + "standard_name": "surface_runoff_flux", \ + "units": "kg m-2 s-1", \ + "cell_methods": "area: mean where land time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Surface Runoff", \ + "comment": "The total surface run off leaving the land portion of the grid cell (excluding drainage through the base of the soil model).", \ + "dimensions": "longitude latitude time", \ + "out_name": "mrros", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "mrfso": { \ + "frequency": "day", \ + "modeling_realm": "land landIce", \ + "standard_name": "soil_frozen_water_content", \ + "units": "kg m-2", \ + "cell_methods": "area: mean where land time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Soil Frozen Water Content", \ + "comment": "The mass per unit area (summed over all model layers) of frozen water.", \ + "dimensions": "longitude latitude time", \ + "out_name": "mrfso", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "tsl": { \ + "frequency": "day", \ + "modeling_realm": "land", \ + "standard_name": "soil_temperature", \ + "units": "K", \ + "cell_methods": "area: mean where land time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Temperature of Soil", \ + "comment": "Temperature of soil. Reported as missing for grid cells with no land.", \ + "dimensions": "longitude latitude sdepth time", \ + "out_name": "tsl", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + } + ' ${table_file_day} + + + +# Additions to CMIP6_Lmon.json: + + sed -i '/"nbp": {/i \ + "mrsol": { \ + "frequency": "mon", \ + "modeling_realm": "land", \ + "standard_name": "mass_content_of_water_in_soil_layer", \ + "units": "kg m-2", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Total Water Content of Soil Layer", \ + "comment": "in each soil layer, the mass of water in all phases, including ice. Reported as \x27missing\x27 for grid cells occupied entirely by \x27sea\x27", \ + "dimensions": "longitude latitude sdepth time1", \ + "out_name": "mrsol", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_Lmon} + + sed -i '/"tsl": {/i \ + "tslsi": { \ + "frequency": "mon", \ + "modeling_realm": "land", \ + "standard_name": "surface_temperature", \ + "units": "K", \ + "cell_methods": "area: time: mean (comment: over land and sea ice)", \ + "cell_measures": "area: areacella", \ + "long_name": "Surface Temperature Where Land or Sea Ice", \ + "comment": "Surface temperature of all surfaces except open ocean.", \ + "dimensions": "longitude latitude time", \ + "out_name": "tslsi", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + } + ' ${table_file_Lmon} + + + +# Additions to CMIP6_CV.json: + + sed -i '/"s1910":"initialized near end of year 1910",/i \ + "afsf":"initialized in 1979", \ + "afsc":"initialized in 1979", \ + "AFSI":"initialized in 1979", \ + "C001":"initialized in 1979", \ + "C002":"initialized in 1979", \ + "C003":"initialized in 1979", \ + "C004":"initialized in 1979", \ + "C005":"initialized in 1979", \ + "c001":"initialized in 1979", \ + "c002":"initialized in 1979", \ + "c003":"initialized in 1979", \ + "c004":"initialized in 1979", \ + "c005":"initialized in 1979", \ + "C006":"initialized in 1979", \ + "C007":"initialized in 1979", \ + "C008":"initialized in 1979", \ + "C009":"initialized in 1979", \ + "C010":"initialized in 1979", \ + "E001":"initialized in 2009", \ + "E002":"initialized in 2009", \ + "E003":"initialized in 2009", \ + "E004":"initialized in 2009", \ + "E005":"initialized in 2009", \ + "E006":"initialized in 2009", \ + "E007":"initialized in 2009", \ + "E008":"initialized in 2009", \ + "E009":"initialized in 2009", \ + "E010":"initialized in 2009", \ + "E011":"initialized in 2009", \ + "E012":"initialized in 2009", \ + "E013":"initialized in 2009", \ + "E014":"initialized in 2009", \ + "E015":"initialized in 2009", \ + "E016":"initialized in 2009", \ + "E017":"initialized in 2009", \ + "E018":"initialized in 2009", \ + "E019":"initialized in 2009", \ + "E020":"initialized in 2009", \ + "E021":"initialized in 2009", \ + "E022":"initialized in 2009", \ + "E023":"initialized in 2009", \ + "E024":"initialized in 2009", \ + "E025":"initialized in 2009", \ + "E026":"initialized in 2009", \ + "E027":"initialized in 2009", \ + "E028":"initialized in 2009", \ + "E029":"initialized in 2009", \ + "E030":"initialized in 2009", \ + "E031":"initialized in 2009", \ + "E032":"initialized in 2009", \ + "E033":"initialized in 2009", \ + "E034":"initialized in 2009", \ + "E035":"initialized in 2009", \ + "E036":"initialized in 2009", \ + "E037":"initialized in 2009", \ + "E038":"initialized in 2009", \ + "E039":"initialized in 2009", \ + "E040":"initialized in 2009", \ + "E041":"initialized in 2009", \ + "E042":"initialized in 2009", \ + "E043":"initialized in 2009", \ + "E044":"initialized in 2009", \ + "E045":"initialized in 2009", \ + "E046":"initialized in 2009", \ + "E047":"initialized in 2009", \ + "E048":"initialized in 2009", \ + "E049":"initialized in 2009", \ + "E050":"initialized in 2009", \ + "E051":"initialized in 2009", \ + "E052":"initialized in 2009", \ + "E053":"initialized in 2009", \ + "E054":"initialized in 2009", \ + "E055":"initialized in 2009", \ + "E056":"initialized in 2009", \ + "E057":"initialized in 2009", \ + "E058":"initialized in 2009", \ + "E059":"initialized in 2009", \ + "E060":"initialized in 2009", \ + "E061":"initialized in 2009", \ + "E062":"initialized in 2009", \ + "E063":"initialized in 2009", \ + "E064":"initialized in 2009", \ + "E065":"initialized in 2009", \ + "E066":"initialized in 2009", \ + "E067":"initialized in 2009", \ + "E068":"initialized in 2009", \ + "E069":"initialized in 2009", \ + "E070":"initialized in 2009", \ + "E071":"initialized in 2009", \ + "E072":"initialized in 2009", \ + "E073":"initialized in 2009", \ + "E074":"initialized in 2009", \ + "E075":"initialized in 2009", \ + "E076":"initialized in 2009", \ + "E077":"initialized in 2009", \ + "E078":"initialized in 2009", \ + "E079":"initialized in 2009", \ + "E080":"initialized in 2009", \ + "E081":"initialized in 2009", \ + "E082":"initialized in 2009", \ + "E083":"initialized in 2009", \ + "E084":"initialized in 2009", \ + "E085":"initialized in 2009", \ + "E086":"initialized in 2009", \ + "E087":"initialized in 2009", \ + "E088":"initialized in 2009", \ + "E089":"initialized in 2009", \ + "E090":"initialized in 2009", \ + "E091":"initialized in 2009", \ + "E092":"initialized in 2009", \ + "E093":"initialized in 2009", \ + "E094":"initialized in 2009", \ + "E095":"initialized in 2009", \ + "E096":"initialized in 2009", \ + "E097":"initialized in 2009", \ + "E098":"initialized in 2009", \ + "E099":"initialized in 2009", \ + "E100":"initialized in 2009", \ + "e001":"initialized in 2009", \ + "e002":"initialized in 2009", \ + "e003":"initialized in 2009", \ + "e004":"initialized in 2009", \ + "e005":"initialized in 2009", \ + "e006":"initialized in 2009", \ + "e007":"initialized in 2009", \ + "e008":"initialized in 2009", \ + "e009":"initialized in 2009", \ + "e010":"initialized in 2009", \ + "e011":"initialized in 2009", \ + "e012":"initialized in 2009", \ + "e013":"initialized in 2009", \ + "e014":"initialized in 2009", \ + "e015":"initialized in 2009", \ + "e016":"initialized in 2009", \ + "e017":"initialized in 2009", \ + "e018":"initialized in 2009", \ + "e019":"initialized in 2009", \ + "e020":"initialized in 2009", \ + "e021":"initialized in 2009", \ + "e022":"initialized in 2009", \ + "e023":"initialized in 2009", \ + "e024":"initialized in 2009", \ + "e025":"initialized in 2009", \ + "e026":"initialized in 2009", \ + "e027":"initialized in 2009", \ + "e028":"initialized in 2009", \ + "e029":"initialized in 2009", \ + "e030":"initialized in 2009", \ + "e031":"initialized in 2009", \ + "e032":"initialized in 2009", \ + "e033":"initialized in 2009", \ + "e034":"initialized in 2009", \ + "e035":"initialized in 2009", \ + "e036":"initialized in 2009", \ + "e037":"initialized in 2009", \ + "e038":"initialized in 2009", \ + "e039":"initialized in 2009", \ + "e040":"initialized in 2009", \ + "e041":"initialized in 2009", \ + "e042":"initialized in 2009", \ + "e043":"initialized in 2009", \ + "e044":"initialized in 2009", \ + "e045":"initialized in 2009", \ + "e046":"initialized in 2009", \ + "e047":"initialized in 2009", \ + "e048":"initialized in 2009", \ + "e049":"initialized in 2009", \ + "e050":"initialized in 2009", \ + "e051":"initialized in 2009", \ + "e052":"initialized in 2009", \ + "e053":"initialized in 2009", \ + "e054":"initialized in 2009", \ + "e055":"initialized in 2009", \ + "e056":"initialized in 2009", \ + "e057":"initialized in 2009", \ + "e058":"initialized in 2009", \ + "e059":"initialized in 2009", \ + "e060":"initialized in 2009", \ + "e061":"initialized in 2009", \ + "e062":"initialized in 2009", \ + "e063":"initialized in 2009", \ + "e064":"initialized in 2009", \ + "e065":"initialized in 2009", \ + "e066":"initialized in 2009", \ + "e067":"initialized in 2009", \ + "e068":"initialized in 2009", \ + "e069":"initialized in 2009", \ + "e070":"initialized in 2009", \ + "e071":"initialized in 2009", \ + "e072":"initialized in 2009", \ + "e073":"initialized in 2009", \ + "e074":"initialized in 2009", \ + "e075":"initialized in 2009", \ + "e076":"initialized in 2009", \ + "e077":"initialized in 2009", \ + "e078":"initialized in 2009", \ + "e079":"initialized in 2009", \ + "e080":"initialized in 2009", \ + "e081":"initialized in 2009", \ + "e082":"initialized in 2009", \ + "e083":"initialized in 2009", \ + "e084":"initialized in 2009", \ + "e085":"initialized in 2009", \ + "e086":"initialized in 2009", \ + "e087":"initialized in 2009", \ + "e088":"initialized in 2009", \ + "e089":"initialized in 2009", \ + "e090":"initialized in 2009", \ + "e091":"initialized in 2009", \ + "e092":"initialized in 2009", \ + "e093":"initialized in 2009", \ + "e094":"initialized in 2009", \ + "e095":"initialized in 2009", \ + "e096":"initialized in 2009", \ + "e097":"initialized in 2009", \ + "e098":"initialized in 2009", \ + "e099":"initialized in 2009", \ + "e100":"initialized in 2009", + ' ${table_file_CV} + + + + sed -i '/"1pctCO2-4xext":{/i \ + "AISI":{ \ + "activity_id":[ \ + "CMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"Atmosphere Interactive Soil Interactive", \ + "experiment_id":"AISI", \ + "parent_activity_id":[ \ + "no parent" \ + ], \ + "parent_experiment_id":[ \ + "no parent" \ + ], \ + "required_model_components":[ \ + "AGCM" \ + ], \ + "sub_experiment_id":[ \ + "C001", \ + "C002", \ + "C003", \ + "C004", \ + "C005", \ + "C006", \ + "C007", \ + "C008", \ + "C009", \ + "C010", \ + "E001", \ + "E002", \ + "E003", \ + "E004", \ + "E005", \ + "E006", \ + "E007", \ + "E008", \ + "E009", \ + "E010", \ + "E011", \ + "E012", \ + "E013", \ + "E014", \ + "E015", \ + "E016", \ + "E017", \ + "E018", \ + "E019", \ + "E020", \ + "E021", \ + "E022", \ + "E023", \ + "E024", \ + "E025", \ + "E026", \ + "E027", \ + "E028", \ + "E029", \ + "E030", \ + "E031", \ + "E032", \ + "E033", \ + "E034", \ + "E035", \ + "E036", \ + "E037", \ + "E038", \ + "E039", \ + "E040", \ + "E041", \ + "E042", \ + "E043", \ + "E044", \ + "E045", \ + "E046", \ + "E047", \ + "E048", \ + "E049", \ + "E050", \ + "E051", \ + "E052", \ + "E053", \ + "E054", \ + "E055", \ + "E056", \ + "E057", \ + "E058", \ + "E059", \ + "E060", \ + "E061", \ + "E062", \ + "E063", \ + "E064", \ + "E065", \ + "E066", \ + "E067", \ + "E068", \ + "E069", \ + "E070", \ + "E071", \ + "E072", \ + "E073", \ + "E074", \ + "E075", \ + "E076", \ + "E077", \ + "E078", \ + "E079", \ + "E080", \ + "E081", \ + "E082", \ + "E083", \ + "E084", \ + "E085", \ + "E086", \ + "E087", \ + "E088", \ + "E089", \ + "E090", \ + "E091", \ + "E092", \ + "E093", \ + "E094", \ + "E095", \ + "E096", \ + "E097", \ + "E098", \ + "E099", \ + "E100" \ + ] \ + }, \ + "AISF":{ \ + "activity_id":[ \ + "CMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"Atmosphere Interactive Soil Fixed", \ + "experiment_id":"AISF", \ + "parent_activity_id":[ \ + "no parent" \ + ], \ + "parent_experiment_id":[ \ + "no parent" \ + ], \ + "required_model_components":[ \ + "AGCM" \ + ], \ + "sub_experiment_id":[ \ + "c001", \ + "c002", \ + "c003", \ + "c004", \ + "c005", \ + "e001", \ + "e002", \ + "e003", \ + "e004", \ + "e005", \ + "e006", \ + "e007", \ + "e008", \ + "e009", \ + "e010", \ + "e011", \ + "e012", \ + "e013", \ + "e014", \ + "e015", \ + "e016", \ + "e017", \ + "e018", \ + "e019", \ + "e020", \ + "e021", \ + "e022", \ + "e023", \ + "e024", \ + "e025", \ + "e026", \ + "e027", \ + "e028", \ + "e029", \ + "e030", \ + "e031", \ + "e032", \ + "e033", \ + "e034", \ + "e035", \ + "e036", \ + "e037", \ + "e038", \ + "e039", \ + "e040", \ + "e041", \ + "e042", \ + "e043", \ + "e044", \ + "e045", \ + "e046", \ + "e047", \ + "e048", \ + "e049", \ + "e050", \ + "e051", \ + "e052", \ + "e053", \ + "e054", \ + "e055", \ + "e056", \ + "e057", \ + "e058", \ + "e059", \ + "e060", \ + "e061", \ + "e062", \ + "e063", \ + "e064", \ + "e065", \ + "e066", \ + "e067", \ + "e068", \ + "e069", \ + "e070", \ + "e071", \ + "e072", \ + "e073", \ + "e074", \ + "e075", \ + "e076", \ + "e077", \ + "e078", \ + "e079", \ + "e080", \ + "e081", \ + "e082", \ + "e083", \ + "e084", \ + "e085", \ + "e086", \ + "e087", \ + "e088", \ + "e089", \ + "e090", \ + "e091", \ + "e092", \ + "e093", \ + "e094", \ + "e095", \ + "e096", \ + "e097", \ + "e098", \ + "e099", \ + "e100" \ + ] \ + }, \ + "AFSI":{ \ + "activity_id":[ \ + "CMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"Atmosphere Fixed Soil Interactive", \ + "experiment_id":"AFSI", \ + "parent_activity_id":[ \ + "no parent" \ + ], \ + "parent_experiment_id":[ \ + "no parent" \ + ], \ + "required_model_components":[ \ + "AGCM" \ + ], \ + "sub_experiment_id":[ \ + "AFSI" \ + ] \ + }, \ + "AFSF":{ \ + "activity_id":[ \ + "CMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"Atmosphere Fixed, Soil Fixed", \ + "experiment_id":"AFSF", \ + "parent_activity_id":[ \ + "no parent" \ + ], \ + "parent_experiment_id":[ \ + "no parent" \ + ], \ + "required_model_components":[ \ + "AGCM" \ + ], \ + "sub_experiment_id":[ \ + "afsf" \ + ] \ + }, \ + "AFSC":{ \ + "activity_id":[ \ + "CMIP" \ + ], \ + "additional_allowed_model_components":[ \ + "AER", \ + "CHEM", \ + "BGC" \ + ], \ + "experiment":"Atmosphere Fixed , Soil Climate Fixed", \ + "experiment_id":"AFSC", \ + "parent_activity_id":[ \ + "no parent" \ + ], \ + "parent_experiment_id":[ \ + "no parent" \ + ], \ + "required_model_components":[ \ + "AGCM" \ + ], \ + "sub_experiment_id":[ \ + "afsc" \ + ] \ + }, + ' ${table_file_CV} + + # Remove the trailing spaces of the inserted block above: + sed -i -e 's/\s*$//g' -e 's/,$/, /g' ${table_file_coordinate} + sed -i -e 's/\s*$//g' -e 's/,$/, /g' ${table_file_6hrPlevPt} + sed -i -e 's/\s*$//g' -e 's/,$/, /g' ${table_file_Amon} + sed -i -e 's/\s*$//g' -e 's/,$/, /g' ${table_file_day} + sed -i -e 's/\s*$//g' -e 's/,$/, /g' ${table_file_Lmon} + sed -i -e 's/\s*$//g' ${table_file_CV} + + cd - + + echo + echo " $0 reports:" + echo " The adjusted files are:" + echo " ${table_path}/${table_file_coordinate}" + echo " ${table_path}/${table_file_6hrPlevPt}" + echo " ${table_path}/${table_file_Amon}" + echo " ${table_path}/${table_file_day}" + echo " ${table_path}/${table_file_Lmon}" + echo " ${table_path}/${table_file_CV}" + echo " Which is part of a nested repository, therefore to view the diff, run:" + echo " cd ${table_path}; git diff; cd -" + echo + + else + echo + echo " Nothing done, no set of variables and / or experiments has been selected to add to the tables." + echo + fi + +else + echo + echo " This scripts requires no argument:" + echo " $0" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/add-variables-with-pressure-levels-for-rcm-forcing.sh b/ece2cmor/ece2cmor3/scripts/add-variables-with-pressure-levels-for-rcm-forcing.sh new file mode 100755 index 0000000000000000000000000000000000000000..6f272ba341749b8c74f2050acc8cdfef6767f122 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/add-variables-with-pressure-levels-for-rcm-forcing.sh @@ -0,0 +1,398 @@ +#!/bin/bash +# Thomas Reerink +# +# This script adds / inserts some non-cmor variables and coordinates in order to have a set of +# variables with optimal pressure levels for RCM dynamic forcing. +# +# This scripts requires no arguments. +# + +if [ "$#" -eq 0 ]; then + + add_variables_with_pressure_levels_for_rcm_forcing=True + + if [ add_variables_with_pressure_levels_for_rcm_forcing ]; then + # See #664 https://github.com/EC-Earth/ece2cmor3/issues/664 + + # Add two sets of dynamic RCM forcing variables on dedicated pressure levels. + + table_path=../resources/cmip6-cmor-tables/Tables/ + table_file_coordinate=CMIP6_coordinate.json + table_file_6hrPlevPt=CMIP6_6hrPlevPt.json + table_file_6hrPlev=CMIP6_6hrPlev.json + + cd ${table_path} + git checkout ${table_file_coordinate} + git checkout ${table_file_6hrPlevPt} + git checkout ${table_file_6hrPlev} + +# Adding the plev23r & plev36 coordinates to the CMOR tables: + + sed -i '/"plev27": {/i \ + "plev23r": { \ + "standard_name": "air_pressure", \ + "units": "Pa", \ + "axis": "Z", \ + "long_name": "pressure", \ + "climatology": "", \ + "formula": "", \ + "must_have_bounds": "no", \ + "out_name": "plev", \ + "positive": "down", \ + "requested": [ \ + "100000.", \ + "95000.", \ + "90000.", \ + "85000.", \ + "80000.", \ + "75000.", \ + "70000.", \ + "65000.", \ + "60000.", \ + "55000.", \ + "50000.", \ + "45000.", \ + "40000.", \ + "35000.", \ + "30000.", \ + "25000.", \ + "20000.", \ + "15000.", \ + "10000.", \ + "7000.", \ + "5000.", \ + "3000.", \ + "1000." \ + ], \ + "requested_bounds": "", \ + "stored_direction": "decreasing", \ + "tolerance": "", \ + "type": "double", \ + "valid_max": "", \ + "valid_min": "", \ + "value": "", \ + "z_bounds_factors": "", \ + "z_factors": "", \ + "bounds_values": "", \ + "generic_level_name": "" \ + }, + ' ${table_file_coordinate} + + sed -i '/"plev39": {/i \ + "plev36": { \ + "standard_name": "air_pressure", \ + "units": "Pa", \ + "axis": "Z", \ + "long_name": "pressure", \ + "climatology": "", \ + "formula": "", \ + "must_have_bounds": "no", \ + "out_name": "plev", \ + "positive": "down", \ + "requested": [ \ + "103000.", \ + "101500.", \ + "100000.", \ + "97500.", \ + "95000.", \ + "92500.", \ + "90000.", \ + "87500.", \ + "85000.", \ + "82500.", \ + "80000.", \ + "77500.", \ + "75000.", \ + "70000.", \ + "65000.", \ + "60000.", \ + "55000.", \ + "50000.", \ + "45000.", \ + "40000.", \ + "35000.", \ + "30000.", \ + "25000.", \ + "22500.", \ + "20000.", \ + "17500.", \ + "15000.", \ + "12500.", \ + "10000.", \ + "7000.", \ + "5000.", \ + "3000.", \ + "1000.", \ + "500.", \ + "300.", \ + "100." \ + ], \ + "requested_bounds": "", \ + "stored_direction": "decreasing", \ + "tolerance": "", \ + "type": "double", \ + "valid_max": "", \ + "valid_min": "", \ + "value": "", \ + "z_bounds_factors": "", \ + "z_factors": "", \ + "bounds_values": "", \ + "generic_level_name": "" \ + }, + ' ${table_file_coordinate} + + +# Adding the variables to the 6hrPlevPt table: + + sed -i '/"ta7h": {/i \ + "ta23r": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "air_temperature", \ + "units": "K", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Air Temperature", \ + "comment": "Air Temperature", \ + "dimensions": "longitude latitude plev23r time1", \ + "out_name": "ta", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "ta36": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "air_temperature", \ + "units": "K", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Air Temperature", \ + "comment": "Air Temperature", \ + "dimensions": "longitude latitude plev36 time1", \ + "out_name": "ta", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + sed -i '/"ua7h": {/i \ + "ua23r": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "eastward_wind", \ + "units": "m s-1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Eastward Wind", \ + "comment": "Zonal wind (positive in a eastward direction).", \ + "dimensions": "longitude latitude plev23r time1", \ + "out_name": "ua", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "ua36": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "eastward_wind", \ + "units": "m s-1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Eastward Wind", \ + "comment": "Zonal wind (positive in a eastward direction).", \ + "dimensions": "longitude latitude plev36 time1", \ + "out_name": "ua", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + + sed -i '/"va7h": {/i \ + "va23r": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "northward_wind", \ + "units": "m s-1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Northward Wind", \ + "comment": "Meridional wind (positive in a northward direction).", \ + "dimensions": "longitude latitude plev23r time1", \ + "out_name": "va", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "va36": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "northward_wind", \ + "units": "m s-1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Northward Wind", \ + "comment": "Meridional wind (positive in a northward direction).", \ + "dimensions": "longitude latitude plev36 time1", \ + "out_name": "va", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + sed -i '/"hus7h": {/i \ + "hus23r": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "specific_humidity", \ + "units": "1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Specific Humidity", \ + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", \ + "dimensions": "longitude latitude plev23r time1", \ + "out_name": "hus", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, \ + "hus36": { \ + "frequency": "6hrPt", \ + "modeling_realm": "atmos", \ + "standard_name": "specific_humidity", \ + "units": "1", \ + "cell_methods": "area: mean time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Specific Humidity", \ + "comment": "Specific humidity is the mass fraction of water vapor in (moist) air.", \ + "dimensions": "longitude latitude plev36 time1", \ + "out_name": "hus", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + +# Add tosa (tos), tsl4sl (tsl) on 6hrPlevPt table & siconca on 6hrPlev table: + + sed -i '/"ts": {/i \ + "tosa": { \ + "frequency": "6hrPt", \ + "modeling_realm": "ocean", \ + "standard_name": "sea_surface_temperature", \ + "units": "degC", \ + "cell_methods": "area: mean where sea time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Sea Surface Temperature", \ + "comment": "Temperature of upper boundary of the liquid ocean, including temperatures below sea-ice and floating ice shelves.", \ + "dimensions": "longitude latitude time1", \ + "out_name": "tos", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + sed -i '/"ua": {/i \ + "tsl4sl": { \ + "frequency": "6hrPt", \ + "modeling_realm": "land", \ + "standard_name": "soil_temperature", \ + "units": "K", \ + "cell_methods": "area: mean where land time: point", \ + "cell_measures": "area: areacella", \ + "long_name": "Temperature of Soil", \ + "comment": "Temperature of soil. Reported as missing for grid cells with no land.", \ + "dimensions": "longitude latitude sdepth time1", \ + "out_name": "tsl", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlevPt} + + sed -i '/"tas": {/i \ + "siconca": { \ + "frequency": "6hr", \ + "modeling_realm": "seaIce", \ + "standard_name": "sea_ice_area_fraction", \ + "units": "%", \ + "cell_methods": "area: time: mean", \ + "cell_measures": "area: areacella", \ + "long_name": "Sea-Ice Area Percentage (Atmospheric Grid)", \ + "comment": "Percentage of grid cell covered by sea ice", \ + "dimensions": "longitude latitude time typesi", \ + "out_name": "siconca", \ + "type": "real", \ + "positive": "", \ + "valid_min": "", \ + "valid_max": "", \ + "ok_min_mean_abs": "", \ + "ok_max_mean_abs": "" \ + }, + ' ${table_file_6hrPlev} + + # Remove the trailing spaces of the inserted block above: + sed -i -e 's/\s*$//g' -e 's/,$/, /g' ${table_file_coordinate} + sed -i -e 's/\s*$//g' -e 's/,$/, /g' ${table_file_6hrPlevPt} + sed -i -e 's/\s*$//g' -e 's/,$/, /g' ${table_file_6hrPlev} + + cd - + + echo + echo " $0 reports:" + echo " The adjusted files are:" + echo " ${table_path}/${table_file_coordinate}" + echo " ${table_path}/${table_file_6hrPlevPt}" + echo " ${table_path}/${table_file_6hrPlev}" + echo " Which is part of a nested repository, therefore to view the diff, run:" + echo " cd ${table_path}; git diff; cd -" + echo + + else + echo + echo " Nothing done, no set of variables and / or experiments has been selected to add to the tables." + echo + fi + +else + echo + echo " This scripts requires no argument:" + echo " $0" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/apply-the-s126-s585-request-for-s245-370.sh b/ece2cmor/ece2cmor3/scripts/apply-the-s126-s585-request-for-s245-370.sh new file mode 100755 index 0000000000000000000000000000000000000000..86a2ba393d28ebf51e025e835d3b81e04db2e4e4 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/apply-the-s126-s585-request-for-s245-370.sh @@ -0,0 +1,63 @@ +#!/bin/bash +# Thomas Reerink +# +# This scripts needs one argument: +# +# ${1} the first argument is the name of the control-output-files directory. +# +# +# Run example: +# ./apply-the-s126-s585-request-for-s245-370.sh control-output-files +# +# With this script the ScenarioMIP requests for ScenarioMIP-ssp245 & ScenarioMIP-ssp370 are taken equal to the ones of ScenarioMIP-ssp585 & ScenarioMIP-ssp126. +# We consider it as a flaw in the data request that they differ, see also issue 517: https://github.com/EC-Earth/ece2cmor3/issues/517 +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script is called at the end of the script: +# genecec.py + + +if [ "$#" -eq 1 ]; then + + # The name of the control output files directory: + cofdir=$1 + +# Generating the lists has been done with help of: +# ls ScenarioMIP/*/cmip6-experiment-ScenarioMIP-ssp[5]*/ppt0000000000 ScenarioMIP/*/cmip6-experiment-ScenarioMIP-ssp[5]*/pptdddddd0600 ScenarioMIP/*/cmip6-experiment-ScenarioMIP-ssp[5]*/cmip6-data-request-varlist-ScenarioMIP-ssp*-EC-EARTH-*.json +# ls ScenarioMIP/*/cmip6-experiment-ScenarioMIP-ssp[2-3]*/ppt0000000000 ScenarioMIP/*/cmip6-experiment-ScenarioMIP-ssp[2-3]*/pptdddddd0600 ScenarioMIP/*/cmip6-experiment-ScenarioMIP-ssp[2-3]*/cmip6-data-request-varlist-ScenarioMIP-ssp*-EC-EARTH-*.json + + cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585/cmip6-data-request-varlist-ScenarioMIP-ssp585-EC-EARTH-AOGCM.json ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp245/cmip6-data-request-varlist-ScenarioMIP-ssp245-EC-EARTH-AOGCM.json + cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585/ppt0000000000 ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp245/ppt0000000000 + cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585/pptdddddd0600 ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp245/pptdddddd0600 + cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585/cmip6-data-request-varlist-ScenarioMIP-ssp585-EC-EARTH-AOGCM.json ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp370/cmip6-data-request-varlist-ScenarioMIP-ssp370-EC-EARTH-AOGCM.json + cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585/ppt0000000000 ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp370/ppt0000000000 + cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585/pptdddddd0600 ${cofdir}/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp370/pptdddddd0600 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp585/cmip6-data-request-varlist-ScenarioMIP-ssp585-EC-EARTH-Veg-LR.json ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp245/cmip6-data-request-varlist-ScenarioMIP-ssp245-EC-EARTH-Veg-LR.json +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp585/ppt0000000000 ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp245/ppt0000000000 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp585/pptdddddd0600 ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp245/pptdddddd0600 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp585/cmip6-data-request-varlist-ScenarioMIP-ssp585-EC-EARTH-Veg-LR.json ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp370/cmip6-data-request-varlist-ScenarioMIP-ssp370-EC-EARTH-Veg-LR.json +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp585/ppt0000000000 ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp370/ppt0000000000 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp585/pptdddddd0600 ${cofdir}/ScenarioMIP/EC-EARTH-Veg-LR/cmip6-experiment-ScenarioMIP-ssp370/pptdddddd0600 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp585/cmip6-data-request-varlist-ScenarioMIP-ssp585-EC-EARTH-AerChem.json ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp370/cmip6-data-request-varlist-ScenarioMIP-ssp370-EC-EARTH-AerChem.json +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp585/ppt0000000000 ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp370/ppt0000000000 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp585/pptdddddd0600 ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp370/pptdddddd0600 + +# All lines below seem to be not relevant, as thise are identical already (see: https://github.com/EC-Earth/ece2cmor3/issues/517#issuecomment-535495023): +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp585/cmip6-data-request-varlist-ScenarioMIP-ssp585-EC-EARTH-AerChem.json ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp245/cmip6-data-request-varlist-ScenarioMIP-ssp245-EC-EARTH-AerChem.json +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp585/ppt0000000000 ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp245/ppt0000000000 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp585/pptdddddd0600 ${cofdir}/ScenarioMIP/EC-EARTH-AerChem/cmip6-experiment-ScenarioMIP-ssp245/pptdddddd0600 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp585/cmip6-data-request-varlist-ScenarioMIP-ssp585-EC-EARTH-Veg.json ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp245/cmip6-data-request-varlist-ScenarioMIP-ssp245-EC-EARTH-Veg.json +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp585/ppt0000000000 ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp245/ppt0000000000 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp585/pptdddddd0600 ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp245/pptdddddd0600 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp585/cmip6-data-request-varlist-ScenarioMIP-ssp585-EC-EARTH-Veg.json ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp370/cmip6-data-request-varlist-ScenarioMIP-ssp370-EC-EARTH-Veg.json +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp585/ppt0000000000 ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp370/ppt0000000000 +# cp -f ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp585/pptdddddd0600 ${cofdir}/ScenarioMIP/EC-EARTH-Veg/cmip6-experiment-ScenarioMIP-ssp370/pptdddddd0600 + +else + echo ' ' + echo ' This scripts requires one argument, the control output directory:' + echo ' ' $0 control-output-files + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/scripts/change-ece2cmor3-root-dir-in-develop-scripts.sh b/ece2cmor/ece2cmor3/scripts/change-ece2cmor3-root-dir-in-develop-scripts.sh new file mode 100755 index 0000000000000000000000000000000000000000..963df36a32d86b439031707f487c562551929545 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/change-ece2cmor3-root-dir-in-develop-scripts.sh @@ -0,0 +1,43 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This script applies the required changes to run ece2cmor3 & genecec in the PEXTRA mode or it resets these adjustments +# +# This scripts requires one argument: the ece2cmor3 root dir name +# +# Run this script without arguments for examples how to call this script. +# For examples how to call this script, run it without arguments. +# + +if [ "$#" -eq 1 ]; then + + default_root_dir=ece2cmor3 + adjusted_root_dir=$1 + + # First revert the concerned files: + git checkout ../../environment.yml + git checkout config-create-basic-ec-earth-cmip6-nemo-namelist + git checkout create-nemo-only-list/create-nemo-only-list.sh + git checkout update-basic-identifiedmissing-ignored-files.sh + git checkout determine-missing-variables.sh + + # Adjust files: + sed -i -e "s/name: ${default_root_dir}/name: ${adjusted_root_dir}/" ../../environment.yml + sed -i -e "s/cmorize\/${default_root_dir}/cmorize\/${adjusted_root_dir}/" config-create-basic-ec-earth-cmip6-nemo-namelist + sed -i -e "s/cmorize\/${default_root_dir}/cmorize\/${adjusted_root_dir}/" create-nemo-only-list/create-nemo-only-list.sh + sed -i -e "s/cmorize\/${default_root_dir}/cmorize\/${adjusted_root_dir}/" update-basic-identifiedmissing-ignored-files.sh + sed -i -e "s/cmorize\/${default_root_dir}/cmorize\/${adjusted_root_dir}/" determine-missing-variables.sh + + git diff ../../environment.yml + git diff config-create-basic-ec-earth-cmip6-nemo-namelist + git diff create-nemo-only-list/create-nemo-only-list.sh + git diff update-basic-identifiedmissing-ignored-files.sh + git diff determine-missing-variables.sh + +else + echo + echo " This scripts requires one argument:" + echo " $0 ece2cmor3" + echo " $0 ece2cmor3-python-2" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/check-for-obsolete-cmor-variables-in-json-file.py b/ece2cmor/ece2cmor3/scripts/check-for-obsolete-cmor-variables-in-json-file.py new file mode 100755 index 0000000000000000000000000000000000000000..7c25026b829b5e875dc20fd3fc7fa1953e65e05f --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/check-for-obsolete-cmor-variables-in-json-file.py @@ -0,0 +1,70 @@ +#!/usr/bin/env python + +# Call this script by: +# ./check-for-obsolete-cmor-variables-in-json-file.py + +import sys +import os +import logging +import argparse +import json +from ece2cmor3 import ece2cmorlib, taskloader, cmor_source, cmor_utils, components + +# Logging configuration +logformat = "%(levelname)s:%(name)s: %(message)s" +logdateformat = "%Y-%m-%d %H:%M:%S" +logging.basicConfig(level=logging.DEBUG, format=logformat, datefmt=logdateformat) + +# Logger construction +log = logging.getLogger(__name__) + + +def check_obsolete(fname): + f = open(fname).read() + data = json.loads(f) + for d in data: + tgt = d.get("target", None) + if not tgt: continue + tgtlist = [tgt] + if isinstance(tgt, list): + tgtlist = tgt + for tvar in tgtlist: + if tvar not in [t.variable for t in ece2cmorlib.targets]: + if tvar in ["rsscsaf", "rssaf", "rlscsaf", "rlsaf"]: + log.info("Non-cmor target found (see #575) in %s: %s" % (fname, tvar)) + elif tvar in ["tosa", "ta23r", "ta36", "ua23r", "ua36", "va23r", "va36", "hus23r", "hus36", "tsl4sl"]: + log.info("Non-cmor target found (see #664) in %s: %s" % (fname, tvar)) + else: + log.info("Obsolete target found in %s: %s" % (fname, tvar)) + + + + +# Main program +def main(): + parser = argparse.ArgumentParser(description="Check for obsolete cmor variables in json file") + parser.add_argument("--tabdir", metavar="DIR", type=str, default=ece2cmorlib.table_dir_default, + help="Cmorization table directory") + parser.add_argument("--tabid", metavar="PREFIX", type=str, default=ece2cmorlib.prefix_default, + help="Cmorization table prefix string") + parser.add_argument("--output", metavar="FILE", type=str, default=None, help="Output path to write variables to") + cmor_utils.ScriptUtils.add_model_exclusive_options(parser, "checkvars") + + args = parser.parse_args() + + # Initialize ece2cmor: + ece2cmorlib.initialize_without_cmor(ece2cmorlib.conf_path_default, mode=ece2cmorlib.PRESERVE, tabledir=args.tabdir, + tableprefix=args.tabid) + + active_components = cmor_utils.ScriptUtils.get_active_components(args) + + for model in list(components.models.keys()): + if model in active_components: + check_obsolete(components.models[model][components.table_file]) + + # Finishing up + ece2cmorlib.finalize_without_cmor() + + +if __name__ == "__main__": + main() diff --git a/ece2cmor/ece2cmor3/scripts/checkvars.py b/ece2cmor/ece2cmor3/scripts/checkvars.py new file mode 100755 index 0000000000000000000000000000000000000000..210a778e858b89fd0eb2a84273ec25bb5585ad6a --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/checkvars.py @@ -0,0 +1,313 @@ +#!/usr/bin/env python + +import argparse +import json +import logging +import sys +import os +import re + +from ece2cmor3 import ece2cmorlib, taskloader, cmor_utils, components + +# Logging configuration +##logformat = "%(asctime)s %(levelname)s:%(name)s: %(message)s" +logformat = "%(levelname)s:%(name)s: %(message)s" +logdateformat = "%Y-%m-%d %H:%M:%S" +logging.basicConfig(level=logging.DEBUG, format=logformat, datefmt=logdateformat) + +# Logger construction +log = logging.getLogger(__name__) + + +# Converts the input fortran variable namelist file to json +def write_varlist(targets, opath): + tgtgroups = cmor_utils.group(targets, lambda t: t.table) + tgtdict = {k: [t.variable for t in tgtgroups[k]] for k in list(tgtgroups.keys())} + with open(opath, 'w') as ofile: + json.dump(tgtdict, ofile, indent=4, separators=(',', ': ')) + ofile.write('\n') # Add newline at the end of the json file because the python json package doesn't do this. + ofile.close() + logging.info('Writing the json file: {:}'.format(opath)) + +# Check whether an attribute has a None value, if so replace the None value by an empty string: +def check_attribute_for_none_value(object_name, attribute_name, opath): + if getattr(object_name, attribute_name, "") == None: + #logging.info('An empty string is written for {:15} in {:6} {:10} in {:}'.format(attribute_name, object_name.table, object_name.variable, opath)) + logging.info('An empty string is written for {:15} in {:6} {:10} in {:}'.format(attribute_name, object_name.table, object_name.variable, re.sub(r'/.*/', '/*/', opath))) + # Replace the None value by an empty string: + setattr(object_name, attribute_name , "") + +def tweakedorder_table_realm(iterable_object): # From: https://clipc-services.ceda.ac.uk/dreq/index/miptable.html + if iterable_object == 'fx' : return 1 # fx Fixed variables [fx] (8 variables) + elif iterable_object == '3hr' : return 2 # 3hr 3-hourly data [3hr] (23 variables) + elif iterable_object == '6hrLev' : return 3 # 6hrLev 6-hourly data on atmospheric model levels [6hr] (8 variables) + elif iterable_object == '6hrPlev' : return 4 # 6hrPlev 6-hourly atmospheric data on pressure levels (time mean) [6hr] (17 variables) + elif iterable_object == '6hrPlevPt' : return 5 # 6hrPlevPt 6-hourly atmospheric data on pressure levels (instantaneous) [6hr] (37 variables) + elif iterable_object == 'day' : return 6 # day Daily Data (extension - contains both atmospheric and oceanographic data) [day] (38 variables) + elif iterable_object == 'Amon' : return 7 # Amon Monthly atmospheric data [mon] (75 variables) + elif iterable_object == 'Ofx' : return 8 # Ofx Fixed ocean data [fx] (9 variables) + elif iterable_object == 'Oday' : return 9 # Oday Daily ocean data [day] (7 variables) + elif iterable_object == 'Omon' : return 10 # Omon Monthly ocean data [mon] (292 variables) + elif iterable_object == 'Oyr' : return 11 # Oyr Annual ocean variables [yr] (122 variables) + elif iterable_object == 'Odec' : return 12 # Odec Decadal ocean data [decadal] (30 variables) + elif iterable_object == 'Oclim' : return 13 # Oclim Monthly climatologies of ocean data [monClim] (34 variables) + elif iterable_object == 'SIday' : return 14 # SIday Daily sea-ice data [day] (9 variables) + elif iterable_object == 'SImon' : return 15 # SImon Monthly sea-ice data [mon] (89 variables) + elif iterable_object == 'Lmon' : return 16 # Lmon Monthly land surface and soil model fields [mon] (53 variables) + elif iterable_object == 'LImon' : return 17 # LImon Monthly fields for the terrestrial cryosphere [mon] (36 variables) + elif iterable_object == 'CFsubhr' : return 18 # CFsubhr Diagnostics for cloud forcing analysis at specific sites [subhr] (79 variables) + elif iterable_object == 'CF3hr' : return 19 # CF3hr 3-hourly associated with cloud forcing [3hr] (64 variables) + elif iterable_object == 'CFday' : return 20 # CFday Daily data associated with cloud forcing [day] (36 variables) + elif iterable_object == 'CFmon' : return 21 # CFmon Monthly data associated with cloud forcing [mon] (57 variables) + elif iterable_object == 'Efx' : return 22 # Efx Fixed (extension) [fx] (16 variables) + elif iterable_object == 'Esubhr' : return 23 # Esubhr Sub-hourly (extension) [subhr] (33 variables) + elif iterable_object == 'E1hr' : return 24 # E1hr Hourly Atmospheric Data (extension) [1hr] (16 variables) + elif iterable_object == 'E1hrClimMon' : return 25 # E1hrClimMon Diurnal Cycle [1hrClimMon] (5 variables) + elif iterable_object == 'E3hr' : return 26 # E3hr 3-hourly (time mean, extension) [3hr] (19 variables) + elif iterable_object == 'E3hrPt' : return 27 # E3hrPt 3-hourly (instantaneous, extension) [3hr] (48 variables) + elif iterable_object == 'E6hrZ' : return 28 # E6hrZ 6-hourly Zonal Mean (extension) [6hr] (3 variables) + elif iterable_object == 'Eday' : return 29 # Eday Daily (time mean, extension) [day] (123 variables) + elif iterable_object == 'EdayZ' : return 30 # EdayZ Daily Zonal Mean (extension) [day] (15 variables) + elif iterable_object == 'Emon' : return 31 # Emon Monthly (time mean, extension) [mon] (331 variables) + elif iterable_object == 'EmonZ' : return 32 # EmonZ Monthly zonal means (time mean, extension) [mon] (25 variables) + elif iterable_object == 'Eyr' : return 33 # Eyr Daily (time mean, extension) [yr] (19 variables) + elif iterable_object == 'AERfx' : return 34 # AERfx Fixed atmospheric chemistry and aerosol data [fx] (0 variables) + elif iterable_object == 'AERhr' : return 35 # AERhr Hourly atmospheric chemistry and aerosol data [1hr] (5 variables) + elif iterable_object == 'AERday' : return 36 # AERday Daily atmospheric chemistry and aerosol data [day] (11 variables) + elif iterable_object == 'AERmon' : return 37 # AERmon Monthly atmospheric chemistry and aerosol data [mon] (126 variables) + elif iterable_object == 'AERmonZ' : return 38 # AERmonZ Monthly atmospheric chemistry and aerosol data [mon] (17 variables) + elif iterable_object == 'IfxAnt' : return 39 # IfxAnt Fixed fields on the Antarctic ice sheet [fx] (4 variables) + elif iterable_object == 'IfxGre' : return 40 # IfxGre Fixed fields on the Greenland ice sheet [fx] (4 variables) + elif iterable_object == 'ImonAnt' : return 41 # ImonAnt Monthly fields on the Antarctic ice sheet [mon] (27 variables) + elif iterable_object == 'ImonGre' : return 42 # ImonGre Monthly fields on the Greenland ice sheet [mon] (27 variables) + elif iterable_object == 'IyrAnt' : return 43 # IyrAnt Annual fields on the Antarctic ice sheet [yr] (33 variables) + elif iterable_object == 'IyrGre' : return 44 # IyrGre Annual fields on the Greenland ice sheet [yr] (33 variables) + else: return 45 + +def write_varlist_ascii(targets, opath, print_all_columns): + tgtgroups = cmor_utils.group(targets, lambda t: t.table) + ofile = open(opath, 'w') + if print_all_columns: + # In case the input data request is an xlsx file, all columns are printed: + ofile.write('{:11} {:20} {:5} {:45} {:115} {:20} {:85} {:140} {:40} {}{}'.format( + 'table', 'variable', 'prio', 'dimensions', 'long_name', 'unit','link', + 'list of MIPs which request this variable', 'comment_author', 'comment', '\n')) + for k in sorted(tgtgroups.keys(), key=tweakedorder_table_realm): + vlist = tgtgroups[k] + ofile.write('{}'.format('\n')) + for tgtvar in vlist: + check_attribute_for_none_value(tgtvar, "priority" , opath) + check_attribute_for_none_value(tgtvar, "dimensions" , opath) + check_attribute_for_none_value(tgtvar, "long_name" , opath) + check_attribute_for_none_value(tgtvar, "mip_list" , opath) + check_attribute_for_none_value(tgtvar, "vid" , opath) + check_attribute_for_none_value(tgtvar, "comment_author" , opath) + check_attribute_for_none_value(tgtvar, "ecearth_comment", opath) + ofile.write('{:11} {:20} {:5} {:45} {:115} {:20} {:85} {:140} {:40} {}{}'.format( + tgtvar.table, + tgtvar.variable, + getattr(tgtvar, "priority" , "unknown"), + getattr(tgtvar, "dimensions" , "unknown"), + getattr(tgtvar, "long_name" , "unknown"), + tgtvar.units, + 'http://clipc-services.ceda.ac.uk/dreq/u/' + getattr(tgtvar, "vid", "unknown") + '.html', + getattr(tgtvar, "mip_list" , "unknown"), + getattr(tgtvar, "comment_author" , "" ), + getattr(tgtvar, "ecearth_comment", "" ), '\n')) + else: + # In case the input data request is a json file, a reduced number of columns is printed: + ofile.write('{:11} {:20} {:45} {:115} {:20} {}{}'.format('table', 'variable', 'dimensions', 'long_name', 'unit', 'comment', '\n')) + for k in sorted(tgtgroups.keys(), key=tweakedorder_table_realm): + vlist = tgtgroups[k] + ofile.write('{}'.format('\n')) + for tgtvar in vlist: + ofile.write('{:11} {:20} {:45} {:115} {:20} {}{}'.format(tgtvar.table, + tgtvar.variable, + getattr(tgtvar, "dimensions" , "unknown"), + getattr(tgtvar, "long_name" , "unknown"), + tgtvar.units, + getattr(tgtvar, "ecearth_comment", "" ), '\n')) + ofile.close() + logging.info('Writing the ascii file: {:}'.format(opath)) + + +def write_varlist_excel(targets, opath, with_pingfile): + import xlsxwriter + tgtgroups = cmor_utils.group(targets, lambda t: t.table) + workbook = xlsxwriter.Workbook(opath) + worksheet = workbook.add_worksheet() + + worksheet.set_column('A:A', 10) # Adjust the column width of column A + worksheet.set_column('B:B', 15) # Adjust the column width of column B + worksheet.set_column('C:C', 4) # Adjust the column width of column C + worksheet.set_column('D:D', 35) # Adjust the column width of column D + worksheet.set_column('E:E', 80) # Adjust the column width of column E + worksheet.set_column('F:F', 15) # Adjust the column width of column E + worksheet.set_column('G:G', 4) # Adjust the column width of column F + worksheet.set_column('H:H', 80) # Adjust the column width of column G + worksheet.set_column('I:I', 15) # Adjust the column width of column H + worksheet.set_column('J:J', 200) # Adjust the column width of column I + worksheet.set_column('K:K', 80) # Adjust the column width of column J + if with_pingfile: + worksheet.set_column('L:L', 28) # Adjust the column width of column L + worksheet.set_column('M:M', 17) # Adjust the column width of column M + worksheet.set_column('N:N', 100) # Adjust the column width of column N + + bold = workbook.add_format({'bold': True}) # Add a bold format + + worksheet.write(0, 0, 'Table' , bold) + worksheet.write(0, 1, 'variable' , bold) + worksheet.write(0, 2, 'prio' , bold) + worksheet.write(0, 3, 'Dimension format of variable' , bold) + worksheet.write(0, 4, 'variable long name' , bold) + worksheet.write(0, 5, 'unit' , bold) + worksheet.write(0, 6, 'link' , bold) + worksheet.write(0, 7, 'comment' , bold) + worksheet.write(0, 8, 'comment author' , bold) + worksheet.write(0, 9, 'extensive variable description' , bold) + worksheet.write(0, 10, 'list of MIPs which request this variable', bold) + if with_pingfile: + worksheet.write(0, 11, 'model component in ping file' , bold) + worksheet.write(0, 12, 'units as in ping file' , bold) + worksheet.write(0, 13, 'ping file comment' , bold) + + row_counter = 1 + for k in sorted(tgtgroups.keys(), key=tweakedorder_table_realm): + vlist = tgtgroups[k] + worksheet.write(row_counter, 0, '') + row_counter += 1 + for tgtvar in vlist: + worksheet.write(row_counter, 0, tgtvar.table) + worksheet.write(row_counter, 1, tgtvar.variable) + worksheet.write(row_counter, 2, getattr(tgtvar, "priority" , "unknown")) + worksheet.write(row_counter, 3, getattr(tgtvar, "dimensions", "unknown")) + worksheet.write(row_counter, 4, getattr(tgtvar, "long_name" , "unknown")) + worksheet.write(row_counter, 5, tgtvar.units) + worksheet.write(row_counter, 6, '=HYPERLINK("' + 'http://clipc-services.ceda.ac.uk/dreq/u/' + + getattr(tgtvar, "vid", "unknown") + '.html","web")') + worksheet.write(row_counter, 7, getattr(tgtvar, "ecearth_comment", "" )) + worksheet.write(row_counter, 8, getattr(tgtvar, "comment_author" , "" )) + worksheet.write(row_counter, 9, getattr(tgtvar, "comment" , "unknown")) + worksheet.write(row_counter, 10, getattr(tgtvar, "mip_list" , "unknown")) + if with_pingfile: + worksheet.write(row_counter, 11, getattr(tgtvar, "model" , "")) + worksheet.write(row_counter, 12, getattr(tgtvar, "units" , "")) + worksheet.write(row_counter, 13, getattr(tgtvar, "pingcomment", "")) + row_counter += 1 + workbook.close() + logging.info('Writing the excel file: {:}'.format(opath)) + + +# Main program +def main(): + parser = argparse.ArgumentParser(description="Validate input variable list against CMIP tables") + parser.add_argument("--drq", metavar="FILE", type=str, required=True, + help="File (json|f90 namelist|xlsx) containing cmor variables (Required)") + cmor_utils.ScriptUtils.add_model_exclusive_options(parser, "checkvars") + parser.add_argument("--tabdir", metavar="DIR", type=str, default=ece2cmorlib.table_dir_default, + help="Cmorization table directory") + parser.add_argument("--tabid", metavar="PREFIX", type=str, default=ece2cmorlib.prefix_default, + help="Cmorization table prefix string") + parser.add_argument("--output", metavar="FILE", type=str, default=None, help="Output path to write variables to") + parser.add_argument("--withouttablescheck", action="store_true", default=False, + help="Ignore variable tables when performing var checking") + parser.add_argument("--withping", action="store_true", default=False, + help="Read and write addition ping file fields") + parser.add_argument("-v", "--verbose", action="store_true", default=False, + help="Write xlsx and ASCII files with verbose output (suppress the related terminal messages " + "as the content of these files contain this information)") + parser.add_argument("--asciionly", action="store_true", default=False, + help="Write the ascii file(s) only") + cmor_utils.ScriptUtils.add_model_tabfile_options(parser) + + args = parser.parse_args() + + # Echo the exact call of the script in the log messages: + logging.info('Running {:} with:\n\n {:} {:}\n'.format(parser.prog, parser.prog, ' '.join(sys.argv[1:]))) + # Print the values of all arguments in the log messages:: + logging.info('------ {} argument list: ------'.format(parser.prog)) + for arg_key, arg_value in vars(parser.parse_args()).items(): logging.info('--{:18} = {:}'.format(arg_key, arg_value)) + logging.info('------ end {} argument list ------\n'.format(parser.prog)) + + if not os.path.isfile(args.drq): + log.fatal('Error: Your data request file {:} cannot be found.'.format(args.drq)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + # Initialize ece2cmor: + ece2cmorlib.initialize_without_cmor(ece2cmorlib.conf_path_default, mode=ece2cmorlib.PRESERVE, tabledir=args.tabdir, + tableprefix=args.tabid) + + active_components = cmor_utils.ScriptUtils.get_active_components(args) + + # Configure task loader: + taskloader.skip_tables = args.withouttablescheck + taskloader.with_pingfile = args.withping + + # Load the variables as task targets: + try: + matches, omitted_targets = taskloader.load_drq(args.drq, check_prefs=False) + except taskloader.SwapDrqAndVarListException as e: + log.error(e.message) + opt1, opt2 = "vars" if e.reverse else "drq", "drq" if e.reverse else "vars" + log.error('It seems you are using the --{:} option where you should use the --{:} option for this file'.format(opt1, opt2)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + loaded = [t for m in active_components for t in matches[m]] + ignored, identified_missing, missing, dismissed = taskloader.split_targets(omitted_targets) + + loaded_targets = sorted(list(set(loaded)) , key=lambda tgt: (tgt.table, tgt.variable)) + ignored_targets = sorted(list(set(ignored)), key=lambda tgt: (tgt.table, tgt.variable)) + identified_missing_targets = sorted(identified_missing, key=lambda tgt: (tgt.table, tgt.variable)) + missing_targets = sorted(missing , key=lambda tgt: (tgt.table, tgt.variable)) + + if args.output: + output_dir = os.path.dirname(args.output) + if not os.path.isdir(output_dir): + if output_dir != '': + os.makedirs(output_dir) + if not args.asciionly: + write_varlist(loaded, args.output + ".available.json") + if args.verbose: + if not args.asciionly: + write_varlist_excel(loaded_targets , args.output + ".available.xlsx" , args.withping) + write_varlist_excel(ignored_targets , args.output + ".ignored.xlsx" , args.withping) + write_varlist_excel(identified_missing_targets, args.output + ".identifiedmissing.xlsx", args.withping) + write_varlist_excel(missing_targets , args.output + ".missing.xlsx" , args.withping) + + if args.drq[-4:] == 'xlsx': + write_varlist_ascii(loaded_targets , args.output + ".available.txt" , True) + write_varlist_ascii(ignored_targets , args.output + ".ignored.txt" , True) + write_varlist_ascii(identified_missing_targets, args.output + ".identifiedmissing.txt", True) + write_varlist_ascii(missing_targets , args.output + ".missing.txt" , True) + else: + write_varlist_ascii(loaded_targets , args.output + ".available.txt" , False) + + + if False: + # Add writing of a json data request formatted file which includes all available variables in order to provide a + # single test which covers all identified & available variables. If this block is activated and the following is run: + # ./determine-missing-variables.sh CMIP,AerChemMIP,CDRMIP,C4MIP,DCPP,HighResMIP,ISMIP6,LS3MIP,LUMIP,OMIP,PAMIP,PMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB CMIP 1 1 + # At least an equivalent json data request which covers all Core MIP requests is produced. However this does not + # necessarily include all specific MIP requests. In fact it would be better to create a json data request equivalent + # based on the ifspar.json. + result = {} + for model, targetlist in list(matches.items()): + result[model] = {} + for target in targetlist: + table = target.table + if table in result[model]: + result[model][table].append(target.variable) + else: + result[model][table] = [target.variable] + #with open(args.output + "-varlist-all-available.json", 'w') as ofile: + with open("varlist-all.json", 'w') as ofile: + json.dump(result, ofile, indent=4, separators=(',', ': '), sort_keys=True) + ofile.write('\n') # Add newline at the end of the json file because the python json package doesn't do this. + ofile.close() + + # Finishing up + ece2cmorlib.finalize_without_cmor() + + +if __name__ == "__main__": + main() diff --git a/ece2cmor/ece2cmor3/scripts/compare-shaconemo-ping-file-with-ece2cmor3-json-file.py b/ece2cmor/ece2cmor3/scripts/compare-shaconemo-ping-file-with-ece2cmor3-json-file.py new file mode 100755 index 0000000000000000000000000000000000000000..02ac608c40aae18edcd6f38b5b837076295f2267 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/compare-shaconemo-ping-file-with-ece2cmor3-json-file.py @@ -0,0 +1,103 @@ +#!/usr/bin/env python + +# Call this script by: +# ./compare-shaconemo-ping-file-with-ece2cmor3-json-file.py + +# This script reads the shaconemo xml ping files (the files which relate NEMO code variable +# names with CMOR names. NEMO code names which are labeled by 'dummy_' are not identified by +# the Shaconemo comunity. The ece2cmor3 json file lists all NEMO variables which can currently +# be cmorized by ece2cmor3. The script shows which variables are only in one of both files +# available. + + +import xml.etree.ElementTree as xmltree +import json +from os.path import expanduser + +#ping_file_directory = expanduser("~")+"/cmorize/shaconemo/ORCA1_LIM3_PISCES/EXP00/" +#ping_file_directory = expanduser("~")+"/ec-earth-3/branch-r6874-control-output-files/runtime/classic/ctrl/" +ping_file_directory = expanduser("~")+"/ec-earth-3/trunk/runtime/classic/ctrl/" + +treeOcean = xmltree.parse(ping_file_directory + "ping_ocean_DR1.00.27.xml" ) +treeSeaIce = xmltree.parse(ping_file_directory + "ping_seaIce_DR1.00.27.xml" ) +treeOcnBgChem = xmltree.parse(ping_file_directory + "ping_ocnBgChem_DR1.00.27.xml") + +rootOcean = treeOcean.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements +rootSeaIce = treeSeaIce.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements +rootOcnBgChem = treeOcnBgChem.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + +field_elements_Ocean = rootOcean [0][:] +field_elements_SeaIce = rootSeaIce [0][:] +field_elements_OcnBgChem = rootOcnBgChem[0][:] + +## This function excludes the dummy_ variables from the ping list and removes the CMIP6_ prefix. +#def filter_dummy_vars_in_ping_list(field_elements): +# pinglist = [] +# for child in field_elements: +# if child.attrib["field_ref"].startswith('dummy_'): +# continue +# else: +# pinglist.append(child.attrib["id"][6:]) +# return pinglist + +#pinglistOcean = filter_dummy_vars_in_ping_list(field_elements_Ocean ) +#pinglistSeaIce = filter_dummy_vars_in_ping_list(field_elements_SeaIce ) +#pinglistOcnBgChem = filter_dummy_vars_in_ping_list(field_elements_OcnBgChem) + +#Exclude the dummy_ variables from the ping list and removes the CMIP6_ prefix. +pinglistOcean = [] +for child in field_elements_Ocean: + if child.attrib["field_ref"].startswith('dummy_'): + continue + else: + pinglistOcean.append(child.attrib["id"][6:]) + +pinglistSeaIce = [] +for child in field_elements_SeaIce: + if child.attrib["field_ref"].startswith('dummy_'): + continue + else: + pinglistSeaIce.append(child.attrib["id"][6:]) + +pinglistOcnBgChem = [] +for child in field_elements_OcnBgChem: + if child.attrib["field_ref"].startswith('dummy_'): + continue + else: + pinglistOcnBgChem.append(child.attrib["id"][6:]) + +total_pinglist = pinglistOcean + pinglistSeaIce + pinglistOcnBgChem + +f = open("../resources/nemopar.json").read() +data = json.loads(f) +#print(data) + +targets = [] +for d in data: + targets.append(str(d["target"])) +#print(targets) +print('\n The ', len(set(targets) - set(total_pinglist)), ' variables which are in ece2cmor3\'s nemopar.json file but not in the ping file:\n ', set(targets) - set(total_pinglist)) +print('\n The ', len(set(total_pinglist) - set(targets)), ' variables which are in the ping file but not in the ece2cmor3 json file:\n ', set(total_pinglist) - set(targets)) +print('\n There are ', len(targets), ' variables in the ece2cmor3 nemopar.json file, and ', len(total_pinglist), 'non-dummy variables in the shaconemo ping file') +print('\n There are ', len(set(targets) & set(total_pinglist)), ' variables with the same name in both files\n') + +#history + +#print(rootOcean.attrib["id"], rootSeaIce.attrib["id"], rootOcnBgChem.attrib["id"]) + +#print(field_elements_Ocean [1].__dict__ # Example print of the 1st Ocean field-element) +#print(field_elements_SeaIce [1].__dict__ # Example print of the 1st SeaIce field-element) +#print(field_elements_OcnBgChem[1].__dict__ # Example print of the 1st OcnBgChem field-element) + +#print(field_elements_Ocean [1].tag,field_elements_Ocean [1].attrib["id"],field_elements_Ocean [1].attrib["field_ref"],field_elements_Ocean [1].text # Example print of the tag and some specified attributes of the 1st Ocean field-element) +#print(field_elements_SeaIce [1].tag,field_elements_SeaIce [1].attrib["id"],field_elements_SeaIce [1].attrib["field_ref"],field_elements_SeaIce [1].text # Example print of the tag and some specified attributes of the 1st SeaIce field-element) +#print(field_elements_OcnBgChem[1].tag,field_elements_OcnBgChem[1].attrib["id"],field_elements_OcnBgChem[1].attrib["field_ref"],field_elements_OcnBgChem[1].text # Example print of the tag and some specified attributes of the 1st OcnBgChem field-element) + +#for field_elements in [field_elements_Ocean, field_elements_SeaIce, field_elements_OcnBgChem]: +# for child in field_elements: +# print(child.attrib["id"], child.attrib["field_ref"], child.text) + +#print(rootOcean[0][0].attrib["field_ref"]) +#print(rootOcean[0][0].text) +#print(rootOcean[0][1].attrib["expr"]) +#print(rootOcean[0][1].text) diff --git a/ece2cmor/ece2cmor3/scripts/config-create-basic-ec-earth-cmip6-nemo-namelist b/ece2cmor/ece2cmor3/scripts/config-create-basic-ec-earth-cmip6-nemo-namelist new file mode 100644 index 0000000000000000000000000000000000000000..0965e8ea072116e829d7c6f5a8e05b794fa0948f --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/config-create-basic-ec-earth-cmip6-nemo-namelist @@ -0,0 +1,25 @@ +# This config file can be used with: +# ./create-basic-ec-earth-cmip6-nemo-namelist.py config-create-basic-ec-earth-cmip6-nemo-namelist + +ece2cmor_root_directory = '~/cmorize/ece2cmor3/' + +# Note that the ping files are not yet available within ec-earth3 trunk, so you need the Shaconemo repository +# or the Shaconemo vendor branch of the ec-earth3 repository: ^/ecearth3/vendor/nemo/shaconemo/ORCA1_LIM3_PISCES/EXP00/ +#ping_file_name_ocean = '~/cmorize/shaconemo/ORCA1_LIM3_PISCES/EXP00/ping_ocean_DR1.00.27.xml' +#ping_file_name_seaIce = '~/cmorize/shaconemo/ORCA1_LIM3_PISCES/EXP00/ping_seaIce_DR1.00.27.xml' +#ping_file_name_ocnBgchem = '~/cmorize/shaconemo/ORCA1_LIM3_PISCES/EXP00/ping_ocnBgChem_DR1.00.27.xml' +#field_def_file_directory = '~/cmorize/shaconemo/ORCA1_LIM3_PISCES/EXP00/' +ping_file_name_ocean = '~/ec-earth-3/trunk/runtime/classic/ctrl/ping_ocean_DR1.00.27.xml' +ping_file_name_seaIce = '~/ec-earth-3/trunk/runtime/classic/ctrl/ping_seaIce_DR1.00.27.xml' +ping_file_name_ocnBgchem = '~/ec-earth-3/trunk/runtime/classic/ctrl/ping_ocnBgChem_DR1.00.27.xml' +field_def_file_directory = '~/ec-earth-3/trunk/runtime/classic/ctrl/' + +# These files can be generated by calling: ./create-nemo-only-list/create-nemo-only-list.sh : +nemo_only_dr_nodummy_file_xlsx = ece2cmor_root_directory + "ece2cmor3/scripts/create-nemo-only-list/nemo-only-list-cmip6-requested-variables.xlsx" +nemo_only_dr_nodummy_file_txt = ece2cmor_root_directory + "ece2cmor3/scripts/create-nemo-only-list/nemo-only-list-cmip6-requested-variables.txt" + +# These files are created by this script, but lateron also read by this script: +basic_flat_file_def_file_name = ece2cmor_root_directory + "ece2cmor3/resources/xios-nemo-file_def-files/basic-flat-cmip6-file_def_nemo.xml" +basic_file_def_file_name = ece2cmor_root_directory + "ece2cmor3/resources/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml" + + diff --git a/ece2cmor/ece2cmor3/scripts/config-genecec b/ece2cmor/ece2cmor3/scripts/config-genecec new file mode 100644 index 0000000000000000000000000000000000000000..037ddfe3dcb1378b811a400bf3bce2047e1a72db --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/config-genecec @@ -0,0 +1,8 @@ +# This config file can be used with: +# ./run-genecec.sh default 001 ece2cmor3 + +output_dir_name = 'output-control-files/' +activate_pextra_mode = False +add_request_overview = True + +ece2cmor_root_directory = '~/cmorize/ece2cmor3/' diff --git a/ece2cmor/ece2cmor3/scripts/convert_component_to_flat_json.py b/ece2cmor/ece2cmor3/scripts/convert_component_to_flat_json.py new file mode 100755 index 0000000000000000000000000000000000000000..b85e37582a45a7c458ea6255d031685a5ce75018 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/convert_component_to_flat_json.py @@ -0,0 +1,116 @@ +#!/usr/bin/env python +# Thomas Reerink +# +# This script converts a component json file produced by genecec including the preferences +# into a flat json without the component structue (ifs, nemo, lpjg & tm5) such that it can be +# read with: checkvars -v --asciionly --drq flat-json-file.json --output request-overview +# +# Note that when a flat json file is given (instead of a component json file) the produced json +# file will be just equal to the input flat json file. +# +# Run this script without arguments for examples how to call this script. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. + + +import sys +import os +import json + +error_message = '\n \033[91m' + 'Error:' + '\033[0m' # Red error message +warning_message = '\n \033[93m' + 'Warning:' + '\033[0m' # Yellow warning message + +# Main program +def main(): + + if len(sys.argv) == 2: + + input_json_file = sys.argv[1] # Reading the data request file name from the argument line + if os.path.isfile(input_json_file) == False: # Checking if the data request file exists + print(error_message, ' The data request file ', input_json_file, ' does not exist.\n') + sys.exit() + + with open(input_json_file) as json_file: + data_request = json.load(json_file) + json_file.close() + + output_json_file = os.path.basename(input_json_file).replace('.json','-flat.json') + + print('\n Running {:} with:\n {:} {:}\n'.format(os.path.basename(sys.argv[0]), os.path.basename(sys.argv[0]), sys.argv[1])) + + # Check whether the input json file is a component json or a flat json file: + if "ifs" in data_request: + ifs_request = data_request["ifs"] + nemo_request = data_request["nemo"] + lpjg_request = data_request["lpjg"] + tm5_request = data_request["tm5"] + + + # Determine whether a same table is present in the nemo dictionary as in the ifs dictionary: + for x in nemo_request: + if x in ifs_request: + for i in range(0, len(nemo_request[x])): + ifs_request[x].append(nemo_request[x][i]) + else: + ifs_request.update({x: nemo_request[x]}) + + # Determine whether a same table is present in the lpjg dictionary as in the ifs dictionary: + for x in lpjg_request: + if x in ifs_request: + for i in range(0, len(lpjg_request[x])): + ifs_request[x].append(lpjg_request[x][i]) + else: + ifs_request.update({x: lpjg_request[x]}) + + # Determine whether a same table is present in the tm5 dictionary as in the ifs dictionary: + for x in tm5_request: + if x in ifs_request: + for i in range(0, len(tm5_request[x])): + ifs_request[x].append(tm5_request[x][i]) + else: + ifs_request.update({x: tm5_request[x]}) + + with open(output_json_file, 'w') as outfile: + json.dump(ifs_request, outfile, sort_keys=True, indent=4) + outfile.close() + + else: + print(warning_message, 'The file', sys.argv[1], 'is a flat json already, thefore it is not converted but copied instead.') + command = 'rsync -a ' + input_json_file + ' ' + output_json_file + os.system(command) + + command = 'sed -i "s/\s*$//g"' + ' ' + output_json_file + os.system(command) + + print(' which produced the file:') + print(' ', output_json_file) + print() + + else: + print() + print(' This scripts requires one argument, a json file, e.g.:') + print(' ', os.path.basename(sys.argv[0]), '~/cmorize/control-output-files/output-control-files-v196/cmip6/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical/cmip6-data-request-varlist-CMIP-historical-EC-EARTH-AOGCM.json') + print(' ', os.path.basename(sys.argv[0]), '../resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-Veg.json') + print(' ', os.path.basename(sys.argv[0]), '~/cmorize/control-output-files/output-control-files-v196/cmip6/AerChemMIP/cmip6-experiment-AerChemMIP-hist-1950HC/cmip6-data-request-varlist-AerChemMIP-hist-1950HC-EC-EARTH-AerChem.json') + print() + +if __name__ == "__main__": + main() + + +# Validation: +# +# non_flat_json=~/cmorize/control-output-files/output-control-files-v196/cmip6/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical/cmip6-data-request-varlist-CMIP-historical-EC-EARTH-AOGCM.json +# flat_json=cmip6-data-request-varlist-CMIP-historical-EC-EARTH-AOGCM-flat.json +# non_flat_json=../resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-Veg.json +# flat_json=lamaclima-data-request-varlist-EC-EARTH-Veg-flat.json +# non_flat_json=~/cmorize/control-output-files/output-control-files-v196/cmip6/AerChemMIP/cmip6-experiment-AerChemMIP-hist-1950HC/cmip6-data-request-varlist-AerChemMIP-hist-1950HC-EC-EARTH-AerChem.json +# flat_json=cmip6-data-request-varlist-AerChemMIP-hist-1950HC-EC-EARTH-AerChem-flat.json +# +# more ${flat_json} | grep -v -e '}' -e '{' -e ']' -e '\[' | sort > sorted-flat.txt +# more ${non_flat_json} | grep -v -e '}' -e '{' -e ']' -e '\[' | sort > sorted-non-flat.txt +# wc sorted-non-flat.txt; wc sorted-flat.txt +# diff -b sorted-non-flat.txt sorted-flat.txt +# +# rm -f cmip6-data-request-varlist-CMIP-historical-EC-EARTH-AOGCM-flat.json lamaclima-data-request-varlist-EC-EARTH-Veg-flat.json cmip6-data-request-varlist-AerChemMIP-hist-1950HC-EC-EARTH-AerChem-flat.json sorted-flat.txt sorted-non-flat.txt diff --git a/ece2cmor/ece2cmor3/scripts/create-basic-ec-earth-cmip6-nemo-namelist.py b/ece2cmor/ece2cmor3/scripts/create-basic-ec-earth-cmip6-nemo-namelist.py new file mode 100755 index 0000000000000000000000000000000000000000..e27c6151d55b158addfe751395dfcc18f2f9311a --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/create-basic-ec-earth-cmip6-nemo-namelist.py @@ -0,0 +1,1197 @@ +#!/usr/bin/env python +# Thomas Reerink + +# Run this script without arguments for examples how to call this script. + +# 1. This script reads the shaconemo xml ping files (the files which relate NEMO code variable +# names with CMOR names. NEMO code names which are labeled by 'dummy_' have not been identified by +# the Shaconemo comunity. +# +# 2. This script reads the four NEMO xml field_def files (the files which contain the basic info +# about the fields required by XIOS. These field_def files can either be taken from the shaconemo +# repository or from the EC-Earth repository. The four field_def files contain nearly 1200 variables +# with an id (15 id's occur twice, one of them bn2 is direct problematic because of a different +# grid_def) and about 100 variables without an id but with a field_ref (most of the latter one have an +# name attribute, but not all of them). +# +# 3. The NEMO only excel xlsx CMIP6 data request file: +# create-nemo-only-list/nemo-only-list-cmip6-requested-variables.xlsx +# is read, it has been created from the scripts directory by running: +# ./create-nemo-only-list/create-nemo-only-list.sh +# by checking the non-dummy NEMO shaconemo ping file cmor variable list against the +# full CMIP6 data request for all CMIP6 MIPs in which EC-Earth participates, i.e. for tier 3 +# and priority 3: about 320 unique cmor-table - cmor-variable-name combinations. +# +# 4. A few lists are created and/or modified, some renaming, and for instance selecting the +# output frequency per field from the cmor table label. +# +# 5. The exentensive basic flat ec-earth cmip6 nemo XIOS input file template (the namelist or the +# file_def file) is written by combining all the available data. In this file for each variable the +# enable attribute is set to false, this allows another smaller program in ece2cmor3 to set those +# variables on true which are asked for in the various data requests of each individual MIP +# experiment. +# +# 6. A varlist.json can be generated which contains all nemo available variables, this file can be used +# as data request to test the cmorization of all CMIP6 available nemo variables for all the MIP experiments. +# +# 7. The basic flat file_def file is read again, now all gathered info is part of this single xml +# tree which allows a more convenient way of selecting. +# +# 8. A basic file_def is created by selecting on model component, output frequency and grid. For +# each sub selection a file element is defined. +# +# 9. Produce a nemopar.sjon file with all the non-dummy ping file variables. +# +# 10. Just read the basic file_def in order to check in case of modifications to the script whether +# the basic file_def file is still a valid xml file. + + +import xml.etree.ElementTree as xmltree +from ece2cmor3 import cmor_target +import os # for checking file or directory existence with: os.path.isfile or os.path.isdir +import sys # for aborting: sys.exit +import numpy as np # for the use of e.g. np.multiply +from os.path import expanduser + +error_message = '\n \033[91m' + 'Error:' + '\033[0m' # Red error message +warning_message = '\n \033[93m' + 'Warning:' + '\033[0m' # Yellow warning message + +if len(sys.argv) == 2: + + if __name__ == "__main__": config = {} # python config syntax + + config_filename = sys.argv[1] # Reading the config file name from the argument line + if os.path.isfile(config_filename) == False: # Checking if the config file exists + print(error_message, ' The config file ', config_filename, ' does not exist.\n') + sys.exit() + exec(open(config_filename).read(), config) # Reading the config file + + # Take the config variables: + ece2cmor_root_directory = os.path.expanduser(config['ece2cmor_root_directory' ]) # ece2cmor_root_directory = '~/cmorize/ece2cmor3/' + ping_file_name_ocean = os.path.expanduser(config['ping_file_name_ocean' ]) # ping_file_name_ocean = '~/ec-earth-3/trunk/runtime/classic/ctrl/ping_ocean_DR1.00.27.xml' + ping_file_name_seaIce = os.path.expanduser(config['ping_file_name_seaIce' ]) # ping_file_name_seaIce = '~/ec-earth-3/trunk/runtime/classic/ctrl/ping_seaIce_DR1.00.27.xml' + ping_file_name_ocnBgchem = os.path.expanduser(config['ping_file_name_ocnBgchem' ]) # ping_file_name_ocnBgchem = '~/ec-earth-3/trunk/runtime/classic/ctrl/ping_ocnBgChem_DR1.00.27.xml' + field_def_file_directory = os.path.expanduser(config['field_def_file_directory' ]) # field_def_file_directory = '~/ec-earth-3/trunk/runtime/classic/ctrl/' + nemo_only_dr_nodummy_file_xlsx = os.path.expanduser(config['nemo_only_dr_nodummy_file_xlsx']) # nemo_only_dr_nodummy_file_xlsx = ece2cmor_root_directory + "ece2cmor3/scripts/create-nemo-only-list/nemo-only-list-cmip6-requested-variables.xlsx" + nemo_only_dr_nodummy_file_txt = os.path.expanduser(config['nemo_only_dr_nodummy_file_txt' ]) # nemo_only_dr_nodummy_file_txt = ece2cmor_root_directory + "ece2cmor3/scripts/create-nemo-only-list/nemo-only-list-cmip6-requested-variables.txt" + basic_flat_file_def_file_name = os.path.expanduser(config['basic_flat_file_def_file_name' ]) # basic_flat_file_def_file_name = ece2cmor_root_directory + "ece2cmor3/resources/xios-nemo-file_def-files/basic-flat-cmip6-file_def_nemo.xml" + basic_file_def_file_name = os.path.expanduser(config['basic_file_def_file_name' ]) # basic_file_def_file_name = ece2cmor_root_directory + "ece2cmor3/resources/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml" + + # Run ece2cmor's install & check whether an existing ece2cmor root directory is specified in the config file: + previous_working_dir = os.getcwd() + if os.path.isdir(ece2cmor_root_directory) == False: + print(error_message, ' The ece2cmor root directory ', ece2cmor_root_directory, ' does not exist.\n') + sys.exit() + if os.path.isfile(ece2cmor_root_directory + '/environment.yml') == False: + print(error_message, ' The ece2cmor root directory ', ece2cmor_root_directory, ' is not an ece2cmor root directory.\n') + sys.exit() + os.chdir(ece2cmor_root_directory) + os.system('pip install -e .') + os.chdir(previous_working_dir) + + message_occurence_identical_id = True + message_occurence_identical_id = False + + include_root_field_group_attributes = True + include_root_field_group_attributes = False + + exclude_dummy_fields = True + #exclude_dummy_fields = False + + give_preference_to_pingfile_expression_attribute = True + #give_preference_to_pingfile_expression_attribute = False + + include_grid_ref_from_field_def_files = True + #include_grid_ref_from_field_def_files = False + + produce_varlistjson_file = True + + produce_nemopar_json = True + produce_nemopar_json = False + + + ################################################################################ + ################################### 1 ################################### + ################################################################################ + + # READING THE PING FILES: + + # Checking whether the ping files exist: + if os.path.isfile(ping_file_name_ocean ) == False: print(' The file ', ping_file_name_ocean , ' does not exist.'); sys.exit(' stop') + if os.path.isfile(ping_file_name_seaIce ) == False: print(' The file ', ping_file_name_seaIce , ' does not exist.'); sys.exit(' stop') + if os.path.isfile(ping_file_name_ocnBgchem) == False: print(' The file ', ping_file_name_ocnBgchem, ' does not exist.'); sys.exit(' stop') + + treeOcean = xmltree.parse(ping_file_name_ocean ) + treeSeaIce = xmltree.parse(ping_file_name_seaIce ) + treeOcnBgchem = xmltree.parse(ping_file_name_ocnBgchem) + + rootOcean = treeOcean.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + rootSeaIce = treeSeaIce.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + rootOcnBgchem = treeOcnBgchem.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + + field_elements_Ocean = rootOcean [0][:] + field_elements_SeaIce = rootSeaIce [0][:] + field_elements_OcnBgchem = rootOcnBgchem[0][:] + + #field_elements_Ocean = treeOcean.getroot() [0][:] # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + #field_elements_SeaIce = treeSeaIce.getroot() [0][:] # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + #field_elements_OcnBgchem = treeOcnBgchem.getroot()[0][:] # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + + #Exclude the dummy_ variables from the ping list and removes the CMIP6_ prefix. + pinglistOcean_id = [] + pinglistOcean_field_ref = [] + pinglistOcean_text = [] + pinglistOcean_expr = [] + for child in field_elements_Ocean: + if exclude_dummy_fields and child.attrib["field_ref"].startswith('dummy_'): + continue + else: + pinglistOcean_id.append(child.attrib["id"][6:]) + pinglistOcean_field_ref.append(child.attrib["field_ref"]) + pinglistOcean_text.append(child.text) + if "expr" in child.attrib: pinglistOcean_expr.append(child.attrib["expr"]) + else: pinglistOcean_expr.append("None") + + pinglistSeaIce_id = [] + pinglistSeaIce_field_ref = [] + pinglistSeaIce_text = [] + pinglistSeaIce_expr = [] + for child in field_elements_SeaIce: + if exclude_dummy_fields and child.attrib["field_ref"].startswith('dummy_'): + continue + else: + pinglistSeaIce_id.append(child.attrib["id"][6:]) + pinglistSeaIce_field_ref.append(child.attrib["field_ref"]) + pinglistSeaIce_text.append(child.text) + if "expr" in child.attrib: pinglistSeaIce_expr.append(child.attrib["expr"]) + else: pinglistSeaIce_expr.append("None") + + pinglistOcnBgchem_id = [] + pinglistOcnBgchem_field_ref = [] + pinglistOcnBgchem_text = [] + pinglistOcnBgchem_expr = [] + for child in field_elements_OcnBgchem: + if exclude_dummy_fields and child.attrib["field_ref"].startswith('dummy_'): + continue + else: + pinglistOcnBgchem_id.append(child.attrib["id"][6:]) + pinglistOcnBgchem_field_ref.append(child.attrib["field_ref"]) + pinglistOcnBgchem_text.append(child.text) + if "expr" in child.attrib: pinglistOcnBgchem_expr.append(child.attrib["expr"]) + else: pinglistOcnBgchem_expr.append("None") + + total_pinglist_id = pinglistOcean_id + pinglistSeaIce_id + pinglistOcnBgchem_id + total_pinglist_field_ref = pinglistOcean_field_ref + pinglistSeaIce_field_ref + pinglistOcnBgchem_field_ref + total_pinglist_text = pinglistOcean_text + pinglistSeaIce_text + pinglistOcnBgchem_text + total_pinglist_expr = pinglistOcean_expr + pinglistSeaIce_expr + pinglistOcnBgchem_expr + + # Check whether all list have the same lenth: + #print( '\n Consistency check whether all total ping lists are equal long: ', len(total_pinglist_id), len(total_pinglist_field_ref), len(total_pinglist_text), len(total_pinglist_expr)) + + if exclude_dummy_fields: + print('\n There are ', len(total_pinglist_id), 'non-dummy variables taken from the shaconemo ping files.\n') + else: + print('\n There are ', len(total_pinglist_id), 'variables taken from the shaconemo ping files.\n') + + # Consistency check between the ping file xml content field and the ping file "expr"-attribute. They are not the same, + # in the "expr"-attribute the time average operator @ is aplied on each variable. So here spaces and the @ operator are + # removed and only thereafter both are compared: + for i in range(len(total_pinglist_id)): + if total_pinglist_expr[i] != 'None': + if total_pinglist_expr[i].replace(" ", "").replace("@", "") != total_pinglist_text[i].replace(" ", ""): + print(' Mismatch between ping content and ping expr for variable', total_pinglist_id[i], ':', total_pinglist_expr[i].replace(" ", "").replace("@", "") + ' and ' + total_pinglist_text[i].replace(" ", "") + '\n') + + # Give preference to the ping file "expr"-attribute in case the ping file "expr"-attribute has a value: that means overwrite the + # xml content (the pinglist_text) by this ping file "expr"-attribute: + if give_preference_to_pingfile_expression_attribute: + for i in range(len(total_pinglist_id)): + if total_pinglist_expr[i] != 'None': + #print(' For {:11} overwrite the expression in the ping file by the "expr"-attribute: {:60} -> {}'.format(total_pinglist_id[i], total_pinglist_text[i], total_pinglist_expr[i])) + total_pinglist_text[i] = total_pinglist_expr[i] + + #print(pinglistOcean_id , '\n ') + #print(pinglistOcean_field_ref, '\n ') + #print(pinglistOcean_text , '\n ') + + #print(rootOcean [0][:] , '\n ') + #print(field_elements_Ocean, '\n ') + + #print(rootOcean [0].attrib["test"]) # Get an attribute of the parent element: This example only works if one adds an attribute in the field_definition of the ping ocean file, e.g. add : test='TEST' + #print(rootOcean [0][0].attrib["field_ref"]) + #print(rootOcean [0][1].attrib["id"]) + #print(rootOcean [0][:].attrib["id"]) # does not work, needs an explicit for loop + + #field_example = "tomint" # Specify a cmor field name + #field_example = "cfc11" # Specify a cmor field name + #index_in_ping_list = pinglistOcean_id.index(field_example) + #print(index_in_ping_list, pinglistOcean_id[index_in_ping_list], pinglistOcean_field_ref[index_in_ping_list], pinglistOcean_text[index_in_ping_list]) + + # Create an XML file, see http://stackabuse.com/reading-and-writing-xml-files-in-python/ + # mydata = xmltree.tostring(rootOcean) + # myfile = open("bla.xml", "w") + # myfile.write(mydata) + + + #history + + #print(rootOcean.attrib["id"], rootSeaIce.attrib["id"], rootOcnBgchem.attrib["id"] + + #print(field_elements_Ocean [1].__dict__) # Example print of the 1st Ocean field-element + #print(field_elements_SeaIce [1].__dict__) # Example print of the 1st SeaIce field-element + #print(field_elements_OcnBgchem[1].__dict__) # Example print of the 1st OcnBgchem field-element + + #print(field_elements_Ocean [1].tag,field_elements_Ocean [1].attrib["id"],field_elements_Ocean [1].attrib["field_ref"],field_elements_Ocean [1].text) # Example print of the tag and some specified attributes of the 1st Ocean field-element + #print(field_elements_SeaIce [1].tag,field_elements_SeaIce [1].attrib["id"],field_elements_SeaIce [1].attrib["field_ref"],field_elements_SeaIce [1].text) # Example print of the tag and some specified attributes of the 1st SeaIce field-element + #print(field_elements_OcnBgchem[1].tag,field_elements_OcnBgchem[1].attrib["id"],field_elements_OcnBgchem[1].attrib["field_ref"],field_elements_OcnBgchem[1].text) # Example print of the tag and some specified attributes of the 1st OcnBgchem field-element + + #for field_elements in [field_elements_Ocean, field_elements_SeaIce, field_elements_OcnBgchem]: + # for child in field_elements: + # print(child.attrib["id"], child.attrib["field_ref"], child.text) + + #print(rootOcean[0][0].attrib["field_ref"]) + #print(rootOcean[0][0].text) + #print(rootOcean[0][1].attrib["expr"]) + #print(rootOcean[0][1].text) + + + + ################################################################################ + ################################### 2 ################################### + ################################################################################ + + # READING THE FIELD_DEF FILES: + + def create_element_lists(file_name, attribute_1, attribute_2): + if os.path.isfile(file_name) == False: print(' The file ', file_name, ' does not exist.'); sys.exit(' stop') + + tree = xmltree.parse(file_name) + roottree = tree.getroot() + field_elements_attribute_1 = [] # The basic list in this routine containing the id attribute values + field_elements_attribute_2 = [] # A list corresponding with the id list containing the grid_def attribute values + fields_without_id_name = [] # This seperate list is created for fields which don't have an id (most of them have a name attribute, but some only have a field_ref attribute) + fields_without_id_field_ref = [] # A corresponding list with the field_ref attribute values is created. The other list contains the name attribute values if available, otherwise the name is assumed to be identical to the field_ref value. + attribute_overview = [] + + text_elements = [] # A list corresponding with the id list containing the text values (i.e. the arithmic expressions as defined in the field_def file) + unit_elements = [] # A list corresponding with the id list containing the unit attribute values + freq_offset_elements = [] # A list corresponding with the id list containing the freq_offset attribute values + #print(' Number of field elements across all levels: ', len(roottree.findall('.//field[@id]')), 'for file', file_name) + #for field in roottree.findall('.//field[@id]'): print(field.attrib[attribute_1]) + ##eelements = roottree.findall('.//field[@id]') # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + ##for i in range(0, len(eelements)): + for group in range(0, len(roottree)): + #print(' Group [', roottree[group].tag, ']', group, 'of', len(roottree) - 1, 'in file:', file_name) + elements = roottree[group][:] # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + + # If the field element is defined outside the field_group element, i.e. one level higher in the tree: + if roottree[group].tag != "field_group": + if "grid_ref" in roottree[group].attrib: + #print(' A deviating tag ', roottree[group].tag, ' is detected, and has the id:', roottree[group].attrib[attribute_1], 'and has the grid_ref:', roottree[group].attrib[attribute_2]) + field_elements_attribute_1.append(roottree[group].attrib[attribute_1]) + field_elements_attribute_2.append('grid_ref="'+roottree[group].attrib[attribute_2]+'"') + text_elements .append(roottree[group].text) + if "unit" in roottree[group].attrib: unit_elements.append(roottree[group].attrib["unit"]) + else: unit_elements.append("no unit definition") + if "freq_offset" in roottree[group].attrib: freq_offset_elements.append(roottree[group].attrib["freq_offset"]) + else: freq_offset_elements.append("no freq_offset") + + else: + if "field_ref" in roottree[group].attrib: + #print(' A deviating tag ', roottree[group].tag, ' is detected, and has the id:', roottree[group].attrib[attribute_1], 'and has no grid_ref attribute but it has an field_ref attribute:', roottree[group].attrib["field_ref"]) + detected_field_ref = roottree[group].attrib["field_ref"] + for field in roottree.findall('.//field[@id="'+detected_field_ref+'"]'): + detected_grid_ref = field.attrib["grid_ref"] + if "unit" in field.attrib: detected_unit = field.attrib["unit"] + else: detected_unit = "no unit definition" + if "freq_offset" in field.attrib: detected_freq_offset = field.attrib["freq_offset"] + else: detected_freq_offset = "no freq_offset" + #print(' A deviating tag ', roottree[group].tag, ' is detected, and has the id:', roottree[group].attrib[attribute_1], 'and has via the field_ref:', detected_field_ref, 'the grid_ref:', detected_grid_ref, 'with unit:', detected_unit) + field_elements_attribute_1.append(roottree[group].attrib[attribute_1]) + field_elements_attribute_2.append('grid_ref="'+detected_grid_ref+'"') + text_elements .append(roottree[group].text) + if "unit" in roottree[group].attrib: unit_elements.append(roottree[group].attrib["unit"]) + else: unit_elements.append(detected_unit) + if "freq_offset" in roottree[group].attrib: freq_offset_elements.append(roottree[group].attrib["freq_offset"]) + else: freq_offset_elements.append(detected_freq_offset) + + else: + print(' ERROR: No field_ref and no grid_ref attribute for this variable ', roottree[group].attrib[attribute_1], ' which has no field_group element level. This element has the attributes: ', roottree[group].attrib) + + # If field_group element level exists: + for child in elements: + if child.tag != "field": print(' At expected "field" element level, a deviating tag ', child.tag, ' is detected.', list(child.attrib.keys())) + attribute_overview = attribute_overview + list(child.attrib.keys()) # Merge each step the next list of attribute keys with the overview list + + # If id attribute exits: + if attribute_1 in child.attrib: + field_elements_attribute_1.append(child.attrib[attribute_1]) + #print(' ', attribute_1, ' = ', child.attrib[attribute_1]) + + text_elements.append(child.text) + if "unit" in child.attrib: unit_elements.append(child.attrib["unit"]) + else: unit_elements.append("no unit definition") + if "freq_offset" in child.attrib: freq_offset_elements.append(child.attrib["freq_offset"]); #print(child.attrib["freq_offset"], child.attrib["id"], file_name) + else: freq_offset_elements.append("no freq_offset") + + if attribute_2 in child.attrib: + field_elements_attribute_2.append('grid_ref="'+child.attrib[attribute_2]+'"') + #print(' ', attribute_2, ' = ', child.attrib[attribute_2]) + else: + if attribute_2 in roottree[group].attrib: + # In case the attribute is not present in th element definition, it is taken from its parent element: + #field_elements_attribute_2.append('GRID_REF="'+roottree[group].attrib[attribute_2]+'"'); + field_elements_attribute_2.append('grid_ref="'+roottree[group].attrib[attribute_2]+'"'); + #print(' WARNING: No ', attribute_2, ' attribute for this variable: ', child.attrib[attribute_1], ' This element has the attributes: ', child.attrib) + else: + #print(' WARNING: No ', attribute_2, ' attribute for this variable: ', child.attrib[attribute_1], ' This element has the attributes: ', roottree[group].attrib) + if 'do include domain ref' == 'do include domain ref': + #print('do include domain ref') + if "domain_ref" in roottree[group].attrib: + field_elements_attribute_2.append('domain_ref="'+roottree[group].attrib["domain_ref"]+'"') + else: + print(' ERROR: No ', 'domain_ref', ' attribute either for this variable: ', child.attrib[attribute_1], ' This element has the attributes: ', roottree[group].attrib) + field_elements_attribute_2.append(None) + else: + field_elements_attribute_2.append(None) + else: + # If the element has no id it should have a field_ref attribute, so checking for that: + if "field_ref" in child.attrib: + if "name" in child.attrib: + fields_without_id_name.append(child.attrib["name"]) + fields_without_id_field_ref.append(child.attrib["field_ref"]) + #print(' This variable {:15} has no id but it has a field_ref = {}'.format(child.attrib["name"], child.attrib["field_ref"])) + else: + fields_without_id_name.append(child.attrib["field_ref"]) # ASSUMPTION about XIOS logic: in case no id and no name attribute are defined inside an element, it is assumed that the value of the field_ref attribute is taken as the value of the name attribute + fields_without_id_field_ref.append(child.attrib["field_ref"]) + #print(' This variable {:15} has no id and no name, but it has a field_ref = {:15} Its full attribute list: {}'.format('', child.attrib["field_ref"], child.attrib)) + else: + print(' ERROR: No ', attribute_1, 'and no field_ref attribute either for this variable. This element has the attributes: ', child.attrib) + + #for item in range(0,len(fields_without_id_name)): + # print(' This variable {:15} has no id but it has a field_ref = {}'.format(fields_without_id_name[item], fields_without_id_field_ref[item])) + #print(' The length of the list with fields without an id is: ', len(fields_without_id_name)) + attribute_overview = list(set(attribute_overview)) + #print(' ', attribute_overview) + if not len(field_elements_attribute_1) == len(field_elements_attribute_2 ): print(' ERROR: The id and grid_ref list are not of equal length\n') + if not len(fields_without_id_name ) == len(fields_without_id_field_ref): print(' ERROR: The name and field_ref list are not of equal length\n') + return field_elements_attribute_1, field_elements_attribute_2, fields_without_id_name, fields_without_id_field_ref, attribute_overview, text_elements, unit_elements, freq_offset_elements + + + field_def_nemo_opa_id , field_def_nemo_opa_grid_ref , no_id_field_def_nemo_opa_name , no_id_field_def_nemo_opa_field_ref , attribute_overview_nemo_opa , texts_opa , units_opa , freq_offsets_opa = create_element_lists(field_def_file_directory + "field_def_nemo-opa.xml" , "id", "grid_ref") + field_def_nemo_lim_id , field_def_nemo_lim_grid_ref , no_id_field_def_nemo_lim_name , no_id_field_def_nemo_lim_field_ref , attribute_overview_nemo_lim , texts_lim , units_lim , freq_offsets_lim = create_element_lists(field_def_file_directory + "field_def_nemo-lim.xml" , "id", "grid_ref") + field_def_nemo_pisces_id , field_def_nemo_pisces_grid_ref , no_id_field_def_nemo_pisces_name , no_id_field_def_nemo_pisces_field_ref , attribute_overview_nemo_pisces , texts_pisces , units_pisces , freq_offsets_pisces = create_element_lists(field_def_file_directory + "field_def_nemo-pisces.xml" , "id", "grid_ref") + field_def_nemo_inerttrc_id, field_def_nemo_inerttrc_grid_ref, no_id_field_def_nemo_inerttrc_name, no_id_field_def_nemo_inerttrc_field_ref, attribute_overview_nemo_inerttrc, texts_inerttrc, units_inerttrc, freq_offsets_inerttrc = create_element_lists(field_def_file_directory + "field_def_nemo-inerttrc.xml", "id", "grid_ref") + + + total_field_def_nemo_id = field_def_nemo_opa_id + field_def_nemo_lim_id + field_def_nemo_pisces_id + field_def_nemo_inerttrc_id + total_field_def_nemo_grid_ref = field_def_nemo_opa_grid_ref + field_def_nemo_lim_grid_ref + field_def_nemo_pisces_grid_ref + field_def_nemo_inerttrc_grid_ref + # Note that the total name & field_ref ones are not used yet, because these cases did not occur in the set of CMIP6 data requested variables so far. + total_no_id_field_def_nemo_name = no_id_field_def_nemo_opa_name + no_id_field_def_nemo_lim_name + no_id_field_def_nemo_pisces_name + no_id_field_def_nemo_inerttrc_name + total_no_id_field_def_nemo_field_ref = no_id_field_def_nemo_opa_field_ref + no_id_field_def_nemo_lim_field_ref + no_id_field_def_nemo_pisces_field_ref + no_id_field_def_nemo_inerttrc_field_ref + total_attribute_overview_nemo_opa = attribute_overview_nemo_opa + attribute_overview_nemo_lim + attribute_overview_nemo_pisces + attribute_overview_nemo_inerttrc + # Take care the units are detected for field elements which have an id attribute: + total_texts = texts_opa + texts_lim + texts_pisces + texts_inerttrc + total_units = units_opa + units_lim + units_pisces + units_inerttrc + total_freq_offsets = freq_offsets_opa + freq_offsets_lim + freq_offsets_pisces + freq_offsets_inerttrc + + #for item in range(0,len(total_no_id_field_def_nemo_name)): + # print(' This variable {:15} has no id but it has a field_ref = {}'.format(total_no_id_field_def_nemo_name[item], total_field_def_nemo_grid_ref[item])) + print(' The length of the list with fields without an id is: ', len(total_no_id_field_def_nemo_name), '\n') + + print(' In total there are', len(total_field_def_nemo_id), 'fields defined with an id in the field_def files,', len(total_field_def_nemo_id) - len(list(set(total_field_def_nemo_id))), 'of these id\'s occur twice.\n') + + print(' The atribute overview of all field_def files:\n ', sorted(list(set(total_attribute_overview_nemo_opa))), '\n') + + for text in total_texts: + if text == None: total_texts[total_texts.index(text)] = "None" + #else: print('{:6} {}'.format(total_texts.index(text), text)) + + + #print(field_def_nemo_opa_id) + + #print(list(set(total_field_def_nemo_id))) + #print(list(set(total_field_def_nemo_grid_ref))) + #print(total_field_def_nemo_id) + #print(total_field_def_nemo_grid_ref) + + + ################################################################################ + def check_all_list_elements_are_identical(iterator): + iterator = iter(iterator) + try: + first = next(iterator) + except StopIteration: + return True + return all(first == rest for rest in iterator) + + get_indices = lambda x, xs: [i for (y, i) in zip(xs, list(range(len(xs)))) if x == y] + + def check_which_list_elements_are_identical(list_of_attribute_1, list_of_attribute_2): + list_of_duplicate_variables = [] + for child in list_of_attribute_1: + indices_identical_ids = get_indices(child, list_of_attribute_1) + #print(len(indices_identical_ids), indices_identical_ids) + id_list = [] + grid_ref_list = [] + for identical_child in range(0,len(indices_identical_ids)): + id_list .append(list_of_attribute_1[indices_identical_ids[identical_child]]) + grid_ref_list.append(list_of_attribute_2[indices_identical_ids[identical_child]]) + #print(indices_identical_ids[identical_child], list_of_attribute_1[indices_identical_ids[identical_child]], list_of_attribute_2[indices_identical_ids[identical_child]]) + if not check_all_list_elements_are_identical(id_list) : print(' WARNING: Different ids in sublist [should never occur] at positions:', indices_identical_ids, id_list) + if not check_all_list_elements_are_identical(grid_ref_list): print(' WARNING: The variable {:22} has different grid definitions, at positions: {:20} with grid: {}'.format(id_list[0] , indices_identical_ids, grid_ref_list)) + if message_occurence_identical_id and len(indices_identical_ids) > 1: print(' The variable {:22} occurs more than once, at positions: {:20} with grid: {}'.format(id_list[0] , indices_identical_ids, grid_ref_list)) + if len(indices_identical_ids) > 1: list_of_duplicate_variables.append(id_list[0]) + return list(set(list_of_duplicate_variables)) + + #vars_with_duplicate_id_definition_nemo_opa = check_which_list_elements_are_identical(field_def_nemo_opa_id , field_def_nemo_opa_grid_ref ) + #vars_with_duplicate_id_definition_nemo_lim = check_which_list_elements_are_identical(field_def_nemo_lim_id , field_def_nemo_lim_grid_ref ) + #vars_with_duplicate_id_definition_nemo_pisces = check_which_list_elements_are_identical(field_def_nemo_pisces_id , field_def_nemo_pisces_grid_ref ) + #vars_with_duplicate_id_definition_nemo_inerttrc = check_which_list_elements_are_identical(field_def_nemo_inerttrc_id , field_def_nemo_inerttrc_grid_ref ) + vars_with_duplicate_id_definition_total = check_which_list_elements_are_identical(total_field_def_nemo_id , total_field_def_nemo_grid_ref ) + #print(vars_with_duplicate_id_definition_total) + + #x = [ 'w', 'e', 's', 's', 's', 'z','z', 's'] + #print([i for i, n in enumerate(x) if n == 's']) + ################################################################################ + + #print(tree.getroot().attrib["level"]) # example of getting an attribute value of the root element: the field_definition element + #print(tree.getroot()[0].attrib["id"]) # example of getting an attribute value of its child element: the field_group element + #print(tree.getroot()[0].attrib["grid_ref"]) # example of getting an attribute value of its child element: the field_group element + #print(field_def_nemo_opa[0].attrib["id"],) # example of getting an attribute value of its child element: the field element + #print(field_def_nemo_opa[0].attrib["grid_ref"]) # example of getting an attribute value of its child element: the field element + + + + ################################################################################ + ################################### 3 ################################### + ################################################################################ + + # READING THE NEMO DATA REQUEST FILES: + + # This function can be used to read the nemo_only_dr_nodummy_file_xlsx (the nemo-only-list-cmip6-requested-variables.xlsx) + # file which has been produced by the ./create-nemo-only-list/create-nemo-only-list.sh script guidelines. + def load_nemo_only_excel(excel_file): + import openpyxl + + sheet_column_indices = create_sheet_column_indices() + + workbook = openpyxl.load_workbook(filename=excel_file, read_only=None) + worksheet = workbook['Sheet1'] + + # Create a dictionary with column names as keys and column numbers as values: + column_names = {} + column_counter = 0 + for column_name in worksheet.iter_cols(min_col=None, max_col=None, min_row=None, max_row=None, values_only=False): + column_names[column_name[0].value] = sheet_column_indices[column_counter] + column_counter += 1 + + tablenames = list_based_on_xlsx_column(worksheet, column_names, "Table" ) # CMOR table name + varnames = list_based_on_xlsx_column(worksheet, column_names, "variable" ) # CMOR variable name + varpriority = list_based_on_xlsx_column(worksheet, column_names, "prio" ) # priority of variable + vardimension = list_based_on_xlsx_column(worksheet, column_names, "Dimension format of variable" ) # Dimension format of variable according to the data request + varlongname = list_based_on_xlsx_column(worksheet, column_names, "variable long name" ) # Variable long name according to the data request + varunit = list_based_on_xlsx_column(worksheet, column_names, "unit" ) # Unit according to the data request + weblink = list_based_on_xlsx_column(worksheet, column_names, "link" ) # Link provided by the data request + comments = list_based_on_xlsx_column(worksheet, column_names, "comment" ) # Identification comment by EC-Earth members + description = list_based_on_xlsx_column(worksheet, column_names, "extensive variable description" ) # Description according to the data request + miplist = list_based_on_xlsx_column(worksheet, column_names, "list of MIPs which request this variable" ) # List of MIPs which request this variable in the data request + model_component = list_based_on_xlsx_column(worksheet, column_names, "model component in ping file" ) # The source of this data are the ping files + ping_units = list_based_on_xlsx_column(worksheet, column_names, "units as in ping file" ) # The source of this data are the ping files + ping_comment = list_based_on_xlsx_column(worksheet, column_names, "ping file comment" ) # The source of this data are the ping files + return tablenames, varnames, varpriority, vardimension, varlongname, varunit, weblink, comments, description, miplist, model_component, ping_units, ping_comment + + def list_based_on_xlsx_column(sheet, column_names, column_name): + list_with_column_content = [] + for cell in sheet[column_names[column_name]]: + cell_id_cmor_var = column_names['variable'] + str(cell.row) # Construct the cell id of the corresponding cmor variable cell + if sheet[cell_id_cmor_var].value != None: # Only empty lines are deselected (based on an empty cmor variable cell + #list_with_column_content.append(str(cell.value)) + list_with_column_content.append(cell.value) + del list_with_column_content[0] # Remove the first row, the header line + return list_with_column_content + + def create_sheet_column_indices(): + import string + alphabet = list(string.ascii_uppercase) + alphabet_extended = ['A' + s for s in alphabet] + sheet_column_indices = alphabet + alphabet_extended + return sheet_column_indices + + + if os.path.isfile(nemo_only_dr_nodummy_file_xlsx) == False: + print(' The file ', nemo_only_dr_nodummy_file_xlsx, ' does not exist.') + print(' The correct file can be generated by: ./create-nemo-only-list/create-nemo-only-list.sh') + sys.exit(' stop') + + # Read the excel file with the NEMO data request: + dr_table, dr_varname, dr_varprio, dr_vardim, dr_varlongname, dr_unit, dr_weblink, dr_comment, dr_description, dr_miplist, dr_ping_component, dr_ping_units, dr_ping_comment = load_nemo_only_excel(nemo_only_dr_nodummy_file_xlsx) + + #print(dr_miplist[0]) + + + + ################################################################################ + ################################### 4 ################################### + ################################################################################ + + # MANUPULATION, CREATION OF SOME LISTS: + + ################################################################################ + # Convert the model component labeling in the ping file naming to the model component name in NEMO: + for element_counter in range(0,len(dr_ping_component)): + if dr_ping_component[element_counter] == "ocean" : dr_ping_component[element_counter] = "opa" + if dr_ping_component[element_counter] == "seaIce" : dr_ping_component[element_counter] = "lim" + if dr_ping_component[element_counter] == "ocnBgchem": dr_ping_component[element_counter] = "pisces" + ################################################################################ + + + ################################################################################ + # Create the output_freq attribute from the table name: + table_list_of_dr = list(set(dr_table)) + for table in range(0,len(table_list_of_dr)): + if not table_list_of_dr[table] in set(["", "SImon", "Omon", "Emon", "EmonZ", "SIday", "Oday", "Eday", "Oyr", "Oclim", "Ofx", "Odec", "3hr"]): print("\n No rule defined for the encountered table: ", table_list_of_dr[table], "\n This probably needs an additon to the code of create-basic-ec-earth-cmip6-nemo-namelist.py.\n") + + # Creating a list with the output_freq attribute and its value if a relevant value is known, otherwise omit attribute definiton: + dr_output_frequency = dr_table[:] # Take care here: a slice copy is needed. + for table in range(0,len(dr_table)): + if dr_table[table] == "SImon" or dr_table[table] == "Omon" or dr_table[table] == "Emon" or dr_table[table] == "EmonZ" : dr_output_frequency[table] = 'output_freq="1mo"' # mo stands in XIOS for monthly output + if dr_table[table] == "SIday" or dr_table[table] == "Oday" or dr_table[table] == "Eday" : dr_output_frequency[table] = 'output_freq="1d"' # d stands in XIOS for dayly output + if dr_table[table] == "Oyr" : dr_output_frequency[table] = 'output_freq="1y"' # y stands in XIOS for yearly output + if dr_table[table] == "Oclim" : dr_output_frequency[table] = 'output_freq="1mo"' # Save "mo", then in post process average it over the climatology intervals (e.g. 30 year intervals). See: ece2cmor3/resources/tables/CMIP6_Oclim.json ece2cmor3/resources/tables/CMIP6_CV.json + if dr_table[table] == "Ofx" : dr_output_frequency[table] = 'output_freq="1y"' # fx fixed: time invariant: operation=once thus time unit might not matter + if dr_table[table] == "Odec" : dr_output_frequency[table] = 'output_freq="1y"' # Save "y", then in post process average it over the decadal intervals + if dr_table[table] == "3hr" : dr_output_frequency[table] = 'output_freq="3h"' # h stands in XIOS for hourly output + ################################################################################ + + + ################################################################################ + # Instead of pulling these attribute values from the root element, the field_group element, in the field_def files, we just define them here: + if include_root_field_group_attributes: + root_field_group_attributes ='level="1" prec="4" default_value="1.e20" detect_missing_value="true"' + else: + root_field_group_attributes ='' + ################################################################################ + + + + ################################################################################ + ################################### 5 ################################### + ################################################################################ + + # WRITING THE FLAT NEMO FILE_DEF FILE FOR CMIP6 FOR EC_EARTH: + + # Below 'flat' means all fields are defined within one file element definition. + flat_nemo_file_def_xml_file = open(basic_flat_file_def_file_name,'w') + flat_nemo_file_def_xml_file.write('\n\n \n') + flat_nemo_file_def_xml_file.write('\n\n \n') + flat_nemo_file_def_xml_file.write('\n\n \n\n') + + i = 0 + number_of_field_element = 0 + nr_of_missing_fields_in_field_def = 0 + nr_of_available_fields_in_field_def = 0 + + + # Load the ece2cmor targets in order to have the content of the cmor tables available. The purpose is to derive the correct time operation from the tables directly. + targets = cmor_target.create_targets("../resources/tables/", "CMIP6") + view_counter = 0 + + var_id_in_created_file_def = dr_varname[:] # Take care here: a slice copy is needed. + + cmor_table_operation = dr_varname[:] # Take care here: a slice copy is needed. + cmor_table_freq_op = dr_varname[:] # Take care here: a slice copy is needed. + cmor_table_realm = dr_varname[:] # Take care here: a slice copy is needed. + cmor_table_units = dr_varname[:] # Take care here: a slice copy is needed. + + # Looping through the NEMO data request (which is currently based on the non-dummy ping file variables). The dr_varname list contains cmor variable names. + for i in range(0, len(dr_varname)): + #print(' {:18}, {:4}, {:4}, {:5}, {:3}, {:40}, {:8} {}'.format(dr_varname[i], dr_varname.index(dr_varname[i]), i, dr_table[i], dr_varprio[i], dr_vardim[i], dr_ping_component[i], dr_miplist[i])) + if not dr_varname[i] == "": + number_of_field_element = number_of_field_element + 1 + index_in_ping_list = total_pinglist_id.index(dr_varname[i]) + if not dr_varname[i] == total_pinglist_id[index_in_ping_list]: print(' WARNING: Different names [should not occur]:', dr_varname[i], total_pinglist_id[index_in_ping_list]) + #print(' {:20} {:20} '.format(dr_varname[i], total_pinglist_id[index_in_ping_list])) + + # Creating a list with the grid_ref attribute and its value as abstracted from the field_def files: + if include_grid_ref_from_field_def_files: + # Adding the grid_ref attribute with its value (or alternatively the domain_ref attribute with its value): + if not total_pinglist_field_ref[index_in_ping_list] in total_field_def_nemo_id: + nr_of_missing_fields_in_field_def = nr_of_missing_fields_in_field_def + 1 + print(' A field_ref in one of the ping files is not found in any of the field_def files: ', nr_of_missing_fields_in_field_def, total_pinglist_field_ref[index_in_ping_list]) + else: + nr_of_available_fields_in_field_def = nr_of_available_fields_in_field_def + 1 + #print('available: ', nr_of_available_fields_in_field_def, total_pinglist_field_ref[index_in_ping_list]) + index_in_field_def_list = total_field_def_nemo_id.index(total_pinglist_field_ref[index_in_ping_list]) + grid_ref = total_field_def_nemo_grid_ref[index_in_field_def_list] + #print('{:5} {}'.format(index_in_field_def_list, total_field_def_nemo_grid_ref[index_in_field_def_list])) + texts = 'fdf_expression="'+total_texts [index_in_field_def_list]+'"' # fdf expression: field_def file expression + units = 'unit="' +total_units [index_in_field_def_list]+'"' + freq_offsets = 'freq_offset="' +total_freq_offsets[index_in_field_def_list]+'"' + else: + #grid_ref = 'grid_ref="??"' + grid_ref = '' + + # Checking the cmor table attributes: + for t in targets: + if t.variable == dr_varname[i] and t.table == dr_table[i]: + #print(' The cmor variable {:16} {:6} realm: {:12} units: {:12} cell_methods: {:68} cell_measures: {:32} type: {:8} positive: {:8}'.format(t.variable, t.table, getattr(t, "modeling_realm"), getattr(t, "units"), getattr(t, "cell_methods"), getattr(t, "cell_measures"), getattr(t, "type"), getattr(t, "positive"))) + #print(' The cmor variable {:16} {:6} realm: {:12} units: {:12} cell_measures: {:32} type: {:8} positive: {:8} valid_min: {:2} valid_max: {:2} ok_min_mean_abs: {:2} ok_max_mean_abs: {:2}'.format(t.variable, t.table, getattr(t, "modeling_realm"), getattr(t, "units"), getattr(t, "cell_measures"), getattr(t, "type"), getattr(t, "positive"), getattr(t, "valid_min"), getattr(t, "valid_max"), getattr(t, "ok_min_mean_abs"), getattr(t, "ok_max_mean_abs"))) + if False: + if not hasattr(t, 'time_operator'): + if True: + view_counter = view_counter + 1 + print(' {:3}. The cmor variable {:16} {:6} area operator: {:14} no time axis {:18} dimensions: {:34} {}'.format(view_counter, t.variable, t.table, getattr(t, "area_operator")[0], ' ', getattr(t, "dimensions"), getattr(t, "cell_methods"))) + else: + if hasattr(t, 'area_operator'): + if getattr(t, "time_operator")[0] in ['mean'] and getattr(t, "area_operator")[0] in ['areacello'] and getattr(t, "dimensions") in ['longitude latitude time', 'longitude latitude olevel time']: + if False: + view_counter = view_counter + 1 + print(' {:3}. The cmor variable {:16} {:6} area operator: {:14} time operator: {:18} dimensions: {:34} {}'.format(view_counter, t.variable, t.table, getattr(t, "area_operator")[0], getattr(t, "time_operator")[0], getattr(t, "dimensions"), getattr(t, "cell_methods"))) + else: + if True: + view_counter = view_counter + 1 + print(' {:3}. The cmor variable {:16} {:6} area operator: {:14} time operator: {:18} dimensions: {:34} {}'.format(view_counter, t.variable, t.table, getattr(t, "area_operator")[0], getattr(t, "time_operator")[0], getattr(t, "dimensions"), getattr(t, "cell_methods"))) + else: + if getattr(t, "time_operator")[0] in ['mean'] and getattr(t, "dimensions") in ['longitude latitude time', 'longitude latitude olevel time']: + if False: + view_counter = view_counter + 1 + print(' {:3}. The cmor variable {:16} {:6} no area operator {:12} time operator: {:18} dimensions: {:34} {}'.format(view_counter, t.variable, t.table, ' ' , getattr(t, "time_operator")[0], getattr(t, "dimensions"), getattr(t, "cell_methods"))) + else: + if True: + view_counter = view_counter + 1 + print(' {:3}. The cmor variable {:16} {:6} no area operator {:12} time operator: {:18} dimensions: {:34} {}'.format(view_counter, t.variable, t.table, ' ' , getattr(t, "time_operator")[0], getattr(t, "dimensions"), getattr(t, "cell_methods"))) + + # Setting the cmor table attributes: modeling_realm, units, operation & freq_op + for t in targets: + if t.variable == dr_varname[i] and t.table == dr_table[i]: + cmor_table_realm = getattr(t, "modeling_realm") + cmor_table_units = getattr(t, "units") + if False: + if cmor_table_units != str(dr_unit[i]): print(' The cmor units differ from cmor table and from the data request: ', cmor_table_units, ' versus ', str(dr_unit[i])) + if not hasattr(t, 'time_operator'): + cmor_table_operation = 'operation="once"' + cmor_table_freq_op = 'freq_op='+dr_output_frequency[i][12:] + else: + if getattr(t, "time_operator")[0] in ['mean', 'mean where sea_ice', 'mean within years']: + cmor_table_operation = 'operation="average"' + if False: + cmor_table_freq_op = 'freq_op="1ts"' # The previous incorrect method + else: + if total_pinglist_text[index_in_ping_list] != None: + if '@' in total_pinglist_text[index_in_ping_list]: + cmor_table_freq_op = 'freq_op='+dr_output_frequency[i][12:] # Only in case the expression contains an @-operator: set freq_op equal to the output_freq + else: + cmor_table_freq_op = 'freq_op="1ts"' + else: + cmor_table_freq_op = 'freq_op="1ts"' + elif getattr(t, "time_operator")[0] in ['point']: + cmor_table_operation = 'operation="instant"' + cmor_table_freq_op = 'freq_op='+dr_output_frequency[i][12:] + elif getattr(t, "time_operator")[0] in ['minimum']: + cmor_table_operation = 'operation="minimum"' + cmor_table_freq_op = 'freq_op="1ts"' + elif getattr(t, "time_operator")[0] in ['maximum']: + cmor_table_operation = 'operation="maximum"' + cmor_table_freq_op = 'freq_op="1ts"' + else: + cmor_table_operation = 'operation="??"' + cmor_table_freq_op = 'freq_op="??"' + + # Check whether variables which have a time average "@"-operator in their expression are time averaged variables, if not adjust the expression by removing the "@"-operator in this expression: + if total_pinglist_text[index_in_ping_list] != None: + if '@' in total_pinglist_text[index_in_ping_list]: + if cmor_table_operation != 'operation="average"': + print('\n WARNING: the time averaging operators @ are removed from the expression because a non time average variable is detected: {} becomes {} for {} {} with {}'.format(total_pinglist_text[index_in_ping_list], total_pinglist_text[index_in_ping_list].replace('@',''), dr_varname[i], dr_table[i], cmor_table_operation)) + total_pinglist_text[index_in_ping_list] = total_pinglist_text[index_in_ping_list].replace('@','') + else: + # Avoid None's by setting a space just before writing: + total_pinglist_text[index_in_ping_list] = ' ' + + include_variable = True + # Checking whether duplicate IDs are produced, in case add an extension "_2" in order to prevent duplicate IDs: + test_var_id_in_created_file_def = 'id_'+dr_output_frequency[i][13:15]+'_'+dr_varname[i] + if test_var_id_in_created_file_def in var_id_in_created_file_def: + print(' \n WARNING: A duplicate id definition for ' + test_var_id_in_created_file_def + ' is made unique by adding an extension.') + # Check in addtion in this block for Oclim variables which are already asked by Omon, skip them to prevent a netcdf file with two equal variable names: + index_var = var_id_in_created_file_def.index(test_var_id_in_created_file_def) + if dr_table[index_var] in ['Omon', 'Oclim'] and dr_table[i] in ['Omon', 'Oclim']: + print(' SKIP: ', dr_varname[index_var], dr_table[i], ' because this variable - table combination is also asked for table', dr_table[index_var]) + include_variable = False + test_var_id_in_created_file_def = test_var_id_in_created_file_def + '_2' + var_id_in_created_file_def[i] = test_var_id_in_created_file_def + + # Check whether the model component matches with the SImon, SIday table, if mismatch set model component equal to "lim": + if dr_table[i] in ["SImon", "SIday"] and dr_ping_component[i] != 'lim': + print(' \n WARNING: Table - model component matching issue with the variable:', '"'+dr_varname[i]+'"', 'in table', '"'+dr_table[i]+'"', 'orginating from model component', '"'+dr_ping_component[i]+'"', '. Model component wil be set to "lim".') + dr_ping_component[i] = "lim" + + #print(i, number_of_field_element, " cmor table = ", dr_table[i], " cmor varname = ", dr_varname[i], " model component = ", dr_ping_component[i], " nemo code name = ", total_pinglist_field_ref[index_in_ping_list], " expression = ", total_pinglist_text[index_in_ping_list], " ping idex = ", index_in_ping_list) + #print(index_in_ping_list, pinglistOcean_id[index_in_ping_list], pinglistOcean_field_ref[index_in_ping_list], pinglistOcean_text[index_in_ping_list]) + if include_variable: + # 41, 25, 40, 32, 20, 15, 2, 25, 32, 30, 30, 20, 15, 30, 17, 50, 15, 22, 31, 14, 125, 125, 1030, 1280, 80, 80, 4, 65, 9, {})) + #flat_nemo_file_def_xml_file.write('{:41} {:25} {:40} {:32} {:20} {:15} {:2} {:25} {:32} {:30} {:30} {:20} {:15} {:30} {:17} {:50} {:15} {:22} {:31} {:14} {:125} {:125} {:1030} {:1280} {:80} {:80} {:4} {:65} {:9}{}'.format(' ', total_pinglist_text[index_in_ping_list], ' ', '\n')) + # 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 if dr_varname[i] in vars_with_duplicate_id_definition_total: print(' \n WARNING: A variable is used with an id which is used twice in an id definition. The variable = ', dr_varname[i], ' the id = ', var_id_in_created_file_def[i]) + flat_nemo_file_def_xml_file.write('{:41} {:25} {:40} {:32} {:20} {:15} {:2} {:25} {:32} {:30} {:30} {:20} {:15} {:30} {:17} {:50} {:15} {:22} {:31} {:14} {:125} {:125} {:1030} {:1280} {:80} {:80} {:4} {:65} {:9}{}'.format( \ + ' ', \ + total_pinglist_text[index_in_ping_list], \ + ' ', \ + '\n')) + #else: + # print(i, " Empty line") # Filter the empty lines in the xlsx between the table blocks. + + if dr_varname[i] in vars_with_duplicate_id_definition_total: print(' \n WARNING: A variable is used with an id which is used twice in an id definition. The variable = ', dr_varname[i], ' the id = ', var_id_in_created_file_def[i]) + if dr_unit[i] != dr_ping_units[i]: print(' \n WARNING: The cmor_unit and ping_unit differ for variable ', dr_varname[i], ' units compare as:', dr_unit[i], ' versus ', dr_ping_units[i]) + + + # Checking whether variables are used that are present in the default file_def files with an operation definition different from: operation="average" + # Lists constructed with help of: + # more file_def_nemo-*|grep -e'operation="instant"' |sed -e 's/.*field field_ref="/#/' -e 's/".*name=.*$/#/' -e 's/#/"/g' > instant-vars.txt + # more file_def_nemo-*|grep -e'operation="maximum"' |sed -e 's/.*field field_ref="/#/' -e 's/".*name=.*$/#/' -e 's/#/"/g' > maximum-vars.txt + # more file_def_nemo-*|grep -e'operation="average"' |sed -e 's/.*field field_ref="/#/' -e 's/".*name=.*$/#/' -e 's/#/"/g' > average-vars.txt + # more file_def_nemo-*|grep -e operation=|grep -v -e 'operation="average"' -e 'operation="instant"' -e 'operation="maximum"' |sed -e 's/.*field field_ref="/#/' -e 's/".*name=.*$/#/' -e 's/#/"/g'|wc + if total_pinglist_field_ref[index_in_ping_list] in ["tdenit", "tnfix", "tcflx", "tcflxcum", "tcexp", "tintpp", "pno3tot", "ppo4tot", "psiltot", "palktot", "pfertot", "tdenit", "tnfix", "tcflx", "tcflxcum", "tcexp", "tintpp", "pno3tot", "ppo4tot", "psiltot", "palktot", "pfertot", "tdenit", "tnfix", "tcflx", "tcflxcum", "tcexp", "tintpp", "pno3tot", "ppo4tot", "psiltot", "palktot", "pfertot"]: + print(' \n WARNING: The cmor variable', '"'+dr_varname[i]+'"', 'with field_ref="'+total_pinglist_field_ref[index_in_ping_list]+'"', 'is used with operation="average" while a variable with the same name in the default file_def files uses operation="instant".') + if total_pinglist_field_ref[index_in_ping_list] in ["mldkz5", "mldr10_1max", "mldkz5"]: + print(' \n WARNING: The cmor variable', '"'+dr_varname[i]+'"', 'with field_ref="'+total_pinglist_field_ref[index_in_ping_list]+'"', 'is used with operation="average" while a variable with the same name in the default file_def files uses operation="maximum".') + + flat_nemo_file_def_xml_file.write('\n\n \n') + flat_nemo_file_def_xml_file.write('\n\n \n') + flat_nemo_file_def_xml_file.write('\n\n \n') + + flat_nemo_file_def_xml_file.close() + + + ################################################################################ + ################################### 6 ################################### + ################################################################################ + if produce_varlistjson_file: + drqlistjson_file_name = '../resources/test-data-request/drqlist-nemo-all.json' + file_name_varlistjson_ece_cc = '../resources/test-data-request/varlist-nemo-all-ec-earth-cc.json' + file_name_varlistjson_ece_aogcm = '../resources/test-data-request/varlist-nemo-all-ec-earth-aogcm.json' + + drqlistjson = open(drqlistjson_file_name,'w') + drqlistjson.write('{}{}'.format('{','\n')) + + previous_table = 'no' + + # Looping through the NEMO data request (which is currently based on the non-dummy ping file variables). The dr_varname list contains cmor variable names. + for i in range(0, len(dr_varname)): + if i == len(dr_varname) - 1: + ending_status = True + else: + if dr_table[i+1] != dr_table[i]: + ending_status = True + else: + ending_status = False + + if not dr_varname[i] == "": + if dr_table[i] != previous_table: + if previous_table != 'no': + drqlistjson.write(' ],{}'.format('\n')) + drqlistjson.write(' {}{}'.format('"'+dr_table[i]+'": [', '\n')) + if ending_status: + drqlistjson.write(' {}{}'.format('"'+dr_varname[i]+'"', '\n')) + else: + drqlistjson.write(' {}{}'.format('"'+dr_varname[i]+'",', '\n')) + #drqlistjson.write(' {:20} {:10} {}{}'.format('"'+dr_varname[i]+'",', dr_table[i], ending_status, '\n')) + previous_table = dr_table[i] + + drqlistjson.write(' ]{}'.format('\n')) + drqlistjson.write('{}{}'.format('}','\n')) + drqlistjson.close() + + command_2 = " drq2varlist --drq " + drqlistjson_file_name + " --varlist " + file_name_varlistjson_ece_cc + " --ececonf EC-EARTH-CC " + command_3 = " drq2varlist --drq " + drqlistjson_file_name + " --varlist " + file_name_varlistjson_ece_aogcm + " --ececonf EC-EARTH-AOGCM " + #os.system(command_1) + os.system(command_2) + os.system(command_3) + + print('\n The produced {:67} contains {:} variables.'.format(drqlistjson_file_name, i)) + print(' The produced {:67} is a variant: ordened by model component, the ignored fields are dropped and the preferences are applied.'.format(file_name_varlistjson_ece_cc )) + print(' The produced {:67} is a variant: ordened by model component, the ignored fields are dropped and the preferences are applied.'.format(file_name_varlistjson_ece_aogcm)) + + ################################################################################ + ################################### 7 ################################### + ################################################################################ + + # READING THE BASIC FLAT FILE_DEF FILE: + + if os.path.isfile(basic_flat_file_def_file_name) == False: print(' The file ', basic_flat_file_def_file_name, ' does not exist.'); sys.exit(' stop') + + tree_basic_file_def = xmltree.parse(basic_flat_file_def_file_name) + root_basic_file_def = tree_basic_file_def.getroot() # This root has four indices: the 1st index refers to file_definition, the 2nd index refers to the file_group, the 3rd index refers to the file, the 4th index referers to the field elements + field_elements_basic_file_def = root_basic_file_def[0][0][0][:] + #field_elements_basic_file_def = tree_basic_file_def.getroot()[0][:] # This root has four indices: the 1st index refers to file_definition, the 2nd index refers to the file_group, the 3rd index refers to the file, the 4th index referers to the field elements + + #print('\n Number of field elements is {:} in file {:}'.format(len(root_basic_file_def.findall('.//field[@id]')), basic_flat_file_def_file_name)) + #print('{:}'.format(field.attrib["id"])) + #for field in root_basic_file_def.findall('.//field[@id]'): + #for field in root_basic_file_def.findall('.//field[@name="tos"]'): + # print('{:25} {:20} {:10} {:28} {:20} {:20} {:7} {:10} {:10} {:}'.format(field.attrib["id"], field.attrib["name"], field.attrib["table"] , field.attrib["field_ref"], \ + # field.attrib["grid_ref"] , field.attrib["unit"], field.attrib["enabled"], field.attrib["operation"], \ + # field.attrib["freq_op"] , field.text)) + + component_collection = [] + output_freq_collection = [] + grid_ref_collection = [] + for field in root_basic_file_def.findall('.//field[@component]'): component_collection.append(field.attrib["component"]) + for field in root_basic_file_def.findall('.//field[@output_freq]'): output_freq_collection.append(field.attrib["output_freq"]) + for field in root_basic_file_def.findall('.//field[@grid_ref]'): grid_ref_collection.append(field.attrib["grid_ref"]) + component_overview = list(set(component_collection)) + output_freq_overview = list(set(output_freq_collection)) + grid_ref_overview = list(set(grid_ref_collection)) + + #print('\n There are', len(component_overview), ' model components to loop over:\n ', component_overview, '\n') + #print( ' There are', len(output_freq_overview), ' output frequencies to loop over:\n ', output_freq_overview, '\n') + #print( ' There are', len(grid_ref_overview), ' grids to loop over:\n ', grid_ref_overview, '\n') + + + + ################################################################################ + ################################### 8 ################################### + ################################################################################ + + # WRITING THE BASIC NEMO FILE_DEF FILE FOR CMIP6 FOR EC_EARTH: + + # Alternatively this ordering can be later also used to achieve a preserved preferred order instead of the python2 order. + # Five order help functions which are used by sorted in order to match the previous python2 ordering of the thirty file blocks + # in the basic-cmip6-file_def_nemo.xml (see sorted with key argument: https://realpython.com/python-sort/ + def tweakedorder_component(iterable_object): + if iterable_object == 'lim' : return 1 + elif iterable_object == 'opa' : return 2 + elif iterable_object == 'pisces' : return 3 + else: return 4 + + # The three lists below have been dtected with the following grep: + # grep name_suffix ${HOME}/cmorize/ece2cmor3-python-2/ece2cmor3/resources/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml| sed -e "s/^.*lim_/l '/" -e "s/^.*opa_/o '/" -e "s/^.*pisces_/p '/" -e "s/grid.*freq..//" -e "s/zoom.*freq..//" -e "s/vert.*freq..//" -e "s/.>$/'/" | uniq + def tweakedorder_freq_lim(iterable_object): + if iterable_object == '1d' : return 1 + elif iterable_object == '1mo' : return 2 + else: return 3 + + def tweakedorder_freq_opa(iterable_object): + if iterable_object == '1y' : return 1 + elif iterable_object == '3h' : return 2 + elif iterable_object == '1d' : return 3 + elif iterable_object == '1mo' : return 4 + else: return 5 + + def tweakedorder_freq_pisces(iterable_object): + if iterable_object == '1y' : return 1 + elif iterable_object == '1d' : return 2 + elif iterable_object == '1mo' : return 3 + else: return 4 + + # The three lists below have been detected with the following grep (but needed additional manual order fixes for the grid_opa list: + # grep name_suffix ${HOME}/cmorize/ece2cmor3-python-2/ece2cmor3/resources/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml | sed -e "s/^.*lim_/l '/" -e "s/^.*opa_/o '/" -e "s/^.*pisces_/p '/" -e "s/..output.*$/'/" + def tweakedorder_grid_lim(iterable_object): + if iterable_object == 'grid_V_2D' : return 1 + elif iterable_object == 'grid_T_2D' : return 2 + elif iterable_object == 'grid_U_2D' : return 3 + elif iterable_object == 'grid_1point' : return 7 + elif iterable_object == 'grid_T_3D_ncatice' : return 8 + elif iterable_object == 'grid_transect_lim' : return 9 + else: return 10 + + def tweakedorder_grid_opa(iterable_object): + if iterable_object == 'grid_T_3D' : return 1 + elif iterable_object == 'zoom_700_sum' : return 2 + elif iterable_object == 'grid_V_2D' : return 3 + elif iterable_object == 'grid_V_3D' : return 4 + elif iterable_object == 'grid_T_2D' : return 5 + elif iterable_object == 'grid_U_2D' : return 6 + elif iterable_object == 'zoom_300_sum' : return 7 + elif iterable_object == 'grid_transect' : return 8 + elif iterable_object == 'grid_W_3D' : return 9 + elif iterable_object == 'grid_W_2D' : return 10 + elif iterable_object == 'grid_U_3D' : return 11 + elif iterable_object == 'vert_sum' : return 12 + elif iterable_object == 'grid_1point' : return 13 + elif iterable_object == 'grid_ptr_T_3basin_2D' : return 14 + elif iterable_object == 'zoom_2000_sum' : return 25 + elif iterable_object == 'grid_ptr_W_3basin_3D' : return 26 + else: return 27 + + def tweakedorder_grid_pisces(iterable_object): + if iterable_object == 'grid_T_3D' : return 1 + elif iterable_object == 'grid_T_2D' : return 2 + elif iterable_object == 'grid_T_SFC' : return 3 + else: return 4 + + + #for field in root_basic_file_def.findall('.//field[@component="opa"]'): + #for field in root_basic_file_def.findall('.//field[@component="opa"][@output_freq="1mo"][@grid_ref="grid_T_2D"]'): + + basic_nemo_file_def_xml_file = open(basic_file_def_file_name,'w') + basic_nemo_file_def_xml_file.write('\n\n \n') + basic_nemo_file_def_xml_file.write('\n\n \n') + + + field_counter = 0 + file_counter = 0 + + # Loop over the model components: ['lim', 'opa', 'pisces'] + for component_value in sorted(component_overview, key=tweakedorder_component): + + # Select the appropiate order function in order to match our former python2 ordering: + if component_value == 'lim': + tweakedorder_freq = tweakedorder_freq_lim + tweakedorder_grid = tweakedorder_grid_lim + elif component_value == 'pisces': + tweakedorder_freq = tweakedorder_freq_pisces + tweakedorder_grid = tweakedorder_grid_pisces + else: + tweakedorder_freq = tweakedorder_freq_opa + tweakedorder_grid = tweakedorder_grid_opa + + # Loop over the output frequencies: ['y', 'mo', 'd'] + for output_freq_value in sorted(output_freq_overview, key=tweakedorder_freq): + + # Loop over the grid references: ['grid_T_3D', 'grid_V_2D', 'grid_V_3D', 'grid_T_2D', 'grid_U_2D', 'grid_transect', 'grid_W_3D', 'grid_W_2D', 'grid_U_3D', 'grid_T_SFC', 'grid_1point', 'grid_ptr_T_3basin_2D', 'grid_T_3D_ncatice', 'grid_ptr_W_3basin_3D', 'grid_transect_lim'] + for grid_ref_value in sorted(grid_ref_overview, key=tweakedorder_grid): + number_of_fields_per_file = 0 + #print('{:7} {:7} {:}'.format(component_value, output_freq_value, grid_ref_value)) + + # Internal loop of finding the selection based on the three selection criteria: model component, output_frequency and grid reference: + for field in root_basic_file_def.findall('.//field[@component="'+component_value+'"][@output_freq="'+output_freq_value+'"][@grid_ref="'+grid_ref_value+'"]'): + number_of_fields_per_file = number_of_fields_per_file + 1 + field_counter = field_counter + 1 + #print(' {:7} {:20} {:10} {}'.format(field.attrib["component"], field.attrib["name"], field.attrib["output_freq"], field.attrib["grid_ref"])) + if number_of_fields_per_file != 0: + file_counter = file_counter + 1 + #print(' Number of fields per file is {:3} for the combination: {:7} {:4} {}'.format(number_of_fields_per_file, component_value, output_freq_value, grid_ref_value)) + + # Writing the file elements for the file_def file: + #basic_nemo_file_def_xml_file.write('\n\n \n\n'.format(file_counter, component_value[0:3], grid_ref_value, output_freq_value)) # Shorten model component label to 3 characters + basic_nemo_file_def_xml_file.write('\n\n \n\n'.format(file_counter, component_value , grid_ref_value, output_freq_value)) + # Now we know in which case we have not an empty list of fields for a certain combination, we write a file element by repeating the same search loop: + for written_field in root_basic_file_def.findall('.//field[@component="'+component_value+'"][@output_freq="'+output_freq_value+'"][@grid_ref="'+grid_ref_value+'"]'): + #print('{:6} {:30} {:21} {:}'.format(written_field.tag, written_field.attrib['id'], written_field.attrib['grid_ref'], written_field.attrib['output_freq'])) + #print('tttt'+written_field.text+'tttt') # To figure out the spaces in the string around None + #basic_nemo_file_def_xml_file.write( ' {:70} \n'.format('"'+written_field.attrib["id"]+'"', '"'+written_field.attrib["name"]+'"', '"'+written_field.attrib["table"]+'"', '"'+written_field.attrib["field_ref"]+'"', '"'+written_field.attrib["grid_ref"]+'"', '"'+written_field.attrib["cmor_table_units"]+'"' , written_field.text)) + #basic_nemo_file_def_xml_file.write( ' {:70} \n'.format('"'+written_field.attrib["id"]+'"', '"'+written_field.attrib["name"]+'"', '"'+written_field.attrib["table"]+'"', '"'+written_field.attrib["field_ref"]+'"', '"'+written_field.attrib["grid_ref"]+'"', '"'+written_field.attrib["cmor_table_units"]+'"', '"'+written_field.attrib["operation"]+'"' , written_field.text)) + #basic_nemo_file_def_xml_file.write( ' {:70} \n'.format('"'+written_field.attrib["id"]+'"', '"'+written_field.attrib["name"]+'"', '"'+written_field.attrib["table"]+'"', '"'+written_field.attrib["field_ref"]+'"', '"'+written_field.attrib["grid_ref"]+'"', '"'+written_field.attrib["cmor_table_units"]+'"' , '"'+written_field.attrib["freq_op"]+'"', written_field.text)) + basic_nemo_file_def_xml_file.write( ' {:70} \n'.format('"'+written_field.attrib["id"]+'"', '"'+written_field.attrib["name"]+'"', '"'+written_field.attrib["table"]+'"', '"'+written_field.attrib["field_ref"]+'"', '"'+written_field.attrib["grid_ref"]+'"', '"'+written_field.attrib["cmor_table_units"]+'"', '"'+written_field.attrib["operation"]+'"', '"'+written_field.attrib["freq_op"]+'"', written_field.text)) + basic_nemo_file_def_xml_file.write( '\n \n') + + #else: print(' No fields for this combination: {:7} {:4} {}'.format(component_value, output_freq_value, grid_ref_value)) + + + basic_nemo_file_def_xml_file.write('\n\n \n') + basic_nemo_file_def_xml_file.write('\n\n \n') + + basic_nemo_file_def_xml_file.close() + + print('\n There are', field_counter, 'fields distributed over', file_counter, 'files.\n') + + #print(tree_basic_file_def) + #print(root_basic_file_def.tag) # Shows the root file_definition element tag + #print(root_basic_file_def.attrib) # Shows the root file_definition element attributes + #print(root_basic_file_def[0].tag) # Shows the file_group element tag + #print(root_basic_file_def[0].attrib) # Shows the file_group element attributes + #print(field_elements_basic_file_def[0].tag) # Shows the file element tag of the first file element + #print(field_elements_basic_file_def[0].attrib) # Shows the file element attributes of the first file element + #print(field_elements_basic_file_def[0][0].tag) # Shows the field element tag of the first field element + #print(field_elements_basic_file_def[0][0].attrib) # Shows the field element attributes of the first field element + + #for child in field_elements_basic_file_def[0]: + # print('{:25} {:28} {:5} {:25} {:10} {}'.format(child.attrib["id"], child.attrib["field_ref"], child.attrib["output_freq"], child.attrib["grid_ref"], child.attrib["component"], child.text)) + + + + ################################################################################ + ################################### 9 ################################### + ################################################################################ + + # PRODUCE A nemopar.json FILE WITH ALL THE NON-DUMMY PING FILE VARIABLES: + + if produce_nemopar_json: + nemopar = open('new-nemopar.json','w') + nemopar.write('[\n') + i = 0 + catched = [] + for field in root_basic_file_def.findall('.//field[@id]'): + # Prevent double occurences: + if field.attrib["name"] not in catched: + i = i + 1 + if i > 1: nemopar.write(' },\n') + nemopar.write(' {\n') + nemopar.write(' "source": "'+field.attrib["name"]+'",\n') + nemopar.write(' "grid": "'+field.attrib["grid_ref"]+'",\n') + nemopar.write(' "target": "'+field.attrib["name"]+'"\n') + catched.append(field.attrib["name"]) + nemopar.write(' }\n') + nemopar.write(']\n') + nemopar.close() + print(' The produced new-nemopar.json file contains', i, 'variables.') + + + + ################################################################################ + ################################### 10 ################################### + ################################################################################ + + # TEST THE RESULT: READING THE BASIC FILE_DEF FILE: + + if os.path.isfile(basic_file_def_file_name) == False: print(' The file ', basic_file_def_file_name, ' does not exist.'); sys.exit(' stop') + + tree_basic_file_def = xmltree.parse(basic_file_def_file_name) + root_basic_file_def = tree_basic_file_def.getroot() # This root has four indices: the 1st index refers to file_definition, the 2nd index refers to the file_group, the 3rd index refers to the file, the 4th index referers to the field elements + field_elements_basic_file_def = root_basic_file_def[0][0][0][:] + + #for file in root_basic_file_def.findall('.//file[@id]'): + # print(' {:}'.format(file.attrib["id"])) + + ################################################################################ + ################################### End ################################### + ################################################################################ + +else: + print() + print(' This script needs one argument: a config file name. E.g.:') + print(' ', sys.argv[0], 'config-create-basic-ec-earth-cmip6-nemo-namelist') + print() + + + +# TO DO: +# Create a nemo only for all NEMO ping variables INCLUDING ping dummy vars. Are there variables not in ping but present in data request? +# Check: Does the most general file contain all tier, prio = 3 and include all ping dummy variables? +# Check for name attribute occurence in case the id attribute is available in element definition, if occuring: any action? +# Add header to file_def containing: source of column data, instruction and idea of file +# Generate the dummy latest data request based ping files. And also the ones with the merged Shaconemo content. + +# DONE: +# Read the basic-flat-cmip6-file_def_nemo.xml so all data is inside one xml tree. DONE +# Therafter: Select on three criteria: model component (i.e. opa, lim, pisces), output frequency and (staggered) grid: create for each +# sub group a file element in the file_def file. DONE. +# Is it possible to read the field_def files and pull the grid_ref for each field element from the parent element? DONE +# Add script which reads ping file xml files and write the nemo only pre basic xmls file. DONE (within this script) +# Does the added field_def_nemo-inerttrc.xml for pisces need any additional action? DONE (not realy, just include it) +# Actually the units of the data request should be added in the excel files, and then the dr_unit should also be included in the xml file. DONE +# Add link from dr TRIED (rejected, too much effort due to string conversion.) +# Check whether the xml field_def text, which contains the arithmetic expression, is consistent with the expression given in the ping files. DONE, i.e. this data is added in fdf_expression attribute +# 'standard_name' in the field_def files can be ignored, right? Yes, omit. +# 'long_name' in the field_def files can be ignored because it is taken from the cmor tables, right? Yes, omit. +# 'unit' in the field_def files can be ignored because it is taken from the cmor tables, right? Add for consistency check. DONE: quite some variables miss a unit attribute +# Read also the ping comment, use np.genfromtxt for that. DONE: this done via the nemo-only file. + +# The block in field_def_nemo-opa.xml has field element definitions which are defined without a file_group element, +# that means they have one element layer less. DONE: this case is now covered + + +# The atribute overview of all field_def files: +# ['name', 'grid_ref', 'freq_offset', 'axis_ref', 'standard_name', 'read_access', 'long_name', 'detect_missing_value', 'field_ref', 'freq_op', 'operation', 'id', 'unit'] +# [ 'freq_offset', 'axis_ref', 'read_access', 'detect_missing_value', 'freq_op', 'operation', , 'unit'] + +# The freq_offset attribute is always inside the field element definition in the field_def files (with value: _reset_ or 1mo-2ts ): +# One occurence of the attribute in the set of Transects fields: +# grep -iHn freq_offset field_def_nemo-* | grep -v ' @uoce_e3u_vsum_e2u +# grep -iHn read_access field_def_nemo-* + +# Two variables have an additional axis_ref attribute in field element definition beside their domain_ref attribute in +# their parent group definition, but so far are not part of CMIP6 data request: +# field_def_nemo-opa.xml:595: +# field_def_nemo-opa.xml:596: + + + + +# # Create the xml file structure with xmltree: +# file_definition_element = xmltree.Element('file_definition') # Defines the root element +# file_element = xmltree.SubElement(file_definition_element, 'file') +# field_element_1 = xmltree.SubElement(file_element, 'field') +# field_element_2 = xmltree.SubElement(file_element, 'field') +# field_element_3 = xmltree.SubElement(file_element, 'field') +# field_element_1.set('name','field 1') +# field_element_2.set('name','field 2') +# field_element_3.set('name','field 3') +# field_element_1.set('id','id field 1') +# field_element_2.set('id','id field 2') +# field_element_3.set('id','id field 3') + +# # Write the xml file with xmltree: +# general_nemo_file_def_file = open("general_xios_file_def.xml", "w") +# general_nemo_file_def_file.write(xmltree.tostring(file_definition_element)) + +##tree = xmltree.parse('general_xios_file_def.xml') +##tree.write('newgeneral_xios_file_def.xml') + +## create the file structure +#data = ET.Element('data') +#items = ET.SubElement(data, 'items') +#item1 = ET.SubElement(items, 'item') +#item2 = ET.SubElement(items, 'item') +#item1.set('name','item1') +#item2.set('name','item2') +#item1.text = 'item1abc' +#item2.text = 'item2abc' + + + +# Below a block with an alternative way of reading the data request, i.e. instead of the excel xlsx file an ascii file is read: + +# # Checking if the file exist: +# if os.path.isfile(nemo_only_dr_nodummy_file_txt) == False: print(' The ', nemo_only_dr_nodummy_file_txt, ' does not exist.'); sys.exit(' stop') + +# #data_entire_file = np.loadtxt(nemo_only_dr_nodummy_file_txt, skiprows=2) +# # https://docs.scipy.org/doc/numpy-1.14.0/reference/generated/numpy.genfromtxt.html#numpy.genfromtxt +# data_entire_file = np.genfromtxt(nemo_only_dr_nodummy_file_txt, dtype=None, comments='#', delimiter=None, skip_header=2, skip_footer=0, converters=None, missing_values=None, filling_values=None, usecols=None, names=None, excludelist=None, deletechars=None, replace_space='_', autostrip=False, case_sensitive=True, defaultfmt='f%i', unpack=None, usemask=False, loose=True, invalid_raise=True, max_rows=None) +# number_of_data_rows = data_entire_file.shape[0] +# number_of_data_columns = data_entire_file.shape[1] +# #print(data_entire_file[5][1]) # print the element at the 6th line, 2nd column +# ##print(data_entire_file[:][1]) # This does not work as expected +# #print(number_of_data_rows, number_of_data_columns) diff --git a/ece2cmor/ece2cmor3/scripts/create-mask-for-incorrect-regridded-ifs-land-masked-variables.sh b/ece2cmor/ece2cmor3/scripts/create-mask-for-incorrect-regridded-ifs-land-masked-variables.sh new file mode 100755 index 0000000000000000000000000000000000000000..67b605e7d3bda091d057a3ca2833e05d62786bec --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/create-mask-for-incorrect-regridded-ifs-land-masked-variables.sh @@ -0,0 +1,132 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This scripts needs one argument: the EC-Earth3 resolution +# +# Run this script without arguments for examples how to call this script. +# +# This script creates the omit_mask for the EC-Earth IFS land masked variables which are created with ece2cmor3 version earlier than 1.7.0, see: +# https://github.com/EC-Earth/ece2cmor3/issues/691 +# https://github.com/EC-Earth/ece2cmor3/issues/671 +# https://github.com/EC-Earth/ece2cmor3/issues/686 +# https://github.com/EC-Earth/ece2cmor3/wiki/EC-Earth3-ESGF-errata +# https://dev.ec-earth.org/issues/922 +# https://b2share.eudat.eu/records/f674000ecf3e4510a25960a4b7d77ee3 + +if [ "$#" -eq 1 ]; then + ec_earth_resolution=$1 + + # The path and filenames in this first if-else block need to fit your situation and thus require adjustment (no further adjustemts required): + if [ "${ec_earth_resolution}" = "LR" ]; then + ec_earth_resolution='lr' + tsl_Lmon_incorrect=omit-mask-for-ifs-land-masked-variables/lr/cmor-Lmon-tsl-v1.5.0/CMIP6/CMIP/EC-Earth-Consortium/EC-Earth3-LR/historical/r1i1p1f1/Lmon/tsl/gr/v20210324/tsl_Lmon_EC-Earth3-LR_historical_r1i1p1f1_gr_663501-663512.nc + tsl_Lmon_corrected=omit-mask-for-ifs-land-masked-variables/lr/cmor-Lmon-tsl-v1.7.0/CMIP6/CMIP/EC-Earth-Consortium/EC-Earth3-LR/historical/r1i1p1f1/Lmon/tsl/gr/v20210324/tsl_Lmon_EC-Earth3-LR_historical_r1i1p1f1_gr_663501-663512.nc + resolution_comment="This mask corresponds to the EC-Earth3 LR resolution, i.e. it corresponds with the IFS T159 atmosphere resolution" + output_file=omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR.nc + elif [ "${ec_earth_resolution}" = "LR-pliocene" ]; then + ec_earth_resolution='lr-pliocene' + tsl_Lmon_incorrect=omit-mask-for-ifs-land-masked-variables/lr-pliocene/cmor-Lmon-tsl-v1.5.0/CMIP6/CMIP/EC-Earth-Consortium/EC-Earth3-LR/historical/r1i1p1f1/Lmon/tsl/gr/v20210329/tsl_Lmon_EC-Earth3-LR_historical_r1i1p1f1_gr_199001-199012.nc + tsl_Lmon_corrected=omit-mask-for-ifs-land-masked-variables/lr-pliocene/cmor-Lmon-tsl-v1.7.0/CMIP6/CMIP/EC-Earth-Consortium/EC-Earth3-LR/historical/r1i1p1f1/Lmon/tsl/gr/v20210329/tsl_Lmon_EC-Earth3-LR_historical_r1i1p1f1_gr_199001-199012.nc + resolution_comment="This mask corresponds to the pliocene variant of the EC-Earth3 LR resolution, i.e. it corresponds with the IFS T159 atmosphere resolution" + output_file=omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-LR-pliocene.nc + elif [ "${ec_earth_resolution}" = "standard" ]; then + ec_earth_resolution='standard' + tsl_Lmon_incorrect=omit-mask-for-ifs-land-masked-variables/standard/original/tsl_Lmon_EC-Earth3_piControl_r1i1p1f1_gr_199101-199112-v1.5.0.nc + tsl_Lmon_corrected=omit-mask-for-ifs-land-masked-variables/standard/original/tsl_Lmon_EC-Earth3_piControl_r1i1p1f1_gr_199101-199112-v1.7.0.nc + resolution_comment="This mask corresponds to the EC-Earth3 standard resolution, i.e. it corresponds with the IFS T255 atmosphere resolution" + output_file=omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables.nc + elif [ "${ec_earth_resolution}" = "HR" ]; then + ec_earth_resolution='hr' + tsl_Lmon_incorrect=omit-mask-for-ifs-land-masked-variables/hr/original/tsl_Lmon_EC-Earth3-HR_dcppA-hindcast_s1990-r1i2p1f1_gr_199011-199012.ece2cmor3-v1-5-0.nc + tsl_Lmon_corrected=omit-mask-for-ifs-land-masked-variables/hr/original/tsl_Lmon_EC-Earth3-HR_dcppA-hindcast_s1990-r1i2p1f1_gr_199011-199012.ece2cmor3-v1-7-0.nc + resolution_comment="This mask corresponds to the EC-Earth3 HR resolution, i.e. it corresponds with the IFS T511 atmosphere resolution" + output_file=omit-mask-for-regrid-bug-in-ec-earth-atmospheric-land-masked-variables-HR.nc + else + echo 'Invalid argument value. Vaild options: LR, LR-pliocene, standard, HR' + exit + fi + + if [ ! -f "${tsl_Lmon_incorrect}" ]; then echo; echo " Error: " ${tsl_Lmon_incorrect} " does not exist. " >&2; echo; exit 1; fi + if [ ! -f "${tsl_Lmon_corrected}" ]; then echo; echo " Error: " ${tsl_Lmon_corrected} " does not exist. " >&2; echo; exit 1; fi + + copy_tsl_Lmon_incorrect=${tsl_Lmon_incorrect##*/} + copy_tsl_Lmon_corrected=${tsl_Lmon_corrected##*/} + copy_tsl_Lmon_incorrect=${copy_tsl_Lmon_incorrect/.nc/-v1.5.0-${ec_earth_resolution}.nc} + copy_tsl_Lmon_corrected=${copy_tsl_Lmon_corrected/.nc/-v1.7.0-${ec_earth_resolution}.nc} + + # Create a local copy: + rsync -a ${tsl_Lmon_incorrect} ${copy_tsl_Lmon_incorrect} + rsync -a ${tsl_Lmon_corrected} ${copy_tsl_Lmon_corrected} + + # Check the ece2cmor3 version in the data files: + ncdump -h ${copy_tsl_Lmon_incorrect} | grep 'ece2cmor v1....' | sed -e 's/$/ # tag v1.5.0: 0e9c8f0d4efe956627d5dee9cd3ae6d26a995191 /' + ncdump -h ${copy_tsl_Lmon_corrected} | grep 'ece2cmor v1....' | sed -e 's/$/ # tag v1.7.0: c9063184d7c8314349d4a99a737ad290ef0e97ac /' + + + + # Set missing values to -9999.0 in order to make the differences clear if in a ncdiff one point is missing and in the other has a value: + cdo -O setmisstoc,-9999.0 ${copy_tsl_Lmon_incorrect} tsl_sample-v1.5.0-missval-9999.nc + cdo -O setmisstoc,-9999.0 ${copy_tsl_Lmon_corrected} tsl_sample-v1.7.0-missval-9999.nc + + # Take the differences: + ncdiff -O tsl_sample-v1.5.0-missval-9999.nc tsl_sample-v1.7.0-missval-9999.nc diff-tsl_sample-v1.5.0-v1.7.0-missval-9999.nc + + # Set all zero values to missing values: + cdo -O setctomiss,0 diff-tsl_sample-v1.5.0-v1.7.0-missval-9999.nc diff-tsl_sample-v1.5.0-v1.7.0.nc + + # Set all non-zero values to 1: + ncap2 -s 'where(tsl!=0) tsl=1;' diff-tsl_sample-v1.5.0-v1.7.0.nc -O diff-tsl_sample-v1.5.0-v1.7.0-mask.nc + + # Select one time record: + ncks -O -d time,0 diff-tsl_sample-v1.5.0-v1.7.0-mask.nc omit-mask-v1.5.0-v1.7.0-a.nc + + # Select one depth layer: + ncks -O -F -d depth,1 omit-mask-v1.5.0-v1.7.0-a.nc omit-mask-v1.5.0-v1.7.0-b.nc + + # Remove depricated time dimension from tsl: + ncwa -O -a time -d time,0,0 omit-mask-v1.5.0-v1.7.0-b.nc omit-mask-v1.5.0-v1.7.0-c.nc + + # Remove depricated depth dimension from tsl: + ncwa -O -a depth -d depth,0,0 omit-mask-v1.5.0-v1.7.0-c.nc omit-mask-v1.5.0-v1.7.0-d.nc + + # Get rid of unused dimensions: + ncks -O -v tsl omit-mask-v1.5.0-v1.7.0-d.nc omit-mask-v1.5.0-v1.7.0-e.nc + + # Rename tsl to omit_mask: + ncrename -O -v tsl,omit_mask omit-mask-v1.5.0-v1.7.0-e.nc omit-mask-v1.5.0-v1.7.0-f.nc + + # Remove all global attributes: + ncatted -Oh -a ,global,d,, omit-mask-v1.5.0-v1.7.0-f.nc omit-mask-v1.5.0-v1.7.0-g.nc + + # Adjust & remove attributes: + ncatted -Oh -a units,omit_mask,m,c,"-" -a comment,omit_mask,m,c,"The IFS land masked variables in EC-Earth3 which have been cmorised with an ece2cmor3 version earlier than v1.7 have wrong \n values at certain nearby coast points due to a regridding issue (see https://github.com/EC-Earth/ece2cmor3/issues/691). The points in \n this mask with value 1 have to be omitted in any analysis for these land masked variables." -a standard_name,omit_mask,d,, -a long_name,omit_mask,m,c,"omit mask" -a cell_measures,omit_mask,d,, -a cell_methods,omit_mask,d,, -a history,omit_mask,d,, omit-mask-v1.5.0-v1.7.0-g.nc omit-mask-v1.5.0-v1.7.0-h.nc + + + # Finally set missing values to 0: + cdo -O --history setmisstoc,0 omit-mask-v1.5.0-v1.7.0-h.nc omit-mask-v1.5.0-v1.7.0-i.nc + + + # Add global production attributes: + ncatted -Oh -a resolution,global,a,c,"${resolution_comment}" omit-mask-v1.5.0-v1.7.0-i.nc omit-mask-v1.5.0-v1.7.0-j.nc + ncatted -Oh -a production,global,a,c,"This dataset is produced by Thomas Reerink at KNMI on behalf of the EC-Earth consortium" omit-mask-v1.5.0-v1.7.0-j.nc omit-mask-v1.5.0-v1.7.0-k.nc + + # Give the final output file its filename: + rsync -a omit-mask-v1.5.0-v1.7.0-k.nc ${output_file} + + # Remove all temporal files: + rm -f omit-mask-v1.5.0-v1.7.0-* diff-tsl_sample-v1.5.0-v1.7.0* tsl_* + + echo + echo ' The result can be viewed by:' + echo ' ' ncview -repl -no_auto_overlay ${output_file} + echo + +else + echo + echo ' This scripts requires one arguments: the EC-Earth3 resolution, e.g.:' + echo ' ' $0 LR + echo ' ' $0 LR-pliocene + echo ' ' $0 standard + echo ' ' $0 HR + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/check-nemo-archived-xlsx-files.sh b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/check-nemo-archived-xlsx-files.sh new file mode 100755 index 0000000000000000000000000000000000000000..befbe26a3095b4f8c5adfba0991ae09953aea335 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/check-nemo-archived-xlsx-files.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +# +# This tiny script just prints the alias commands to check whether the content of the following files: +# nemo-only-list-cmip6-requested-variables.xlsx +# nemo-miss-list-cmip6-requested-variables.xlsx +# has changed compared to the git archived version. +# +# Note exel-diff is installed by following: +# https://github.com/na-ka-na/ExcelCompare/blob/master/README.md +# Java is needed, on ubuntu this can be installed by: sudo apt update; sudo apt install -y default-jre +# Extract the zip and +# cd ${HOME}; mv Downloads/ExcelCompare-0.6.1 ${HOME}/bin; cd ${HOME}/bin/; chmod uog+x ExcelCompare-0.6.1/bin/excel_cmp; ln -s ExcelCompare-0.6.1/bin/excel_cmp excel-diff; + + echo + echo ' Run:' + echo " rm -f gitdiff-nemo*; gitexceldiff nemo-only-list-cmip6-requested-variables.xlsx; mv -f gitdiff.txt gitdiff-nemo-only.txt; gitexceldiff nemo-miss-list-cmip6-requested-variables.xlsx; mv -f gitdiff.txt gitdiff-nemo-miss.txt;" + echo + echo ' View the differences by:' + echo ' nedit gitdiff-nemo-* &' + echo + echo ' Remove the git diff files by:' + echo ' rm -f gitdiff-nemo-*' + echo + echo ' Revert the git archived xlsx files by:' + echo ' git checkout nemo-miss-list-cmip6-requested-variables.xlsx nemo-only-list-cmip6-requested-variables.xlsx' + echo diff --git a/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/create-nemo-only-list.sh b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/create-nemo-only-list.sh new file mode 100755 index 0000000000000000000000000000000000000000..53d196bebba2a62bc3bd18b7375fb6683cfde9ae --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/create-nemo-only-list.sh @@ -0,0 +1,141 @@ +#!/usr/bin/env bash +# +# Note that manual update of the nemo-only-pre-list-of-identified-missing-cmip6-requested-variables.xlsx might be necessary in advance of running this script. +# The script produces: +# nemo-only-list-cmip6-requested-variables.xlsx +# nemo-miss-list-cmip6-requested-variables.xlsx +# +# Run example: +# ./create-nemo-only-list.sh +# + + +if [ "$#" -eq 0 ]; then + +# Procedure to produce the list-of-identified-missing-cmip6-requested-variables.xlsx based on the most updated shaconemo ping files. +# In this way the variable and table can be provided in the list-of-identified-missing-cmip6-requested-variables.xlsx while at the +# other hand shaconemo updates can be relatively easy followed by copying the entire variable column. In order to catch all provided +# (non dummy) variables from the shaconemo ping files, we use the total CMIP6 request for all CMIP6 MIPs with highest tier and priority. + +# Step 1: request all CMIP6 MIPs for most extended tier and priority: + ece2cmor_root_directory=${HOME}/cmorize/ece2cmor3 + cd ${ece2cmor_root_directory}/ece2cmor3/scripts/ + drq -m CMIP,AerChemMIP,CDRMIP,C4MIP,CFMIP,DAMIP,DCPP,FAFMIP,GeoMIP,GMMIP,HighResMIP,ISMIP6,LS3MIP,LUMIP,OMIP,PAMIP,PMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB -e CMIP -t 3 -p 3 --xls --xlsDir xls-m=all-cmip6-mips-e=CMIP-t=3-p=3 + +# Step 2: update the Shaconemo repository and thus the ping files: +# cd ${HOME}/cmorize/shaconemo/ping-files/ +# ./extract-info-from-ping-files.csh + +# Step 3: Open the following files: +# cd ${HOME}/cmorize/shaconemo/ping-files/r274/; nedit cmor-*-without-dummy-lines.txt cmor-*-without-dummy-lines-only-model-name.txt cmor-*-without-dummy-lines-comment2.txt cmor-*-without-dummy-lines-only-model-name.txt cmor-*-without-dummy-lines-ping-file-unit.txt cmor-*-without-dummy-lines-ping-file-comment.txt; cd ${ece2cmor_root_directory}/ece2cmor3/scripts/create-nemo-only-list/ +# open ${ece2cmor_root_directory}/ece2cmor3/scripts/create-nemo-only-list/nemo-only-pre-list-of-identified-missing-cmip6-requested-variables.xlsx +# And copy manually the content of the file: +# cmor-varlist-based-on-ping-r274-without-dummy-lines.txt (the cmor variable names) in the "variable"-column of the nemo-only-pre-list-*.xlsx file +# cmor-varlist-based-on-ping-r274-without-dummy-lines-comment2.txt (the identification comment) in the "comment"-column of the nemo-only-pre-list-*.xlsx file +# cmor-varlist-based-on-ping-r274-without-dummy-lines-only-model-name.txt (the nemo model component) in the "model component in ping file"-column of the nemo-only-pre-list-*.xlsx file +# cmor-varlist-based-on-ping-r274-without-dummy-lines-ping-file-unit.txt (the units from the ping file comment) in the "units as in ping file"-column of the nemo-only-pre-list-*.xlsx file +# cmor-varlist-based-on-ping-r274-without-dummy-lines-ping-file-comment.txt (the xml comment in the ping file) in the "ping file comment"-column of the nemo-only-pre-list-*.xlsx file +# After updating the pre* file it is most convenient to commit it first. + +# Step 4: Temporary overwrite: Use an empty nemopar.json, use an empty list-of-ignored-cmip6-requested-variables.xlsx and use a +# list-of-identified-missing-cmip6-requested-variables.xlsx which contains the non-dummy ping file variables. + cd ${ece2cmor_root_directory}/ece2cmor3/scripts/ + /bin/cp -f create-nemo-only-list/empty-nemopar.json ../resources/nemopar.json + /bin/cp -f create-nemo-only-list/empty-list-of-cmip6-requested-variables.xlsx ../resources/list-of-ignored-cmip6-requested-variables.xlsx + /bin/cp -f create-nemo-only-list/nemo-only-pre-list-of-identified-missing-cmip6-requested-variables.xlsx ../resources/list-of-identified-missing-cmip6-requested-variables.xlsx +# Use the line below instead of the one above in order to create one list (without ping info, the resulting nemo-miss-list can be used to create a ping file template): +# /bin/cp -f create-nemo-only-list/empty-list-of-cmip6-requested-variables.xlsx ../resources/list-of-identified-missing-cmip6-requested-variables.xlsx + +# Step 5: Run with the --withouttablescheck option checkvars based on the largest data request (and the pre-list-*.xlsx): + cd ${ece2cmor_root_directory}/; pip install -e .; cd - + cd ${ece2cmor_root_directory}/ece2cmor3/scripts + checkvars --withouttablescheck --withping --nemo -v --drq xls-m=all-cmip6-mips-e=CMIP-t=3-p=3/cmvmm_ae.c4.cd.cf.cm.co.da.dc.dy.fa.ge.gm.hi.is.ls.lu.om.pa.pm.rf.sc.si.vi.vo_TOTAL_3_3.xlsx --output cmvmm-all-mips-t=3-p=3 +# open cmvmm-all-mips-t=3-p=3.identifiedmissing.xlsx +# open cmvmm-all-mips-t=3-p=3.ignored.xlsx + +# Step 6: Copy the resulting identifiedmissing and ignored produced by the checkvars to the basic identifiedmissing and the basic ignored: + /bin/cp -f cmvmm-all-mips-t=3-p=3.identifiedmissing.xlsx create-nemo-only-list/nemo-only-list-cmip6-requested-variables.xlsx + /bin/cp -f cmvmm-all-mips-t=3-p=3.missing.xlsx create-nemo-only-list/nemo-miss-list-cmip6-requested-variables.xlsx + #/bin/cp -f cmvmm-all-mips-t=3-p=3.identifiedmissing.txt create-nemo-only-list/nemo-only-list-cmip6-requested-variables.txt + #/bin/cp -f cmvmm-all-mips-t=3-p=3.missing.txt create-nemo-only-list/nemo-miss-list-cmip6-requested-variables.txt + +# Revert the temporary changed files: + cd ${ece2cmor_root_directory}/ece2cmor3/resources/ + git checkout nemopar.json + git checkout list-of-ignored-cmip6-requested-variables.xlsx + git checkout list-of-identified-missing-cmip6-requested-variables.xlsx + cd ${ece2cmor_root_directory}/ece2cmor3/scripts/ + git status + +# Note that in order to create the basic lists from the pre basic fields, the variables in the pre basic lists are matched against the data request by drq in +# step 1 here, which includes all EC-Earth MIPs for the Core MIP experiments, however this does not include the endorsed MIP experiments (e.g drq -m LS3MIP -e LS3MIP ). +# Therefore the identified missing and ignored variables coming from the endorsed MIP experiments have to be added manually to the basic lists. + + +# Comment next two lines in order to continue with step 7 in this script. + echo ' Omit step 7 (default) in this script.' + exit + echo ' Continue with step 7.' + + +# This prepares step 7 below: +# Temporary overwrite: Use an empty nemopar.json, use an empty list-of-ignored-cmip6-requested-variables.xlsx and use an empty +# list-of-identified-missing-cmip6-requested-variables.xlsx and copy the detected nemo-only and nemo-miss in two ignore files: + cd ${ece2cmor_root_directory}/ece2cmor3/scripts/ + /bin/cp -f create-nemo-only-list/empty-nemopar.json ../resources/nemopar.json + /bin/cp -f create-nemo-only-list/empty-list-of-cmip6-requested-variables.xlsx ../resources/list-of-ignored-cmip6-requested-variables.xlsx + /bin/cp -f create-nemo-only-list/empty-list-of-cmip6-requested-variables.xlsx ../resources/list-of-identified-missing-cmip6-requested-variables.xlsx + /bin/cp create-nemo-only-list/nemo-only-list-cmip6-requested-variables.xlsx ../resources/lists-of-omitted-variables/list-of-omitted-variables-01.xlsx + /bin/cp create-nemo-only-list/nemo-miss-list-cmip6-requested-variables.xlsx ../resources/lists-of-omitted-variables/list-of-omitted-variables-02.xlsx + rm -f cmvmm-all-mips-t=3-p=3.* + git status + +# Step 7: +# From here on one can uncomment one or more of the data requests below. + +# Step 1: Request for CMIP experiments for tier=1 and priority=1: +# ./determine-missing-variables.sh CMIP CMIP 1 1 --nemo + +# Step 1+2: Request for all EC-EARTH3 MIPs of the CMIP experiments for tier=1 and priority=1: +# ./determine-missing-variables.sh CMIP,AerChemMIP,CDRMIP,C4MIP,DCPP,HighResMIP,ISMIP6,LS3MIP,LUMIP,OMIP,PAMIP,PMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB CMIP 1 1 --nemo + +# Step 3: +# ./determine-missing-variables.sh AerChemMIP AerChemMIP 1 1 --nemo +# ./determine-missing-variables.sh CDRMIP CDRMIP 1 1 --nemo +# ./determine-missing-variables.sh C4MIP C4MIP 1 1 --nemo +# ./determine-missing-variables.sh DCPP DCPP 1 1 --nemo +# ./determine-missing-variables.sh HighResMIP HighResMIP 1 1 --nemo +# ./determine-missing-variables.sh ISMIP6 ISMIP6 1 1 --nemo +# ./determine-missing-variables.sh LS3MIP LS3MIP 1 1 --nemo +# ./determine-missing-variables.sh LUMIP LUMIP 1 1 --nemo +# ./determine-missing-variables.sh OMIP OMIP 1 1 --nemo +# ./determine-missing-variables.sh PAMIP PAMIP 1 1 --nemo +# ./determine-missing-variables.sh PMIP PMIP 1 1 --nemo +# ./determine-missing-variables.sh RFMIP RFMIP 1 1 --nemo +# ./determine-missing-variables.sh ScenarioMIP ScenarioMIP 1 1 --nemo +# ./determine-missing-variables.sh VolMIP VolMIP 1 1 --nemo +# ./determine-missing-variables.sh CORDEX CORDEX 1 1 --nemo +# ./determine-missing-variables.sh DynVarMIP DynVarMIP 1 1 --nemo +# ./determine-missing-variables.sh SIMIP SIMIP 1 1 --nemo +# ./determine-missing-variables.sh VIACSAB VIACSAB 1 1 --nemo + +# ll *.missing.xlsx|grep -v 5.5K +# ll *.missing.txt|grep -v 266B +# m *.missing.txt|grep r274 + +# Revert the temporary changed files: + cd ${ece2cmor_root_directory}/ece2cmor3/resources/ + git checkout nemopar.json + git checkout list-of-ignored-cmip6-requested-variables.xlsx + git checkout list-of-identified-missing-cmip6-requested-variables.xlsx + git checkout lists-of-omitted-variables/list-of-omitted-variables-01.xlsx + git checkout lists-of-omitted-variables/list-of-omitted-variables-02.xlsx + cd ${ece2cmor_root_directory}/ece2cmor3/scripts/ + git status + +else + echo + echo ' This script can not be executed, because a few manual editting steps are required.' + echo ' This guidence servers to produce the basic identifiedmissing file and the basic ignored file.' + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/empty-list-of-cmip6-requested-variables.xlsx b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/empty-list-of-cmip6-requested-variables.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..db2281cc878bed8aeae2997291d6b11b6eba2c01 Binary files /dev/null and b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/empty-list-of-cmip6-requested-variables.xlsx differ diff --git a/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/empty-nemopar.json b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/empty-nemopar.json new file mode 100644 index 0000000000000000000000000000000000000000..b024136f52eb0cc486f0693e2450ad0cc3b2914e --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/empty-nemopar.json @@ -0,0 +1,6 @@ +[ + { + "source": "dummydummy", + "target": "dummydummy" + } +] diff --git a/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/nemo-miss-list-cmip6-requested-variables.xlsx b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/nemo-miss-list-cmip6-requested-variables.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..c730ab39d584e957305d3fbe625ec8b3534dfe8c Binary files /dev/null and b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/nemo-miss-list-cmip6-requested-variables.xlsx differ diff --git a/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/nemo-only-list-cmip6-requested-variables.xlsx b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/nemo-only-list-cmip6-requested-variables.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..7ab074ba0a71ad2c085934f3988871fa3c195bc4 Binary files /dev/null and b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/nemo-only-list-cmip6-requested-variables.xlsx differ diff --git a/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/nemo-only-pre-list-of-identified-missing-cmip6-requested-variables.xlsx b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/nemo-only-pre-list-of-identified-missing-cmip6-requested-variables.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..6cb0fa5243d20a5507ebbfe67e483f3f4a017b5b Binary files /dev/null and b/ece2cmor/ece2cmor3/scripts/create-nemo-only-list/nemo-only-pre-list-of-identified-missing-cmip6-requested-variables.xlsx differ diff --git a/ece2cmor/ece2cmor3/scripts/create-parent-experiment-check-code.py b/ece2cmor/ece2cmor3/scripts/create-parent-experiment-check-code.py new file mode 100755 index 0000000000000000000000000000000000000000..5c1dd343584393ef52b53e9a816f85f8af94fde2 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/create-parent-experiment-check-code.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python + +# Call this script e.g. by: +# ./create-parent-experiment-check-code.py +# +# With this script it is possible to generate the block of bash code which checks for the parent MIP +# experiment info. This block is copied in the modify-metadata-template.sh bash script. The +# parent_activity_id and parent_experiment_id are read from the cmor tables from the CMIP6_CV.json file. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# + +import json +import os + + +#Read JSON data into the datastore variable +with open('../resources/tables/CMIP6_CV.json', 'r') as g: + datastore = json.load(g) + +#for k, v in datastore.items(): +# print(k, v) + +#print(datastore["CV"]["activity_id"]) +#print('\n') +#print(datastore["CV"]["source_id"]["EC-Earth3"]) +#print(datastore["CV"]["experiment_id"]["1pctCO2"]["parent_activity_id"]) + +code_file = 'code-parent-check.sh' +sorted_code_file = 'sorted-' + code_file + + +code_parent_check_file = open(code_file,'w') +code_parent_check_file.write('\n') + +#requested_item= + +for k, v in datastore["CV"]["experiment_id"].items(): + #print(' {:30} {:30} {:30}'.format(k, v["activity_id"][0], v["parent_experiment_id"][0])) + + if k != v["experiment_id"]: + print((' IDs differ: {:30} {:30} {:30}'.format(v["activity_id"][0], v["experiment_id"], k))) + if len(v["activity_id"][:]) != 1: + print((' The activity_id has multiple entries: {:30} {:30}'.format(v["activity_id"], k))) +# if len(v["parent_activity_id"][:]) != 1: +# print(' The parent_activity_id has multiple entries: {:30} {:30} {:30}'.format(v["activity_id"], k, v["parent_activity_id"][:])) +# if len(v["parent_experiment_id"][:]) != 1: +# print(' The parent_experiment_id has multiple entries: {:30} {:30} {:30}'.format(v["activity_id"], k, v["parent_experiment_id"][:])) +# if len(v["required_model_components"][:]) != 1: +# print(' The required_model_components has multiple entries: {:30} {:30} {:30}'.format(v["activity_id"], k, v["required_model_components"][:])) +# if len(v["sub_experiment_id"][:]) != 1: +# print(' The sub_experiment_id has multiple entries: {:30} {:30} {:30}'.format(v["activity_id"], k, v["sub_experiment_id"][:])) + +# code_parent_check_file.write(' {:30} {:30} {:30} {:30} {:30} {:30} {:200} {}\n'.format(v["activity_id"][0], k, v["parent_activity_id"][0], v["parent_experiment_id"][0], v["required_model_components"][0], ' '.join(v["additional_allowed_model_components"][:]), v["experiment"], ' '.join(v["sub_experiment_id"][:]) )) +# code_parent_check_file.write(' {:30} {:30} {:30} {:30} {:30} {:30} {:200} {}\n'.format("'"+v["activity_id"][0]+"'", "'"+k+"'", "'"+v["parent_activity_id"][0]+"'", "'"+v["parent_experiment_id"][0]+"'", "'"+v["required_model_components"][0]+"'", "'"+' '.join(v["additional_allowed_model_components"][:])+"'", "'"+v["experiment"]+"'", "'"+' '.join(v["sub_experiment_id"][:])+"'" )) + + + # Checking the activity_id for cases of more then one MIP: + activity_id_list = v["activity_id"][0].split() + n_activity_id_list = len(activity_id_list) + #if n_activity_id_list != 1: + # for counter in range(n_activity_id_list): + # print(' {:3} {:30} {:30} {:30}'.format(counter, k, v["activity_id"][0], activity_id_list[counter])) + + # Split between MIPs in case more than one MIP is listed in the activity_id: + for counter in range(n_activity_id_list): + #print(' {:3} {:30} {:30} {:30}'.format(counter, k, v["activity_id"][0], activity_id_list[counter])) + code_parent_check_file.write(' if [ "$mip" = {:30} ] && [ "$experiment" = {:30} ]; then declare -a parent_info=({:30} {:30} {:30} {:30} {:30} {:30} {:200} {}); fi\n'.format("'"+activity_id_list[counter]+"'", "'"+k+"'", "'"+activity_id_list[counter]+"'", "'"+k+"'", "'"+v["parent_activity_id"][0]+"'", "'"+v["parent_experiment_id"][0]+"'", "'"+v["required_model_components"][0]+"'", "'"+' '.join(v["additional_allowed_model_components"][:])+"'", "'"+v["experiment"].replace("'", "")+"'", "'"+' '.join(v["sub_experiment_id"][:])+"'" )) + +code_parent_check_file.close() + +# Create the MIP alphabetic sorted variant: +os.system('sort ' + code_file + ' > ' + sorted_code_file) + + +# Fragment from the CMIP6_CV.json: + +# if [ "${ececonf}" = 'EC-EARTH-AOGCM' ]; then declare -a ece_res=(' + +# "experiment_id":{ +# "1pctCO2":{ +# "activity_id":[ +# "CMIP" +# ], +# "additional_allowed_model_components":[ +# "AER", +# "CHEM", +# "BGC" +# ], +# "experiment":"1 percent per year increase in CO2", +# "experiment_id":"1pctCO2", +# "parent_activity_id":[ +# "CMIP" +# ], +# "parent_experiment_id":[ +# "piControl" +# ], +# "required_model_components":[ +# "AOGCM" +# ], +# "sub_experiment_id":[ +# "none" +# ] +# }, diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/list-of-tests.md b/ece2cmor/ece2cmor3/scripts/data-qa/list-of-tests.md new file mode 100644 index 0000000000000000000000000000000000000000..e5bcb28fad74990604430c6c8043854fd90282a9 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/list-of-tests.md @@ -0,0 +1,53 @@ +List of tests +============= + +These following tests must be passed by any EC-Earth data set before it is +published on the ESGF data nodes. + + +- Run `ece2cmor`, check logs for errors + (some `ece2cmor` errors may be accepted, see related discussions on + the EC-Earth Portal and ece2cmor Github page) + +- Scripted checks on file-level: + + + empty files or directories: + `find . -empty` + + + auxiliary files: + `find . -type f ! -name \*.nc` + (e.g. `*.nc.copy` files) + `find . -name '*_r1i1p1f1_g[rn][a-zA-Z0-9]*'` or something like + `find . -type f -regextype sed ! -regex '.*/.*_EC-Earth3-Veg_[0-9a-zA-Z]*_r1i1p1f1_g[nr][_0-9-]*\.nc'` + (temporary files from CMOR library) + + + versions check: + `versions.sh -l .` (check present versions) + `versions.sh -v vYYYYMMDD .` (set version, dry-run) + `versions.sh -v vYYYYMMDD -m .` (set version) + + + Check number of files per year: + `files-per-year .` + + + Check number of files per variable: + `files-per-variable ` + +- Manual check against do-no-publish list + (for now, found in [this google document](https://docs.google.com/spreadsheets/d/1b69NCgHSjWNGqalOVWBTdTvXl7R_-EwCRfJqlwYB37Y)) + +- Fix ocean fraction in `Ofx/sftof` (check out `sftof.py` under `scripts`) +- Fix land fraction in `fx/sftlf` (check under `recipes` for help) + +- Suggestion: set all files/directories *read-only* from here on + +- Run `nctime`, checking time axes and ranges: + `nctcck -p cmip6 -i -l ` + `nctxck -p cmip6 -i -l ` + +- Run `qa-dkrz`, for comprehensive QA checks: + checks enabled: + + DRS, DRS_F, DRS_P + + CF + + CNSTY + + TIME + + DATA \ No newline at end of file diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/nctime/esgini-dir/esg.cmip6.ini b/ece2cmor/ece2cmor3/scripts/data-qa/nctime/esgini-dir/esg.cmip6.ini new file mode 100644 index 0000000000000000000000000000000000000000..8d5e22f7dcb409200571563a67c04f3f32d07539 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/nctime/esgini-dir/esg.cmip6.ini @@ -0,0 +1,516 @@ +[project:cmip6] + +categories = + mip_era | enum | true | true | 0 + activity_drs | enum | true | true | 1 + institution_id | enum | true | true | 2 + source_id | enum | true | true | 3 + experiment_id | enum | true | true | 4 + member_id | string | true | true | 5 + table_id | enum | true | true | 6 + variable_id | string | true | true | 7 + grid_label | enum | true | true | 8 + frequency | string | false | true | 9 + realm | string | false | true | 10 + product | string | false | true | 11 + nominal_resolution | string | false | true | 12 + source_type | string | false | true | 13 + grid | string | false | true | 14 + creation_date | string | false | true | 15 + variant_label | string | false | true | 16 + sub_experiment_id | enum | false | true | 17 + further_info_url | string | false | true | 18 + activity_id | string | false | true | 19 + data_specs_version | string | false | true | 20 + experiment_title | string | false | true | 21 + model_cohort | string | true | true | 22 + project | string | false | true | 23 + description | text | false | false | 99 + +category_defaults = + project | CMIP6 + +filename_format = %(variable_id)s_%(table_id)s_%(source_id)s_%(experiment_id)s_%(member_id)s_%(grid_label)s[_%(period_start)s-%(period_end)s].nc + +directory_format = %(root)s/%(mip_era)s/%(activity_drs)s/%(institution_id)s/%(source_id)s/%(experiment_id)s/%(member_id)s/%(table_id)s/%(variable_id)s/%(grid_label)s/%(version)s + +dataset_id = %(mip_era)s.%(activity_drs)s.%(institution_id)s.%(source_id)s.%(experiment_id)s.%(member_id)s.%(table_id)s.%(variable_id)s.%(grid_label)s + +dataset_name_format = mip_era=%(mip_era)s, source_id=%(source_id)s, experiment=%(experiment_title)s, member_id=%(member_id)s, variable=%(variable_id)s, version=%(version)s + +mip_era_options = CMIP6 + +activity_drs_options = AerChemMIP, C4MIP, CDRMIP, CFMIP, CMIP, CORDEX, DAMIP, DCPP, DynVarMIP, FAFMIP, GMMIP, GeoMIP, HighResMIP, ISMIP6, LS3MIP, LUMIP, OMIP, PAMIP, PMIP, RFMIP, SIMIP, ScenarioMIP, VIACSAB, VolMIP + +institution_id_options = AER, AS-RCEC, AWI, BCC, BNU, CAMS, CAS, CCCR-IITM, CCCma, CMCC, CNRM-CERFACS, CSIR-CSIRO, CSIRO, CSIRO-ARCCSS-BoM, DKRZ, DWD, E3SM-Project, EC-Earth-Consortium, ECMWF, FIO-QLNM, HAMMOZ-Consortium, INM, INPE, IPSL, KIOST, MESSy-Consortium, MIROC, MOHC, MPI-M, MRI, NASA-GISS, NCAR, NCC, NERC, NIMS-KMA, NIWA, NOAA-GFDL, NUIST, PCMDI, RTE-RRTMGP-Consortium, SNU, THU, UA, UHH, UTAS, UofT + +source_id_options = ACCESS-CM2, ACCESS-ESM1-5, ARTS-2-3, AWI-CM-1-1-HR, AWI-CM-1-1-LR, AWI-CM-1-1-MR, AWI-ESM-1-1-LR, BCC-CSM2-HR, BCC-CSM2-MR, BCC-ESM1, BESM-2-7, BNU-ESM-1-1, CAMS-CSM1-0, CAS-ESM1-0, CESM2, CESM2-SE, CESM2-WACCM, CIESM, CMCC-CM2-HR4, CMCC-CM2-HR5, CMCC-CM2-SR5, CMCC-CM2-VHR4, CMCC-ESM2-HR5, CMCC-ESM2-SR5, CNRM-CM6-1, CNRM-CM6-1-HR, CNRM-ESM2-1, CNRM-ESM2-1-HR, CSIRO-Mk3L-1-3, CanESM5, E3SM-1-0, EC-Earth3, EC-Earth3-AerChem, EC-Earth3-CC, EC-Earth3-GrIS, EC-Earth3-HR, EC-Earth3-LR, EC-Earth3-Veg, EC-Earth3-Veg-LR, EC-Earth3P, EC-Earth3P-HR, EC-Earth3P-VHR, ECMWF-IFS-HR, ECMWF-IFS-LR, ECMWF-IFS-MR, EMAC-2-53-AerChem, EMAC-2-53-Vol, FGOALS-f3-H, FGOALS-f3-L, FGOALS-g3, FIO-ESM-2-0, GFDL-AM4, GFDL-CM4, GFDL-CM4C192, GFDL-ESM2M, GFDL-ESM4, GFDL-OM4p5B, GISS-E2-1-G, GISS-E2-1-H, GISS-E2-1-MA-G, GISS-E3-G, HadGEM3-GC31-HH, HadGEM3-GC31-HM, HadGEM3-GC31-LL, HadGEM3-GC31-LM, HadGEM3-GC31-MH, HadGEM3-GC31-MM, ICON-ESM-LR, IITM-ESM, INM-CM4-8, INM-CM5-0, INM-CM5-H, IPSL-CM6A-ATM-HR, IPSL-CM6A-LR, KACE-1-0-G, KIOST-ESM, LBLRTM-12-8, MCM-UA-1-0, MIROC-ES2H, MIROC-ES2L, MIROC6, MPI-ESM-1-2-HAM, MPI-ESM1-2-HR, MPI-ESM1-2-LR, MRI-AGCM3-2, MRI-ESM2-0, NESM3, NICAM16-7S, NICAM16-8S, NICAM16-9D-L78, NICAM16-9S, NorESM2-HH, NorESM2-LM, NorESM2-LME, NorESM2-LMEC, NorESM2-MH, NorESM2-MM, PCMDI-test-1-0, RRTMG-LW-4-91, RRTMG-SW-4-02, RTE-RRTMGP-181204, SAM0-UNICON, TaiESM1, UKESM1-0-LL, UKESM1-0-MMh, UofT-CCSM4, VRESM-1-0 + +experiment_id_options = 1pctCO2, 1pctCO2-4xext, 1pctCO2-bgc, 1pctCO2-cdr, 1pctCO2-rad, 1pctCO2Ndep, 1pctCO2Ndep-bgc, 1pctCO2to4x-withism, G1, G6SST1, G6SST2-solar, G6SST2-sulfur, G6solar, G6sulfur, G7SST1-cirrus, G7SST2-cirrus, G7cirrus, a4SST, a4SSTice, a4SSTice-4xCO2, abrupt-0p5xCO2, abrupt-2xCO2, abrupt-4xCO2, abrupt-solm4p, abrupt-solp4p, amip, amip-4xCO2, amip-TIP, amip-TIP-nosh, amip-a4SST-4xCO2, amip-climSIC, amip-climSST, amip-future4K, amip-hist, amip-hld, amip-lfmip-pObs, amip-lfmip-pdLC, amip-lfmip-rmLC, amip-lwoff, amip-m4K, amip-p4K, amip-p4K-lwoff, amip-piForcing, aqua-4xCO2, aqua-control, aqua-control-lwoff, aqua-p4K, aqua-p4K-lwoff, control-1950, control-slab, dcppA-assim, dcppA-hindcast, dcppA-hindcast-niff, dcppA-historical-niff, dcppB-forecast, dcppC-amv-ExTrop-neg, dcppC-amv-ExTrop-pos, dcppC-amv-Trop-neg, dcppC-amv-Trop-pos, dcppC-amv-neg, dcppC-amv-pos, dcppC-atl-control, dcppC-atl-pacemaker, dcppC-atl-spg, dcppC-forecast-addAgung, dcppC-forecast-addElChichon, dcppC-forecast-addPinatubo, dcppC-hindcast-noAgung, dcppC-hindcast-noElChichon, dcppC-hindcast-noPinatubo, dcppC-ipv-NexTrop-neg, dcppC-ipv-NexTrop-pos, dcppC-ipv-neg, dcppC-ipv-pos, dcppC-pac-control, dcppC-pac-pacemaker, deforest-globe, esm-hist, esm-hist-ext, esm-pi-CO2pulse, esm-pi-cdr-pulse, esm-piControl, esm-piControl-spinup, esm-ssp534-over, esm-ssp585, esm-ssp585-ocn-alk, esm-ssp585-ocn-alk-stop, esm-ssp585-ssp126Lu, esm-ssp585-ssp126Lu-ext, esm-ssp585ext, esm-yr2010CO2-CO2pulse, esm-yr2010CO2-cdr-pulse, esm-yr2010CO2-control, esm-yr2010CO2-noemit, faf-all, faf-heat, faf-passiveheat, faf-stress, faf-water, futSST-pdSIC, futureSST-4xCO2-solar, highres-future, highresSST-4xCO2, highresSST-LAI, highresSST-future, highresSST-p4K, highresSST-present, highresSST-smoothed, hist-1950, hist-1950HC, hist-CO2, hist-GHG, hist-aer, hist-all-aer2, hist-all-nat2, hist-bgc, hist-nat, hist-noLu, hist-piAer, hist-piNTCF, hist-resAMO, hist-resIPO, hist-sol, hist-spAer-aer, hist-spAer-all, hist-stratO3, hist-volc, histSST, histSST-1950HC, histSST-piAer, histSST-piCH4, histSST-piN2O, histSST-piNTCF, histSST-piO3, historical, historical-ext, historical-withism, ism-1pctCO2to4x-self, ism-1pctCO2to4x-std, ism-amip-std, ism-asmb-std, ism-bsmb-std, ism-ctrl-std, ism-historical-self, ism-historical-std, ism-lig127k-std, ism-pdControl-std, ism-piControl-self, ism-ssp585-self, ism-ssp585-std, land-cCO2, land-cClim, land-crop-grass, land-crop-noFert, land-crop-noIrrig, land-crop-noIrrigFert, land-hist, land-hist-altLu1, land-hist-altLu2, land-hist-altStartYear, land-hist-cruNcep, land-hist-princeton, land-hist-wfdei, land-noFire, land-noLu, land-noPasture, land-noShiftCultivate, land-noWoodHarv, land-ssp126, land-ssp434, land-ssp585, lfmip-initLC, lfmip-pdLC, lfmip-pdLC-cruNcep, lfmip-pdLC-princeton, lfmip-pdLC-wfdei, lfmip-rmLC, lfmip-rmLC-cruNcep, lfmip-rmLC-princeton, lfmip-rmLC-wfdei, lgm, lig127k, midHolocene, midPliocene-eoi400, modelSST-futArcSIC, modelSST-pdSIC, omip1, omip1-spunup, omip2, omip2-spunup, pa-futAntSIC, pa-futAntSIC-ext, pa-futArcSIC, pa-futArcSIC-ext, pa-pdSIC, pa-pdSIC-ext, pa-piAntSIC, pa-piArcSIC, past1000, pdSST-futAntSIC, pdSST-futArcSIC, pdSST-futArcSICSIT, pdSST-futBKSeasSIC, pdSST-futOkhotskSIC, pdSST-pdSIC, pdSST-pdSICSIT, pdSST-piAntSIC, pdSST-piArcSIC, piClim-2xDMS, piClim-2xNOx, piClim-2xVOC, piClim-2xdust, piClim-2xfire, piClim-2xss, piClim-4xCO2, piClim-BC, piClim-CH4, piClim-HC, piClim-N2O, piClim-NH3, piClim-NOx, piClim-NTCF, piClim-O3, piClim-OC, piClim-SO2, piClim-VOC, piClim-aer, piClim-anthro, piClim-control, piClim-ghg, piClim-histaer, piClim-histall, piClim-histghg, piClim-histnat, piClim-lu, piClim-spAer-aer, piClim-spAer-anthro, piClim-spAer-histaer, piClim-spAer-histall, piControl, piControl-spinup, piControl-withism, piSST, piSST-4xCO2, piSST-4xCO2-rad, piSST-4xCO2-solar, piSST-pdSIC, piSST-piSIC, piSST-pxK, rad-irf, spinup-1950, ssp119, ssp126, ssp126-ssp370Lu, ssp245, ssp245-GHG, ssp245-aer, ssp245-nat, ssp245-stratO3, ssp370, ssp370-lowNTCF, ssp370-ssp126Lu, ssp370SST, ssp370SST-lowAer, ssp370SST-lowBC, ssp370SST-lowCH4, ssp370SST-lowNTCF, ssp370SST-lowO3, ssp370SST-ssp126Lu, ssp434, ssp460, ssp534-over, ssp534-over-bgc, ssp585, ssp585-bgc, ssp585-withism, volc-cluster-21C, volc-cluster-ctrl, volc-cluster-mill, volc-long-eq, volc-long-hlN, volc-long-hlS, volc-pinatubo-full, volc-pinatubo-slab, volc-pinatubo-strat, volc-pinatubo-surf, yr2010CO2 + +maps = experiment_title_map, model_cohort_map, las_time_delta_map + +experiment_title_map = map(experiment_id : experiment_title) + 1pctCO2 | 1 percent per year increase in CO2 + 1pctCO2-4xext | extension from year 140 of 1pctCO2 with 4xCO2 + 1pctCO2-bgc | biogeochemically-coupled version of 1 percent per year increasing CO2 experiment + 1pctCO2-cdr | 1 percent per year decrease in CO2 from 4xCO2 + 1pctCO2-rad | radiatively-coupled version of 1 percent per year increasing CO2 experiment + 1pctCO2Ndep | 1 percent per year increasing CO2 experiment with increasing N-deposition + 1pctCO2Ndep-bgc | biogeochemically-coupled version of 1 percent per year increasing CO2 experiment with increasing N-deposition + 1pctCO2to4x-withism | simulation with interactive ice sheet forced by 1 percent per year increase in CO2 to 4xCO2 (subsequently held fixed) + G1 | abrupt quadrupling of CO2 plus reduction in total solar irradiance + G6SST1 | SSTs, forcings, and other prescribed conditions from year 2020 of SSP5-8.5 + G6SST2-solar | SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6solar + G6SST2-sulfur | SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6sulfur + G6solar | total solar irradiance reduction to reduce net forcing from SSP585 to SSP245 + G6sulfur | stratospheric sulfate aerosol injection to reduce net forcing from SSP585 to SSP245 + G7SST1-cirrus | SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2020 of SSP5-8.5 and cirrus thinning + G7SST2-cirrus | SSTs from year 2100 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G7cirrus + G7cirrus | increase cirrus ice crystal fall speed to reduce net forcing in SSP585 by 1 W m-2 + a4SST | as piSST but with SSTs from abrupt-4xCO2 + a4SSTice | as piSST but with SSTs and sea ice from abrupt-4xCO2 + a4SSTice-4xCO2 | as piSST but with SSTs and sea ice from abrupt-4xCO2, and 4xCO2 seen by radiation and vegetation + abrupt-0p5xCO2 | abrupt halving of CO2 + abrupt-2xCO2 | abrupt doubling of CO2 + abrupt-4xCO2 | abrupt quadrupling of CO2 + abrupt-solm4p | abrupt 4percent decrease in solar constant + abrupt-solp4p | abrupt 4percent increase in solar constant + amip | AMIP + amip-4xCO2 | AMIP SSTs with 4xCO2 + amip-TIP | same as "amip" run, but surface elevations of the Tibetan-Iranian Plateau and Himalayas reduced to 500m + amip-TIP-nosh | same as "amip" run, but sensible heat not allowed for elevations of the Tibetan-Iranian Plateau and Himalayas above 500m + amip-a4SST-4xCO2 | as AMIP but with warming pattern from abrupt-4xCO2 added to SSTs and 4xCO2 seen by radiation and vegetation + amip-climSIC | AMIP with climatological SIC + amip-climSST | AMIP with climatological SST + amip-future4K | AMIP with patterned 4K SST increase + amip-hist | AMIP-style simulation covering the period 1870-2014 + amip-hld | same as "amip" run, but surface elevations of the East African Highlands in Africa, Sierra Madre in N. America and Andes in S. America reduced to 500m + amip-lfmip-pObs | prescribed land (from pseudo-observations) and AMIP SSTs + amip-lfmip-pdLC | prescribed modern land surface climatology from historical, prescribed SST and sea-ice from historical plus scenario runs + amip-lfmip-rmLC | prescribed land surface climatology from historical plus scenario 30yr running mean, prescribed SST and sea-ice from historical plus scenario runs + amip-lwoff | AMIP experiment with longwave cloud-radiative effects off + amip-m4K | AMIP with uniform 4K SST decrease + amip-p4K | AMIP with uniform 4K SST increase + amip-p4K-lwoff | AMIP experiment with uniform 4K SST increase and with longwave cloud radiative effects off + amip-piForcing | AMIP SSTs with pre-industrial anthropogenic and natural forcing + aqua-4xCO2 | aquaplanet with control SST and 4xCO2 + aqua-control | aquaplanet control + aqua-control-lwoff | aquaplanet control with longwave cloud radiative effects off + aqua-p4K | aquaplanet with uniform 4K SST increase + aqua-p4K-lwoff | aquaplanet with uniform 4K SST increase and with longwave cloud radiative effects off + control-1950 | coupled control with fixed 1950's forcing (HighResMIP equivalent of pre-industrial control) + control-slab | control with slab ocean + dcppA-assim | Assimilation run paralleling the historical simulation, which may be used to generate hindcast initial conditions + dcppA-hindcast | hindcast initialized based on observations and using historical forcing + dcppA-hindcast-niff | hindcast initialized based on observations but without using knowledge of subsequent historical forcing + dcppA-historical-niff | hindcast initialized from historical climate simulation but without using knowledge of subsequent historical forcing + dcppB-forecast | forecast initialized from observations with forcing from ssp245 + dcppC-amv-ExTrop-neg | Idealized climate impact of negative extratropical AMV anomaly pattern + dcppC-amv-ExTrop-pos | Idealized climate impact of positive extratropical AMV anomaly pattern + dcppC-amv-Trop-neg | Idealized climate impact of negative tropical AMV anomaly pattern + dcppC-amv-Trop-pos | idealized positive tropical AMV anomaly pattern + dcppC-amv-neg | Idealized climate impact of negative AMV anomaly pattern + dcppC-amv-pos | Idealized climate impact of positive AMV anomaly pattern + dcppC-atl-control | Idealized Atlantic control + dcppC-atl-pacemaker | pacemaker Atlantic experiment + dcppC-atl-spg | predictability of 1990s warming of Atlantic sub-polar gyre + dcppC-forecast-addAgung | 2015 forecast with added Agung forcing + dcppC-forecast-addElChichon | 2015 forecast with added El Chichon forcing + dcppC-forecast-addPinatubo | 2015 forecast with added Pinatubo forcing + dcppC-hindcast-noAgung | hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast + dcppC-hindcast-noElChichon | hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast + dcppC-hindcast-noPinatubo | hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast + dcppC-ipv-NexTrop-neg | idealized negative northern extratropical IPV anomaly pattern + dcppC-ipv-NexTrop-pos | idealized positive northern extratropical IPV anomaly pattern + dcppC-ipv-neg | idealized negative IPV anomaly pattern + dcppC-ipv-pos | idealized positive IPV anomaly pattern + dcppC-pac-control | idealized Pacific control + dcppC-pac-pacemaker | pacemaker Pacific experiment + deforest-globe | idealized transient global deforestation + esm-hist | all-forcing simulation of the recent past with atmospheric CO2 concentration calculated + esm-hist-ext | post-2014 all-forcing simulation with atmospheric CO2 concentration calculated + esm-pi-CO2pulse | pulse addition of 100 Gt carbon to pre-industrial atmosphere + esm-pi-cdr-pulse | pulse removal of 100 Gt carbon from pre-industrial atmosphere + esm-piControl | pre-industrial control simulation with CO2 concentration calculated + esm-piControl-spinup | pre-industrial control simulation with CO2 concentration calculated (spin-up) + esm-ssp534-over | emission-driven SSP5-3.4-OS scenario + esm-ssp585 | emission-driven RCP8.5 based on SSP5 + esm-ssp585-ocn-alk | emission-driven SSP5-8.5 scenario but with ocean alkalinization from year 2020 onward + esm-ssp585-ocn-alk-stop | emission-driven SSP5-8.5 scenario with alkalinization terminated in year 2070 + esm-ssp585-ssp126Lu | emissions-driven SSP5-8.5 with SSP1-2.6 land use + esm-ssp585-ssp126Lu-ext | extension of the LUMIP emissions-driven simulation following SSP5-8.5 with SSP1-2.6 land use + esm-ssp585ext | emission-driven long-term extension of the SSP5-8.5 scenario + esm-yr2010CO2-CO2pulse | instantaneous 100 Gt C addition to an industrial era atmosphere + esm-yr2010CO2-cdr-pulse | instantaneous 100 Gt C removal from industrial era atmosphere + esm-yr2010CO2-control | historical emissions followed by fixed 2010 emissions (both model-diagnosed) + esm-yr2010CO2-noemit | branches from esm-yr2010CO2-control with zero emissions + faf-all | control plus perturbative surface fluxes of momentum, heat and water into ocean + faf-heat | control plus perturbative surface flux of heat into ocean + faf-passiveheat | control plus surface flux of passive heat tracer into ocean + faf-stress | control plus perturbative surface flux of momentum into ocean + faf-water | control plus perturbative surface flux of water into ocean + futSST-pdSIC | Atmosphere time slice with future SST and present day SIC + futureSST-4xCO2-solar | year 100 SSTs from abrupt-4xCO2 with quadrupled CO2 and solar reduction + highres-future | coupled future 2015-2050 using a scenario as close to CMIP5 RCP8.5 as possible within CMIP6 + highresSST-4xCO2 | highresSST-present SST with 4xCO2 concentrations + highresSST-LAI | common LAI dataset within the highresSST-present experiment + highresSST-future | forced atmosphere experiment for 2015-2050 using SST/sea-ice derived from CMIP5 RCP8.5 simulations and a scenario as close to RCP8.5 as possible within CMIP6 + highresSST-p4K | uniform 4K warming of highresSST-present SST + highresSST-present | forced atmosphere experiment for 1950-2014 + highresSST-smoothed | smoothed SST version of highresSST-present + hist-1950 | coupled historical 1950-2014 + hist-1950HC | historical forcing, but with1950s halocarbon concentrations; initialized in 1950 + hist-CO2 | historical CO2-only run + hist-GHG | historical well-mixed GHG-only run + hist-aer | historical anthropogenic aerosols-only run + hist-all-aer2 | historical ALL-forcing run with alternate estimates of aerosol forcing + hist-all-nat2 | historical ALL-forcing run with alternate estimates of natural forcing + hist-bgc | biogeochemically-coupled version of the simulation of the recent past with CO2 concentration prescribed + hist-nat | historical natural-only run + hist-noLu | historical with no land-use change + hist-piAer | historical forcing, but with pre-industrial aerosol emissions + hist-piNTCF | historical forcing, but with pre-industrial NTCF emissions + hist-resAMO | initialized from "historical" run year 1870 and SSTs in the AMO domain (0deg-70degN, 70degW-0deg) restored to AMIP SSTs with historical forcings + hist-resIPO | initialized from "historical" run year 1870 and SSTs in tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW) restored to AMIP SSTs with historical forcings + hist-sol | historical solar-only run + hist-spAer-aer | historical simulation with specified anthropogenic aerosols, no other forcings + hist-spAer-all | historical simulation with specified anthropogenic aerosols + hist-stratO3 | historical stratospheric-ozone-only run + hist-volc | historical volcanic-only run + histSST | historical prescribed SSTs and historical forcing + histSST-1950HC | historical SSTs and historical forcing, but with1950 halocarbon concentrations + histSST-piAer | historical SSTs and historical forcing, but with pre-industrial aerosol emissions + histSST-piCH4 | historical SSTs and historical forcing, but with pre-industrial methane concentrations + histSST-piN2O | historical SSTs and historical forcings, but with pre-industrial N2O concentrations + histSST-piNTCF | historical SSTs and historical forcing, but with pre-industrial NTCF emissions + histSST-piO3 | historical SSTs and historical forcing, but with pre-industrial ozone precursor emissions + historical | all-forcing simulation of the recent past + historical-ext | post-2014 all-forcing simulation + historical-withism | historical with interactive ice sheet + ism-1pctCO2to4x-self | offline ice sheet model forced by ISM's own AOGCM 1pctCO2to4x output + ism-1pctCO2to4x-std | offline ice sheet model forced by ISMIP6-specified AOGCM 1pctCO2to4x output + ism-amip-std | offline ice sheet forced by ISMIP6-specified AGCM AMIP output + ism-asmb-std | offline ice sheet forced by initMIP synthetic atmospheric experiment + ism-bsmb-std | offline ice sheet forced by initMIP synthetic oceanic experiment + ism-ctrl-std | offline ice sheet model initMIP control + ism-historical-self | offline ice sheet forced by ISM's own AOGCM historical output + ism-historical-std | offline ice sheet forced by ISMIP6-specified AOGCM historical output + ism-lig127k-std | offline ice sheet forced by ISMIP6-specified AGCM last interglacial output + ism-pdControl-std | offline ice sheet forced by ISMIP6-specified AOGCM pdControl output + ism-piControl-self | offline ice sheet forced by ISM's own AOGCM piControl output + ism-ssp585-self | offline ice sheet forced by ISM's own AOGCM ssp585 output + ism-ssp585-std | offline ice sheet forced by ISMIP6-specified AOGCM ssp585 output + land-cCO2 | historical land-only constant CO2 + land-cClim | historical land-only constant climate + land-crop-grass | historical land-only with cropland as natural grassland + land-crop-noFert | historical land-only with no fertilizer + land-crop-noIrrig | historical land-only with no irrigation + land-crop-noIrrigFert | historical land-only with managed crops but with irrigation and fertilization held constant + land-hist | historical land-only + land-hist-altLu1 | historical land-only alternate land-use history + land-hist-altLu2 | historical land-only alternate land use history + land-hist-altStartYear | historical land-only alternate start year + land-hist-cruNcep | as land-hist with CRU-NCEP forcings + land-hist-princeton | as land-hist with Princeton forcings + land-hist-wfdei | as land-hist with WFDEI forcings + land-noFire | historical land-only with no human fire management + land-noLu | historical land-only with no land-use change + land-noPasture | historical land-only with constant pastureland + land-noShiftCultivate | historical land-only with shifting cultivation turned off + land-noWoodHarv | historical land-only with no wood harvest + land-ssp126 | future ssp1-2.6 land only + land-ssp434 | future ssp4-3.4 land only + land-ssp585 | future ssp5-8.5 land only + lfmip-initLC | initialized from "historical" run year 1980, but with land conditions initialized from pseudo-observations + lfmip-pdLC | prescribed land conditions (from current climate climatology) and initialized from "historical" run year 1980 + lfmip-pdLC-cruNcep | as LFMIP-pdLC with Land-Hist-cruNcep + lfmip-pdLC-princeton | as LFMIP-pdLC with Land-Hist-princeton + lfmip-pdLC-wfdei | as LFMIP-pdLC with Land-Hist-wfdei + lfmip-rmLC | prescribed land conditions (from running mean climatology) and initialized from "historical" run year 1980 + lfmip-rmLC-cruNcep | as LFMIP-rmLC with Land-Hist-cruNcep + lfmip-rmLC-princeton | as LFMIP-rmLC with Land-Hist-princeton + lfmip-rmLC-wfdei | as LFMIP-rmLC with Land-Hist-wfdei + lgm | last glacial maximum + lig127k | last interglacial (127k) + midHolocene | mid-Holocene + midPliocene-eoi400 | mid-Pliocene warm period + modelSST-futArcSIC | Atmosphere time slice with present day coupled model SST and future Arctic SIC + modelSST-pdSIC | Atmosphere time slice present day control with coupled model SST + omip1 | OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized with observed physical and biogeochemical ocean data + omip1-spunup | OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model + omip2 | OMIP experiment forced by JRA55-do atmospheric data set and initialized with observed physical and biogeochemical ocean data + omip2-spunup | OMIP experiment forced by JRA55-do atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model + pa-futAntSIC | Partially-coupled time slice constrained by future Antarctic SIC + pa-futAntSIC-ext | Partially-coupled extended simulation with future Antarctic SIC + pa-futArcSIC | Partially-coupled time slice constrained by future Arctic SIC + pa-futArcSIC-ext | Partially-coupled extended simulation with future Arctic SIC + pa-pdSIC | Partially-coupled time slice contrained by present day SIC + pa-pdSIC-ext | Partially-coupled extended simulation constrained by present day SIC + pa-piAntSIC | Partially-coupled time slice with pre-industrial Antarctic SIC + pa-piArcSIC | Partially-coupled time slice constrained by pre-industrial Arctic SIC + past1000 | last millennium + pdSST-futAntSIC | Atmosphere time slice with present day SST and future Antarctic SIC + pdSST-futArcSIC | Atmosphere time slice with present day SST and future Arctic SIC + pdSST-futArcSICSIT | Atmosphere time slice with present day SST and future Arctic SIC and sea ice thickness + pdSST-futBKSeasSIC | Atmosphere time slice with present day SST and future Barents and Kara Seas SIC + pdSST-futOkhotskSIC | Atmosphere time slice with present day SST and future Sea of Okhotsk SIC + pdSST-pdSIC | Atmosphere time slice with present day SST and SIC + pdSST-pdSICSIT | Atmosphere time slice constrained by present day conditions including sea ice thickness + pdSST-piAntSIC | Atmosphere time slice with present day SST and pre-industrial Antarctic SIC + pdSST-piArcSIC | Atmosphere time slice with present day SST and pre-industrial Arctic SIC + piClim-2xDMS | pre-industrial climatological SSTs and forcing, but with doubled emissions of DMS + piClim-2xNOx | pre-industrial climatological SSTs and forcing, but with doubled production of NOx due to lightning + piClim-2xVOC | pre-industrial climatological SSTs and forcing, but with doubled emissions of biogenic VOCs + piClim-2xdust | pre-industrial climatological SSTs and forcing, but with doubled emissions of dust + piClim-2xfire | pre-industrial climatological SSTs and forcing, but with doubled emissions from fires + piClim-2xss | pre-industrial climatological SSTs and forcing, but with doubled emissions of sea salt + piClim-4xCO2 | effective radiative forcing by 4xCO2 + piClim-BC | pre-industrial climatological SSTs and forcing, but with 2014 black carbon emissions + piClim-CH4 | pre-industrial climatological SSTs and forcing, but with 2014 methane concentrations (including chemistry) + piClim-HC | pre-industrial climatological SSTs and forcing, but with 2014 halocarbon concentrations (including chemistry) + piClim-N2O | pre-industrial climatological SSTs and forcing, but with 2014 N2O concentrations (including chemistry) + piClim-NH3 | pre-industrial climatological SSTs and forcing, but with 2014 ammonia emissions + piClim-NOx | pre-industrial climatological SSTs and forcing, but with 2014 NOx emissions + piClim-NTCF | pre-industrial climatological SSTs and forcing, but with 2014 NTCF emissions + piClim-O3 | pre-industrial climatological SSTs and forcing, but with 2014 ozone precursor emissions + piClim-OC | pre-industrial climatological SSTs and forcing, but with 2014 organic carbon emissions + piClim-SO2 | pre-industrial climatological SSTs and forcing, but with 2014 SO2 emissions + piClim-VOC | pre-industrial climatological SSTs and forcing, but with 2014 VOC emissions + piClim-aer | effective radiative forcing by present-day aerosols + piClim-anthro | effective radiative forcing by present day anthropogenic agents + piClim-control | effective radiative forcing in present-day + piClim-ghg | effective radiative forcing by present-day greenhouse gases + piClim-histaer | transient effective radiative forcing by aerosols + piClim-histall | transient effective radiative forcing + piClim-histghg | transient effective radiative forcing by greenhouse gases + piClim-histnat | transient effective radiative forcing by natural perturbations + piClim-lu | effective radiative forcing by present-day land use + piClim-spAer-aer | effective radiative forcing at present day with specified anthropogenic aerosol optical properties, all forcings + piClim-spAer-anthro | effective radiative forcing at present day with specified anthropogenic aerosol optical properties, anthropogenic forcings + piClim-spAer-histaer | transient effective radiative forcing with specified anthropogenic aerosol optical properties, aerosol forcing + piClim-spAer-histall | transient effective radiative forcing with specified anthropogenic aerosol optical properties, all forcings + piControl | pre-industrial control + piControl-spinup | pre-industrial control (spin-up) + piControl-withism | preindustrial control with interactive ice sheet + piSST | experiment forced with pre-industrial SSTs, sea ice and atmospheric constituents + piSST-4xCO2 | as piSST with radiation and vegetation seeing 4xCO2 + piSST-4xCO2-rad | as piSST with radiation-only seeing 4xCO2 + piSST-4xCO2-solar | preindustrial control SSTs with quadrupled CO2 and solar reduction + piSST-pdSIC | Atmosphere time slice with pre-industrial SST and present day SIC + piSST-piSIC | Atmosphere time slice with pre-industrial SST and SIC + piSST-pxK | as piSST with uniform SST increase with magnitude based on abrupt-4xCO2 response + rad-irf | offline assessment of radiative transfer parmeterizations in clear skies + spinup-1950 | coupled spinup with fixed 1950s forcings from 1950 initial conditions (with ocean at rest) to provide initial condition for control-1950 and hist-1950 + ssp119 | low-end scenario reaching 1.9 W m-2, based on SSP1 + ssp126 | update of RCP2.6 based on SSP1 + ssp126-ssp370Lu | SSP1-2.6 with SSP3-7.0 land use + ssp245 | update of RCP4.5 based on SSP2 + ssp245-GHG | well-mixed GHG-only SSP2-4.5 run + ssp245-aer | aerosol-only SSP2-4.5 run + ssp245-nat | natural-only SSP2-4.5 run + ssp245-stratO3 | stratospheric-ozone-only SSP2-4.5 run + ssp370 | gap-filling scenario reaching 7.0 based on SSP3 + ssp370-lowNTCF | SSP3-7.0, with low NTCF emissions + ssp370-ssp126Lu | SSP3-7.0 with SSP1-2.6 land use + ssp370SST | SSP3-7.0, with SSTs prescribed from ssp370 + ssp370SST-lowAer | SSP3-7.0, prescribed SSTs, with low aerosol emissions + ssp370SST-lowBC | SSP3-7.0, prescribed SSTs, with low black carbon emissions + ssp370SST-lowCH4 | SSP3-7.0, prescribed SSTs, with low methane concentrations + ssp370SST-lowNTCF | SSP3-7.0, prescribed SSTs, with low NTCF emissions + ssp370SST-lowO3 | SSP3-7.0, prescribed SSTs, with low ozone precursor emissions + ssp370SST-ssp126Lu | SSP3-7.0, prescribed SSTs, with SSP1-2.6 land use + ssp434 | gap-filling scenario reaching 3.4 based on SSP4 + ssp460 | update of RCP6.0 based on SSP4 + ssp534-over | overshoot of 3.4 W/m**2 branching from ssp585 in 2040 + ssp534-over-bgc | biogeochemically-coupled version of the RCP3.4-overshoot based on SSP5 + ssp585 | update of RCP8.5 based on SSP5 + ssp585-bgc | biogeochemically-coupled version of the RCP8.5 based on SSP5 + ssp585-withism | ssp585 with interactive ice sheet + volc-cluster-21C | volcanic cluster experiment under 21st century SSP2-4.5 scenario + volc-cluster-ctrl | 19th century volcanic cluster initialized from PiControl + volc-cluster-mill | 19th century volcanic cluster initialized from past1000 + volc-long-eq | idealized equatorial volcanic eruption emitting 56.2 Tg SO2 + volc-long-hlN | idealized Northern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2 + volc-long-hlS | Idealized Southern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2 + volc-pinatubo-full | Pinatubo experiment + volc-pinatubo-slab | Pinatubo experiment with slab ocean + volc-pinatubo-strat | Pinatubo experiment with partial radiative forcing, includes only stratospheric warming + volc-pinatubo-surf | Pinatubo experiment with partial radiative forcing, solar radiation scattering only + yr2010CO2 | concentration-driven fixed 2010 forcing + +member_id_pattern = [%(sub_experiment_id)s-]%(variant_label)s + +table_id_options = 3hr, 6hrLev, 6hrPlev, 6hrPlevPt, AERday, AERhr, AERmon, AERmonZ, Amon, CF3hr, CFday, CFmon, CFsubhr, E1hr, E1hrClimMon, E3hr, E3hrPt, E6hrZ, Eday, EdayZ, Efx, Emon, EmonZ, Esubhr, Eyr, IfxAnt, IfxGre, ImonAnt, ImonGre, IyrAnt, IyrGre, LImon, Lmon, Oclim, Oday, Odec, Ofx, Omon, Oyr, SIday, SImon, day, fx + +variable_id_pattern = %(string)s + +grid_label_options = gm, gn, gna, gng, gnz, gr, gr1, gr1a, gr1g, gr1z, gr2, gr2a, gr2g, gr2z, gr3, gr3a, gr3g, gr3z, gr4, gr4a, gr4g, gr4z, gr5, gr5a, gr5g, gr5z, gr6, gr6a, gr6g, gr6z, gr7, gr7a, gr7g, gr7z, gr8, gr8a, gr8g, gr8z, gr9, gr9a, gr9g, gr9z, gra, grg, grz + +model_cohort_map = map(source_id : model_cohort) + ACCESS-CM2 | Registered + ACCESS-ESM1-5 | Registered + ARTS-2-3 | Registered + AWI-CM-1-1-HR | Registered + AWI-CM-1-1-LR | Registered + AWI-CM-1-1-MR | Registered + AWI-ESM-1-1-LR | Registered + BCC-CSM2-HR | Registered + BCC-CSM2-MR | Registered + BCC-ESM1 | Registered + BESM-2-7 | Registered + BNU-ESM-1-1 | Registered + CAMS-CSM1-0 | Registered + CAS-ESM1-0 | Registered + CESM2 | Registered + CESM2-SE | Registered + CESM2-WACCM | Registered + CIESM | Registered + CMCC-CM2-HR4 | Registered + CMCC-CM2-HR5 | Registered + CMCC-CM2-SR5 | Registered + CMCC-CM2-VHR4 | Registered + CMCC-ESM2-HR5 | Registered + CMCC-ESM2-SR5 | Registered + CNRM-CM6-1 | Registered + CNRM-CM6-1-HR | Registered + CNRM-ESM2-1 | Registered + CNRM-ESM2-1-HR | Registered + CSIRO-Mk3L-1-3 | Registered + CanESM5 | Registered + E3SM-1-0 | Registered + EC-Earth3 | Registered + EC-Earth3-AerChem | Registered + EC-Earth3-CC | Registered + EC-Earth3-GrIS | Registered + EC-Earth3-HR | Registered + EC-Earth3-LR | Registered + EC-Earth3-Veg | Registered + EC-Earth3-Veg-LR | Registered + EC-Earth3P | Registered + EC-Earth3P-HR | Registered + EC-Earth3P-VHR | Registered + ECMWF-IFS-HR | Registered + ECMWF-IFS-LR | Registered + ECMWF-IFS-MR | Registered + EMAC-2-53-AerChem | Registered + EMAC-2-53-Vol | Registered + FGOALS-f3-H | Registered + FGOALS-f3-L | Registered + FGOALS-g3 | Registered + FIO-ESM-2-0 | Registered + GFDL-AM4 | Registered + GFDL-CM4 | Registered + GFDL-CM4C192 | Registered + GFDL-ESM2M | Registered + GFDL-ESM4 | Registered + GFDL-OM4p5B | Registered + GISS-E2-1-G | Registered + GISS-E2-1-H | Registered + GISS-E2-1-MA-G | Registered + GISS-E3-G | Registered + HadGEM3-GC31-HH | Registered + HadGEM3-GC31-HM | Registered + HadGEM3-GC31-LL | Registered + HadGEM3-GC31-LM | Registered + HadGEM3-GC31-MH | Registered + HadGEM3-GC31-MM | Registered + ICON-ESM-LR | Registered + IITM-ESM | Registered + INM-CM4-8 | Registered + INM-CM5-0 | Registered + INM-CM5-H | Registered + IPSL-CM6A-ATM-HR | Registered + IPSL-CM6A-LR | Registered + KACE-1-0-G | Registered + KIOST-ESM | Registered + LBLRTM-12-8 | Registered + MCM-UA-1-0 | Registered + MIROC-ES2H | Registered + MIROC-ES2L | Registered + MIROC6 | Registered + MPI-ESM-1-2-HAM | Registered + MPI-ESM1-2-HR | Registered + MPI-ESM1-2-LR | Registered + MRI-AGCM3-2 | Registered + MRI-ESM2-0 | Registered + NESM3 | Registered + NICAM16-7S | Registered + NICAM16-8S | Registered + NICAM16-9D-L78 | Registered + NICAM16-9S | Registered + NorESM2-HH | Registered + NorESM2-LM | Registered + NorESM2-LME | Registered + NorESM2-LMEC | Registered + NorESM2-MH | Registered + NorESM2-MM | Registered + PCMDI-test-1-0 | Registered + RRTMG-LW-4-91 | Registered + RRTMG-SW-4-02 | Registered + RTE-RRTMGP-181204 | Registered + SAM0-UNICON | Registered + TaiESM1 | Registered + UKESM1-0-LL | Registered + UKESM1-0-MMh | Registered + UofT-CCSM4 | Registered + VRESM-1-0 | Registered + +project_options = CMIP6 + +sub_experiment_id_options = none, s1910, s1950, s1960, s1961, s1962, s1963, s1964, s1965, s1966, s1967, s1968, s1969, s1970, s1971, s1972, s1973, s1974, s1975, s1976, s1977, s1978, s1979, s1980, s1981, s1982, s1983, s1984, s1985, s1986, s1987, s1988, s1989, s1990, s1991, s1992, s1993, s1994, s1995, s1996, s1997, s1998, s1999, s2000, s2001, s2002, s2003, s2004, s2005, s2006, s2007, s2008, s2009, s2010, s2011, s2012, s2013, s2014, s2015, s2016, s2017, s2018, s2019, s2020, s2021, s2022, s2023, s2024, s2025, s2026, s2027, s2028, s2029 + +variant_label_pattern = r%(digit)si%(digit)sp%(digit)sf%(digit)s + +frequency_options = 1hr, 1hrCM, 1hrPt, 3hr, 3hrPt, 6hr, 6hrPt, day, dec, fx, mon, monC, monPt, subhrPt, yr, yrPt + +version_pattern = v%(digit)s + +las_time_delta_map = map(frequency : las_time_delta) + 1hr | 1 hour + 1hrCM | 1 hour + 1hrPt | 1 hour + 3hr | 3 hours + 3hrPt | 3 hours + 6hr | 6 hours + 6hrPt | 6 hours + day | 1 day + dec | 10 years + fx | fixed + mon | 1 month + monC | 1 month + monPt | 1 month + subhrPt | 1 minute + yr | 1 year + yrPt | 1 year + +handler = esgcet.config.cmip6_handler:CMIP6Handler + +min_cmor_version = 3.2.4 + +min_cf_version = 1.6 + +min_data_specs_version = 01.00.13 + +create_cim = true + +source_type_delimiter = space + +activity_id_delimiter = space + +realm_delimiter = space + +model_cohort_delimiter = space + +las_configure = true + +extract_global_attrs = frequency, realm, product, nominal_resolution, source_type, grid, creation_date, variant_label, sub_experiment_id, further_info_url, activity_id, data_specs_version + +thredds_exclude_variables = a, a_bnds, alev1, alevel, alevhalf, alt40, b, b_bnds, bnds, bounds_lat, bounds_lon, dbze, depth, depth0m, depth100m, depth_bnds, geo_region, height, height10m, height2m, lat, lat_bnds, latitude, latitude_bnds, layer, lev, lev_bnds, location, lon, lon_bnds, longitude, longitude_bnds, olayer100m, olevel, oline, p0, p220, p500, p560, p700, p840, plev, plev3, plev7, plev8, plev_bnds, plevs, pressure1, region, rho, scatratio, sdepth, sdepth1, sza5, tau, tau_bnds, time, time1, time2, time_bnds, vegtype + +variable_locate = ps, ps_ + +variable_per_file = true + +version_by_date = true + diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/nctime/run-nctime-for-cmip6.sh b/ece2cmor/ece2cmor3/scripts/data-qa/nctime/run-nctime-for-cmip6.sh new file mode 100755 index 0000000000000000000000000000000000000000..e5525f95ce76d049e6dbdeb5849e053a2682cd5f --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/nctime/run-nctime-for-cmip6.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This scripts needs one argument: the directory path with the cmorised data +# +# Run this script without arguments for examples how to call this script. +# + +if [ "$#" -eq 1 ]; then + + # Test whether the directory with the cmorised data exists: + if [ ! -d $1 ]; then + echo + echo ' Error: The directory which was specified for the CMIP6 data: ' $1 ' is not found.' + echo + exit + fi + + # Install nctcck which is part of nctime with pip: + pip install nctime --upgrade + + # Checking with the nctime command nctcck the conitinuity of the produced time records: + nctcck -i esgini-dir -l log-nctcck $1 + +else + echo + echo ' This scripts requires one argument: The directory with the cmorised data, e.g.:' + echo ' ' $0 CMIP6 + echo ' ' $0 /lustre2/projects/model_testing/reerink/cmorised-results/cmor-cmip-historical-for-nsc/cmor-cmip-historical/h003/CMIP6 + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/nctime/submit-script-for-checksum-on-cca.sh b/ece2cmor/ece2cmor3/scripts/data-qa/nctime/submit-script-for-checksum-on-cca.sh new file mode 100755 index 0000000000000000000000000000000000000000..34288753efb5b87a152c1eb2396416c674e328de --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/nctime/submit-script-for-checksum-on-cca.sh @@ -0,0 +1,147 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# Run this script without arguments for examples how to call this script. +# +# Run checksum on the cmorised data. +# +# This scripts requires one arguments: +# 1st argument: the directory path with the cmorised data +# 2nd argument: the experiment ID + +# input_dir_name is the directory with the raw ec-earth output results, for instance: CMIP6 + +if [ "$#" -eq 2 ]; then + + wall_clock_time=2:00:00 # Maximum estimated time of run, e.g: 6:01:00 means 6 ours, 1 minute, zero seconds + cores_per_node=18 # The number of cores used per node, recommended at cca is to use one thread, i.e 18 cores per node + + input_dir_name=${1} + EXP=${2} + + # The ece2cmor3 root directory: + ece2cmor_root_dir=\${PERM}/cmorize/ece2cmor3 + # The directoy where the submit scripts will be launched by qsub: + running_directory=${ece2cmor_root_dir}/ece2cmor3/scripts/data-qa/nctime/ + + parallel_cca=/home/ms/nl/nm6/bin/parallel + + #=============================================================================== + # Below this line the normal end user doesn't have to change anything + #=============================================================================== + + + pbs_header=' +#PBS -N checksum-'${EXP}' +#PBS -q nf +#PBS -j oe +#PBS -o pbs-log-for-checksum-'${EXP}'.out +#PBS -l walltime='${wall_clock_time}' +#PBS -l EC_hyperthreads=1 +#PBS -l EC_total_tasks=1 +#PBS -l EC_threads_per_task='${cores_per_node}' +##PBS -l EC_billing_account=${EC_billing_account} +##PBS -W depend=afterok: +' + + # This block of variables need to be checked and adjusted: + definition_of_script_variables=' + parallel_cca='${parallel_cca}' + EXP='${EXP}' + input_dir_name='${input_dir_name}' + ' + + job_name=run-checksum-${EXP}.sh + + checksum_call=' + if [ ${input_dir_name:(-1)} == '/' ]; then + input_dir_name=${input_dir_name:0:(-1)} + fi + + file_list=file-overview-${input_dir_name##*/}-${EXP}.txt + checksum_file=sha256sum-checksum-${input_dir_name##*/}-${EXP}.txt + time_file=time-${input_dir_name##*/}-${EXP}.txt + + cd ${input_dir_name}/../ + + if [ -f "${parallel_cca}" ]; then + # Creating the file overview: + find ${input_dir_name##*/} -type f > ${file_list} + + # Creating sha256sum checksum with use of parallel: + /usr/bin/time -f "\t%E real,\t%U user,\t%S sys" -o ${time_file} -a ${parallel_cca} -k -j 28 -a ${file_list} sha256sum > ${checksum_file} + else + # Creating sha256sum checksum in a sequential way: + echo '\''Creating sha256sum checksum in a sequential way:'\'' + /usr/bin/time -f "\t%E real,\t%U user,\t%S sys" -o ${time_file} -a find ${input_dir_name} -type f -print0 | xargs -0 sha256sum > ${checksum_file} + fi + ' + #echo "The checksums are created by a sequential call of sha256 because ${HOME}/bin/parallel is not found. On cca one can use parallel by:" + #echo " mkdir -p ${HOME}/bin; rsync -a rsync -a /home/ms/nl/nm6/bin/* ${HOME}/bin/" + + check_data_directory=' + if [ ! -d "$input_dir_name" ]; then echo -e "\e[1;31m Error:\e[0m"" EC-Earth3 data output directory: " $input_dir_name " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $input_dir_name)" ]; then echo -e "\e[1;31m Error:\e[0m"" EC-Earth3 data output directory: " $input_dir_name " is empty. Aborting job:" $0 >&2; exit 1; fi + ' + + check_whether_ece2cmor_is_activated=' + if ! type ece2cmor > /dev/null; then echo -e "\e[1;31m Error:\e[0m"" ece2cmor is not activated." ;fi + ' + +if [ -d ${ece2cmor_root_dir}/ ]; then + ece2cmor_version_log=' + cd ${ece2cmor_root_dir}/; echo; git log |head -n 1 | sed -e "s/^/Using /" -e "s/$/ for/"; ece2cmor --version; cd '${running_directory}'; +#cd ${ece2cmor_root_dir}/; echo; git log |head -n 1 | sed -e "s/^/Using /" -e "s/$/ for/"; ece2cmor --version; git status --untracked-files=no cd '${running_directory}'; +#cd ${ece2cmor_root_dir}/; echo; git log |head -n 1 | sed -e "s/^/Using /" -e "s/$/ for/"; ece2cmor --version; git status --untracked-files=no; git diff cd '${running_directory}'; + ' +else + ece2cmor_version_log=' + echo; echo "Using version:"; ece2cmor --version + ' +fi + + # Creating the job submit script which will be submitted by qsub: + + echo "#!/usr/bin/env bash " | sed 's/\s*$//g' > ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " ${pbs_header} " | sed 's/\s*$//g' >> ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " source ${SCRATCH}/mamba/etc/profile.d/conda.sh " | sed 's/\s*$//g' >> ${job_name} + echo " conda activate ece2cmor3 " | sed 's/\s*$//g' >> ${job_name} + echo " export HDF5_USE_FILE_LOCKING=FALSE " | sed 's/\s*$//g' >> ${job_name} + echo " export UVCDAT_ANONYMOUS_LOG=false " | sed 's/\s*$//g' >> ${job_name} + echo " ${check_whether_ece2cmor_is_activated} " | sed 's/\s*$//g' >> ${job_name} + echo " ${ece2cmor_version_log} " | sed 's/\s*$//g' >> ${job_name} + echo " ${definition_of_script_variables} " | sed 's/\s*$//g' >> ${job_name} + echo " ${check_data_directory} " | sed 's/\s*$//g' >> ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " echo ' Run the sha256 checksum on the cmorised data set for experiment' \${EXP} " | sed 's/\s*$//g' >> ${job_name} + echo " ${checksum_call} " | sed 's/\s*$//g' >> ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + echo " echo ' The ${job_name} job has finished, see:' " | sed 's/\s*$//g' >> ${job_name} + echo " echo ' '\${checksum_file} " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + + chmod uog+x ${job_name} + + + cd ${running_directory} + + # Submitting the job with qsub: + qsub ${job_name} + + # Printing some status info of the job: + echo + echo ' The ' ${running_directory}${job_name} ' submit script is created and submitted. Monitor your job by:' + echo ' qstat -u ' ${USER} + echo ' cd '${running_directory} + echo + + else + echo + echo ' Illegal number of arguments. Needs otwo arguments, e.g.:' + echo ' ' $0 /scratch/ms/nl/nklm/cmorisation/cmorised-results/cmor-VAREX-cmip-h015/h015/CMIP6 h015 + echo ' ' $0 /scratch/ms/nl/nktr/test-fx/fx h015 + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/nctime/submit-script-for-nctime-on-cca.sh b/ece2cmor/ece2cmor3/scripts/data-qa/nctime/submit-script-for-nctime-on-cca.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad5e0c5b0d25950c22e1cfe61003652e1d52235f --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/nctime/submit-script-for-nctime-on-cca.sh @@ -0,0 +1,139 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# Run this script without arguments for examples how to call this script. +# +# Run nctime on the cmorised data. +# +# This scripts requires two arguments: +# 1st argument: the directory path with the cmorised data +# 2nd argument: the experiment ID + +# cmorised_data_dir is the directory with the raw ec-earth output results, for instance: CMIP6 + +if [ "$#" -eq 2 ]; then + + wall_clock_time=2:00:00 # Maximum estimated time of run, e.g: 6:01:00 means 6 ours, 1 minute, zero seconds + cores_per_node=18 # The number of cores used per node, recommended at cca is to use one thread, i.e 18 cores per node + + cmorised_data_dir=${1} + EXP=${2} + + # The directoy where the submit scripts will be launched by qsub: + nctime_dir=${PERM}/cmorize/ece2cmor3/ece2cmor3/scripts/data-qa/nctime/ + path_log_subdir=${nctime_dir}/log-nctcck/${EXP} + + + + #=============================================================================== + # Below this line the normal end user doesn't have to change anything + #=============================================================================== + + + pbs_header=' +#PBS -N nctime-'${EXP}' +#PBS -q nf +#PBS -j oe +#PBS -o pbs-log-for-nctime-'${EXP}'.out +#PBS -l walltime='${wall_clock_time}' +#PBS -l EC_hyperthreads=1 +#PBS -l EC_total_tasks=1 +#PBS -l EC_threads_per_task='${cores_per_node}' +##PBS -l EC_billing_account=${EC_billing_account} +##PBS -W depend=afterok: +' + + # This block of variables need to be checked and adjusted: + definition_of_script_variables=' + EXP='${EXP}' + cmorised_data_dir='${cmorised_data_dir}' + nctime_dir='${nctime_dir}' + path_log_subdir='${path_log_subdir}' + ' + + job_name=run-nctime-${EXP}.sh + + add_comment_part_1='Run nctime on the cmorised data set of the entire experiment' + add_comment_part_2='by checking with the nctime command nctcck the conitinuity of the produced time records:' + + change_dir='cd ${nctime_dir}' + create_dir='mkdir -p ${path_log_subdir}' + + nctxck_call='nctxck --max-processes -1 -i ${nctime_dir}/esgini-dir -l ${path_log_subdir} ${cmorised_data_dir}' + nctcck_call='nctcck --max-processes -1 -i ${nctime_dir}/esgini-dir -l ${path_log_subdir} ${cmorised_data_dir}' + one_line_command_01=$(echo ${nctxck_call} | sed -e 's/\\//g') + one_line_command_02=$(echo ${nctcck_call} | sed -e 's/\\//g') + + check_data_directory=' + if [ ! -d "$cmorised_data_dir" ]; then echo -e "\e[1;31m Error:\e[0m"" EC-Earth3 data output directory: " $cmorised_data_dir " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $cmorised_data_dir)" ]; then echo -e "\e[1;31m Error:\e[0m"" EC-Earth3 data output directory: " $cmorised_data_dir " is empty. Aborting job:" $0 >&2; exit 1; fi + ' + + check_whether_ece2cmor_is_activated=' + if ! type ece2cmor > /dev/null; then echo -e "\e[1;31m Error:\e[0m"" ece2cmor is not activated." ;fi + ' + +if [ -d ${PERM}/cmorize/ece2cmor3/ ]; then + ece2cmor_version_log=' + cd ${PERM}/cmorize/ece2cmor3/; echo; git log |head -n 1 | sed -e "s/^/Using /" -e "s/$/ for/"; ece2cmor --version; cd '${nctime_dir}'; +#cd ${PERM}/cmorize/ece2cmor3/; echo; git log |head -n 1 | sed -e "s/^/Using /" -e "s/$/ for/"; ece2cmor --version; git status --untracked-files=no cd '${nctime_dir}'; +#cd ${PERM}/cmorize/ece2cmor3/; echo; git log |head -n 1 | sed -e "s/^/Using /" -e "s/$/ for/"; ece2cmor --version; git status --untracked-files=no; git diff cd '${nctime_dir}'; + ' +else + ece2cmor_version_log=' + echo; echo "Using version:"; ece2cmor --version + ' +fi + + # Creating the job submit script which will be submitted by qsub: + + echo "#!/usr/bin/env bash " | sed 's/\s*$//g' > ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " ${pbs_header} " | sed 's/\s*$//g' >> ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " source ${SCRATCH}/mamba/etc/profile.d/conda.sh " | sed 's/\s*$//g' >> ${job_name} + echo " conda activate ece2cmor3 " | sed 's/\s*$//g' >> ${job_name} + echo " export HDF5_USE_FILE_LOCKING=FALSE " | sed 's/\s*$//g' >> ${job_name} + echo " export UVCDAT_ANONYMOUS_LOG=false " | sed 's/\s*$//g' >> ${job_name} + echo " ${check_whether_ece2cmor_is_activated} " | sed 's/\s*$//g' >> ${job_name} + echo " ${ece2cmor_version_log} " | sed 's/\s*$//g' >> ${job_name} + echo " ${definition_of_script_variables} " | sed 's/\s*$//g' >> ${job_name} + echo " ${check_data_directory} " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + echo " echo 'The ${job_name} job will run:' " | sed 's/\s*$//g' >> ${job_name} + echo " echo ${one_line_command_01} " | sed 's/\s*$//g' >> ${job_name} + echo " echo ${one_line_command_02} " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " echo '${add_comment_part_1} ${EXP} ${add_comment_part_2}' " | sed 's/\s*$//g' >> ${job_name} + echo " ${change_dir} " | sed 's/\s*$//g' >> ${job_name} + echo " ${create_dir} " | sed 's/\s*$//g' >> ${job_name} + echo " ${nctxck_call} " | sed 's/\s*$//g' >> ${job_name} + echo " ${nctcck_call} " | sed 's/\s*$//g' >> ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + echo " echo 'The ${job_name} job has finished.' " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + + chmod uog+x ${job_name} + + + cd ${nctime_dir} + + # Submitting the job with qsub: + qsub ${job_name} + + # Printing some status info of the job: + echo + echo ' The ' ${nctime_dir}${job_name} ' submit script is created and submitted. Monitor your job by:' + echo ' qstat -u ' ${USER} + echo ' cd '${nctime_dir} + echo + + else + echo + echo ' Illegal number of arguments. Needs two arguments, e.g.:' + echo ' ' $0 ${SCRATCH}/cmorisation/cmorised-results/cmor-lamaclima-FRST/FRST/CMIP6/ FRST + echo ' ' $0 /scratch/ms/nl/nklm/cmorisation/cmorised-results/cmor-VAREX-cmip-h015/h015/CMIP6 h015 + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/recipes/sftlf-AOGCM.sh b/ece2cmor/ece2cmor3/scripts/data-qa/recipes/sftlf-AOGCM.sh new file mode 100755 index 0000000000000000000000000000000000000000..e91c6cfe1a8227f6e6592692bc9f7b5aa0919823 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/recipes/sftlf-AOGCM.sh @@ -0,0 +1,82 @@ +#!/bin/bash +# Thomas Reerink +# +# This scripts needs no argument: +# +# ${1} the first argument is the +# +# +# Run example: +# ./sftlf-AOGCM.sh +# +# With this script the +# + +if [ "$#" -eq 0 ]; then + + rm -rf CMIP6 + scp sftlf_fx_EC-Earth3-Veg_TEMPLATE_r1i1p1f1_gr.nc sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + #dncdiff sftlf_fx_EC-Earth3-Veg_TEMPLATE_r1i1p1f1_gr.nc sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + + ncatted -Oh -a Conventions,global,o,c,"CF-1.7 CMIP-6.2" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + #ncatted -Oh -a activity_id,global,o,c,"CMIP" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + #ncatted -Oh -a branch_method,global,o,c,"standard" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + ncatted -Oh -a branch_time,global,o,c,"0." sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + #ncatted -Oh -a branch_time_in_child,global,o,c,"0." sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + #ncatted -Oh -a branch_time_in_parent,global,o,c,"0." sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + ncatted -Oh -a comment,global,o,c,"Production: Thomas Reerink at KNMI" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a contact,global,o,c,"cmip6-data@ec-earth.org" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a creation_date,global,o,c,"2019-09-30T10:38:23Z" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## ? + ncatted -Oh -a data_specs_version,global,o,c,"01.00.31" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a experiment,global,o,c,"all-forcing simulation of the recent past" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + ncatted -Oh -a experiment_id,global,o,c,"historical" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + #ncatted -Oh -a external_variables,global,o,c,"areacella" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ##ncatted -Oh -a forcing_index,global,o,c,"1" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a frequency,global,o,c,"fx" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + #ncatted -Oh -a further_info_url,global,o,c,"https://furtherinfo.es-doc.org/CMIP6.EC-Earth-Consortium.EC-Earth3.historical.none.r1i1p1f1" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + ncatted -Oh -a grid,global,o,c,"T255L91" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a grid_label,global,o,c,"gr" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a history,global,o,c,"2019-09-30T10:31:03Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.;\n processed by ece2cmor v1.2.0, git rev. 85ffde4a22948560fae15bc2dedfc91a3d473d30\n " sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ##ncatted -Oh -a initialization_index,global,o,c,"1" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a institution,global,o,c,"AEMET, Spain; BSC, Spain; CNR-ISAC, Italy; DMI, Denmark; ENEA, Italy; FMI, Finland; Geomar, Germany; ICHEC, Ireland; ICTP, Italy; IDL, Portugal; IMAU, The Netherlands; IPMA, Portugal; KIT, Karlsruhe, Germany; KNMI, The Netherlands; Lund University, Sweden; Met Eireann, Ireland; NLeSC, The Netherlands; NTNU, Norway; Oxford University, UK; surfSARA, The Netherlands; SMHI, Sweden; Stockholm University, Sweden; Unite ASTR, Belgium; University College Dublin, Ireland; University of Bergen, Norway; University of Copenhagen, Denmark; University of Helsinki, Finland; University of Santiago de Compostela, Spain; Uppsala University, Sweden; Utrecht University, The Netherlands; Vrije Universiteit Amsterdam, the Netherlands; Wageningen University, The Netherlands. Mailing address: EC-Earth consortium, Rossby Center, Swedish Meteorological and Hydrological Institute/SMHI, SE-601 76 Norrkoping, Sweden" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a institution_id,global,o,c,"EC-Earth-Consortium" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a mip_era,global,o,c,"CMIP6" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a nominal_resolution,global,o,c,"100 km" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a parent_activity_id,global,o,c,"CMIP" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a parent_experiment_id,global,o,c,"piControl" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + ncatted -Oh -a parent_mip_era,global,o,c,"CMIP6" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a parent_source_id,global,o,c,"EC-Earth3" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## EC-Earth3 + #ncatted -Oh -a parent_time_units,global,o,c,"days since 1850-01-01" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + ncatted -Oh -a parent_variant_label,global,o,c,"r1i1p1f1" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ##ncatted -Oh -a physics_index,global,o,c,"1" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a product,global,o,c,"model-output" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ##ncatted -Oh -a realization_index,global,o,c,"1" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a realm,global,o,c,"atmos" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a source,global,o,c,"EC-Earth3 (2019): \n aerosol: none\n atmos: IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)\n atmosChem: none\n land: HTESSEL (land surface scheme built in IFS)\n landIce: none\n ocean: NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)\n ocnBgchem: none\n seaIce: LIM3" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## EC-Earth3 + ncatted -Oh -a source_id,global,o,c,"EC-Earth3" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## EC-Earth3 + #ncatted -Oh -a source_type,global,o,c,"AOGCM" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## will be adjusted by sftlf.py + ncatted -Oh -a sub_experiment,global,o,c,"none" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a sub_experiment_id,global,o,c,"none" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a table_id,global,o,c,"fx" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a table_info,global,o,c,"Creation Date:(24 July 2019) MD5:70649eeb16bc90c431e35b583fac7375" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## Correct, checked in CMIP6_coordinate.json: "table_date": "24 July 2019" + ncatted -Oh -a title,global,o,c,"EC-Earth3 output prepared for CMIP6" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + #ncatted -Oh -a tracking_id,global,o,c,"hdl:21.14100/f829d35a-cc32-4332-a0a5-e2ddbd8260d1" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc ## EC-Earth3 + ncatted -Oh -a variable_id,global,o,c,"sftlf" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a variant_label,global,o,c,"r1i1p1f1" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a license,global,o,c,"CMIP6 model data produced by EC-Earth-Consortium is licensed under a Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file) and at http://www.ec-earth.org. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law." sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + ncatted -Oh -a cmor_version,global,o,c,"3.5.0" sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + + #cd {HIOME}/data-qa/recipes/; + ./sftlf.py + #dncdiff sftlf_fx_EC-Earth3-Veg_TEMPLATE_r1i1p1f1_gr.nc sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc + +#ncdump -h /lustre2/projects/model_testing/reerink/cmorised-results/cmor-cmip-piControl/t264/CMIP6/CMIP/EC-Earth-Consortium/EC-Earth3/piControl/r1i1p1f1/part-1/Amon/hus/gr/v20190712/hus_Amon_EC-Earth3_piControl_r1i1p1f1_gr_225901-225912.nc|grep branch_time_in_ +#ncdump -h /lustre3/projects/CMIP6/reerink/cmorised-results/cmor-cmip-historical/h003/CMIP6/CMIP/EC-Earth-Consortium/EC-Earth3/historical/r1i1p1f1/part-2/Amon/hus/gr/v20190926/hus_Amon_EC-Earth3_historical_r1i1p1f1_gr_186101-186112.nc|grep branch_time_in_ +#ncdump -h /lustre3/projects/CMIP6/reerink/cmorised-results/cmor-cmip-scenario-ssp1-2.6/s126/CMIP6/ScenarioMIP/EC-Earth-Consortium/EC-Earth3/ssp126/r1i1p1f1/Amon/hus/gr/v20190926/hus_Amon_EC-Earth3_ssp126_r1i1p1f1_gr_201501-201512.nc|grep branch_time_in_ + +else + echo ' ' + echo ' This scripts requires no argument:' + echo ' ' $0 + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/recipes/sftlf.py b/ece2cmor/ece2cmor3/scripts/data-qa/recipes/sftlf.py new file mode 100755 index 0000000000000000000000000000000000000000..e61a58b18292debc8af61f94faa9005566f5e3b0 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/recipes/sftlf.py @@ -0,0 +1,67 @@ +#! /usr/bin/env python +""" Take a template file (sftlf_fx_EC-Earth3-Veg_TEMPLATE_r1i1p1f1_gr.nc), + which has correct data values for fx/sftlf (land fraction) and create + publishable files for all experiments given +""" + +import os +import shutil +import uuid + +from netCDF4 import Dataset + +# experiment_id heap activity_id version experiment parent exp id src type parent time units br mthd b_t_p b_t_c +all = [ ('amip', 'heap-03-amip', 'CMIP', 'v20190711', 'AMIP', 'no parent', 'AGCM', 'no parent', 'no parent', 0.0, 0.0), + ('historical', 'heap-02-hist', 'CMIP', 'v20190926', 'all-forcing simulation of the recent past', 'piControl', 'AOGCM', 'days since 1850-01-01', 'standard', 0.0, 0.0), + ('piControl', 'heap-04-pict', 'CMIP', 'v20190712', 'pre-industrial control', 'piControl-spinup', 'AOGCM', 'days since 1980-01-01', 'standard', 0.0, 0.0), + ('ssp126', 'heap-05-ssp126', 'ScenarioMIP', 'v20190926', 'update of RCP2.6 based on SSP1', 'historical', 'AOGCM', 'days since 1850-01-01', 'standard', 0.0, 0.0), + ('ssp245', 'heap-06-ssp245', 'ScenarioMIP', 'v20190927', 'update of RCP4.5 based on SSP2', 'historical', 'AOGCM', 'days since 1850-01-01', 'standard', 0.0, 0.0), + ('ssp370', 'heap-07-ssp370', 'ScenarioMIP', 'v20190927', 'gap-filling scenario reaching 7.0 based on SSP3', 'historical', 'AOGCM', 'days since 1850-01-01', 'standard', 0.0, 0.0), + ('ssp585', 'heap-08-ssp585', 'ScenarioMIP', 'v20190928', 'update of RCP8.5 based on SSP5', 'historical', 'AOGCM', 'days since 1850-01-01', 'standard', 0.0, 0.0), + ('ssp119', 'heap-12-ssp119', 'ScenarioMIP', 'v20190711', 'low-end scenario reaching 1.9 W m-2, based on SSP1', 'historical', 'AOGCM', 'days since 1850-01-01', 'standard', 0.0, 0.0), + #('abrupt-4xCO2', 'heap-09-4xCO2', 'CMIP', 'v20190702', 'abrupt quadrupling of CO2', 'piControl', 'AOGCM', 'days since 1850-01-01', 'standard', 0.0, 0.0), + #('1pctCO2', 'heap-10-1pctCO2', 'CMIP', 'v20190702', '1 percent per year increase in CO2', 'piControl', 'AOGCM', 'days since 1850-01-01', 'standard', 0.0, 0.0), + ] + +#ncdump -h /lustre3/projects/CMIP6/reerink/cmorised-results/cmor-cmip-historical/h003/CMIP6/CMIP/EC-Earth-Consortium/EC-Earth3/historical/r1i1p1f1/part-2/Amon/hus/gr/v20190926/hus_Amon_EC-Earth3_historical_r1i1p1f1_gr_186101-186112.nc|grep branch_time_in_ + + +template_file='sftlf_fx_EC-Earth3_TEMPLATE_r1i1p1f1_gr.nc' + +for experiment_id, \ + heap, \ + activity_id, \ + version, \ + experiment, \ + parent_experiment_id, \ + source_type, \ + parent_time_units, \ + branch_method, \ + branch_time_in_parent, \ + branch_time_in_child in all: + + dir_name = 'CMIP6/' + activity_id + '/EC-Earth-Consortium/EC-Earth3/' + experiment_id + '/r1i1p1f1/fx/sftlf/gr/' + version + file_name = os.path.join(dir_name, 'sftlf_fx_EC-Earth3_' + experiment_id + '_r1i1p1f1_gr.nc') + + print(file_name) + + if not os.path.exists(dir_name): + os.makedirs(dir_name) + + shutil.copy2(src=template_file, dst=file_name) + + ds = Dataset(file_name, 'r+') + + ds.experiment_id = experiment_id + ds.activity_id = activity_id + ds.experiment = experiment + ds.parent_experiment_id = parent_experiment_id + ds.source_type = source_type + ds.parent_time_units = parent_time_units + ds.branch_method = branch_method + ds.branch_time_in_parent = branch_time_in_parent + ds.branch_time_in_child = branch_time_in_child + ds.tracking_id = 'hdl:21.14100/' + str(uuid.uuid4()) + ds.further_info_url = 'https://furtherinfo.es-doc.org/CMIP6.EC-Earth-Consortium.EC-Earth3.' + experiment_id + '.none.r1i1p1f1' + + ds.close() diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/recipes/sftlf_fx_EC-Earth3-Veg_TEMPLATE_r1i1p1f1_gr.nc b/ece2cmor/ece2cmor3/scripts/data-qa/recipes/sftlf_fx_EC-Earth3-Veg_TEMPLATE_r1i1p1f1_gr.nc new file mode 100644 index 0000000000000000000000000000000000000000..5647147a5e15f2c1e6e9c423807c6c3decadab92 Binary files /dev/null and b/ece2cmor/ece2cmor3/scripts/data-qa/recipes/sftlf_fx_EC-Earth3-Veg_TEMPLATE_r1i1p1f1_gr.nc differ diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/scripts/checksum.sh b/ece2cmor/ece2cmor3/scripts/data-qa/scripts/checksum.sh new file mode 100755 index 0000000000000000000000000000000000000000..d3394e31f8076253c2f2c90ea8535049bcc6dda2 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/scripts/checksum.sh @@ -0,0 +1,17 @@ +#!/usr/bin/sh +# +#SBATCH --account=... +#SBATCH --time=... +#SBATCH --nodes=1 +#SBATCH --output=checksum.log +#SBATCH --exclusive + +# Uses GNU parallel for parallesisation of checksum computation. Make sure it's +# available! (on NSC, load module parallel/...) + +file_list="file.list" +checksum_file="sha256sums" + +find CMIP6 -type f > $file_list + +parallel -a $file_list sha256sum > $checksum_file diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/scripts/files-per-year.sh b/ece2cmor/ece2cmor3/scripts/data-qa/scripts/files-per-year.sh new file mode 100755 index 0000000000000000000000000000000000000000..21daca712e7683c259bac042402e9b7974ccb39d --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/scripts/files-per-year.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash + +set -eu + +usage() { + cat << EOT >&2 +$(basename $0): Count the number of cmorised files per year. + +Usage: $(basename $0) FIRST_YEAR LAST_YEAR DIR + +EOT +} + +error() { + usage + echo "ERROR: $1" >&2 + [ -z ${2+x} ] && exit 99 + exit $2 +} + +(( $# != 3 )) && error "$(basename $0) needs exactly 3 arguments" + +first_year=$1 +last_year=$2 +directory=$3 + +set +u +(( "$first_year" < "$last_year" )) || \ + error "First two arguments do not specify a time range: \"$first_year\" \"$last_year\"" +set -u +[ ! -d "$directory" ] && error "Third argument is not a directory: \"$directory\"" + +#i=166 +i=1 +for y in $(seq $first_year $last_year) +do + echo -n "$(printf '%03d' $i) $y: " + find $directory -type f -name "*_$y*.nc" | wc -l + i=$((i+1)) +done + +# Example file name patterns: +# +# > find . -name '*_1850*.nc' | sed 's:.*\(_1850.*\.nc\):\1:' | sort -u +# _1850-1850.nc +# _185001-185012.nc +# _18500101-18501231.nc +# _185001010000-185012311800.nc +# _185001010000-185012312100.nc +# _185001010130-185012312230.nc +# _185001010430-185012312230.nc +# +# > find . -name '*_1857*.nc' | sed 's:.*\(_1857.*\.nc\):\1:' | sort -u +# _1857-1857.nc +# _185701-185712.nc +# _18570101-18571231.nc +# _185701010000-185712311800.nc +# _185701010000-185712312100.nc +# _185701010130-185712312230.nc diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/scripts/sftof.py b/ece2cmor/ece2cmor3/scripts/data-qa/scripts/sftof.py new file mode 100755 index 0000000000000000000000000000000000000000..b6a34fb13e6210108c03357094a9456487558a08 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/scripts/sftof.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python + +import sys +import os +import shutil + +from netCDF4 import Dataset + +if __name__=='__main__': + + variable_name = 'sftof' + + if len(sys.argv)!=2: + raise RuntimeError('Need exactly one netcdf file as argument!') + + if not os.path.isfile(sys.argv[1]): + raise RuntimeError('"{}" is not a file!'.format(sys.argv[1])) + + file_name = sys.argv[1] + file_name_bak = '{}.bak'.format(file_name) + + if os.path.isfile(file_name_bak): + raise RuntimeError('Backup file "{}" exists already!'.format(file_name_bak)) + + shutil.copy2(src=file_name, dst=file_name_bak) + + dataset = Dataset(file_name, 'r+') + try: + data = 100 + 0*dataset.variables[variable_name][:] + except KeyError: + raise RuntimeError('Variable "{}" not found in "{}"!'.format(variable_name, file_name)) + + dataset.variables[variable_name][:] = data + dataset.close() diff --git a/ece2cmor/ece2cmor3/scripts/data-qa/scripts/versions.sh b/ece2cmor/ece2cmor3/scripts/data-qa/scripts/versions.sh new file mode 100755 index 0000000000000000000000000000000000000000..d86f7f79499235435cf12c31d91de6ae4e156b20 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/data-qa/scripts/versions.sh @@ -0,0 +1,110 @@ +#!/usr/bin/env bash + +set -eu + +usage() { + cat << EOT >&2 +$(basename $0): Get/set version ("vYYYYMMDD" string) for CMORised data by +listing version directories (get) or moving files (set) to the appropriate +directory. + If needed, a new version directory is created. Empty version directories are +removed. When moving files would overwrite existing files, the user is +prompted. + Note that the script has a safety switch (-m)! If the switch is *not* used on +the command line, it runs in dry-run mode (i.e. no files are moved). + +Usage: $(basename $0) -l | -v [-m] DIR + + -l List versions present in DIR + -v Set version to be used for all files + must match: v20[0-9][0-9][01][0-9][0-9][0-9] + -m Safety switch: actually move files (dry-run if not set) + +EOT +} + +error() { + echo "ERROR: $1" >&2 + [ -z ${2+x} ] && exit 99 + exit $2 +} + +warning() { + echo "WARNING: $1" >&2 +} + +while getopts ":lmv:" opt +do + case "$opt" in + l) list=1 + ;; + m) move=1 + ;; + v) version=$OPTARG + ;; + \?) usage + error "Invalid option: -$OPTARG" 1 + ;; + :) error "Option -$OPTARG requires an argument." 2 + ;; + esac +done +shift $((OPTIND-1)) + +if [ -z ${version+x} ] && [ -z ${list+x} ] +then + usage + error "Either -l or -v must be used" 3 +fi + +if [ -z ${1+x} ] || [ ! -d $1 ] +then + usage + set +u + error "Missing or invalid directory: '$1'" 4 +else + directory=$1 +fi + +if [ ! -z ${list+x} ] +then + for d in $(find $directory -type d -name "v20[0-9][0-9][01][0-9][0-9][0-9]") + do + basename $d + done | sort -u + exit 0 +fi + +if [ ! -z ${version+x} ] +then + [ -z ${move+x} ] && warning "Not moving any files (dry-run mode)" + + [[ $version =~ v20[0-9][0-9][01][0-9]{3}$ ]] || error "Invalid version string '$version'" 5 + + for d in $(find $directory -type d -name "v20[0-9][0-9][01][0-9][0-9][0-9]") + do + this_version=$(basename $d) + if [[ ! $this_version =~ $version ]] + then + echo "Processing directory '$d'" + new_version_dir="$(dirname $d)/$version/" + for f in $d/*.nc + do + if [ -z ${move+x} ] + then + echo "Moving: $f --> $new_version_dir" + else + [ -d $new_version_dir ] || mkdir --verbose $new_version_dir + #mv --interactive --verbose $f $new_version_dir + mv --force --verbose $f $new_version_dir + fi + done + if [ -z ${move+x} ] + then + echo "Removing directory: $d" + else + rmdir --verbose $d || warning "Directory not empty: '$d'" + fi + fi + done +fi diff --git a/ece2cmor/ece2cmor3/scripts/determine-missing-variables.sh b/ece2cmor/ece2cmor3/scripts/determine-missing-variables.sh new file mode 100755 index 0000000000000000000000000000000000000000..9cde172bf17d4181609db2ae7fea5492902c0460 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/determine-missing-variables.sh @@ -0,0 +1,155 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This scripts requires four arguments (a fifth argument is OPTIONAL): +# +# the first argument is the MIP name. The first argument can represent a list of MIPs, seperated by commas. +# the second argument is the experiment name or MIP name in the latter case all MIP experiments are taken. +# the third argument is the experiment tier (tier 1 is obligatory, higher tier is non-obligatory). In case tier 2 is specified, tier 1 and 2 experiments are considered. +# the fourth argument is the maximum priority of the variables (1 is highest priority, 3 is lowest priority). In case priority 2 is specified, priority 1 and 2 variables are considered. +# the fifth argument [OPTIONAL] is an additional checkvars argument, e.g.: --nemo for only ocean variables +# +# Run this script without arguments for examples how to call this script. +# + +ece2cmor_root_directory=${HOME}/cmorize/ece2cmor3/ + +if [ "$#" -eq 4 ] || [ "$#" -eq 5 ]; then + + # Test whether the ece2cmor_root_directory exists: + if [ ! -d ${ece2cmor_root_directory} ]; then + line_nr=`grep -n 'ece2cmor_root_directory=' $0 | head -1 | sed 's/:.*$//'` + echo; tput setaf 1; + echo " Error: The root directory of ece2cmor3: ${ece2cmor_root_directory} is not found." + echo " Adjust the ece2cmor_root_directory at line ${line_nr} of the script: $0" + tput sgr0; echo + exit + fi + + if ! type "ece2cmor" > /dev/null; then + echo + echo ' The CMIP6 data request tool ece2cmor is not available because of one of the following reasons:' + echo ' 1. ece2cmor might be not installed' + echo ' 2. ece2cmor might be not active, check whether the ece2cmor3 environment is activated' + echo ' Stop' + echo + exit + fi + + if ! type "drq" > /dev/null; then + echo + echo ' The CMIP6 data request tool drq is not available because of one of the following reasons:' + echo ' 1. drq might be not installed' + echo ' 2. drq might be not active, check whether the ece2cmor3 environment is activated' + echo ' Stop' + echo + exit + fi + + mip=$1 + experiment=$2 + tier=$3 + priority=$4 + if [ "$#" -eq 5 ]; then + additional_checkvars_argument=$5 + else + additional_checkvars_argument='' + fi + + # Check whether more than one MIP is specified in the data request + multiplemips='no' + if [[ ${mip} == *","* ]];then + multiplemips='yes' + echo ' Multiple mip case = ' ${multiplemips} + fi + + # Replace comma by dot in label: + mip_label=$(echo ${mip} | sed 's/,/./g') + + cd ${ece2cmor_root_directory}; pip install -e .; cd -; + mkdir -p ${ece2cmor_root_directory}/ece2cmor3/scripts/cmip6-data-request/; cd ${ece2cmor_root_directory}/ece2cmor3/scripts/cmip6-data-request/; + if [ ${mip} = 'VolMIP' ]; then + drq -m ${mip} -t ${tier} -p ${priority} --xls --xlsDir cmip6-data-request-${mip_label}-${experiment}-t${tier}-p${priority} + else + drq -m ${mip} -t ${tier} -p ${priority} -e ${experiment} --xls --xlsDir cmip6-data-request-${mip_label}-${experiment}-t${tier}-p${priority} + fi + cd ${ece2cmor_root_directory}/ece2cmor3/scripts/ + # Note that the *TOTAL* selection below has the risk that more than one file is selected (causing a crash) which only could happen if externally files are added in this directory: + if [ "${multiplemips}" == "yes" ]; then + checkvars ${additional_checkvars_argument} -v --drq cmip6-data-request/cmip6-data-request-${mip_label}-${experiment}-t${tier}-p${priority}/*.*TOTAL*.xlsx --output cmvmm_${mip_label}-${experiment}-t${tier}-p${priority} + else + checkvars ${additional_checkvars_argument} -v --drq cmip6-data-request/cmip6-data-request-${mip_label}-${experiment}-t${tier}-p${priority}/cmvmm_${mip_label}_TOTAL_${tier}_${priority}.xlsx --output cmvmm_${mip_label}-${experiment}-t${tier}-p${priority} + #checkvars -v --drq cmip6-data-request/cmip6-data-request-${mip_label}-${experiment}-t${tier}-p${priority}/cmvmm_${mip_label}_${experiment}_${tier}_${priority}.xlsx --output cmvmm_${mip_label}-${experiment}-t${tier}-p${priority} + fi + + + if [ ${mip} == 'CMIP,AerChemMIP,CDRMIP,C4MIP,DCPP,HighResMIP,ISMIP6,LS3MIP,LUMIP,OMIP,PAMIP,PMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB' ] && [ ${experiment} == 'CMIP' ]; then + mv cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.available.json cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.available.json + mv cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.missing.txt cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.missing.txt + mv cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.identifiedmissing.txt cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.identifiedmissing.txt + mv cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.available.txt cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.available.txt + mv cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.ignored.txt cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.ignored.txt + mv cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.missing.xlsx cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.missing.xlsx + mv cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.identifiedmissing.xlsx cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.identifiedmissing.xlsx + mv cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.available.xlsx cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.available.xlsx + mv cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.ignored.xlsx cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.ignored.xlsx + fi + + # Some benchmark diffing, which can be activated by the developer: + benchmark_step_1_and_2='benchmark-step-1+2-v49' + #benchmark_step_1_and_2='benchmark-step-1+2-v49-pextra' + + if [ -d benchmark/${benchmark_step_1_and_2} ] && [ ${mip} == 'CMIP,AerChemMIP,CDRMIP,C4MIP,DCPP,HighResMIP,ISMIP6,LS3MIP,LUMIP,OMIP,PAMIP,PMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB' ] && [ ${experiment} == 'CMIP' ]; then + echo 'Diff missing.txt file: ' > differences-with-${benchmark_step_1_and_2}.txt; diff -b cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.missing.txt benchmark/${benchmark_step_1_and_2}/cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.missing.txt >> differences-with-${benchmark_step_1_and_2}.txt; echo ' ' >> differences-with-${benchmark_step_1_and_2}.txt; + echo 'Diff identified missing file:' >> differences-with-${benchmark_step_1_and_2}.txt; diff -b cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.identifiedmissing.txt benchmark/${benchmark_step_1_and_2}/cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.identifiedmissing.txt >> differences-with-${benchmark_step_1_and_2}.txt; echo ' ' >> differences-with-${benchmark_step_1_and_2}.txt; + echo 'Diff available.txt file: ' >> differences-with-${benchmark_step_1_and_2}.txt; diff -b cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.available.txt benchmark/${benchmark_step_1_and_2}/cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.available.txt >> differences-with-${benchmark_step_1_and_2}.txt; echo ' ' >> differences-with-${benchmark_step_1_and_2}.txt; + echo 'Diff ignored.txt file: ' >> differences-with-${benchmark_step_1_and_2}.txt; diff -b cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.ignored.txt benchmark/${benchmark_step_1_and_2}/cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.ignored.txt >> differences-with-${benchmark_step_1_and_2}.txt; echo ' ' >> differences-with-${benchmark_step_1_and_2}.txt; + fi + +else + echo + echo " This scripts requires four arguments: MIP, MIP experiment, experiment tier, priority of variable, e.g.:" + echo " $0 CMIP CMIP 1 1" + echo " The first argument can represent a list of MIPs, seperated by commas, e.g.:" + echo " $0 CMIP,AerChemMIP,CDRMIP,C4MIP,DCPP,HighResMIP,ISMIP6,LS3MIP,LUMIP,OMIP,PAMIP,PMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB CMIP 1 1" + echo +fi + +# Filling eventually some or all of the omit lists below: +# cp cmvmm_CMIP-CMIP-t1-p1.missing.xlsx ../resources/lists-of-omitted-variables/list-of-omitted-variables-01.xlsx +# cp identification/NEMO-identification/to-be-checked-if-PISCES-can-provide--not-in-LPJ-GUESS-version-2.xlsx ../resources/lists-of-omitted-variables/list-of-omitted-variables-02.xlsx +# cp cmvmm_CMIP.AerChemMIP.CDRMIP.C4MIP.DCPP.HighResMIP.ISMIP6.LS3MIP.LUMIP.OMIP.PAMIP.PMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-CMIP-t1-p1.missing.xlsx ../resources/lists-of-omitted-variables/list-of-omitted-variables-03.xlsx + + +# Step 1: Request for CMIP experiments for tier=1 and priority=1: +# ./determine-missing-variables.sh CMIP CMIP 1 1 + +# Step 1+2: Request for all EC-EARTH3 MIPs of the CMIP experiments for tier=1 and priority=1: +# ./determine-missing-variables.sh CMIP,AerChemMIP,CDRMIP,C4MIP,DCPP,HighResMIP,ISMIP6,LS3MIP,LUMIP,OMIP,PAMIP,PMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB CMIP 1 1 + +# Step 3: + +# cpf benchmark/benchmark-step-1+2-v49-pextra/cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.available.xlsx ../resources/lists-of-omitted-variables/list-of-omitted-variables-01.xlsx +# cpf benchmark/benchmark-step-1+2-v49-pextra/cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.identifiedmissing.xlsx ../resources/lists-of-omitted-variables/list-of-omitted-variables-02.xlsx +# cpf benchmark/benchmark-step-1+2-v49-pextra/cmvmm_all-ece-mips-step-1+2-CMIP-t1-p1.ignored.xlsx ../resources/lists-of-omitted-variables/list-of-omitted-variables-03.xlsx +# +# ./determine-missing-variables.sh AerChemMIP AerChemMIP 1 1 +# ./determine-missing-variables.sh CDRMIP CDRMIP 1 1 +# ./determine-missing-variables.sh C4MIP C4MIP 1 1 +# ./determine-missing-variables.sh DCPP DCPP 1 1 +# ./determine-missing-variables.sh HighResMIP HighResMIP 1 1 +# ./determine-missing-variables.sh ISMIP6 ISMIP6 1 1 +# ./determine-missing-variables.sh LS3MIP LS3MIP 1 1 +# ./determine-missing-variables.sh LUMIP LUMIP 1 1 +# ./determine-missing-variables.sh OMIP OMIP 1 1 +# ./determine-missing-variables.sh PAMIP PAMIP 1 1 +# ./determine-missing-variables.sh PMIP PMIP 1 1 +# ./determine-missing-variables.sh RFMIP RFMIP 1 1 +# ./determine-missing-variables.sh ScenarioMIP ScenarioMIP 1 1 +# ./determine-missing-variables.sh VolMIP VolMIP 1 1 # The request: drq -m VolMIP -e VolMIP -p 1 -t 1 gives an error (see #573) with: -e VolMIP after drq version 01.00.29 +# +# git checkout ../resources/lists-of-omitted-variables/list-of-omitted-variables-*.xlsx + +# The Diagnostic MIPs (CORDEX,DynVarMI, SIMIP & VIACSAB) have no self defined experiments + +# ll *.missing.xlsx|grep -v 5.5K diff --git a/ece2cmor/ece2cmor3/scripts/drq2file_def.py b/ece2cmor/ece2cmor3/scripts/drq2file_def.py new file mode 100755 index 0000000000000000000000000000000000000000..9d74210cdf83def8d47edddcc3f8446ad9c8e938 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/drq2file_def.py @@ -0,0 +1,274 @@ +#!/usr/bin/env python + +# Call this script e.g. by: +# drq2file_def --drq cmip6-data-request/cmip6-data-request-CMIP.DCPP.LS3MIP.ScenarioMIP.CORDEX.DynVarMIP.VIACSAB-ssp126-t1-p1/cmvme_cm.co.dc.dy.ls.sc.vi_ssp126_1_1.xlsx +# +# With this script it is possible to generate the EC-Earth3 NEMO control output files, i.e. +# the NEMO xml files for XIOS (the file_def files for OPA, LIM and PISCES) for one MIP experiment. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script is called by the script: +# genecec-per-mip-experiment.sh +# + + +import xml.etree.ElementTree as xmltree +import os.path # for checking file or directory existence with: os.path.isfile or os.path.isdir +import sys # for aborting: sys.exit +from os.path import expanduser +import argparse +import logging +import re # for regular expressions + +from ece2cmor3 import ece2cmorlib, taskloader, cmor_source, cmor_target, cmor_utils, components + +#basic_file_def_file_name = expanduser("~")+"/cmorize/ece2cmor3/ece2cmor3/resources/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml" +basic_file_def_file_name = "../resources/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml" +file_def_file_name = "./cmip6-file_def_nemo.xml" +file_def_opa_file_name = "./file_def_nemo-opa.xml" +file_def_lim_file_name = "./file_def_nemo-lim3.xml" +file_def_pisces_file_name = "./file_def_nemo-pisces.xml" +file_def_opa_file_name_compact = "./file_def_nemo-opa-compact.xml" +file_def_lim_file_name_compact = "./file_def_nemo-lim3-compact.xml" +file_def_pisces_file_name_compact = "./file_def_nemo-pisces-compact.xml" + +# Logging configuration +#logformat = "%(asctime)s %(levelname)s:%(name)s: %(message)s" +logformat = "%(levelname)s:%(name)s: %(message)s" +logdateformat = "%Y-%m-%d %H:%M:%S" +logging.basicConfig(level=logging.DEBUG, format=logformat, datefmt=logdateformat) + +# Logger construction +log = logging.getLogger(__name__) + + +# Main program +def main(): + parser = argparse.ArgumentParser(description="Create NEMO XIOS file_def input files for a given CMIP6 data request") + varsarg = parser.add_mutually_exclusive_group(required=True) + varsarg.add_argument("--vars", metavar="FILE", type=str, + help="File (json) containing cmor variables per EC-Earth component") + varsarg.add_argument("--drq", metavar="FILE", type=str, + help="File (json|f90 namelist|xlsx) containing cmor variables") + parser.add_argument("--tabdir", metavar="DIR", type=str, default=ece2cmorlib.table_dir_default, + help="Cmorization table directory") + parser.add_argument("--tabid", metavar="PREFIX", type=str, default=ece2cmorlib.prefix_default, + help="Cmorization table prefix string") + parser.add_argument("--compact", action="store_true", default=False, + help="Add the compact file_def files as well") + + args = parser.parse_args() + + # Echo the exact call of the script in the log messages: + logging.info('Running {:} with:\n\n {:} {:}\n'.format(parser.prog, parser.prog, ' '.join(sys.argv[1:]))) + # Print the values of all arguments in the log messages:: + logging.info('------ {} argument list: ------'.format(parser.prog)) + for arg_key, arg_value in vars(parser.parse_args()).items(): logging.info('--{:18} = {:}'.format(arg_key, arg_value)) + logging.info('------ end {} argument list ------\n'.format(parser.prog)) + + if args.vars is not None and not os.path.isfile(args.vars): + log.fatal('Error: Your variable list json file {:} cannot be found.'.format(args.vars)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + if args.drq is not None and not os.path.isfile(args.drq): + log.fatal('Error: Your data request file {:} cannot be found.'.format(args.drq)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + # Initialize ece2cmor: + ece2cmorlib.initialize_without_cmor(ece2cmorlib.conf_path_default, mode=ece2cmorlib.PRESERVE, tabledir=args.tabdir, + tableprefix=args.tabid) + + # Load only ocean variables as task targets: + try: + if getattr(args, "vars", None) is not None: + taskloader.load_tasks(args.vars, active_components=["nemo"]) + else: + taskloader.load_tasks_from_drq(args.drq, active_components=["nemo"], check_prefs=False) + except taskloader.SwapDrqAndVarListException as e: + log.error(e.message) + opt1, opt2 = "vars" if e.reverse else "drq", "drq" if e.reverse else "vars" + log.error('It seems you are using the --{:} option where you should use the --{:} option for this file'.format(opt1, opt2)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + for task in ece2cmorlib.tasks: + print(' {:15} {:9} {:15} {}'.format(task.target.variable, task.target.table, task.target.units, task.target.frequency)) + #print(task.target.__dict__) + + print(' Number of activated data request tasks is', len(ece2cmorlib.tasks)) + + + # READING THE BASIC FILE_DEF FILE: + if os.path.isfile(basic_file_def_file_name) == False: print(' The file ', basic_file_def_file_name, ' does not exist.'); sys.exit(' stop') + + tree_basic_file_def = xmltree.parse(basic_file_def_file_name) + root_basic_file_def = tree_basic_file_def.getroot() # This root has four indices: the 1st index refers to file_definition, the 2nd index refers to the file_group, the 3rd index refers to the file, the 4th index referers to the field elements + #field_elements_basic_file_def = root_basic_file_def[0][0][0][:] + + total_layer_equivalent= 0 + count = 0 + for field in root_basic_file_def.findall('.//field[@id]'): + for task in ece2cmorlib.tasks: + if field.attrib["name"] == task.target.variable and field.attrib["table"] == task.target.table: + field.attrib["enabled"] = "True" + count = count + 1 + #print(field.attrib["name"], field.attrib["table"]) + + # NEMO Volume estimate: estimate the number of 2D layers per variable in output due to the number of time steps per year: + if task.target.frequency == 'yr': + layer_number_due_to_freq = 1 + elif task.target.frequency == 'mon': + layer_number_due_to_freq = 12 + elif task.target.frequency == 'day': + layer_number_due_to_freq = 365 + elif task.target.frequency == '3hrPt': + layer_number_due_to_freq = 365.25 * 8. + elif task.target.frequency == 'fx': + layer_number_due_to_freq = 0 + else: + print('\n Unknown frequency in NEMO Volume estimate for: {:15} at table: {:9} with frequency: {}\n'.format(task.target.variable, task.target.table, task.target.frequency)) + layer_number_due_to_freq = 0 + + # NEMO Volume estimate: estimate the number vertical layers per variable: + zdim=getattr(task.target, "z_dims", []) + if len(zdim) == 0: + vertical_dim = 1 + else: + if zdim[0] == 'olevel': + vertical_dim = 75 + #elif zdim[0] == 'typesea': + #elif zdim[0] == 'depth100m': + #elif zdim[0] == 'depth0m': + else: + vertical_dim = 1 + + # NEMO Volume estimate: calculate the number of 2D layers in output due to the number of time steps & the number of vertical layers per year per variable: + layers_per_var_per_yr = layer_number_due_to_freq * vertical_dim + # NEMO Volume estimate: and for all variables together: + total_layer_equivalent = total_layer_equivalent + layers_per_var_per_yr + #print(' {:3} varname: {:15} freq: {:5} table: {:7} zdim: {:30} vertical dim: {:3} {:2} {:8} layers per var per yr: {:8}'.format(count, task.target.variable, task.target.frequency, task.target.table, getattr(task.target, "z_dims", []), vertical_dim, len(zdim), layer_number_due_to_freq, layers_per_var_per_yr )) + + # After the table attribute has been used to match with the data request, the table attribute is removed here because it is not a valid XIOS attribute: + field.attrib.pop('table', None) + + # Ordering the attributes of all elements (taking the alphabetic order which matches with the previous python2 ordering): + for elem in root_basic_file_def.iter(): + #print(' element (pre sorted order): {:}'.format(elem.attrib)) + attrib = elem.attrib + if len(attrib) > 1: + # Adjust the attribute order, in this case by a default sorting (i.e. alphabetic sorting): + attribs = sorted(attrib.items()) + attrib.clear() + attrib.update(attribs) + #print(' element (post sorted order): {:}'.format(elem.attrib)) + + # Write the NEMO XIOS file_def input files: + tree_basic_file_def.write(file_def_file_name) + + print('\n With a 2D layer equivalent of ', total_layer_equivalent, ' the NEMO Volume estimate for this CMIP6 data request is ', total_layer_equivalent * 0.43 / 1000.0, ' GB per year\n') + print(' The number of variables which is enabled in', file_def_file_name, ' is', count) + + + #volume_estimate = open('volume-estimate-nemo.txt','w') + #volume_estimate.write(' \nEC-Earth3 NEMO volume estimates of generated output:{}'.format('\n')) + #volume_estimate.write(' Volume estimate for the ORCA1L75 grid: {:6} GB/yr{}'.format(round(total_layer_equivalent * 0.43 / 1000.0, 1), '\n')) + #volume_estimate.write(' Volume estimate for the ORCA025L75 grid: {:6} GB/yr{}'.format(round(total_layer_equivalent * 5.76 / 1000.0, 1), '\n')) + #volume_estimate.write(' With {:8} horizontal data slices per year across the vertical and time dimension.{}'.format(int(total_layer_equivalent), '\n\n')) + #volume_estimate.close() + + hf = 1.2 # NEMO heuristic factor + volume_estimate = open('volume-estimate-nemo.txt','w') + volume_estimate.write('Heuristic volume estimate for the raw EC-Earth3 NEMO output on the ORCA1L75 grid: {:6} GB per year{}'.format(round((total_layer_equivalent * 0.43 / 1000.0) / hf, 1), '\n')) + volume_estimate.write('Heuristic volume estimate for the raw EC-Earth3 NEMO output on the ORCA025L75 grid: {:6} GB per year{}'.format(round((total_layer_equivalent * 5.76 / 1000.0) / hf, 1), '\n')) + volume_estimate.close() + + + # SPLIT THE FILE_DEF FILE IN THREE FILE_DEF FILES FOR OPA, LIM AND PISCES: + + # FILE_DEF FILE FOR OPA: + tree_opa = xmltree.parse(file_def_file_name) + root_opa = tree_opa.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + + for file_element in root_opa.findall('./file_group/file'): + # Get the model component info from this attribute by using a regular expression: + model_component = re.search(r'_(.+?)_', file_element.attrib["name_suffix"]).group(1) + if model_component == 'lim' or model_component == 'pisces': + #print(' Remove file for opa file_def:', file_element.attrib["id"], model_component) + # Remove this file element from its parent element the file_group element: + root_opa[0].remove(file_element) + + root_opa[0].attrib["id"] = "id_file_group_opa" + tree_opa.write(file_def_opa_file_name) + + + # FILE_DEF FILE FOR LIM: + tree_lim = xmltree.parse(file_def_file_name) + root_lim = tree_lim.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + + for file_element in root_lim.findall('./file_group/file'): + # Get the model component info from this attribute by using a regular expression: + model_component = re.search(r'_(.+?)_', file_element.attrib["name_suffix"]).group(1) + if model_component == 'opa' or model_component == 'pisces': + #print(' Remove file for lim file_def:', file_element.attrib["id"], model_component) + # Remove this file element from its parent element the file_group element: + root_lim[0].remove(file_element) + + root_lim[0].attrib["id"] = "id_file_group_lim" + tree_lim.write(file_def_lim_file_name) + + + # FILE_DEF FILE FOR PISCES: + tree_pisces = xmltree.parse(file_def_file_name) + root_pisces = tree_pisces.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + + for file_element in root_pisces.findall('./file_group/file'): + # Get the model component info from this attribute by using a regular expression: + model_component = re.search(r'_(.+?)_', file_element.attrib["name_suffix"]).group(1) + if model_component == 'opa' or model_component == 'lim': + #print(' Remove file for pisces file_def:', file_element.attrib["id"], model_component) + # Remove this file element from its parent element the file_group element: + root_pisces[0].remove(file_element) + + root_pisces[0].attrib["id"] = "id_file_group_pisces" + tree_pisces.write(file_def_pisces_file_name) + + # Finishing up + ece2cmorlib.finalize_without_cmor() + + + # PRODUCE FILE_DEF FILES FOR OPA, LIM AND PISCES WITH ONLY ENABLED VARIABLES: + + if args.compact: + # FILE_DEF FILE FOR OPA WITH ONLY ENABLED VARIABLES: + tree_opa_enabled_only = xmltree.parse(file_def_opa_file_name) + root_opa_enabled_only = tree_opa_enabled_only.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + + for file_element in root_opa_enabled_only.findall('./file_group/file'): + for field_element in file_element.findall('field[@enabled="False"]'): file_element.remove(field_element) + tree_opa_enabled_only.write(file_def_opa_file_name_compact) + + + # FILE_DEF FILE FOR LIM WITH ONLY ENABLED VARIABLES: + tree_lim_enabled_only = xmltree.parse(file_def_lim_file_name) + root_lim_enabled_only = tree_lim_enabled_only.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + + for file_element in root_lim_enabled_only.findall('./file_group/file'): + for field_element in file_element.findall('field[@enabled="False"]'): file_element.remove(field_element) + tree_lim_enabled_only.write(file_def_lim_file_name_compact) + + + # FILE_DEF FILE FOR PISCES WITH ONLY ENABLED VARIABLES: + tree_pisces_enabled_only = xmltree.parse(file_def_pisces_file_name) + root_pisces_enabled_only = tree_pisces_enabled_only.getroot() # This root has two indices: the 1st index refers to field_definition-element, the 2nd index refers to the field-elements + + for file_element in root_pisces_enabled_only.findall('./file_group/file'): + for field_element in file_element.findall('field[@enabled="False"]'): file_element.remove(field_element) + tree_pisces_enabled_only.write(file_def_pisces_file_name_compact) + + + + + +if __name__ == "__main__": + main() diff --git a/ece2cmor/ece2cmor3/scripts/drq2ins.py b/ece2cmor/ece2cmor3/scripts/drq2ins.py new file mode 100755 index 0000000000000000000000000000000000000000..1ed3a61645552e935f5e85a3298de861dd99430d --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/drq2ins.py @@ -0,0 +1,207 @@ +#!/usr/bin/env python + +# Call this script e.g. by: +# drq2ins --drq cmip6-data-request/cmip6-data-request-CMIP.DCPP.LS3MIP.PAMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-historical-t1-p1/cmvme_cm.co.dc.dy.ls.pa.rf.sc.si.vi.vo_historical_1_1.xlsx +# drq2ins --drq cmip6-data-request/cmip6-data-request-LS3MIP-land-hist-t1-p1/cmvme_LS3MIP_land-hist_1_1.xlsx +# +# With this script it is possible to generate the EC-Earth3 LPJ-GUESS control output files, i.e. +# the LPJ-GUESS instruction files (the .ins files) for one MIP experiment. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script is called by the script: +# genecec-per-mip-experiment.sh +# + + +import xml.etree.ElementTree as xmltree +import os.path # for checking file or directory existence with: os.path.isfile or os.path.isdir +import sys # for aborting: sys.exit +from os.path import expanduser +import argparse +import logging + +from ece2cmor3 import ece2cmorlib, taskloader, cmor_source, cmor_target, cmor_utils, components + + +# Logging configuration +#logformat = "%(asctime)s %(levelname)s:%(name)s: %(message)s" +logformat = "%(levelname)s:%(name)s: %(message)s" +logdateformat = "%Y-%m-%d %H:%M:%S" +logging.basicConfig(level=logging.DEBUG, format=logformat, datefmt=logdateformat) + +# Logger construction +log = logging.getLogger(__name__) + + +# Main program +def main(): + parser = argparse.ArgumentParser(description="Generate the LPJ-GUESS instruction files and estimate the volume of " + "the output from LPJ-GUESS for a given CMIP6 data request for EC-Earth3") + varsarg = parser.add_mutually_exclusive_group(required=True) + varsarg.add_argument("--vars", metavar="FILE", type=str, + help="File (json) containing cmor variables per EC-Earth component") + varsarg.add_argument("--drq", metavar="FILE", type=str, + help="File (json|f90 namelist|xlsx) containing cmor variables") + parser.add_argument("--tabdir", metavar="DIR", type=str, default=ece2cmorlib.table_dir_default, + help="Cmorization table directory") + parser.add_argument("--tabid", metavar="PREFIX", type=str, default=ece2cmorlib.prefix_default, + help="Cmorization table prefix string") + + args = parser.parse_args() + + # Echo the exact call of the script in the log messages: + logging.info('Running {:} with:\n\n {:} {:}\n'.format(parser.prog, parser.prog, ' '.join(sys.argv[1:]))) + # Print the values of all arguments in the log messages:: + logging.info('------ {} argument list: ------'.format(parser.prog)) + for arg_key, arg_value in vars(parser.parse_args()).items(): logging.info('--{:18} = {:}'.format(arg_key, arg_value)) + logging.info('------ end {} argument list ------\n'.format(parser.prog)) + + if args.vars is not None and not os.path.isfile(args.vars): + log.fatal('Error: Your variable list json file {:} cannot be found.'.format(args.vars)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + if args.drq is not None and not os.path.isfile(args.drq): + log.fatal('Error: Your data request file {:} cannot be found.'.format(args.drq)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + # Initialize ece2cmor: + ece2cmorlib.initialize_without_cmor(ece2cmorlib.conf_path_default, mode=ece2cmorlib.PRESERVE, tabledir=args.tabdir, + tableprefix=args.tabid) + + # Load only LPJ-GUESS variables as task targets: + try: + if getattr(args, "vars", None) is not None: + taskloader.load_tasks(args.vars, active_components=["lpjg"]) + else: + taskloader.load_tasks_from_drq(args.drq, active_components=["lpjg"], check_prefs=False) + # Here we load extra permanent tasks for LPJ-GUESS because the LPJ_GUESS community likes to output these variables at any time independent wheter they are requested by the data request: + taskloader.load_tasks_from_drq(os.path.join(os.path.dirname(__file__), "..", "resources", "permanent-tasks.json"), active_components=["lpjg"], check_prefs=False) + except taskloader.SwapDrqAndVarListException as e: + log.error(e.message) + opt1, opt2 = "vars" if e.reverse else "drq", "drq" if e.reverse else "vars" + log.error('It seems you are using the --{:} option where you should use the --{:} option for this file'.format(opt1, opt2)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + print('\n Number of activated data request tasks is', len(ece2cmorlib.tasks), '\n') + + # Remove Eday mrros (not available in LPJ-GUESS, see ec-earth issue 633-21) from the LPJG instruction file (see #708 & #445): + count = 0 + action_required = False + for task in ece2cmorlib.tasks: + if task.target.variable == 'mrros' and task.target.frequency == 'day': + list_nr_eday_mrros = count + action_required = True + count = count + 1 + if action_required: + ece2cmorlib.tasks.pop(list_nr_eday_mrros) + + instruction_file = open('lpjg_cmip6_output.ins','w') + + total_layer_equivalent= 0 + count = 0 + for task in ece2cmorlib.tasks: + count = count + 1 + print(' {:15} {:9} {:15} {}'.format(task.target.variable, task.target.table, task.target.units, task.target.frequency)) + + if task.target.frequency == 'yr': + instruction_file.write('file_{}_yearly "{}_yearly.out"{}'.format(task.target.variable, task.target.variable, '\n')) + elif task.target.frequency == 'mon': + instruction_file.write('file_{}_monthly "{}_monthly.out"{}'.format(task.target.variable, task.target.variable, '\n')) + elif task.target.frequency == 'day': + instruction_file.write('file_{}_daily "{}_daily.out"{}'.format(task.target.variable, task.target.variable, '\n')) + elif task.target.frequency == '3hr': + print(' LPJ-GUESS does not provide three hourly (3hr) output: ', task.target.variable, task.target.table, task.target.frequency) + elif task.target.frequency == '6hr': + print(' LPJ-GUESS does not provide six hourly (6hr) output: ', task.target.variable, task.target.table, task.target.frequency) + elif task.target.frequency == 'yrPt': + #print(' LPJ-GUESS does not provide yearly instantaneous (yrPt) output: ', task.target.variable, task.target.table, task.target.frequency) + instruction_file.write('file_{}_yearly "{}_yearly.out"{}'.format(task.target.variable, task.target.variable, '\n')) + elif task.target.frequency == '3hrPt': + print(' LPJ-GUESS does not provide three hourly instantaneous (3hrPt) output: ', task.target.variable, task.target.table, task.target.frequency) + elif task.target.frequency == 'fx': + #print(' LPJ-GUESS does not provide fx output', task.target.variable, task.target.table, task.target.frequency) + instruction_file.write('file_{}_once "{}_once.out"{}'.format(task.target.variable, task.target.variable, '\n')) + elif task.target.frequency == 'monC': + #print(' LPJ-GUESS does not provide monC output', task.target.variable, task.target.table, task.target.frequency) + instruction_file.write('file_{}_monthly_clim "{}_monthly_clim.out"{}'.format(task.target.variable, task.target.variable, '\n')) + elif task.target.frequency == 'subhrPt': + print(' LPJ-GUESS does not provide subhourly instantaneous (subhrPt) output: ', task.target.variable, task.target.table, task.target.frequency) + else: + print('\n Unknown frequency in creating the LPJG instruction file for: {:15} at table: {:9} with frequency: {}\n'.format(task.target.variable, task.target.table, task.target.frequency)) + + # LPJ-GUESS Volume estimate: estimate the number of 2D layers per variable in output due to the number of time steps per year: + if task.target.frequency == 'yr': + layer_number_due_to_freq = 1 + elif task.target.frequency == 'mon': + layer_number_due_to_freq = 12 + elif task.target.frequency == 'day': + layer_number_due_to_freq = 365 + elif task.target.frequency == '3hr': + layer_number_due_to_freq = 0 # LPJ-GUESS does not provide three hourly (3hr) output + elif task.target.frequency == '6hr': + layer_number_due_to_freq = 0 # LPJ-GUESS does not provide six hourly (6hr) output + elif task.target.frequency == 'yrPt': + #layer_number_due_to_freq = 0 # LPJ-GUESS does not provide yearly instantaneous (yrPt) output + layer_number_due_to_freq = 1 + elif task.target.frequency == '3hrPt': + layer_number_due_to_freq = 365.25 * 8. + elif task.target.frequency == 'fx': + layer_number_due_to_freq = 0 + elif task.target.frequency == 'monC': + layer_number_due_to_freq = 1./30. # Number of climate points: 1 per 30 year? + elif task.target.frequency == 'subhrPt': + #layer_number_due_to_freq = 365.25 * 12. # At least hourly, thus sofar under limit (Actually there should't be (sub) houry variables available?). + layer_number_due_to_freq = 0 # Because there won't be any subhourly output from LPJ-GUESS. + else: + print('\n Unknown frequency in LPJG Volume estimate for: {:15} at table: {:9} with frequency: {}\n'.format(task.target.variable, task.target.table, task.target.frequency)) + layer_number_due_to_freq = 0 + + # LPJ-GUESS Volume estimate: estimate the number vertical layers per variable: + zdim=getattr(task.target, "z_dims", []) + if len(zdim) == 0: + vertical_dim = 1 + else: + if zdim[0] == 'vegtype': + vertical_dim = 31 + elif zdim[0] == 'landuse': + vertical_dim = 4 + elif zdim[0] == 'sdepth': + vertical_dim = 2 + else: + vertical_dim = 1 + + # LPJ-GUESS Volume estimate: calculate the number of 2D layers in output due to the number of time steps & the number of vertical layers per year per variable: + layers_per_var_per_yr = layer_number_due_to_freq * vertical_dim + # LPJ-GUESS Volume estimate: and for all variables together: + total_layer_equivalent = total_layer_equivalent + layers_per_var_per_yr + #print(' {:3} varname: {:15} freq: {:5} table: {:7} zdim: {:30} vertical dim: {:3} {:2} {:8} layers per var per yr: {:8}'.format(count, task.target.variable, task.target.frequency, task.target.table, getattr(task.target, "z_dims", []), vertical_dim, len(zdim), layer_number_due_to_freq, layers_per_var_per_yr )) + + instruction_file.close() + + print('\n With a 2D layer equivalent of ', total_layer_equivalent, ' the LPJ-GUESS Volume estimate for this CMIP6 data request at T255 grid is ', total_layer_equivalent * 0.12 / 1000.0, ' GB per year\n') + print(' The number of variables which is available from LPJ-GUESS in EC-Erth3 for this experiment is', count) + + #volume_estimate = open('volume-estimate-lpj-guess.txt','w') + #volume_estimate.write(' \nEC-Earth3 LPJ-GUESS Volume estimates of generated output:{}'.format('\n')) + #volume_estimate.write(' Volume estimate for the LPJ-GUESS T255 grid: {} GB/yr{}'.format(total_layer_equivalent * 0.12 / 1000.0, '\n')) + #volume_estimate.write(' With {:8} horizontal data slices per year across the vertical and time dimension.{}'.format(int(total_layer_equivalent), '\n\n')) + #volume_estimate.close() + + hf = 1.0 # LPJG heuristic factor + volume_estimate = open('volume-estimate-lpj-guess.txt','w') + volume_estimate.write('Heuristic volume estimate for the raw EC-Earth3 LPJG output on the T255 grid: {:6} GB per year{}'.format(round((total_layer_equivalent * 0.12 / 1000.0) / hf, 1), '\n')) + volume_estimate.close() + + # Finishing up + ece2cmorlib.finalize_without_cmor() + + + # See #546: Add the variable fVegOther which is not part of the data request and has no cmor name, to the LPJ-GUESS instruction file: + with open("lpjg_cmip6_output.ins", "a") as instruction_file: + instruction_file.write('file_fVegOther_monthly "fVegOther_monthly.out"\n') + instruction_file.close() + +if __name__ == "__main__": + main() diff --git a/ece2cmor/ece2cmor3/scripts/drq2ppt.py b/ece2cmor/ece2cmor3/scripts/drq2ppt.py new file mode 100755 index 0000000000000000000000000000000000000000..cd97be0d878346d2feabddce5396f7a64ca224d9 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/drq2ppt.py @@ -0,0 +1,338 @@ +#!/usr/bin/env python + +# Call this script e.g. by: +# drq2ppt --drq cmip6-data-request/cmip6-data-request-CMIP.DCPP.LS3MIP.PAMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-historical-t1-p1/cmvme_cm.co.dc.dy.ls.pa.rf.sc.si.vi.vo_historical_1_1.xlsx +# or for the special "test all" case by: +# drq2ppt --allvars +# +# With this script it is possible to generate the EC-Earth3 IFS control output files, i.e. +# the IFS Fortran namelists (the ppt files) for one MIP experiment. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script is called by the script: +# genecec-per-mip-experiment.sh +# + +import sys +import os + +import argparse +import logging +import re + +import f90nml + +from ece2cmor3 import ece2cmorlib, taskloader, cmor_source, cmor_target, cmor_utils, components + +# Logging configuration +#logformat = "%(asctime)s %(levelname)s:%(name)s: %(message)s" +logformat = "%(levelname)s:%(name)s: %(message)s" +logdateformat = "%Y-%m-%d %H:%M:%S" +logging.basicConfig(level=logging.DEBUG, format=logformat, datefmt=logdateformat) + +# Logger construction +log = logging.getLogger(__name__) + + +# Determines the ifs output period for given task (in hours) +def get_output_freq(task): + if task.target.frequency == "fx": + return 0 + if task.target.frequency.startswith("subhr"): + log.warning("Variable %s in table %s: sub-hourly frequencies are not supported... Skipping variable" % + (task.target.variable, task.target.table)) + return -1 + regex = re.search(r"^[0-9]+hr*", task.target.frequency) + if regex: + return int(regex.group(0)[:-2]) + return get_sample_freq(task) + + +# Determines the ifs output frequency for daily/monthly variables. By default +# 2D variables are requested on 3-hourly basis and 3D variables on 6-hourly basis. +def get_sample_freq(task): + if any(c in cmor_source.ifs_source.grib_codes_3D for c in task.source.get_root_codes()): + return 6 + else: + return 3 + + +# Counts spectral and gridpoint messages in the given list +def count_spectral_codes(code_list): + return len(set([c for c in code_list if c in cmor_source.ifs_source.grib_codes_sh])), \ + len(set([c for c in code_list if c not in cmor_source.ifs_source.grib_codes_sh])) + + +# Takes the union of two namelists +def join_namelists(nml1, nml2): + result = {"CFPFMT": "MODEL"} + for key in ["MFP2DF", "MFPPHY", "MFP3DFS", "MFP3DFP", "MFP3DFH"]: + codes = sorted(list(set(nml1.get(key, [])) | set(nml2.get(key, [])))) + numcodes = len(codes) + numkey_chars = list(key) + numkey_chars[0] = 'N' + numkey = "".join(numkey_chars) + if numcodes > 0: + result[key] = codes + result[numkey] = numcodes + for key in ["RFP3P", "RFP3H"]: + levels = sorted(list(set(nml1.get(key, [])) | set(nml2.get(key, [])))) + if key == "RFP3P": + levels = list(reversed(levels)) + if len(levels) > 0: + result[key] = levels + if "NRFP3S" in list(nml1.keys()) or "NRFP3S" in list(nml2.keys()): + # To include all model levels use magic number -99. Opposite, by using the magic number -1 the variable is not saved at any model level: + result["NRFP3S"] = -1 + return result + + +# Writes a set of input IFS files for the requested tasks +def write_ppt_files(tasks): + freqgroups = cmor_utils.group(tasks, get_output_freq) + # Fix for issue 313, make sure to always generate 6-hourly ppt: + if list(freqgroups.keys()) == [3]: + freqgroups[6] = [] + if -1 in list(freqgroups.keys()): + freqgroups.pop(-1) + freqs_to_remove = [] + for freq1 in freqgroups: + if freq1 <= 0: + continue + for freq2 in freqgroups: + if freq2 > freq1: + if freq2 % freq1 == 0: + freqgroups[freq2] = freqgroups[freq1] + freqgroups[freq2] + else: + log.error("Frequency %d is not a divisor of frequency %d: this is not supported, " + "removing the former" % (freq1, freq2)) + freqs_to_remove.append(freq1) + for freq in set(freqs_to_remove): + freqgroups.pop(freq, None) + num_slices_tot_sp, num_slices_tot_gp, num_blocks_tot_sp, num_blocks_tot_gp = 0, 0, 0, 0 + min_freq = max(freqgroups.keys()) + prev_freq = 0 + fx_namelist = {} + for freq in sorted(freqgroups.keys()): + mfp2df, mfpphy, mfp3dfs, mfp3dfp, mfp3dfh = [], [], [], [], [] + num_slices_sp, num_slices_gp, num_blocks_sp, num_blocks_gp = 0, 0, 0, 0 + alevs, plevs, hlevs = [], [], [] + for task in freqgroups[freq]: + zaxis, levs = cmor_target.get_z_axis(task.target) + root_codes = task.source.get_root_codes() + if not zaxis: + for code in root_codes: + if freq > 0 and code in cmor_source.ifs_source.grib_codes_fx: + continue + if code in cmor_source.ifs_source.grib_codes_3D: + # Exception for orog and areacella, depend only on lowest level of 129: + if task.target.variable in ["orog", "areacella"] and code == cmor_source.grib_code(129): + mfp2df.append(code) + else: + log.warning("3D grib code %s used in 2D cmor-target %s..." + "assuming this is on model levels" % (str(code), task.target.variable)) + mfp3dfs.append(code) + elif code in cmor_source.ifs_source.grib_codes_2D_dyn: + log.info('Adding grib code {:>7} to MFP2DF {:1}hr ppt file in table {:9} for variable {:}'.format(str(code), freq, task.target.table, task.target.variable)) + mfp2df.append(code) + elif code in cmor_source.ifs_source.grib_codes_2D_phy: + log.info('Adding grib code {:>7} to MFPPHY {:1}hr ppt file in table {:9} for variable {:}'.format(str(code), freq, task.target.table, task.target.variable)) + mfpphy.append(code) + else: + log.error("Unknown 2D IFS grib code %s skipped" % str(code)) + else: + for code in root_codes: + if freq > 0 and code in cmor_source.ifs_source.grib_codes_fx: + continue + if code in cmor_source.ifs_source.grib_codes_3D: + if zaxis in cmor_target.model_axes: + log.info('Adding grib code {:>7} to MFP3DFS {:1}hr ppt file in table {:9} for variable {:}'.format(str(code), freq, task.target.table, task.target.variable)) + mfp3dfs.append(code) + alevs.extend(levs) + elif zaxis in cmor_target.pressure_axes: + log.info('Adding grib code {:>7} to MFP3DFP {:1}hr ppt file in table {:9} for variable {:}'.format(str(code), freq, task.target.table, task.target.variable)) + mfp3dfp.append(code) + plevs.extend(levs) + elif zaxis in cmor_target.height_axes: + log.info('Adding grib code {:>7} to MFP3DFH {:1}hr ppt file in table {:9} for variable {:}'.format(str(code), freq, task.target.table, task.target.variable)) + mfp3dfh.append(code) + hlevs.extend(levs) + else: + log.error("Axis type %s unknown, adding grib code %s" + "to model level variables" % (zaxis, str(code))) + elif code in cmor_source.ifs_source.grib_codes_2D_dyn: + mfp2df.append(code) + elif code in cmor_source.ifs_source.grib_codes_2D_phy: + mfpphy.append(code) + # case for PEXTRA tendencies is missing + else: + log.error("Unknown 3D IFS grib code %s skipped" % str(code)) + # Always add the geopotential, recommended by ECMWF + if cmor_source.grib_code(129) not in mfp3dfs: + mfp2df.append(cmor_source.grib_code(129)) + # Always add the surface pressure, recommended by ECMWF + mfpphy.append(cmor_source.grib_code(134)) + # Always add the logarithm of surface pressure, recommended by ECMWF + mfp2df.append(cmor_source.grib_code(152)) + nfp2dfsp, nfp2dfgp = count_spectral_codes(mfp2df) + mfp2df = sorted(list([c.var_id if c.tab_id == 128 else c.__hash__() for c in set(mfp2df)])) + nfpphysp, nfpphygp = count_spectral_codes(mfpphy) + mfpphy = sorted(list([c.var_id if c.tab_id == 128 else c.__hash__() for c in set(mfpphy)])) + nfp3dfssp, nfp3dfsgp = count_spectral_codes(mfp3dfs) + mfp3dfs = sorted(list([c.var_id if c.tab_id == 128 else c.__hash__() for c in set(mfp3dfs)])) + nfp3dfpsp, nfp3dfpgp = count_spectral_codes(mfp3dfp) + mfp3dfp = sorted(list([c.var_id if c.tab_id == 128 else c.__hash__() for c in set(mfp3dfp)])) + nfp3dfhsp, nfp3dfhgp = count_spectral_codes(mfp3dfh) + mfp3dfh = sorted(list([c.var_id if c.tab_id == 128 else c.__hash__() for c in set(mfp3dfh)])) + plevs = sorted(list(set([float(s) for s in plevs])))[::-1] + hlevs = sorted(list(set([float(s) for s in hlevs]))) + namelist = {"CFPFMT": "MODEL"} + if any(mfp2df): + namelist["NFP2DF"] = len(mfp2df) + namelist["MFP2DF"] = mfp2df + num_slices_sp += nfp2dfsp + num_slices_gp += nfp2dfgp + if any(mfpphy): + namelist["NFPPHY"] = len(mfpphy) + namelist["MFPPHY"] = mfpphy + num_slices_sp += nfpphysp + num_slices_gp += nfpphygp + if any(mfp3dfs): + namelist["NFP3DFS"] = len(mfp3dfs) + namelist["MFP3DFS"] = mfp3dfs + # To include all model levels use magic number -99. Opposite, by using the magic number -1 the variable is not saved at any model level: + namelist["NRFP3S"] = -1 + num_blocks_sp += nfp3dfssp + num_blocks_gp += nfp3dfsgp + if any(mfp3dfp): + namelist["NFP3DFP"] = len(mfp3dfp) + namelist["MFP3DFP"] = mfp3dfp + namelist["RFP3P"] = plevs + num_slices_sp += (nfp3dfpsp * len(plevs)) + num_slices_gp += (nfp3dfpgp * len(plevs)) + if any(mfp3dfh): + namelist["NFP3DFH"] = len(mfp3dfh) + namelist["MFP3DFH"] = mfp3dfh + namelist["RFP3H"] = hlevs + num_slices_sp += (nfp3dfhsp * len(hlevs)) + num_slices_gp += (nfp3dfhgp * len(hlevs)) + num_slices_tot_sp = num_slices_sp if prev_freq == 0 else (num_slices_sp + ((freq // prev_freq) - 1) * num_slices_tot_sp) + num_slices_tot_gp = num_slices_gp if prev_freq == 0 else (num_slices_gp + ((freq // prev_freq) - 1) * num_slices_tot_gp) + num_blocks_tot_sp = num_blocks_sp if prev_freq == 0 else (num_blocks_sp + ((freq // prev_freq) - 1) * num_blocks_tot_sp) + num_blocks_tot_gp = num_blocks_gp if prev_freq == 0 else (num_blocks_gp + ((freq // prev_freq) - 1) * num_blocks_tot_gp) + prev_freq = freq + nml = f90nml.Namelist({"NAMFPC": namelist}) + nml.uppercase, nml.end_comma = True, True + if freq > 0: + f90nml.write(nml, "pptdddddd%04d" % (100 * freq,)) + if freq == 0: + fx_namelist = namelist + if freq == min_freq: + # Always add orography and land mask for lowest frequency ppt + mfpphy.extend([129, 172, 43]) + mfpphy = sorted(list(set(mfpphy))) + namelist["MFPPHY"] = mfpphy + namelist["NFPPHY"] = len(mfpphy) + nml = f90nml.Namelist({"NAMFPC": join_namelists(namelist, fx_namelist)}) + nml.uppercase, nml.end_comma = True, True + # Write initial state ppt + f90nml.write(nml, "ppt0000000000") + average_hours_per_month = 730 + slices_per_month_sp = (average_hours_per_month * num_slices_tot_sp) // prev_freq + slices_per_month_gp = (average_hours_per_month * num_slices_tot_gp) // prev_freq + blocks_per_month_sp = (average_hours_per_month * num_blocks_tot_sp) // prev_freq + blocks_per_month_gp = (average_hours_per_month * num_blocks_tot_gp) // prev_freq + num_layers = 91 + log.info('-----------------------------------------') + log.info('EC-Earth IFS output volume estimates: ') + log.info('-----------------------------------------') + log.info(' spectral GRIB messages p/m: {:>7}'.format(slices_per_month_sp + num_layers * blocks_per_month_sp)) + log.info(' gridpoint GRIB messages p/m: {:>7}'.format(slices_per_month_gp + num_layers * blocks_per_month_gp)) + log.info('-----------------------------------------') + log.info(' T255L91 T511L91 ') + vol255 = (slices_per_month_sp + num_layers * blocks_per_month_sp) * 0.133 / 1000. +\ + (slices_per_month_gp + num_layers * blocks_per_month_gp) * 0.180 / 1000. + vol511 = (slices_per_month_sp + num_layers * blocks_per_month_sp) * 0.503 / 1000. +\ + (slices_per_month_gp + num_layers * blocks_per_month_gp) * 0.698 / 1000. + log.info(' {:7.2f} GB/yr {:7.2f} GB/yr '.format (12*vol255, 12*vol511)) + log.info('-----------------------------------------') + + + + #volume_estimate = open('volume-estimate-ifs.txt','w') + #volume_estimate.write(' \nEC-Earth3 IFS volume estimates of generated output:{}'.format('\n')) + #volume_estimate.write(' Volume estimate of the spectral + gridpoint GRIB files for T255L91 grid: {} GB/yr{}'.format(12*vol255, '\n')) + #volume_estimate.write(' Volume estimate of the spectral + gridpoint GRIB files for T511L91 grid: {} GB/yr{}'.format(12*vol511, '\n\n')) + #volume_estimate.write(' Number of spectral GRIB messages per month: {}{}'.format(slices_per_month_sp + num_layers * blocks_per_month_sp, '\n')) + #volume_estimate.write(' Number of gridpoint GRIB messages per month: {}{}'.format(slices_per_month_gp + num_layers * blocks_per_month_gp, '\n\n')) + #volume_estimate.close() + + hf = 3.0 # IFS heuristic factor + volume_estimate = open('volume-estimate-ifs.txt','w') + volume_estimate.write('{}'.format('\n\n\n')) + volume_estimate.write('Heuristic volume estimate for the raw EC-Earth3 IFS output on the T255L91 grid: {:6} GB per year{}'.format(round((12*vol255) / hf, 1), '\n')) + volume_estimate.write('Heuristic volume estimate for the raw EC-Earth3 IFS output on the T511L91 grid: {:6} GB per year{}'.format(round((12*vol511) / hf, 1), '\n')) + volume_estimate.close() + + +# Main program +def main(): + parser = argparse.ArgumentParser(description="Create IFS ppt files for given data request") + varsarg = parser.add_mutually_exclusive_group(required=True) + varsarg.add_argument("--vars", metavar="FILE", type=str, + help="File (json) containing cmor variables per EC-Earth component") + varsarg.add_argument("--drq", metavar="FILE", type=str, + help="File (json|f90 namelist|xlsx) containing cmor variables") + varsarg.add_argument("--allvars", action="store_true", default=False, + help="Read all possible variables from CMOR tables") + parser.add_argument("--tabdir", metavar="DIR", type=str, default=ece2cmorlib.table_dir_default, + help="Cmorization table directory") + parser.add_argument("--tabid", metavar="PREFIX", type=str, default=ece2cmorlib.prefix_default, + help="Cmorization table prefix string") + + args = parser.parse_args() + + # Echo the exact call of the script in the log messages: + logging.info('Running {:} with:\n\n {:} {:}\n'.format(parser.prog, parser.prog, ' '.join(sys.argv[1:]))) + # Print the values of all arguments in the log messages:: + logging.info('------ {} argument list: ------'.format(parser.prog)) + for arg_key, arg_value in vars(parser.parse_args()).items(): logging.info('--{:18} = {:}'.format(arg_key, arg_value)) + logging.info('------ end {} argument list ------\n'.format(parser.prog)) + + if args.vars is not None and not os.path.isfile(args.vars): + log.fatal('Error: Your variable list json file {:} cannot be found.'.format(args.vars)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + if args.drq is not None and not os.path.isfile(args.drq): + log.fatal('Error: Your data request file {:} cannot be found.'.format(args.drq)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + # Initialize ece2cmor: + ece2cmorlib.initialize_without_cmor(ece2cmorlib.conf_path_default, mode=ece2cmorlib.PRESERVE, tabledir=args.tabdir, + tableprefix=args.tabid) + + # Load only atmosphere variables as task targets: + try: + if getattr(args, "vars", None) is not None: + taskloader.load_tasks(args.vars, active_components=["ifs"]) + elif getattr(args, "allvars", False): + taskloader.load_tasks_from_drq("allvars", active_components=["ifs"], check_prefs=False) + else: + taskloader.load_tasks_from_drq(args.drq, active_components=["ifs"], check_prefs=False) + except taskloader.SwapDrqAndVarListException as e: + log.error(e.message) + opt1, opt2 = "vars" if e.reverse else "drq", "drq" if e.reverse else "vars" + log.error('It seems you are using the --{:} option where you should use the --{:} option for this file'.format(opt1, opt2)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + # Write the IFS input files + write_ppt_files(ece2cmorlib.tasks) + + # Finishing up + ece2cmorlib.finalize_without_cmor() + + +if __name__ == "__main__": + main() diff --git a/ece2cmor/ece2cmor3/scripts/drq2varlist.py b/ece2cmor/ece2cmor3/scripts/drq2varlist.py new file mode 100755 index 0000000000000000000000000000000000000000..e7b5cae8f4fce7757d21c2deb1a3054089170f46 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/drq2varlist.py @@ -0,0 +1,150 @@ +#!/usr/bin/env python + +# Call this script e.g. by: +# drq2varlist --drq cmip6-data-request/cmip6-data-request-CMIP.DCPP.LS3MIP.PAMIP.RFMIP.ScenarioMIP.VolMIP.CORDEX.DynVarMIP.SIMIP.VIACSAB-historical-t1-p1/cmvme_cm.co.dc.dy.ls.pa.rf.sc.si.vi.vo_historical_1_1.xlsx --ececonf EC-EARTH-AOGCM +# drq2varlist --drq ../resources/test-data-request/drqlist-nemo-all.json --ececonf dummy +# drq2varlist --drq cmip6-data-request/cmip6-data-request-C4MIP.CDRMIP.CMIP.LUMIP.OMIP.ScenarioMIP-historical-t1-p1/cmvme_c4.cd.cm.lu.om.sc_historical_1_1.xlsx --ececonf EC-EARTH-CC +# or for the special "test all" case by: +# drq2varlist --allvars --ececonf EC-EARTH-AOGCM --varlist ece-cmip6-data-request-varlist-all-EC-EARTH-AOGCM.json +# drq2varlist --allvars --ececonf EC-EARTH-CC --varlist ece-cmip6-data-request-varlist-all-EC-EARTH-CC.json +# +# This script converts the drq produced xlsx cmip6 data request file to an ec-earth json cmip6 data request file. In +# the created ec-earth cmip6 data request json file the ec-earth ignored fields are omitted and the preferences are +# applied based on the EC-Earth3 model configuration which is taken into consideration. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script is called by the script: +# genecec-per-mip-experiment.sh +# + +import os +import sys + +import argparse +import logging +import json + +from ece2cmor3 import ece2cmorlib, components, taskloader, cmor_utils + +# Logging configuration +#logformat = "%(asctime)s %(levelname)s:%(name)s: %(message)s" +logformat = "%(levelname)s:%(name)s: %(message)s" +logdateformat = "%Y-%m-%d %H:%M:%S" +logging.basicConfig(level=logging.DEBUG, format=logformat, datefmt=logdateformat) +log = logging.getLogger(__name__) + + +def main(): + formatter = lambda prog: argparse.ArgumentDefaultsHelpFormatter(prog, max_help_position=37) + parser = argparse.ArgumentParser(description="Create component-specified varlist json for given data request", formatter_class=formatter) + required = parser.add_argument_group("required arguments") + varsarg = required.add_mutually_exclusive_group(required=True) + varsarg.add_argument("--drq", metavar="FILE", type=str, + help="File (xlsx|json) containing requested cmor variables (Required, unless --allvars is used)") + varsarg.add_argument("--allvars", action="store_true", default=False, + help="Read all possible variables from CMOR tables (Required, unless --drq is used)") + parser.add_argument("--ececonf", metavar='|'.join(list(components.ece_configs.keys())), type=str, + help="EC-Earth configuration") + parser.add_argument("--varlist", "-o", metavar="FILE.json", type=str, default="ece-cmip6-data-request-varlist.json", + help="Output file name") + parser.add_argument("--tabdir", metavar="DIR", type=str, default=ece2cmorlib.table_dir_default, + help="Cmorization table directory") + parser.add_argument("--tabid", metavar="PREFIX", type=str, default=ece2cmorlib.prefix_default, + help="Cmorization table prefix string") + + args = parser.parse_args() + + # Echo the exact call of the script in the log messages: + logging.info('Running {:} with:\n\n {:} {:}\n'.format(parser.prog, parser.prog, ' '.join(sys.argv[1:]))) + # Print the values of all arguments in the log messages:: + logging.info('------ {} argument list: ------'.format(parser.prog)) + for arg_key, arg_value in vars(parser.parse_args()).items(): logging.info('--{:18} = {:}'.format(arg_key, arg_value)) + logging.info('------ end {} argument list ------\n'.format(parser.prog)) + + if not args.allvars and not os.path.isfile(args.drq): + log.fatal('Error: Your data request file {:} cannot be found.'.format(args.drq)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + # Initialize ece2cmor: + ece2cmorlib.initialize_without_cmor(tabledir=args.tabdir, tableprefix=args.tabid) + + try: + if getattr(args, "allvars", False): + matches, omitted = taskloader.load_drq("allvars", config=args.ececonf, check_prefs=True) + else: + matches, omitted = taskloader.load_drq(args.drq, config=args.ececonf, check_prefs=True) + # Here we load extra permanent tasks for LPJ-GUESS because the LPJ_GUESS community likes to output these variables at any time independent wheter they are requested by the data request: + if args.ececonf in ["EC-EARTH-CC", "EC-EARTH-Veg", "EC-EARTH-Veg-LR"]: + matches_permanent, omitted_permanent = taskloader.load_drq(os.path.join(os.path.dirname(__file__), "..", "resources", "permanent-tasks.json"), config=args.ececonf, check_prefs=True) + for model, targetlist in list(matches_permanent.items()): + if model in matches: + for target in targetlist: + if target not in matches[model]: + matches[model].append(target) + else: + matches[model] = targetlist + except taskloader.SwapDrqAndVarListException as e: + log.error(e.message) + opt1, opt2 = "vars" if e.reverse else "drq", "drq" if e.reverse else "vars" + log.error('It seems you are using the --{:} option where you should use the --{:} option for this file'.format(opt1, opt2)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + result = {} + for model, targetlist in list(matches.items()): + result[model] = {} + for target in targetlist: + table = target.table + + # Taking off several variables from the json data request files: + skip_case = False + if target.variable in ['intdoc']: + # See issue #521: + log.info(" Variable {:6} {:17} is listed in the omit list of drq2varlist and therefore skipped. See https://github.com/EC-Earth/ece2cmor3/issues/521".format(target.table, target.variable)) + skip_case = True + if target.variable in ['rlntds', 'hfibthermds', 'hflso', 'agessc', 'ficeberg', 'hfsso', 'hfcorr', 'wfcorr', 'nwdFracLut']: + # See issue #498 & #469: + log.info(" Variable {:6} {:17} is listed in the omit list of drq2varlist and therefore skipped. See https://github.com/EC-Earth/ece2cmor3/issues/498 & https://github.com/EC-Earth/ece2cmor3/issues/469".format(target.table, target.variable)) + skip_case = True + if target.variable in ['hfibthermds2d', 'ficeberg2d', 'fgcfc12']: + # See issue #516 and #609-36 & #609-37 at ece-portal: + log.info(" Variable {:6} {:17} is listed in the omit list of drq2varlist and therefore skipped. See https://github.com/EC-Earth/ece2cmor3/issues/516 & https://dev.ec-earth.org/issues/609#note-36".format(target.table, target.variable)) + skip_case = True + if target.variable in ['cfc11', 'fgsf6']: + # See issue #504: + log.info(" Variable {:6} {:17} is listed in the omit list of drq2varlist and therefore skipped. See https://github.com/EC-Earth/ece2cmor3/issues/504".format(target.table, target.variable)) + skip_case = True + if table in ['Oyr'] and target.variable in ['cfc11', 'ocontempdiff', 'ocontemppadvect', 'ocontemppmdiff', 'ocontemprmadvect', 'ocontemptend', 'osaltdiff', 'osaltpadvect', 'osaltpmdiff', 'osaltrmadvect', 'osalttend']: + # See issue #493 & #542: + log.info(" Variable {:6} {:17} is listed in the omit list of drq2varlist and therefore skipped. See https://github.com/EC-Earth/ece2cmor3/issues/493 & https://github.com/EC-Earth/ece2cmor3/issues/542".format(target.table, target.variable)) + skip_case = True + if getattr(args, "allvars", True): + if table in ['6hrPlevPt'] and target.variable in ['ta27', 'hus27']: + # See issue #542: + # Conflicting combinations (skip the 2nd one, an arbitrary choice): + # 6hrPlevPt: ta7h, ta27 + # 6hrPlevPt: hus7h, hus27 + log.info(" Variable {:6} {:17} is listed in the omit list of drq2varlist and therefore skipped. See https://github.com/EC-Earth/ece2cmor3/issues/542".format(target.table, target.variable)) + skip_case = True + if table in ['Emon'] and target.variable in ['hus27', 'va27', 'ua27']: + # See issue #542: + # Emon: hus, hus27 + # Emon: va, va27 + # Emon: ua, ua27 + log.info(" Variable {:6} {:17} is listed in the omit list of drq2varlist and therefore skipped. See https://github.com/EC-Earth/ece2cmor3/issues/542".format(target.table, target.variable)) + skip_case = True + + if skip_case is False: + if table in result[model]: + result[model][table].append(target.variable) + else: + result[model][table] = [target.variable] + with open(args.varlist, 'w') as ofile: + json.dump(result, ofile, indent=4, separators=(',', ': '), sort_keys=True) + ofile.write('\n') # Add newline at the end of the json file because the python json package doesn't do this. + ofile.close() + + +if __name__ == "__main__": + main() diff --git a/ece2cmor/ece2cmor3/scripts/estimate_tm5_volume.py b/ece2cmor/ece2cmor3/scripts/estimate_tm5_volume.py new file mode 100755 index 0000000000000000000000000000000000000000..06f515be0eea55d65536658a8a7477d2add954eb --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/estimate_tm5_volume.py @@ -0,0 +1,183 @@ +#!/usr/bin/env python + +# Call this script e.g. by: +# estimate_tm5_volume --drq cmip6-data-request/cmip6-data-request-AerChemMIP-hist-1950HC-t1-p1/cmvme_ae.cm_hist-1950HC_1_1.xlsx +# estimate_tm5_volume --drq cmip6-data-request/cmip6-data-request-AerChemMIP-hist-1950HC-t1-p1/cmvme_AerChemMIP_hist-1950HC_1_1.xlsx +# +# This script estimates the volume of the output from TM5 for one MIP experiment. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script is called by the script: +# genecec-per-mip-experiment.sh +# + +import os +import sys + +import argparse +import logging + +from ece2cmor3 import ece2cmorlib, taskloader, cmor_utils + +# Logging configuration +#logformat = "%(asctime)s %(levelname)s:%(name)s: %(message)s" +logformat = "%(levelname)s:%(name)s: %(message)s" +logdateformat = "%Y-%m-%d %H:%M:%S" +logging.basicConfig(level=logging.DEBUG, format=logformat, datefmt=logdateformat) + +# Logger construction +log = logging.getLogger(__name__) + + +# Main program +def main(): + parser = argparse.ArgumentParser(description="Estimates the volume of the output from TM5 for a given CMIP6 data " + "request for EC-Earth3") + varsarg = parser.add_mutually_exclusive_group(required=True) + varsarg.add_argument("--vars", metavar="FILE", type=str, + help="File (json) containing cmor variables per EC-Earth component") + varsarg.add_argument("--drq", metavar="FILE", type=str, + help="File (json|f90 namelist|xlsx) containing cmor variables") + parser.add_argument("--tabdir", metavar="DIR", type=str, default=ece2cmorlib.table_dir_default, + help="Cmorization table directory") + parser.add_argument("--tabid", metavar="PREFIX", type=str, default=ece2cmorlib.prefix_default, + help="Cmorization table prefix string") + parser.add_argument("--short", action="store_true", default=False, help="Leave out the tasklist") + + args = parser.parse_args() + + # Echo the exact call of the script in the log messages: + logging.info('Running {:} with:\n\n {:} {:}\n'.format(parser.prog, parser.prog, ' '.join(sys.argv[1:]))) + # Print the values of all arguments in the log messages:: + logging.info('------ {} argument list: ------'.format(parser.prog)) + for arg_key, arg_value in vars(parser.parse_args()).items(): logging.info('--{:18} = {:}'.format(arg_key, arg_value)) + logging.info('------ end {} argument list ------\n'.format(parser.prog)) + + if args.vars is not None and not os.path.isfile(args.vars): + log.fatal('Error: Your variable list json file {:} cannot be found.'.format(args.vars)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + if args.drq is not None and not os.path.isfile(args.drq): + log.fatal('Error: Your data request file {:} cannot be found.'.format(args.drq)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + # Initialize ece2cmor: + ece2cmorlib.initialize_without_cmor(ece2cmorlib.conf_path_default, mode=ece2cmorlib.PRESERVE, tabledir=args.tabdir, + tableprefix=args.tabid) + + # Load only TM5 variables as task targets: + try: + if getattr(args, "vars", None) is not None: + taskloader.load_tasks(args.vars, active_components=["tm5"]) + else: + taskloader.load_tasks_from_drq(args.drq, active_components=["tm5"], check_prefs=False) + except taskloader.SwapDrqAndVarListException as e: + log.error(e.message) + opt1, opt2 = "vars" if e.reverse else "drq", "drq" if e.reverse else "vars" + log.error('It seems you are using the --{:} option where you should use the --{:} option for this file'.format(opt1, opt2)) + sys.exit('ERROR: Exiting {:}'.format(parser.prog)) + + for task in ece2cmorlib.tasks: + print(' {:15} {:9} {:15} {}'.format(task.target.variable, task.target.table, task.target.units, task.target.frequency)) + #print(task.target.__dict__) + + print(' Number of activated data request tasks is', len(ece2cmorlib.tasks)) + + + total_layer_equivalent = 0 + count = 0 + per_freq = {} + task_per_freq = {} + for task in ece2cmorlib.tasks: + count = count + 1 + if not getattr(args,'short',False): + print(' {:15} {:9} {:15} {}'.format(task.target.variable, task.target.table, task.target.units, task.target.frequency)) + + if task.target.table not in list(task_per_freq.keys()): + task_per_freq[task.target.table] = 0 + if task.target.table not in list(per_freq.keys()): + per_freq[task.target.table] = 0 + + # TM5 Volume estimate: estimate the number of 2D layers per variable in output due to the number of time steps per year: + if task.target.frequency == 'yr': + layer_number_due_to_freq = 1. + elif task.target.frequency == 'mon': + layer_number_due_to_freq = 12. + elif task.target.frequency == 'day': + layer_number_due_to_freq = 365. + elif task.target.frequency == '3hrPt': + layer_number_due_to_freq = 0. + elif task.target.frequency == '6hrPt': + layer_number_due_to_freq = 365.25 * 4. + elif task.target.frequency == '1hr': + layer_number_due_to_freq = 365.25 * 24. + elif task.target.frequency == 'fx': + layer_number_due_to_freq = 0. + elif task.target.frequency == 'monC': + layer_number_due_to_freq = 1.0 / 30.0 # Number of climate points: 1 per 30 year? + elif task.target.frequency == 'subhrPt': + #layer_number_due_to_freq = 365.25 * 12. # At least hourly, thus sofar under limit (Actually there should't be (sub) houry variables available?). + layer_number_due_to_freq = 0. # Because there won't be any subhourly output from TM5. + else: + print('\n Unknown frequency in TM5 Volume estimate for: {:15} at table: {:9} with frequency: {}\n'.format(task.target.variable, task.target.table, task.target.frequency)) + layer_number_due_to_freq = 0. + + if task.target.table == 'Emon': + layer_number_due_to_freq = 0. + + # TM5 Volume estimate: estimate the number vertical layers per variable: + zdim=getattr(task.target, "z_dims", []) + if len(zdim) == 0: + vertical_dim = 1. + else: + if zdim[0] == 'alevel': + vertical_dim = 35. #34 + 1 for ps + elif zdim[0] == 'alevhalf': + vertical_dim = 36. # 34 + 1 for ps + elif zdim[0] == 'plev39': + vertical_dim = 39. + elif zdim[0] == 'plev19': + vertical_dim = 19. + else: + vertical_dim = 1. + + task_per_freq[task.target.table] = task_per_freq[task.target.table]+1 + # TM5 Volume estimate: calculate the number of 2D layers in output due to the number of time steps & the number of vertical layers per year per variable: + layers_per_var_per_yr = layer_number_due_to_freq * vertical_dim + if task.target.table =='AERmonZ': + per_freq[task.target.table] = per_freq[task.target.table] + layers_per_var_per_yr / 120.0 + # TM5 Volume estimate: and for all variables together: + total_layer_equivalent = total_layer_equivalent + layers_per_var_per_yr / 120.0 + else: + per_freq[task.target.table] = per_freq[task.target.table] + layers_per_var_per_yr + # TM5 Volume estimate: and for all variables together: + total_layer_equivalent = total_layer_equivalent + layers_per_var_per_yr + #print(' {:3} varname: {:15} freq: {:5} table: {:7} zdim: {:30} vertical dim: {:3} {:2} {:8} layers per var per yr: {:8}'.format(count, task.target.variable, task.target.frequency, task.target.table, getattr(task.target, "z_dims", []), vertical_dim, len(zdim), layer_number_due_to_freq, layers_per_var_per_yr )) + + print('\n With a 2D layer equivalent of ', total_layer_equivalent, ' the TM5 Volume estimate for this CMIP6 data request is ', total_layer_equivalent * 0.04 / 1000.0, ' GB per year\n') + print(' The number of variables which is available from TM5 in EC-Erth3 for this experiment is', count) + for i in per_freq: + #if i =='AERmonZ': + # print('Table: {} \tsize: {} GB/yr'.format(i,per_freq[i]*0.04/1000/120)) + #else: + print('Table: {} \t tasks {} \tsize: {} GB/yr'.format(i,task_per_freq[i], per_freq[i] * 0.04 / 1024.0)) + #volume_estimate = open('volume-estimate-tm5.txt','w') + #volume_estimate.write(' \nEC-Earth3 TM5 Volume estimates of generated output:{}'.format('\n')) + #volume_estimate.write(' Volume estimate for the TM5 3x2 degrees grid: {} GB/yr{}'.format(total_layer_equivalent * 0.04 / 1000.0, '\n')) + #volume_estimate.write(' With {:8} horizontal data slices per year across the vertical and time dimension.{}'.format(int(total_layer_equivalent), '\n\n')) + #volume_estimate.close() + + hf = 1.0 # TM5 heuristic factor + volume_estimate = open('volume-estimate-tm5.txt','w') + volume_estimate.write('Heuristic volume estimate for the raw EC-Earth3 TM5 output on the TM5 3x2 deg grid: {:6} GB per year{}'.format(round((total_layer_equivalent * 0.04 / 1000.0) / hf, 1), '\n')) + volume_estimate.close() + + # Finishing up + ece2cmorlib.finalize_without_cmor() + + + +if __name__ == "__main__": + main() diff --git a/ece2cmor/ece2cmor3/scripts/genecec-for-individual-experiments.sh b/ece2cmor/ece2cmor3/scripts/genecec-for-individual-experiments.sh new file mode 100755 index 0000000000000000000000000000000000000000..aa57b733d1e85cfdf28e726a213caf784b7353ed --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/genecec-for-individual-experiments.sh @@ -0,0 +1,298 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This scripts requires four arguments: +# first argument is the path/data-request-filename +# second argument is the MIP/project name +# third argument is the experiment name +# fourth argument is the EC-Earth3 configuration +# fifth argument is the output directory +# +# Run this script without arguments for examples how to call this script. +# +# With this script it is possible to generate the EC-Earth3 control output files, i.e. +# the IFS Fortran namelists (the ppt files), the NEMO xml files for XIOS (the +# file_def files for OPA, LIM and PISCES), the instruction file for LPJ_GUESS (the +# *.ins file) and the files required for the cmorisation for a certain MIP experiments. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. + + +# The xlsx data request file has been created as follows: +# cd ../resources/miscellaneous-data-requests +# drq -m CMIP -e ssp245 -t 1 -p 1 --xls --xlsDir cmip6-data-request-CovidMIP +# With this minimal request no 3hr & 6hr fields are in the request such that the file: +# ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1.xlsx +# can be directly used. +# However, finally the ec-earth consortium decided to add the following variables on top of this CMIP request: +# 6hrPlevPt psl, ta, ua, va & zg500 and Omon msftyz & SImon sivol & day sfcWind +# Therefore: +# cd cmip6-data-request-CovidMIP/ +# cp cmvme_CMIP_ssp245_1_1.xlsx cmvme_CMIP_ssp245_1_1-additional.xlsx +# And manually edit the cmvme_CMIP_ssp245_1_1-additional.xlsx file by adding these variables on their +# respectively tables. Note that the 6hrPlevPt sheet had to be manually added in this xlsx file. +# +# The earlier approaches used: +# cd ../resources/miscellaneous-data-requests +# drq -m CMIP,DCPP,LS3MIP,ScenarioMIP,CORDEX,DynVarMIP,VIACSAB -e ssp245 -t 1 -p 1 --xls --xlsDir cmip6-data-request-CovidMIP-scenariomip-EC-EARTH-AOGCM +# cd cmip6-data-request-CovidMIP-scenariomip-EC-EARTH-AOGCM/ +# cp cmvme_cm.co.dc.dy.ls.sc.vi_ssp245_1_1.xlsx cmvme_cm.co.dc.dy.ls.sc.vi_ssp245_1_1-no-3hr-no-6hrLev.xlsx +# Then manually remove the 3hr and 6hrLev variables from the cmvme_cm.co.dc.dy.ls.sc.vi_ssp245_1_1-no-3hr-no-6hrLev.xlsx. + +# drq -m CMIP,DCPP,LS3MIP,PAMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB -e ssp245 -t 1 -p 1 --xls --xlsDir cmip6-data-request-CovidMIP-cmip-EC-EARTH-AOGCM + +if [ "$#" -eq 5 ]; then + + data_request_file=$1 + mip_name=$2 + experiment=$3 + ece_configuration=$4 + output_dir=$5 + + # If the data request file has a releative path a preceeding PWD is concatenated: + if [[ "${data_request_file:0:1}" != / && "${data_request_file:0:2}" != ~[/a-z] ]]; then + data_request_file=${PWD}/${data_request_file} + fi + + if [ ${mip_name} = 'LAMACLIMA' ]; then + ./add-lamaclima-experiments.sh + fi + + rm -rf ${output_dir} + mkdir -p ${output_dir} + + if [ ${data_request_file##*/} = 'cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx' ] || [ ${data_request_file##*/} = 'cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx' ]; then + ./add-variables-with-pressure-levels-for-rcm-forcing.sh + fi + + # Distinguish between a json & xlsx file: + if [ ${data_request_file:(-4)} = 'json' ]; then + request_option='--vars' + else + request_option='--drq' + fi + + if [ ${request_option} = '--vars' ]; then + rsync -a ${data_request_file} ${output_dir} + fi + + # Generating the available, ignored, identified missing and missing xlsx & txt files: + xls_ece_dir=cmip6-data-request-ece/data-request-ece-${mip_name}-${experiment} + mkdir -p ${xls_ece_dir}; + + # Check whether the data request file is a json file, if so convert the json file for the checkvars application: + if [ "${data_request_file##*.}" = 'json' ]; then + convert_component_to_flat_json ${data_request_file} + data_request_file_for_checkvars=${data_request_file##*/} + data_request_file_for_checkvars=${data_request_file_for_checkvars/.json/-flat.json} + else + data_request_file_for_checkvars=${data_request_file##*/} + rsync -a ${data_request_file} ${data_request_file##*/} + fi + + checkvars -v --drq ${data_request_file_for_checkvars} --output ${xls_ece_dir}/variable-list-${mip_name}-${experiment} + echo + rm -f ${data_request_file_for_checkvars} + + drq2file_def ${request_option} ${data_request_file} + + rm -f cmip6-file_def_nemo.xml + mv -f file_def_nemo-opa.xml ${output_dir} + mv -f file_def_nemo-lim3.xml ${output_dir} + mv -f file_def_nemo-pisces.xml ${output_dir} + mv -f volume-estimate-nemo.txt ${output_dir} + + cd ${output_dir} + + drq2ppt ${request_option} ${data_request_file} + drq2ins ${request_option} ${data_request_file} + if [ ${request_option} = '--drq' ]; then + drq2varlist ${request_option} ${data_request_file} --ececonf EC-EARTH-AOGCM --varlist cmip6-data-request-varlist-${mip_name}-${experiment}-${ece_configuration}.json + convert_component_to_flat_json cmip6-data-request-varlist-${mip_name}-${experiment}-${ece_configuration}.json + checkvars -v --asciionly --drq cmip6-data-request-varlist-${mip_name}-${experiment}-${ece_configuration}-flat.json --output request-overview + rm -f cmip6-data-request-varlist-${mip_name}-${experiment}-${ece_configuration}-flat.json + else + convert_component_to_flat_json ${data_request_file##*/} + data_request_file_for_checkvars=${data_request_file##*/} + data_request_file_for_checkvars=${data_request_file_for_checkvars/.json/-flat.json} + checkvars -v --asciionly --drq ${data_request_file_for_checkvars} --output request-overview + rm -f ${data_request_file_for_checkvars} + fi + + # Remove the freq_op attribute for the variable msftbarot (uoce_e3u_vsum_e2u_cumul) from the file_def_nemo.xml file #327 & e.g. #518-165 on the ec-earth portal + sed -i -e 's/uoce_e3u_vsum_e2u_cumul. freq_op=.1ts/uoce_e3u_vsum_e2u_cumul/' file_def_nemo-opa.xml + + # Remove deptho from the file_def_nemo-opa.xml #249 + sed -i -e '/deptho/d' file_def_nemo-opa.xml + + # Switching the 'transect' variables off (the transect grid definition seems to depend on the XIOS 2.5 upgrade) + sed -i 's/enabled=\"True\" field_ref=\"transport/enabled=\"False\" field_ref=\"transport/' file_def_nemo* + + # Estimating the Volume of the TM5 output: + estimate_tm5_volume ${request_option} ${data_request_file} + + cat request-overview.available.txt volume-estimate-ifs.txt volume-estimate-nemo.txt volume-estimate-tm5.txt volume-estimate-lpj-guess.txt > request-overview-tmp.txt + mv -f request-overview-tmp.txt request-overview-${mip_name}-${experiment}-including-${ece_configuration}-preferences.txt + rm -f volume-estimate-ifs.txt volume-estimate-nemo.txt volume-estimate-tm5.txt volume-estimate-lpj-guess.txt request-overview.available.txt + + cd - + # Produce the metadata files for this MIP experiment. + ./modify-metadata-template.sh ${mip_name} ${experiment} ${ece_configuration}; + + if [ ${mip_name} = 'CovidMIP' ]; then + if [ ${experiment} = 'ssp245-baseline' ]; then + sed -i -e 's/"activity_id": "CovidMIP"/"activity_id": "ScenarioMIP"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"experiment_id": "ssp245-baseline"/"experiment_id": "ssp245"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"parent_activity_id": ""/"parent_activity_id": "CMIP"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"parent_experiment_id": ""/"parent_experiment_id": "historical"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_child": "0.0D"/"branch_time_in_child": "60265.0D"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_parent": "0.0D"/"branch_time_in_parent": "60265.0D"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + else + sed -i -e 's/"activity_id": "CovidMIP"/"activity_id": "DAMIP"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"parent_activity_id": ""/"parent_activity_id": "ScenarioMIP"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"parent_experiment_id": ""/"parent_experiment_id": "ssp245"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_child": "0.0D"/"branch_time_in_child": "62091.0D"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_parent": "0.0D"/"branch_time_in_parent": "62091.0D"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + fi + + sed -i -e 's/"forcing_index": "1"/"forcing_index": "2"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"#variant_info".*/"variant_info": "This experiment belongs to the set of CovidMIP experiments which use specific forcings for GHG, aerosols (MACv2-SP) and ozone, which are available at https:\/\/zenodo.org\/record\/3957826 and https:\/\/zenodo.org\/record\/4021333",/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"parent_variant_label": "r1i1p1f1"/"parent_variant_label": "r1i1p1f2"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + + # Prevent any 3 hourly raw output: + rm -f ${output_dir}/pptdddddd0300 + fi + + + if [ ${mip_name} = 'LAMACLIMA' ]; then + sed -i -e 's/"parent_activity_id": ""/"parent_activity_id": "CMIP"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"parent_experiment_id": ""/"parent_experiment_id": "historical"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_child": "0.0D"/"branch_time_in_child": "60265.0D"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_parent": "0.0D"/"branch_time_in_parent": "60265.0D"/' metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + fi + + + mv -f metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json ${output_dir} + + if [ ${mip_name} = 'LAMACLIMA' ]; then + ./revert-nested-cmor-table-branch.sh + fi + + if [ ${data_request_file##*/} = 'cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx' ]; then + rm -f ${output_dir}/pptdddddd0300 # Prevent any 3 hourly raw output + #sed -i -e 's/EC-Earth3/EC-Earth3-RT/' -e 's/(2019)/(2021)/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + if [ ${mip_name} = 'ScenarioMIP' ]; then + sed -i -e 's/"branch_time_in_child": "0.0D"/"branch_time_in_child": "60265.0D"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_parent": "0.0D"/"branch_time_in_parent": "60265.0D"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + fi + mv -f ${xls_ece_dir} ${xls_ece_dir}-plev23 + fi + + if [ ${data_request_file##*/} = 'cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx' ]; then + rm -f ${output_dir}/pptdddddd0300 # Prevent any 3 hourly raw output + #sed -i -e 's/EC-Earth3/EC-Earth3-RT/' -e 's/(2019)/(2021)/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + if [ ${mip_name} = 'ScenarioMIP' ]; then + sed -i -e 's/"branch_time_in_child": "0.0D"/"branch_time_in_child": "60265.0D"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_parent": "0.0D"/"branch_time_in_parent": "60265.0D"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + fi + mv -f ${xls_ece_dir} ${xls_ece_dir}-plev36 + fi + + if [ ${data_request_file##*/} = 'cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx' ] || [ ${data_request_file##*/} = 'cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx' ]; then + ./revert-nested-cmor-table-branch.sh + fi + + if [ ${data_request_file##*/} = 'cmvme_CMIP_ssp245_1_1-additional.xlsx' ] && [ ${mip_name} != 'CovidMIP' ]; then + rm -f ${output_dir}/pptdddddd0300 # Prevent any 3 hourly raw output + #sed -i -e 's/EC-Earth3/EC-Earth3-RT/' -e 's/(2019)/(2020)/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + mv -f ${xls_ece_dir} ${xls_ece_dir}-compact + fi + + if [ ${data_request_file##*/} = 'varex-data-request-varlist-EC-Earth3.json' ]; then + sed -i -e 's/"parent_variant_label": "r1i1p1f1"/"parent_variant_label": "r1i1p5f1"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + if [ ${output_dir##*/} = 'varex-control-CMIP-historical' ] || [ ${output_dir##*/} = 'varex-control-ScenarioMIP-ssp245' ]; then + sed -i -e 's/"physics_index": "1"/"physics_index": "5"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"#variant_info.*/"variant_info": "The p5 label refers to the fact that for this experiment the rtc5 retune parameter set has been used.",/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + elif [ ${output_dir##*/} = 'varex-perturbed-soil-moisture-CMIP-historical' ] || [ ${output_dir##*/} = 'varex-perturbed-soil-moisture-ScenarioMIP-ssp245' ]; then + sed -i -e 's/"physics_index": "1"/"physics_index": "51"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"#variant_info.*/"variant_info": "The p51 label refers to the fact that for this experiment the rtc5 retune parameter set has been used like in p5 experiments and in addition a soil moisture perturbation is applied.",/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + elif [ ${output_dir##*/} = 'varex-perturbed-convection-CMIP-historical' ] || [ ${output_dir##*/} = 'varex-perturbed-convection-ScenarioMIP-ssp245' ]; then + sed -i -e 's/"physics_index": "1"/"physics_index": "52"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"#variant_info.*/"variant_info": "The p52 label refers to the fact that for this experiment the rtc5 retune parameter set has been used like in p5 experiments and in addition a convection perturbation is applied.",/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + fi + sed -i -e 's/"comment": ""/"comment": "Production: Laura Muntjewerf \& Thomas Reerink at KNMI"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"institution_id": "EC-Earth-Consortium"/"institution_id": "KNMI"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"contact": "cmip6-data@ec-earth.org"/"contact": "laura.muntjewerf@knmi.nl"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/CMIP6 model data produced by EC-Earth-Consortium/The VAREX model data produced by KNMI/' -e 's/Consult.*acknowledgment. //' -e 's/ and at http.*ec-earth.org//' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + if [ ${mip_name} = 'CMIP' ]; then + sed -i -e 's/"parent_experiment_id": "piControl"/"parent_experiment_id": "historical"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_child": "0.0D"/"branch_time_in_child": "54786.0D"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_parent": "0.0D"/"branch_time_in_parent": "54786.0D"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + elif [ ${mip_name} = 'ScenarioMIP' ]; then + sed -i -e 's/"branch_time_in_child": "0.0D"/"branch_time_in_child": "82180.0D"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_parent": "0.0D"/"branch_time_in_parent": "82180.0D"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + fi + rm -f ${output_dir}/lpjg_cmip6_output.ins + mv -f ${xls_ece_dir} ${xls_ece_dir}-varex + fi + + if [ ${data_request_file##*/} = 'sofiamip-extended.json' ]; then + sed -i -e 's/"parent_activity_id": ""/"parent_activity_id": "CMIP"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"parent_experiment_id": ""/"parent_experiment_id": "piControl"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"comment": ""/"comment": "Production: Andre Juling at KNMI"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"institution_id": "EC-Earth-Consortium"/"institution_id": "KNMI"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"contact": "cmip6-data@ec-earth.org"/"contact": "andre.juling@knmi.nl"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/CMIP6 model data produced by EC-Earth-Consortium/The SOFIAMIP model data produced by KNMI/' -e 's/Consult.*acknowledgment. //' -e 's/ and at http.*ec-earth.org//' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + if [ ${mip_name} = 'SOFIAMIP' ]; then + #sed -i -e 's/"parent_experiment_id": "piControl"/"parent_experiment_id": "historical"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + sed -i -e 's/"branch_time_in_parent": "0.0D"/"branch_time_in_parent": "149749.0D"/' ${output_dir}/metadata-cmip6-${mip_name}-${experiment}-${ece_configuration}-*-template.json + fi + rm -f ${output_dir}/lpjg_cmip6_output.ins + mv -f ${xls_ece_dir} ${xls_ece_dir}-sofiamip + fi + + echo + echo ' Finished:' + echo ' '$0 "$@" + echo + +else + echo + echo " This scripts requires five arguments: path/data-request-filename, MIP name, MIP experiment, EC-Earth3 configuration, output directory, e.g.:" + echo " $0 ../resources/miscellaneous-data-requests/sofiamip/sofiamip-extended.json SOFIAMIP faf-antwater EC-EARTH-AOGCM sofiamip/faf-antwater-sofiamip " + echo + echo " $0 ../resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-Veg.json LAMACLIMA ssp585-lamaclima EC-EARTH-Veg lamaclima/ssp585-lamaclima-EC-EARTH-Veg " + echo " $0 ../resources/miscellaneous-data-requests/lamaclima/lamaclima-data-request-varlist-EC-EARTH-CC.json LAMACLIMA ssp119-lamaclima EC-EARTH-CC lamaclima/ssp119-lamaclima-EC-EARTH-CC " + echo + echo " $0 ../resources/miscellaneous-data-requests/varex-data-request/varex-data-request-varlist-EC-Earth3.json CMIP historical EC-EARTH-AOGCM varex/varex-control-CMIP-historical " + echo " $0 ../resources/miscellaneous-data-requests/varex-data-request/varex-data-request-varlist-EC-Earth3.json ScenarioMIP ssp245 EC-EARTH-AOGCM varex/varex-control-ScenarioMIP-ssp245 " + echo " $0 ../resources/miscellaneous-data-requests/varex-data-request/varex-data-request-varlist-EC-Earth3.json CMIP historical EC-EARTH-AOGCM varex/varex-perturbed-soil-moisture-CMIP-historical " + echo " $0 ../resources/miscellaneous-data-requests/varex-data-request/varex-data-request-varlist-EC-Earth3.json ScenarioMIP ssp245 EC-EARTH-AOGCM varex/varex-perturbed-soil-moisture-ScenarioMIP-ssp245" + echo " $0 ../resources/miscellaneous-data-requests/varex-data-request/varex-data-request-varlist-EC-Earth3.json CMIP historical EC-EARTH-AOGCM varex/varex-perturbed-convection-CMIP-historical " + echo " $0 ../resources/miscellaneous-data-requests/varex-data-request/varex-data-request-varlist-EC-Earth3.json ScenarioMIP ssp245 EC-EARTH-AOGCM varex/varex-perturbed-convection-ScenarioMIP-ssp245 " + echo + echo " $0 ../resources/miscellaneous-data-requests/compact-request/cmvme_CMIP_ssp245_1_1-additional.xlsx CMIP piControl EC-EARTH-AOGCM compact-request " + echo + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx CMIP historical EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical " + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp119 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp119" + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp126 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp126" + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp245 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp245" + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp370 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp370" + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp585 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585" + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx CMIP historical EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical " + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp119 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp119" + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp126 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp126" + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp245 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp245" + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp370 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp370" + echo " $0 ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp585 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585" + echo + echo " $0 ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-baseline EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-baseline " + echo " $0 ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-covid EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-covid " + echo " $0 ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-cov-strgreen EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-cov-strgreen" + echo " $0 ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-cov-modgreen EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-cov-modgreen" + echo " $0 ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-cov-fossil EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-cov-fossil " + echo " $0 ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-cov-aer EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-cov-aer " + #echo " $0 ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-cov-GHG EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-sssp245-cov-GHG " + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/genecec-per-mip-experiment.sh b/ece2cmor/ece2cmor3/scripts/genecec-per-mip-experiment.sh new file mode 100755 index 0000000000000000000000000000000000000000..0e91aeb54198769ed280e4ba3dc9d45241c75c02 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/genecec-per-mip-experiment.sh @@ -0,0 +1,216 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This scripts requires five arguments: +# first argument is the base directory name which will be created if not existing. The results will be placed in a subdirectory of this base directory. +# second argument is the MIP name +# third argument is the experiment name or MIP name in the latter case all MIP experiments are taken. +# fourth argument is the experiment tier (tier 1 is obligatory, higher tier is non-obligatory). In case tier 2 is specified, tier 1 and 2 experiments are considered. +# fifth argument is the maximum priority of the variables (1 is highest priority, 3 is lowest priority). In case priority 2 is specified, priority 1 and 2 variables are considered. +# +# Run this script without arguments for examples how to call this script. +# +# With this script it is possible to generate the EC-Earth3 control output files, i.e. +# the IFS Fortran namelists (the ppt files), the NEMO xml files for XIOS (the +# file_def files for OPA, LIM and PISCES) and the LPJ-GUESS instruction (.ins) file +# for one MIP experiment. In addition it produces the volume estimates for IFS, NEMO, +# LPJ-GUESS and TM5. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script is called in a loop over the MIP experiments by the script: +# genecec.py + + +if [ "$#" -eq 5 ]; then + + if ! type "ece2cmor" > /dev/null; then + echo + echo ' The CMIP6 data request tool ece2cmor is not available because of one of the following reasons:' + echo ' 1. ece2cmor might be not installed' + echo ' 2. ece2cmor might be not active, check whether the ece2cmor3 environment is activated' + echo ' Stop' + echo + exit + fi + + if ! type "drq" > /dev/null; then + echo + echo ' The CMIP6 data request tool drq is not available because of one of the following reasons:' + echo ' 1. drq might be not installed' + echo ' 2. drq might be not active, check whether the ece2cmor3 environment is activated' + echo ' Stop' + echo + exit + fi + + base_dir_name=$1 + mip=$2 + experiment=$3 + tier=$4 + priority=$5 + + # Check whether more than one MIP is specified in the data request + multiplemips='no' + if [[ ${mip} = *","* ]];then + multiplemips='yes' + echo " Multiple mip case = ${multiplemips}" + fi + + # Replace the comma(s) by dot(s) in label: + mip_label=$(echo ${mip} | sed 's/,/./g') + + if [ "${multiplemips}" = "yes" ]; then + # The first two lower case characters of the multiple mip string are saved for selecting the experiment data request file: + select_substring=$(echo "${mip_label:0:2}" | tr '[:upper:]' '[:lower:]') + else + if [ "${mip}" = "AerChemMIP" ]; then + # For AerChemMIP the joined data request including the Core MIP request is prefered instead of only the specific AerChemMIP experiment specific request: + # The first two lower case characters of the multiple mip string are saved for selecting the experiment data request file: + select_substring=$(echo "${mip_label:0:2}" | tr '[:upper:]' '[:lower:]') + else + select_substring=${mip} + fi + fi + + path_of_created_output_control_files=${base_dir_name}/${mip_label}/cmip6-experiment-${mip_label}-${experiment} + + echo + echo "Executing the following job:" + echo " $0 $@" + + if [ ${experiment} = 'esm-hist' ] || [ ${experiment} = 'esm-piControl' ]; then + esm_label=' --esm' + else + esm_label='' + fi + + xls_dir=cmip6-data-request/cmip6-data-request-${mip_label}-${experiment}-t${tier}-p${priority} + mkdir -p ${xls_dir}; + + echo + echo "The CMIP6 data request is obtained from:" + echo " drq -m ${mip} -e ${experiment} -t ${tier} -p ${priority} ${esm_label} --xls --xlsDir ${xls_dir}" + echo + + drq -m ${mip} -e ${experiment} -t ${tier} -p ${priority} ${esm_label} --xls --xlsDir ${xls_dir} + + # Because in the VolMIP dcppC-forecast-addPinatubo experiment the cmvme_${mip_label}_${experiment}_1_1.xlsx file is not produced, a link + # with this name is created to a file cmvme_cm.vo_${experiment}_1_1.xlsx which should be most similar: + if [ ${mip_label} = 'VolMIP' ] && [ ${experiment} = 'dcppC-forecast-addPinatubo' ]; then + cd ${xls_dir} + if [ -L cmvme_${mip_label}_${experiment}_1_1.xlsx ]; then + rm -f cmvme_${mip_label}_${experiment}_1_1.xlsx + fi + # However, first check whether the file is correctly present, in that case no action: + if [ ! -f cmvme_${mip_label}_${experiment}_1_1.xlsx ]; then + ln -s cmvme_cm.vo_${experiment}_1_1.xlsx cmvme_${mip_label}_${experiment}_1_1.xlsx + echo + echo "Create for ${mip_label} a soft link:" + ls -l cmvme_${mip_label}_${experiment}_1_1.xlsx + fi + cd - + fi + + # Note that the *TOTAL* selection below has the risk that more than one file is selected (causing a crash) which only could happen if externally files are added in this directory: + + cmip6_data_request_file=${xls_dir}/cmvme_${select_substring}*${experiment}_${tier}_${priority}.xlsx + + # Check whether there will be selected a unique matching data request file in the created data request directory: + number_of_matching_files=$(ls -1 ${cmip6_data_request_file}|wc -l) + if [ ${number_of_matching_files} != 1 ]; then + echo "Number of matching files: ${number_of_matching_files}" + ls ${cmip6_data_request_file} + exit + fi + + mkdir -p ${path_of_created_output_control_files} + if [ ${mip_label} != 'OMIP' ] && [ ${experiment} != 'rad-irf' ]; then + # Create the ppt files for IFS input and estimate the Volume of the IFS output: + drq2ppt --drq ${cmip6_data_request_file} + + if [ -f pptdddddd0100 ]; then rm -f pptdddddd0100 ; fi # Removing the hourly / sub hourly table variables. + mv -f ppt0000000000 pptdddddd* ${path_of_created_output_control_files} + else + echo + echo 'Due to an empty IFS requests, see:' + if [ ${mip_label} = 'OMIP' ]; then echo ' https://github.com/EC-Earth/ece2cmor3/issues/660'; fi + if [ ${experiment} = 'rad-irf' ]; then echo ' https://github.com/EC-Earth/ece2cmor3/issues/661'; fi + echo "the script $0 will skip:" + echo "drq2ppt --drq ${cmip6_data_request_file}" + echo + fi + + # Creating the file_def files for XIOS NEMO input and estimate the Volume of the NEMO output: + drq2file_def --drq ${cmip6_data_request_file} + rm -f cmip6-file_def_nemo.xml + mv -f file_def_nemo-opa.xml ${path_of_created_output_control_files} + mv -f file_def_nemo-lim3.xml ${path_of_created_output_control_files} + mv -f file_def_nemo-pisces.xml ${path_of_created_output_control_files} + + # Creating the instruction files for LPJ-GUESS and estimating the Volume of the LPJ-GUESS output: + drq2ins --drq ${cmip6_data_request_file} + mv -f ./lpjg_cmip6_output.ins ${path_of_created_output_control_files} + + # Estimating the Volume of the TM5 output: + estimate_tm5_volume --drq ${cmip6_data_request_file} + + cat volume-estimate-ifs.txt volume-estimate-nemo.txt volume-estimate-tm5.txt volume-estimate-lpj-guess.txt > ${path_of_created_output_control_files}/volume-estimate.txt + rm -f volume-estimate-ifs.txt volume-estimate-nemo.txt volume-estimate-tm5.txt volume-estimate-lpj-guess.txt + echo + + # Generating the available, ignored, identified missing and missing files for this MIP experiment: + xls_ece_dir=cmip6-data-request-ece/cmip6-data-request-ece-${mip_label}-${experiment}-t${tier}-p${priority} + mkdir -p ${xls_ece_dir}; + checkvars -v --drq ${cmip6_data_request_file} --output ${xls_ece_dir}/cmvmm_${mip_label}-${experiment}-t${tier}-p${priority} + + echo + echo 'The produced data request excel file:' + ls -1 ${cmip6_data_request_file} + + echo + echo 'The generated ppt files are:' + ls -1 ${path_of_created_output_control_files}/ppt0000000000 + ls -1 ${path_of_created_output_control_files}/pptdddddd0300 + ls -1 ${path_of_created_output_control_files}/pptdddddd0600 + + echo + echo 'The generated file_def files are:' + ls -1 ${path_of_created_output_control_files}/file_def_nemo-opa.xml + ls -1 ${path_of_created_output_control_files}/file_def_nemo-lim3.xml + ls -1 ${path_of_created_output_control_files}/file_def_nemo-pisces.xml + echo + +else + echo + echo " This scripts requires five arguments: base output directory, MIP (or comma separated lsit of MIPs), MIP experiment, experiment tier, priority level of variables included, e.g.:" + echo " $0 cmip6-output-control-files CMIP piControl 1 1" + echo " $0 cmip6-output-control-files CMIP,DCPP,LS3MIP,PAMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB piControl 1 1" + echo +fi + +# ./genecec-per-mip-experiment.sh cmip6-output-control-files CMIP 1pctCO2 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files CMIP abrupt-4xCO2 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files CMIP amip 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files CMIP historical 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files CMIP piControl 1 1 + +# ./genecec-per-mip-experiment.sh cmip6-output-control-files AerChemMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files CDRMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files C4MIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files DCPP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files HighResMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files ISMIP6 piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files LS3MIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files LUMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files OMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files PAMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files PMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files RFMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files ScenarioMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files VolMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files CORDEX piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files DynVarMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files SIMIP piControl 1 1 +# ./genecec-per-mip-experiment.sh cmip6-output-control-files VIACSAB piControl 1 1 diff --git a/ece2cmor/ece2cmor3/scripts/genecec.py b/ece2cmor/ece2cmor3/scripts/genecec.py new file mode 100755 index 0000000000000000000000000000000000000000..d55244cbef96a6e36e18be8f9e5aa9aeef9b5183 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/genecec.py @@ -0,0 +1,473 @@ +#!/usr/bin/env python +# Thomas Reerink +# +# Run examples: +# ./genecec.py config-genecec +# ./run-genecec.sh default 001 ece2cmor3 +# +# Looping over all MIPs and within each MIP over all its MIP experiments. +# The experiment tier can be selected. For each selected experiment the +# namelists are created by calling the genecec-per-mip-experiment.sh script. +# +# With this script it is possible to generate the EC-Earth3 control output files, i.e. +# the IFS Fortran namelists (the ppt files), the NEMO xml files for XIOS (the +# file_def files for OPA, LIM and PISCES) and the instruction files for LPJ_GUESS (the +# *.ins files) for all MIP experiments in which EC-Earth3 participates. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. + + +import sys +import os +import subprocess +from os.path import expanduser # Enable to go to the home dir: ~ +from dreqPy import dreq +dq = dreq.loadDreq() + +#error_message = '\n \033[91m' + 'Error:' + '\033[0m' # Red error message +#warning_message = '\n \033[93m' + 'Warning:' + '\033[0m' # Yellow warning message +error_message = '\n Error:' # error message +warning_message = '\n Warning:' # warning message + +if len(sys.argv) == 2: + + if __name__ == "__main__": config = {} # python config syntax + + config_filename = sys.argv[1] # Reading the config file name from the argument line + if os.path.isfile(config_filename) == False: # Checking if the config file exists + print(error_message, ' The config file ', config_filename, ' does not exist.\n') + sys.exit() + exec(open(config_filename).read(), config) # Reading the config file + + print() + print(' The used ece2cmor3 environment: {:}'.format(subprocess.check_output('which ece2cmor' , shell=True).decode('utf-8').strip("\n"))) + print(' The used drq version: {:}'.format(subprocess.check_output('drq -v' , shell=True)[0:42].decode('utf-8').strip("\n"))) + print(' The used python version: {:}'.format(os.sys.version[0:68])) + print(' The used python version: {:}'.format(os.sys.version_info)) + print(' The used dreqPy version: {:}'.format(dreq.version)) + print(' The used ece2cmor3 version: ', end='', flush=True) + subprocess.check_output('ece2cmor --version', shell=True).decode('utf-8').strip("\n") + #print(' The used ece2cmor3 version: {:}'.format(subprocess.check_output('ece2cmor --version', shell=True).decode('utf-8').strip("\n"))) # output printed line before? + print() + + output_dir_name = os.path.expanduser(config['output_dir_name' ]) # output_dir_name = 'output-control-files/' + activate_pextra_mode = config['activate_pextra_mode' ] # activate_pextra_mode = False + add_request_overview = config['add_request_overview' ] # add_request_overview = True + ece2cmor_root_directory = os.path.expanduser(config['ece2cmor_root_directory']) # ece2cmor_root_directory = '~/cmorize/ece2cmor3/' + + # Run ece2cmor's install & check whether an existing ece2cmor root directory is specified in the config file: + previous_working_dir = os.getcwd() + if os.path.isdir(ece2cmor_root_directory) == False: + print(error_message, ' The ece2cmor root directory ', ece2cmor_root_directory, ' does not exist.\n') + sys.exit() + if os.path.isfile(ece2cmor_root_directory + '/environment.yml') == False: + print(error_message, ' The ece2cmor root directory ', ece2cmor_root_directory, ' is not an ece2cmor root directory.\n') + sys.exit() + os.chdir(ece2cmor_root_directory) + os.system('pip install -e .') + os.chdir(previous_working_dir) + + if output_dir_name[-1] != '/': + output_dir_name = output_dir_name + '/' + + if activate_pextra_mode: + cmip6_base_dir_name = output_dir_name + 'cmip6-pextra/' + os.system('./switch-on-off-pextra-mode.sh activate-pextra-mode') + else: + cmip6_base_dir_name = output_dir_name + 'cmip6/' + + + # Specify in the list below which tier experiments should be included. For + # instance [1,2] means tier 1 and tier 2 experiments are included: + experiment_tiers_included = [1] + ec_earth_mips = ['CMIP', 'AerChemMIP', 'CDRMIP', 'C4MIP', 'DCPP', 'HighResMIP', 'ISMIP6', 'LS3MIP', 'LUMIP', 'OMIP', 'PAMIP', 'PMIP', 'RFMIP', 'ScenarioMIP', 'VolMIP', 'CORDEX', 'DynVarMIP', 'SIMIP', 'VIACSAB'] # All 19 EC-Earth MIPs + + + # The list of MIPs for each of the eight EC-Earth3 model configurations which run CMIP in an iterable dictionary. This lists are needed in order + # to request the joint CMIP6 data requests for each of the EC-Earth3 model configurations: + cmip_ece_configurations = { + 'EC-EARTH-AOGCM' : 'CMIP,DCPP,LS3MIP,PAMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB', + 'EC-EARTH-HR' : 'CMIP,DCPP,HighResMIP', + 'EC-EARTH-LR' : 'CMIP,PMIP', + 'EC-EARTH-CC' : 'C4MIP,CDRMIP,CMIP,LUMIP,OMIP,ScenarioMIP', + 'EC-EARTH-GrisIS' : 'CMIP,ISMIP6,PMIP', + 'EC-EARTH-AerChem' : 'AerChemMIP,CMIP,RFMIP', + 'EC-EARTH-Veg' : 'CDRMIP,CMIP,LUMIP,LS3MIP,ScenarioMIP', + 'EC-EARTH-Veg-LR' : 'CMIP,PMIP,ScenarioMIP' + } + + # The list of MIPs for each of the four EC-Earth3 model configurations which run ScenarioMIP in an iterable dictionary. This lists are needed in order + # to request the joint CMIP6 data requests for each of the EC-Earth3 model configurations: + scenario_ece_configurations = { + 'EC-EARTH-AOGCM' : 'CMIP,DCPP,LS3MIP,ScenarioMIP,CORDEX,DynVarMIP,VIACSAB', + 'EC-EARTH-CC' : 'C4MIP,CDRMIP,CMIP,LUMIP,OMIP,ScenarioMIP', + 'EC-EARTH-AerChem' : 'AerChemMIP,CMIP,RFMIP,ScenarioMIP', + 'EC-EARTH-Veg' : 'CMIP,LUMIP,LS3MIP,ScenarioMIP', + 'EC-EARTH-Veg-LR' : 'CMIP,PMIP,ScenarioMIP' + } + + #ec_earth_mips = ['CMIP', 'AerChemMIP', 'CDRMIP', 'C4MIP', 'CFMIP', 'DAMIP', 'DCPP', 'FAFMIP', 'GeoMIP', 'GMMIP', 'HighResMIP', 'ISMIP6', 'LS3MIP', 'LUMIP', 'OMIP', 'PAMIP', 'PMIP', 'RFMIP', 'ScenarioMIP', 'VolMIP', 'CORDEX', 'DynVarMIP', 'SIMIP', 'VIACSAB'] # All 24 CMIP6 MIPs + #ec_earth_mips = ['CMIP'] # for a faster test + #ec_earth_mips = ['ScenarioMIP'] # for a faster test + #ec_earth_mips = ['AerChemMIP'] # for a faster test + + # Some test cases: + #cmip_ece_configurations = {'EC-EARTH-AOGCM':'CMIP,DCPP,LS3MIP,PAMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB'} + ##cmip_ece_configurations = {'dummy':'dummy'} + + # Some test cases: + ##scenario_ece_configurations = {'EC-EARTH-AOGCM':'CMIP,DCPP,LS3MIP,ScenarioMIP,CORDEX,DynVarMIP,VIACSAB'} + ##scenario_ece_configurations = {'dummy':'dummy'} + + + # Define a dictionary which lists/maps for each MIP which EC-Earth3 model configurations are used to run the MIP: + ece_conf_mip_map = { + #'CMIP' : ['EC-EARTH-AOGCM','EC-EARTH-HR','EC-EARTH-LR','EC-EARTH-CC','EC-EARTH-GrisIS','EC-EARTH-AerChem','EC-EARTH-Veg','EC-EARTH-Veg-LR'], + 'DCPP' : ['EC-EARTH-AOGCM','EC-EARTH-HR'], + 'LS3MIP' : ['EC-EARTH-AOGCM','EC-EARTH-Veg'], + 'PAMIP' : ['EC-EARTH-AOGCM'], + 'RFMIP' : ['EC-EARTH-AOGCM','EC-EARTH-AerChem'], + 'ScenarioMIP' : ['EC-EARTH-AOGCM','EC-EARTH-CC','EC-EARTH-Veg','EC-EARTH-Veg-LR'], + 'VolMIP' : ['EC-EARTH-AOGCM'], + 'CORDEX' : ['EC-EARTH-AOGCM'], + 'DynVarMIP' : ['EC-EARTH-AOGCM'], + 'SIMIP' : ['EC-EARTH-AOGCM'], + 'VIACSAB' : ['EC-EARTH-AOGCM'], + 'HighResMIP' : ['EC-EARTH-HR'], + 'PMIP' : ['EC-EARTH-LR','EC-EARTH-GrisIS','EC-EARTH-Veg-LR'], + 'C4MIP' : ['EC-EARTH-CC'], + 'CDRMIP' : ['EC-EARTH-CC','EC-EARTH-Veg'], + 'LUMIP' : ['EC-EARTH-CC','EC-EARTH-Veg'], + 'OMIP' : ['EC-EARTH-CC'], + 'ISMIP6' : ['EC-EARTH-GrisIS'], + 'AerChemMIP' : ['EC-EARTH-AerChem'] + } + + + # Or instead of an (alphabetic) sorted dictionary an ordered dictionary could be used. + ##for model_configuration in sorted(cmip_ece_configurations.keys()): + ## print(' {:20} {}'.format(model_configuration, cmip_ece_configurations[model_configuration])) + ##for model_configuration in sorted(scenario_ece_configurations.keys()): + ## print(' {:20} {}'.format(model_configuration, scenario_ece_configurations[model_configuration])) + ##sys.exit() + + experiment_counter = 0 + + command_show_version = 'git describe --tags | sed "s/^/ Using ece2cmor git revision: /"; echo;' + os.system(command_show_version) + + command_00 = 'rm -rf ' + cmip6_base_dir_name + ' cmip6-data-request-ece' + os.system(command_00) + + # Loop over MIPs: + for mip in dq.coll['mip'].items: + mip_name = mip.label + print('\n Starting to work on: ', mip_name, '\n') + + if mip_name == 'CMIP' or mip_name == 'ScenarioMIP': + if mip_name == 'CMIP': + ece_configurations = cmip_ece_configurations + elif mip_name == 'ScenarioMIP': + ece_configurations = scenario_ece_configurations + else: + print('\n Aborting genecec: programmer error: no case for: ', mip_name, ' in joined MIP treatment.\n') + sys.exit() + + for model_configuration in sorted(ece_configurations.keys()): + mip_list = ece_configurations[model_configuration] + mip_label = mip_list.replace(",", ".") # Convert the comma separated list into a dot separated list because this is what comes out from genecec-per-mip-experiment.sh + multiplemips = "." in mip_label + select_substring = mip_label[0:2].lower() + + #print(' mip = ' , mip ) + #print(' mip_name = ' , mip_name ) + #print(' mip_list = ' , mip_list ) + #print(' mip_label = ' , mip_label ) + #print(' multiplemips = ' , multiplemips ) + #print(' select_substring = ', select_substring) + #sys.exit() + + # Loop over experiments: + for u in dq.inx.iref_by_sect[mip.uid].a['experiment']: + ex = dq.inx.uid[u] + + subdirname_experiment = cmip6_base_dir_name + mip_label + '/cmip6-experiment-' + mip_label + '-' + ex.label + filename_file_def_nemo_opa = subdirname_experiment + '/file_def_nemo-opa.xml' + ece_configuration_dir = cmip6_base_dir_name + mip_name + '/' + model_configuration + '/cmip6-experiment-' + mip_name + '-' + ex.label + + #command_x1 = "sed -i -e 's/True\" field_ref=\"toce_pot\"/False\" field_ref=\"toce_pot\"/' " + filename_file_def_nemo_opa + #command_x2 = "sed -i -e '/sfdsi_2/d' " + filename_file_def_nemo_opa + command_01 = './genecec-per-mip-experiment.sh ' + cmip6_base_dir_name + ' ' + mip_list + ' ' + ex.label + ' ' + str(ex.tier[0]) + ' 1 ' + command_02 = "sed -i -e 's/uoce_e3u_vsum_e2u_cumul. freq_op=.1ts/uoce_e3u_vsum_e2u_cumul/' " + filename_file_def_nemo_opa + command_03 = "sed -i -e '/deptho/d' " + filename_file_def_nemo_opa + command_c = "sed -i 's/enabled=\"True\" field_ref=\"transport/enabled=\"False\" field_ref=\"transport/' " + subdirname_experiment + '/file_def_nemo*' + command_04 = 'mkdir -p ' + ece_configuration_dir + '; mv ' + subdirname_experiment + '/*' + ' ' + ece_configuration_dir + '; rm -rf ' + cmip6_base_dir_name + mip_label + command_05 = 'drq2varlist --drq cmip6-data-request/cmip6-data-request-' + mip_label + '-' + ex.label + '-t' + str(ex.tier[0]) + '-p' + '1' + '/cmvme_' + select_substring + '*_' + ex.label + '_' + str(ex.tier[0]) + '_1.xlsx --ececonf ' + model_configuration + ' --varlist ' + ece_configuration_dir + '/cmip6-data-request-varlist-' + mip_name + '-' + ex.label + '-' + model_configuration + '.json' + command_06 = './modify-metadata-template.sh ' + mip_name + ' ' + ex.label + ' ' + model_configuration + '; mv -f metadata-cmip6-' + mip_name + '-' + ex.label + '-' + model_configuration + '-*-template.json ' + ece_configuration_dir + command_07 = 'convert_component_to_flat_json ' + ece_configuration_dir + '/cmip6-data-request-varlist-' + mip_name + '-' + ex.label + '-' + model_configuration + '.json' + command_08 = 'checkvars --asciionly -v --drq ' + 'cmip6-data-request-varlist-' + mip_name + '-' + ex.label + '-' + model_configuration + '-flat.json' + ' --output ' + ece_configuration_dir + '/request-overview' + command_09 = 'rm -f ' + 'cmip6-data-request-varlist*-flat.json' + command_10 = 'cat ' + ece_configuration_dir + '/request-overview.available.txt ' + ece_configuration_dir + '/volume-estimate.txt > ' + ece_configuration_dir + '/request-overview-' + mip_name + '-' + ex.label + '-including-' + model_configuration + '-preferences.txt' + command_11 = 'rm -f ' + ece_configuration_dir + '/volume-estimate.txt' + command_12 = 'rm -f ' + ece_configuration_dir + '/request-overview.available.txt' + + #print('{}'.format(command_01)) + if mip_name in ec_earth_mips: + #if ex.tier[0] in experiment_tiers_included and ex.label == 'piControl': # for a faster test + #if ex.tier[0] in experiment_tiers_included and ex.label == 'historical': # for a faster test + #if ex.tier[0] in experiment_tiers_included and ex.label == 'ssp585': # for a faster test + if ex.tier[0] in experiment_tiers_included: + #os.system(command_x1) # Just set the toce fields false again because we still face troubles with them + #os.system(command_x2) # Delete the line with sfdsi_2 from the file_def_nemo-opa.xml files + os.system(command_01) + os.system(command_02) # Remove the freq_op attribute for the variable msftbarot (uoce_e3u_vsum_e2u_cumul) from the file_def_nemo.xml file #327 & e.g. #518-165 on the ec-earth portal + os.system(command_03) # Remove deptho from the file_def_nemo-opa.xml #249 + os.system(command_c ) # Switching the 'transect' variables off (the transect grid definition seems to depend on the XIOS 2.5 upgrade) + os.system(command_04) # Rename directory names for joint MIPs + os.system(command_05) # Produce the ec-earth component json data request variant, the so called varlist.json + os.system(command_06) # Produce the metadata files for this MIP experiment. + if add_request_overview: + os.system(command_07) # Convert the json data request file which contains the EC-Earth components to a flat json data request file for checkvars + os.system(command_08) # Execute checkvars --asciionly for the flat json data request file which includes the preferences + os.system(command_09) # Remove the flat json file + os.system(command_10) # Concatenate volume estimates to the request overview file + os.system(command_11) # Remove volume estimate file + os.system(command_12) # Remove the intermediate request-overview.available.txt file + experiment_counter = experiment_counter + 1 + else: + print(' Tier {} experiments are not included: Skipping: {}'.format(ex.tier[0], command_01)) + else: + print(' EC-Earth3 does not participate in {:11}: Skipping: {}'.format(mip_name, command_01)) + + else: + #print('\n Model configuration is: ', model_configuration, 'for', mip_name, ex.label, '\n') + print('\n Reporting that ', mip_name, ' concerns a usual single MIP case') + mip_list = mip_name + mip_label = mip_name + if mip_name in ec_earth_mips: + model_configuration = ece_conf_mip_map[mip_name] + else: + model_configuration = ['no-match'] + + # Loop over experiments: + for u in dq.inx.iref_by_sect[mip.uid].a['experiment']: + ex = dq.inx.uid[u] + + subdirname_experiment = cmip6_base_dir_name + mip_label + '/cmip6-experiment-' + mip_label + '-' + ex.label + filename_file_def_nemo_opa = subdirname_experiment + '/file_def_nemo-opa.xml' + + #command_x1 = "sed -i -e 's/True\" field_ref=\"toce_pot\"/False\" field_ref=\"toce_pot\"/' " + filename_file_def_nemo_opa + #command_x2 = "sed -i -e '/sfdsi_2/d' " + filename_file_def_nemo_opa + command_01 = './genecec-per-mip-experiment.sh ' + cmip6_base_dir_name + ' ' + mip_list + ' ' + ex.label + ' ' + str(ex.tier[0]) + ' 1 ' + command_02 = "sed -i -e 's/uoce_e3u_vsum_e2u_cumul. freq_op=.1ts/uoce_e3u_vsum_e2u_cumul/' " + filename_file_def_nemo_opa + command_03 = "sed -i -e '/deptho/d' " + filename_file_def_nemo_opa + command_c = "sed -i 's/enabled=\"True\" field_ref=\"transport/enabled=\"False\" field_ref=\"transport/' " + cmip6_base_dir_name + mip_name + '/cmip6-experiment-' + mip_name + '-' + ex.label + '/file_def_nemo*' + #print('{}'.format(command_01)) + if mip_name in ec_earth_mips: + #if ex.tier[0] in experiment_tiers_included: + # Add also the LS3MIP tier 2 experiments: amip-lfmip-pdLC & amip-lfmip-rmLC + # Add also the AerChemMIP tier 2 & 3 experiments (see #631): + # hist-piAer tier-2 historical forcing, but with pre-industrial aerosol emissions + # histSST-piAer tier-2 historical SSTs and historical forcing, but with pre-industrial aerosol emissions + # piClim-2xdust tier-2 pre-industrial climatological SSTs and forcing, but with doubled emissions of dust + # piClim-2xss tier-2 pre-industrial climatological SSTs and forcing, but with doubled emissions of sea salt + # piClim-BC tier-2 pre-industrial climatological SSTs and forcing, but with 2014 black carbon emissions + # ssp370-lowNTCFCH4 tier-3 SSP3-7.0, with low NTCF emissions and methane concentrations + # ssp370pdSST tier-2 SSP3-7.0, with SSTs prescribed as present day + # ssp370SST-lowAer tier-2 SSP3-7.0, prescribed SSTs, with low aerosol emissions + # ssp370SST-lowBC tier-2 SSP3-7.0, prescribed SSTs, with low black carbon emissions + # ssp370SST-lowNTCFCH4 tier-3 SSP3-7.0, prescribed SSTs, with low NTCF emissions and methane concentrations + # Add also the LUMIP tier 2 experiments (see #680): + # land-cClim tier-2 historical land-only constant climate + # land-cCO2 tier-2 historical land-only constant CO2 + # land-noShiftCultivate tier-2 historical land-only with shifting cultivation turned off + # Add also RFMIP tier 2 experiments (see #694): + # piClim-histaer tier-2 transient effective radiative forcing by aerosols + # piClim-histall tier-2 transient effective radiative forcing + if ex.tier[0] in experiment_tiers_included or (ex.tier[0] == 2 and ex.label == 'amip-lfmip-pdLC') or \ + (ex.tier[0] == 2 and ex.label == 'amip-lfmip-rmLC') or \ + (ex.tier[0] == 2 and ex.label == 'hist-piAer') or \ + (ex.tier[0] == 2 and ex.label == 'histSST-piAer') or \ + (ex.tier[0] == 2 and ex.label == 'piClim-2xdust') or \ + (ex.tier[0] == 2 and ex.label == 'piClim-2xss') or \ + (ex.tier[0] == 2 and ex.label == 'piClim-BC') or \ + (ex.tier[0] == 3 and ex.label == 'ssp370-lowNTCFCH4') or \ + (ex.tier[0] == 2 and ex.label == 'ssp370pdSST') or \ + (ex.tier[0] == 2 and ex.label == 'ssp370SST-lowAer') or \ + (ex.tier[0] == 2 and ex.label == 'ssp370SST-lowBC') or \ + (ex.tier[0] == 3 and ex.label == 'ssp370SST-lowNTCFCH4') or \ + (ex.tier[0] == 2 and ex.label == 'land-cClim') or \ + (ex.tier[0] == 2 and ex.label == 'land-cCO2') or \ + (ex.tier[0] == 2 and ex.label == 'land-noShiftCultivate')or \ + (ex.tier[0] == 2 and ex.label == 'piClim-histaer') or \ + (ex.tier[0] == 2 and ex.label == 'piClim-histall'): + #os.system(command_x1) # Just set the toce fields false again because we still face troubles with them + #os.system(command_x2) # Delete the line with sfdsi_2 from the file_def_nemo-opa.xml files + os.system(command_01) + os.system(command_02) # Remove the freq_op attribute for the variable msftbarot (uoce_e3u_vsum_e2u_cumul) from the file_def_nemo.xml file #327 & e.g. #518-165 on the ec-earth portal + os.system(command_03) # Remove deptho from the file_def_nemo-opa.xml #249 + os.system(command_c ) # Switching the 'transect' variables off (the transect grid definition seems to depend on the XIOS 2.5 upgrade) + + # Looping over the various EC-Earth3 model configurations in order to generate for each of them the json cmip6 data request file: + for conf in model_configuration: + command_05 = 'drq2varlist --drq cmip6-data-request/cmip6-data-request-' + mip_label + '-' + ex.label + '-t' + str(ex.tier[0]) + '-p' + '1' + '/cmvme_' + mip_name + '_' + ex.label + '_' + str(ex.tier[0]) + '_1.xlsx --ececonf ' + conf + ' --varlist ' + cmip6_base_dir_name + mip_name + '/cmip6-experiment-' + mip_name + '-' + ex.label + '/cmip6-data-request-varlist-' + mip_name + '-' + ex.label + '-' + conf + '.json' + command_06 = './modify-metadata-template.sh ' + mip_name + ' ' + ex.label + ' ' + conf + '; mv -f metadata-cmip6-' + mip_name + '-' + ex.label + '-' + conf + '-*-template.json ' + cmip6_base_dir_name + mip_name + '/cmip6-experiment-' + mip_name + '-' + ex.label + command_07 = 'convert_component_to_flat_json ' + cmip6_base_dir_name + mip_name + '/cmip6-experiment-' + mip_name + '-' + ex.label + '/cmip6-data-request-varlist-' + mip_name + '-' + ex.label + '-' + conf + '.json' + command_08 = 'checkvars --asciionly -v --drq ' + 'cmip6-data-request-varlist-' + mip_name + '-' + ex.label + '-' + conf + '-flat.json' + ' --output ' + subdirname_experiment + '/request-overview' + command_09 = 'rm -f ' + 'cmip6-data-request-varlist*-flat.json' + command_10 = 'cat ' + subdirname_experiment + '/request-overview.available.txt ' + subdirname_experiment + '/volume-estimate.txt > ' + subdirname_experiment + '/request-overview-' + mip_name + '-' + ex.label + '-including-' + conf + '-preferences.txt' + command_11 = 'rm -f ' + subdirname_experiment + '/volume-estimate.txt' + command_12 = 'rm -f ' + subdirname_experiment + '/request-overview.available.txt' + os.system(command_05) # Produce the ec-earth component json data request variant, the so called varlist.json + os.system(command_06) # Produce the metadata files for this MIP experiment. + if add_request_overview: + os.system(command_07) # Convert the json data request file which contains the EC-Earth components to a flat json data request file for checkvars + os.system(command_08) # Execute checkvars --asciionly for the flat json data request file which includes the preferences + os.system(command_09) # Remove the flat json file + os.system(command_10) # Concatenate volume estimates to the request overview file + os.system(command_11) # Remove volume estimate file + os.system(command_12) # Remove the intermediate request-overview.available.txt file + + experiment_counter = experiment_counter + 1 + else: + print(' Tier {} experiments are not included: Skipping: {}'.format(ex.tier[0], command_01)) + else: + print(' EC-Earth3 does not participate in {:11}: Skipping: {}'.format(mip_name, command_01)) + + print(' There are {} experiments included. '.format(experiment_counter)) + + + # Add a test case with which all available variables over all EC-Earth MIP experiments are switched on, + # i.e. are enabled in the file_def files: + if os.path.isdir(cmip6_base_dir_name + "CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-piControl/"): + command_a = "cp -r " + cmip6_base_dir_name + "CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-piControl/ " + cmip6_base_dir_name + "test-all-ece-mip-variables/" + else: + command_a = "cp -r " + cmip6_base_dir_name + "CMIP/cmip6-experiment-CMIP-piControl/ " + cmip6_base_dir_name + "test-all-ece-mip-variables/" + command_b = "sed -i 's/enabled=\"False\"/enabled=\"True\"/' " + cmip6_base_dir_name + "test-all-ece-mip-variables/file_def_nemo-*" + command_c = "sed -i 's/enabled=\"True\" field_ref=\"transport/enabled=\"False\" field_ref=\"transport/' " + cmip6_base_dir_name + "test-all-ece-mip-variables/file_def_nemo-*" + command_d = "echo 'This directory is intended for the maintainers only. In order to be able to test all NEMO OPA & LIM output by running one experiment, all those fields are enabled in the OPA & LIM file_def files in this directory. And in order to be able to test all IFS output by running one experiment, all available IFS fields are enabled in the ppt files.' > " + cmip6_base_dir_name + "test-all-ece-mip-variables/README" + command_e = "rm -f " + cmip6_base_dir_name + "test-all-ece-mip-variables/ppt* " + cmip6_base_dir_name + "test-all-ece-mip-variables/cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json " + cmip6_base_dir_name + "test-all-ece-mip-variables/volume-estimate-CMIP-piControl-EC-EARTH-AOGCM.txt " + cmip6_base_dir_name + "test-all-ece-mip-variables/request-overview*.txt" + command_f = "drq2ppt --allvars" + command_g = "mv -f ppt0000000000 pptdddddd* " + cmip6_base_dir_name + "test-all-ece-mip-variables/; rm -f volume-estimate-ifs.txt" + command_h = "drq2varlist --allvars --ececonf EC-EARTH-AOGCM --varlist " + cmip6_base_dir_name + "test-all-ece-mip-variables/cmip6-data-request-varlist-all-EC-EARTH-AOGCM.json" + command_i = "drq2varlist --allvars --ececonf EC-EARTH-CC --varlist " + cmip6_base_dir_name + "test-all-ece-mip-variables/cmip6-data-request-varlist-all-EC-EARTH-CC.json" + command_j = "drq2varlist --allvars --ececonf EC-EARTH-AerChem --varlist " + cmip6_base_dir_name + "test-all-ece-mip-variables/cmip6-data-request-varlist-all-EC-EARTH-AerChem.json" + command_k = "rm -f " + cmip6_base_dir_name + "test-all-ece-mip-variables/lpjg_cmip6_output.ins; ln -s ../../../lpjg_cmip6_output.ins lpjg_cmip6_output.ins; mv -f lpjg_cmip6_output.ins " + cmip6_base_dir_name + "test-all-ece-mip-variables/" + + + command_l1 = 'convert_component_to_flat_json ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/cmip6-data-request-varlist-all-EC-EARTH-AOGCM.json' + command_m1 = 'convert_component_to_flat_json ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/cmip6-data-request-varlist-all-EC-EARTH-CC.json' + command_n1 = 'convert_component_to_flat_json ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/cmip6-data-request-varlist-all-EC-EARTH-AerChem.json' + command_l2 = 'checkvars --asciionly -v --drq ' + 'cmip6-data-request-varlist-all-EC-EARTH-AOGCM-flat.json' + ' --output ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/request-overview-all-including-EC-EARTH-AOGCM-preferences' + command_m2 = 'checkvars --asciionly -v --drq ' + 'cmip6-data-request-varlist-all-EC-EARTH-CC-flat.json' + ' --output ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/request-overview-all-including-EC-EARTH-CC-preferences' + command_n2 = 'checkvars --asciionly -v --drq ' + 'cmip6-data-request-varlist-all-EC-EARTH-AerChem-flat.json' + ' --output ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/request-overview-all-including-EC-EARTH-AerChem-preferences' + command_o = 'rm -f ' + 'cmip6-data-request-varlist-all-EC-EARTH-*-flat.json' + command_p = ' mv -f ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/request-overview-all-including-EC-EARTH-AOGCM-preferences.available.txt ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/request-overview-all-including-EC-EARTH-AOGCM-preferences.txt' + command_q = ' mv -f ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/request-overview-all-including-EC-EARTH-CC-preferences.available.txt ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/request-overview-all-including-EC-EARTH-CC-preferences.txt' + command_r = ' mv -f ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/request-overview-all-including-EC-EARTH-AerChem-preferences.available.txt ' + cmip6_base_dir_name + 'test-all-ece-mip-variables/request-overview-all-including-EC-EARTH-AerChem-preferences.txt' + + os.system(command_a) # Create a new subdirectory for testing all available variables in the file_def files + os.system(command_b) # Switch on all available variables in the file_def files + os.system(command_c) # Switching the 'transect' variables off (the transect grid definition seems to depend on the XIOS 2.5 upgrade) + os.system(command_d) # Add a README to the test-all-ece-mip-variables directory + os.system(command_e) # Remove the piControl ppt, json data request and volume estimate files from the test-all-ece-mip-variables directory + os.system(command_f) # Create the ppt files which include all IFS available variables + os.system(command_g) # Move the ppt files which include all IFS available variables to the test-all-ece-mip-variables directory and remove the volume estimate file. + os.system(command_h) # Create the json data request file which includes all available variables for EC-Earth3-AOGCM + os.system(command_i) # Create the json data request file which includes all available variables for EC-Earth3-CC + os.system(command_j) # Create the json data request file which includes all available variables for EC-Earth3-AerChem + os.system(command_k) # Remove the piControl LPJG instruction file, and add a link to the instruction file which includes all available LPJG variables. + os.system(command_l1) # Convert the json data request file which contains the EC-Earth AOGCM components to a flat json data request file for checkvars + os.system(command_m1) # Convert the json data request file which contains the EC-Earth CC components to a flat json data request file for checkvars + os.system(command_n1) # Convert the json data request file which contains the EC-Earth AerChem components to a flat json data request file for checkvars + os.system(command_l2) # Execute checkvars --asciionly for the flat json data request file which includes the EC-Earth AOGCM preferences + os.system(command_m2) # Execute checkvars --asciionly for the flat json data request file which includes the EC-Earth CC preferences + os.system(command_n2) # Execute checkvars --asciionly for the flat json data request file which includes the EC-Earth AerChem preferences + os.system(command_o ) # Remove the flat json files + os.system(command_p ) # Rename (omit the avilable label) the request-overview EC-Earth AOGCM file + os.system(command_q ) # Rename (omit the avilable label) the request-overview EC-Earth CC file + os.system(command_r ) # Rename (omit the avilable label) the request-overview EC-Earth AerChem file + + command_fix_s245_s370 = "./apply-the-s126-s585-request-for-s245-370.sh " + cmip6_base_dir_name + os.system(command_fix_s245_s370) # See issue 517: ScenarioMIP requests for s245 & s370 are taken equal to the ones of s585 & s126. + + + include_covidmip = True + #include_covidmip = False # for a faster test + if include_covidmip: + # Create and add the CovidMIP control output files: + command_covidmip_rm = "rm -rf CovidMIP" + command_covidmip_baseline = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-baseline EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-baseline " + command_covidmip_covid = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-covid EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-covid " + command_covidmip_cov_strgreen = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-cov-strgreen EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-cov-strgreen" + command_covidmip_cov_modgreen = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-cov-modgreen EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-cov-modgreen" + command_covidmip_cov_fossil = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-cov-fossil EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-cov-fossil " + command_covidmip_cov_aer = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/cmip6-data-request-CovidMIP/cmvme_CMIP_ssp245_1_1-additional.xlsx CovidMIP ssp245-cov-aer EC-EARTH-AOGCM CovidMIP/cmip6-experiment-CovidMIP-ssp245-cov-aer " + command_covidmip_mv = "mv -f CovidMIP " + cmip6_base_dir_name + + os.system(command_covidmip_rm ) + os.system(command_covidmip_baseline ) + os.system(command_covidmip_covid ) + os.system(command_covidmip_cov_strgreen) + os.system(command_covidmip_cov_modgreen) + os.system(command_covidmip_cov_fossil ) + os.system(command_covidmip_cov_aer ) + os.system(command_covidmip_mv ) + + + if not activate_pextra_mode: + include_compact_request = True + #include_compact_request = False # for a faster test + if include_compact_request: + # Create and add the compact request control output files: + command_compact_request_rm = "rm -rf compact-request" + command_compact_request = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/compact-request/cmvme_CMIP_ssp245_1_1-additional.xlsx CMIP piControl EC-EARTH-AOGCM compact-request" + command_compact_request_mv = "mv -f compact-request " + output_dir_name + + os.system(command_compact_request_rm ) + os.system(command_compact_request ) + os.system(command_compact_request_mv ) + + include_rcm_dynamic_plev_forcing = True + #include_rcm_dynamic_plev_forcing = False # for a faster test + if include_rcm_dynamic_plev_forcing: + # Create and add the rcm dynamic plev forcing control output files: + command_rcm_plev_rm = "rm -rf rcm-dynamic-plev-forcing" + command_rcm_plev23_histor = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx CMIP historical EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical " + command_rcm_plev23_ssp119 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp119 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp119" + command_rcm_plev23_ssp126 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp126 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp126" + command_rcm_plev23_ssp245 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp245 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp245" + command_rcm_plev23_ssp370 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp370 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp370" + command_rcm_plev23_ssp585 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev23r.xlsx ScenarioMIP ssp585 EC-EARTH-AOGCM rcm-dynamic-plev23-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585" + command_rcm_plev36_histor = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx CMIP historical EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical " + command_rcm_plev36_ssp119 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp119 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp119" + command_rcm_plev36_ssp126 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp126 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp126" + command_rcm_plev36_ssp245 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp245 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp245" + command_rcm_plev36_ssp370 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp370 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp370" + command_rcm_plev36_ssp585 = "./genecec-for-individual-experiments.sh ../resources/miscellaneous-data-requests/knmi23-dutch-scenarios/cmvme_CMIP_ssp245_1_1-knmi23-plev36.xlsx ScenarioMIP ssp585 EC-EARTH-AOGCM rcm-dynamic-plev36-forcing/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585" + command_rcm_plev_mv = "mv -f rcm-dynamic-plev23-forcing rcm-dynamic-plev36-forcing " + output_dir_name + + os.system(command_rcm_plev_rm ) + os.system(command_rcm_plev23_histor ) + #os.system(command_rcm_plev23_ssp119 ) + os.system(command_rcm_plev23_ssp126 ) + os.system(command_rcm_plev23_ssp245 ) + #os.system(command_rcm_plev23_ssp370 ) + os.system(command_rcm_plev23_ssp585 ) + os.system(command_rcm_plev36_histor ) + #os.system(command_rcm_plev36_ssp119 ) + os.system(command_rcm_plev36_ssp126 ) + os.system(command_rcm_plev36_ssp245 ) + #os.system(command_rcm_plev36_ssp370 ) + os.system(command_rcm_plev36_ssp585 ) + os.system(command_rcm_plev_mv ) + + if activate_pextra_mode: + os.system('./switch-on-off-pextra-mode.sh deactivate-pextra-mode') + +else: + print() + print(' This script needs one argument: a config file name. E.g.:') + print(' ', sys.argv[0], 'config-genecec') + print() diff --git a/ece2cmor/ece2cmor3/scripts/generate-lpjguess.json.sh b/ece2cmor/ece2cmor3/scripts/generate-lpjguess.json.sh new file mode 100755 index 0000000000000000000000000000000000000000..3831cc83010511cbc0188afd880cd8443f716cee --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/generate-lpjguess.json.sh @@ -0,0 +1,230 @@ +#!/bin/bash +# Thomas Reerink +# +# This scripts requires 1 argument: +# +# ${1} the first argument is the ouput file: the new lpj-guess.json file. +# +# Run example: +# ./generate-lpjguess.json.sh new-lpjguess.json +# + +# The current list is in the arr array is compiled by considering all variables +# which are marked as: "Available in LPJ-GUESS" in the file +# resources/pre-list-of-identified-missing-cmip6-requested-variables.xlsx +# These variables are copied in an ascii file, e.g.: lpjg-list-new.txt +# Thereafter sorted and made unique (i.e. the duplicate once are removed) by: +# sort lpjg-list-new.txt |uniq > lpjg-list-new-sorted-unique.txt +# And that list is pasted here in the arr variable. + +# Declare an array variable with all the lpjg cmor variable names: +declare -a arr=( +"baresoilFrac" +"burntFractionAll" +"cCwd" +"cLand" +"cLeaf" +"cLitter" +"cLitterAbove" +"cLitterBelow" +"cLitterCwd" +"cLitterLut" +"cLitterSubSurf" +"cLitterSurf" +"cOther" +"cProduct" +"cProductLut" +"cRoot" +"cropFrac" +"cropFracC3" +"cropFracC4" +"cSoil" +"cSoilFast" +"cSoilLut" +"cSoilMedium" +"cSoilSlow" +"cStem" +"cTotFireLut" +"cVeg" +"cVegLut" +"cWood" +"evspsblpot" +"evspsblsoi" +"evspsblveg" +"fAnthDisturb" +"fBNF" +"fCLandToOcean" +"fco2antt" +"fco2nat" +"fDeforestToAtmos" +"fDeforestToProduct" +"fFire" +"fFireAll" +"fFireNat" +"fGrazing" +"fHarvest" +"fHarvestToAtmos" +"fLitterFire" +"fLitterSoil" +"fLuc" +"fLulccAtmLut" +"fLulccProductLut" +"fLulccResidueLut" +"fNAnthDisturb" +"fNdep" +"fNfert" +"fNgas" +"fNgasFire" +"fNgasNonFire" +"fNLandToOcean" +"fNleach" +"fNLitterSoil" +"fNloss" +"fNnetmin" +"fNProduct" +"fNup" +"fNVegLitter" +"fProductDecomp" +"fProductDecompLut" +"fracInLut" +"fracLut" +"fracOutLut" +"fVegFire" +"fVegLitter" +"gpp" +"gppGrass" +"gppLut" +"gppTree" +"grassFrac" +"grassFracC3" +"grassFracC4" +"irrLut" +"lai" +"laiLut" +"landCoverFrac" +"mrro" +"mrroLut" +"mrros" +"mrsll" +"mrso" +"mrsol" +"mrsoLut" +"mrsos" +"mrsosLut" +"nbp" +"necbLut" +"nep" +"netAtmosLandCO2Flux" +"nLand" +"nLeaf" +"nLitter" +"nLitterCwd" +"nLitterSubSurf" +"nLitterSurf" +"nMineral" +"nMineralNH4" +"nMineralNO3" +"nOther" +"npp" +"nppGrass" +"nppLut" +"nppTree" +"nProduct" +"nRoot" +"nSoil" +"nStem" +"nVeg" +"nwdFracLut" +"pastureFrac" +"pastureFracC3" +"pastureFracC4" +"prCrop" +"prveg" +"ra" +"raGrass" +"raLeaf" +"raLut" +"raOther" +"raRoot" +"raStem" +"raTree" +"residualFrac" +"rGrowth" +"rh" +"rhLitter" +"rhLut" +"rhSoil" +"rMaint" +"shrubFrac" +"tran" +"treeFrac" +"treeFracBdlDcd" +"treeFracBdlEvg" +"treeFracNdlDcd" +"treeFracNdlEvg" +"tsl" +"vegFrac" +"vegHeightTree" +) + + +function add_item { + echo ' {' >> ${output_file} + echo ' "source": "'$1'",' >> ${output_file} + case $1 in + burntFractionAll ) # In contrast to other fractions in LPJ-GIESS this one + #echo ' "convert": "frac2percent",' >> ${output_file} # is alreay in percentage, therefore omitting for the + ;; # variable burntFractionAll the conversion (see#546). + *Frac* ) + echo ' "convert": "frac2percent",' >> ${output_file} + ;; + esac + echo ' "target": "'$1'"' >> ${output_file} + echo ' },' >> ${output_file} +} + +function add_last_item { + echo ' {' >> ${output_file} + echo ' "source": "'$1'",' >> ${output_file} + case $1 in + *Frac* ) + echo ' "convert": "frac2percent",' >> ${output_file} + ;; + esac + echo ' "target": "'$1'"' >> ${output_file} + echo ' }' >> ${output_file} +} + + +if [ "$#" -eq 1 ]; then + output_file=$1 + + + echo '[' > ${output_file} + + # Loop through the array with all the nemo cmor variable names: + # (Note individual array elements can be accessed by using "${arr[0]}", "${arr[1]}") + + N=${#arr[@]} # array length + last_item="${arr[N-1]}" +#echo ${N} ${last_item} + for i in "${arr[@]}" + do + if [ "$i" == ${last_item} ]; then + add_last_item "$i" + else + add_item "$i" + fi + done + + echo ']' >> ${output_file} + + + echo ' The file ' ${output_file} ' is created.' + +else + echo ' ' + echo ' This scripts requires one argument, e.g.:' + echo ' ' $0 new-lpjguesspar.json + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/scripts/generate-nemopar.json.sh b/ece2cmor/ece2cmor3/scripts/generate-nemopar.json.sh new file mode 100755 index 0000000000000000000000000000000000000000..8c8c8e9b4ae4502878a85b0e3819d386d9bc7833 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/generate-nemopar.json.sh @@ -0,0 +1,371 @@ +#!/bin/bash +# Thomas Reerink +# +# This scripts requires 1 argument: +# +# ${1} the first argument is the ouput file: the new nemopar.json file. +# +# Run example: +# ./generate-nemopar.json.sh new-nemopar.json +# + +# The default example list for this moment could be produced by running: +# more nemopar.json |grep -e target | sed -e 's/.*://' +# And pasting the result here in the arr array. + +# The current list is in the arr array is produced by running: +# more ${HOME}/cmorize/shaconemo/ping-files/r274/cmor-varlist-based-on-ping-r274-without-dummy-lines.txt | sed -e 's/^/"/' -e 's/$/"/' > tmp-nemopar-list.txt +# And pasting the result here. + +# Declare an array variable with all the nemo cmor variable names: +declare -a arr=( +"agessc" +"areacello" +"basin" +"bigthetao" +"bigthetaoga" +"cfc11" +"cfc12" +"deptho" +"diftrblo2d" +"diftrelo2d" +"diftrxylo2d" +"difvho" +"difvmo" +"difvmto" +"difvso" +"difvtrto" +"dispkevfo" +"dispkexyfo2d" +"evs" +"fgcfc11" +"fgcfc12" +"fgsf6" +"ficeberg2d" +"flandice" +"friver" +"fsitherm" +"hcont300" +"hfbasin" +"hfbasinpmadv" +"hfcorr" +"hfds" +"hfevapds" +"hfgeou" +"hfibthermds2d" +"hflso" +"hfrainds" +"hfrunoffds2d" +"hfsnthermds2d" +"hfsso" +"hfx" +"hfy" +"htovgyre" +"htovovrt" +"masscello" +"masso" +"mfo" +"mlotst" +"mlotstmax" +"mlotstmin" +"mlotstsq" +"msftbarot" +"msftyz" +"obvfsq" +"ocontempdiff" +"ocontemppadvect" +"ocontemppmdiff" +"ocontemprmadvect" +"ocontemptend" +"omldamax" +"osaltdiff" +"osaltpadvect" +"osaltpmdiff" +"osaltrmadvect" +"osalttend" +"pbo" +"pso" +"rlntds" +"rsdo" +"rsntds" +"sf6" +"sfdsi" +"sfdsi_2" +"sftof" +"sltbasin" +"sltnortha" +"sltovgyre" +"sltovovrt" +"so" +"sob" +"soga" +"somint" +"sos" +"sosga" +"sossq" +"t20d" +"tauuo" +"tauvo" +"thetao" +"thetaoga" +"thetaot" +"thetaot2000" +"thetaot300" +"thetaot700" +"thkcello" +"tnkebto2d" +"tnpeo" +"tob" +"tos" +"tosga" +"tossq" +"umo" +"uo" +"vmo" +"vo" +"volo" +"wfcorr" +"wfo" +"wfonocorr" +"wmo" +"wo" +"zhalfo" +"zos" +"zossq" +"zostoga" +"bfe" +"bfeos" +"bsi" +"bsios" +"calc" +"calcos" +"chl" +"chldiat" +"chldiatos" +"chlmisc" +"chlmiscos" +"chlos" +"co3" +"co3os" +"co3satcalc" +"co3satcalcos" +"dcalc" +"detoc" +"detocos" +"dfe" +"dfeos" +"dissic" +"dissicnat" +"dissicnatos" +"dissicos" +"dissoc" +"dissocos" +"dpco2" +"dpo2" +"epc100" +"epcalc100" +"epfe100" +"epsi100" +"expc" +"expcalc" +"expfe" +"expn" +"expp" +"expsi" +"fbddtalk" +"fbddtdic" +"fbddtdife" +"fbddtdin" +"fbddtdip" +"fbddtdisi" +"fgco2" +"fgo2" +"fric" +"frn" +"froc" +"fsfe" +"fsn" +"graz" +"intdic" +"intdoc" +"intpbfe" +"intpbsi" +"intpcalcite" +"intpn2" +"intpp" +"intppcalc" +"intppdiat" +"intppmisc" +"intppnitrate" +"limfediat" +"limfemisc" +"limirrdiat" +"limirrmisc" +"limndiaz" +"limnmisc" +"nh4" +"nh4os" +"no3" +"no3os" +"o2" +"o2min" +"o2os" +"pbfe" +"pbsi" +"pcalc" +"ph" +"phos" +"phyc" +"phycos" +"phydiat" +"phydiatos" +"phyfe" +"phyfeos" +"phymisc" +"phymiscos" +"physi" +"physios" +"pnitrate" +"po4" +"po4os" +"pp" +"ppdiat" +"ppmisc" +"ppos" +"remoc" +"si" +"sios" +"spco2" +"talk" +"talknat" +"talknatos" +"talkos" +"zmeso" +"zmesoos" +"zmicro" +"zmicroos" +"zo2min" +"zooc" +"zoocos" +"siage" +"siareaacrossline" +"siarean" +"siareas" +"sicompstren" +"siconc" +"sidconcdyn" +"sidconcth" +"sidivvel" +"sidmassdyn" +"sidmassevapsubl" +"sidmassgrowthbot" +"sidmassgrowthwat" +"sidmassmeltbot" +"sidmassmelttop" +"sidmasssi" +"sidmassth" +"sidmasstranx" +"sidmasstrany" +"siextentn" +"siextents" +"sifb" +"siflcondbot" +"siflcondtop" +"siflfwbot" +"siflfwdrain" +"siflsensupbot" +"siflswdtop" +"siforcecoriolx" +"siforcecorioly" +"siforceintstrx" +"siforceintstry" +"siforcetiltx" +"siforcetilty" +"sihc" +"siitdconc" +"siitdsnthick" +"siitdthick" +"simass" +"simassacrossline" +"sisali" +"sisaltmass" +"sishevel" +"sisnhc" +"sisnmass" +"sisnthick" +"sispeed" +"sistremax" +"sistresave" +"sistrxdtop" +"sistrxubot" +"sistrydtop" +"sistryubot" +"sitempbot" +"sitempsnic" +"sitemptop" +"sithick" +"sitimefrac" +"siu" +"siv" +"sivol" +"sivoln" +"sivols" +"sndmassdyn" +"sndmassmelt" +"sndmasssi" +"sndmasssnf" +"sndmasssubl" +"snmassacrossline" +) + + +function add_item { + echo ' {' >> ${output_file} + echo ' "source": "'$1'",' >> ${output_file} + echo ' "target": "'$1'"' >> ${output_file} + echo ' },' >> ${output_file} +} + +function add_last_item { + echo ' {' >> ${output_file} + echo ' "source": "'$1'",' >> ${output_file} + echo ' "target": "'$1'"' >> ${output_file} + echo ' }' >> ${output_file} +} + + +if [ "$#" -eq 1 ]; then + output_file=$1 + + + echo '[' > ${output_file} + + # Loop through the array with all the nemo cmor variable names: + # (Note individual array elements can be accessed by using "${arr[0]}", "${arr[1]}") + + N=${#arr[@]} # array length + last_item="${arr[N-1]}" +#echo ${N} ${last_item} + for i in "${arr[@]}" + do + if [ "$i" == ${last_item} ]; then + add_last_item "$i" + else + add_item "$i" + fi + done + + echo ']' >> ${output_file} + + # For this Ofx variable the NEMO bathy_meter.nc file which contains a non-cmor source name: + sed -i 's/"source": "deptho"/"source": "Bathymetry"/' ${output_file} + sed -i -e 's/deptho"/deptho",/' -e '/deptho/a\' -e ' "masked": "sftof"' ${output_file} + + echo ' The file ' ${output_file} ' is created.' + +else + echo ' ' + echo ' This scripts requires one argument, e.g.:' + echo ' ' $0 new-nemopar.json + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/scripts/generate-tm5.json.sh b/ece2cmor/ece2cmor3/scripts/generate-tm5.json.sh new file mode 100755 index 0000000000000000000000000000000000000000..34ef61e5344989fefd6519fd7451bad46d0056f4 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/generate-tm5.json.sh @@ -0,0 +1,185 @@ +#!/bin/bash +# Thomas Reerink +# +# This scripts requires 1 argument: +# +# ${1} the first argument is the ouput file: the new tm5.json file. +# +# Run example: +# ./generate-tm5.json.sh new-tm5.json +# + +# The current list is in the arr array is compiled by considering all variables +# which are marked as: "Available in TM5" in the file +# resources/pre-list-of-identified-missing-cmip6-requested-variables.xlsx + +# Declare an array variable with all the nemo cmor variable names: +declare -a arr=( +"abs550aer" +"airmass" +"bldep" +"c2h6" +"c3h6" +"c3h8" +"ch3coch3" +"ch4" +"ch4Clim" +"ch4global" +"ch4globalClim" +"cheaqpso4" +"chegpso4" +"chepsoa" +"co" +"co2" +"co2mass" +"concdust" +"depdust" +"dms" +"drybc" +"drydust" +"drynh3" +"drynh4" +"drynoy" +"dryo3" +"dryoa" +"dryso2" +"dryso4" +"dryss" +"ec550aer" +"emibc" +"emibvoc" +"emico" +"emidms" +"emidust" +"emiisop" +"emilnox" +"eminh3" +"eminox" +"emioa" +"emiso2" +"emiso4" +"emiss" +"emivoc" +"flashrate" +"hcho" +"hno3" +"ho2" +"isop" +"jno2" +"loaddust" +"lossch4" +"lossco" +"maxpblz" +"md" +"minpblz" +"mmraerh2o" +"mmrbc" +"mmrdust" +"mmrnh4" +"mmrno3" +"mmroa" +"mmrpm1" +"mmrpm10" +"mmrpm2p5" +"mmrso4" +"mmrsoa" +"mmrss" +"no" +"no2" +"noy" +"o3" +"o3Clim" +"o3loss" +"o3prod" +"o3ste" +"od440aer" +"od550aer" +"od550aerh2o" +"od550bc" +"od550dust" +"od550lt1aer" +"od550no3" +"od550oa" +"od550so4" +"od550soa" +"od550ss" +"od870aer" +"oh" +"pan" +"phalf" +"ps" +"ptp" +"sedustCI" +"sfno2" +"sfo3" +"sfo3max" +"sfpm25" +"so2" +"tatp" +"toz" +"tropoz" +"wetbc" +"wetdust" +"wetnh3" +"wetnh4" +"wetnoy" +"wetoa" +"wetso2" +"wetso4" +"wetss" +"ztp" +) + + +function add_item { + echo ' {' >> ${output_file} + echo ' "source": "'$1'",' >> ${output_file} + echo ' "target": "'$1'"' >> ${output_file} + echo ' },' >> ${output_file} +} + +function add_last_item { + echo ' {' >> ${output_file} + echo ' "source": "'$1'",' >> ${output_file} + echo ' "target": "'$1'"' >> ${output_file} + echo ' }' >> ${output_file} +} + + +if [ "$#" -eq 1 ]; then + output_file=$1 + + + echo '[' > ${output_file} + + # Loop through the array with all the nemo cmor variable names: + # (Note individual array elements can be accessed by using "${arr[0]}", "${arr[1]}") + + N=${#arr[@]} # array length + last_item="${arr[N-1]}" +#echo ${N} ${last_item} + for i in "${arr[@]}" + do + if [ "$i" == ${last_item} ]; then + add_last_item "$i" + else + add_item "$i" + fi + done + + echo ']' >> ${output_file} + + # Adjust source for ch4Clim & ch4global & ch4globalClim: + sed -i -e 's/"source": "ch4Clim"/"source": "ch4"/' ${output_file} + sed -i -e 's/"source": "ch4global"/"source": "ch4"/' ${output_file} + sed -i -e 's/"source": "ch4globalClim"/"source": "ch4"/' ${output_file} + + + echo ' The file ' ${output_file} ' is created.' + +else + echo ' ' + echo ' This scripts requires one argument, e.g.:' + echo ' ' $0 new-tm5par.json + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/scripts/grib2csv.py b/ece2cmor/ece2cmor3/scripts/grib2csv.py new file mode 100755 index 0000000000000000000000000000000000000000..52a663c10030da668968278df7fe6bd3e6911a4a --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/grib2csv.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python +import argparse +import csv + +import os + +from ece2cmor3 import grib_file + + +def main(): + parser = argparse.ArgumentParser(description="Create csv file of grib field description parameters (for testing " + "only)") + parser.add_argument("input", metavar="FILE", type=str, help="Input grib file (Required)") + + args = parser.parse_args() + + os.environ["GRIB_API_PYTHON_NO_TYPE_CHECKS"] = "1" + + with open(args.input, 'r') as input_file, open(os.path.basename(args.input) + ".csv", 'w') as output_file: + reader = grib_file.ecmwf_grib_api(input_file) + writer = csv.writer(output_file) + while reader.read_next(headers_only=True): + row = [reader.get_field(name) for name in grib_file.csv_grib_mock.columns] + if row[2] in [38, 42, 236]: + row[4] = 289 + writer.writerow(row) + reader.release() + + +if __name__ == "__main__": + main() diff --git a/ece2cmor/ece2cmor3/scripts/make_dynvars.sh b/ece2cmor/ece2cmor3/scripts/make_dynvars.sh new file mode 100755 index 0000000000000000000000000000000000000000..1edaadb109606396a38b4daa44241993a77de1a4 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/make_dynvars.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +ODIR=$1 +EXP=$2 +YR=$3 + +echo "Running my script in ${PWD} on directory ${ODIR}..." +echo "Output files: $(ls "${ODIR}"/ICMGG"${EXP}"+"${YR}"??)" +echo "The requested variables are ""$4""" diff --git a/ece2cmor/ece2cmor3/scripts/mip-experiment-list.py b/ece2cmor/ece2cmor3/scripts/mip-experiment-list.py new file mode 100755 index 0000000000000000000000000000000000000000..32904453f619d7e3b502fb185eafd500a6c06453 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/mip-experiment-list.py @@ -0,0 +1,77 @@ +#!/usr/bin/env python +# Thomas Reerink +# +# Run example: +# python mip-experiment-list.py +# +# Looping over all MIPs and within each MIP over all its MIP experiments. +# Printing the MIP experiment list with some additional info. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# + + +from dreqPy import dreq +dq = dreq.loadDreq() + +mip_counter = 0 +experiment_counter = 0 + +mip_list_file_name = 'mip-experiment-list.txt' +mip_list_file = open(mip_list_file_name, 'w' ) + +# Loop over the MIPs: +for mip in dq.coll['mip'].items: + mip_counter = mip_counter + 1 + #print('{:3} {:15} {}'.format(mip_counter, mip.label, mip)) + print('{:3} {:15} {}'.format(mip_counter, mip.label, str(mip).replace('Item <1.1 Model Intercomparison Project>: [', '').replace(']', '').replace(mip.label, '').replace(' - set of', 'DECK - set of'))) + # Loop over the MIP experiments: + for u in dq.inx.iref_by_sect[mip.uid].a['experiment']: + ex = dq.inx.uid[u] + if mip.label != ex.mip: + print(' The mip.label and ex.mip are different: {:15} versus {:15}'.format(mip.label, ex.mip)) + mip_list_file.write( '{:12} {:28} tier-{:1} {}'.format(ex.mip, ex.label, ex.tier[0], ex.title) + '\n') + experiment_counter = experiment_counter + 1 + +mip_list_file.close() + +print('Number of MIPs is: {:3} and the number of MIP experiments is: {}'.format(mip_counter, experiment_counter)) + +print('\nThe file ', mip_list_file_name, ' has been created.\n') + + +experiment_tiers_included = [1,2,3] +#ec_earth_mips = ['CMIP'] # for basic test +#ec_earth_mips = ['CMIP', 'DCPP'] +ec_earth_mips = ['CMIP', 'AerChemMIP', 'CDRMIP', 'C4MIP', 'DCPP', 'HighResMIP', 'ISMIP6', 'LS3MIP', 'LUMIP', 'OMIP', 'PAMIP', 'PMIP', 'RFMIP', 'ScenarioMIP', 'VolMIP', 'CORDEX', 'DynVarMIP', 'SIMIP', 'VIACSAB'] # All 19 EC-Earth MIPs +#ec_earth_mips = ['CMIP', 'AerChemMIP', 'CDRMIP', 'C4MIP', 'CFMIP', 'DAMIP', 'DCPP', 'FAFMIP', 'GeoMIP', 'GMMIP', 'HighResMIP', 'ISMIP6', 'LS3MIP', 'LUMIP', 'OMIP', 'PAMIP', 'PMIP', 'RFMIP', 'ScenarioMIP', 'VolMIP', 'CORDEX', 'DynVarMIP', 'SIMIP', 'VIACSAB'] # All 24 CMIP6 MIPs +experiment_counter = 0 + +mip_counter = 0 +experiment_counter = 0 + +mip_list_file_name = 'ece-mip-experiment-list.txt' +mip_list_file = open(mip_list_file_name, 'w' ) + +# Loop over the MIPs: +for mip in dq.coll['mip'].items: + if mip.label in ec_earth_mips: + mip_counter = mip_counter + 1 + #print('{:3} {:15} {}'.format(mip_counter, mip.label, mip)) + print('{:3} {:15} {}'.format(mip_counter, mip.label, str(mip).replace('Item <1.1 Model Intercomparison Project>: [', '').replace(']', '').replace(mip.label, '').replace(' - set of', 'DECK - set of'))) + # Loop over the MIP experiments: + #mip_list_file.write( '{:36}'.format(mip.label) + '\n') + mip_list_file.write( '\n{:36} {}'.format(mip.label, str(mip).replace('Item <1.1 Model Intercomparison Project>: [', '').replace(']', '').replace(mip.label, '').replace(' - set of', 'DECK - set of')) + '\n') + for u in dq.inx.iref_by_sect[mip.uid].a['experiment']: + #if ex.tier[0] in experiment_tiers_included and mip.label in ec_earth_mips: + ex = dq.inx.uid[u] + mip_list_file.write( ' {:28} tier-{:1} {}'.format(ex.label, ex.tier[0], ex.title) + '\n') + #mip_list_file.write( ' {:28} tier-{:1}'.format(ex.label, ex.tier[0]) + '\n') + experiment_counter = experiment_counter + 1 + +mip_list_file.close() + +print('Number of MIPs is: {:3} and the number of MIP experiments is: {}'.format(mip_counter, experiment_counter)) + +print('\nThe file ', mip_list_file_name, ' has been created.\n') diff --git a/ece2cmor/ece2cmor3/scripts/modify-metadata-template.sh b/ece2cmor/ece2cmor3/scripts/modify-metadata-template.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d867e6d799340e7b46e984609272dca5ff4559f --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/modify-metadata-template.sh @@ -0,0 +1,562 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This scripts needs four or five arguments +# +# first argument is the MIP name +# second argument is the experiment name or MIP name in the latter case all MIP experiments are taken. +# third argument is the ec-earth model configuration +# fourth OPTIONAL argument is the meta data template json file which is used as input, the file, e.g. (default): resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# +# Run this script without arguments for examples how to call this script. +# +# With this script it is possible to generate a dedicated metadata template json file for each ec-earth3 cmip6 MIP experiment for all active components. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script is called in a loop over the MIP experiments by the script: +# genecec.py + +if [ "$#" -eq 3 ] || [ "$#" -eq 4 ]; then + mip=$1 + experiment=$2 + ececonf=$3 + input_template=../resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json + if [ "$#" -eq 4 ]; then input_template=$4; fi + + + if [ "${ececonf}" != 'EC-EARTH-AOGCM' ] && [ "${ececonf}" != 'EC-EARTH-HR' ] && [ "${ececonf}" != 'EC-EARTH-LR' ] && [ "${ececonf}" != 'EC-EARTH-CC' ] && [ "${ececonf}" != 'EC-EARTH-GrisIS' ] && [ "${ececonf}" != 'EC-EARTH-AerChem' ] && [ "${ececonf}" != 'EC-EARTH-Veg' ] && [ "${ececonf}" != 'EC-EARTH-Veg-LR' ]; then + echo ' Error in ' $0 ': unkown ec-earth configuration: ' ${ececonf} + echo ' Valid options: ' 'EC-EARTH-AOGCM' 'EC-EARTH-HR' 'EC-EARTH-LR' 'EC-EARTH-CC' 'EC-EARTH-GrisIS' 'EC-EARTH-AerChem' 'EC-EARTH-Veg' 'EC-EARTH-Veg-LR' + exit + fi + + # Some of the experiments do not use nemo as they are atmosphere-only experiments. In that case the source_type has to become AGCM instead of AOGCM: + declare -a agcm_exceptions=('amip' 'SST' 'piClim') + adjust_to_agcm=false + for j in "${agcm_exceptions[@]}" + do + if [[ "${experiment}" == *"${j}"* ]]; then + echo + echo ' The ' ${experiment} ' experiment has been identified as an AGCM experiment because it carries the substring: ' ${j} + adjust_to_agcm=true + fi + done + + if [ "${adjust_to_agcm}" = true ]; then + source_type_index=8 # The AGCM case + else + source_type_index=7 # The usual AOGCM case + fi + + if [ "${ececonf}" = 'EC-EARTH-AOGCM' ]; then declare -a model_components=('ifs' 'nemo' ); fi + if [ "${ececonf}" = 'EC-EARTH-HR' ]; then declare -a model_components=('ifs' 'nemo' ); fi + if [ "${ececonf}" = 'EC-EARTH-LR' ]; then declare -a model_components=('ifs' 'nemo' ); fi + if [ "${ececonf}" = 'EC-EARTH-CC' ]; then declare -a model_components=('ifs' 'nemo' 'tm5' 'lpjg'); fi + if [ "${ececonf}" = 'EC-EARTH-GrisIS' ]; then declare -a model_components=('ifs' 'nemo' ); fi + if [ "${ececonf}" = 'EC-EARTH-AerChem' ]; then declare -a model_components=('ifs' 'nemo' 'tm5' ); fi + if [ "${ececonf}" = 'EC-EARTH-Veg' ]; then declare -a model_components=('ifs' 'nemo' 'lpjg'); fi + if [ "${ececonf}" = 'EC-EARTH-Veg-LR' ]; then declare -a model_components=('ifs' 'nemo' 'lpjg'); fi + + # NAME IN SCRIPT ECE CONF NAME IFS RES NEMO RES TM5 RES LPJG RES PISCES RES PISM RES source_type AOGCM source_type AGCM + if [ "${ececonf}" = 'EC-EARTH-AOGCM' ]; then declare -a ece_res=('EC-Earth3' 'T255L91' 'ORCA1L75' 'none' 'none' 'none' 'none' 'AOGCM' 'AGCM' ); fi + if [ "${ececonf}" = 'EC-EARTH-HR' ]; then declare -a ece_res=('EC-Earth3-HR' 'T511L91' 'ORCA025L75' 'none' 'none' 'none' 'none' 'AOGCM' 'AGCM' ); fi + if [ "${ececonf}" = 'EC-EARTH-LR' ]; then declare -a ece_res=('EC-Earth3-LR' 'T159L62' 'ORCA1L75' 'none' 'none' 'none' 'none' 'AOGCM' 'AGCM' ); fi + if [ "${ececonf}" = 'EC-EARTH-CC' ]; then declare -a ece_res=('EC-Earth3-CC' 'T255L91' 'ORCA1L75' 'native regular 2x3 degree latxlon grid L10' 'T255L91' 'ORCA1L75' 'none' 'AOGCM BGC' 'AGCM BGC' ); fi + if [ "${ececonf}" = 'EC-EARTH-GrisIS' ]; then declare -a ece_res=('EC-Earth3-GrIS' 'T255L91' 'ORCA1L75' 'none' 'none' 'none' '5 x 5 km' 'AOGCM ISM' 'AGCM ISM' ); fi + if [ "${ececonf}" = 'EC-EARTH-AerChem' ]; then declare -a ece_res=('EC-Earth3-AerChem' 'T255L91' 'ORCA1L75' 'native regular 2x3 degree latxlon grid L34' 'none' 'none' 'none' 'AOGCM AER CHEM' 'AGCM AER CHEM' ); fi + if [ "${ececonf}" = 'EC-EARTH-Veg' ]; then declare -a ece_res=('EC-Earth3-Veg' 'T255L91' 'ORCA1L75' 'none' 'T255L91' 'none' 'none' 'AOGCM' 'AGCM' ); fi + if [ "${ececonf}" = 'EC-EARTH-Veg-LR' ]; then declare -a ece_res=('EC-Earth3-Veg-LR' 'T159L62' 'ORCA1L75' 'none' 'T159L62' 'none' 'none' 'AOGCM' 'AGCM' ); fi + + if [ "${ececonf}" = 'EC-EARTH-AOGCM' ]; then declare -a nom_res=('EC-Earth3' '100 km' '100 km' 'none' 'none' 'none' 'none' 'AOGCM' 'AGCM' ); fi + if [ "${ececonf}" = 'EC-EARTH-HR' ]; then declare -a nom_res=('EC-Earth3-HR' '50 km' '25 km' 'none' 'none' 'none' 'none' 'AOGCM' 'AGCM' ); fi + if [ "${ececonf}" = 'EC-EARTH-LR' ]; then declare -a nom_res=('EC-Earth3-LR' '100 km' '100 km' 'none' 'none' 'none' 'none' 'AOGCM' 'AGCM' ); fi + if [ "${ececonf}" = 'EC-EARTH-CC' ]; then declare -a nom_res=('EC-Earth3-CC' '100 km' '100 km' '250 km' '100 km' '100 km' 'none' 'AOGCM BGC' 'AGCM BGC' ); fi + if [ "${ececonf}" = 'EC-EARTH-GrisIS' ]; then declare -a nom_res=('EC-Earth3-GrIS' '100 km' '100 km' 'none' 'none' 'none' '5 km' 'AOGCM ISM' 'AGCM ISM' ); fi + if [ "${ececonf}" = 'EC-EARTH-AerChem' ]; then declare -a nom_res=('EC-Earth3-AerChem' '100 km' '100 km' '250 km' 'none' 'none' 'none' 'AOGCM AER CHEM' 'AGCM AER CHEM' ); fi + if [ "${ececonf}" = 'EC-EARTH-Veg' ]; then declare -a nom_res=('EC-Earth3-Veg' '100 km' '100 km' 'none' '100 km' 'none' 'none' 'AOGCM' 'AGCM' ); fi + if [ "${ececonf}" = 'EC-EARTH-Veg-LR' ]; then declare -a nom_res=('EC-Earth3-Veg-LR' '100 km' '100 km' 'none' '100 km' 'none' 'none' 'AOGCM' 'AGCM' ); fi + # https://www.earthsystemcog.org/site_media/projects/wip/CMIP6_global_attributes_filenames_CVs_v6.2.6.pdf + # https://github.com/WCRP-CMIP/CMIP6_CVs/blob/master/CMIP6_nominal_resolution.json + # IFS T511 T255 T159 ORCA1 ORCA0.25 TM5 LPJG=IFS + # 40 km 80 km 125 km 100 km 25 km native regular 2x3 degree latxlon grid => 348 km + + + + # Note that the code block below is produced by the create-parent-experiment-check-code.py script which + # collects the content from the cmor tables from the CMIP6_CV.json file (the sorted-code-parent-check.sh is pasted): + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'hist-1950HC' ]; then declare -a parent_info=('AerChemMIP' 'hist-1950HC' 'CMIP' 'historical' 'AOGCM' 'BGC' 'historical forcing, but with1950s halocarbon concentrations; initialized in 1950' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'hist-piAer' ]; then declare -a parent_info=('AerChemMIP' 'hist-piAer' 'CMIP' 'piControl' 'AOGCM' 'CHEM BGC' 'historical forcing, but with pre-industrial aerosol emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'hist-piNTCF' ]; then declare -a parent_info=('AerChemMIP' 'hist-piNTCF' 'CMIP' 'piControl' 'AOGCM' 'CHEM BGC' 'historical forcing, but with pre-industrial NTCF emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'histSST-1950HC' ]; then declare -a parent_info=('AerChemMIP' 'histSST-1950HC' 'AerChemMIP' 'histSST' 'AGCM' 'BGC' 'historical SSTs and historical forcing, but with 1950 halocarbon concentrations. Experiment is initialized from histSST (AerChemMIP) simulation from January 1950' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'histSST-noLu' ]; then declare -a parent_info=('AerChemMIP' 'histSST-noLu' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'historical SSTs and historical forcing, but with pre-industrial LULCC' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'histSST-piAer' ]; then declare -a parent_info=('AerChemMIP' 'histSST-piAer' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'historical SSTs and historical forcing, but with pre-industrial aerosol emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'histSST-piCH4' ]; then declare -a parent_info=('AerChemMIP' 'histSST-piCH4' 'CMIP' 'piControl' 'AGCM' 'BGC' 'historical SSTs and historical forcing, but with pre-industrial methane concentrations' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'histSST-piN2O' ]; then declare -a parent_info=('AerChemMIP' 'histSST-piN2O' 'CMIP' 'piControl' 'AGCM' 'BGC' 'historical SSTs and historical forcings, but with pre-industrial N2O concentrations' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'histSST-piNTCF' ]; then declare -a parent_info=('AerChemMIP' 'histSST-piNTCF' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'historical SSTs and historical forcing, but with pre-industrial NTCF emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'histSST-piO3' ]; then declare -a parent_info=('AerChemMIP' 'histSST-piO3' 'CMIP' 'piControl' 'AGCM' 'BGC' 'historical SSTs and historical forcing, but with pre-industrial ozone precursor emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'histSST' ]; then declare -a parent_info=('AerChemMIP' 'histSST' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'historical prescribed SSTs and historical forcing' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-2xDMS' ]; then declare -a parent_info=('AerChemMIP' 'piClim-2xDMS' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'pre-industrial climatological SSTs and forcing, but with doubled emissions of DMS' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-2xdust' ]; then declare -a parent_info=('AerChemMIP' 'piClim-2xdust' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'pre-industrial climatological SSTs and forcing, but with doubled emissions of dust' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-2xfire' ]; then declare -a parent_info=('AerChemMIP' 'piClim-2xfire' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'pre-industrial climatological SSTs and forcing, but with doubled emissions from fires' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-2xNOx' ]; then declare -a parent_info=('AerChemMIP' 'piClim-2xNOx' 'CMIP' 'piControl' 'AGCM' 'BGC' 'pre-industrial climatological SSTs and forcing, but with doubled production of NOx due to lightning' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-2xss' ]; then declare -a parent_info=('AerChemMIP' 'piClim-2xss' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'pre-industrial climatological SSTs and forcing, but with doubled emissions of sea salt' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-2xVOC' ]; then declare -a parent_info=('AerChemMIP' 'piClim-2xVOC' 'CMIP' 'piControl' 'AGCM' 'BGC' 'pre-industrial climatological SSTs and forcing, but with doubled emissions of biogenic VOCs' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-aer' ]; then declare -a parent_info=('AerChemMIP' 'piClim-aer' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'effective radiative forcing by present-day aerosols' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-BC' ]; then declare -a parent_info=('AerChemMIP' 'piClim-BC' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 black carbon emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-CH4' ]; then declare -a parent_info=('AerChemMIP' 'piClim-CH4' 'CMIP' 'piControl' 'AGCM' 'BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 methane concentrations (including chemistry)' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-control' ]; then declare -a parent_info=('AerChemMIP' 'piClim-control' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'Control simulation providing baseline for evaluating effective radiative forcing (ERF)' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-HC' ]; then declare -a parent_info=('AerChemMIP' 'piClim-HC' 'CMIP' 'piControl' 'AGCM' 'BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 halocarbon concentrations (including chemistry)' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-N2O' ]; then declare -a parent_info=('AerChemMIP' 'piClim-N2O' 'CMIP' 'piControl' 'AGCM' 'BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 N2O concentrations (including chemistry)' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-NH3' ]; then declare -a parent_info=('AerChemMIP' 'piClim-NH3' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 ammonia emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-NOx' ]; then declare -a parent_info=('AerChemMIP' 'piClim-NOx' 'CMIP' 'piControl' 'AGCM' 'BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 NOx emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-NTCF' ]; then declare -a parent_info=('AerChemMIP' 'piClim-NTCF' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 NTCF emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-O3' ]; then declare -a parent_info=('AerChemMIP' 'piClim-O3' 'CMIP' 'piControl' 'AGCM' 'BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 ozone precursor emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-OC' ]; then declare -a parent_info=('AerChemMIP' 'piClim-OC' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 organic carbon emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-SO2' ]; then declare -a parent_info=('AerChemMIP' 'piClim-SO2' 'CMIP' 'piControl' 'AGCM' 'CHEM BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 SO2 emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'piClim-VOC' ]; then declare -a parent_info=('AerChemMIP' 'piClim-VOC' 'CMIP' 'piControl' 'AGCM' 'BGC' 'pre-industrial climatological SSTs and forcing, but with 2014 VOC emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370-lowNTCFCH4' ]; then declare -a parent_info=('AerChemMIP' 'ssp370-lowNTCFCH4' 'CMIP' 'historical' 'AOGCM' 'CHEM BGC' 'SSP3-7.0, with low NTCF emissions and methane concentrations' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370-lowNTCF' ]; then declare -a parent_info=('AerChemMIP' 'ssp370-lowNTCF' 'CMIP' 'historical' 'AOGCM' 'CHEM BGC' 'SSP3-7.0, with low NTCF emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370pdSST' ]; then declare -a parent_info=('AerChemMIP' 'ssp370pdSST' 'CMIP' 'historical' 'AGCM' 'CHEM BGC' 'SSP3-7.0, with SSTs prescribed as present day' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370SST-lowAer' ]; then declare -a parent_info=('AerChemMIP' 'ssp370SST-lowAer' 'CMIP' 'historical' 'AGCM' 'CHEM BGC' 'SSP3-7.0, prescribed SSTs, with low aerosol emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370SST-lowBC' ]; then declare -a parent_info=('AerChemMIP' 'ssp370SST-lowBC' 'CMIP' 'historical' 'AGCM' 'CHEM BGC' 'SSP3-7.0, prescribed SSTs, with low black carbon emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370SST-lowCH4' ]; then declare -a parent_info=('AerChemMIP' 'ssp370SST-lowCH4' 'CMIP' 'historical' 'AGCM' 'BGC' 'SSP3-7.0, prescribed SSTs, with low methane concentrations' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370SST-lowNTCFCH4' ]; then declare -a parent_info=('AerChemMIP' 'ssp370SST-lowNTCFCH4' 'CMIP' 'historical' 'AGCM' 'CHEM BGC' 'SSP3-7.0, prescribed SSTs, with low NTCF emissions and methane concentrations' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370SST-lowNTCF' ]; then declare -a parent_info=('AerChemMIP' 'ssp370SST-lowNTCF' 'CMIP' 'historical' 'AGCM' 'CHEM BGC' 'SSP3-7.0, prescribed SSTs, with low NTCF emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370SST-lowO3' ]; then declare -a parent_info=('AerChemMIP' 'ssp370SST-lowO3' 'CMIP' 'historical' 'AGCM' 'BGC' 'SSP3-7.0, prescribed SSTs, with low ozone precursor emissions' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370SST-ssp126Lu' ]; then declare -a parent_info=('AerChemMIP' 'ssp370SST-ssp126Lu' 'CMIP' 'historical' 'AGCM' 'CHEM BGC' 'SSP3-7.0, prescribed SSTs, with SSP1-2.6 land use' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370SST' ]; then declare -a parent_info=('AerChemMIP' 'ssp370SST' 'CMIP' 'historical' 'AGCM' 'CHEM BGC' 'SSP3-7.0, with SSTs prescribed from ssp370' 'none'); fi + if [ "$mip" = 'AerChemMIP' ] && [ "$experiment" = 'ssp370' ]; then declare -a parent_info=('AerChemMIP' 'ssp370' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'gap-filling scenario reaching 7.0 based on SSP3' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = '1pctCO2-bgc' ]; then declare -a parent_info=('C4MIP' '1pctCO2-bgc' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM' 'biogeochemically-coupled version of 1 percent per year increasing CO2 experiment' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = '1pctCO2Ndep-bgc' ]; then declare -a parent_info=('C4MIP' '1pctCO2Ndep-bgc' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM' 'biogeochemically-coupled version of 1 percent per year increasing CO2 experiment with increasing N-deposition' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = '1pctCO2Ndep' ]; then declare -a parent_info=('C4MIP' '1pctCO2Ndep' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM' '1 percent per year increasing CO2 experiment with increasing N-deposition' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = '1pctCO2-rad' ]; then declare -a parent_info=('C4MIP' '1pctCO2-rad' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM' 'radiatively-coupled version of 1 percent per year increasing CO2 experiment' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'esm-1pct-brch-1000PgC' ]; then declare -a parent_info=('C4MIP' 'esm-1pct-brch-1000PgC' 'CMIP' '1pctCO2' 'AOGCM' 'AER CHEM' 'zero emissions simulation branched from 1% run after 1000 PgC cumulative emission' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'esm-1pct-brch-2000PgC' ]; then declare -a parent_info=('C4MIP' 'esm-1pct-brch-2000PgC' 'CMIP' '1pctCO2' 'AOGCM' 'AER CHEM' 'zero emissions simulation branched from 1% run after 2000 PgC cumulative emission' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'esm-1pct-brch-750PgC' ]; then declare -a parent_info=('C4MIP' 'esm-1pct-brch-750PgC' 'CMIP' '1pctCO2' 'AOGCM' 'AER CHEM' 'zero emissions simulation branched from 1% run after 750 PgC cumulative emission' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'esm-1pctCO2' ]; then declare -a parent_info=('C4MIP' 'esm-1pctCO2' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'emissions driven 1% run' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'esm-bell-1000PgC' ]; then declare -a parent_info=('C4MIP' 'esm-bell-1000PgC' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'emissions driven 1000PgC bell-curve' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'esm-bell-2000PgC' ]; then declare -a parent_info=('C4MIP' 'esm-bell-2000PgC' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'emissions driven 2000PgC bell-curve' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'esm-bell-750PgC' ]; then declare -a parent_info=('C4MIP' 'esm-bell-750PgC' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'emissions driven 750PgC bell-curve' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'esm-ssp585' ]; then declare -a parent_info=('C4MIP' 'esm-ssp585' 'CMIP' 'esm-hist' 'AOGCM' 'AER CHEM' 'emission-driven RCP8.5 based on SSP5' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'hist-bgc' ]; then declare -a parent_info=('C4MIP' 'hist-bgc' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM' 'biogeochemically-coupled version of the simulation of the recent past with CO2 concentration prescribed' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'ssp534-over-bgc' ]; then declare -a parent_info=('C4MIP' 'ssp534-over-bgc' 'C4MIP' 'ssp585-bgc' 'AOGCM' 'AER CHEM' 'biogeochemically-coupled version of the RCP3.4-overshoot based on SSP5' 'none'); fi + if [ "$mip" = 'C4MIP' ] && [ "$experiment" = 'ssp585-bgc' ]; then declare -a parent_info=('C4MIP' 'ssp585-bgc' 'C4MIP' 'hist-bgc' 'AOGCM' 'AER CHEM' 'biogeochemically-coupled version of the RCP8.5 based on SSP5' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = '1pctCO2-cdr' ]; then declare -a parent_info=('CDRMIP' '1pctCO2-cdr' 'CMIP' '1pctCO2' 'AOGCM' 'AER CHEM' '1 percent per year decrease in CO2 from 4xCO2' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-1pct-brch-1000PgC' ]; then declare -a parent_info=('CDRMIP' 'esm-1pct-brch-1000PgC' 'CMIP' '1pctCO2' 'AOGCM' 'AER CHEM' 'zero emissions simulation branched from 1% run after 1000 PgC cumulative emission' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-1pct-brch-2000PgC' ]; then declare -a parent_info=('CDRMIP' 'esm-1pct-brch-2000PgC' 'CMIP' '1pctCO2' 'AOGCM' 'AER CHEM' 'zero emissions simulation branched from 1% run after 2000 PgC cumulative emission' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-1pct-brch-750PgC' ]; then declare -a parent_info=('CDRMIP' 'esm-1pct-brch-750PgC' 'CMIP' '1pctCO2' 'AOGCM' 'AER CHEM' 'zero emissions simulation branched from 1% run after 750 PgC cumulative emission' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-1pctCO2' ]; then declare -a parent_info=('CDRMIP' 'esm-1pctCO2' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'emissions driven 1% run' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-bell-1000PgC' ]; then declare -a parent_info=('CDRMIP' 'esm-bell-1000PgC' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'emissions driven 1000PgC bell-curve' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-bell-2000PgC' ]; then declare -a parent_info=('CDRMIP' 'esm-bell-2000PgC' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'emissions driven 2000PgC bell-curve' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-bell-750PgC' ]; then declare -a parent_info=('CDRMIP' 'esm-bell-750PgC' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'emissions driven 750PgC bell-curve' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-pi-cdr-pulse' ]; then declare -a parent_info=('CDRMIP' 'esm-pi-cdr-pulse' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'pulse removal of 100 Gt carbon from pre-industrial atmosphere' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-pi-CO2pulse' ]; then declare -a parent_info=('CDRMIP' 'esm-pi-CO2pulse' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'pulse addition of 100 Gt carbon to pre-industrial atmosphere' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-ssp534-over' ]; then declare -a parent_info=('CDRMIP' 'esm-ssp534-over' 'C4MIP' 'esm-ssp585' 'AOGCM' 'AER CHEM' 'emission-driven SSP5-3.4-OS scenario' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-ssp585ext' ]; then declare -a parent_info=('CDRMIP' 'esm-ssp585ext' 'C4MIP' 'esm-ssp585' 'AOGCM' 'AER CHEM' 'emission-driven long-term extension of the SSP5-8.5 scenario' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-ssp585-ocn-alk-stop' ]; then declare -a parent_info=('CDRMIP' 'esm-ssp585-ocn-alk-stop' 'CDRMIP' 'esm-ssp585-ocn-alk' 'AOGCM' 'AER CHEM' 'emission-driven SSP5-8.5 scenario with alkalinization terminated in year 2070' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-ssp585-ocn-alk' ]; then declare -a parent_info=('CDRMIP' 'esm-ssp585-ocn-alk' 'C4MIP' 'esm-ssp585' 'AOGCM' 'AER CHEM' 'emission-driven SSP5-8.5 scenario but with ocean alkalinization from year 2020 onward' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-ssp585-ssp126Lu-ext' ]; then declare -a parent_info=('CDRMIP' 'esm-ssp585-ssp126Lu-ext' 'LUMIP' 'esm-ssp585-ssp126Lu' 'AOGCM' 'AER CHEM' 'extension of the LUMIP emissions-driven simulation following SSP5-8.5 with SSP1-2.6 land use' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-yr2010CO2-cdr-pulse' ]; then declare -a parent_info=('CDRMIP' 'esm-yr2010CO2-cdr-pulse' 'CDRMIP' 'esm-yr2010CO2-control' 'AOGCM' 'AER CHEM' 'instantaneous 100 Gt C removal from industrial era atmosphere' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-yr2010CO2-CO2pulse' ]; then declare -a parent_info=('CDRMIP' 'esm-yr2010CO2-CO2pulse' 'CDRMIP' 'esm-yr2010CO2-control' 'AOGCM' 'AER CHEM' 'instantaneous 100 Gt C addition to an industrial era atmosphere' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-yr2010CO2-control' ]; then declare -a parent_info=('CDRMIP' 'esm-yr2010CO2-control' 'CDRMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'historical emissions followed by fixed 2010 emissions (both model-diagnosed)' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'esm-yr2010CO2-noemit' ]; then declare -a parent_info=('CDRMIP' 'esm-yr2010CO2-noemit' 'CDRMIP' 'esm-yr2010CO2-control' 'AOGCM' 'AER CHEM' 'branches from esm-yr2010CO2-control with zero emissions' 'none'); fi + if [ "$mip" = 'CDRMIP' ] && [ "$experiment" = 'yr2010CO2' ]; then declare -a parent_info=('CDRMIP' 'yr2010CO2' 'CMIP' 'historical' 'AOGCM' 'AER CHEM' 'concentration-driven fixed 2010 forcing' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'a4SSTice-4xCO2' ]; then declare -a parent_info=('CFMIP' 'a4SSTice-4xCO2' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'as piSST but with SSTs and sea ice from abrupt-4xCO2, and 4xCO2 seen by radiation and vegetation' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'a4SSTice' ]; then declare -a parent_info=('CFMIP' 'a4SSTice' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'as piSST but with SSTs and sea ice from abrupt-4xCO2' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'a4SST' ]; then declare -a parent_info=('CFMIP' 'a4SST' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'as piSST but with SSTs from abrupt-4xCO2' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'abrupt-0p5xCO2' ]; then declare -a parent_info=('CFMIP' 'abrupt-0p5xCO2' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'abrupt halving of CO2' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'abrupt-2xCO2' ]; then declare -a parent_info=('CFMIP' 'abrupt-2xCO2' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'abrupt doubling of CO2' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'abrupt-solm4p' ]; then declare -a parent_info=('CFMIP' 'abrupt-solm4p' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'abrupt 4% decrease in solar constant' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'abrupt-solp4p' ]; then declare -a parent_info=('CFMIP' 'abrupt-solp4p' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'abrupt 4% increase in solar constant' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'amip-4xCO2' ]; then declare -a parent_info=('CFMIP' 'amip-4xCO2' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'AMIP SSTs with 4xCO2' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'amip-a4SST-4xCO2' ]; then declare -a parent_info=('CFMIP' 'amip-a4SST-4xCO2' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'as AMIP but with warming pattern from abrupt-4xCO2 added to SSTs and 4xCO2 seen by radiation and vegetation' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'amip-future4K' ]; then declare -a parent_info=('CFMIP' 'amip-future4K' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'AMIP with patterned 4K SST increase' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'amip-lwoff' ]; then declare -a parent_info=('CFMIP' 'amip-lwoff' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'AMIP experiment with longwave cloud-radiative effects off' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'amip-m4K' ]; then declare -a parent_info=('CFMIP' 'amip-m4K' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'AMIP with uniform 4K SST decrease' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'amip-p4K-lwoff' ]; then declare -a parent_info=('CFMIP' 'amip-p4K-lwoff' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'AMIP experiment with uniform 4K SST increase and with longwave cloud radiative effects off' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'amip-p4K' ]; then declare -a parent_info=('CFMIP' 'amip-p4K' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'AMIP with uniform 4K SST increase' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'amip-piForcing' ]; then declare -a parent_info=('CFMIP' 'amip-piForcing' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'AMIP SSTs with pre-industrial anthropogenic and natural forcing' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'aqua-4xCO2' ]; then declare -a parent_info=('CFMIP' 'aqua-4xCO2' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'aquaplanet with control SST and 4xCO2' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'aqua-control-lwoff' ]; then declare -a parent_info=('CFMIP' 'aqua-control-lwoff' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'aquaplanet control with longwave cloud radiative effects off' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'aqua-control' ]; then declare -a parent_info=('CFMIP' 'aqua-control' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'aquaplanet control' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'aqua-p4K-lwoff' ]; then declare -a parent_info=('CFMIP' 'aqua-p4K-lwoff' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'aquaplanet with uniform 4K SST increase and with longwave cloud radiative effects off' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'aqua-p4K' ]; then declare -a parent_info=('CFMIP' 'aqua-p4K' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'aquaplanet with uniform 4K SST increase' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'piSST-4xCO2-rad' ]; then declare -a parent_info=('CFMIP' 'piSST-4xCO2-rad' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'as piSST with radiation-only seeing 4xCO2' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'piSST-4xCO2' ]; then declare -a parent_info=('CFMIP' 'piSST-4xCO2' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'as piSST with radiation and vegetation seeing 4xCO2' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'piSST-pxK' ]; then declare -a parent_info=('CFMIP' 'piSST-pxK' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'as piSST with uniform SST increase with magnitude based on abrupt-4xCO2 response' 'none'); fi + if [ "$mip" = 'CFMIP' ] && [ "$experiment" = 'piSST' ]; then declare -a parent_info=('CFMIP' 'piSST' 'no parent' 'no parent' 'AGCM' 'AER CHEM' 'experiment forced with pre-industrial SSTs, sea ice and atmospheric constituents' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = '1pctCO2' ]; then declare -a parent_info=('CMIP' '1pctCO2' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' '1 percent per year increase in CO2' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'abrupt-4xCO2' ]; then declare -a parent_info=('CMIP' 'abrupt-4xCO2' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'abrupt quadrupling of CO2' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'amip' ]; then declare -a parent_info=('CMIP' 'amip' 'no parent' 'no parent' 'AGCM' 'AER CHEM BGC' 'AMIP' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'esm-hist-ext' ]; then declare -a parent_info=('CMIP' 'esm-hist-ext' 'CMIP' 'esm-hist' 'AOGCM' 'AER CHEM' 'post-2014 all-forcing simulation with atmospheric CO2 concentration calculated' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'esm-hist' ]; then declare -a parent_info=('CMIP' 'esm-hist' 'CMIP' 'esm-piControl' 'AOGCM' 'AER CHEM' 'all-forcing simulation of the recent past with atmospheric CO2 concentration calculated' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'esm-piControl-spinup' ]; then declare -a parent_info=('CMIP' 'esm-piControl-spinup' 'no parent' 'no parent' 'AOGCM' 'AER CHEM' 'pre-industrial control simulation with CO2 concentration calculated (spin-up)' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'esm-piControl' ]; then declare -a parent_info=('CMIP' 'esm-piControl' 'CMIP' 'esm-piControl-spinup' 'AOGCM' 'AER CHEM' 'pre-industrial control simulation with CO2 concentration calculated' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'historical-cmip5' ]; then declare -a parent_info=('CMIP' 'historical-cmip5' 'CMIP' 'piControl-cmip5' 'AOGCM' 'AER CHEM BGC' 'all-forcing simulation of the recent past (CMIP5-era [1850-2005] forcing)' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'historical-ext' ]; then declare -a parent_info=('CMIP' 'historical-ext' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'post-2014 all-forcing simulation' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'historical' ]; then declare -a parent_info=('CMIP' 'historical' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'all-forcing simulation of the recent past' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'piControl-cmip5' ]; then declare -a parent_info=('CMIP' 'piControl-cmip5' 'CMIP' 'piControl-spinup-cmip5' 'AOGCM' 'AER CHEM BGC' 'pre-industrial control (CMIP5-era [1850-2005] forcing)' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'piControl-spinup-cmip5' ]; then declare -a parent_info=('CMIP' 'piControl-spinup-cmip5' 'CMIP' 'no parent' 'AOGCM' 'AER CHEM BGC' 'pre-industrial control (spin-up; CMIP5-era [1850-2005] forcing)' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'piControl-spinup' ]; then declare -a parent_info=('CMIP' 'piControl-spinup' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'pre-industrial control (spin-up)' 'none'); fi + if [ "$mip" = 'CMIP' ] && [ "$experiment" = 'piControl' ]; then declare -a parent_info=('CMIP' 'piControl' 'CMIP' 'piControl-spinup' 'AOGCM' 'AER CHEM BGC' 'pre-industrial control' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-aer-cmip5' ]; then declare -a parent_info=('DAMIP' 'hist-aer-cmip5' 'CMIP' 'piControl-cmip5' 'AOGCM' 'AER CHEM BGC' 'historical anthropogenic aerosols-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-aer' ]; then declare -a parent_info=('DAMIP' 'hist-aer' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'historical anthropogenic aerosols-only run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-all-aer2' ]; then declare -a parent_info=('DAMIP' 'hist-all-aer2' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'historical ALL-forcing run with alternate estimates of aerosol forcing' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-all-nat2' ]; then declare -a parent_info=('DAMIP' 'hist-all-nat2' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'historical ALL-forcing run with alternate estimates of natural forcing' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-CO2' ]; then declare -a parent_info=('DAMIP' 'hist-CO2' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'historical CO2-only run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-GHG-cmip5' ]; then declare -a parent_info=('DAMIP' 'hist-GHG-cmip5' 'CMIP' 'piControl-cmip5' 'AOGCM' 'AER CHEM BGC' 'historical well-mixed GHG-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-GHG' ]; then declare -a parent_info=('DAMIP' 'hist-GHG' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'historical well-mixed GHG-only run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-nat-cmip5' ]; then declare -a parent_info=('DAMIP' 'hist-nat-cmip5' 'CMIP' 'piControl-cmip5' 'AOGCM' 'AER CHEM BGC' 'historical natural-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-nat' ]; then declare -a parent_info=('DAMIP' 'hist-nat' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'historical natural-only run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-sol' ]; then declare -a parent_info=('DAMIP' 'hist-sol' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'historical solar-only run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-stratO3' ]; then declare -a parent_info=('DAMIP' 'hist-stratO3' 'CMIP' 'piControl' 'AOGCM' 'AER BGC' 'historical stratospheric ozone-only run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-totalO3' ]; then declare -a parent_info=('DAMIP' 'hist-totalO3' 'CMIP' 'piControl' 'AOGCM' 'AER BGC' 'historical total ozone-only run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'hist-volc' ]; then declare -a parent_info=('DAMIP' 'hist-volc' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'historical volcanic-only run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-aer' ]; then declare -a parent_info=('DAMIP' 'ssp245-aer' 'DAMIP' 'hist-aer' 'AOGCM' 'AER CHEM BGC' 'aerosol-only SSP2-4.5 run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-cov-aer' ]; then declare -a parent_info=('DAMIP' 'ssp245-cov-aer' 'ScenarioMIP' 'ssp245' 'AOGCM' 'AER CHEM BGC' '2-year Covid-19 emissions blip including anthropogenic aerosols only, based upon ssp245' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-cov-fossil' ]; then declare -a parent_info=('DAMIP' 'ssp245-cov-fossil' 'ScenarioMIP' 'ssp245' 'AOGCM' 'AER CHEM BGC' '2-year Covid-19 emissions blip followed by increased emissions due to a fossil-fuel based recovery, based upon ssp245' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-cov-GHG' ]; then declare -a parent_info=('DAMIP' 'ssp245-cov-GHG' 'ScenarioMIP' 'ssp245' 'AOGCM' 'AER CHEM BGC' '2-year Covid-19 emissions blip including well mixed GHG only, based upon ssp245' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-covid' ]; then declare -a parent_info=('DAMIP' 'ssp245-covid' 'ScenarioMIP' 'ssp245' 'AOGCM' 'AER CHEM BGC' '2-year Covid-19 emissions blip based upon ssp245' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-cov-modgreen' ]; then declare -a parent_info=('DAMIP' 'ssp245-cov-modgreen' 'ScenarioMIP' 'ssp245' 'AOGCM' 'AER CHEM BGC' '2-year Covid-19 emissions blip followed by moderate-green stimulus recovery, based upon ssp245' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-cov-strgreen' ]; then declare -a parent_info=('DAMIP' 'ssp245-cov-strgreen' 'ScenarioMIP' 'ssp245' 'AOGCM' 'AER CHEM BGC' '2-year Covid-19 emissions blip followed by strong-green stimulus recovery, based upon ssp245' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-GHG' ]; then declare -a parent_info=('DAMIP' 'ssp245-GHG' 'DAMIP' 'hist-GHG' 'AOGCM' 'AER CHEM BGC' 'well-mixed GHG-only SSP2-4.5 run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-nat' ]; then declare -a parent_info=('DAMIP' 'ssp245-nat' 'DAMIP' 'hist-nat' 'AOGCM' 'AER CHEM BGC' 'natural-only SSP2-4.5 run' 'none'); fi + if [ "$mip" = 'DAMIP' ] && [ "$experiment" = 'ssp245-stratO3' ]; then declare -a parent_info=('DAMIP' 'ssp245-stratO3' 'DAMIP' 'hist-stratO3' 'AOGCM' 'AER BGC' 'stratospheric ozone-only SSP2-4.5 (ssp245) run' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppA-assim' ]; then declare -a parent_info=('DCPP' 'dcppA-assim' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'Assimilation run paralleling the historical simulation, which may be used to generate hindcast initial conditions' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppA-hindcast-niff' ]; then declare -a parent_info=('DCPP' 'dcppA-hindcast-niff' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'hindcast initialized based on observations but without using knowledge of subsequent historical forcing' 's1960 s1961 s1962 s1963 s1964 s1965 s1966 s1967 s1968 s1969 s1970 s1971 s1972 s1973 s1974 s1975 s1976 s1977 s1978 s1979 s1980 s1981 s1982 s1983 s1984 s1985 s1986 s1987 s1988 s1989 s1990 s1991 s1992 s1993 s1994 s1995 s1996 s1997 s1998 s1999 s2000 s2001 s2002 s2003 s2004 s2005 s2006 s2007 s2008 s2009 s2010 s2011 s2012 s2013 s2014 s2015 s2016 s2017 s2018 s2019'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppA-hindcast' ]; then declare -a parent_info=('DCPP' 'dcppA-hindcast' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'hindcast initialized based on observations and using historical forcing' 's1960 s1961 s1962 s1963 s1964 s1965 s1966 s1967 s1968 s1969 s1970 s1971 s1972 s1973 s1974 s1975 s1976 s1977 s1978 s1979 s1980 s1981 s1982 s1983 s1984 s1985 s1986 s1987 s1988 s1989 s1990 s1991 s1992 s1993 s1994 s1995 s1996 s1997 s1998 s1999 s2000 s2001 s2002 s2003 s2004 s2005 s2006 s2007 s2008 s2009 s2010 s2011 s2012 s2013 s2014 s2015 s2016 s2017 s2018 s2019'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppA-historical-niff' ]; then declare -a parent_info=('DCPP' 'dcppA-historical-niff' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'hindcast initialized from historical climate simulation but without using knowledge of subsequent historical forcing' 's1960 s1961 s1962 s1963 s1964 s1965 s1966 s1967 s1968 s1969 s1970 s1971 s1972 s1973 s1974 s1975 s1976 s1977 s1978 s1979 s1980 s1981 s1982 s1983 s1984 s1985 s1986 s1987 s1988 s1989 s1990 s1991 s1992 s1993 s1994 s1995 s1996 s1997 s1998 s1999 s2000 s2001 s2002 s2003 s2004 s2005 s2006 s2007 s2008 s2009 s2010 s2011 s2012 s2013 s2014 s2015 s2016 s2017 s2018 s2019'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppB-forecast' ]; then declare -a parent_info=('DCPP' 'dcppB-forecast' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'forecast initialized from observations with forcing from ssp245' 's2017 s2018 s2019 s2020 s2021 s2022 s2023 s2024 s2025 s2026 s2027 s2028 s2029'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-amv-ExTrop-neg' ]; then declare -a parent_info=('DCPP' 'dcppC-amv-ExTrop-neg' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Idealized climate impact of negative extratropical AMV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-amv-ExTrop-pos' ]; then declare -a parent_info=('DCPP' 'dcppC-amv-ExTrop-pos' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Idealized climate impact of positive extratropical AMV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-amv-neg' ]; then declare -a parent_info=('DCPP' 'dcppC-amv-neg' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Idealized climate impact of negative AMV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-amv-pos' ]; then declare -a parent_info=('DCPP' 'dcppC-amv-pos' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Idealized climate impact of positive AMV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-amv-Trop-neg' ]; then declare -a parent_info=('DCPP' 'dcppC-amv-Trop-neg' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Idealized climate impact of negative tropical AMV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-amv-Trop-pos' ]; then declare -a parent_info=('DCPP' 'dcppC-amv-Trop-pos' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'idealized positive tropical AMV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-atl-control' ]; then declare -a parent_info=('DCPP' 'dcppC-atl-control' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Idealized Atlantic control' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-atl-pacemaker' ]; then declare -a parent_info=('DCPP' 'dcppC-atl-pacemaker' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'pacemaker Atlantic experiment' 's1910 s1920 s1950'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-atl-spg' ]; then declare -a parent_info=('DCPP' 'dcppC-atl-spg' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'predictability of 1990s warming of Atlantic sub-polar gyre' 's1992 s1993 s1994 s1995 s1996 s1997 s1998 s1999'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-forecast-addAgung' ]; then declare -a parent_info=('DCPP' 'dcppC-forecast-addAgung' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' '2015 forecast with added Agung forcing' 's2014'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-forecast-addElChichon' ]; then declare -a parent_info=('DCPP' 'dcppC-forecast-addElChichon' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' '2015 forecast with added El Chichon forcing' 's2014'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-forecast-addPinatubo' ]; then declare -a parent_info=('DCPP' 'dcppC-forecast-addPinatubo' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' '2015 forecast with added Pinatubo forcing' 's2014'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-hindcast-noAgung' ]; then declare -a parent_info=('DCPP' 'dcppC-hindcast-noAgung' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast' 's1962'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-hindcast-noElChichon' ]; then declare -a parent_info=('DCPP' 'dcppC-hindcast-noElChichon' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast' 's1981'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-hindcast-noPinatubo' ]; then declare -a parent_info=('DCPP' 'dcppC-hindcast-noPinatubo' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast' 's1990'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-ipv-neg' ]; then declare -a parent_info=('DCPP' 'dcppC-ipv-neg' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'idealized negative IPV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-ipv-NexTrop-neg' ]; then declare -a parent_info=('DCPP' 'dcppC-ipv-NexTrop-neg' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'idealized negative northern extratropical IPV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-ipv-NexTrop-pos' ]; then declare -a parent_info=('DCPP' 'dcppC-ipv-NexTrop-pos' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'idealized positive northern extratropical IPV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-ipv-pos' ]; then declare -a parent_info=('DCPP' 'dcppC-ipv-pos' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'idealized positive IPV anomaly pattern' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-pac-control' ]; then declare -a parent_info=('DCPP' 'dcppC-pac-control' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'idealized Pacific control' 'none'); fi + if [ "$mip" = 'DCPP' ] && [ "$experiment" = 'dcppC-pac-pacemaker' ]; then declare -a parent_info=('DCPP' 'dcppC-pac-pacemaker' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'pacemaker Pacific experiment' 's1910 s1920 s1950'); fi + if [ "$mip" = 'FAFMIP' ] && [ "$experiment" = 'faf-all' ]; then declare -a parent_info=('FAFMIP' 'faf-all' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'control plus perturbative surface fluxes of momentum, heat and water into ocean' 'none'); fi + if [ "$mip" = 'FAFMIP' ] && [ "$experiment" = 'faf-antwater-stress' ]; then declare -a parent_info=('FAFMIP' 'faf-antwater-stress' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'control plus perturbative surface fluxes of momentum and freshwater into ocean, the latter around the coast of Antarctica only' 'none'); fi + if [ "$mip" = 'FAFMIP' ] && [ "$experiment" = 'faf-heat-NA0pct' ]; then declare -a parent_info=('FAFMIP' 'faf-heat-NA0pct' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'control plus perturbative surface flux of heat into ocean' 'none'); fi + if [ "$mip" = 'FAFMIP' ] && [ "$experiment" = 'faf-heat-NA50pct' ]; then declare -a parent_info=('FAFMIP' 'faf-heat-NA50pct' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'control plus perturbative surface flux of heat into ocean' 'none'); fi + if [ "$mip" = 'FAFMIP' ] && [ "$experiment" = 'faf-heat' ]; then declare -a parent_info=('FAFMIP' 'faf-heat' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'control plus perturbative surface flux of heat into ocean' 'none'); fi + if [ "$mip" = 'FAFMIP' ] && [ "$experiment" = 'faf-passiveheat' ]; then declare -a parent_info=('FAFMIP' 'faf-passiveheat' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'control plus surface flux of passive heat tracer into ocean' 'none'); fi + if [ "$mip" = 'FAFMIP' ] && [ "$experiment" = 'faf-stress' ]; then declare -a parent_info=('FAFMIP' 'faf-stress' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'control plus perturbative surface flux of momentum into ocean' 'none'); fi + if [ "$mip" = 'FAFMIP' ] && [ "$experiment" = 'faf-water' ]; then declare -a parent_info=('FAFMIP' 'faf-water' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'control plus perturbative surface flux of water into ocean' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'futureSST-4xCO2-solar' ]; then declare -a parent_info=('GeoMIP' 'futureSST-4xCO2-solar' 'GeoMIP' 'G1' 'AGCM' 'AER CHEM' 'year 100 SSTs from abrupt-4xCO2 with quadrupled CO2 and solar reduction' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'G1' ]; then declare -a parent_info=('GeoMIP' 'G1' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'abrupt quadrupling of CO2 plus reduction in total solar irradiance' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'G6solar' ]; then declare -a parent_info=('GeoMIP' 'G6solar' 'ScenarioMIP' 'ssp585' 'AOGCM' 'AER CHEM BGC' 'total solar irradiance reduction to reduce net forcing from SSP585 to SSP245' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'G6SST1' ]; then declare -a parent_info=('GeoMIP' 'G6SST1' 'ScenarioMIP' 'ssp585' 'AGCM' 'AER CHEM' 'SSTs, forcings, and other prescribed conditions from year 2020 of SSP5-8.5' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'G6SST2-solar' ]; then declare -a parent_info=('GeoMIP' 'G6SST2-solar' 'GeoMIP' 'G6solar' 'AGCM' 'AER CHEM' 'SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6solar' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'G6SST2-sulfur' ]; then declare -a parent_info=('GeoMIP' 'G6SST2-sulfur' 'GeoMIP' 'G6sulfur' 'AGCM' 'AER CHEM' 'SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6sulfur' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'G6sulfur' ]; then declare -a parent_info=('GeoMIP' 'G6sulfur' 'ScenarioMIP' 'ssp585' 'AOGCM' 'AER CHEM BGC' 'stratospheric sulfate aerosol injection to reduce net forcing from SSP585 to SSP245' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'G7cirrus' ]; then declare -a parent_info=('GeoMIP' 'G7cirrus' 'ScenarioMIP' 'ssp585' 'AOGCM' 'AER CHEM BGC' 'increase cirrus ice crystal fall speed to reduce net forcing in SSP585 by 1 W m-2' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'G7SST1-cirrus' ]; then declare -a parent_info=('GeoMIP' 'G7SST1-cirrus' 'ScenarioMIP' 'ssp585' 'AGCM' 'AER CHEM' 'SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2020 of SSP5-8.5 and cirrus thinning' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'G7SST2-cirrus' ]; then declare -a parent_info=('GeoMIP' 'G7SST2-cirrus' 'GeoMIP' 'G7cirrus' 'AGCM' 'AER CHEM' 'SSTs from year 2100 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G7cirrus' 'none'); fi + if [ "$mip" = 'GeoMIP' ] && [ "$experiment" = 'piSST-4xCO2-solar' ]; then declare -a parent_info=('GeoMIP' 'piSST-4xCO2-solar' 'CMIP' 'piControl' 'AGCM' 'AER CHEM' 'preindustrial control SSTs with quadrupled CO2 and solar reduction' 'none'); fi + if [ "$mip" = 'GMMIP' ] && [ "$experiment" = 'amip-hist' ]; then declare -a parent_info=('GMMIP' 'amip-hist' 'no parent' 'no parent' 'AGCM' 'AER CHEM BGC' 'AMIP-style simulation covering the period 1870-2014' 'none'); fi + if [ "$mip" = 'GMMIP' ] && [ "$experiment" = 'amip-hld' ]; then declare -a parent_info=('GMMIP' 'amip-hld' 'no parent' 'no parent' 'AGCM' 'AER CHEM BGC' 'same as "amip" run, but surface elevations of the East African Highlands in Africa, Sierra Madre in N. America and Andes in S. America reduced to 500m' 'none'); fi + if [ "$mip" = 'GMMIP' ] && [ "$experiment" = 'amip-TIP-nosh' ]; then declare -a parent_info=('GMMIP' 'amip-TIP-nosh' 'no parent' 'no parent' 'AGCM' 'AER CHEM BGC' 'same as "amip" run, but sensible heat not allowed for elevations of the Tibetan-Iranian Plateau and Himalayas above 500m' 'none'); fi + if [ "$mip" = 'GMMIP' ] && [ "$experiment" = 'amip-TIP' ]; then declare -a parent_info=('GMMIP' 'amip-TIP' 'no parent' 'no parent' 'AGCM' 'AER CHEM BGC' 'same as "amip" run, but surface elevations of the Tibetan-Iranian Plateau and Himalayas reduced to 500m' 'none'); fi + if [ "$mip" = 'GMMIP' ] && [ "$experiment" = 'hist-resAMO' ]; then declare -a parent_info=('GMMIP' 'hist-resAMO' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'initialized from "historical" run year 1870 and SSTs in the AMO domain (0deg-70degN, 70degW-0deg) restored to AMIP SSTs with historical forcings' 'none'); fi + if [ "$mip" = 'GMMIP' ] && [ "$experiment" = 'hist-resIPO' ]; then declare -a parent_info=('GMMIP' 'hist-resIPO' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'initialized from "historical" run year 1870 and SSTs in tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW) restored to AMIP SSTs with historical forcings' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'control-1950' ]; then declare -a parent_info=('HighResMIP' 'control-1950' 'HighResMIP' 'spinup-1950' 'AOGCM' 'AER' 'coupled control with fixed 1950s forcing (HighResMIP equivalent of pre-industrial control)' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'highres-future' ]; then declare -a parent_info=('HighResMIP' 'highres-future' 'HighResMIP' 'hist-1950' 'AOGCM' 'AER' 'coupled future 2015-2050 using a scenario as close to CMIP5 RCP8.5 as possible within CMIP6' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'highresSST-4xCO2' ]; then declare -a parent_info=('HighResMIP' 'highresSST-4xCO2' 'HighResMIP' 'highresSST-present' 'AGCM' 'AER' 'highresSST-present SST with 4xCO2 concentrations' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'highresSST-future' ]; then declare -a parent_info=('HighResMIP' 'highresSST-future' 'HighResMIP' 'highresSST-present' 'AGCM' 'AER' 'forced atmosphere experiment for 2015-2050 using SST/sea-ice derived from CMIP5 RCP8.5 simulations and a scenario as close to RCP8.5 as possible within CMIP6' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'highresSST-LAI' ]; then declare -a parent_info=('HighResMIP' 'highresSST-LAI' 'HighResMIP' 'highresSST-present' 'AGCM' 'AER' 'common LAI dataset within the highresSST-present experiment' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'highresSST-p4K' ]; then declare -a parent_info=('HighResMIP' 'highresSST-p4K' 'HighResMIP' 'highresSST-present' 'AGCM' 'AER' 'uniform 4K warming of highresSST-present SST' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'highresSST-present' ]; then declare -a parent_info=('HighResMIP' 'highresSST-present' 'no parent' 'no parent' 'AGCM' 'AER' 'forced atmosphere experiment for 1950-2014' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'highresSST-smoothed' ]; then declare -a parent_info=('HighResMIP' 'highresSST-smoothed' 'HighResMIP' 'highresSST-present' 'AGCM' 'AER' 'smoothed SST version of highresSST-present' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'hist-1950' ]; then declare -a parent_info=('HighResMIP' 'hist-1950' 'HighResMIP' 'spinup-1950' 'AOGCM' 'AER' 'coupled historical 1950-2014' 'none'); fi + if [ "$mip" = 'HighResMIP' ] && [ "$experiment" = 'spinup-1950' ]; then declare -a parent_info=('HighResMIP' 'spinup-1950' 'no parent' 'no parent' 'AOGCM' 'AER' 'coupled spinup with fixed 1950s forcings from 1950 initial conditions (with ocean at rest) to provide initial condition for control-1950 and hist-1950' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = '1pctCO2-4xext' ]; then declare -a parent_info=('ISMIP6' '1pctCO2-4xext' 'CMIP' '1pctCO2' 'AOGCM' 'AER CHEM BGC' 'extension from year 140 of 1pctCO2 with 4xCO2' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = '1pctCO2to4x-withism' ]; then declare -a parent_info=('ISMIP6' '1pctCO2to4x-withism' 'ISMIP6' 'piControl-withism' 'AOGCM' 'AER CHEM BGC' 'simulation with interactive ice sheet forced by 1 percent per year increase in CO2 to 4xCO2 (subsequently held fixed)' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'historical-withism' ]; then declare -a parent_info=('ISMIP6' 'historical-withism' 'ISMIP6' 'piControl-withism' 'AOGCM' 'AER CHEM BGC' 'historical with interactive ice sheet' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-1pctCO2to4x-self' ]; then declare -a parent_info=('ISMIP6' 'ism-1pctCO2to4x-self' 'ISMIP6' 'ism-piControl-self' 'ISM' '' 'offline ice sheet model forced by ISMs own AOGCM 1pctCO2to4x output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-1pctCO2to4x-std' ]; then declare -a parent_info=('ISMIP6' 'ism-1pctCO2to4x-std' 'ISMIP6' 'ism-pdControl-std' 'ISM' '' 'offline ice sheet model forced by ISMIP6-specified AOGCM 1pctCO2to4x output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-amip-std' ]; then declare -a parent_info=('ISMIP6' 'ism-amip-std' 'ISMIP6' 'ism-ctrl-std' 'ISM' '' 'offline ice sheet forced by ISMIP6-specified AGCM AMIP output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-asmb-std' ]; then declare -a parent_info=('ISMIP6' 'ism-asmb-std' 'ISMIP6' 'ism-ctrl-std' 'ISM' '' 'offline ice sheet forced by initMIP synthetic atmospheric experiment' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-bsmb-std' ]; then declare -a parent_info=('ISMIP6' 'ism-bsmb-std' 'ISMIP6' 'ism-ctrl-std' 'ISM' '' 'offline ice sheet forced by initMIP synthetic oceanic experiment' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-ctrl-std' ]; then declare -a parent_info=('ISMIP6' 'ism-ctrl-std' 'no parent' 'no parent' 'ISM' '' 'offline ice sheet model initMIP control' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-historical-self' ]; then declare -a parent_info=('ISMIP6' 'ism-historical-self' 'ISMIP6' 'ism-piControl-self' 'ISM' '' 'offline ice sheet forced by ISMs own AOGCM historical output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-historical-std' ]; then declare -a parent_info=('ISMIP6' 'ism-historical-std' 'ISMIP6' 'ism-pdControl-std' 'ISM' '' 'offline ice sheet forced by ISMIP6-specified AOGCM historical output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-lig127k-std' ]; then declare -a parent_info=('ISMIP6' 'ism-lig127k-std' 'no parent' 'no parent' 'ISM' '' 'offline ice sheet forced by ISMIP6-specified AGCM last interglacial output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-pdControl-std' ]; then declare -a parent_info=('ISMIP6' 'ism-pdControl-std' 'no parent' 'no parent' 'ISM' '' 'offline ice sheet forced by ISMIP6-specified AOGCM pdControl output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-piControl-self' ]; then declare -a parent_info=('ISMIP6' 'ism-piControl-self' 'no parent' 'no parent' 'ISM' '' 'offline ice sheet forced by ISMs own AOGCM piControl output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-ssp585-self' ]; then declare -a parent_info=('ISMIP6' 'ism-ssp585-self' 'ISMIP6' 'ism-historical-self' 'ISM' '' 'offline ice sheet forced by ISMs own AOGCM ssp585 output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ism-ssp585-std' ]; then declare -a parent_info=('ISMIP6' 'ism-ssp585-std' 'ISMIP6' 'ism-historical-std' 'ISM' '' 'offline ice sheet forced by ISMIP6-specified AOGCM ssp585 output' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'piControl-withism' ]; then declare -a parent_info=('ISMIP6' 'piControl-withism' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'preindustrial control with interactive ice sheet' 'none'); fi + if [ "$mip" = 'ISMIP6' ] && [ "$experiment" = 'ssp585-withism' ]; then declare -a parent_info=('ISMIP6' 'ssp585-withism' 'ISMIP6' 'historical-withism' 'AOGCM' 'AER CHEM BGC' 'ssp585 with interactive ice sheet' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'amip-lfmip-pdLC' ]; then declare -a parent_info=('LS3MIP' 'amip-lfmip-pdLC' 'no parent' 'no parent' 'AGCM' 'AER CHEM BGC' 'prescribed modern land surface climatology from historical, prescribed SST and sea-ice from historical plus scenario runs' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'amip-lfmip-pObs' ]; then declare -a parent_info=('LS3MIP' 'amip-lfmip-pObs' 'no parent' 'no parent' 'AGCM' 'AER CHEM BGC' 'prescribed land (from pseudo-observations) and AMIP SSTs' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'amip-lfmip-rmLC' ]; then declare -a parent_info=('LS3MIP' 'amip-lfmip-rmLC' 'no parent' 'no parent' 'AGCM' 'AER CHEM BGC' 'prescribed land surface climatology from historical plus scenario 30yr running mean, prescribed SST and sea-ice from historical plus scenario runs' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'land-hist-cruNcep' ]; then declare -a parent_info=('LS3MIP' 'land-hist-cruNcep' 'no parent' 'no parent' 'LAND' 'BGC' 'as land-hist with CRU-NCEP forcings' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'land-hist-princeton' ]; then declare -a parent_info=('LS3MIP' 'land-hist-princeton' 'no parent' 'no parent' 'LAND' 'BGC' 'as land-hist with Princeton forcings' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'land-hist' ]; then declare -a parent_info=('LS3MIP' 'land-hist' 'no parent' 'no parent' 'LAND' 'BGC' 'historical land-only' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'land-hist-wfdei' ]; then declare -a parent_info=('LS3MIP' 'land-hist-wfdei' 'no parent' 'no parent' 'LAND' 'BGC' 'as land-hist with WFDEI forcings' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'land-ssp126' ]; then declare -a parent_info=('LS3MIP' 'land-ssp126' 'no parent' 'no parent' 'LAND' 'BGC' 'future ssp1-2.6 land only' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'land-ssp434' ]; then declare -a parent_info=('LS3MIP' 'land-ssp434' 'no parent' 'no parent' 'LAND' 'BGC' 'future ssp4-3.4 land only' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'land-ssp585' ]; then declare -a parent_info=('LS3MIP' 'land-ssp585' 'no parent' 'no parent' 'LAND' 'BGC' 'future ssp5-8.5 land only' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'lfmip-initLC' ]; then declare -a parent_info=('LS3MIP' 'lfmip-initLC' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'initialized from "historical" run year 1980, but with land conditions initialized from pseudo-observations' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'lfmip-pdLC-cruNcep' ]; then declare -a parent_info=('LS3MIP' 'lfmip-pdLC-cruNcep' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'as LFMIP-pdLC with Land-Hist-cruNcep' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'lfmip-pdLC-princeton' ]; then declare -a parent_info=('LS3MIP' 'lfmip-pdLC-princeton' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'as LFMIP-pdLC with Land-Hist-princeton' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'lfmip-pdLC' ]; then declare -a parent_info=('LS3MIP' 'lfmip-pdLC' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'prescribed land conditions (from current climate climatology) and initialized from "historical" run year 1980' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'lfmip-pdLC-wfdei' ]; then declare -a parent_info=('LS3MIP' 'lfmip-pdLC-wfdei' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'as LFMIP-pdLC with Land-Hist-wfdei' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'lfmip-rmLC-cruNcep' ]; then declare -a parent_info=('LS3MIP' 'lfmip-rmLC-cruNcep' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'as LFMIP-rmLC with Land-Hist-cruNcep' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'lfmip-rmLC-princeton' ]; then declare -a parent_info=('LS3MIP' 'lfmip-rmLC-princeton' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'as LFMIP-rmLC with Land-Hist-princeton' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'lfmip-rmLC' ]; then declare -a parent_info=('LS3MIP' 'lfmip-rmLC' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'prescribed land conditions (from running mean climatology) and initialized from "historical" run year 1980' 'none'); fi + if [ "$mip" = 'LS3MIP' ] && [ "$experiment" = 'lfmip-rmLC-wfdei' ]; then declare -a parent_info=('LS3MIP' 'lfmip-rmLC-wfdei' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'as LFMIP-rmLC with Land-Hist-wfdei' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'deforest-globe' ]; then declare -a parent_info=('LUMIP' 'deforest-globe' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'idealized transient global deforestation' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'esm-ssp585-ssp126Lu' ]; then declare -a parent_info=('LUMIP' 'esm-ssp585-ssp126Lu' 'CMIP' 'esm-hist' 'AOGCM' 'AER CHEM' 'emissions-driven SSP5-8.5 with SSP1-2.6 land use' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'hist-noLu' ]; then declare -a parent_info=('LUMIP' 'hist-noLu' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'historical with no land-use change' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-cClim' ]; then declare -a parent_info=('LUMIP' 'land-cClim' 'no parent' 'no parent' 'LAND' '' 'historical land-only constant climate' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-cCO2' ]; then declare -a parent_info=('LUMIP' 'land-cCO2' 'no parent' 'no parent' 'LAND' '' 'historical land-only constant CO2' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-crop-grass' ]; then declare -a parent_info=('LUMIP' 'land-crop-grass' 'no parent' 'no parent' 'LAND' '' 'historical land-only with cropland as natural grassland' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-crop-noFert' ]; then declare -a parent_info=('LUMIP' 'land-crop-noFert' 'no parent' 'no parent' 'LAND' '' 'historical land-only with no fertilizer' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-crop-noIrrigFert' ]; then declare -a parent_info=('LUMIP' 'land-crop-noIrrigFert' 'no parent' 'no parent' 'LAND' '' 'historical land-only with managed crops but with irrigation and fertilization held constant' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-crop-noIrrig' ]; then declare -a parent_info=('LUMIP' 'land-crop-noIrrig' 'no parent' 'no parent' 'LAND' '' 'historical land-only with no irrigation' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-hist-altLu1' ]; then declare -a parent_info=('LUMIP' 'land-hist-altLu1' 'no parent' 'no parent' 'LAND' '' 'historical land-only alternate land-use history' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-hist-altLu2' ]; then declare -a parent_info=('LUMIP' 'land-hist-altLu2' 'no parent' 'no parent' 'LAND' '' 'historical land-only alternate land use history' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-hist-altStartYear' ]; then declare -a parent_info=('LUMIP' 'land-hist-altStartYear' 'no parent' 'no parent' 'LAND' '' 'historical land-only alternate start year' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-hist' ]; then declare -a parent_info=('LUMIP' 'land-hist' 'no parent' 'no parent' 'LAND' 'BGC' 'historical land-only' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-noFire' ]; then declare -a parent_info=('LUMIP' 'land-noFire' 'no parent' 'no parent' 'LAND' '' 'historical land-only with no human fire management' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-noLu' ]; then declare -a parent_info=('LUMIP' 'land-noLu' 'no parent' 'no parent' 'LAND' 'BGC' 'historical land-only with no land-use change' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-noPasture' ]; then declare -a parent_info=('LUMIP' 'land-noPasture' 'no parent' 'no parent' 'LAND' '' 'historical land-only with constant pastureland' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-noShiftCultivate' ]; then declare -a parent_info=('LUMIP' 'land-noShiftCultivate' 'no parent' 'no parent' 'LAND' '' 'historical land-only with shifting cultivation turned off' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'land-noWoodHarv' ]; then declare -a parent_info=('LUMIP' 'land-noWoodHarv' 'no parent' 'no parent' 'LAND' '' 'historical land-only with no wood harvest' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'ssp126-ssp370Lu' ]; then declare -a parent_info=('LUMIP' 'ssp126-ssp370Lu' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'SSP1-2.6 with SSP3-7.0 land use' 'none'); fi + if [ "$mip" = 'LUMIP' ] && [ "$experiment" = 'ssp370-ssp126Lu' ]; then declare -a parent_info=('LUMIP' 'ssp370-ssp126Lu' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'SSP3-7.0 with SSP1-2.6 land use' 'none'); fi + if [ "$mip" = 'OMIP' ] && [ "$experiment" = 'omip1-spunup' ]; then declare -a parent_info=('OMIP' 'omip1-spunup' 'no parent' 'no parent' 'OGCM' '' 'OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model' 'none'); fi + if [ "$mip" = 'OMIP' ] && [ "$experiment" = 'omip1' ]; then declare -a parent_info=('OMIP' 'omip1' 'no parent' 'no parent' 'OGCM' 'BGC' 'OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized with observed physical and biogeochemical ocean data' 'none'); fi + if [ "$mip" = 'OMIP' ] && [ "$experiment" = 'omip2-spunup' ]; then declare -a parent_info=('OMIP' 'omip2-spunup' 'no parent' 'no parent' 'OGCM' '' 'OMIP experiment forced by JRA55-do atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model' 'none'); fi + if [ "$mip" = 'OMIP' ] && [ "$experiment" = 'omip2' ]; then declare -a parent_info=('OMIP' 'omip2' 'no parent' 'no parent' 'OGCM' 'BGC' 'OMIP experiment forced by JRA55-do atmospheric data set and initialized with observed physical and biogeochemical ocean data' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'amip-climSIC' ]; then declare -a parent_info=('PAMIP' 'amip-climSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'AMIP with climatological SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'amip-climSST' ]; then declare -a parent_info=('PAMIP' 'amip-climSST' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'AMIP with climatological SST' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'futSST-pdSIC' ]; then declare -a parent_info=('PAMIP' 'futSST-pdSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with future SST and present day SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'modelSST-futArcSIC' ]; then declare -a parent_info=('PAMIP' 'modelSST-futArcSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with present day coupled model SST and future Arctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'modelSST-pdSIC' ]; then declare -a parent_info=('PAMIP' 'modelSST-pdSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice present day control with coupled model SST' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pa-futAntSIC-ext' ]; then declare -a parent_info=('PAMIP' 'pa-futAntSIC-ext' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'Partially-coupled extended simulation with future Antarctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pa-futAntSIC' ]; then declare -a parent_info=('PAMIP' 'pa-futAntSIC' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'Partially-coupled time slice constrained by future Antarctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pa-futArcSIC-ext' ]; then declare -a parent_info=('PAMIP' 'pa-futArcSIC-ext' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'Partially-coupled extended simulation with future Arctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pa-futArcSIC' ]; then declare -a parent_info=('PAMIP' 'pa-futArcSIC' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'Partially-coupled time slice constrained by future Arctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pa-pdSIC-ext' ]; then declare -a parent_info=('PAMIP' 'pa-pdSIC-ext' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'Partially-coupled extended simulation constrained by present day SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pa-pdSIC' ]; then declare -a parent_info=('PAMIP' 'pa-pdSIC' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'Partially-coupled time slice contrained by present day SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pa-piAntSIC' ]; then declare -a parent_info=('PAMIP' 'pa-piAntSIC' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'Partially-coupled time slice with pre-industrial Antarctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pa-piArcSIC' ]; then declare -a parent_info=('PAMIP' 'pa-piArcSIC' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'Partially-coupled time slice constrained by pre-industrial Arctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pdSST-futAntSIC' ]; then declare -a parent_info=('PAMIP' 'pdSST-futAntSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with present day SST and future Antarctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pdSST-futArcSICSIT' ]; then declare -a parent_info=('PAMIP' 'pdSST-futArcSICSIT' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with present day SST and future Arctic SIC and sea ice thickness' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pdSST-futArcSIC' ]; then declare -a parent_info=('PAMIP' 'pdSST-futArcSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with present day SST and future Arctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pdSST-futBKSeasSIC' ]; then declare -a parent_info=('PAMIP' 'pdSST-futBKSeasSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with present day SST and future Barents and Kara Seas SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pdSST-futOkhotskSIC' ]; then declare -a parent_info=('PAMIP' 'pdSST-futOkhotskSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with present day SST and future Sea of Okhotsk SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pdSST-pdSICSIT' ]; then declare -a parent_info=('PAMIP' 'pdSST-pdSICSIT' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice constrained by present day conditions including sea ice thickness' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pdSST-pdSIC' ]; then declare -a parent_info=('PAMIP' 'pdSST-pdSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with present day SST and SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pdSST-piAntSIC' ]; then declare -a parent_info=('PAMIP' 'pdSST-piAntSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with present day SST and pre-industrial Antarctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'pdSST-piArcSIC' ]; then declare -a parent_info=('PAMIP' 'pdSST-piArcSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with present day SST and pre-industrial Arctic SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'piSST-pdSIC' ]; then declare -a parent_info=('PAMIP' 'piSST-pdSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with pre-industrial SST and present day SIC' 'none'); fi + if [ "$mip" = 'PAMIP' ] && [ "$experiment" = 'piSST-piSIC' ]; then declare -a parent_info=('PAMIP' 'piSST-piSIC' 'CMIP' 'amip' 'AGCM' 'AER CHEM BGC' 'Atmosphere time slice with pre-industrial SST and SIC' 'none'); fi + if [ "$mip" = 'PMIP' ] && [ "$experiment" = 'esm-past1000' ]; then declare -a parent_info=('PMIP' 'esm-past1000' 'no parent' 'no parent' 'AOGCM' 'AER CHEM' 'last millennium experiment with interactive carbon cycle' 'none'); fi + if [ "$mip" = 'PMIP' ] && [ "$experiment" = 'lgm' ]; then declare -a parent_info=('PMIP' 'lgm' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'last glacial maximum' 'none'); fi + if [ "$mip" = 'PMIP' ] && [ "$experiment" = 'lig127k' ]; then declare -a parent_info=('PMIP' 'lig127k' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'last interglacial (127k)' 'none'); fi + if [ "$mip" = 'PMIP' ] && [ "$experiment" = 'midHolocene' ]; then declare -a parent_info=('PMIP' 'midHolocene' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'mid-Holocene' 'none'); fi + if [ "$mip" = 'PMIP' ] && [ "$experiment" = 'midPliocene-eoi400' ]; then declare -a parent_info=('PMIP' 'midPliocene-eoi400' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'mid-Pliocene warm period' 'none'); fi + if [ "$mip" = 'PMIP' ] && [ "$experiment" = 'past1000-solaronly' ]; then declare -a parent_info=('PMIP' 'past1000-solaronly' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'last millennium experiment using only solar forcing' 'none'); fi + if [ "$mip" = 'PMIP' ] && [ "$experiment" = 'past1000' ]; then declare -a parent_info=('PMIP' 'past1000' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'last millennium' 'none'); fi + if [ "$mip" = 'PMIP' ] && [ "$experiment" = 'past1000-volconly' ]; then declare -a parent_info=('PMIP' 'past1000-volconly' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'last millennium experiment using only volcanic forcing' 'none'); fi + if [ "$mip" = 'PMIP' ] && [ "$experiment" = 'past2k' ]; then declare -a parent_info=('PMIP' 'past2k' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' 'last two millennia experiment' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'hist-spAer-aer' ]; then declare -a parent_info=('RFMIP' 'hist-spAer-aer' 'CMIP' 'piControl' 'AOGCM' 'CHEM BGC' 'historical simulation with specified anthropogenic aerosols, no other forcings' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'hist-spAer-all' ]; then declare -a parent_info=('RFMIP' 'hist-spAer-all' 'CMIP' 'piControl' 'AOGCM' 'CHEM BGC' 'historical simulation with specified anthropogenic aerosols' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-4xCO2' ]; then declare -a parent_info=('RFMIP' 'piClim-4xCO2' 'CMIP' 'piControl' 'AGCM' 'AER CHEM' 'effective radiative forcing by 4xCO2' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-aer' ]; then declare -a parent_info=('RFMIP' 'piClim-aer' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'effective radiative forcing by present-day aerosols' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-anthro' ]; then declare -a parent_info=('RFMIP' 'piClim-anthro' 'CMIP' 'piControl' 'AGCM' 'AER CHEM' 'effective radiative forcing by present day anthropogenic agents' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-control' ]; then declare -a parent_info=('RFMIP' 'piClim-control' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'Control simulation providing baseline for evaluating effective radiative forcing (ERF)' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-ghg' ]; then declare -a parent_info=('RFMIP' 'piClim-ghg' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'effective radiative forcing by present-day greenhouse gases' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-histaer' ]; then declare -a parent_info=('RFMIP' 'piClim-histaer' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'transient effective radiative forcing by aerosols' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-histall' ]; then declare -a parent_info=('RFMIP' 'piClim-histall' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'transient effective radiative forcing' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-histghg' ]; then declare -a parent_info=('RFMIP' 'piClim-histghg' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'transient effective radiative forcing by greenhouse gases' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-histnat' ]; then declare -a parent_info=('RFMIP' 'piClim-histnat' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'transient effective radiative forcing by natural perturbations' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-lu' ]; then declare -a parent_info=('RFMIP' 'piClim-lu' 'CMIP' 'piControl' 'AGCM' 'AER CHEM BGC' 'effective radiative forcing by present-day land use' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-spAer-aer' ]; then declare -a parent_info=('RFMIP' 'piClim-spAer-aer' 'CMIP' 'piControl' 'AGCM' '' 'effective radiative forcing at present day with specified anthropogenic aerosol optical properties, all forcings' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-spAer-anthro' ]; then declare -a parent_info=('RFMIP' 'piClim-spAer-anthro' 'CMIP' 'piControl' 'AGCM' '' 'effective radiative forcing at present day with specified anthropogenic aerosol optical properties, anthropogenic forcings' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-spAer-histaer' ]; then declare -a parent_info=('RFMIP' 'piClim-spAer-histaer' 'CMIP' 'piControl' 'AGCM' '' 'transient effective radiative forcing with specified anthropogenic aerosol optical properties, aerosol forcing' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'piClim-spAer-histall' ]; then declare -a parent_info=('RFMIP' 'piClim-spAer-histall' 'CMIP' 'piControl' 'AGCM' '' 'transient effective radiative forcing with specified anthropogenic aerosol optical properties, all forcings' 'none'); fi + if [ "$mip" = 'RFMIP' ] && [ "$experiment" = 'rad-irf' ]; then declare -a parent_info=('RFMIP' 'rad-irf' 'no parent' 'no parent' 'RAD' '' 'offline assessment of radiative transfer parmeterizations in clear skies' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'rcp26-cmip5' ]; then declare -a parent_info=('ScenarioMIP' 'rcp26-cmip5' 'CMIP' 'historical-cmip5' 'AOGCM' 'AER CHEM BGC' 'future projection based on CMIP5-era RCP2.6 scenario (CMIP5-era [2006-2100] forcing)' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'rcp45-cmip5' ]; then declare -a parent_info=('ScenarioMIP' 'rcp45-cmip5' 'CMIP' 'historical-cmip5' 'AOGCM' 'AER CHEM BGC' 'future projection based on CMIP5-era RCP4.5 scenario (CMIP5-era [2006-2100] forcing)' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'rcp60-cmip5' ]; then declare -a parent_info=('ScenarioMIP' 'rcp60-cmip5' 'CMIP' 'historical-cmip5' 'AOGCM' 'AER CHEM BGC' 'future projection based on CMIP5-era RCP6.0 scenario (CMIP5-era [2006-2100] forcing)' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'rcp85-cmip5' ]; then declare -a parent_info=('ScenarioMIP' 'rcp85-cmip5' 'CMIP' 'historical-cmip5' 'AOGCM' 'AER CHEM BGC' 'future projection based on CMIP5-era RCP8.5 scenario (CMIP5-era [2006-2100] forcing)' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'ssp119' ]; then declare -a parent_info=('ScenarioMIP' 'ssp119' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'low-end scenario reaching 1.9 W m-2, based on SSP1' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'ssp126' ]; then declare -a parent_info=('ScenarioMIP' 'ssp126' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'update of RCP2.6 based on SSP1' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'ssp245' ]; then declare -a parent_info=('ScenarioMIP' 'ssp245' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'update of RCP4.5 based on SSP2' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'ssp370' ]; then declare -a parent_info=('ScenarioMIP' 'ssp370' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'gap-filling scenario reaching 7.0 based on SSP3' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'ssp434' ]; then declare -a parent_info=('ScenarioMIP' 'ssp434' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'gap-filling scenario reaching 3.4 based on SSP4' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'ssp460' ]; then declare -a parent_info=('ScenarioMIP' 'ssp460' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'update of RCP6.0 based on SSP4' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'ssp534-over' ]; then declare -a parent_info=('ScenarioMIP' 'ssp534-over' 'ScenarioMIP' 'ssp585' 'AOGCM' 'AER CHEM BGC' 'overshoot of 3.4 W/m**2 branching from ssp585 in 2040' 'none'); fi + if [ "$mip" = 'ScenarioMIP' ] && [ "$experiment" = 'ssp585' ]; then declare -a parent_info=('ScenarioMIP' 'ssp585' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'update of RCP8.5 based on SSP5' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'control-slab' ]; then declare -a parent_info=('VolMIP' 'control-slab' 'no parent' 'no parent' 'AGCM' 'AER CHEM BGC' 'control with slab ocean' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'dcppC-forecast-addPinatubo' ]; then declare -a parent_info=('VolMIP' 'dcppC-forecast-addPinatubo' 'no parent' 'no parent' 'AOGCM' 'AER CHEM BGC' '2015 forecast with added Pinatubo forcing' 's2014'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-cluster-21C' ]; then declare -a parent_info=('VolMIP' 'volc-cluster-21C' 'CMIP' 'historical' 'AOGCM' 'AER CHEM BGC' 'volcanic cluster experiment under 21st century SSP2-4.5 scenario' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-cluster-ctrl' ]; then declare -a parent_info=('VolMIP' 'volc-cluster-ctrl' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' '19th century volcanic cluster initialized from PiControl' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-cluster-mill' ]; then declare -a parent_info=('VolMIP' 'volc-cluster-mill' 'PMIP' 'past1000' 'AOGCM' 'AER CHEM BGC' '19th century volcanic cluster initialized from past1000' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-long-eq' ]; then declare -a parent_info=('VolMIP' 'volc-long-eq' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'idealized equatorial volcanic eruption emitting 56.2 Tg SO2' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-long-hlN' ]; then declare -a parent_info=('VolMIP' 'volc-long-hlN' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'idealized Northern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-long-hlS' ]; then declare -a parent_info=('VolMIP' 'volc-long-hlS' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Idealized Southern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-pinatubo-full' ]; then declare -a parent_info=('VolMIP' 'volc-pinatubo-full' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Pinatubo experiment' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-pinatubo-slab' ]; then declare -a parent_info=('VolMIP' 'volc-pinatubo-slab' 'VolMIP' 'control-slab' 'AGCM' 'AER CHEM BGC' 'Pinatubo experiment with slab ocean' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-pinatubo-strat' ]; then declare -a parent_info=('VolMIP' 'volc-pinatubo-strat' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Pinatubo experiment with partial radiative forcing, includes only stratospheric warming' 'none'); fi + if [ "$mip" = 'VolMIP' ] && [ "$experiment" = 'volc-pinatubo-surf' ]; then declare -a parent_info=('VolMIP' 'volc-pinatubo-surf' 'CMIP' 'piControl' 'AOGCM' 'AER CHEM BGC' 'Pinatubo experiment with partial radiative forcing, solar radiation scattering only' 'none'); fi + +#echo ' Parent info: ' ${parent_info[2]} ${parent_info[3]} + + echo + for i in "${model_components[@]}" + do + component="$i" + + if [ "$#" -eq 4 ]; then + echo ' Running ' $0 ${mip} ${experiment} ${ececonf} ${input_template} ' for ' ${component} + else + echo ' Running ' $0 ${mip} ${experiment} ${ececonf} ' for ' ${component} + fi + + if [ "${component}" != 'ifs' ] && [ "${component}" != 'nemo' ] && [ "${component}" != 'tm5' ] && [ "${component}" != 'lpjg' ]; then + echo ' Error in ' $0 ': unkown ec-earth component: ' ${component} ' Valid options: ifs, nemo, tm5, or lpjg' + exit + fi + + if [ "${component}" = 'ifs' ]; then + grid_label='gr' + res_index=1 + elif [ "${component}" = 'nemo' ]; then + grid_label='gn' + res_index=2 + elif [ "${component}" = 'tm5' ]; then + grid_label='gn' + res_index=3 + elif [ "${component}" = 'lpjg' ]; then + grid_label='gr' + res_index=4 + fi + + output_template=metadata-cmip6-${mip}-${experiment}-${ececonf}-${component}-template.json + + # Creating and adjusting with sed the output meta data template json file: + sed 's/"activity_id": "CMIP"/"activity_id": "'${mip}'"/' ${input_template} > ${output_template} + sed -i 's/"experiment_id": "piControl"/"experiment_id": "'${experiment}'"/' ${output_template} + sed -i 's/"source_id": "EC-Earth3"/"source_id": "'${ece_res[0]}'"/' ${output_template} + sed -i 's/"source": "EC-Earth3 (2019)"/"source": "'${ece_res[0]}' (2019)"/' ${output_template} # The 2019 is correct as long no P verison from 2017 is taken. + sed -i 's/"source_type": "AOGCM"/"source_type": "'"${ece_res[${source_type_index}]}"'"/' ${output_template} # Note the double quote for the spaces in the variable + sed -i 's/"grid_label": "gr"/"grid_label": "'${grid_label}'"/' ${output_template} + sed -i 's/"grid": "T255L91"/"grid": "'"${ece_res[${res_index}]}"'"/' ${output_template} + sed -i 's/"nominal_resolution": "100 km"/"nominal_resolution": "'"${nom_res[${res_index}]}"'"/' ${output_template} + if [ "${ececonf}" = 'EC-EARTH-AOGCM' ] && [ "${mip}" = 'CMIP' ] && [ "${experiment}" = 'piControl' ]; then + sed -i 's/"parent_source_id": "EC-Earth3"/"parent_source_id": "'${ece_res[0]}'-Veg"/' ${output_template} + else + sed -i 's/"parent_source_id": "EC-Earth3-Veg"/"parent_source_id": "'${ece_res[0]}'"/' ${output_template} + fi + sed -i 's/"parent_activity_id": "CMIP"/"parent_activity_id": "'"${parent_info[2]}"'"/' ${output_template} + sed -i 's/"parent_experiment_id": "piControl-spinup"/"parent_experiment_id": "'"${parent_info[3]}"'"/' ${output_template} + + done + echo + +else + echo ' ' + echo ' This scripts requires three or four arguments, e.g.:' + echo ' ' $0 CMIP historical EC-EARTH-Veg + echo ' ' $0 CMIP historical EC-EARTH-CC ../resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json + echo ' ' +fi + + + +# "source_type":{ +# "AER":"aerosol treatment in an atmospheric model where concentrations are calculated based on emissions, transformation, and removal processes (rather than being prescribed or omitted entirely)", +# "AGCM":"atmospheric general circulation model run with prescribed ocean surface conditions and usually a model of the land surface", +# "AOGCM":"coupled atmosphere-ocean global climate model, additionally including explicit representation of at least the land and sea ice", +# "BGC":"biogeochemistry model component that at the very least accounts for carbon reservoirs and fluxes in the atmosphere, terrestrial biosphere, and ocean", +# "CHEM":"chemistry treatment in an atmospheric model that calculates atmospheric oxidant concentrations (including at least ozone), rather than prescribing them", +# "ISM":"ice-sheet model that includes ice-flow", +# "LAND":"land model run uncoupled from the atmosphere", +# "OGCM":"ocean general circulation model run uncoupled from an AGCM but, usually including a sea-ice model", +# "RAD":"radiation component of an atmospheric model run 'offline'", +# "SLAB":"slab-ocean used with an AGCM in representing the atmosphere-ocean coupled system" +# }, +# "grid_label":{ +# "gm":"global mean data", +# "gn":"data reported on a model's native grid", +# "gna":"data reported on a native grid in the region of Antarctica", +# "gng":"data reported on a native grid in the region of Greenland", +# "gnz":"zonal mean data reported on a model's native latitude grid", +# "gr":"regridded data reported on the data provider's preferred target grid", +# "gr1":"regridded data reported on a grid other than the native grid and other than the preferred target grid", +# "gr1a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", +# "gr1g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", +# "gr1z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", +# "gr2":"regridded data reported on a grid other than the native grid and other than the preferred target grid", +# "gr2a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", +# "gr2g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", +# "gr2z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", +# "gr3":"regridded data reported on a grid other than the native grid and other than the preferred target grid", +# "gr3a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", +# "gr3g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", +# "gr3z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", +# "gr4":"regridded data reported on a grid other than the native grid and other than the preferred target grid", +# "gr4a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", +# "gr4g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", +# "gr4z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", +# "gr5":"regridded data reported on a grid other than the native grid and other than the preferred target grid", +# "gr5a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", +# "gr5g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", +# "gr5z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", +# "gr6":"regridded data reported on a grid other than the native grid and other than the preferred target grid", +# "gr6a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", +# "gr6g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", +# "gr6z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", +# "gr7":"regridded data reported on a grid other than the native grid and other than the preferred target grid", +# "gr7a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", +# "gr7g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", +# "gr7z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", +# "gr8":"regridded data reported on a grid other than the native grid and other than the preferred target grid", +# "gr8a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", +# "gr8g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", +# "gr8z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", +# "gr9":"regridded data reported on a grid other than the native grid and other than the preferred target grid", +# "gr9a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", +# "gr9g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", +# "gr9z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", +# "gra":"regridded data in the region of Antarctica reported on the data provider's preferred target grid", +# "grg":"regridded data in the region of Greenland reported on the data provider's preferred target grid", +# "grz":"regridded zonal mean data reported on the data provider's preferred latitude target grid" +# }, +# "nominal_resolution":[ +# "0.5 km", +# "1 km", +# "10 km", +# "100 km", +# "1000 km", +# "10000 km", +# "1x1 degree", +# "2.5 km", +# "25 km", +# "250 km", +# "2500 km", +# "5 km", +# "50 km", +# "500 km", +# "5000 km" diff --git a/ece2cmor/ece2cmor3/scripts/omit-few-plev19-layers-for-unoffical-PMIP-use.sh b/ece2cmor/ece2cmor3/scripts/omit-few-plev19-layers-for-unoffical-PMIP-use.sh new file mode 100755 index 0000000000000000000000000000000000000000..23654dd9be0f255448d277ee85adda72216011ad --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/omit-few-plev19-layers-for-unoffical-PMIP-use.sh @@ -0,0 +1,95 @@ +#!/bin/bash +# Thomas Reerink +# +# This script omits eight pressure levels from the plev19 coordinate in order to reduce PMIP +# output for unoffical use, i.e. the variables which use this adjusted plev19 coordinate won't +# be longer cmor-compliant and will fail the ESGF node checks. +# +# This scripts requires no arguments. +# +# Run example: +# ./omit-few-plev19-layers-for-unoffical-PMIP-use.sh +# + +if [ "$#" -eq 0 ]; then + + omit_few_plev19_layers_for_unoffical_PMIP_use=True + + + if [ omit_few_plev19_layers_for_unoffical_PMIP_use ]; then + # Add two sets of dynamic RCM forcing variables on dedicated pressure levels #664. + + cd ../resources/cmip6-cmor-tables + git checkout Tables/CMIP6_coordinate.json + cd - + + ## Reduce the number of plev19 levels in the CMOR tables: + #sed -i -e '/plev19/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;d' ../resources/tables/CMIP6_coordinate.json + #sed -i -e '/plev19/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;d' ../resources/tables/CMIP6_coordinate.json + #sed -i -e '/plev19/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;d' ../resources/tables/CMIP6_coordinate.json + #sed -i -e '/plev19/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;d' ../resources/tables/CMIP6_coordinate.json + #sed -i -e '/plev19/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;d' ../resources/tables/CMIP6_coordinate.json + #sed -i -e '/plev19/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;d' ../resources/tables/CMIP6_coordinate.json + #sed -i -e '/plev19/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;d' ../resources/tables/CMIP6_coordinate.json + #sed -i -e '/plev19/!b;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;n;d' ../resources/tables/CMIP6_coordinate.json + + + # Replace the reduced plev19 coordinate in the CMOR tables: + sed -i -e '/plev19/,+42d' ../resources/tables/CMIP6_coordinate.json + sed -i '/"plev23": {/i \ + "plev19": {\ + "standard_name": "air_pressure", \ + "units": "Pa", \ + "axis": "Z", \ + "long_name": "pressure", \ + "climatology": "", \ + "formula": "", \ + "must_have_bounds": "no", \ + "out_name": "plev", \ + "positive": "down", \ + "requested": [\ + "100000.", \ + "92500.", \ + "85000.", \ + "70000.", \ + "50000.", \ + "40000.", \ + "30000.", \ + "20000.", \ + "10000.", \ + "5000.", \ + "1000."\ + ], \ + "requested_bounds": "", \ + "stored_direction": "decreasing", \ + "tolerance": "", \ + "type": "double", \ + "valid_max": "", \ + "valid_min": "", \ + "value": "", \ + "z_bounds_factors": "", \ + "z_factors": "", \ + "bounds_values": "", \ + "generic_level_name": ""\ + }, + ' ../resources/tables/CMIP6_coordinate.json + + echo + echo ' Attention: you adjusted the ../resources/tables/CMIP6_coordinate.json file by removing eight pressure levels from the plev19 coordinate, with this the plev19 variables are not longer CMOR compliant.' + echo + echo ' For reverting these changes, use:' + echo ' ' ./revert-nested-cmor-table-branch.sh + echo + + else + echo + echo ' Noting done, no set of variables and / or experiments has been selected to add to the tables.' + echo + fi + +else + echo + echo ' This scripts requires no argument:' + echo ' ' $0 + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/quick-test-genecec.sh b/ece2cmor/ece2cmor3/scripts/quick-test-genecec.sh new file mode 100755 index 0000000000000000000000000000000000000000..295153eee2b3e6764a12cba2531ec9c13e4f4a07 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/quick-test-genecec.sh @@ -0,0 +1,56 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# Run this script without arguments for examples how to call this script. +# +# With this script a quick genecec test can be run and the output is written to a log file. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script calls genecec.py + + +if [ "$#" -eq 1 ]; then + + if ! type "ece2cmor" > /dev/null; then + echo; tput setaf 1; + echo ' The CMIP6 data request tool ece2cmor is not available because of one of the following reasons:' + echo ' 1. ece2cmor might be not installed' + echo ' 2. ece2cmor might be not active, check whether the ece2cmor3 environment is activated' + echo ' Stop' + tput sgr0; echo + exit + fi + + if ! type "drq" > /dev/null; then + echo; tput setaf 1; + echo ' The CMIP6 data request tool drq is not available because of one of the following reasons:' + echo ' 1. drq might be not installed' + echo ' 2. drq might be not active, check whether the ece2cmor3 environment is activated' + echo ' Stop' + tput sgr0; echo + exit + fi + + test_version=$1 + + mip_list=CMIP,DCPP,LS3MIP,PAMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB + mip=CMIP + exp=historical + + test_dir=../../../control-output-files/quicktest + log_dir=${test_dir}/log-files/; mkdir -p ${log_dir} + log_file=${log_dir}/log-${mip}-${exp}-${test_version}.txt + ./genecec-per-mip-experiment.sh ${test_dir}/${mip}-${exp}-${test_version} ${mip_list} ${exp} 1 1 >& ${log_file} + + echo " Compare the results like:" + echo " diff -r ${test_dir}/${mip}-${exp}-v01 ${test_dir}/${mip}-${exp}-${test_version}" + echo " meld ${log_file/${test_version}/v01} ${log_file}" + +else + echo + echo " This scripts has to be run with the correct environment and requires one argument, e.g.:" + echo " $0 v01" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/revert-nested-cmor-table-branch.sh b/ece2cmor/ece2cmor3/scripts/revert-nested-cmor-table-branch.sh new file mode 100755 index 0000000000000000000000000000000000000000..979b4c72376d99db34486c5dea008d7ff25596fd --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/revert-nested-cmor-table-branch.sh @@ -0,0 +1,23 @@ +#!/bin/bash +# Thomas Reerink +# +# This script simply reverts all local changes on top of the nested CMOR table repository in ece2cmor3 +# +# This scripts requires no arguments. +# +# Run example: +# ./add-non-cmor-variables.sh +# + +if [ "$#" -eq 0 ]; then + + cd ../resources/tables + git checkout * + cd - + +else + echo ' ' + echo ' This scripts requires no argument:' + echo ' ' $0 + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/scripts/run-genecec.sh b/ece2cmor/ece2cmor3/scripts/run-genecec.sh new file mode 100755 index 0000000000000000000000000000000000000000..315e2b7b2b4b06feab5d6f8a2d784e1d01d92991 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/run-genecec.sh @@ -0,0 +1,66 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# Run this script without arguments for examples how to call this script. +# +# With this script genecec can be run and the output is written to a log file. +# +# This script is part of the subpackage genecec (GENerate EC-Eearth Control output files) +# which is part of ece2cmor3. +# +# Note that this script calls genecec.py + +if [ "$#" -eq 3 ]; then + + if ! type "ece2cmor" > /dev/null; then + echo; tput setaf 1; + echo ' The CMIP6 data request tool ece2cmor is not available because of one of the following reasons:' + echo ' 1. ece2cmor might be not installed' + echo ' 2. ece2cmor might be not active, check whether the ece2cmor3 environment is activated' + echo ' Stop' + tput sgr0; echo + exit + fi + + if ! type "drq" > /dev/null; then + echo; tput setaf 1; + echo ' The CMIP6 data request tool drq is not available because of one of the following reasons:' + echo ' 1. drq might be not installed' + echo ' 2. drq might be not active, check whether the ece2cmor3 environment is activated' + echo ' Stop' + tput sgr0; echo + exit + fi + + pextra_mode=$1 + version=$2 + ece2cmor3_dir=$3 + + config_genecec_run_file=config-genecec-run + + if [ "${pextra_mode}" == 'pextra' ]; then + label=${version}-'pextra' + else + label=${version} + fi + + sed -e 's/output-control-files/~\/cmorize\/control-output-files\/output-control-files-v'${version}'/' config-genecec > ${config_genecec_run_file} + if [ "${pextra_mode}" == 'pextra' ]; then + sed -i -e 's/activate_pextra_mode = False/activate_pextra_mode = True /' ${config_genecec_run_file} + sed -i -e 's/default/pextra/' ${config_genecec_run_file} # Adjust example in header + fi + sed -i -e "s/001/${version}/" ${config_genecec_run_file} # Adjust example in header + sed -i -e "s/ece2cmor3/${ece2cmor3_dir}/" ${config_genecec_run_file} + + log_dir=~/cmorize/control-output-files/log-genecec + log_file=${log_dir}/log-genecec-v${label} + mkdir -p ${log_dir} + ./genecec.py ${config_genecec_run_file} >& ${log_file} & + +else + echo + echo " This scripts requires three arguments, e.g.:" + echo " $0 default 420 ece2cmor3" + echo " $0 pextra 420 ece2cmor3" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-amip.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-amip.sh new file mode 100755 index 0000000000000000000000000000000000000000..8a6f5ef8c3dc93e0db8dfd9a7d9f91b46beae9be --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-amip.sh @@ -0,0 +1,98 @@ +#!/bin/bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +# This scripts requires two arguments: +# 1st argument: model component +# 2nd argument: leg +# +#SBATCH --job-name=cmorise +#SBATCH --partition=all +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --account=proj-cmip6 + +# Account options: proj-cmip6 & model-testing & proj-dutch_scen & proj-dutch_post + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writting files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 2 ]; then + + COMPONENT=$1 + LEG=$2 + + EXP=ami1 + ECEDIR=/lustre3/projects/CMIP6/sager/rundirs/ami1/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-amip/metadata-cmip6-CMIP-amip-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=/lustre3/projects/CMIP6/reerink/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-amip/cmip6-data-request-varlist-CMIP-amip-EC-EARTH-AOGCM.json + ODIR=/lustre3/projects/CMIP6/reerink/cmorised-results/cmor-cmip-amip/$EXP + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " is empty. Aborting job:" $0 >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source /lustre3/projects/CMIP6/reerink/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + #if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + + # Launching the next job for the next leg: + arg0=$0 + arg1=$1 + arg2previous=$2 + arg2next=$((10#${arg2previous}+16)) + arg2=$(printf %.3d ${arg2next} ) + if [ ${arg2next} -lt 49 ] ; then + echo ' A next job is launched:' + echo ' ' sbatch --job-name=cmorise-amip-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + sbatch --job-name=cmorise-amip-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + else + echo ' No next job is launched.' + fi + + else + echo + echo ' Illegal number of arguments: the script requires two arguments:' + echo ' 1st argument: model component' + echo ' 2nd argument: leg' + echo ' For instance:' + echo ' sbatch ' $0 ' ifs 001' + echo ' Or use:' + echo ' for j in {010..025}; do echo sbatch --job-name=cmorise-amip-$j ' $0 ' ifs $j; done' + echo ' for j in {010..025}; do sbatch --job-name=cmorise-amip-$j ' $0 ' ifs $j; done' + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-historical.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-historical.sh new file mode 100755 index 0000000000000000000000000000000000000000..b21be0462068b6fcde85960452305c04f0c1a9ab --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-historical.sh @@ -0,0 +1,98 @@ +#!/bin/bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +# This scripts requires two arguments: +# 1st argument: model component +# 2nd argument: leg +# +#SBATCH --job-name=cmorise +#SBATCH --partition=all +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --account=proj-cmip6 + +# Account options: proj-cmip6 & model-testing & proj-dutch_scen & proj-dutch_post + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writting files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 2 ]; then + + COMPONENT=$1 + LEG=$2 + + EXP=h003 + ECEDIR=/lustre3/projects/CMIP6/reerink/ec-earth-3/branch-r6485-historical-setup/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical/metadata-cmip6-CMIP-historical-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=/lustre3/projects/CMIP6/reerink/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical/cmip6-data-request-varlist-CMIP-historical-EC-EARTH-AOGCM.json + ODIR=/lustre3/projects/CMIP6/reerink/cmorised-results/cmor-cmip-historical/$EXP + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " is empty. Aborting job:" $0 >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source /lustre3/projects/CMIP6/reerink/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + #if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + + # Launching the next job for the next leg: + arg0=$0 + arg1=$1 + arg2previous=$2 + arg2next=$((10#${arg2previous}+16)) + arg2=$(printf %.3d ${arg2next} ) + if [ ${arg2next} -lt 166 ] ; then + echo ' A next job is launched:' + echo ' ' sbatch --job-name=cmorise-historical-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + sbatch --job-name=cmorise-historical-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + else + echo ' No next job is launched.' + fi + + else + echo + echo ' Illegal number of arguments: the script requires two arguments:' + echo ' 1st argument: model component' + echo ' 2nd argument: leg' + echo ' For instance:' + echo ' sbatch ' $0 ' ifs 001' + echo ' Or use:' + echo ' for j in {001..016}; do sbatch --job-name=cmorise-historical-ifs-$j ' $0 ' ifs $j; done' + echo ' for j in {001..016}; do sbatch --job-name=cmorise-historical-nemo-$j ' $0 ' nemo $j; done' + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-piControl.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-piControl.sh new file mode 100755 index 0000000000000000000000000000000000000000..0618877689011b157f510b369e2d7f16478c6824 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-piControl.sh @@ -0,0 +1,98 @@ +#!/bin/bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +# This scripts requires two arguments: +# 1st argument: model component +# 2nd argument: leg +# +#SBATCH --job-name=cmorise +#SBATCH --partition=all +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --account=proj-cmip6 + +# Account options: proj-cmip6 & model-testing & proj-dutch_scen & proj-dutch_post + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writting files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 2 ]; then + + COMPONENT=$1 + LEG=$2 + + EXP=t264 + ECEDIR=/lustre2/projects/model_testing/reerink/ec-earth-3/trunk/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-piControl/metadata-cmip6-CMIP-piControl-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=/lustre2/projects/model_testing/reerink/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-piControl/cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json + ODIR=/lustre2/projects/model_testing/reerink/cmorised-results/cmor-cmip-piControl/$EXP + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " is empty. Aborting job:" $0 >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source /lustre3/projects/CMIP6/reerink/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + #if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + + # Launching the next job for the next leg: + arg0=$0 + arg1=$1 + arg2previous=$2 + arg2next=$((10#${arg2previous}+16)) + arg2=$(printf %.3d ${arg2next} ) + if [ ${arg2next} -lt 601 ] ; then + echo ' A next job is launched:' + echo ' ' sbatch --job-name=cmorise-piControl-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + sbatch --job-name=cmorise-piControl-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + else + echo ' No next job is launched.' + fi + + else + echo + echo ' Illegal number of arguments: the script requires two arguments:' + echo ' 1st argument: model component' + echo ' 2nd argument: leg' + echo ' For instance:' + echo ' sbatch ' $0 ' ifs 001' + echo ' Or use:' + echo ' for j in {100..115}; do sbatch --job-name=cmorise-piControl-ifs-$j ' $0 ' ifs $j; done' + echo ' for j in {100..115}; do sbatch --job-name=cmorise-piControl-nemo-$j ' $0 ' nemo $j; done' + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp1-2.6.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp1-2.6.sh new file mode 100755 index 0000000000000000000000000000000000000000..1f2fd24e0212191742ed4df22d8194329e7d65c4 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp1-2.6.sh @@ -0,0 +1,98 @@ +#!/bin/bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +# This scripts requires two arguments: +# 1st argument: model component +# 2nd argument: leg +# +#SBATCH --job-name=cmorise +#SBATCH --partition=all +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --account=proj-cmip6 + +# Account options: proj-cmip6 & model-testing & proj-dutch_scen & proj-dutch_post + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writting files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 2 ]; then + + COMPONENT=$1 + LEG=$2 + + EXP=s126 + ECEDIR=/lustre3/projects/CMIP6/reerink/ec-earth-3/trunk/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp126/metadata-cmip6-ScenarioMIP-ssp126-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=/lustre3/projects/CMIP6/reerink/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp126/cmip6-data-request-varlist-ScenarioMIP-ssp126-EC-EARTH-AOGCM.json + ODIR=/lustre3/projects/CMIP6/reerink/cmorised-results/cmor-cmip-scenario-ssp1-2.6/$EXP + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " is empty. Aborting job:" $0 >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source /lustre3/projects/CMIP6/reerink/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + #if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + + # Launching the next job for the next leg: + arg0=$0 + arg1=$1 + arg2previous=$2 + arg2next=$((10#${arg2previous}+16)) + arg2=$(printf %.3d ${arg2next} ) + if [ ${arg2next} -lt 252 ] ; then + echo ' A next job is launched:' + echo ' ' sbatch --job-name=cmorise-s126-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + sbatch --job-name=cmorise-s126-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + else + echo ' No next job is launched.' + fi + + else + echo + echo ' Illegal number of arguments: the script requires two arguments:' + echo ' 1st argument: model component' + echo ' 2nd argument: leg' + echo ' For instance:' + echo ' sbatch ' $0 ' ifs 001' + echo ' Or use:' + echo ' for j in {166..181}; do sbatch --job-name=cmorise-s126-ifs-$j ' $0 ' ifs $j; done' + echo ' for j in {166..181}; do sbatch --job-name=cmorise-s126-nemo-$j ' $0 ' nemo $j; done' + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp2-4.5.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp2-4.5.sh new file mode 100755 index 0000000000000000000000000000000000000000..1e6c5ed6a1f08e1d112c1f10329c1cff9b5ab9b6 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp2-4.5.sh @@ -0,0 +1,98 @@ +#!/bin/bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +# This scripts requires two arguments: +# 1st argument: model component +# 2nd argument: leg +# +#SBATCH --job-name=cmorise +#SBATCH --partition=all +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --account=proj-cmip6 + +# Account options: proj-cmip6 & model-testing & proj-dutch_scen & proj-dutch_post + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writting files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 2 ]; then + + COMPONENT=$1 + LEG=$2 + + EXP=s245 + ECEDIR=/lustre3/projects/CMIP6/reerink/ec-earth-3/trunk/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp245/metadata-cmip6-ScenarioMIP-ssp245-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=/lustre3/projects/CMIP6/reerink/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp245/cmip6-data-request-varlist-ScenarioMIP-ssp245-EC-EARTH-AOGCM.json + ODIR=/lustre3/projects/CMIP6/reerink/cmorised-results/cmor-cmip-scenario-ssp2-4.5/$EXP + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " is empty. Aborting job:" $0 >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source /lustre3/projects/CMIP6/reerink/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + #if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + + # Launching the next job for the next leg: + arg0=$0 + arg1=$1 + arg2previous=$2 + arg2next=$((10#${arg2previous}+16)) + arg2=$(printf %.3d ${arg2next} ) + if [ ${arg2next} -lt 252 ] ; then + echo ' A next job is launched:' + echo ' ' sbatch --job-name=cmorise-s245-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + sbatch --job-name=cmorise-s245-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + else + echo ' No next job is launched.' + fi + + else + echo + echo ' Illegal number of arguments: the script requires two arguments:' + echo ' 1st argument: model component' + echo ' 2nd argument: leg' + echo ' For instance:' + echo ' sbatch ' $0 ' ifs 001' + echo ' Or use:' + echo ' for j in {166..181}; do sbatch --job-name=cmorise-s245-ifs-$j ' $0 ' ifs $j; done' + echo ' for j in {166..181}; do sbatch --job-name=cmorise-s245-nemo-$j ' $0 ' nemo $j; done' + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp3-7.0.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp3-7.0.sh new file mode 100755 index 0000000000000000000000000000000000000000..a865de328f539683de3229f87ffdf609f724c7b9 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp3-7.0.sh @@ -0,0 +1,98 @@ +#!/bin/bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +# This scripts requires two arguments: +# 1st argument: model component +# 2nd argument: leg +# +#SBATCH --job-name=cmorise +#SBATCH --partition=all +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --account=proj-cmip6 + +# Account options: proj-cmip6 & model-testing & proj-dutch_scen & proj-dutch_post + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writting files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 2 ]; then + + COMPONENT=$1 + LEG=$2 + + EXP=s370 + ECEDIR=/lustre3/projects/CMIP6/reerink/ec-earth-3/trunk/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp370/metadata-cmip6-ScenarioMIP-ssp370-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=/lustre3/projects/CMIP6/reerink/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp370/cmip6-data-request-varlist-ScenarioMIP-ssp370-EC-EARTH-AOGCM.json + ODIR=/lustre3/projects/CMIP6/reerink/cmorised-results/cmor-cmip-scenario-ssp3-7.0/$EXP + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " is empty. Aborting job:" $0 >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source /lustre3/projects/CMIP6/reerink/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + #if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + + # Launching the next job for the next leg: + arg0=$0 + arg1=$1 + arg2previous=$2 + arg2next=$((10#${arg2previous}+16)) + arg2=$(printf %.3d ${arg2next} ) + if [ ${arg2next} -lt 252 ] ; then + echo ' A next job is launched:' + echo ' ' sbatch --job-name=cmorise-s370-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + sbatch --job-name=cmorise-s370-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + else + echo ' No next job is launched.' + fi + + else + echo + echo ' Illegal number of arguments: the script requires two arguments:' + echo ' 1st argument: model component' + echo ' 2nd argument: leg' + echo ' For instance:' + echo ' sbatch ' $0 ' ifs 001' + echo ' Or use:' + echo ' for j in {166..181}; do sbatch --job-name=cmorise-s370-ifs-$j ' $0 ' ifs $j; done' + echo ' for j in {166..181}; do sbatch --job-name=cmorise-s370-nemo-$j ' $0 ' nemo $j; done' + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp5-8.5.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp5-8.5.sh new file mode 100755 index 0000000000000000000000000000000000000000..19846978c086311ab46ff7e905660c3d6a7e11ef --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-scenario-ssp5-8.5.sh @@ -0,0 +1,98 @@ +#!/bin/bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +# This scripts requires two arguments: +# 1st argument: model component +# 2nd argument: leg +# +#SBATCH --job-name=cmorise +#SBATCH --partition=all +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --account=proj-cmip6 + +# Account options: proj-cmip6 & model-testing & proj-dutch_scen & proj-dutch_post + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writting files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 2 ]; then + + COMPONENT=$1 + LEG=$2 + + EXP=s585 + ECEDIR=/lustre3/projects/CMIP6/reerink/ec-earth-3/trunk/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585/metadata-cmip6-ScenarioMIP-ssp585-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=/lustre3/projects/CMIP6/reerink/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/ScenarioMIP/EC-EARTH-AOGCM/cmip6-experiment-ScenarioMIP-ssp585/cmip6-data-request-varlist-ScenarioMIP-ssp585-EC-EARTH-AOGCM.json + ODIR=/lustre3/projects/CMIP6/reerink/cmorised-results/cmor-cmip-scenario-ssp5-8.5/$EXP + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: " $ECEDIR " is empty. Aborting job:" $0 >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source /lustre3/projects/CMIP6/reerink/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + #if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + + # Launching the next job for the next leg: + arg0=$0 + arg1=$1 + arg2previous=$2 + arg2next=$((10#${arg2previous}+16)) + arg2=$(printf %.3d ${arg2next} ) + if [ ${arg2next} -lt 252 ] ; then + echo ' A next job is launched:' + echo ' ' sbatch --job-name=cmorise-s585-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + sbatch --job-name=cmorise-s585-${arg1}-${arg2} ${arg0} ${arg1} ${arg2} + else + echo ' No next job is launched.' + fi + + else + echo + echo ' Illegal number of arguments: the script requires two arguments:' + echo ' 1st argument: model component' + echo ' 2nd argument: leg' + echo ' For instance:' + echo ' sbatch ' $0 ' ifs 001' + echo ' Or use:' + echo ' for j in {166..181}; do sbatch --job-name=cmorise-s585-ifs-$j ' $0 ' ifs $j; done' + echo ' for j in {166..181}; do sbatch --job-name=cmorise-s585-nemo-$j ' $0 ' nemo $j; done' + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-test-all.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-test-all.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb93a0ac4ddc16c81ba04b5bef2916d07cd6238a --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job-test-all.sh @@ -0,0 +1,84 @@ +#!/usr/bin/env bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +#SBATCH --job-name=cmorise +#SBATCH --partition=all +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --account=proj-dutch_post + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writing files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 4 ]; then + + COMPONENT=$1 + LEG=$2 + EXP=$3 + VERSION=$4 + + ECEDIR=/lustre3/projects/CMIP6/reerink/ec-earth-3/trunk/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/output-control-files/cmip6/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-piControl/metadata-cmip6-CMIP-piControl-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=/lustre3/projects/CMIP6/reerink/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/output-control-files/cmip6/test-all-ece-mip-variables/cmip6-data-request-varlist-all-EC-EARTH-AOGCM.json + #VARLIST=${PWD}/../../resources/test-data-request/varlist-minimal-test.json + ODIR=/lustre3/projects/CMIP6/reerink/cmorised-results/test-all-trunk/$EXP/$VERSION + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: $ECEDIR doesn't exist. Aborting job: $0" >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: $ECEDIR is empty. Aborting job: $0" >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source /lustre3/projects/CMIP6/reerink/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + #if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + else + echo + echo " Illegal number of arguments: the script requires four arguments:" + echo " 1st argument: model component" + echo " 2nd argument: leg" + echo " 3rd argument: experiment ID" + echo " 4th argument: version label" + echo " For instance:" + echo " sbatch $0 ifs 001 t001 py2-v01" + echo " Or use:" + echo " for i in {001..001}; do sbatch --job-name=cmorise-ifs-\$i $0 ifs \$i t001 py2-v01; done" + echo " for i in {001..001}; do sbatch --job-name=cmorise-nemo-\$i $0 nemo \$i t001 py2-v01; done" + echo + echo " for i in {001..002}; do sbatch --job-name=cmorise-ifs-\$i $0 ifs \$i t001 py2-v01; done" + echo " for i in {001..002}; do sbatch --job-name=cmorise-nemo-\$i $0 nemo \$i t001 py2-v01; done" + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job.sh new file mode 100755 index 0000000000000000000000000000000000000000..240e8421c4d91c5782f95a73058e25eda86894e0 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-bull-ece2cmor-leg-job.sh @@ -0,0 +1,94 @@ +#!/usr/bin/env bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +#SBATCH --job-name=cmorise +#SBATCH --partition=all +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --account=proj-dutch_post + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writing files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 3 ]; then + + COMPONENT=$1 + LEG=$2 + EXP=$3 + + ECEDIR=/lustre3/projects/CMIP6/reerink/ec-earth-3/trunk/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/output-control-files/cmip6/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-piControl/metadata-cmip6-CMIP-piControl-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=/lustre3/projects/CMIP6/reerink/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=/nfs/home/users/reerink/ec-earth-3/trunk/runtime/classic/ctrl/output-control-files/cmip6/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-piControl/cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json + ODIR=/lustre3/projects/CMIP6/reerink/cmorised-results/trunk/$EXP + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: $ECEDIR doesn't exist. Aborting job: $0" >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: $ECEDIR is empty. Aborting job: $0" >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source /lustre3/projects/CMIP6/reerink/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + + # Launching the next job for the next leg: + arg0=$0 + arg1=$1 + arg2previous=$2 + arg2next=$((10#${arg2previous}+16)) + arg2=$(printf %.3d ${arg2next} ) + arg3=$3 + if [ ${arg2next} -lt 30 ] ; then + echo " A next job is launched:" + echo " sbatch --job-name=cmorise-${arg1}-${arg2}-${arg3} ${arg0} ${arg1} ${arg2} ${arg3}" + sbatch --job-name=cmorise-${arg1}-${arg2}-${arg3} ${arg0} ${arg1} ${arg2} ${arg3} + else + echo " No next job is launched." + fi + + else + echo + echo " Illegal number of arguments: the script requires three arguments:" + echo " 1st argument: model component" + echo " 2nd argument: leg" + echo " 3rd argument: experiment ID" + echo " For instance:" + echo " sbatch $0 ifs 001 t001" + echo " Or use:" + echo " for i in {001..002}; do sbatch --job-name=cmorise-ifs-\$i $0 ifs \$i t001; done" + echo " for i in {001..002}; do sbatch --job-name=cmorise-nemo-\$i $0 nemo \$i t001; done" + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-cca-ece2cmor-leg-job.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-cca-ece2cmor-leg-job.sh new file mode 100755 index 0000000000000000000000000000000000000000..915e2a83e4c0bb366e5c8997247e12cf57f116d6 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-cca-ece2cmor-leg-job.sh @@ -0,0 +1,194 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for one leg +# +# This scripts requires two arguments: +# 1st argument: model component +# 2nd argument: leg + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writting files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + +if [ "$#" -eq 2 ]; then + + # Modify the times & the paths in this first block of about 15 lines: + + wall_clock_time=2:00:00 # Maximum estimated time of run, e.g: 6:01:00 means 6 ours, 1 minute, zero seconds + cores_per_node=18 # The number of cores used per node, recommended at cca is to use one thread, i.e 18 cores per node + + COMPONENT=$1 + LEG=$2 + + EXP=onep + ECEDIR=${SCRATCH}/ec-earth-3/trunk/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=${PERM}/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical/metadata-cmip6-CMIP-historical-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=${SCRATCH}/cmorisation/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=${PERM}/ec-earth-3/trunk/runtime/classic/ctrl/cmip6-output-control-files/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-historical/cmip6-data-request-varlist-CMIP-historical-EC-EARTH-AOGCM.json + ODIR=${SCRATCH}/cmorisation/cmorised-results/cmor-CMIP-historical-$EXP/$EXP + + # The directoy (at scratch) from where the submit scripts will be launched by qsub: + running_directory=${SCRATCH}/cmorisation/ + + + + #=============================================================================== + # Below this line the normal end user doesn't have to change anything + #=============================================================================== + + + pbs_header=' +#PBS -N c-'${COMPONENT}'-'${LEG}'-'${EXP}' +#PBS -q nf +#PBS -j oe +#PBS -o pbs-log-for-cmorising-'${EXP}'-'${COMPONENT}'-'${LEG}'.out +#PBS -l walltime='${wall_clock_time}' +#PBS -l EC_hyperthreads=1 +#PBS -l EC_total_tasks=1 +#PBS -l EC_threads_per_task='${cores_per_node}' +##PBS -l EC_billing_account=${EC_billing_account} +##PBS -W depend=afterok: +' + + # This block of variables need to be checked and adjusted: + definition_of_script_variables=' + COMPONENT='${COMPONENT}' + LEG='${LEG}' + + EXP='${EXP}' + ECEDIR='${ECEDIR}' + ECEMODEL='${ECEMODEL}' + METADATA='${METADATA}' + TEMPDIR='${TEMPDIR}' + VARLIST='${VARLIST}' + ODIR='${ODIR}' + ' + + job_name=cmorise-${EXP}-$1-$2.sh + + ece2cmor_call=' + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 18 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + ' + one_line_command=$(echo ${ece2cmor_call} | sed -e 's/\\//g') + + check_data_directory=' + if [ ! -d "$ECEDIR" ]; then echo -e "\e[1;31m Error:\e[0m"" EC-Earth3 data output directory: " $ECEDIR " does not exist. Aborting job: " $0 >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo -e "\e[1;31m Error:\e[0m"" EC-Earth3 data output directory: " $ECEDIR " is empty. Aborting job:" $0 >&2; exit 1; fi + ' + + create_temp_and_output_directories=' + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + ' + + check_whether_ece2cmor_is_activated=' + if ! type ece2cmor > /dev/null; then echo -e "\e[1;31m Error:\e[0m"" ece2cmor is not activated." ;fi + ' + +if [ -d ${PERM}/cmorize/ece2cmor3/ ]; then + ece2cmor_version_log=' + cd ${PERM}/cmorize/ece2cmor3/; echo; git log |head -n 1 | sed -e "s/^/Using /" -e "s/$/ for/"; ece2cmor --version; cd '${running_directory}'; +#cd ${PERM}/cmorize/ece2cmor3/; echo; git log |head -n 1 | sed -e "s/^/Using /" -e "s/$/ for/"; ece2cmor --version; git status --untracked-files=no cd '${running_directory}'; +#cd ${PERM}/cmorize/ece2cmor3/; echo; git log |head -n 1 | sed -e "s/^/Using /" -e "s/$/ for/"; ece2cmor --version; git status --untracked-files=no; git diff cd '${running_directory}'; + ' +else + ece2cmor_version_log=' + echo; echo "Using version:"; ece2cmor --version + ' +fi + + move_log_files=' + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + ' + + remove_temp_directory=' +#if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + ' + + # Creating the job submit script which will be submitted by qsub: + + echo "#! /bin/bash " | sed 's/\s*$//g' > ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " ${pbs_header} " | sed 's/\s*$//g' >> ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " source $SCRATCH/mamba/etc/profile.d/conda.sh " | sed 's/\s*$//g' >> ${job_name} + echo " conda activate ece2cmor3 " | sed 's/\s*$//g' >> ${job_name} + echo " export HDF5_USE_FILE_LOCKING=FALSE " | sed 's/\s*$//g' >> ${job_name} + echo " export UVCDAT_ANONYMOUS_LOG=false " | sed 's/\s*$//g' >> ${job_name} + echo " ${check_whether_ece2cmor_is_activated} " | sed 's/\s*$//g' >> ${job_name} + echo " ${ece2cmor_version_log} " | sed 's/\s*$//g' >> ${job_name} + echo " ${definition_of_script_variables} " | sed 's/\s*$//g' >> ${job_name} + echo " ${check_data_directory} " | sed 's/\s*$//g' >> ${job_name} + echo " ${create_temp_and_output_directories} " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + echo " echo 'The ${job_name} job will run:' " | sed 's/\s*$//g' >> ${job_name} + echo " echo ${one_line_command} " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " ${ece2cmor_call} " | sed 's/\s*$//g' >> ${job_name} + echo " " | sed 's/\s*$//g' >> ${job_name} + echo " ${move_log_files} " | sed 's/\s*$//g' >> ${job_name} + echo " ${remove_temp_directory} " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + echo " echo 'The ${job_name} job has finished.' " | sed 's/\s*$//g' >> ${job_name} + echo " echo " | sed 's/\s*$//g' >> ${job_name} + + chmod uog+x ${job_name} + + + mkdir -p ${running_directory} + if [ ! -d ${running_directory} ]; then echo; echo -e "\e[1;31m Error:\e[0m"" the directory " '${running_directory}' " does not exist."; echo; exit 1; fi + mv -f ${job_name} ${running_directory} + cd ${running_directory} + + # Submitting the job with qsub: + qsub ${job_name} + + # Printing some status info of the job: + echo + echo ' The ' ${running_directory}${job_name} ' submit script is created and submitted. Monitor your job by:' + echo ' qstat -u ' ${USER} + echo ' cd '${running_directory} + echo + #qstat -u ${USER} | grep -v -e 'ccapar:' -e '-----' -e '^$' + #echo + #echo "qstat -u ${USER} |grep ${USER} |sed -e 's/^/qdel /' -e 's/.'${USER}'.*//'" # Cancelling jobs + #echo + + + else + echo + echo ' Illegal number of arguments: the script requires two arguments:' + echo ' 1st argument: model component' + echo ' 2nd argument: leg' + echo ' For instance:' + echo ' ' $0 ' nemo 001' + echo ' Or use:' + echo ' for i in {nemo,ifs}; do for j in {001..008}; do echo ' $0 ' $i $(printf "%03d" $j); done; done' + echo ' for i in {nemo,ifs}; do for j in {001..008}; do ' $0 ' $i $(printf "%03d" $j); done; done' + echo ' for j in {001..015}; do' $0 ' ifs $(printf "%03d" $j); done' + echo ' for j in {001..015}; do' $0 ' nemo $(printf "%03d" $j); done' + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-hpc2020-ece2cmor-leg-job-test-all.sh b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-hpc2020-ece2cmor-leg-job-test-all.sh new file mode 100755 index 0000000000000000000000000000000000000000..2d6b9909ccfdffad090ff066850ae773a922195a --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/submit-script-examples/submit-at-hpc2020-ece2cmor-leg-job-test-all.sh @@ -0,0 +1,85 @@ +#!/usr/bin/env bash +# +# Run this script without arguments for examples how to call this script. +# +# Cmorise per model component the EC-Earth3 raw output with ece2cmor3 for multipe legs +# +#SBATCH --time=00:05:00 +#SBATCH --job-name=cmorise +#SBATCH --ntasks-per-node=1 +#SBATCH --cpus-per-task=28 +#SBATCH --qos=nf +#SBATCH --output=stdout-cmorisation.%j.out +#SBATCH --error=stderr-cmorisation.%j.out +#SBATCH --account=nlchekli +#SBATCH --mail-type=FAIL + +# ECEDIR is the directory with the raw ec-earth output results, for instance: t001/output/nemo/001 +# EXP is the 4-digit ec-earth experiment ID or label, for instance: t001 +# ECEMODEL is the name of the ec-earth model configuration, for instance: EC-EARTH-AOGCM +# METADATA is the name of the meta data file, for instance: ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json +# VARLIST is the name of the variable list, in this case the so called json cmip6 data request file, for instance: cmip6-data-request-varlist-CMIP-piControl-EC-EARTH-AOGCM.json +# TEMPDIR is the directory where ece2cmor3 is writing files during its execution +# ODIR is the directory where ece2cmor3 will write the cmorised results of this job +# COMPONENT is the name of the model component for the current job to cmorise +# LEG is the leg number for the current job to cmorise. Note for instance leg number one is written as 001. + + if [ "$#" -eq 4 ]; then + + COMPONENT=$1 + LEG=$2 + EXP=$3 + VERSION=$4 + + ECEDIR=${SCRATCH}/ec-earth-3/trunk/$EXP/output/$COMPONENT/$LEG + ECEMODEL=EC-EARTH-AOGCM + METADATA=${PERM}/ec-earth-3/trunk/runtime/classic/ctrl/output-control-files/cmip6/CMIP/EC-EARTH-AOGCM/cmip6-experiment-CMIP-piControl/metadata-cmip6-CMIP-piControl-EC-EARTH-AOGCM-$COMPONENT-template.json + TEMPDIR=${SCRATCH}/temp-cmor-dir/$EXP/$COMPONENT/$LEG + VARLIST=${PERM}/ec-earth-3/trunk/runtime/classic/ctrl/output-control-files/cmip6/test-all-ece-mip-variables/cmip6-data-request-varlist-all-EC-EARTH-AOGCM.json + #VARLIST=${PWD}/../../resources/test-data-request/varlist-minimal-test.json + ODIR=${SCRATCH}/cmorised-results/test-all-trunk/$EXP/$VERSION + + if [ ! -d "$ECEDIR" ]; then echo "Error: EC-Earth3 data output directory: $ECEDIR doesn't exist. Aborting job: $0" >&2; exit 1; fi + if [ ! "$(ls -A $ECEDIR)" ]; then echo "Error: EC-Earth3 data output directory: $ECEDIR is empty. Aborting job: $0" >&2; exit 1; fi + + mkdir -p $ODIR + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + mkdir -p $TEMPDIR + + source ${PERM}/mamba/etc/profile.d/conda.sh + conda activate ece2cmor3 + + export HDF5_USE_FILE_LOCKING=FALSE + export UVCDAT_ANONYMOUS_LOG=false + #export ECE2CMOR3_IFS_CLEANUP=FALSE + + ece2cmor $ECEDIR --exp $EXP \ + --ececonf $ECEMODEL \ + --$COMPONENT \ + --meta $METADATA \ + --varlist $VARLIST \ + --tmpdir $TEMPDIR \ + --odir $ODIR \ + --npp 28 \ + --overwritemode replace \ + --skip_alevel_vars \ + --log + + mkdir -p $ODIR/logs + mv -f $EXP-$COMPONENT-$LEG-*.log $ODIR/logs/ + if [ -d $TEMPDIR ]; then rm -rf $TEMPDIR; fi + + else + echo + echo " Illegal number of arguments: the script requires four arguments:" + echo " 1st argument: model component" + echo " 2nd argument: leg" + echo " 3rd argument: experiment ID" + echo " 4th argument: version label" + echo " For instance:" + echo " sbatch $0 ifs 001 t001 v001" + echo " Or use:" + echo " for i in {001..002}; do sbatch --job-name=cmorise-ifs-\$i $0 ifs \$i t001 v001; done" + echo " for i in {001..002}; do sbatch --job-name=cmorise-nemo-\$i $0 nemo \$i t001 v001; done" + echo + fi diff --git a/ece2cmor/ece2cmor3/scripts/switch-on-off-DynVarMIP-mode.sh b/ece2cmor/ece2cmor3/scripts/switch-on-off-DynVarMIP-mode.sh new file mode 100755 index 0000000000000000000000000000000000000000..60029bb364c7b05e604719a0fa12b5a783b48229 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/switch-on-off-DynVarMIP-mode.sh @@ -0,0 +1,42 @@ +#!/bin/bash +# Thomas Reerink +# +# This script applies the required changes to run ece2cmor3 & genecec in the DynVarMIP mode or it resets these adjustments. +# It includes activating the pextra mode. +# +# This scripts requires one arguments: +# +# ${1} the first argument is activate-DynVarMIP-mode or deactivate-DynVarMIP-mode +# +# Run example: +# ./switch-on-off-DynVarMIP-mode.sh activate-DynVarMIP-mode +# + +if [ "$#" -eq 1 ]; then + + if [ $1 == 'activate-DynVarMIP-mode' ]; then + cp -f ../resources/list-of-ignored-cmip6-requested-variables-enable-DynVarMIP.xlsx ../resources/list-of-ignored-cmip6-requested-variables.xlsx + ./switch-on-off-pextra-mode.sh activate-pextra-mode + git diff ../resources/list-of-ignored-cmip6-requested-variables.xlsx + echo ' ' + elif [ $1 == 'deactivate-DynVarMIP-mode' ]; then + git checkout ../resources/list-of-ignored-cmip6-requested-variables.xlsx + ./switch-on-off-pextra-mode.sh deactivate-pextra-mode + git diff ../resources/list-of-ignored-cmip6-requested-variables.xlsx + else + echo ' ' + echo ' Error: the value of the first argument is wrong.' + echo ' ' + echo ' This scripts requires one argument: There are only two options:' + echo ' ' $0 activate-DynVarMIP-mode + echo ' ' $0 deactivate-DynVarMIP-mode + echo ' ' + fi + +else + echo ' ' + echo ' This scripts requires one argument: There are only two options:' + echo ' ' $0 activate-DynVarMIP-mode + echo ' ' $0 deactivate-DynVarMIP-mode + echo ' ' +fi diff --git a/ece2cmor/ece2cmor3/scripts/switch-on-off-pextra-mode.sh b/ece2cmor/ece2cmor3/scripts/switch-on-off-pextra-mode.sh new file mode 100755 index 0000000000000000000000000000000000000000..9041c7144a3aef33696e17dac47a8e600ee249cf --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/switch-on-off-pextra-mode.sh @@ -0,0 +1,45 @@ +#!/usr/bin/env bash +# Thomas Reerink +# +# This script applies the required changes to run ece2cmor3 & genecec in the PEXTRA mode or it resets these adjustments +# +# This scripts requires one argument: activate-pextra-mode or deactivate-pextra-mode +# +# Run this script without arguments for examples how to call this script. +# + +if [ "$#" -eq 1 ]; then + + if [ $1 == 'activate-pextra-mode' ]; then + sed -i -e 's/"NRFP3S"] = -1/"NRFP3S"] = -99/' drq2ppt.py + cp -f ../resources/list-of-identified-missing-cmip6-requested-variables-enable-pextra.xlsx ../resources/list-of-identified-missing-cmip6-requested-variables.xlsx + cd ../../; pip install -e .; cd - + echo + git diff ../resources/list-of-identified-missing-cmip6-requested-variables.xlsx + echo + git diff drq2ppt.py + echo + elif [ $1 == 'deactivate-pextra-mode' ]; then + sed -i -e 's/"NRFP3S"] = -99/"NRFP3S"] = -1/' drq2ppt.py + git checkout ../resources/list-of-identified-missing-cmip6-requested-variables.xlsx + cd ../../; pip install -e .; cd - + git diff ../resources/list-of-identified-missing-cmip6-requested-variables.xlsx + git diff drq2ppt.py + echo + else + echo + echo " Error: the value of the first argument is wrong." + echo + echo " This scripts requires one argument: There are only two options:" + echo " $0 activate-pextra-mode" + echo " $0 deactivate-pextra-mode" + echo + fi + +else + echo + echo " This scripts requires one argument: There are only two options:" + echo " $0 activate-pextra-mode" + echo " $0 deactivate-pextra-mode" + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/update-basic-identifiedmissing-ignored-files.sh b/ece2cmor/ece2cmor3/scripts/update-basic-identifiedmissing-ignored-files.sh new file mode 100755 index 0000000000000000000000000000000000000000..2839fd89c15103e03d21c860cb548ef364357204 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/update-basic-identifiedmissing-ignored-files.sh @@ -0,0 +1,163 @@ +#!/usr/bin/env bash +# +# This script can not be executed, because a few manual editting steps are required. +# +# Run example: +# ./update-basic-identifiedmissing-ignored-files.sh +# + +if [ "$#" -eq -2 ]; then + + # Procedure to produce the list-of-identified-missing-cmip6-requested-variables.xlsx based on the most updated shaconemo ping files. + # In this way the variable and table can be provided in the list-of-identified-missing-cmip6-requested-variables.xlsx while at the + # other hand shaconemo updates can be relatively easy followed by copying the entire variable column. In order to catch all provided + # (non dummy) variables from the shaconemo ping files, we use the total CMIP6 request for all CMIP6 MIPs with highest tier and priority. + + # Step 1: request all CMIP6 MIPs for most extended tier and priority: + ece2cmor_root_directory=${HOME}/cmorize/ece2cmor3 + cd ${ece2cmor_root_directory}/ece2cmor3/scripts/ + drq -m CMIP,AerChemMIP,CDRMIP,C4MIP,CFMIP,DAMIP,DCPP,FAFMIP,GeoMIP,GMMIP,HighResMIP,ISMIP6,LS3MIP,LUMIP,OMIP,PAMIP,PMIP,RFMIP,ScenarioMIP,VolMIP,CORDEX,DynVarMIP,SIMIP,VIACSAB -e CMIP -t 3 -p 3 --xls --xlsDir xls-m=all-cmip6-mips-e=CMIP-t=3-p=3 + + # Step 2: update the Shaconemo repository and thus the ping files: + cd ${HOME}/cmorize/shaconemo/ping-files/ + ./extract-info-from-ping-files.csh + + # This block does not longer apply now the NEMO variables are available and removed from the (pre) idenfified missing lists: + # # Step 3: Manually select the entire column of variables in the first file and the entire comment from the second file: + # nedit r274/cmor-varlist-based-on-ping-r274-without-dummy-lines.txt r274/cmor-varlist-based-on-ping-r274-without-dummy-lines-comment2.txt & + # # and copy them manually into the variable and comment column respectively (and update the comment author column) in the file: + # open ${ece2cmor_root_directory}/ece2cmor3/resources/pre-list-of-identified-missing-cmip6-requested-variables.xlsx + # # After updating the pre* files it is most convenient to commit them first. + + cd ${ece2cmor_root_directory}/ece2cmor3/scripts/ + nedit generate-nemopar.json.sh ${ece2cmor_root_directory}/ece2cmor3/resources/nemopar.json & + # and copy (as described in generate-nemopar.json.sh) the result of: + more ${HOME}/cmorize/shaconemo/ping-files/r274/cmor-varlist-based-on-ping-r274-without-dummy-lines.txt | sed -e 's/^/"/' -e 's/$/"/' > tmp-nemopar-list.txt + # into the "arr" list of generate-nemopar.json.sh. + # Therafter run generate-nemopar.json.sh: + ./generate-nemopar.json.sh new-nemopar.json + ./generate-tm5.json.sh new-tm5par.json + ./generate-lpjguess.json.sh new-lpjguesspar.json + diff new-nemopar.json ${ece2cmor_root_directory}/ece2cmor3/resources/nemopar.json + diff new-tm5par.json ${ece2cmor_root_directory}/ece2cmor3/resources/tm5par.json + diff new-lpjguesspar.json ${ece2cmor_root_directory}/ece2cmor3/resources/lpjgpar.json + mv -f new-nemopar.json ${ece2cmor_root_directory}/ece2cmor3/resources/nemopar.json + mv -f new-tm5par.json ${ece2cmor_root_directory}/ece2cmor3/resources/tm5par.json + mv -f new-lpjguesspar.json ${ece2cmor_root_directory}/ece2cmor3/resources/lpjgpar.json + git diff ${ece2cmor_root_directory}/ece2cmor3/resources/nemopar.json + git diff ${ece2cmor_root_directory}/ece2cmor3/resources/tm5par.json + git diff ${ece2cmor_root_directory}/ece2cmor3/resources/lpjgpar.json + + # Step 4: Temporary overwrite the basic identifiedmissing and basic ignored files by their corresponding pre-* ones: + rsync -a ${ece2cmor_root_directory}/ece2cmor3/resources/pre-list-of-identified-missing-cmip6-requested-variables.xlsx ${ece2cmor_root_directory}/ece2cmor3/resources/list-of-identified-missing-cmip6-requested-variables.xlsx + rsync -a ${ece2cmor_root_directory}/ece2cmor3/resources/pre-list-of-ignored-cmip6-requested-variables.xlsx ${ece2cmor_root_directory}/ece2cmor3/resources/list-of-ignored-cmip6-requested-variables.xlsx + + # Step 5: Run with the --withouttablescheck option checkvars based on the largest data request (and the pre-list-*.xlsx): + cd ${ece2cmor_root_directory}/; pip install -e .; cd - + cd ${ece2cmor_root_directory}/ece2cmor3/scripts + checkvars --withouttablescheck -v --drq xls-m=all-cmip6-mips-e=CMIP-t=3-p=3/cmvmm_ae.c4.cd.cf.cm.co.da.dc.dy.fa.ge.gm.hi.is.ls.lu.om.pa.pm.rf.sc.si.vi.vo_TOTAL_3_3.xlsx --output cmvmm-all-mips-t=3-p=3 + # open cmvmm-all-mips-t=3-p=3.identifiedmissing.xlsx + # open cmvmm-all-mips-t=3-p=3.ignored.xlsx + + # Step 6: Copy the resulting identifiedmissing and ignored produced by the checkvars to the basic identifiedmissing and the basic ignored: + rsync -a cmvmm-all-mips-t=3-p=3.identifiedmissing.xlsx ${ece2cmor_root_directory}/ece2cmor3/resources/list-of-identified-missing-cmip6-requested-variables.xlsx + rsync -a cmvmm-all-mips-t=3-p=3.ignored.xlsx ${ece2cmor_root_directory}/ece2cmor3/resources/list-of-ignored-cmip6-requested-variables.xlsx + + # Note that in order to create the basic lists from the pre basic fields, the variables in the pre basic lists are matched against the data request by drq in + # step 1 here, which includes all EC-Earth MIPs for the Core MIP experiments, however this does not include the endorsed MIP experiments (e.g drq -m LS3MIP -e LS3MIP ). + # Therefore the identified missing and ignored variables coming from the endorsed MIP experiments have to be added manually to the basic lists: + # -Note copying using the "Paste Special..." before saving in microsoft format allows correct copying of the links. + # -Note that the easiest approach to account for the manual changes below is to make first backup copies of the current rivision of the identified + # and ignored files and to copy the blocks at the end of the file (after the 8 emty space rows) in the newly generated ones. And to remove a few + # moved lines from the identified missing file. + + # -Move manually the Antarctic IfxAnt, and ImonAnt variables from the list-of-identified-missing-cmip6-requested-variables.xlsx to the list-of-ignored-cmip6-requested-variables.xlsx and adjust the comment. + # -Move manually the CFsubhr AerChemMIP variables (one block of variables) from the list-of-identified-missing-cmip6-requested-variables.xlsx to the list-of-ignored-cmip6-requested-variables.xlsx + # -Move manually the Esubhr tnhus, reffclws from the list-of-identified-missing-cmip6-requested-variables.xlsx to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the IyrGre ISMIP6 (step 3) variables modelCellAreai, sftgif and sftgrf to the list-of-identified-missing-cmip6-requested-variables.xlsx + # -Add manually the Eday LS3MIP nudgincsm, nudgincswe to the list-of-identified-missing-cmip6-requested-variables.xlsx + # -Add manually the Emon vtendogw,vtendnogw (table 126) to the list-of-identified-missing-cmip6-requested-variables.xlsx + # -Add manually the EmonZ vtendnogw,tntogw,tntnogw (table 126) to the list-of-identified-missing-cmip6-requested-variables.xlsx + # -Add manually the Emon, CF3hr & Esubhr reffclws combinations to the list-of-identified-missing-cmip6-requested-variables.xlsx + # -Add manually the CF3hr & Esubhr reffclws combinations to the list-of-identified-missing-cmip6-requested-variables-enable-pextra.xlsx + # -Add manually the IyrAnt ISMIP6 (step 3) variables modelCellAreai, sftgif and sftgrf to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Efx RFMIP (step 3) variables rlu, rsu, rld, rsd to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the 6hrPlevPt VolMIP (step 3) block (swtoafluxaerocs-lwtoafluxaerocs) to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Eday VolMIP (step 3) aod550volso4 to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Emon ec550aer to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the E6hrZ VolMIP (step 3) block (szmswaero--zmlwaero) to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Eday LS3MIP (step 3) block of ignored variables (agesno--wtd) to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Amon phalf to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the CFsubhr cl--fco2nat--latitude block to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the E3hr gpp, ra, rh variables to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Efx thkcello and masscello to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the E3hrPt o3 to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Amon o3Clim, ch4Clim, ch4globalClim to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the CFmon tnt to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Esubhr tnt to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Esubhr tnhus to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Emon fHarvestToProduct to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the E3hr prrc to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Eday prrc to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the Omon prra to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the E3hrPt rsutcsaf #556 to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the AERmon co2 #589 to the list-of-ignored-cmip6-requested-variables.xlsx + # -Add manually the E3hrPt co2 #589 to the list-of-ignored-cmip6-requested-variables.xlsx + + # cp list-of-ignored-cmip6-requested-variables.xlsx list-of-ignored-cmip6-requested-variables-enable-DynVarMIP.xlsx + # Remove manually from the list-of-ignored-cmip6-requested-variables-enable-DynVarMIP.xlsx: + # EdayZ epfy # line 66 + # EdayZ epfz + # EdayZ psitem + # EdayZ utendepfd + # EdayZ utendnogw + # EdayZ utendogw + # EdayZ utendvtem + # EdayZ utendwtem + # EdayZ vtem + # EdayZ wtem # line 75 + # + # EmonZ epfy # line 235 + # EmonZ epfz # line 236 + # + # EmonZ tntmp # line 241 + # EmonZ tntrl + # EmonZ tntrlcs + # EmonZ tntrs + # EmonZ tntrscs + # EmonZ tntscp + # EmonZ utendepfd + # EmonZ utendnogw # line 248 + # + # EmonZ vtem # line 250 + # EmonZ wtem # line 251 + # + # Emon utendnogw # line 489 + # Emon utendogw # line 490 + + + # Test that this replace gives still the same results: + mkdir -p ${ece2cmor_root_directory}/ece2cmor3/scripts/backup-cmvmm-all-mips-t=3-p=3; rm -f ${ece2cmor_root_directory}/ece2cmor3/scripts/backup-cmvmm-all-mips-t=3-p=3/cmvmm-all-mips-t=3-p=3.* + mv ${ece2cmor_root_directory}/ece2cmor3/scripts/cmvmm-all-mips-t=3-p=3.* ${ece2cmor_root_directory}/ece2cmor3/scripts/backup-cmvmm-all-mips-t=3-p=3/ + cd ${ece2cmor_root_directory}/; pip install -e .; cd - + cd ${ece2cmor_root_directory}/ece2cmor3/scripts + checkvars -v --drq xls-m=all-cmip6-mips-e=CMIP-t=3-p=3/cmvmm_ae.c4.cd.cf.cm.co.da.dc.dy.fa.ge.gm.hi.is.ls.lu.om.pa.pm.rf.sc.si.vi.vo_TOTAL_3_3.xlsx --output cmvmm-all-mips-t=3-p=3 + # The differences reflect the manual changes: + meld ${ece2cmor_root_directory}/ece2cmor3/scripts/cmvmm-all-mips-t=3-p=3.identifiedmissing.txt ${ece2cmor_root_directory}/ece2cmor3/scripts/backup-cmvmm-all-mips-t=3-p=3/cmvmm-all-mips-t=3-p=3.identifiedmissing.txt + meld ${ece2cmor_root_directory}/ece2cmor3/scripts/cmvmm-all-mips-t=3-p=3.ignored.txt ${ece2cmor_root_directory}/ece2cmor3/scripts/backup-cmvmm-all-mips-t=3-p=3/cmvmm-all-mips-t=3-p=3.ignored.txt + # excel-diff ${ece2cmor_root_directory}/ece2cmor3/scripts/cmvmm-all-mips-t=3-p=3.identifiedmissing.xlsx ${ece2cmor_root_directory}/ece2cmor3/scripts/backup-cmvmm-all-mips-t=3-p=3/cmvmm-all-mips-t=3-p=3.identifiedmissing.xlsx + # excel-diff ${ece2cmor_root_directory}/ece2cmor3/scripts/cmvmm-all-mips-t=3-p=3.ignored.xlsx ${ece2cmor_root_directory}/ece2cmor3/scripts/backup-cmvmm-all-mips-t=3-p=3/cmvmm-all-mips-t=3-p=3.ignored.xlsx + + # Note exel-diff is installed by following: + # https://github.com/na-ka-na/ExcelCompare/blob/master/README.md + # Java is needed, on ubuntu this can be installed by: sudo apt update; sudo apt install -y default-jre + # Extract the zip and + # mkdir -p ${HOME}/bin; mv ${HOME}/Downloads/ExcelCompare-0.6.1 ${HOME}/bin; cd ${HOME}/bin/; chmod uog+x ExcelCompare-0.6.1/bin/excel_cmp; ln -s ExcelCompare-0.6.1/bin/excel_cmp excel-diff + + +else + echo + echo ' This script can not be executed, because a few manual editting steps are required.' + echo ' This guidance serves to produce the basic identified missing file and the basic ignored file.' + echo +fi diff --git a/ece2cmor/ece2cmor3/scripts/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml b/ece2cmor/ece2cmor3/scripts/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml new file mode 100644 index 0000000000000000000000000000000000000000..3b7b7dfa08ff6f5e0bb1bbd22209fdb111e38919 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/xios-nemo-file_def-files/basic-cmip6-file_def_nemo.xml @@ -0,0 +1,600 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + this * $convSpsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @CFC11_E3T / @e3t + @CFC12_E3T / @e3t + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + @SF6_E3T / @e3t + + + + + + + + + + this * $convSpsu + + + + + 100 - this + + + + + + + @avt_e3w / @e3w + @avs_e3w / @e3w + + + + + + + + + + + + + + + this * $convSpsu + this * $convSpsu * $convSpsu + + + + + + + + + + + @Age_E3T / @e3t + @toce_e3t / @e3t + @CFC11_E3T / @e3t + @CFC12_E3T / @e3t + + @bn2_e3t / @e3t + @qsr3d_e3t_SBC / @e3t_SBC + @SF6_E3T / @e3t + @soce_e3t / @e3t * $convSpsu + @toce_pot_e3t / @e3t + + + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + + + + + + + + + + + + + + this + vdiff_heattr + + + + + + + + this * $rau0 + @voce_e3v / @e3v + + + + + + + + + + + + + + + qt - qrp + + + + + + + + + + + + this * this + this * 1e4 + + + + this * $convSpsu + @sbs_e3tb / @e3tb * $convSpsu + this * $convSpsu + this * $convSpsu * $convSpsu + @toce_potb_e3tb / @e3tb + + + + + empmr - erp + + + + this * $convSpsu + + + + + + + + + + + + this + udiff_heattr + this * $rau0 + + + + + + + + + + + + + + + + + + + + + + this * $rau0 + @woce_e3w / @e3w + @avt_e3w / @e3w + @avm_e3w / @e3w + @av_wave_e3w / @e3w + @avs_e3w / @e3w + @av_wave_e3w / @e3w + + + + + + + + + + + + + + + + this * $rau0 + @uoce_e3u / @e3u + + + + + + + + + + + + + + + + this * $convSpsu + this * $convSpsu + + + + + + + + + + + this * 1e6 * $convSpsu + this * 1e15 + this * 1e15 + sopht_vt_3bsn * 1e15 - this * 1e15 + this * 1e15 + sopst_vs_3bsn*1e6*$convSpsu - this*1e6*$convSpsu + this * 1e6 * $convSpsu + + + + + + + + + + + + + + this * 1e6 * $rau0 + + + + + + + @BFe_E3T / @e3t * 1e-3 + @SFe_E3T / @e3t * 1e-3 + @GSi_E3T / @e3t * 1e-3 + @CaCO3_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + + + + @POC_E3T / @e3t * 1e-3 + @GOC_E3T / @e3t * 1e-3 + @Fer_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DOC_E3T / @e3t * 1e-3 + + + + + + + this + GRAZ2 + @NH4_E3T / @e3t * 1e-3 + @NO3_E3T / @e3t * 1e-3 + @O2_E3T / @e3t * 1e-3 + this + PFeD + + + + @PHY_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @NFe_E3T / @e3t * 1e-3 + @DFe_E3T / @e3t * 1e-3 + @PHY_E3T / @e3t * 1e-3 + @DSi_E3T / @e3t * 1e-3 + + @PO4_E3T / @e3t * 1e-3 + + + + + @Si_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + + + + + + + this * 12 * 1e-3 + + + + + + + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + @PHYSFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + + + + + + + @BFe_E3T / @e3t * 1e-3 + @SFe_E3T / @e3t * 1e-3 + @GSi_E3T / @e3t * 1e-3 + @CaCO3_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + + + @POC_E3T / @e3t * 1e-3 + @GOC_E3T / @e3t * 1e-3 + @Fer_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DOC_E3T / @e3t * 1e-3 + + this + GRAZ2 + + @NH4_E3T / @e3t * 1e-3 + @NO3_E3T / @e3t * 1e-3 + @O2_E3T / @e3t * 1e-3 + + @PHY_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @NFe_E3T / @e3t * 1e-3 + @DFe_E3T / @e3t * 1e-3 + @PHY_E3T / @e3t * 1e-3 + @DSi_E3T / @e3t * 1e-3 + @PO4_E3T / @e3t * 1e-3 + + @Si_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + + + + + + + + + + + + + + this * 0.101325 + this * 0.101325 + + + + + + + + + + + this * 12 * 1e-3 + + + + + + + + + + + + + + + + + + this * 0.101325 + + + + + + + + @BFeSFC_E3T / @E3TSFC * 1e-3 + @SFeSFC_E3T / @E3TSFC * 1e-3 + @GSiSFC_E3T / @E3TSFC * 1e-3 + @CaCO3SFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + + + @POCSFC_E3T / @E3TSFC * 1e-3 + @GOCSFC_E3T / @E3TSFC * 1e-3 + @FerSFC_E3T / @E3TSFC * 1e-3 + @DICSFC_E3T / @E3TSFC * 1e-3 + @DICSFC_E3T / @E3TSFC * 1e-3 + @DOCSFC_E3T / @E3TSFC * 1e-3 + + + + + + + @NH4SFC_E3T / @E3TSFC * 1e-3 + @NO3SFC_E3T / @E3TSFC * 1e-3 + @O2SFC_E3T / @E3TSFC * 1e-3 + + @PHYSFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + @NFeSFC_E3T / @E3TSFC * 1e-3 + @DFeSFC_E3T / @E3TSFC * 1e-3 + @PHYSFC_E3T / @E3TSFC * 1e-3 + @DSiSFC_E3T / @E3TSFC * 1e-3 + @PO4SFC_E3T / @E3TSFC * 1e-3 + + @SiSFC_E3T / @E3TSFC * 1e-3 + @AlkaliniSFC_E3T / @E3TSFC * 1e-3 + @AlkaliniSFC_E3T / @E3TSFC * 1e-3 + @ZOO2SFC_E3T / @E3TSFC * 1e-3 + @ZOOSFC_E3T / @E3TSFC * 1e-3 + @ZOOSFC_E3T / @E3TSFC * 1e-3 + @ZOO2SFC_E3T / @E3TSFC * 1e-3 + + + + + + + + diff --git a/ece2cmor/ece2cmor3/scripts/xios-nemo-file_def-files/basic-flat-cmip6-file_def_nemo.xml b/ece2cmor/ece2cmor3/scripts/xios-nemo-file_def-files/basic-flat-cmip6-file_def_nemo.xml new file mode 100644 index 0000000000000000000000000000000000000000..3a9e48f82ebfca09575dfd8410546c89d5074592 --- /dev/null +++ b/ece2cmor/ece2cmor3/scripts/xios-nemo-file_def-files/basic-flat-cmip6-file_def_nemo.xml @@ -0,0 +1,391 @@ + + + + + + + + + + + this * 1e6 * $convSpsu + None + this * $convSpsu + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + @Age_E3T / @e3t + @BFe_E3T / @e3t * 1e-3 + @SFe_E3T / @e3t * 1e-3 + @BFeSFC_E3T / @E3TSFC * 1e-3 + @SFeSFC_E3T / @E3TSFC * 1e-3 + @toce_e3t / @e3t + None + @GSi_E3T / @e3t * 1e-3 + @GSiSFC_E3T / @E3TSFC * 1e-3 + @CaCO3_E3T / @e3t * 1e-3 + @CaCO3SFC_E3T / @E3TSFC * 1e-3 + @CFC11_E3T / @e3t + @CFC12_E3T / @e3t + @NCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + None + None + None + None + @POC_E3T / @e3t * 1e-3 + @GOC_E3T / @e3t * 1e-3 + @POCSFC_E3T / @E3TSFC * 1e-3 + @GOCSFC_E3T / @E3TSFC * 1e-3 + @Fer_E3T / @e3t * 1e-3 + @FerSFC_E3T / @E3TSFC * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DICSFC_E3T / @E3TSFC * 1e-3 + @DICSFC_E3T / @E3TSFC * 1e-3 + @DOC_E3T / @e3t * 1e-3 + @DOCSFC_E3T / @E3TSFC * 1e-3 + this * 0.101325 + this * 0.101325 + None + None + None + None + None + None + None + None + None + None + None + None + None + None + this * 12 * 1e-3 + None + None + None + None + None + None + None + None + None + None + this + GRAZ2 + this * 1e15 + this * 1e15 + None + qt - qrp + None + None + None + None + None + None + None + None + this + udiff_heattr + this + vdiff_heattr + sopht_vt_3bsn * 1e15 - this * 1e15 + this * 1e15 + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + None + this * this + this * $rau0 + this * 1e6 * $rau0 + @NH4_E3T / @e3t * 1e-3 + @NH4SFC_E3T / @E3TSFC * 1e-3 + @NO3_E3T / @e3t * 1e-3 + @NO3SFC_E3T / @E3TSFC * 1e-3 + @O2_E3T / @e3t * 1e-3 + None + @O2SFC_E3T / @E3TSFC * 1e-3 + @bn2_e3t / @e3t + this * 1e4 + None + None + @PHY_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHYSFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + @NFe_E3T / @e3t * 1e-3 + @DFe_E3T / @e3t * 1e-3 + @NFeSFC_E3T / @E3TSFC * 1e-3 + @DFeSFC_E3T / @E3TSFC * 1e-3 + @PHY_E3T / @e3t * 1e-3 + @PHYSFC_E3T / @E3TSFC * 1e-3 + @DSi_E3T / @e3t * 1e-3 + @DSiSFC_E3T / @E3TSFC * 1e-3 + @PO4_E3T / @e3t * 1e-3 + @PO4SFC_E3T / @E3TSFC * 1e-3 + None + None + None + None + @qsr3d_e3t_SBC / @e3t_SBC + None + @SF6_E3T / @e3t + this * $convSpsu + @Si_E3T / @e3t * 1e-3 + @SiSFC_E3T / @E3TSFC * 1e-3 + sopst_vs_3bsn*1e6*$convSpsu - this*1e6*$convSpsu + this * 1e6 * $convSpsu + @soce_e3t / @e3t * $convSpsu + @sbs_e3tb / @e3tb * $convSpsu + this * $convSpsu + this * $convSpsu + this * $convSpsu + this * $convSpsu * $convSpsu + this * 0.101325 + @Alkalini_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + @AlkaliniSFC_E3T / @E3TSFC * 1e-3 + @AlkaliniSFC_E3T / @E3TSFC * 1e-3 + None + None + @toce_pot_e3t / @e3t + None + None + @toce_potb_e3tb / @e3tb + None + None + None + this * $rau0 + @uoce_e3u / @e3u + this * $rau0 + @voce_e3v / @e3v + None + None + None + empmr - erp + this * $rau0 + @woce_e3w / @e3w + None + @ZOO2_E3T / @e3t * 1e-3 + @ZOO2SFC_E3T / @E3TSFC * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOOSFC_E3T / @E3TSFC * 1e-3 + None + @ZOO_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + @ZOOSFC_E3T / @E3TSFC * 1e-3 + @ZOO2SFC_E3T / @E3TSFC * 1e-3 + None + None + None + None + None + None + None + None + None + None + None + @BFe_E3T / @e3t * 1e-3 + @SFe_E3T / @e3t * 1e-3 + @GSi_E3T / @e3t * 1e-3 + @CaCO3_E3T / @e3t * 1e-3 + @CFC11_E3T / @e3t + @CFC12_E3T / @e3t + @NCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @DCHL_E3T / @e3t * 1e-3 + @NCHL_E3T / @e3t * 1e-3 + None + None + None + @POC_E3T / @e3t * 1e-3 + @GOC_E3T / @e3t * 1e-3 + @Fer_E3T / @e3t * 1e-3 + @avt_e3w / @e3w + @avs_e3w / @e3w + @DIC_E3T / @e3t * 1e-3 + @DIC_E3T / @e3t * 1e-3 + @DOC_E3T / @e3t * 1e-3 + None + None + None + None + None + None + this * 12 * 1e-3 + this + GRAZ2 + @NH4_E3T / @e3t * 1e-3 + @NO3_E3T / @e3t * 1e-3 + @O2_E3T / @e3t * 1e-3 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this + PFeD + None + None + None + @PHY_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @PHY2_E3T / @e3t * 1e-3 + @NFe_E3T / @e3t * 1e-3 + @DFe_E3T / @e3t * 1e-3 + @PHY_E3T / @e3t * 1e-3 + @DSi_E3T / @e3t * 1e-3 + None + @PO4_E3T / @e3t * 1e-3 + None + None + None + None + @SF6_E3T / @e3t + @Si_E3T / @e3t * 1e-3 + this * $convSpsu + @Alkalini_E3T / @e3t * 1e-3 + @Alkalini_E3T / @e3t * 1e-3 + None + @ZOO2_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO_E3T / @e3t * 1e-3 + @ZOO2_E3T / @e3t * 1e-3 + None + None + None + None + None + None + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $cpocean * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + this * $rau0 + None + None + this * $convSpsu + None + None + None + None + None + @NCHLSFC_E3T / @E3TSFC * 1e-3 + @DCHLSFC_E3T / @E3TSFC * 1e-3 + None + @PHYSFC_E3T / @E3TSFC * 1e-3 + @PHY2SFC_E3T / @E3TSFC * 1e-3 + this * $convSpsu + this * $convSpsu * $convSpsu + None + None + None + None + None + @avt_e3w / @e3w + @avm_e3w / @e3w + @av_wave_e3w / @e3w + @avs_e3w / @e3w + @av_wave_e3w / @e3w + None + None + None + None + None + None + None + None + None + 100 - this + None + None + None + + + + + + + + + diff --git a/ece2cmor/ece2cmor3/taskloader.py b/ece2cmor/ece2cmor3/taskloader.py new file mode 100644 index 0000000000000000000000000000000000000000..5e198ff88fdd6a5a2421953b4572676971b153e3 --- /dev/null +++ b/ece2cmor/ece2cmor3/taskloader.py @@ -0,0 +1,660 @@ + +import json +import logging +import os + +from ece2cmor3 import components +from ece2cmor3 import ece2cmorlib, cmor_source, cmor_target, cmor_task +from ece2cmor3.cmor_source import create_cmor_source +from ece2cmor3.resources import prefs + +log = logging.getLogger(__name__) + +json_source_key = "source" +json_target_key = "target" +json_table_key = "table" +json_tables_key = "tables" +json_mask_key = "mask" +json_masked_key = "masked" +json_filepath_key = "filepath" +json_script_key = "script" +json_src_key = "src" + +variable_prefs_file = os.path.join(os.path.dirname(__file__), "resources", "varprefs.csv") + +omit_vars_file_01 = os.path.join(os.path.dirname(__file__), "resources", "lists-of-omitted-variables", "list-of-omitted-variables-01.xlsx") +omit_vars_file_02 = os.path.join(os.path.dirname(__file__), "resources", "lists-of-omitted-variables", "list-of-omitted-variables-02.xlsx") +omit_vars_file_03 = os.path.join(os.path.dirname(__file__), "resources", "lists-of-omitted-variables", "list-of-omitted-variables-03.xlsx") +omit_vars_file_04 = os.path.join(os.path.dirname(__file__), "resources", "lists-of-omitted-variables", "list-of-omitted-variables-04.xlsx") +omit_vars_file_05 = os.path.join(os.path.dirname(__file__), "resources", "lists-of-omitted-variables", "list-of-omitted-variables-05.xlsx") +ignored_vars_file = os.path.join(os.path.dirname(__file__), "resources", "list-of-ignored-cmip6-requested-variables.xlsx") +identified_missing_vars_file = os.path.join(os.path.dirname(__file__), "resources", "list-of-identified-missing-cmip6-requested-variables.xlsx") + +mask_predicates = {"=": lambda x, a: x == a, + "==": lambda x, a: x == a, + "!=": lambda x, a: x != a, + "<": lambda x, a: x < a, + "<=": lambda x, a: x <= a, + ">": lambda x, a: x > a, + ">=": lambda x, a: x >= a} + +skip_tables = False +with_pingfile = False + + +class SwapDrqAndVarListException(Exception): + def __init__(self, reverse=False): + self.reverse = reverse + if reverse: + self.message = "Expected a component-specific variable list, got a data request as input" + else: + self.message = "Expected a data request, got a component-specific variable list as input" + + +# API function: loads the argument list of targets +def load_tasks_from_drq(varlist, active_components=None, target_filters=None, config=None, check_prefs=True): + matches, omitted_vars = load_drq(varlist, config, check_prefs) + return load_tasks(matches, active_components, target_filters, check_duplicates=check_prefs) + + +# Basic task loader: first argument has already partitioned variables into component groups +def load_tasks(variables, active_components=None, target_filters=None, check_duplicates=False): + matches = load_vars(variables, asfile=(isinstance(variables, str) and os.path.isfile(variables))) + filtered_matches = apply_filters(matches, target_filters) + if check_duplicates: + if not search_duplicate_tasks(filtered_matches): + log.fatal("Duplicate requested variables were found, dismissing all cmorization tasks") + return [] + model_vars = load_model_vars() + load_scripts(model_vars) + masks = load_masks(model_vars) + return create_tasks(filtered_matches, get_models(active_components), masks=masks) + + +def get_models(active_components): + all_models = list(components.models.keys()) + if isinstance(active_components, str): + return [active_components] if active_components in all_models else [] + if isinstance(active_components, list): + return [m for m in active_components if m in all_models] + if isinstance(active_components, dict): + return [m for m in all_models if active_components.get(m, False)] + return all_models + + +# Loads a json file or string or dictionary containing the cmor targets for multiple components +def load_vars(variables, asfile=True): + modeldict = {} + if isinstance(variables, str): + vartext = open(variables, 'r').read() if asfile else variables + modeldict = json.loads(vartext) + elif isinstance(variables, dict): + modeldict = variables + else: + log.error("Cannot create cmor target list from object %s" % str(variables)) + targets = {} + for model, varlist in modeldict.items(): + if model not in list(components.models.keys()): + if model in set([t.table for t in ece2cmorlib.targets]): + raise SwapDrqAndVarListException(reverse=True) + log.error("Cannot interpret %s as an EC-Earth model component." % str(model)) + continue + if isinstance(varlist, list): + targets[model] = varlist + elif isinstance(varlist, dict): + targets[model] = load_targets_json(varlist) + else: + log.error( + "Expected a dictionary of CMOR tables and variables as value of %s, got %s" % (model, type(varlist))) + continue + return targets + + +def load_drq(varlist, config=None, check_prefs=True): + if varlist == "allvars": + requested_targets = ece2cmorlib.targets + else: + requested_targets = read_drq(varlist) + targets = omit_targets(requested_targets) + # Load model component parameter tables + model_vars = load_model_vars() + # Match model component variables with requested targets + matches = match_variables(targets, model_vars) + matched_targets = [t for target_list in list(matches.values()) for t in target_list] + for t in targets: + if t not in matched_targets: + setattr(t, "load_status", "missing") + if check_prefs: + if config is None: + log.warning("Determining preferred model components for variables without target EC-Earth configuration: " + "assuming all components should be considered may result in duplicate matches") + if config not in list(components.ece_configs.keys()): + log.warning("Determining preferred model components for variables with unknown target EC-Earth " + "configuration %s: assuming all components should be considered may result in duplicate matches" % config) + for model in matches: + targetlist = matches[model] + if len(targetlist) > 0: + enabled_targets = [] + d = {} + for t in targetlist: + if prefs.keep_variable(t, model, config): + key = '_'.join([getattr(t, "out_name", t.variable), t.table]) + if key in d: + d[key].append(t) + else: + d[key] = [t] + else: + log.info('Dismissing {:7} target {:20} within {:17} configuration due to preference flagging' + .format(model, str(t), "any" if config is None else config)) + setattr(t, "load_status", "dismissed") + for key, tgts in list(d.items()): + if len(tgts) > 1: + log.warning("Duplicate variables found with output name %s in table %s: %s" % + (getattr(tgts[0], "out_name", tgts[0].variable), tgts[0].table, + ','.join([tgt.variable for tgt in tgts]))) + choices = prefs.choose_variable(tgts, model, config) + for t in tgts: + if t not in choices: + log.info('Dismissing {:7} target {:20} within {:17} configuration due to preference flagging' + .format(model, str(t), "any" if config is None else config)) + setattr(t, "load_status", "dismissed") + else: + choices = [tgts[0]] + enabled_targets.extend(choices) + matches[model] = [t for t in targetlist if t in enabled_targets] + omitted_targets = set(requested_targets) - set([t for target_list in list(matches.values()) for t in target_list]) + return matches, list(omitted_targets) + + +def apply_filters(matches, target_filters=None): + if target_filters is None: + return matches + result = {} + for model, targetlist in list(matches.items()): + requested_targets = targetlist + for msg, func in list(target_filters.items()): + filtered_targets = list(filter(func, requested_targets)) + for tgt in list(set(requested_targets) - set(filtered_targets)): + log.info("Dismissing %s target variable %s in table %s for component %s..." % + (msg, tgt.variable, tgt.table, model)) + requested_targets = filtered_targets + log.info("Found %d requested cmor target variables for %s." % (len(requested_targets), model)) + result[model] = requested_targets + return result + + +def search_duplicate_tasks(matches): + status_ok = True + for model in list(matches.keys()): + targetlist = matches[model] + n = len(targetlist) + for i in range(n): + t1 = targetlist[i] + key1 = '_'.join([t1.variable, t1.table]) + okey1 = '_'.join([getattr(t1, "out_name", t1.variable), t1.table]) + if i < n - 1: + for j in range(i + 1, n): + t2 = targetlist[j] + key2 = '_'.join([t2.variable, t2.table]) + okey2 = '_'.join([getattr(t2, "out_name", t2.variable), t2.table]) + if t1 == t2 or key1 == key2: + log.error("Found duplicate target %s in table %s for model %s" + % (t1.variable, t1.table, model)) + status_ok = False + elif okey1 == okey2: + log.error("Found duplicate output name for targets %s, %s in table %s for model %s" + % (t1.variable, t2.variable, t1.table, model)) + status_ok = False + index = list(matches.keys()).index(model) + 1 + if index < len(list(matches.keys())): + for other_model in list(matches.keys())[index:]: + other_targetlist = matches[other_model] + for t2 in other_targetlist: + key2 = '_'.join([t2.variable, t2.table]) + okey2 = '_'.join([getattr(t2, "out_name", t2.variable), t2.table]) + if t1 == t2 or key1 == key2: + log.error("Found duplicate target %s in table %s for models %s and %s" + % (t1.variable, t1.table, model, other_model)) + status_ok = False + elif okey1 == okey2: + log.error( + "Found duplicate output name for targets %s, %s in table %s for models %s and %s" + % (t1.variable, t2.variable, t1.table, model, other_model)) + status_ok = False + return status_ok + + +def split_targets(targetlist): + ignored_targets = [t for t in targetlist if getattr(t, "load_status", None) == "ignored"] + identified_missing_targets = [t for t in targetlist if + getattr(t, "load_status", None) == "identified missing"] + missing_targets = [t for t in targetlist if getattr(t, "load_status", None) == "missing"] + dismissed_targets = [t for t in targetlist if getattr(t, "load_status", None) == "dismissed"] + return ignored_targets, identified_missing_targets, missing_targets, dismissed_targets + + +def read_drq(varlist): + targetlist = [] + if isinstance(varlist, str): + if os.path.isfile(varlist): + fname, fext = os.path.splitext(varlist) + if len(fext) == 0: + targetlist = load_targets_f90nml(varlist) + elif fext[1:] == "json": + targetlist = load_targets_json(varlist, asfile=True) + elif fext[1:] == "xlsx": + targetlist = load_targets_excel(varlist) + elif fext[1:] == "nml": + targetlist = load_targets_f90nml(varlist) + else: + log.error("Cannot create a list of cmor-targets for file %s with unknown file type" % varlist) + else: + log.info("Reading input variable list as json string...") + targetlist = load_targets_json(varlist, asfile=False) + elif all(isinstance(t, cmor_target.cmor_target) for t in varlist): + targetlist = varlist + elif isinstance(varlist, dict): + targetlist = [] + for table, val in varlist.items(): + varseq = [val] if isinstance(val, str) else val + for v in varseq: + add_target(v, table, targetlist) + else: + log.error("Cannot create a list of cmor-targets for argument %s" % varlist) + return targetlist + + +# Filters out ignored, identified missing and omitted targets from the input target list. Attaches attributes to the +# omitted targets to track what happened to the variable +def omit_targets(targetlist): + omitvarlist_01 = load_checkvars_excel(omit_vars_file_01) + omitvarlist_02 = load_checkvars_excel(omit_vars_file_02) + omitvarlist_03 = load_checkvars_excel(omit_vars_file_03) + omitvarlist_04 = load_checkvars_excel(omit_vars_file_04) + omitvarlist_05 = load_checkvars_excel(omit_vars_file_05) + omit_lists = {"omit 01": omitvarlist_01, "omit 02": omitvarlist_02, "omit 03": omitvarlist_03, + "omit 04": omitvarlist_04, "omit 05": omitvarlist_05} + ignoredvarlist = load_checkvars_excel(ignored_vars_file) + identifiedmissingvarlist = load_checkvars_excel(identified_missing_vars_file) + filtered_list = [] + for target in targetlist: + key = target.variable if skip_tables else (target.table, target.variable) + if key in ignoredvarlist: + target.ecearth_comment, target.comment_author = ignoredvarlist[key] + setattr(target, "load_status", "ignored") + elif key in identifiedmissingvarlist: + setattr(target, "load_status", "identified missing") + if with_pingfile: + comment, author, model, units, pingcomment = identifiedmissingvarlist[key] + setattr(target, "ecearth_comment", comment) + setattr(target, "comment_author", author) + setattr(target, "model", model) + setattr(target, "units", units) + setattr(target, "pingcomment", pingcomment) + else: + comment, author = identifiedmissingvarlist[key] + setattr(target, "ecearth_comment", comment) + setattr(target, "comment_author", author) + elif any([key in omitvarlist for omitvarlist in list(omit_lists.values())]): + for status, omitvarlist in list(omit_lists.items()): + if key in omitvarlist: + setattr(target, "load_status", status) + break + else: + filtered_list.append(target) + return filtered_list + + +# Loads a json file or string or dictionary containing the cmor targets. +def load_targets_json(variables, asfile=True): + vardict = {} + if isinstance(variables, str): + vartext = open(variables, 'r').read() if asfile else variables + vardict = json.loads(vartext) + elif isinstance(variables, dict): + vardict = variables + else: + log.error("Cannot create cmor target list from object %s" % str(variables)) + targets = [] + for tab, var in vardict.items(): + if tab in components.models and isinstance(var, dict): + raise SwapDrqAndVarListException(reverse=False) + if not isinstance(tab, str): + log.error("Cannot interpret %s as a CMOR table identifier" % str(tab)) + continue + if isinstance(var, str): + add_target(var, tab, targets) + elif isinstance(var, list): + for v in var: + add_target(v, tab, targets) + else: + log.error("Cannot create cmor target from table %s and variable(s) %s" % (tab, str(var))) + return targets + + +# Loads the legacy ece2cmorlib input namelists to targets +def load_targets_f90nml(varlist): + global log + import f90nml + vlist = f90nml.read(varlist) + targets = [] + for sublist in vlist["varlist"]: + freq = sublist["freq"] + vars2d = sublist.get("vars2d", []) + vars3d = sublist.get("vars3d", []) + for v in (vars2d + vars3d): + tlist = ece2cmorlib.get_cmor_target(v) + tgt = [t for t in tlist if t.frequency == freq] + if len(tgt) == 0: + log.error( + "Could not find cmor targets of variable %s with frequency %s in current set of tables" % (v, freq)) + targets.extend(tgt) + return targets + + +# Loads a drq excel file containing the cmor targets. +def load_targets_excel(data_request_file): + global log + import openpyxl + + sheet_column_indices = create_sheet_column_indices() + + workbook = openpyxl.load_workbook(filename=data_request_file, read_only=None) + targets = [] + + var_colname = "CMOR Name" + vid_colname = "vid" + mip_list_colname = "MIPs (by experiment)" + priority_colname = "Priority" # Priority column name for the experiment cmvme_*.xlsx files + default_priority_colname = "Default Priority" # Priority column name for the mip overview cmvmm_*.xlsx files + + # Loop over the sheets (tables). Each sheetname corresponds with a cmor table and thus each sheet (table) contains all requested variables for that cmor table: + for sheetname in workbook.sheetnames: + if sheetname.lower() in ["notes"]: + continue + worksheet = workbook[sheetname] + + # Create a dictionary with column names as keys and column numbers as values: + column_names = {} + column_counter = 0 + for column_name in worksheet.iter_cols(min_col=None, max_col=None, min_row=None, max_row=None, values_only=False): + column_names[str(column_name[0].value)] = sheet_column_indices[column_counter] + column_counter += 1 + + if priority_colname not in column_names: + # If no "Priority" column is found try to find a "Default Priority" column instead + priority_colname = default_priority_colname + + for column in [var_colname, vid_colname, mip_list_colname, priority_colname]: + if column not in column_names: + log.error('Could not find the {:} column in sheet {:9} for file {:}: skipping entire table.'.format('"'+column+'"', sheetname, data_request_file)) + # If an error here, the error will be messaged and a crash will follow below. + + varnames = list_based_on_xlsx_column(worksheet, column_names, 'CMOR Name', var_colname ) + vids = list_based_on_xlsx_column(worksheet, column_names, 'CMOR Name', vid_colname ) + mip_list = list_based_on_xlsx_column(worksheet, column_names, 'CMOR Name', mip_list_colname) + priority = list_based_on_xlsx_column(worksheet, column_names, 'CMOR Name', priority_colname) + + for i in range(len(varnames)): + add_target(str(varnames[i]), sheetname, targets, vids[i], priority[i], mip_list[i]) + return targets + + +# Small utility loading targets from the list +def add_target(variable, table, targetlist, vid=None, priority=None, mip_list=None): + global log + target = ece2cmorlib.get_cmor_target(variable, table) + if target: + if vid: + target.vid = vid + if priority: + target.priority = priority + if mip_list: + target.mip_list = mip_list + targetlist.append(target) + return True + else: + log.error("The %s variable does not appear in the CMOR table file %s" % (variable, table)) + return False + + +# Loads the basic excel ignored file containing the cmor variables for which has been decided that they will be not +# taken into account or it loads the basic excel identified-missing file containing the cmor variables which have +# been identified but are not yet fully cmorized. This function can be used to read any excel file which has been +# produced by the checkvars.py script, in other words it can read the basic ignored, basic identified missing, +# available, ignored, identified-missing, and missing files. +def load_checkvars_excel(basic_ignored_excel_file): + global log, skip_tables, with_pingfile + import openpyxl + + sheet_column_indices = create_sheet_column_indices() + + workbook = openpyxl.load_workbook(filename=basic_ignored_excel_file, read_only=None) + worksheet = workbook['Sheet1'] + varlist = {} + + # Create a dictionary with column names as keys and column numbers as values: + column_names = {} + column_counter = 0 + for column_name in worksheet.iter_cols(min_col=None, max_col=None, min_row=None, max_row=None, values_only=False): + column_names[column_name[0].value] = sheet_column_indices[column_counter] + column_counter += 1 + + table_colname = "Table" + var_colname = "variable" + comment_colname = "comment" + author_colname = "comment author" + model_colname = "model component in ping file" + units_colname = "units as in ping file" + pingcomment_colname = "ping file comment" + + required_column_names = [table_colname, var_colname, comment_colname, author_colname] + + for column_name in required_column_names: + if column_name not in list(column_names.keys()): + log.error('Could not find the column {:30} in {:} in the file {:}'.format('"'+column_name+'"', worksheet.title, basic_ignored_excel_file)) + + if skip_tables: + tablenames = [] + else: + tablenames = list_based_on_xlsx_column(worksheet, column_names, 'variable', table_colname ) # CMOR table name + varnames = list_based_on_xlsx_column(worksheet, column_names, 'variable', var_colname ) # CMOR variable name + comments = list_based_on_xlsx_column(worksheet, column_names, 'variable', comment_colname ) # Identification comment by EC-Earth members + authors = list_based_on_xlsx_column(worksheet, column_names, 'variable', author_colname ) # Author(s) of comment + if with_pingfile: + pingfile_column_names = [model_colname, units_colname, pingcomment_colname] + for column_name in pingfile_column_names: + if column_name not in list(column_names.keys()): + log.error('Could not find the column {:30} in {:} in the file {:}'.format('"'+column_name+'"', worksheet.title, basic_ignored_excel_file)) + pingfile_content_available = False + else: + model_component = list_based_on_xlsx_column(worksheet, column_names, 'variable', model_colname ) # NEMO model component as in the ping files + ping_units = list_based_on_xlsx_column(worksheet, column_names, 'variable', units_colname ) # The units as given in the ping files + ping_comment = list_based_on_xlsx_column(worksheet, column_names, 'variable', pingcomment_colname) # The comment as given in the ping files + pingfile_content_available = True + + if skip_tables: + for i in range(len(varnames)): + if with_pingfile and pingfile_content_available: + varlist[varnames[i]] = (comments[i], authors[i], model_component[i], ping_units[i], ping_comment[i]) + else: + varlist[varnames[i]] = (comments[i], authors[i]) + else: + for i in range(len(varnames)): + varlist[(tablenames[i], varnames[i])] = (comments[i], authors[i]) + return varlist + +def list_based_on_xlsx_column(sheet, column_names, varname_for_empty_check, column_name): + list_with_column_content = [] + for cell in sheet[column_names[column_name]]: + cell_id_cmor_var = column_names[varname_for_empty_check] + str(cell.row) # Construct the cell id of the corresponding cmor variable cell + if sheet[cell_id_cmor_var].value != None: # Only empty lines are deselected (based on an empty cmor variable cell + #list_with_column_content.append(str(cell.value)) + list_with_column_content.append(cell.value) + del list_with_column_content[0] # Remove the first row, the header line + return list_with_column_content + +def create_sheet_column_indices(): + import string + alphabet = list(string.ascii_uppercase) + alphabet_extended = ['A' + s for s in alphabet] + sheet_column_indices = alphabet + alphabet_extended + return sheet_column_indices + +def match_variables(targets, model_variables): + global json_target_key + # Return value: dictionary of models and lists of targets + matches = {m: [] for m in list(components.models.keys())} + # Loop over requested variables + for target in targets: + # Loop over model components + for model, variable_mapping in list(model_variables.items()): + # Loop over supported variables by the component + for parblock in variable_mapping: + if matchvarpar(target, parblock): + if target in matches[model]: + raise Exception("Invalid model parameter file %s: multiple source found found for target %s " + "in table %s" % (components.models[model][components.table_file], + target.variable, target.table)) + if parblock.get("table_override", {}).get("table", "") == target.table: + parmatch = parblock["table_override"] + else: + parmatch = parblock + if model == 'ifs': + comment_string = '{:4} code name = {:>7}'.format(model, parmatch.get(json_source_key, "?")) + else: + comment_string = '{:4} code name = {:}'.format(model, parmatch.get(json_source_key, "?")) + if cmor_source.expression_key in list(parmatch.keys()): + comment_string += ", expression = " + parmatch[cmor_source.expression_key] + comment = getattr(target, "ecearth_comment", None) + if comment is not None: + setattr(target, "ecearth_comment", comment + ' | ' + comment_string) + else: + setattr(target, "ecearth_comment", comment_string) + setattr(target, "comment_author", "automatic") + matches[model].append(target) + return matches + + +# Checks whether the variable matches the parameter table block +def matchvarpar(target, parblock): + result = False + parvars = parblock.get(json_target_key, None) + if isinstance(parvars, list) and target.variable in parvars: + result = True + if isinstance(parvars, str) and target.variable == parvars: + result = True + if hasattr(parblock, json_table_key) and target.table != parblock[json_table_key]: + result = False + if hasattr(parblock, json_tables_key) and target.table not in parblock[json_tables_key]: + result = False + return result + + +# Creates tasks for the considered requested targets, using the parameter tables in the resource folder +def create_tasks(matches, active_components, masks): + global log, ignored_vars_file, json_table_key, skip_tables + result = [] + model_vars = load_model_vars() + for model, targets in list(matches.items()): + if isinstance(active_components, list) and model not in active_components: + continue + if isinstance(active_components, str) and model != active_components: + continue + parblocks = model_vars[model] + for target in targets: + parmatches = [b for b in parblocks if matchvarpar(target, b)] + if not any(parmatches): + log.error("Variable %s in table %s is not supported by %s in ece2cmor3; if you do expect an ec-earth " + "output variable here, please create an issue or pull request on our github page" + % (target.variable, target.table, model)) + continue + parmatch = parmatches[0] + if len(parmatches) > 1: + log.warning("Multiple matching parameters for %s found for variable %s in table %s: proceeding with " + "first match %s" % (model, target.variable, target.table, parmatch.get("source", None))) + if parmatch.get("table_override", {}).get("table", "") == target.table: + parmatch = parmatch["table_override"] + task = create_cmor_task(parmatch, target, model, masks) + if ece2cmorlib.add_task(task): + result.append(task) + log.info("Created %d ece2cmor tasks from input variable list." % len(result)) + return result + + +def load_model_vars(): + model_vars = {} + for m in components.models: + tabfile = components.models[m].get(components.table_file, "") + if os.path.isfile(tabfile): + with open(tabfile) as f: + model_vars[m] = json.loads(f.read()) + else: + log.warning("Could not read variable table file %s for component %s" % (tabfile, m)) + model_vars[m] = [] + return model_vars + + +# TODO: Delegate to components +def load_masks(model_vars): + result = {} + for par in model_vars["ifs"]: + if json_mask_key in par: + name = par[json_mask_key] + expr = par.get(cmor_source.expression_key, None) + if not expr: + log.error("No expression given for mask %s, ignoring mask definition" % name) + else: + result[name] = expr + srcstr, func, val = parse_maskexpr(expr) + if srcstr: + src = create_cmor_source({json_source_key: srcstr}, "ifs") + ece2cmorlib.add_mask(name, src, func, val) + return result + + +def load_scripts(model_vars): + for component in list(model_vars.keys()): + for par in model_vars[component]: + if json_script_key in par: + ece2cmorlib.add_script(component, name=par[json_script_key], attributes=par) + + +# Parses the input mask expression +# TODO: Delegate to components +def parse_maskexpr(exprstring): + global mask_predicates + ops = list(mask_predicates.keys()) + ops.sort(key=len) + for op in ops[::-1]: + tokens = exprstring.split(op) + if len(tokens) == 2: + src = tokens[0].strip() + if src.startswith("var"): + src = src[3:] + if len(src.split(".")) == 1: + src += ".128" + func = mask_predicates[op] + val = float(tokens[1].strip()) + return src, func, val + log.error("Expression %s could not be parsed to a valid mask expression") + return None, None, None + + +# Creates a single task from the target and parameter table entry +def create_cmor_task(pardict, target, component, masks): + global log, json_source_key + mask = pardict.get(json_masked_key, None) + if mask is not None and mask in masks: + pardict[cmor_source.mask_expression_key] = masks[mask] + source = create_cmor_source(pardict, component) + if source is None: + raise ValueError("Failed to construct a source for target variable %s in table %s: task skipped." + % (target.variable, target.table)) + task = cmor_task.cmor_task(source, target) + if mask is not None: + setattr(task.target, cmor_target.mask_key, mask) + for par in pardict: + if par not in [json_source_key, json_target_key, json_mask_key, json_masked_key, json_table_key, "expr"]: + setattr(task, par, pardict[par]) + return task diff --git a/ece2cmor/ece2cmor3/tm52cmor.py b/ece2cmor/ece2cmor3/tm52cmor.py new file mode 100644 index 0000000000000000000000000000000000000000..de110da5720a5d543e62d3da2f36374eb5849a8d --- /dev/null +++ b/ece2cmor/ece2cmor3/tm52cmor.py @@ -0,0 +1,955 @@ +import os +import re +import numpy +import datetime +import json +import logging +import netCDF4 +import cmor +from . import cmor_utils +from . import cmor_source +from . import cmor_target +from . import cmor_task +import cdo +from ece2cmor3 import cdoapi +import Ngl +import warnings + +# Logger object +log = logging.getLogger(__name__) + +# Experiment name +exp_name_ = None + +# Table root +table_root_ = None + +# Files that are being processed in the current execution loop. +tm5_files_ = [] + +# Dictionary of tm5 grid type with cmor grid id. +dim_ids_ = {} + +# List of depth axis ids with cmor grid id. +depth_axes_ = {} + +# Dictionary of output frequencies with cmor time axis id. +time_axes_ = {} + +# Dictionary of sea-ice output types, 1 by default... +type_axes_ = {} + +ps_tasks = {} + +time_axis_ids = {} +type_axis_ids = {} +depth_axis_ids = {} +zfactor_ids = {} + +# Reference date, times will be converted to hours since refdate +ref_date_ = None + +unit_miss_match =[] +failed = [] + +areacella_=0 + +# Default pressure levels if not provided (Pa) +plev19_ = numpy.array([100000., 92500., 85000., 70000., 60000., 50000., 40000., 30000., 25000., 20000., 15000., 10000., 7000., 5000., 3000., 2000., 1000., 500., 100.]) +plev39_ = numpy.array([100000., 92500., 85000., 70000., 60000., 50000., 40000., + 30000., 25000., 20000., 17000., 15000., 13000., 11500., + 10000., 9000., 8000., 7000., 5000., 3000., 2000., + 1500., 1000., 700., 500., 300., 200., 150., + 100., 70., 50., 40., 30., 20., 15., + 10., 7., 5., 3.]) + +extra_axes = {"lambda550nm": {"ncdim": "lambda550nm", + "ncunits": "nm", + "ncvals": [550.0]}} + + +# +ignore_frequency=['subhrPt','3hrPt'] +ps6hrpath_=None +#using_grid_=False +path_=None +# Initializes the processing loop. +def initialize(path,expname,tabledir, prefix,refdate): + """initialize the cmorization for TM5 + Description: + + Input variables: + path, String: path to TM5 files + expname, string: name of the experiment + tabledir, string: path to tables + prefix, string: table prefix + Returns: + boolean: success + """ + global log,tm5_files_,exp_name_,table_root_,ref_date_,plev39_,plev19_,areacella_,path_ + exp_name_ = expname + path_ = path + table_root_ =os.path.join(tabledir, prefix) + # select all TM5 files with expname from path + tm5_files_ = cmor_utils.find_tm5_output(path,expname) + if len(tm5_files_) == 0: + log.error('no TM5 varibles found, exiting!') + exit() + areacella_file = cmor_utils.find_tm5_output(path,expname,'areacella','fx') + if len(areacella_file) == 0: + log.error('Areacella not found!') + exit() + else: + areacella_=netCDF4.Dataset(areacella_file[0],'r').variables['areacella'][:] + cal = None + ref_date_ = refdate + + # read pressure level definitions from CMIP6_coordante file + # and save globally + coordfile = os.path.join(tabledir, prefix + "_coordinate.json") + if os.path.exists(coordfile): + with open(coordfile) as f: + data = json.loads(f.read()) + axis_entries = data.get("axis_entry", {}) + axis_entries = {k.lower(): v for k, v in axis_entries.items()} + plev19=numpy.array([numpy.float64(value) for value in axis_entries['plev19']['requested']]) + plev19_=plev19 + plev39=numpy.array([numpy.float64(value) for value in axis_entries['plev39']['requested']]) + plev39_=plev39 + else: + log.warning('Using default pressure level definitions') + + cmor.load_table(table_root_ + "_grids.json") + return True + + +# Resets the module globals. +def finalize(): + """finalize, clear variables + Args: + none + Retruns: + none + """ + global tm5_files_,dim_ids_,depth_axes_,time_axes_,plev19_,plev39_ + log.info( 'Unit miss match variables %s '%(unit_miss_match)) + tm5_files_ = [] + dim_ids_ = {} + depth_axes_ = {} + time_axes_ = {} + plev39_ = [] + plev19_ = [] +def set_freqid(freq): + """set freqid for filenames + Args: + freq (string): set freqid depending on the table frequency + Returns: + freqid (string): Freqid for AERchemMIP data + """ + if freq=='monC': + freqid='AERmon' + elif freq=='1hr': + freqid='AERhr' + elif freq=='day': + freqid='AERday' + elif freq=='6hrPt': + freqid='AER6hr' + elif freq=='mon': + freqid='AERmon' + else: + log.error('unknown frequency %s'%freq) + return None + return freqid +def check_freqid(task): + """ Check if we freqid will be cmorized and fix teh freqid for special cases + Args: + task (cmor.task): task for which we are checking + Returns: + boolean: True if task will be cmorized + freqid (string): name of frequency in files + """ + global log + freqid=set_freqid(task.target.frequency) + if task.target.frequency=='monC': + if task.target.table=='Amon' and (task.target.variable=='pfull' or task.target.variable=='phalf'): + task.set_failed() + log.info('Variable %s in table %s will be produced by IFS'%(task.target.variable,task.target.table)) + return False,None + elif task.target.frequency in ignore_frequency: + log.info('frequency %s ignored, no data prduced at this frequency'%task.target.frequency) + #continue + return False,None + elif task.target.table=='AERmonZ': + freqid=freqid+'Z' + elif freqid==None: + log.error('Frequency %s of variable %s is unkonwn'%(task.target.frequency,task.target.variable)) + return False,None + return True,freqid +# Executes the processing loop. +def execute(tasks): + """execute the cmorization tasks for TM5 + Description: + + Args: + tasks (list): list of tasks + Returns: + boolean: success + """ + global log,time_axes_,depth_axes_,table_root_,tm5_files_,areacella_,using_grid_,ps_tasks + log.info("Executing %d tm5 tasks..." % len(tasks)) + log.info("Cmorizing tm5 tasks...") + #Assign file to each task + for task in tasks: + setattr(task,cmor_task.output_path_key,None) + if task.target.frequency=='fx': + log.info('fx frequency has no variables from TM5') + task.set_failed() + continue + elif task.target.frequency=='monC': + if 'Clim' in task.target.variable: + log.info('Variable %s in table %s is climatological variable and thus not available in TM5.'%(task.target.variable,task.target.table)) + task.set_failed() + continue + elif task.target.table=='Amon' and (task.target.variable=='pfull' or task.target.variable=='phalf'): + task.set_failed() + log.info('Variable %s in table %s will be produced by IFS'%(task.target.variable,task.target.table)) + continue + elif task.target.frequency in ignore_frequency: + log.info('frequency %s ignored, no data prduced at this frequency'%task.target.frequency) + continue + elif 'Clim' in task.target.variable: + log.infor("Climatological variables not supported") + task.set_failed() + continue + + success,freqid=check_freqid(task) + if not success: + task.set_failed() + log.info('Frequency {:} for task {:} not available.'.format(task.target.frequency,task.target.variable)) + continue + for fstr in tm5_files_: + # only select files which start with variable name and have _ behind (e.g. o3 .neq. o3loss) + # and freqid has _ behing (e.g. monZ .neq. mon) + + # catch variablename + '_' to prevent o3 and o3loss mixing up... + if os.path.basename(fstr).startswith(task.source.variable()+"_") and freqid+'_' in fstr : + fname=fstr + if getattr(task,cmor_task.output_path_key) == None: + setattr(task,cmor_task.output_path_key,fstr) + else: + log.critical('Second file with same frequency and name. Currently supporting only one year per directory.') + log.critical(fstr) + exit(' Exiting ece2cmor.') + if not os.path.exists(fstr): + log.info('No path found for variable %s from TM5'%(task.target.variable)) + task.set_failed() + continue + ps_tasks=get_ps_tasks(tasks) + + #group the taks according to table + taskdict = cmor_utils.group(tasks,lambda t:t.target.table) + for table,tasklist in taskdict.items(): + try: + log.info("Loading CMOR table %s to process %d variables..." % (table,len(tasklist))) + tab_id = cmor.load_table("_".join([table_root_, table]) + ".json") + cmor.set_table(tab_id) + except Exception as e: + log.error("ERR -6: CMOR failed to load table %s, skipping variables %s. Reason: %s" + % (table, ','.join([tsk.target.variable for tsk in tasklist]), e.message)) + continue + # #postprocess data to zonal mean and plev39, or do it before this point + if table == '3hr' : + for task in tasklist: + task.set_failed() + log.error("Table %s will not be implemented for TM5" %(table)) + log.error("ERR -6: Skipping variable %s not implemented" %(task.target.variable)) + continue + #postprocess data to zonal mean and plev39, or do it before this point + if table== 'Eday': + log.info("Table Eday not supported for variable %s "%(task.target.variable)) + log.info("Creating longitude and latitude axes for table %s..." % table) + dim_ids_['lat']=create_lat() + dim_ids_['lon']=create_lon() + # create or assign time axes to tasks + log.info("Creating time axes for table %s..." % table) + #create_time_axes(tasklist) + time_axes_=create_time_axes(tasklist)#time_axes + + taskmask = dict([t,False] for t in tasklist) + for task in tasklist: + #define task properties + #2D grid + if task.target.variable=='ch4Clim' or task.target.variable=='ch4globalClim' or task.target.variable=='o3Clim': + log.error('ERR -8: Task for %s is not produced in any of the simulations with TM5.'%task.target.variable) + task.set_failed() + continue + + ncf=getattr(task,cmor_task.output_path_key) + tgtdims = getattr(task.target, cmor_target.dims_key).split() + if "latitude" in tgtdims and "longitude" in tgtdims: + setattr(task, 'lon', dim_ids_['lon']) + setattr(task, 'lat', dim_ids_['lat']) + #ZONAL + if "latitude" in tgtdims and not "longitude" in tgtdims: + setattr(task, "zonal", True) + if "site" in tgtdims: + log.critical('Z-dimension site not implemented ') + task.set_failed() + continue + if task.status==cmor_task.status_failed: + continue + create_depth_axes(task) + if 'lambda550nm' in tgtdims : + success=create_type_axes(task) + if not success: + log.error('Lambda 550nm could not be created, setting task failed') + task.set_failed() + continue + if(taskmask[task] ): + log.warning("Ignoring source variable in nc file %s, since it has already been cmorized." % ncf) + else: + if task.status not in [cmor_task.status_failed]: + log.info("Cmorizing source variable %s to target variable %s from file %s." % (task.source.variable(),task.target.variable,ncf)) + execute_netcdf_task(task,tab_id) + if task.status<0: + if task.target.variable=='cdnc': + log.error("ERR -10: Cmorizing failed for %s, but variable is produced by IFS." % (task.target.variable)) + elif task.target.variable=='o3Clim': + log.error("ERR -11: Cmorizing failed for %s, check tm5par.json since source will be o3 instead of %s." % (task.target.variable, task.source.variable())) + elif task.target.variable=='phalf': + log.error("ERR -11: Cmorizing failed for %s, but variable is produced by IFS." % (task.target.variable)) + elif task.target.variable=='ch4Clim' or task.target.variable=='ch4global' or task.target.variable=='ch4globalClim': + log.error("ERR -12: Cmorizing failed for %s, check tm5par.json since source will be ch4 instead of %s." % (task.target.variable, task.source.variable())) + else: + log.error("ERR -13: Cmorizing failed for %s" % (task.target.variable)) + else: + taskmask[task] = True + else: + log.info("Skipping variable %s for unknown reason..." % (task.source.variable())) + for task,executed in taskmask.items(): + if(not executed): + log.error("ERR -14: The source variable %s of target %s in table %s failed to cmorize" % (task.source.variable(),task.target.variable,task.target.table)) + failed.append([task.target.variable,task.target.table]) + + if len(unit_miss_match)>0: + log.info('Unit problems: %s'% unit_miss_match) + if len(failed)>0: + for ifail in failed: + log.info('Cmorization failed for : %s'%ifail) + +# Performs a single task. +def execute_netcdf_task(task,tableid): + """excute task for netcdf data + Args: + task (cmor.task): task which will be handled + tableid (cmor.table): table which will have this task + Returns: + boolean: success of writing a variable + """ + global log,dim_ids_,depth_axes_,time_axes_,areacella_ + interpolate_to_pressure=False + task.status = cmor_task.status_cmorizing + filepath = getattr(task, cmor_task.output_path_key, None) + + if not filepath: + log.error("ERR -15: Could not find file containing data for variable %s in table %s" % (task.target.variable,task.target.table)) + task.set_failed() + return + + store_var = getattr(task, "store_with", None) + if( task.target.dims >= 3): + if ('lon' in dim_ids_ and 'lat' in dim_ids_): + axes = [dim_ids_['lat'],dim_ids_['lon']] + else: + dim_ids_['lat']=create_lat() + dim_ids_['lon']=create_lon() + axes=[dim_ids_['lat'],dim_ids_['lon']] + if hasattr(task, "z_axis_id"): + axes.append(getattr(task, "z_axis_id")) + checkaxes=getattr(task.target, cmor_target.dims_key).split() + if 'plev19' in checkaxes: + interpolate_to_pressure=True + elif'plev39' in checkaxes: + interpolate_to_pressure=True + # make explicit if just to check that all axes are there + elif 'alevel' in checkaxes: + interpolate_to_pressure=False + elif 'alevhalf' in checkaxes: + interpolate_to_pressure=False + else: + log.error('ERR -16: unknown dimension in z_axis_id') + else: + log.error('ERR -17: No z_axis_id found.') + elif ( task.target.dims == 2): + if task.target.table=='AERmonZ': + ''' + 2D Zonal lat+lev + ''' + #cmor.load_table(table_root_ + "_coordinate.json") + if 'lat' in dim_ids_: + axes=[dim_ids_['lat']] + else: + dim_ids_['lat']=create_lat() + axes=[dim_ids_['lat']] + # zonal variables... + #needs lat only, no grid.... + if hasattr(task, "z_axis_id"): + axes.append(getattr(task, "z_axis_id")) + if 'plev19' in getattr(task.target, cmor_target.dims_key).split(): + interpolate_to_pressure=True + elif'plev39' in getattr(task.target, cmor_target.dims_key).split(): + interpolate_to_pressure=True + elif not hasattr(task, "z_axis_id"): + ''' + 2D variables lon+lat + + ''' + if not ('lon' in dim_ids_ and 'lat' in dim_ids_): + dim_ids_['lat']=create_lat() + dim_ids_['lon']=create_lon() + axes=[dim_ids_['lat'],dim_ids_['lon']] + else: + axes = [dim_ids_['lat'],dim_ids_['lon']] + else: + log.error('ERR -18: unsupported 2D dimensions %s'%task.target.dims) + exit('Exiting!') + elif task.target.dims==0: + axes=[] + else: + log.error('ERR -19: unsupported dimensions %s for variable'%(task.target.dims,task.target.variable)) + exit() + time_id = getattr(task, "time_axis", 0) + if time_id != 0: + axes.append(time_id) + for key in type_axes_: + + if key[0]==task.target.table and key[1] in getattr(task.target, cmor_target.dims_key): + axes.append(type_axes_[key]) + try: + dataset = netCDF4.Dataset(filepath, 'r') + except Exception as e: + log.error("ERR -20: Could not read netcdf file %s while cmorizing variable %s in table %s. Cause: %s" % ( + filepath, task.target.variable, task.target.table, e.message)) + return + varid = create_cmor_variable(task,dataset,axes) + if varid <0: + return False + + ## for pressure level variables we need to do interpolation, for which we need + ## pyngl module + if interpolate_to_pressure: + psdata=get_ps_var(getattr(getattr(task,'ps_task',None),cmor_task.output_path_key,None)) + pressure_levels=getattr(task,'pressure_levels') + ncvar=interpolate_plev(pressure_levels,dataset,psdata,task.source.variable()) + ncvar[ncvar>1e20]=numpy.nan + else: + ncvar = dataset.variables[task.source.variable()] + + # handle zonal vars + if task.target.table=='AERmonZ': + # assumption: data is shape [time,lat,lon] (roll longitude dimension + vals=numpy.copy(ncvar[:]) + # zonal mean so mean over longitudes + with warnings.catch_warnings(): + warnings.filterwarnings('ignore', '.*Mean of empty slice.*',) + vals=numpy.nanmean(vals,axis=-1) + # change shape, swap lat<->lev + vals=numpy.swapaxes(vals,1,2) + missval = getattr(task.target, cmor_target.missval_key, 1.e+20) + ncvar=vals.copy() + #handle global means + elif task.target.dims==0: + # global means + missval = getattr(task.target, cmor_target.missval_key, 1.e+20) + vals=numpy.copy(ncvar[:]) + if task.target.variable=='co2mass': + # calculate area-weighted sum + vals=numpy.sum((vals*areacella_[numpy.newaxis,:,:]),axis=(1,2)) + else: + # calculate area-weighted mean + vals=numpy.mean(vals,axis=(1)) + vals=numpy.sum((vals*areacella_[numpy.newaxis,:,:]),axis=(1,2))/numpy.sum(areacella_) + ncvar=vals.copy() + #handle normal case + else:# assumption: data is shape [time,lat,lon] (we need to roll longitude dimension so that + # the data corresponds to the dimension definition of tables (from [-180 , 180] to [0,360] deg).) + # so by half the longitude dimension + missval = getattr(task.target, cmor_target.missval_key, 1.e+20) + # hack for co2s, we need the lowest model-level data only (assuming data is in form [time,level,lat,lon] + if task.target.variable == "co2s" and task.source.variable() == "co2": + vals=numpy.copy(ncvar[:,0,:,:]) + # hack to convert units from mol/mol to ppm, cmor_task.conversion_key doesn't work fos some reason + if getattr(task.target,"units")=="1e-06" and getattr(ncvar,"units",None)=="mole mole-1": + vals=vals*1e6 + else: + vals=numpy.copy(ncvar[:]) + dims = numpy.shape(vals) + nroll=dims[-1]//2 + ncvar = numpy.roll(vals,nroll,len(dims)-1) + vals=numpy.copy(ncvar[:,:,:]) + # Default values + factor = 1.0 + term=0.0 + timdim=0 + #check for missing values + if numpy.isnan(ncvar).any(): + nanmask=~numpy.isnan(ncvar) + else: + nanmask=None + # 3D variables need the surface pressure for calculating the pressure at model levels + if store_var: + #get the ps-data associated with this data + psdata=get_ps_var(getattr(getattr(task,'ps_task',None),cmor_task.output_path_key,None)) + # roll psdata like the original + psdata=numpy.roll(psdata[:],nroll,len(numpy.shape(psdata[:]))-1) + cmor_utils.netcdf2cmor(varid, ncvar, timdim, factor, term, store_var, psdata, + swaplatlon=False, fliplat=True, mask=nanmask,missval=missval) + else: + cmor_utils.netcdf2cmor(varid, ncvar, timdim, factor, term, store_var, None, + swaplatlon=False, fliplat=True, mask=nanmask,missval=missval) + cmor.close(varid) + + if store_var: + cmor.close(store_var) + task.status = cmor_task.status_cmorized + + +# Creates a variable in the cmor package +def create_cmor_variable(task,dataset,axes): + """ Create cmor variable object + Args: + task (cmor.task): task for which we are creating a variable object + dataset (netcdf-dataset): netcdf dataset containing the data for TM5 for this variable + axes (list): list of axes ids for creation of cmor.variable object + Returns: + cmor.variable object: object identifier of created variable + + """ + srcvar = task.source.variable() + ncvar = dataset.variables[srcvar] + unit = getattr(ncvar,"units",None) + if unit != getattr(task.target,"units"): + if unit=='mole mole-1': + # files have mole mole-1 but should be mol mol-1 + unit = getattr(task.target,"units") + elif srcvar=='toz'or srcvar=='tropoz': + # unit is just different + if unit=='DU': + setattr(task,cmor_task.conversion_key,1e-5) + unit = getattr(task.target,"units") + elif srcvar=='co2mass': + # co2mass gets converted to area sum + unit = getattr(task.target,"units") + else: + unit_miss_match.append(task.target.variable) + log.error("ERR -21: unit miss match, variable %s" % (task.target.variable)) + return task.set_failed() + + if((not unit) or hasattr(task,cmor_task.conversion_key)): # Explicit unit conversion + unit = getattr(task.target,"units") + if(hasattr(task.target,"positive") and len(task.target.positive) != 0): + return cmor.variable(table_entry = str(task.target.variable),units = str(unit),axis_ids = axes,original_name = str(srcvar),positive = "down") + else: + return cmor.variable(table_entry = str(task.target.variable),units = str(unit),axis_ids = axes,original_name = str(srcvar)) + +def interpolate_plev(pressure_levels,dataset,psdata,varname): + """interpolate pressure levels + args: + pressure_levels (numpy array): output pressure levels + dataset(netcdf-dataset): input data for variable + psdata (numpy-array): data for pressure at surface + varname (string): name of variable for reading in the data + Returns: + interpolated_data (numpy-array): intepolated data in give pressure levels + """ + #### + # Interpolate data from model levels to pressure levels + # pressure_levels defines the pressure levels + # Based on pyngl example: + # https://www.pyngl.ucar.edu/Examples/Scripts/vinth2p.py + #### + + # Reference pressure 1e5 Pa in TM5, here in hPa + p0mb=1000 + + # Vertical coordinate must be from top to bottom: [::-1] + hyam = dataset.variables["hyam"][:] + # Vertical interplation routine expects formula a*p0 + b*ps, + # TM5 has a + b*ps, change a-> a*p0 by dividing a by the reference in TM5 p0=1e5 (1000 mb / hPa) + hyam = hyam[::-1]/(100000) + # Vertical coordinate must be from top to bottom: [::-1] + + hybm = dataset.variables["hybm"][:] + hybm = hybm[::-1] + # Vertical coordinate must be from top to bottom: [::-1] + data = dataset.variables[varname][:,:,:,:] + data = data[:,::-1,:,:] + + interpolation=1 #1 linear, 2 log, 3 loglog + # divide pressure_levels by 100 to get in mb + interpolated_data = Ngl.vinth2p(data,hyam,hybm,pressure_levels/100,psdata[:,:,:],interpolation,p0mb,1,False) + return interpolated_data + + +# Creates time axes in cmor and attach the id's as attributes to the tasks +def create_time_axes(tasks): + """ Create time axes for all tasks + Args: + tasks (list): list of tasks for which time axes need to be created + Returns: + time_axes (dictionary): dictionary of time axes, with table+dimension combination as key + + """ + + global log#,time_axes_ + time_axes = {} + for task in tasks: + freq=task.target.frequency + tgtdims = getattr(task.target, cmor_target.dims_key) + if getattr(task, cmor_task.output_path_key)==None: + continue + for time_dim in [d for d in list(set(tgtdims.split())) if d.startswith("time")]: + key=(task.target.table,time_dim) + if key in time_axes: + tid = time_axes[key] + else: + time_operator = getattr(task.target, "time_operator", ["point"]) + log.info("Creating time axis using variable %s..." % task.target.variable) + tid = create_time_axis(path=getattr(task, cmor_task.output_path_key), + name=time_dim, has_bounds=(time_operator != ["point"])) + time_axes[key] = tid + setattr(task, "time_axis", tid) + break + return time_axes + +# Creates a tie axis for the corresponding table (which is suppoed to be loaded) +def create_time_axis(path,name,has_bounds): + """ creage time axis for a give frequency + Args: + path (string): full path to netcdf file with this freq + name (string): tablename + has_bounds (boolean): true if it has bounds + Returns: + cmor.axis-object: time axis object with given freq + """ + global log,ref_date_ + vals = None + units = None + ds = None + # + ncfile=path + refdate = ref_date_ + try: + ds = netCDF4.Dataset(ncfile) + timvar = ds.variables["time"] + tm5unit = ds.variables["time"].units + vals = timvar[:] + units = getattr(timvar,"units") + if has_bounds: + bnds = getattr(timvar,"bounds") + bndvar = ds.variables[bnds] + except: + ds.close() + tm5refdate=datetime.datetime.strptime(tm5unit,"days since %Y-%m-%d %H:%M:%S") + # delta days for change of reftime + diff_days= (refdate-tm5refdate).total_seconds()//86400 + vals=vals-diff_days + if has_bounds: + bndvar2=numpy.zeros_like(bndvar) + bndvar2[:,0]=bndvar[:,0]-int(diff_days) + bndvar2[:,1]=bndvar[:,1]-int(diff_days) + bndvar=bndvar2 + # hourly bounds can have overlap by -1e-14, which is caught by cmor library as an error + # so just correct it always + for i in range(numpy.shape(bndvar2)[0]-1): + bndvar2[i+1,0]=bndvar2[i,1] + if(len(vals) == 0 or units == None): + log.error("ERR -22: No time values or units could be read from tm5 output files %s" % str(path)) + return -1 + units="days since " + str(ref_date_) + #### + if has_bounds: + return cmor.axis(table_entry = str(name), units=units, coord_vals = vals,cell_bounds = bndvar[:,:]) + else: + return cmor.axis(table_entry = str(name), units=units, coord_vals = vals) + + +def create_type_axes(task): + """ create type axes(lambda 550nm only for the moment) + Args: + task (cmor.task-object): task for which type axes will be created + Returns: + Boolean: if succesful creation + """ + global type_axes + table=task.target.table + key = (table,'lambda550nm') + if key not in type_axes_: + type_axes_[key] = {} + filepath= getattr(task,cmor_task.output_path_key) + log.info("Creating extra axes for table %s using file %s..." % (table, filepath)) + table_type_axes = type_axes_[key] + tgtdims = set(getattr(task.target, cmor_target.dims_key).split()).intersection(list(extra_axes.keys())) + for dim in tgtdims: + if dim == 'lambda550nm': + ncunits=extra_axes['lambda550nm']['ncunits'] + ncvals=extra_axes['lambda550nm']['ncvals'] + ax_id = cmor.axis(table_entry="lambda550nm", units=ncunits, coord_vals=ncvals) + setattr(task, "lambda_axis", ax_id) + type_axes_[key]=ax_id + else: + log.info("Unknown dimenstion %s in table %s." %(dim,table)) + return False + return True + + +def create_depth_axes(task): + """ create depth axes + Args: + task (cmor.task-object): task for which the depth axes are created + Returns: + boolean: is creation successful or not + """ + global log_depth_axis_ids,zfactor_ids + + tgtdims = getattr(task.target, cmor_target.dims_key) + # zdims all other than xy + # including lambda550nm... + zdims = getattr(task.target, "z_dims", []) + if len(zdims) == 0: + return False + if len(zdims) > 1: + log.error("ERR -23: Skipping variable %s in table %s with dimensions %s with multiple z-directions." % ( + task.target.variable, task.target.table, tgtdims)) + task.set_failed() + return False + zdim=str(zdims[0]) + key = (task.target.table, zdim) + if key not in depth_axis_ids: + log.info("Creating vertical axis %s for table %s..." % (zdim,task.target.table)) + + if key in depth_axis_ids: + #setattr(task, "z_axis_id", depth_axis_ids[zdim]) + if zdim == "alevel": + setattr(task, "z_axis_id", depth_axis_ids[key][0]) + setattr(task, "store_with", depth_axis_ids[key][1]) + elif zdim == "alevhalf": + setattr(task, "z_axis_id", depth_axis_ids[key][0]) + setattr(task, "store_with", depth_axis_ids[key][1]) + elif zdim == "plev19": + setattr(task, "z_axis_id", depth_axis_ids[key]) + setattr(task, "pressure_levels", plev19_) + elif zdim == "plev39": + setattr(task, "z_axis_id", depth_axis_ids[key]) + setattr(task, "pressure_levels", plev39_) + else: + setattr(task, "z_axis_id", depth_axis_ids[key]) + return True + elif zdim == 'alevel': + log.info("Creating model full level axis for variable %s..." % task.target.variable) + axisid, psid = create_hybrid_level_axis(task) + depth_axis_ids[key] = (axisid, psid) + if key[0] not in zfactor_ids: + zfactor_ids[key[0]] =psid + setattr(task, "z_axis_id", axisid) + setattr(task, "store_with", psid) + return True + elif zdim == 'alevhalf': + #if zdim not in depth_axis_ids: + log.info("Creating model half level axis for variable %s..." % task.target.variable) + axisid, psid = create_hybrid_level_axis(task,'alevhalf') + depth_axis_ids[key] = (axisid, psid) + if key[0] not in zfactor_ids: + zfactor_ids[key[0]] =psid + setattr(task, "z_axis_id", axisid) + setattr(task, "store_with", psid) + return True + elif zdim=="lambda550nm": + log.info("Creating wavelength axis for variable %s..." % task.target.variable) + axisid=cmor.axis(table_entry = zdim,units ="nm" ,coord_vals = [550.0]) + depth_axis_ids[key]=axisid + setattr(task, "z_axis_id", axisid) + return True + elif zdim=="plev19": + axisid=cmor.axis(table_entry = zdim,units ="Pa" ,coord_vals = plev19_) + depth_axis_ids[key]=axisid + setattr(task, "z_axis_id", axisid) + setattr(task, "pressure_levels", plev19_) + return True + elif zdim=="plev39": + axisid=cmor.axis(table_entry = zdim,units ="Pa" ,coord_vals = plev39_) + depth_axis_ids[key]=axisid + setattr(task, "z_axis_id", axisid) + setattr(task, "pressure_levels", plev39_) + return True + elif zdim=="site": + log.critical('Z-dimension %s will not be implemented.'%zdim) + return False + else: + log.critical("Z-dimension %s not found for variable %s..." % (zdim,task.target.variable)) + return False + + +# Creates the hybrid model vertical axis in cmor. +def create_hybrid_level_axis(task,leveltype='alevel'): + """Create hybrud levels + Args: + task (cmor.task-object): task for which levels are created + leveltype (string): which kind (alevel, alevhalf) + Returns: + axisid (cmor.axis-object): axis id for levels + storewith (cmor.zfactor-object): surface pressure field for saving into same file. needed for calculation of pressure on model levels. + """ + global time_axes_,store_with_ps_,dim_ids_,zfactor_ids + # define grid axes and time axis for hybrid levels + axes=[getattr(task, 'lat'), getattr(task, 'lon'), getattr(task, "time_axis")] + + # define before hybrid factors, and have the same + # for + pref = 80000 # TODO: Move reference pressure level to model config + path = getattr(task, cmor_task.output_path_key) + ds = None + try: + ds = netCDF4.Dataset(path) + am = ds.variables["hyam"] + aunit = getattr(am, "units") + bm = ds.variables["hybm"] + bunit = getattr(bm, "units") + hcm = am[:] / pref + bm[:] + n = hcm.shape[0] + if "hyai" in ds.variables: + ai = ds.variables["hyai"] + abnds = numpy.empty([n, 2]) + abnds[:, 0] = ai[0:n] + abnds[:, 1] = ai[1:n + 1] + bi = ds.variables["hybi"] + bbnds = numpy.empty([n, 2]) + bbnds[:, 0] = bi[0:n] + bbnds[:, 1] = bi[1:n + 1] + hcbnds = abnds / pref + bbnds + hci = ai[:] / pref + bi[:] + n = hci.shape[0] + else: + log.critical("Interface values for hybrid levels not present!") + if leveltype=='alevel': + axisid = cmor.axis(table_entry="alternate_hybrid_sigma", coord_vals=hcm, cell_bounds=hcbnds, units="1") + cmor.zfactor(zaxis_id=axisid, zfactor_name="ap", units=str(aunit), axis_ids=[axisid], zfactor_values=am[:], + zfactor_bounds=abnds) + cmor.zfactor(zaxis_id=axisid, zfactor_name="b", units=str(bunit), axis_ids=[axisid], zfactor_values=bm[:], + zfactor_bounds=bbnds) + elif leveltype=='alevhalf': + axisid = cmor.axis(table_entry="alternate_hybrid_sigma_half", coord_vals=hci, units="1") + + cmor.zfactor(zaxis_id=axisid, zfactor_name="ap_half", units=str(aunit), axis_ids=[axisid,], zfactor_values=ai[:]) + cmor.zfactor(zaxis_id=axisid, zfactor_name="b_half", units=str(bunit), axis_ids=[axisid,], zfactor_values=bi[:]) + # Use the same ps for both types of hybrid levels, + # for some reason defining their own confuses the cmor + # to check in case of Half levels, for the ps from full levels + if task.target.variable=='ec550aer': + psvarname='ps1' + else: + psvarname='ps' + #if depth_axis_ids[('task.table',leveltype)]!=None: + + # setattr(task,'store_with',depth_axis_ids[('task.table',leveltype)]) + if task.target.table not in zfactor_ids: + storewith = cmor.zfactor(zaxis_id=axisid, zfactor_name=psvarname, + axis_ids=axes, units="Pa") + setattr(task,'store_with',storewith) + else: + storewith=zfactor_ids[task.target.table] + return axisid, storewith + finally: + if ds is not None: + ds.close() + +def create_lat(): + """Create latitude dimension + Args: + none + Returns: + lat_id (cmor.axis): cmor.axis-object + """ + yvals=numpy.linspace(89,-89,90) + ny = len(yvals) + lat_bnd=numpy.linspace(90,-90,91) + lat_id=cmor.axis(table_entry="latitude", units="degrees_north", + coord_vals=yvals, cell_bounds=lat_bnd) + return lat_id + +def create_lon(): + """Create longitude dimension + Args: + none + Returns: + lon_id (cmor_axis): cmor.axis-object + """ + xvals=numpy.linspace(1.5,358.5,120) + nx = len(xvals) + lon_bnd=numpy.linspace(0,360,121) + lon_id=cmor.axis(table_entry="longitude", units="degrees_east", + coord_vals=xvals, cell_bounds=lon_bnd) + return lon_id + +# Surface pressure variable lookup utility +def get_ps_var(ncpath): + """ read surface pressure variable for 3D output + Args: + ncpath (string): full path to ps_*.nc file + Returns: + numpy-array: [lon,lat,time]-array containing surface pressure values + """ + + if not ncpath: + log.error("ERR -2: No path defined for surface pressure (ps).") + return None + if not os.path.exists(ncpath): + log.error("ERR -3: Path does not exist for surface pressure (ps).") + return None + ds = None + try: + ds = netCDF4.Dataset(ncpath) + if "ps" in ds.variables: + return ds.variables["ps"] + else: + log.error("ERR -4: Variable ps not present in pressure file.") + return None + except Exception as e: + log.error("ERR -5: Could not read netcdf file %s for surface pressure, reason: %s" % (ncpath, e.message)) + return None + +# Creates extra tasks for surface pressure +def get_ps_tasks(tasks): + """ find ps (surface preseure) tasks for different tables + Args: + tasks (list): list of tasks + Returns: + result (dictionary): dictionary based on the frequencies of different tasks with corresponding ps-tasks as values. + + """ + global exp_name_,path_ + tasks_by_freq = cmor_utils.group(tasks, lambda task: task.target.frequency) + result = {} + for freq, task_group in tasks_by_freq.items(): + tasks3d = [t for t in task_group if ("alevel" in getattr(t.target, cmor_target.dims_key).split() or "plev19" in getattr(t.target, cmor_target.dims_key).split() or + "alevhalf" in getattr(t.target, cmor_target.dims_key).split() or "plev39" in getattr(t.target, cmor_target.dims_key).split() )] + if not any(tasks3d): + continue + ps_tasks = [t for t in task_group if t.source.variable() == "ps" and + getattr(t, "time_operator", "point") in ["mean", "point"]] + ps_task = ps_tasks[0] if any(ps_tasks) else None + if ps_task: + result[freq]=ps_task + else: + source = cmor_source.tm5_source("ps") + ps_task = cmor_task.cmor_task(source, cmor_target.cmor_target("ps", freq)) + setattr(ps_task.target, cmor_target.freq_key, freq) + setattr(ps_task.target, "time_operator", ["point"]) + freqid=set_freqid(freq) + filepath=cmor_utils.find_tm5_output(path_,exp_name_,"ps",freqid) + setattr(ps_task, cmor_task.output_path_key, filepath[0]) + result[freq]=ps_task + for task3d in tasks3d: + + setattr(task3d, "ps_task", ps_task) + return result diff --git a/ece2cmor/ece2cmor3/versioncheck.py b/ece2cmor/ece2cmor3/versioncheck.py new file mode 100755 index 0000000000000000000000000000000000000000..8499ca00e3095a906dfe955904112e83807fecde --- /dev/null +++ b/ece2cmor/ece2cmor3/versioncheck.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python + +import argparse +import os + +from ece2cmor3 import ece2cmorlib, __version__, cmor_utils + +def main(args=None): + + formatter = lambda prog: argparse.ArgumentDefaultsHelpFormatter(prog='ece2cmor', max_help_position=30) + + parser = argparse.ArgumentParser(description="Post-processing and cmorization of EC-Earth output", formatter_class=formatter) + required = parser.add_argument_group("required arguments") + + + # Set your test case: + case=2 + + if case == 1: + from setup import get_git_hash + parser.add_argument('-V', '--version', action='version', version='%(prog)s ' + __version__.version + ' with sha: ' + get_git_hash()) + elif case == 2: + from .cmor_utils import get_git_hash + parser.add_argument('-V', '--version', action='version', version='%(prog)s ' + __version__.version + ' with sha: ' + get_git_hash()) + elif case == 3: + from setup import get_git_hash + parser.add_argument('-V', '--version', action='version', version='%(prog)s ' + __version__.version + ' ........................................ ece2cmor_git_revision: ' + get_git_hash()) + elif case == 4: + from .cmor_utils import get_git_hash + parser.add_argument('-V', '--version', action='version', version='%(prog)s ' + __version__.version + ' ........................................ ece2cmor_git_revision: ' + get_git_hash()) + elif case == 5: + parser.add_argument('-V', '--version', action='version', version='%(prog)s ' + __version__.version) + else: + # The current ece2cmor default way: + parser.add_argument("-V", "--version", action="version", version="%(prog)s {version}".format(version=__version__.version)) + + args = parser.parse_args() + +if __name__ == "__main__": + main() diff --git a/ece2cmor/environment.yml b/ece2cmor/environment.yml new file mode 100644 index 0000000000000000000000000000000000000000..3c1063a7866fbedec85f4cb9f45eff47151e5749 --- /dev/null +++ b/ece2cmor/environment.yml @@ -0,0 +1,50 @@ +# For developers only: +# Remove the ece2cmor environment: +# conda deactivate +# rm -rf ${mambapath}/envs/ece2cmor3 +# Create the ece2cmor3 environment: +# activatemamba +# mamba update -y --name base mamba # For updating mamba itself +# mamba env create -f environment.yml # Create the ece2cmor3 environment +# Basic tests: +# which python # ${mambapath}/envs/ece2cmor3/bin/python +# python --version # Python 3.11 +# cdo -V # version 2.1.1 +# drq -v # version 01.02.00 +# drq -h +# ece2cmor -V # ece2cmor v2.1.0 +# +# The version of one of the packages can be adjusted manually, For instance change the +# data request version of the dreq package (ensure the ece2cmor3 environment is active): +# pip uninstall -y dreqPy==01.2.0; pip install dreqPy==01.0.33 + +name: ece2cmor3 +channels: + - conda-forge + - nodefaults +dependencies: + - cdo + - cmor + - dreqPy==01.2.0 + - f90nml + - gitpython + - jsonschema + - netcdf4 + - numpy + - openpyxl + - pandas + - pip + - pyngl + - pytest + - python + - python-cdo + - python-eccodes + - python-dateutil + - requests + - setuptools + - testfixtures + - xarray + - xlsxwriter + # Additionally required by tem-diag: + - nco + - scipy diff --git a/ece2cmor/meta.yaml b/ece2cmor/meta.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9f99bb005e6c6ab2413fdcebfd7084d9a67b19cf --- /dev/null +++ b/ece2cmor/meta.yaml @@ -0,0 +1,42 @@ +package: + name: ece2cmor3 + version: 1.0.0 + +source: + git_rev: v1.0.0 + git_url: https://github.com/EC-Earth/ece2cmor3.git + +build: + number: 0 + string: np112py27_0 + +requirements: + build: + - python + - setuptools + - six + run: + - python + - python-dateutil >=2.6.0 + - numpy 1.12.1 + - cdo >=1.8.2 + - python-cdo >=1.3.3 + - cmor 3.2.3 # some tests fail with 3.2.4 + - f90nml >=0.20 + - netcdf4 >=1.2.7 + +test: + source_files: + - test + imports: + - ece2cmor3 + requires: + - testfixtures >=4.10.0 + - nose >=1.3.7 + commands: + nosetests -v + +about: + home: https://github.com/EC-Earth/ece2cmor3 + license: "Apache License, Version 2.0" + license_file: LICENSE diff --git a/ece2cmor/requirements.txt b/ece2cmor/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9d2c708ec3195bbc9fa7679326cb96703d82619 --- /dev/null +++ b/ece2cmor/requirements.txt @@ -0,0 +1,14 @@ +cdo==1.7.0 +# Compile cmor source and run python setup.py install +# CMOR==3.3.2 +f90nml==0.20 +netCDF4==1.2.7 +nose==1.3.7 +numpy==1.11.3 +python-dateutil==2.6.0 +six==1.10.0 +testfixtures==4.13.3 +xlrd==1.0.0 +XlsxWriter==1.0.2 +pandas +requests diff --git a/ece2cmor/setup.py b/ece2cmor/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..39b10a27b1e57dd8ffdfeb8a04c3d149c6ad8be8 --- /dev/null +++ b/ece2cmor/setup.py @@ -0,0 +1,83 @@ +import os +from setuptools import setup, find_packages +import distutils.command.build_py +from ece2cmor3 import __version__ + +name = "ece2cmor3" + + +# Utility function to read the README file. +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() + + +# Utility function to get the git hash, possibly with local changes flag +def get_git_hash(): + import git + try: + repo = git.Repo(search_parent_directories=True) + sha = str(repo.head.object.hexsha) + if repo.is_dirty(): + sha += "-changes" + except git.exc.InvalidGitRepositoryError: + sha = "local unknown branch" + return sha + + +# Overriden build command, appending git hash to version python file +class add_sha(distutils.command.build_py.build_py): + + def run(self): + distutils.command.build_py.build_py.run(self) + if not self.dry_run: + filepath = os.path.join(self.build_lib, name, "__version__.py") + with open(filepath, "a") as version_file: + version_file.write("sha = \"{hash}\"\n".format(hash=get_git_hash())) + + +setup(name=name, + version=__version__.version, + author="Gijs van den Oord", + author_email="g.vandenoord@esciencecenter.nl", + description="CMORize and post-process EC-Earth output data", + license="Apache License, Version 2.0", + url="https://github.com/EC-Earth/ece2cmor3", + packages=find_packages(exclude=("tests", "examples")), + package_data={"ece2cmor3": ["resources/*.json", + "resources/*.xlsx", + "resources/*.txt", + "resources/tables/*.json", + "resources/lpjg-grid-content/*", + "resources/b2share-data/nemo-vertices-ORCA*.nc", + "resources/b2share-data/fx-sftlf-EC-Earth3-T*.nc", + "resources/metadata-templates/*.json", + "scripts/create-nemo-only-list/*.xlsx", + "resources/xios-nemo-file_def-files/basic*-file_def_nemo.xml", + "resources/miscellaneous-data-requests/*/*", + "resources/lists-of-omitted-variables/*.xlsx"]}, + include_package_data=True, + long_description=read("README.md"), + entry_points={"console_scripts": [ + "ece2cmor = ece2cmor3.ece2cmor:main", + "versioncheck = ece2cmor3.versioncheck:main", + "checkvars = ece2cmor3.scripts.checkvars:main", + "drq2ppt = ece2cmor3.scripts.drq2ppt:main", + "drq2file_def = ece2cmor3.scripts.drq2file_def:main", + "drq2ins = ece2cmor3.scripts.drq2ins:main", + "drq2varlist = ece2cmor3.scripts.drq2varlist:main", + "estimate_tm5_volume = ece2cmor3.scripts.estimate_tm5_volume:main", + "convert_component_to_flat_json = ece2cmor3.scripts.convert_component_to_flat_json:main", + "fixmonths = ece2cmor3.scripts.fixmonths:main", + "splitbalance = ece2cmor3.scripts.splitbalance:main" + ]}, + scripts=["ece2cmor3/scripts/genecec-per-mip-experiment.sh"], + classifiers=[ + "Development Status :: 3 - Alpha", + "Intended Audience :: Science/Research", + "Programming Language :: Python", + "Operating System :: OS Independent", + "Topic :: Scientific/Engineering :: Atmospheric Science", + "License :: OSI Approved :: Apache Software License" + ], + cmdclass={"build_py": add_sha} + ) diff --git a/ece2cmor/test/cdoapi_test.py b/ece2cmor/test/cdoapi_test.py new file mode 100644 index 0000000000000000000000000000000000000000..d39a69507d39c54abedbbd42c5f45072a66c7e7b --- /dev/null +++ b/ece2cmor/test/cdoapi_test.py @@ -0,0 +1,100 @@ +import logging +import unittest +from ece2cmor3 import cdoapi + +logging.basicConfig(level=logging.DEBUG) + + +class cdoapi_tests(unittest.TestCase): + + @staticmethod + def test_select_code(): + command = cdoapi.cdo_command(130) + commstr = command.create_command() + assert commstr == "-selcode,130" + + @staticmethod + def test_select_codes(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.select_code_operator, 131, 132) + commstr = command.create_command() + assert commstr == "-selcode,130,131,132" + + @staticmethod + def test_add_specmapping(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.spectral_operator) + commstr = command.create_command() + assert commstr == "-sp2gpl -selcode,130" + + @staticmethod + def test_add_gridmapping(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.gridtype_operator, cdoapi.cdo_command.regular_grid_type) + commstr = command.create_command() + assert commstr == "-setgridtype,regular -selcode,130" + + @staticmethod + def test_add_sellevel(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.select_z_operator, cdoapi.cdo_command.pressure) + command.add_operator(cdoapi.cdo_command.gridtype_operator, cdoapi.cdo_command.regular_grid_type) + command.add_operator(cdoapi.cdo_command.select_lev_operator, 500, 350, 10) + commstr = command.create_command() + assert commstr == "-setgridtype,regular -sellevel,500,350,10 -selzaxis,pressure -selcode,130" + + @staticmethod + def test_add_monmean(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.mean) + command.add_operator(cdoapi.cdo_command.select_z_operator, cdoapi.cdo_command.pressure) + command.add_operator(cdoapi.cdo_command.gridtype_operator, cdoapi.cdo_command.regular_grid_type) + command.add_operator(cdoapi.cdo_command.select_lev_operator, 500, 350, 10) + commstr = command.create_command() + assert commstr == "-setgridtype,regular -monmean -sellevel,500,350,10 -selzaxis,pressure -selcode,130" + + @staticmethod + def test_add_daymax(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.mean) + command.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.max) + command.add_operator(cdoapi.cdo_command.select_z_operator, cdoapi.cdo_command.pressure) + command.add_operator(cdoapi.cdo_command.gridtype_operator, cdoapi.cdo_command.regular_grid_type) + command.add_operator(cdoapi.cdo_command.select_lev_operator, 500, 350, 10) + commstr = command.create_command() + assert commstr == "-monmean -daymax -setgridtype,regular -sellevel,500,350,10 -selzaxis,pressure -selcode,130" + + @staticmethod + def test_add_daymin(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.year + cdoapi.cdo_command.mean) + command.add_operator(cdoapi.cdo_command.day + cdoapi.cdo_command.max) + command.add_operator(cdoapi.cdo_command.select_z_operator, cdoapi.cdo_command.pressure) + command.add_operator(cdoapi.cdo_command.gridtype_operator, cdoapi.cdo_command.regular_grid_type) + command.add_operator(cdoapi.cdo_command.select_lev_operator, 500, 350, 10) + commstr = command.create_command() + assert commstr == "-yearmean -daymax -setgridtype,regular -sellevel,500,350,10 -selzaxis,pressure -selcode,130" + + @staticmethod + def test_expr(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.spectral_operator) + command.add_operator(cdoapi.cdo_command.expression_operator, "var91=sq(var130)") + commstr = command.create_command() + assert commstr == "-expr,'var91=sq(var130)' -sp2gpl -selcode,130" + + @staticmethod + def test_monmean_expr(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.expression_operator, "var91=sq(var130)") + command.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.mean) + commstr = command.create_command() + assert commstr == "-monmean -expr,'var91=sq(var130)' -selcode,130" + + @staticmethod + def test_expr_monmean(): + command = cdoapi.cdo_command(130) + command.add_operator(cdoapi.cdo_command.post_expr_operator, "var91=sq(var130)") + command.add_operator(cdoapi.cdo_command.month + cdoapi.cdo_command.mean) + commstr = command.create_command() + assert commstr == "-expr,'var91=sq(var130)' -monmean -selcode,130" diff --git a/ece2cmor/test/cmor_source_test.py b/ece2cmor/test/cmor_source_test.py new file mode 100644 index 0000000000000000000000000000000000000000..f1dbe542b3ebc69348b569424488c47c60d2fea5 --- /dev/null +++ b/ece2cmor/test/cmor_source_test.py @@ -0,0 +1,147 @@ +import logging +import unittest +from testfixtures import LogCapture + +from ece2cmor3.cmor_source import ifs_source, netcdf_source, grib_code + +logging.basicConfig(level=logging.DEBUG) + + +class cmor_source_tests(unittest.TestCase): + + @staticmethod + def test_default_ifs_source(): + src = ifs_source(None) + assert src.grid() is None + assert src.get_grib_code() is None + assert not any(src.get_root_codes()) + + @staticmethod + def test_surface_pressure(): + code = grib_code(134, 128) + assert code in ifs_source.grib_codes_2D_dyn + + @staticmethod + def test_specific_humidity(): + code = grib_code(135, 128) + src = ifs_source(code) + assert src.grid() == "spec" + assert src.spatial_dims == 3 + + @staticmethod + def test_snow_depth(): + code = grib_code(141, 128) + src = ifs_source(code) + assert src.grid() == "point" + assert src.spatial_dims == 2 + + @staticmethod + def test_create_from_ints(): + src = ifs_source.create(133, 128) + assert src.get_grib_code() == grib_code(133, 128) + + @staticmethod + def test_create_from_string(): + src = ifs_source.read("133.128") + assert src.get_grib_code() == grib_code(133, 128) + + @staticmethod + def test_create_from_short_string(): + src = ifs_source.read("133") + assert src.get_grib_code() == grib_code(133, 128) + + @staticmethod + def test_create_from_short_string_masked(): + src = ifs_source.read("133", mask_expr="var172<=0.5") + assert set(src.get_root_codes()) == {grib_code(133, 128), grib_code(172, 128)} + + @staticmethod + def test_create_from_var_string(): + src = ifs_source.read("var133") + assert src.get_grib_code() == grib_code(133, 128) + + @staticmethod + def test_create_from_var_string_masked(): + src = ifs_source.read("var133", mask_expr="var172<=0.5") + assert set(src.get_root_codes()) == {grib_code(133, 128), grib_code(172, 128)} + + @staticmethod + def test_create_from_expr(): + src = ifs_source.read("88.128", "sqrt(sq(var165)+sq(var166))") + assert src.get_grib_code() == grib_code(88, 128) + assert set(src.get_root_codes()) == {grib_code(165, 128), grib_code(166, 128)} + assert getattr(src, "expr") == "var88=sqrt(sq(var165)+sq(var166))" + assert src.grid() == "point" + assert src.spatial_dims == 2 + + @staticmethod + def test_create_from_expr2(): + src = ifs_source.read("var88", "sqrt(sq(var131)+sq(var132))") + assert src.get_grib_code() == grib_code(88, 128) + assert set(src.get_root_codes()) == {grib_code(131, 128), grib_code(132, 128)} + assert getattr(src, "expr") == "var88=sqrt(sq(var131)+sq(var132))" + assert src.grid() == "spec" + assert src.spatial_dims == 3 + + @staticmethod + def test_create_from_expr3(): + src = ifs_source.read("var88", "sqrt(sq(var128131)+sq(var128132))") + assert src.get_grib_code() == grib_code(88, 128) + assert set(src.get_root_codes()) == {grib_code(131, 128), grib_code(132, 128)} + assert getattr(src, "expr") == "var88=sqrt(sq(var131)+sq(var132))" + assert src.grid() == "spec" + assert src.spatial_dims == 3 + + @staticmethod + def test_create_from_expr4(): + src = ifs_source.read("var129124", "var126094 + var126099 + var126106 + var126110") + assert src.get_grib_code() == grib_code(124, 129) + assert set(src.get_root_codes()) == {grib_code(94, 126), grib_code(99, 126), grib_code(106, 126), + grib_code(110, 126)} + assert getattr(src, "expr") == "var124=var94+var99+var106+var110" + assert src.grid() == "point" + assert src.spatial_dims == 3 + + @staticmethod + def test_create_from_expr5(): + src = ifs_source.read("88", "var88=sqrt(sq(var131)+sq(var132))") + assert src.get_grib_code() == grib_code(88, 128) + assert set(src.get_root_codes()) == {grib_code(131, 128), grib_code(132, 128)} + assert getattr(src, "expr") == "var88=sqrt(sq(var131)+sq(var132))" + assert src.grid() == "spec" + assert src.spatial_dims == 3 + + @staticmethod + def test_create_from_expr6(): + src = ifs_source.read("88", "(var144==0)*sqrt(sq(var131)+sq(var132))") + assert src.get_grib_code() == grib_code(88, 128) + assert set(src.get_root_codes()) == {grib_code(144, 128), grib_code(131, 128), grib_code(132, 128)} + assert getattr(src, "expr") == "var88=(var144==0)*sqrt(sq(var131)+sq(var132))" + assert src.spatial_dims == 3 + + @staticmethod + def test_create_from_expr_masked(): + src = ifs_source.read("88", "(var144==0)*sqrt(sq(var131)+sq(var132))", mask_expr="var172>0.5") + assert src.get_grib_code() == grib_code(88, 128) + assert set(src.get_root_codes()) == {grib_code(144, 128), grib_code(131, 128), grib_code(132, 128), + grib_code(172, 128)} + assert getattr(src, "expr") == "var88=(var144==0)*sqrt(sq(var131)+sq(var132))" + assert src.spatial_dims == 3 + + @staticmethod + def test_invalid_expression1(): + with LogCapture() as logc: + ifs_source.read("141.128", "sqrt(sq(var165)+sq(var166))") + assert "cmor_source ERROR" in str(logc) + + @staticmethod + def test_invalid_expression2(): + with LogCapture() as logc: + ifs_source.read("89.128", "sqrt(sq(var88)+sq(var166))") + assert "cmor_source ERROR" in str(logc) + + @staticmethod + def test_create_netcdf_source(): + src = netcdf_source("tos", "nemo") + assert src.variable() == "tos" + assert src.model_component() == "nemo" diff --git a/ece2cmor/test/cmor_target_test.py b/ece2cmor/test/cmor_target_test.py new file mode 100644 index 0000000000000000000000000000000000000000..6a95fbb663f99a71e5e43905fe27c117fa8fee93 --- /dev/null +++ b/ece2cmor/test/cmor_target_test.py @@ -0,0 +1,66 @@ +import logging +import os +import unittest + +from ece2cmor3 import cmor_target + +logging.basicConfig(level=logging.DEBUG) + + +def get_table_path(tab_id=None): + directory = os.path.join(os.path.dirname(cmor_target.__file__), "resources", "tables") + return os.path.join(directory, "CMIP6_" + tab_id + ".json") if tab_id else directory + + +class cmor_target_tests(unittest.TestCase): + + @staticmethod + def test_get_table_id(): + fname = "dir1/dir2/dir3/CMIP6_Omon.json" + tid = cmor_target.get_table_id(fname, "CMIP6") + assert tid == "Omon" + + @staticmethod + def test_make_Omon_vars(): + abspath = get_table_path("Omon") + targets = cmor_target.create_targets(abspath, "CMIP6") + assert len(targets) > 0 + toss = [t for t in targets if t.variable == "tos"] + assert len(toss) == 1 + tos = toss[0] + assert tos.frequency == "mon" + assert tos.units == "degC" + assert tos.dimensions == "longitude latitude time" + + @staticmethod + def test_make_CMIP6_vars(): + abspath = get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + assert len(targets) > 0 + toss = [t for t in targets if t.variable == "tos"] + assert len(toss) == 4 + tos_freqs = [v.frequency for v in toss] + assert "mon" in tos_freqs + assert "day" in tos_freqs + + @staticmethod + def test_cell_measures(): + abspath = get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + tasmin = [t for t in targets if t.table == "day" and t.variable == "tasmin"][0] + assert hasattr(tasmin, "time_operator") + assert getattr(tasmin, "time_operator") == ["minimum"] + + @staticmethod + def test_zhalfo_zdims(): + abspath = get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + zhalfo = [t for t in targets if t.variable == "zhalfo"][0] + assert cmor_target.get_z_axis(zhalfo)[0] == "olevhalf" + + @staticmethod + def test_siu_time_method(): + abspath = get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + siu = [t for t in targets if t.variable == "siu" and t.table == "SIday"][0] + assert getattr(siu, "time_operator", None) == ["mean where sea_ice"] diff --git a/ece2cmor/test/cmor_task_test.py b/ece2cmor/test/cmor_task_test.py new file mode 100644 index 0000000000000000000000000000000000000000..95cbe09ed53225ed5d378639c5edc76f3e273dd5 --- /dev/null +++ b/ece2cmor/test/cmor_task_test.py @@ -0,0 +1,35 @@ +import logging +import unittest + +import pytest + +from ece2cmor3 import cmor_source +from ece2cmor3 import cmor_target +from ece2cmor3 import cmor_task + +logging.basicConfig(level=logging.DEBUG) + + +class cmor_task_tests(unittest.TestCase): + + @staticmethod + def test_invalid_source(): + src = "invalid" + tgt = cmor_target.cmor_target("huss", "Amon") + with pytest.raises(Exception, match=r"Invalid source*"): + task = cmor_task.cmor_task(src, tgt) + + @staticmethod + def test_invalid_target(): + src = cmor_source.ifs_source.read("81.128") + tgt = "invalid" + with pytest.raises(Exception, match=r"Invalid target*"): + task = cmor_task.cmor_task(src, tgt) + + @staticmethod + def test_constructor(): + src = cmor_source.ifs_source.read("79.128") + tgt = cmor_target.cmor_target("clwvi", "Amon") + task = cmor_task.cmor_task(src, tgt) + assert task.source == src + assert task.target == tgt diff --git a/ece2cmor/test/cmor_utils_tests.py b/ece2cmor/test/cmor_utils_tests.py new file mode 100644 index 0000000000000000000000000000000000000000..3d780f77ac44eb1725725df3361adc841739bb74 --- /dev/null +++ b/ece2cmor/test/cmor_utils_tests.py @@ -0,0 +1,136 @@ +import logging +import unittest +import os +import datetime + +import netCDF4 +import numpy +from dateutil.relativedelta import relativedelta +from ece2cmor3.cmor_utils import make_time_intervals, find_ifs_output, get_ifs_date, find_nemo_output, get_nemo_grid, \ + group, num2num + +logging.basicConfig(level=logging.DEBUG) + + +class utils_tests(unittest.TestCase): + + @staticmethod + def test_group(): + t1 = ("a", 3) + t2 = ("b", 4) + t3 = ("c", 6) + t4 = ("d", 11) + d = group([t1, t2, t3, t4], lambda t: t[1] % 2) + assert d[0] == [t2, t3] + assert d[1] == [t1, t4] + + @staticmethod + def test_intervals_30days(): + t1 = datetime.datetime(1999, 12, 31, 23, 45, 20) + t2 = datetime.datetime(2003, 8, 29, 12, 0, 0) + intervals = make_time_intervals(t1, t2, datetime.timedelta(days=30)) + assert intervals[-1][1] == t2 + + @staticmethod + def test_intervals_month(): + t1 = datetime.datetime(2000, 1, 1, 23, 45, 20) + t2 = datetime.datetime(2003, 8, 29, 12, 0, 0) + intervals = make_time_intervals(t1, t2, relativedelta(months=+1)) + assert intervals[-1][0] == datetime.datetime(2003, 8, 1, 23, 45, 20) + + @staticmethod + def test_ifs_output_date(): + ofile = os.path.join(os.path.dirname(__file__), "test_data", "ICMGG+199011") + assert get_ifs_date(ofile) == datetime.date(1990, 11, 1) + + @staticmethod + def test_find_nemo_output(): + ofiles = find_nemo_output(os.path.join(os.path.dirname(__file__), "test_data", "nemo_dummy")) + assert len(ofiles) == 2 + assert os.path.join(os.path.dirname(__file__), "test_data", "nemo_dummy", "exp_1m_19991231_20000505_gridT.nc") \ + in ofiles + assert os.path.join(os.path.dirname(__file__), "test_data", "nemo_dummy", "exp_1d_19991221_20000101_icemod.nc") \ + in ofiles + + @staticmethod + def test_find_nemo_exp_output(): + ofiles = find_nemo_output(os.path.join(os.path.dirname(__file__), "test_data", "nemo_dummy"), "exp") + assert len(ofiles) == 2 + assert os.path.join(os.path.dirname(__file__), "test_data", "nemo_dummy", "exp_1m_19991231_20000505_gridT.nc") \ + in ofiles + assert os.path.join(os.path.dirname(__file__), "test_data", "nemo_dummy", "exp_1d_19991221_20000101_icemod.nc") \ + in ofiles + + @staticmethod + def test_nemo_bad_output(): + ofiles = find_nemo_output(os.path.join(os.path.dirname(__file__), "test_data", "nemo_dummy"), "bad") + assert not any(ofiles) + + @staticmethod + def test_get_nemo_grid(): + filepath = os.path.join(os.path.dirname(__file__), "exp1_3h_19992131_20000102_icemod.nc") + assert get_nemo_grid(filepath) == "icemod" + + @staticmethod + def test_get_nemo_grid2(): + filepath = os.path.join(os.path.dirname(__file__), "exp2_3h_19992131_20000102_grid_T.nc") + assert get_nemo_grid(filepath) == "grid_T" + + @staticmethod + def test_get_nemo_grid3(): + filepath = os.path.join(os.path.dirname(__file__), "t015_1m_19900101_19901231_opa_grid_W_3D.nc") + assert get_nemo_grid(filepath) == "opa_grid_W_3D" + + @staticmethod + def test_bad_nemo_grid(): + filepath = os.path.join(os.path.dirname(__file__), "my_exp_3h_19992131_20000102_grid_T.nc") + assert get_nemo_grid(filepath) is None + + @staticmethod + def test_num2num_gregorian(): + times = numpy.array([datetime.datetime(1849, 12, 15, 12, 30, 30), datetime.datetime(1850, 1, 1, 0, 0, 0), + datetime.datetime(1850, 2, 1, 15, 12, 0)]) + units = "days since " + str(datetime.datetime(1830, 6, 6, 12, 0, 0)) + calender = "gregorian" + ref = datetime.datetime(1850, 1, 1, 0, 0, 0) + nums = netCDF4.date2num(times, units, calender) + new_times, new_units = num2num(nums, ref, units, calender) + assert new_times[1] == 0. + assert new_units == "days since " + str(ref) + + @staticmethod + def test_num2num_proleptic_gregorian(): + times = numpy.array([datetime.datetime(1849, 12, 15, 12, 30, 30), datetime.datetime(1850, 1, 1, 0, 0, 0), + datetime.datetime(1850, 2, 1, 15, 12, 0)]) + units = "hours since " + str(datetime.datetime(1830, 6, 6, 12, 0, 0)) + calender = "gregorian" + ref = datetime.datetime(1850, 1, 1, 0, 0, 0) + nums = netCDF4.date2num(times, units, calender) + new_times, new_units = num2num(nums, ref, units, calender) + assert new_times[1] == 0. + assert new_units == "hours since " + str(ref) + + @staticmethod + def test_num2num_noleap(): + times = numpy.array([datetime.datetime(1849, 12, 15, 12, 30, 30), datetime.datetime(1850, 1, 1, 0, 0, 0), + datetime.datetime(1850, 2, 1, 15, 12, 0)]) + units = "days since " + str(datetime.datetime(1830, 6, 6, 12, 0, 0)) + calender = "noleap" + ref = datetime.datetime(1850, 1, 1, 0, 0, 0) + nums = netCDF4.date2num(times, units, calender) + new_times, new_units = num2num(nums, ref, units, calender) + assert new_times[1] == 0. + assert new_units == "days since " + str(ref) + + @staticmethod + def test_noleap_timeshift(): + times = numpy.array([datetime.datetime(1849, 12, 15, 12, 30, 30), datetime.datetime(1850, 1, 1, 0, 0, 0), + datetime.datetime(1850, 2, 1, 15, 12, 0), datetime.datetime(1850, 4, 1, 0, 0, 0)]) + units = "days since " + str(datetime.datetime(1830, 6, 6, 12, 0, 0)) + calender = "noleap" + ref = datetime.datetime(1850, 1, 1, 0, 0, 0) + shift = datetime.timedelta(days=30) + nums = netCDF4.date2num(times, units, calender) + new_times, new_units = num2num(nums, ref, units, calender, shift) + assert new_times[3] == 60 + assert new_units == "days since " + str(ref) diff --git a/ece2cmor/test/ece2cmor_test.py b/ece2cmor/test/ece2cmor_test.py new file mode 100644 index 0000000000000000000000000000000000000000..eb3e2e306c7324a1c395a6703446f81a973d4894 --- /dev/null +++ b/ece2cmor/test/ece2cmor_test.py @@ -0,0 +1,49 @@ +import logging +import unittest + +from ece2cmor3 import ece2cmorlib, cmor_source, cmor_task + +logging.basicConfig(level=logging.DEBUG) + + +class ece2cmorlib_tests(unittest.TestCase): + + @staticmethod + def test_init(): + ece2cmorlib.initialize() + + @staticmethod + def test_initialize(): + ece2cmorlib.initialize() + ece2cmorlib.finalize() + + @staticmethod + def test_lookup_target(): + ece2cmorlib.initialize() + tgt = ece2cmorlib.get_cmor_target("clwvi", "CFday") + assert tgt is not None + ece2cmorlib.finalize() + + @staticmethod + def test_create_task(): + ece2cmorlib.initialize() + tgt = ece2cmorlib.get_cmor_target("clwvi", "CFday") + src = cmor_source.ifs_source.read("79.128") + tsk = cmor_task.cmor_task(src, tgt) + ece2cmorlib.add_task(tsk) + assert tsk in ece2cmorlib.tasks + ece2cmorlib.finalize() + + @staticmethod + def test_duplicate_task(): + ece2cmorlib.initialize() + tgt = ece2cmorlib.get_cmor_target("clwvi", "CFday") + src1 = cmor_source.ifs_source.read("49.128") + tsk1 = cmor_task.cmor_task(src1, tgt) + ece2cmorlib.add_task(tsk1) + src2 = cmor_source.ifs_source.read("79.128") + tsk2 = cmor_task.cmor_task(src2, tgt) + ece2cmorlib.add_task(tsk2) + assert len(ece2cmorlib.tasks) == 1 + assert tsk2 in ece2cmorlib.tasks + ece2cmorlib.finalize() diff --git a/ece2cmor/test/grib_filter_test.py b/ece2cmor/test/grib_filter_test.py new file mode 100644 index 0000000000000000000000000000000000000000..651bf7b71b986d9e663ce1cd805e1215eb4725b0 --- /dev/null +++ b/ece2cmor/test/grib_filter_test.py @@ -0,0 +1,140 @@ +import logging +import os +import unittest +from datetime import datetime + +import pytest + +from ece2cmor3 import grib_filter, grib_file, cmor_source, ece2cmorlib, cmor_task, cmor_target + +logging.basicConfig(level=logging.DEBUG) + +test_data_path = os.path.join(os.path.dirname(__file__), "test_data", "ifs", "001") +tmp_path = os.path.join(os.path.dirname(__file__), "tmp") + + +class grib_filter_test(unittest.TestCase): + test_mode = True + date = datetime(year=1990, month=1, day=1, hour=1) + gg_file = "ICMGGECE3+199001.csv" if test_mode else "ICMGGECE3+199001" + gg_path = {date: os.path.join(test_data_path, gg_file)} + sh_file = "ICMSHECE3+199001.csv" if test_mode else "ICMSHECE3+199001" + sh_path = {date: os.path.join(test_data_path, sh_file)} + preceding_files = {list(gg_path.values())[0]: None, list(sh_path.values())[0]: None} + grib_file.test_mode = test_mode + if not os.path.exists(tmp_path): + os.makedirs(tmp_path) + + @staticmethod + def test_initialize(): + grib_filter.initialize(grib_filter_test.gg_path, grib_filter_test.sh_path, None, None, + grib_filter_test.preceding_files, tmp_path) + assert grib_filter.varsfreq[(133, 128, grib_file.hybrid_level_code, 9, cmor_source.ifs_grid.point)] == 6 + assert grib_filter.varsfreq[ + (133, 128, grib_file.pressure_level_Pa_code, 85000, cmor_source.ifs_grid.point)] == 6 + assert grib_filter.varsfreq[(164, 128, grib_file.surface_level_code, 0, cmor_source.ifs_grid.point)] == 3 + + @staticmethod + def test_validate_tasks(): + grib_filter.initialize(grib_filter_test.gg_path, grib_filter_test.sh_path, None, None, + grib_filter_test.preceding_files, tmp_path) + ece2cmorlib.initialize() + tgt1 = ece2cmorlib.get_cmor_target("clwvi", "CFday") + src1 = cmor_source.ifs_source.read("79.128") + tsk1 = cmor_task.cmor_task(src1, tgt1) + tgt2 = ece2cmorlib.get_cmor_target("ua", "Amon") + src2 = cmor_source.ifs_source.read("131.128") + tsk2 = cmor_task.cmor_task(src2, tgt2) + valid_tasks, varstasks = grib_filter.validate_tasks([tsk1, tsk2]) + assert valid_tasks == [tsk1, tsk2] + key1 = (79, 128, grib_file.surface_level_code, 0, cmor_source.ifs_grid.point) + key2 = (131, 128, grib_file.pressure_level_Pa_code, 92500, cmor_source.ifs_grid.spec) + assert varstasks[key1] == [tsk1] + assert varstasks[key2] == [tsk2] + ltype, plevs = cmor_target.get_z_axis(tgt2) + levs = sorted([float(p) for p in plevs]) + levcheck = sorted([k[3] for k in varstasks if k[0] == 131]) + assert levs == levcheck + + @staticmethod + def test_surf_var(): + grib_filter.initialize(grib_filter_test.gg_path, grib_filter_test.sh_path, None, None, + grib_filter_test.preceding_files, tmp_path) + ece2cmorlib.initialize() + tgt = ece2cmorlib.get_cmor_target("clwvi", "CFday") + src = cmor_source.ifs_source.read("79.128") + tsk = cmor_task.cmor_task(src, tgt) + grib_filter.execute([tsk]) + filepath = os.path.join(tmp_path, "79.128.1.3") + assert os.path.isfile(filepath) + assert getattr(tsk, cmor_task.filter_output_key) == [filepath] + with open(filepath) as fin: + reader = grib_file.create_grib_file(fin) + date, time = 0, 0 + while reader.read_next(): + param = reader.get_field(grib_file.param_key) + assert param == 79 + newdate = reader.get_field(grib_file.date_key) + if date != 0 and newdate != date: + assert newdate == date + 1 + date = newdate + newtime = reader.get_field(grib_file.time_key) + assert newtime == (time + 300) % 2400 + time = newtime + os.remove(filepath) + + @staticmethod + def test_expr_var(): + grib_filter.initialize(grib_filter_test.gg_path, grib_filter_test.sh_path, None, None, + grib_filter_test.preceding_files, tmp_path) + ece2cmorlib.initialize() + tgt = ece2cmorlib.get_cmor_target("sfcWind", "Amon") + src = cmor_source.ifs_source.read("214.128", "sqrt(sqr(var165)+sqr(var166))") + tsk = cmor_task.cmor_task(src, tgt) + grib_filter.execute([tsk]) + filepath = os.path.join(tmp_path, "165.128.105_166.128.105.3") + assert os.path.isfile(filepath) + assert getattr(tsk, cmor_task.filter_output_key) == [filepath] + with open(filepath) as fin: + reader = grib_file.create_grib_file(fin) + date, time = 0, 0 + while reader.read_next(): + param = reader.get_field(grib_file.param_key) + assert param in [165, 166] + newdate = reader.get_field(grib_file.date_key) + if date != 0 and newdate != date: + assert newdate == date + 1 + date = newdate + newtime = reader.get_field(grib_file.time_key) + if newtime != time: + assert newtime == (time + 300) % 2400 + time = newtime + os.remove(filepath) + + @staticmethod + def test_pressure_var(): + grib_filter.initialize(grib_filter_test.gg_path, grib_filter_test.sh_path, None, None, + grib_filter_test.preceding_files, tmp_path) + ece2cmorlib.initialize() + tgt = ece2cmorlib.get_cmor_target("ua", "Amon") + src = cmor_source.ifs_source.read("131.128") + tsk = cmor_task.cmor_task(src, tgt) + grib_filter.execute([tsk]) + filepath = os.path.join(tmp_path, "131.128.210.6") + assert os.path.isfile(filepath) + assert getattr(tsk, cmor_task.filter_output_key), [filepath] + with open(filepath) as fin: + reader = grib_file.create_grib_file(fin) + date, time = 0, 0 + while reader.read_next(): + param = reader.get_field(grib_file.param_key) + assert param == 131 + newdate = reader.get_field(grib_file.date_key) + if date != 0 and newdate != date: + assert newdate == date + 1 + date = newdate + newtime = reader.get_field(grib_file.time_key) + if newtime != time: + assert newtime == (time + 600) % 2400 + time = newtime + os.remove(filepath) diff --git a/ece2cmor/test/ifs2cmor_test.py b/ece2cmor/test/ifs2cmor_test.py new file mode 100644 index 0000000000000000000000000000000000000000..c1255f5a920e24d44bd4ddd380ecc806ef100e4f --- /dev/null +++ b/ece2cmor/test/ifs2cmor_test.py @@ -0,0 +1,203 @@ +import datetime +import shutil + +import cmor +import dateutil +import logging +import netCDF4 +import numpy +import os +import unittest + +from ece2cmor3 import ifs2cmor, ece2cmorlib + +logging.basicConfig(level=logging.DEBUG) + +calendar_ = "proleptic_gregorian" + +tmp_path = os.path.join(os.path.dirname(__file__), "tmp") + + +def write_postproc_timestamps(filename, startdate, refdate, interval, offset=0): + path = os.path.join(ifs2cmor.temp_dir_, filename) + root = netCDF4.Dataset(path, "w") + times = [] + time = startdate + interval * offset + while time.year == startdate.year: + times.append(time) + time += interval + root.createDimension("time", len(times)) + time_variable = root.createVariable("Time", "f8", dimensions=("time",)) + units = "hours since %s" % str(refdate) + setattr(time_variable, "units", units) + setattr(time_variable, "calendar", calendar_) + time_variable[:] = netCDF4.date2num(times, units=units, calendar=calendar_) + return root, len(times) + + +class ifs2cmor_tests(unittest.TestCase): + + def setUp(self): + self.temp_dir = "/tmp/ece2cmor3/ifs2cmor_test" + if not os.path.exists(self.temp_dir): + os.makedirs(self.temp_dir) + self.startdate = datetime.datetime(1950, 1, 1) + self.refdate = datetime.datetime(1850, 1, 1) + ece2cmorlib.initialize() + cmor.set_cur_dataset_attribute("calendar", calendar_) + + @staticmethod + def test_prev_month_find(): + exp = "pmt1" + fnames = ["ICM" + t + exp + "+" + dt for t in ["GG", "SH"] for dt in ["000000", "185001", "184912"]] + path1 = os.path.join(tmp_path, "prev_mon_test_src", "001") + path2 = os.path.join(tmp_path, "prev_mon_test_dst") + try: + os.makedirs(path1, exist_ok=True) + for fname in fnames: + open(os.path.join(path1, fname), 'a').close() + os.makedirs(path2, exist_ok=True) + for fname in fnames: + os.symlink(os.path.join(path1, fname), os.path.join(path2, fname)) + ifs2cmor.find_grib_files(exp, path1) + prevfile = ifs2cmor.ifs_preceding_files_[os.path.join(path1, "ICMGG" + exp + "+185001")] + assert prevfile in [os.path.join(path2, "ICMGG" + exp + "+184912"), + os.path.join(path1, "ICMGG" + exp + "+184912")] + initfile = ifs2cmor.ifs_preceding_files_[os.path.join(path1, "ICMGG" + exp + "+184912")] + assert initfile == os.path.join(path1, "ICMGG" + exp + "+000000") + finally: + shutil.rmtree(os.path.join(tmp_path, "prev_mon_test_src")) + shutil.rmtree(path2) + + @staticmethod + def test_ini_month_find(): + exp = "pmt2" + fnames = ["ICM" + t + exp + "+" + dt for t in ["GG", "SH"] for dt in ["000000", "185001"]] + path1 = os.path.join(tmp_path, "prev_mon_test_src", "001") + path2 = os.path.join(tmp_path, "prev_mon_test_dst", "001") + try: + os.makedirs(path1, exist_ok=True) + for fname in fnames: + open(os.path.join(path1, fname), 'a').close() + os.makedirs(path2, exist_ok=True) + for fname in fnames: + if not os.path.exists(os.path.join(path2, fname)): + os.symlink(os.path.join(path1, fname), os.path.join(path2, fname)) + ifs2cmor.find_grib_files(exp, path2) + inifile = ifs2cmor.ifs_preceding_files_[os.path.join(path2, "ICMGG" + exp + "+185001")] + assert inifile == os.path.join(path2, "ICMGG" + exp + "+000000") + finally: + shutil.rmtree(path1) + shutil.rmtree(path2) + + @staticmethod + def test_discard_exp_backups(): + exp = "pmt2" + fnames_001 = ["ICM" + t + exp + "+" + dt for t in ["GG", "SH"] for dt in ["000000", "185012"]] + fnames_002 = ["ICM" + t + exp + "+" + dt for t in ["GG", "SH"] for dt in ["185101"]] + try: + for leg, fnames in zip(['001', '002'], [fnames_001, fnames_002]): + path1 = os.path.join(tmp_path, leg) + path2 = os.path.join(tmp_path, f'{leg}_backup') + path3 = os.path.join(tmp_path, leg, "backup") + for p in [path1, path2, path3]: + os.makedirs(p, exist_ok=True) + for fname in fnames: + open(os.path.join(p, fname), 'a').close() + ifs2cmor.find_grib_files(exp, os.path.join(tmp_path, '001')) + inifile = ifs2cmor.ifs_preceding_files_[os.path.join(tmp_path, '001', f'ICMGG{exp}+185012')] + assert inifile == os.path.join(tmp_path, '001', f'ICMGG{exp}+000000') + ifs2cmor.find_grib_files(exp, os.path.join(tmp_path, '002')) + inifile = ifs2cmor.ifs_preceding_files_[os.path.join(tmp_path, '002', f'ICMGG{exp}+185101')] + assert inifile == os.path.join(tmp_path, '001', f'ICMGG{exp}+185012') + finally: + for leg, fnames in zip(['001', '002'], [fnames_001, fnames_002]): + path1 = os.path.join(tmp_path, leg) + path2 = os.path.join(tmp_path, f'{leg}_backup') + for p in [path1, path2]: + shutil.rmtree(p) + + def test_monthly_time_axis(self): + ifs2cmor.temp_dir_ = self.temp_dir + ifs2cmor.ref_date_ = self.refdate + ifs2cmor.start_date_ = self.startdate + interval = dateutil.relativedelta.relativedelta(months=1) + ncroot, numtimes = write_postproc_timestamps("rsds_Amon.nc", self.startdate, self.refdate, interval) + ncvar = ncroot.createVariable("rsds", "f8", dimensions=("time",)) + ncvar[:] = numpy.full((numtimes,), -1.23) + filepath = ncroot.filepath() + ncroot.close() + cmor.load_table("CMIP6_Amon.json") + axisid, lower_bnds, upper_bnds = ifs2cmor.create_time_axis(freq="mon", path=filepath, name="time", + has_bounds=True) + assert lower_bnds == [self.startdate + n * interval for n in range(0, 12)] + assert upper_bnds == [self.startdate + n * interval for n in range(1, 13)] + os.remove(filepath) + + def test_daily_time_axis(self): + ifs2cmor.temp_dir_ = self.temp_dir + ifs2cmor.ref_date_ = self.refdate + ifs2cmor.start_date_ = self.startdate + interval = dateutil.relativedelta.relativedelta(days=1) + ncroot, numtimes = write_postproc_timestamps("rsds_day.nc", self.startdate, self.refdate, interval) + ncvar = ncroot.createVariable("rsds", "f8", dimensions=("time",)) + ncvar[:] = numpy.full((numtimes,), -1.23) + filepath = ncroot.filepath() + ncroot.close() + cmor.load_table("CMIP6_day.json") + axisid, lower_bnds, upper_bnds = ifs2cmor.create_time_axis(freq="day", path=filepath, name="time", + has_bounds=True) + assert lower_bnds == [self.startdate + n * interval for n in range(0, 365)] + assert upper_bnds == [self.startdate + n * interval for n in range(1, 366)] + os.remove(filepath) + + def test_6hr_time_axis(self): + ifs2cmor.temp_dir_ = self.temp_dir + ifs2cmor.ref_date_ = self.refdate + ifs2cmor.start_date_ = self.startdate + interval = dateutil.relativedelta.relativedelta(hours=6) + ncroot, numtimes = write_postproc_timestamps("bs550aer_6hr.nc", self.startdate, self.refdate, interval) + ncvar = ncroot.createVariable("bs550aer", "f8", dimensions=("time",)) + ncvar[:] = numpy.full((numtimes,), -1.23) + filepath = ncroot.filepath() + ncroot.close() + cmor.load_table("CMIP6_6hrLev.json") + axisid, lower_bnds, upper_bnds = ifs2cmor.create_time_axis(freq="6hr", path=filepath, name="time", + has_bounds=True) + assert lower_bnds == [self.startdate + n * interval for n in range(0, 4 * 365)] + assert upper_bnds == [self.startdate + n * interval for n in range(1, 4 * 365 + 1)] + os.remove(filepath) + + def test_3hr_time_axis(self): + ifs2cmor.temp_dir_ = self.temp_dir + ifs2cmor.ref_date_ = self.refdate + ifs2cmor.start_date_ = self.startdate + interval = dateutil.relativedelta.relativedelta(hours=3) + ncroot, numtimes = write_postproc_timestamps("rsds_3hr.nc", self.startdate, self.refdate, interval) + ncvar = ncroot.createVariable("rsds", "f8", dimensions=("time",)) + ncvar[:] = numpy.full((numtimes,), -1.23) + filepath = ncroot.filepath() + ncroot.close() + cmor.load_table("CMIP6_3hr.json") + axisid, lower_bnds, upper_bnds = ifs2cmor.create_time_axis(freq="3hr", path=filepath, name="time", + has_bounds=True) + assert lower_bnds == [self.startdate + n * interval for n in range(0, 8 * 365)] + assert upper_bnds == [self.startdate + n * interval for n in range(1, 8 * 365 + 1)] + os.remove(filepath) + + def test_6hrPt_time_axis(self): + ifs2cmor.temp_dir_ = self.temp_dir + ifs2cmor.ref_date_ = self.refdate + ifs2cmor.start_date_ = self.startdate + interval = dateutil.relativedelta.relativedelta(hours=6) + ncroot, numtimes = write_postproc_timestamps("ta_6hrPlevPt.nc", self.startdate, self.refdate, interval) + ncvar = ncroot.createVariable("ta", "f8", dimensions=("time",)) + ncvar[:] = numpy.full((numtimes,), 273.2) + filepath = ncroot.filepath() + ncroot.close() + cmor.load_table("CMIP6_6hrPlevPt.json") + axisid, lower_bnds, upper_bnds = ifs2cmor.create_time_axis(freq="6hrPt", path=filepath, name="time1", + has_bounds=False) + assert lower_bnds == [self.startdate + n * interval for n in range(0, 4 * 365)] + assert upper_bnds == lower_bnds + os.remove(filepath) diff --git a/ece2cmor/test/nemo2cmor_test.py b/ece2cmor/test/nemo2cmor_test.py new file mode 100644 index 0000000000000000000000000000000000000000..b12db9fb7eaa45bd63ba5bf42b9c1c3aa3f6f5e2 --- /dev/null +++ b/ece2cmor/test/nemo2cmor_test.py @@ -0,0 +1,193 @@ +import datetime +import json +import logging +import math +import os +import shutil +import tempfile +import unittest + +import cmor +import numpy + +import test_utils +from ece2cmor3 import nemo2cmor, cmor_source, cmor_target, cmor_task, ece2cmorlib + +log = logging.getLogger(__name__) +logging.basicConfig(level=logging.DEBUG) + +outpath = os.path.join(os.getcwd(), "cmor") + + +def circwave(t, j, i): + return 15 * math.cos((i * i + j * j) / 1000. + 0.1 * t) + + +def circwave3d(t, z, j, i): + return 15 * math.cos((i * i + j * j) / 1000. + 0.1 * t) * (z / 12) + + +def hypwave(t, j, i): + return 0.001 * math.sin((i * i - j * j) / 1000. + 0.1 * t) + + +def init_cmor(): + directory = os.path.join(os.path.dirname(cmor_target.__file__), "resources", "tables") + cmor.setup(directory) + conf_path = ece2cmorlib.conf_path_default + with open(conf_path, 'r') as f: + metadata = json.load(f) + metadata["outpath"] = outpath + with tempfile.NamedTemporaryFile("w", suffix=".json", delete=False) as tmp_file: + json.dump(metadata, tmp_file) + cmor.dataset_json(tmp_file.name) + cmor.set_cur_dataset_attribute("calendar", "proleptic_gregorian") + return directory + + +class nemo2cmor_tests(unittest.TestCase): + + def setUp(self): + self.data_dir = os.path.join(os.path.dirname(__file__), "test_data", "nemodata") + if os.path.exists(self.data_dir): + return + os.mkdir(self.data_dir) + dimx, dimy, dimz = 20, 10, 3 + opf = test_utils.nemo_output_factory() + opf.make_grid(dimx, dimy, "grid_U", dimz) + opf.set_timeframe(datetime.date(1990, 1, 1), datetime.date(1991, 1, 1), "1d") + uto = {"name": "uto", + "dims": 2, + "function": circwave, + "standard_name": "temperature_transport_x", + "long_name": "Product of x-ward sea water velocity and temperature", + "units": "m degC s-1"} + uso = {"name": "uso", + "dims": 2, + "function": hypwave, + "standard_name": "salinity_transport_x", + "long_name": "Product of x-ward sea water velocity and salinity", + "units": "kg m-2 s-1"} + opf.write_variables(self.data_dir, "expn", [uto, uso]) + + opf.make_grid(dimx, dimy, "grid_V", dimz) + opf.set_timeframe(datetime.date(1990, 1, 1), datetime.date(1991, 1, 1), "1d") + vto = {"name": "vto", + "dims": 2, + "function": circwave, + "standard_name": "temperature_transport_y", + "long_name": "Product of y-ward sea water velocity and temperature", + "units": "m degC s-1"} + vso = {"name": "vso", + "dims": 2, + "function": hypwave, + "standard_name": "salinity_transport_y", + "long_name": "Product of y-ward sea water velocity and salinity", + "units": "kg m-2 s-1"} + opf.write_variables(self.data_dir, "expn", [vto, vso]) + + opf.make_grid(dimx, dimy, "grid_T", dimz) + opf.set_timeframe(datetime.date(1990, 1, 1), datetime.date(1991, 1, 1), "1m") + tos = {"name": "tos", + "dims": 2, + "function": circwave, + "standard_name": "sea_surface_temperature", + "long_name": "Sea surface temperature", + "units": "degC"} + to = {"name": "to", + "dims": 3, + "function": circwave3d, + "standard_name": "sea_water_temperature", + "long_name": "Sea water temperature", + "units": "degC"} + sos = {"name": "sos", + "dims": 2, + "function": hypwave, + "standard_name": "sea_surface_salinity", + "long_name": "Sea surface salinity", + "units": "kg m-3"} + opf.write_variables(self.data_dir, "expn", [tos, to, sos]) + + opf.make_grid(dimx, dimy, "icemod") + opf.set_timeframe(datetime.date(1990, 1, 1), datetime.date(1991, 1, 1), "6h") + sit = {"name": "sit", "dims": 2, "function": circwave, "standard_name": "sea_ice_temperature", + "long_name": "Sea ice temperature", "units": "degC"} + opf.write_variables(self.data_dir, "expn", [sit]) + + def tearDown(self): + if os.path.exists(outpath): + try: + shutil.rmtree(outpath) + except Exception as e: + log.warning("Attempt to remove cmorized test data failed, reason: %s" % e.message) + if os.path.exists(self.data_dir): + try: + shutil.rmtree(self.data_dir) + except Exception as e: + log.warning("Attempt to remove generated test data failed, reason: %s" % e.message) + + def test_cmor_single_task(self): + tab_dir = init_cmor() + nemo2cmor.initialize(self.data_dir, "expn", os.path.join(tab_dir, "CMIP6"), datetime.datetime(1990, 3, 1), + testmode=True) + src = cmor_source.netcdf_source("tos", "nemo") + tgt = cmor_target.cmor_target("tos", "Omon") + setattr(tgt, "frequency", "mon") + setattr(tgt, "dimensions", "longitude latitude time") + setattr(tgt, "time_operator", ["mean"]) + tgt.space_dims = {"latitude", "longitude"} + tsk = cmor_task.cmor_task(src, tgt) + nemo2cmor.execute([tsk]) + nemo2cmor.finalize() + cmor.close() + + @staticmethod + def test_create_grid(): + dim = 1000 + lons = numpy.fromfunction(lambda i, j: (i * 360 + 0.5) / (0.5 * (dim + j) + 2), (dim, dim), dtype=numpy.float64) + lats = numpy.fromfunction(lambda i, j: (j * 180 + 0.5) / (0.5 * (dim + i) + 2) - 90, (dim, dim), + dtype=numpy.float64) + + grid = nemo2cmor.nemo_grid("sum", lons, lats) + + p1 = (grid.vertex_lons[0, 0, 0], grid.vertex_lats[0, 0, 0]) + p2 = (grid.vertex_lons[0, 0, 1], grid.vertex_lats[0, 0, 1]) + p3 = (grid.vertex_lons[0, 0, 2], grid.vertex_lats[0, 0, 2]) + p4 = (grid.vertex_lons[0, 0, 3], grid.vertex_lats[0, 0, 3]) + + assert p2[0] == p3[0] + assert p1[1] == p2[1] + assert p3[1] == p4[1] + + def test_init_nemo2cmor(self): + tab_dir = init_cmor() + nemo2cmor.initialize(self.data_dir, "expn", os.path.join(tab_dir, "CMIP6"), datetime.datetime(1990, 3, 1)) + nemo2cmor.finalize() + cmor.close() + + def test_cmor_single_task3d(self): + tab_dir = init_cmor() + nemo2cmor.initialize(self.data_dir, "expn", os.path.join(tab_dir, "CMIP6"), datetime.datetime(1990, 3, 1), + testmode=True) + src = cmor_source.netcdf_source("to", "nemo") + tgt = cmor_target.cmor_target("thetao", "Omon") + setattr(tgt, "frequency", "mon") + setattr(tgt, "dimensions", "longitude latitude olevel time") + setattr(tgt, "time_operator", ["mean"]) + tgt.space_dims = {"latitude", "longitude"} + tsk = cmor_task.cmor_task(src, tgt) + nemo2cmor.execute([tsk]) + nemo2cmor.finalize() + cmor.close() + + @staticmethod + def test_grid_types(): + assert nemo2cmor.get_grid_type("lim_grid_T_2D") == 't' + assert nemo2cmor.get_grid_type("lim_grid_U_3D") == 'u' + assert nemo2cmor.get_grid_type("lim_grid_V_2D") == 'v' + assert nemo2cmor.get_grid_type("lim_grid_W_3D") == 't' + assert nemo2cmor.get_grid_type("grid_U") == 'u' + assert nemo2cmor.get_grid_type("opa_grid_ptr_T_3basin_2D") is None + assert nemo2cmor.get_grid_type("lim_grid_T_3D_ncatice") == 't' + assert nemo2cmor.get_grid_type("opa_vert_sum") == 't' + assert nemo2cmor.get_grid_type("opa_zoom_700_sum") == 't' diff --git a/ece2cmor/test/postproc_test.py b/ece2cmor/test/postproc_test.py new file mode 100644 index 0000000000000000000000000000000000000000..938c1b1518f2d5ea955d89c005417ebf94802ab3 --- /dev/null +++ b/ece2cmor/test/postproc_test.py @@ -0,0 +1,141 @@ +import logging +import os +import unittest + +import test_utils +from ece2cmor3 import cmor_source, cmor_target, cmor_task, postproc + +logging.basicConfig(level=logging.DEBUG) + + +class postproc_tests(unittest.TestCase): + + @staticmethod + def test_postproc_gridmean(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.create(79, 128) + target = [t for t in targets if t.variable == "clwvi" and t.table == "CFday"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-setgridtype,regular -daymean -selcode,79" + + @staticmethod + def test_postproc_specmean(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.create(131, 128) + target = [t for t in targets if t.variable == "ua" and t.table == "CFday"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-sp2gpl -daymean -selzaxis,hybrid -selcode,131" + + @staticmethod + def test_postproc_daymax(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.create(165, 128) + target = [t for t in targets if t.variable == "sfcWindmax" and t.table == "day"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-daymax -setgridtype,regular -selcode,165" + + @staticmethod + def test_postproc_tasmax(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.create(201, 128) + target = [t for t in targets if t.variable == "tasmax" and t.table == "Amon"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-monmean -daymax -setgridtype,regular -selcode,201" + + @staticmethod + def test_postproc_windspeed(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.read("var88", "sqrt(sqr(var165)+sqr(var166))") + target = [t for t in targets if t.variable == "sfcWind" and t.table == "6hrPlevPt"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-setgridtype,regular -expr,'var88=sqrt(sqr(var165)+sqr(var166))' " \ + "-selhour,0,6,12,18 -selcode,165,166" + + @staticmethod + def test_postproc_post_expr(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.read("var23", "var126020/var126022", expr_order=1) + target = [t for t in targets if t.variable == "cdnc" and t.table == "AERmon"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-setgridtype,regular -expr,'var23=var20/var22' -monmean -selzaxis,hybrid " \ + "-selcode,20,22" + + @staticmethod + def test_postproc_post_expr_masked(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.read("var23", "var126020/var126022", expr_order=1, mask_expr="var172>=0.5") + target = [t for t in targets if t.variable == "cdnc" and t.table == "AERmon"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-setgridtype,regular -expr,'var23=(var20/var22)/(var172>=0.5)' -monmean " \ + "-selzaxis,hybrid -selcode,20,22,172" + + @staticmethod + def test_postproc_maxwindspeed(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.read("var88", "sqrt(sqr(var165)+sqr(var166))") + target = [t for t in targets if t.variable == "sfcWindmax" and t.table == "day"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-daymax -setgridtype,regular -expr,'var88=sqrt(sqr(var165)+sqr(var166))' " \ + "-selcode,165,166" + + @staticmethod + def test_postproc_wap500(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.create(135, 128) + target = [t for t in targets if t.variable == "wap500" and t.table == "CFday"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-sp2gpl -daymean -sellevel,50000. -selzaxis,pressure -selcode,135" + + @staticmethod + def test_postproc_mrsol(): + source = cmor_source.ifs_source.read("118.129", "merge(70*var39,210*var40,720*var41,1890*var42)") + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + target = [t for t in targets if t.variable == "mrsol" and t.table == "Eday"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-setgridtype,regular -setcode,118 -daymean -expr," \ + "'var1=70*var39;var2=210*var40;var3=720*var41;var4=1890*var42' -selcode," \ + "39,40,41,42" + + @staticmethod + def test_postproc_mrsol_masked(): + source = cmor_source.ifs_source.read("118.129", "merge(70*var39,210*var40,720*var41,1890*var42)", + mask_expr="var172>=0.5") + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + target = [t for t in targets if t.variable == "mrsol" and t.table == "Eday"][0] + task = cmor_task.cmor_task(source, target) + command = postproc.create_command(task) + assert command.create_command() == "-setgridtype,regular -setcode,118 -daymean -expr,'var1=(70*var39)/(" \ + "var172>=0.5);var2=(210*var40)/(var172>=0.5);var3=(720*var41)/(" \ + "var172>=0.5);var4=(1890*var42)/(var172>=0.5)' -selcode,39,40,41,42,172" + + @staticmethod + def test_postproc_tasmax_missval(): + abspath = test_utils.get_table_path() + targets = cmor_target.create_targets(abspath, "CMIP6") + source = cmor_source.ifs_source.create(201, 128) + target = [t for t in targets if t.variable == "tasmax" and t.table == "Amon"][0] + task = cmor_task.cmor_task(source, target) + setattr(task, "missval", "0") + command = postproc.create_command(task) + assert command.create_command() == "-setmisstoc,0 -monmean -daymax -setgridtype,regular -selcode,201" diff --git a/ece2cmor/test/taskloader_test.py b/ece2cmor/test/taskloader_test.py new file mode 100644 index 0000000000000000000000000000000000000000..944a1829af1bc3159a65c853e383659f03aeea80 --- /dev/null +++ b/ece2cmor/test/taskloader_test.py @@ -0,0 +1,301 @@ +import os + +import json +import logging +import unittest + +from ece2cmor3 import taskloader, ece2cmorlib, cmor_source, cmor_task, cmor_target + +logging.basicConfig(level=logging.DEBUG) + +drqpath = os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_data", "testdrq.json") + + +class taskloader_test(unittest.TestCase): + + @staticmethod + def setup_drq(d): + with open(drqpath, 'w') as drqfile: + json.dump(d, drqfile) + + @staticmethod + def cleanup_drq(): + os.remove(drqpath) + + @staticmethod + def test_load_clt(): + ece2cmorlib.initialize_without_cmor() + try: + clt3hr = {"3hr": ["clt"]} + taskloader.load_tasks_from_drq(clt3hr) + assert len(ece2cmorlib.tasks) == 1 + src = ece2cmorlib.tasks[0].source + assert src.get_grib_code().var_id == 164 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_clt_json(): + ece2cmorlib.initialize_without_cmor() + try: + clt3hr = {"3hr": ["clt"]} + taskloader_test.setup_drq(clt3hr) + taskloader.load_tasks_from_drq(drqpath) + assert len(ece2cmorlib.tasks) == 1 + src = ece2cmorlib.tasks[0].source + assert src.get_grib_code().var_id == 164 + finally: + taskloader_test.cleanup_drq() + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_avars(): + ece2cmorlib.initialize_without_cmor() + try: + avars = {"ifs": {"3hr": ["clt", "uas", "vas"], "Amon": ["vas", "tas"]}} + taskloader.load_tasks(avars) + assert len(ece2cmorlib.tasks) == 5 + assert len([t.source.get_grib_code().var_id for t in ece2cmorlib.tasks if t.target.variable == "vas"]) == 2 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_avars_json(): + ece2cmorlib.initialize_without_cmor() + try: + avars = {"ifs": {"3hr": ["clt", "uas", "vas"], "Amon": ["vas", "tas"]}} + taskloader_test.setup_drq(avars) + taskloader.load_tasks(drqpath) + assert len(ece2cmorlib.tasks) == 5 + assert len([t.source.get_grib_code().var_id for t in ece2cmorlib.tasks if t.target.variable == "vas"]) == 2 + finally: + taskloader_test.cleanup_drq() + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_avars_drq(): + ece2cmorlib.initialize_without_cmor() + try: + taskloader.load_tasks_from_drq({"3hr": ["clt", "uas", "vas"], "Amon": ["vas", "tas"]}) + assert len(ece2cmorlib.tasks) == 5 + assert len([t.source.get_grib_code().var_id for t in ece2cmorlib.tasks if t.target.variable == "vas"]) == 2 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_avars_drq_json(): + ece2cmorlib.initialize_without_cmor() + try: + avars = {"3hr": ["clt", "uas", "vas"], "Amon": ["vas", "tas"]} + taskloader_test.setup_drq(avars) + taskloader.load_tasks_from_drq(drqpath) + assert len(ece2cmorlib.tasks) == 5 + assert len([t.source.get_grib_code().var_id for t in ece2cmorlib.tasks if t.target.variable == "vas"]) == 2 + finally: + taskloader_test.cleanup_drq() + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_skip_alevel(): + def ifs_model_level_variable(target): + zaxis, levs = cmor_target.get_z_axis(target) + return zaxis not in ["alevel", "alevhalf"] + + ece2cmorlib.initialize_without_cmor() + try: + taskloader.load_tasks_from_drq({"3hr": ["clt", "uas", "vas"], "CFmon": ["clwc", "hur", "ps"]}, + target_filters={"model level": ifs_model_level_variable}) + assert len(ece2cmorlib.tasks) == 4 + assert len([t for t in ece2cmorlib.tasks if t.target.table == "CFmon"]) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_ovars(): + ece2cmorlib.initialize_without_cmor() + try: + taskloader.load_tasks_from_drq({"Omon": ["tossq", "so", "thetao"], "Oday": ["sos"]}) + assert len(ece2cmorlib.tasks) == 4 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_ignored_variables(): + ece2cmorlib.initialize_without_cmor() + try: + matches, omissions = taskloader.load_drq({"Emon": ["rsdsdiff"], "Amon": ["clivi"]}) + ignored, identified_missing, missing, dismissed = taskloader.split_targets(omissions) + assert len(matches["nemo"]) == 0 + assert len(matches["ifs"]) == 1 + assert len(ignored) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_oavars(): + ece2cmorlib.initialize_without_cmor() + try: + taskloader.load_tasks_from_drq({"3hr": ["clt", "uas"], "Amon": ["vas", "tas"], "Omon": ["tossq"]}) + assert len(ece2cmorlib.tasks) == 5 + assert len([t for t in ece2cmorlib.tasks if isinstance(t.source, cmor_source.ifs_source)]) == 4 + assert len([t for t in ece2cmorlib.tasks if isinstance(t.source, cmor_source.netcdf_source)]) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_oavars_ocean(): + ece2cmorlib.initialize_without_cmor() + try: + taskloader.load_tasks_from_drq({"3hr": ["clt", "uas"], "Amon": ["vas", "tas"], "Omon": ["tossq"]}, + active_components=["nemo"]) + assert len(ece2cmorlib.tasks) == 1 + assert len([t for t in ece2cmorlib.tasks if isinstance(t.source, cmor_source.netcdf_source)]) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_unit_conv(): + ece2cmorlib.initialize_without_cmor() + try: + taskloader.load_tasks_from_drq({"Amon": ["prc", "rsus", "zg"]}) + assert len(ece2cmorlib.tasks) == 3 + prctask = [t for t in ece2cmorlib.tasks if t.target.variable == "prc"][0] + rsustask = [t for t in ece2cmorlib.tasks if t.target.variable == "rsus"][0] + zgtask = [t for t in ece2cmorlib.tasks if t.target.variable == "zg"][0] + assert getattr(prctask, cmor_task.conversion_key) == "vol2flux" + assert getattr(rsustask, cmor_task.conversion_key) == "cum2inst" + assert getattr(zgtask, cmor_task.conversion_key) == "pot2alt" + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_expressions(): + ece2cmorlib.initialize_without_cmor() + try: + taskloader.load_tasks_from_drq({"day": ["sfcWindmax"]}) + assert getattr(ece2cmorlib.tasks[0].source, "expr") == "var214=sqrt(sqr(var165)+sqr(var166))" + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_tos_3hr(): + ece2cmorlib.initialize() + try: + taskloader.load_tasks_from_drq({"3hr": ["tos"]}, active_components=["ifs"]) + assert not any(ece2cmorlib.tasks) + taskloader.load_tasks_from_drq({"3hr": ["tos"]}, active_components=["nemo"]) + assert len(ece2cmorlib.tasks) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_ps_AERmon_prefs(): + ece2cmorlib.initialize_without_cmor() + try: + matches, omitted = taskloader.load_drq({"AERmon": ["ps"]}, check_prefs=False) + assert len(matches["ifs"]) == 1 + assert len(matches["tm5"]) == 1 + matches, omitted = taskloader.load_drq({"AERmon": ["ps"]}, check_prefs=True) + assert len(matches["ifs"]) == 0 + assert len(matches["tm5"]) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_dismiss_duplicates(): + ece2cmorlib.initialize_without_cmor() + try: + matches, omitted = taskloader.load_drq({"AERmon": ["ps"]}, check_prefs=False) + assert len(matches["ifs"]) == 1 + assert len(matches["tm5"]) == 1 + tasks = taskloader.load_tasks(matches, active_components=["ifs"], target_filters=None, + check_duplicates=True) + assert not any(tasks) + tasks = taskloader.load_tasks(matches, active_components=["ifs"], target_filters=None, + check_duplicates=False) + assert len(tasks) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_cfc12_Omon_prefs(): + ece2cmorlib.initialize_without_cmor() + try: + matches, omitted = taskloader.load_drq({"Omon": ["cfc12"]}, config="EC-EARTH-AOGCM") + assert not any(matches["nemo"]) + matches, omitted = taskloader.load_drq({"Omon": ["cfc12"]}, config="EC-EARTH-CC") + assert len(matches["nemo"]) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_use_level_preferences(): + ece2cmorlib.initialize_without_cmor() + try: + matches, omitted = taskloader.load_drq({"6hrPlevPt": ["ua", "ua7h"]}, check_prefs=False) + assert len(matches["ifs"]) == 2 + matches, omitted = taskloader.load_drq({"6hrPlevPt": ["ua", "ua7h"]}, check_prefs=True) + assert len(matches["ifs"]) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_use_zg_preferences(): + ece2cmorlib.initialize_without_cmor() + try: + matches, omitted = taskloader.load_drq({"6hrPlevPt": ["zg7h", "zg27"]}, check_prefs=False) + assert len(matches["ifs"]) == 2 + matches, omitted = taskloader.load_drq({"6hrPlevPt": ["zg7h", "zg27"]}, check_prefs=True) + assert len(matches["ifs"]) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_tsl_table_override(): + ece2cmorlib.initialize_without_cmor() + try: + tasks = taskloader.load_tasks_from_drq({"6hrPlevPt": ["tsl"], "Lmon": ["tsl"]}) + assert len(tasks) == 2 + for t in tasks: + if t.target.table == "6hrPlevPt": + assert not hasattr(t.source, "expr") + assert t.source.get_grib_code() == cmor_source.grib_code(139) + else: + assert "merge" in getattr(t.source, "expr") + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_oclim_variable(): + ece2cmorlib.initialize_without_cmor() + try: + matches, omitted = taskloader.load_drq({"Oclim": ["difvho"]}, check_prefs=False) + assert len(matches["nemo"]) == 1 + assert not any(omitted) + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_cdnc_variable(): + ece2cmorlib.initialize_without_cmor() + try: + tasks = taskloader.load_tasks({"ifs": {"AERmon": ["cdnc"]}}) + assert len(tasks) == 1 + src = tasks[0].source + assert isinstance(src, cmor_source.ifs_source) + assert getattr(src, "expr_order", 0) == 1 + finally: + ece2cmorlib.finalize_without_cmor() + + @staticmethod + def test_load_script_variable(): + ece2cmorlib.initialize_without_cmor() + try: + tasks = taskloader.load_tasks({"ifs": {"EmonZ": ["epfy"]}}) + assert len(tasks) == 1 + src = tasks[0].source + assert isinstance(src, cmor_source.ifs_source) + script = getattr(tasks[0], "post-proc", None) + assert script in list(ece2cmorlib.scripts.keys()) and ece2cmorlib.scripts[script]["component"] == "ifs" + finally: + ece2cmorlib.finalize_without_cmor() diff --git a/ece2cmor/test/test_data/ifs/001/ICMGGECE3+199001.csv b/ece2cmor/test/test_data/ifs/001/ICMGGECE3+199001.csv new file mode 100644 index 0000000000000000000000000000000000000000..abb70ce25e13c326139c8ca56160e2048f928ddc --- /dev/null +++ b/ece2cmor/test/test_data/ifs/001/ICMGGECE3+199001.csv @@ -0,0 +1,31000 @@ +19900101,300,8,1,0 +19900101,300,31,1,0 +19900101,300,32,1,0 +19900101,300,33,1,0 +19900101,300,34,1,0 +19900101,300,35,111,7 +19900101,300,36,111,28 +19900101,300,37,111,100 +19900101,300,38,111,289 +19900101,300,39,111,7 +19900101,300,40,111,28 +19900101,300,41,111,100 +19900101,300,42,111,289 +19900101,300,44,1,0 +19900101,300,45,1,0 +19900101,300,49,1,0 +19900101,300,50,1,0 +19900101,300,57,1,0 +19900101,300,58,1,0 +19900101,300,123,1,0 +19900101,300,139,111,7 +19900101,300,141,1,0 +19900101,300,142,1,0 +19900101,300,143,1,0 +19900101,300,144,1,0 +19900101,300,145,1,0 +19900101,300,146,1,0 +19900101,300,147,1,0 +19900101,300,148,1,0 +19900101,300,169,1,0 +19900101,300,170,111,28 +19900101,300,172,1,0 +19900101,300,175,1,0 +19900101,300,176,1,0 +19900101,300,177,1,0 +19900101,300,178,1,0 +19900101,300,179,1,0 +19900101,300,180,1,0 +19900101,300,181,1,0 +19900101,300,182,1,0 +19900101,300,183,111,100 +19900101,300,189,1,0 +19900101,300,195,1,0 +19900101,300,196,1,0 +19900101,300,197,1,0 +19900101,300,198,1,0 +19900101,300,201,1,0 +19900101,300,202,1,0 +19900101,300,205,1,0 +19900101,300,208,1,0 +19900101,300,209,1,0 +19900101,300,210,1,0 +19900101,300,211,1,0 +19900101,300,212,1,0 +19900101,300,213,1,0 +19900101,300,228,1,0 +19900101,300,235,1,0 +19900101,300,236,111,289 +19900101,300,238,1,0 +19900101,300,59,1,0 +19900101,300,78,1,0 +19900101,300,79,1,0 +19900101,300,136,1,0 +19900101,300,137,1,0 +19900101,300,151,1,0 +19900101,300,159,1,0 +19900101,300,164,1,0 +19900101,300,165,1,0 +19900101,300,166,1,0 +19900101,300,167,1,0 +19900101,300,168,1,0 +19900101,300,186,1,0 +19900101,300,187,1,0 +19900101,300,188,1,0 +19900101,300,229,1,0 +19900101,300,230,1,0 +19900101,300,231,1,0 +19900101,300,232,1,0 +19900101,300,243,1,0 +19900101,300,244,1,0 +19900101,300,245,1,0 +19900101,300,228246,1,0 +19900101,300,228247,1,0 +19900101,600,133,100,1000 +19900101,600,133,100,975 +19900101,600,133,100,950 +19900101,600,133,100,925 +19900101,600,133,100,900 +19900101,600,133,100,875 +19900101,600,133,100,850 +19900101,600,133,100,825 +19900101,600,133,100,800 +19900101,600,133,100,775 +19900101,600,133,100,750 +19900101,600,133,100,740 +19900101,600,133,100,700 +19900101,600,133,100,650 +19900101,600,133,100,620 +19900101,600,133,100,600 +19900101,600,133,100,550 +19900101,600,133,100,500 +19900101,600,133,100,450 +19900101,600,133,100,400 +19900101,600,133,100,375 +19900101,600,133,100,350 +19900101,600,133,100,300 +19900101,600,133,100,250 +19900101,600,133,100,245 +19900101,600,133,100,225 +19900101,600,133,100,200 +19900101,600,133,100,175 +19900101,600,133,100,150 +19900101,600,133,100,125 +19900101,600,133,100,100 +19900101,600,133,100,70 +19900101,600,133,100,50 +19900101,600,133,100,30 +19900101,600,133,100,20 +19900101,600,133,100,10 +19900101,600,133,100,9 +19900101,600,133,100,7 +19900101,600,133,100,5 +19900101,600,133,100,3 +19900101,600,133,100,2 +19900101,600,133,100,1 +19900101,600,133,210,40 +19900101,600,3,117,2000 +19900101,600,133,109,1 +19900101,600,133,109,2 +19900101,600,133,109,3 +19900101,600,133,109,4 +19900101,600,133,109,5 +19900101,600,133,109,6 +19900101,600,133,109,7 +19900101,600,133,109,8 +19900101,600,133,109,9 +19900101,600,133,109,10 +19900101,600,246,109,1 +19900101,600,246,109,2 +19900101,600,246,109,3 +19900101,600,246,109,4 +19900101,600,246,109,5 +19900101,600,246,109,6 +19900101,600,246,109,7 +19900101,600,246,109,8 +19900101,600,246,109,9 +19900101,600,246,109,10 +19900101,600,247,109,1 +19900101,600,247,109,2 +19900101,600,247,109,3 +19900101,600,247,109,4 +19900101,600,247,109,5 +19900101,600,247,109,6 +19900101,600,247,109,7 +19900101,600,247,109,8 +19900101,600,247,109,9 +19900101,600,247,109,10 +19900101,600,248,109,1 +19900101,600,248,109,2 +19900101,600,248,109,3 +19900101,600,248,109,4 +19900101,600,248,109,5 +19900101,600,248,109,6 +19900101,600,248,109,7 +19900101,600,248,109,8 +19900101,600,248,109,9 +19900101,600,248,109,10 +19900101,600,8,1,0 +19900101,600,31,1,0 +19900101,600,32,1,0 +19900101,600,33,1,0 +19900101,600,34,1,0 +19900101,600,35,111,7 +19900101,600,36,111,28 +19900101,600,37,111,100 +19900101,600,38,111,289 +19900101,600,39,111,7 +19900101,600,40,111,28 +19900101,600,41,111,100 +19900101,600,42,111,289 +19900101,600,44,1,0 +19900101,600,45,1,0 +19900101,600,49,1,0 +19900101,600,50,1,0 +19900101,600,57,1,0 +19900101,600,58,1,0 +19900101,600,123,1,0 +19900101,600,139,111,7 +19900101,600,141,1,0 +19900101,600,142,1,0 +19900101,600,143,1,0 +19900101,600,144,1,0 +19900101,600,145,1,0 +19900101,600,146,1,0 +19900101,600,147,1,0 +19900101,600,148,1,0 +19900101,600,169,1,0 +19900101,600,170,111,28 +19900101,600,172,1,0 +19900101,600,175,1,0 +19900101,600,176,1,0 +19900101,600,177,1,0 +19900101,600,178,1,0 +19900101,600,179,1,0 +19900101,600,180,1,0 +19900101,600,181,1,0 +19900101,600,182,1,0 +19900101,600,183,111,100 +19900101,600,189,1,0 +19900101,600,195,1,0 +19900101,600,196,1,0 +19900101,600,197,1,0 +19900101,600,198,1,0 +19900101,600,201,1,0 +19900101,600,202,1,0 +19900101,600,205,1,0 +19900101,600,208,1,0 +19900101,600,209,1,0 +19900101,600,210,1,0 +19900101,600,211,1,0 +19900101,600,212,1,0 +19900101,600,213,1,0 +19900101,600,228,1,0 +19900101,600,235,1,0 +19900101,600,236,111,289 +19900101,600,238,1,0 +19900101,600,59,1,0 +19900101,600,78,1,0 +19900101,600,79,1,0 +19900101,600,136,1,0 +19900101,600,137,1,0 +19900101,600,151,1,0 +19900101,600,159,1,0 +19900101,600,164,1,0 +19900101,600,165,1,0 +19900101,600,166,1,0 +19900101,600,167,1,0 +19900101,600,168,1,0 +19900101,600,186,1,0 +19900101,600,187,1,0 +19900101,600,188,1,0 +19900101,600,229,1,0 +19900101,600,230,1,0 +19900101,600,231,1,0 +19900101,600,232,1,0 +19900101,600,243,1,0 +19900101,600,244,1,0 +19900101,600,245,1,0 +19900101,600,228246,1,0 +19900101,600,228247,1,0 +19900101,900,8,1,0 +19900101,900,31,1,0 +19900101,900,32,1,0 +19900101,900,33,1,0 +19900101,900,34,1,0 +19900101,900,35,111,7 +19900101,900,36,111,28 +19900101,900,37,111,100 +19900101,900,38,111,289 +19900101,900,39,111,7 +19900101,900,40,111,28 +19900101,900,41,111,100 +19900101,900,42,111,289 +19900101,900,44,1,0 +19900101,900,45,1,0 +19900101,900,49,1,0 +19900101,900,50,1,0 +19900101,900,57,1,0 +19900101,900,58,1,0 +19900101,900,123,1,0 +19900101,900,139,111,7 +19900101,900,141,1,0 +19900101,900,142,1,0 +19900101,900,143,1,0 +19900101,900,144,1,0 +19900101,900,145,1,0 +19900101,900,146,1,0 +19900101,900,147,1,0 +19900101,900,148,1,0 +19900101,900,169,1,0 +19900101,900,170,111,28 +19900101,900,172,1,0 +19900101,900,175,1,0 +19900101,900,176,1,0 +19900101,900,177,1,0 +19900101,900,178,1,0 +19900101,900,179,1,0 +19900101,900,180,1,0 +19900101,900,181,1,0 +19900101,900,182,1,0 +19900101,900,183,111,100 +19900101,900,189,1,0 +19900101,900,195,1,0 +19900101,900,196,1,0 +19900101,900,197,1,0 +19900101,900,198,1,0 +19900101,900,201,1,0 +19900101,900,202,1,0 +19900101,900,205,1,0 +19900101,900,208,1,0 +19900101,900,209,1,0 +19900101,900,210,1,0 +19900101,900,211,1,0 +19900101,900,212,1,0 +19900101,900,213,1,0 +19900101,900,228,1,0 +19900101,900,235,1,0 +19900101,900,236,111,289 +19900101,900,238,1,0 +19900101,900,59,1,0 +19900101,900,78,1,0 +19900101,900,79,1,0 +19900101,900,136,1,0 +19900101,900,137,1,0 +19900101,900,151,1,0 +19900101,900,159,1,0 +19900101,900,164,1,0 +19900101,900,165,1,0 +19900101,900,166,1,0 +19900101,900,167,1,0 +19900101,900,168,1,0 +19900101,900,186,1,0 +19900101,900,187,1,0 +19900101,900,188,1,0 +19900101,900,229,1,0 +19900101,900,230,1,0 +19900101,900,231,1,0 +19900101,900,232,1,0 +19900101,900,243,1,0 +19900101,900,244,1,0 +19900101,900,245,1,0 +19900101,900,228246,1,0 +19900101,900,228247,1,0 +19900101,1200,133,100,1000 +19900101,1200,133,100,975 +19900101,1200,133,100,950 +19900101,1200,133,100,925 +19900101,1200,133,100,900 +19900101,1200,133,100,875 +19900101,1200,133,100,850 +19900101,1200,133,100,825 +19900101,1200,133,100,800 +19900101,1200,133,100,775 +19900101,1200,133,100,750 +19900101,1200,133,100,740 +19900101,1200,133,100,700 +19900101,1200,133,100,650 +19900101,1200,133,100,620 +19900101,1200,133,100,600 +19900101,1200,133,100,550 +19900101,1200,133,100,500 +19900101,1200,133,100,450 +19900101,1200,133,100,400 +19900101,1200,133,100,375 +19900101,1200,133,100,350 +19900101,1200,133,100,300 +19900101,1200,133,100,250 +19900101,1200,133,100,245 +19900101,1200,133,100,225 +19900101,1200,133,100,200 +19900101,1200,133,100,175 +19900101,1200,133,100,150 +19900101,1200,133,100,125 +19900101,1200,133,100,100 +19900101,1200,133,100,70 +19900101,1200,133,100,50 +19900101,1200,133,100,30 +19900101,1200,133,100,20 +19900101,1200,133,100,10 +19900101,1200,133,100,9 +19900101,1200,133,100,7 +19900101,1200,133,100,5 +19900101,1200,133,100,3 +19900101,1200,133,100,2 +19900101,1200,133,100,1 +19900101,1200,133,210,40 +19900101,1200,3,117,2000 +19900101,1200,133,109,1 +19900101,1200,133,109,2 +19900101,1200,133,109,3 +19900101,1200,133,109,4 +19900101,1200,133,109,5 +19900101,1200,133,109,6 +19900101,1200,133,109,7 +19900101,1200,133,109,8 +19900101,1200,133,109,9 +19900101,1200,133,109,10 +19900101,1200,246,109,1 +19900101,1200,246,109,2 +19900101,1200,246,109,3 +19900101,1200,246,109,4 +19900101,1200,246,109,5 +19900101,1200,246,109,6 +19900101,1200,246,109,7 +19900101,1200,246,109,8 +19900101,1200,246,109,9 +19900101,1200,246,109,10 +19900101,1200,247,109,1 +19900101,1200,247,109,2 +19900101,1200,247,109,3 +19900101,1200,247,109,4 +19900101,1200,247,109,5 +19900101,1200,247,109,6 +19900101,1200,247,109,7 +19900101,1200,247,109,8 +19900101,1200,247,109,9 +19900101,1200,247,109,10 +19900101,1200,248,109,1 +19900101,1200,248,109,2 +19900101,1200,248,109,3 +19900101,1200,248,109,4 +19900101,1200,248,109,5 +19900101,1200,248,109,6 +19900101,1200,248,109,7 +19900101,1200,248,109,8 +19900101,1200,248,109,9 +19900101,1200,248,109,10 +19900101,1200,8,1,0 +19900101,1200,31,1,0 +19900101,1200,32,1,0 +19900101,1200,33,1,0 +19900101,1200,34,1,0 +19900101,1200,35,111,7 +19900101,1200,36,111,28 +19900101,1200,37,111,100 +19900101,1200,38,111,289 +19900101,1200,39,111,7 +19900101,1200,40,111,28 +19900101,1200,41,111,100 +19900101,1200,42,111,289 +19900101,1200,44,1,0 +19900101,1200,45,1,0 +19900101,1200,49,1,0 +19900101,1200,50,1,0 +19900101,1200,57,1,0 +19900101,1200,58,1,0 +19900101,1200,123,1,0 +19900101,1200,139,111,7 +19900101,1200,141,1,0 +19900101,1200,142,1,0 +19900101,1200,143,1,0 +19900101,1200,144,1,0 +19900101,1200,145,1,0 +19900101,1200,146,1,0 +19900101,1200,147,1,0 +19900101,1200,148,1,0 +19900101,1200,169,1,0 +19900101,1200,170,111,28 +19900101,1200,172,1,0 +19900101,1200,175,1,0 +19900101,1200,176,1,0 +19900101,1200,177,1,0 +19900101,1200,178,1,0 +19900101,1200,179,1,0 +19900101,1200,180,1,0 +19900101,1200,181,1,0 +19900101,1200,182,1,0 +19900101,1200,183,111,100 +19900101,1200,189,1,0 +19900101,1200,195,1,0 +19900101,1200,196,1,0 +19900101,1200,197,1,0 +19900101,1200,198,1,0 +19900101,1200,201,1,0 +19900101,1200,202,1,0 +19900101,1200,205,1,0 +19900101,1200,208,1,0 +19900101,1200,209,1,0 +19900101,1200,210,1,0 +19900101,1200,211,1,0 +19900101,1200,212,1,0 +19900101,1200,213,1,0 +19900101,1200,228,1,0 +19900101,1200,235,1,0 +19900101,1200,236,111,289 +19900101,1200,238,1,0 +19900101,1200,59,1,0 +19900101,1200,78,1,0 +19900101,1200,79,1,0 +19900101,1200,136,1,0 +19900101,1200,137,1,0 +19900101,1200,151,1,0 +19900101,1200,159,1,0 +19900101,1200,164,1,0 +19900101,1200,165,1,0 +19900101,1200,166,1,0 +19900101,1200,167,1,0 +19900101,1200,168,1,0 +19900101,1200,186,1,0 +19900101,1200,187,1,0 +19900101,1200,188,1,0 +19900101,1200,229,1,0 +19900101,1200,230,1,0 +19900101,1200,231,1,0 +19900101,1200,232,1,0 +19900101,1200,243,1,0 +19900101,1200,244,1,0 +19900101,1200,245,1,0 +19900101,1200,228246,1,0 +19900101,1200,228247,1,0 +19900101,1500,8,1,0 +19900101,1500,31,1,0 +19900101,1500,32,1,0 +19900101,1500,33,1,0 +19900101,1500,34,1,0 +19900101,1500,35,111,7 +19900101,1500,36,111,28 +19900101,1500,37,111,100 +19900101,1500,38,111,289 +19900101,1500,39,111,7 +19900101,1500,40,111,28 +19900101,1500,41,111,100 +19900101,1500,42,111,289 +19900101,1500,44,1,0 +19900101,1500,45,1,0 +19900101,1500,49,1,0 +19900101,1500,50,1,0 +19900101,1500,57,1,0 +19900101,1500,58,1,0 +19900101,1500,123,1,0 +19900101,1500,139,111,7 +19900101,1500,141,1,0 +19900101,1500,142,1,0 +19900101,1500,143,1,0 +19900101,1500,144,1,0 +19900101,1500,145,1,0 +19900101,1500,146,1,0 +19900101,1500,147,1,0 +19900101,1500,148,1,0 +19900101,1500,169,1,0 +19900101,1500,170,111,28 +19900101,1500,172,1,0 +19900101,1500,175,1,0 +19900101,1500,176,1,0 +19900101,1500,177,1,0 +19900101,1500,178,1,0 +19900101,1500,179,1,0 +19900101,1500,180,1,0 +19900101,1500,181,1,0 +19900101,1500,182,1,0 +19900101,1500,183,111,100 +19900101,1500,189,1,0 +19900101,1500,195,1,0 +19900101,1500,196,1,0 +19900101,1500,197,1,0 +19900101,1500,198,1,0 +19900101,1500,201,1,0 +19900101,1500,202,1,0 +19900101,1500,205,1,0 +19900101,1500,208,1,0 +19900101,1500,209,1,0 +19900101,1500,210,1,0 +19900101,1500,211,1,0 +19900101,1500,212,1,0 +19900101,1500,213,1,0 +19900101,1500,228,1,0 +19900101,1500,235,1,0 +19900101,1500,236,111,289 +19900101,1500,238,1,0 +19900101,1500,59,1,0 +19900101,1500,78,1,0 +19900101,1500,79,1,0 +19900101,1500,136,1,0 +19900101,1500,137,1,0 +19900101,1500,151,1,0 +19900101,1500,159,1,0 +19900101,1500,164,1,0 +19900101,1500,165,1,0 +19900101,1500,166,1,0 +19900101,1500,167,1,0 +19900101,1500,168,1,0 +19900101,1500,186,1,0 +19900101,1500,187,1,0 +19900101,1500,188,1,0 +19900101,1500,229,1,0 +19900101,1500,230,1,0 +19900101,1500,231,1,0 +19900101,1500,232,1,0 +19900101,1500,243,1,0 +19900101,1500,244,1,0 +19900101,1500,245,1,0 +19900101,1500,228246,1,0 +19900101,1500,228247,1,0 +19900101,1800,133,100,1000 +19900101,1800,133,100,975 +19900101,1800,133,100,950 +19900101,1800,133,100,925 +19900101,1800,133,100,900 +19900101,1800,133,100,875 +19900101,1800,133,100,850 +19900101,1800,133,100,825 +19900101,1800,133,100,800 +19900101,1800,133,100,775 +19900101,1800,133,100,750 +19900101,1800,133,100,740 +19900101,1800,133,100,700 +19900101,1800,133,100,650 +19900101,1800,133,100,620 +19900101,1800,133,100,600 +19900101,1800,133,100,550 +19900101,1800,133,100,500 +19900101,1800,133,100,450 +19900101,1800,133,100,400 +19900101,1800,133,100,375 +19900101,1800,133,100,350 +19900101,1800,133,100,300 +19900101,1800,133,100,250 +19900101,1800,133,100,245 +19900101,1800,133,100,225 +19900101,1800,133,100,200 +19900101,1800,133,100,175 +19900101,1800,133,100,150 +19900101,1800,133,100,125 +19900101,1800,133,100,100 +19900101,1800,133,100,70 +19900101,1800,133,100,50 +19900101,1800,133,100,30 +19900101,1800,133,100,20 +19900101,1800,133,100,10 +19900101,1800,133,100,9 +19900101,1800,133,100,7 +19900101,1800,133,100,5 +19900101,1800,133,100,3 +19900101,1800,133,100,2 +19900101,1800,133,100,1 +19900101,1800,133,210,40 +19900101,1800,3,117,2000 +19900101,1800,133,109,1 +19900101,1800,133,109,2 +19900101,1800,133,109,3 +19900101,1800,133,109,4 +19900101,1800,133,109,5 +19900101,1800,133,109,6 +19900101,1800,133,109,7 +19900101,1800,133,109,8 +19900101,1800,133,109,9 +19900101,1800,133,109,10 +19900101,1800,246,109,1 +19900101,1800,246,109,2 +19900101,1800,246,109,3 +19900101,1800,246,109,4 +19900101,1800,246,109,5 +19900101,1800,246,109,6 +19900101,1800,246,109,7 +19900101,1800,246,109,8 +19900101,1800,246,109,9 +19900101,1800,246,109,10 +19900101,1800,247,109,1 +19900101,1800,247,109,2 +19900101,1800,247,109,3 +19900101,1800,247,109,4 +19900101,1800,247,109,5 +19900101,1800,247,109,6 +19900101,1800,247,109,7 +19900101,1800,247,109,8 +19900101,1800,247,109,9 +19900101,1800,247,109,10 +19900101,1800,248,109,1 +19900101,1800,248,109,2 +19900101,1800,248,109,3 +19900101,1800,248,109,4 +19900101,1800,248,109,5 +19900101,1800,248,109,6 +19900101,1800,248,109,7 +19900101,1800,248,109,8 +19900101,1800,248,109,9 +19900101,1800,248,109,10 +19900101,1800,8,1,0 +19900101,1800,31,1,0 +19900101,1800,32,1,0 +19900101,1800,33,1,0 +19900101,1800,34,1,0 +19900101,1800,35,111,7 +19900101,1800,36,111,28 +19900101,1800,37,111,100 +19900101,1800,38,111,289 +19900101,1800,39,111,7 +19900101,1800,40,111,28 +19900101,1800,41,111,100 +19900101,1800,42,111,289 +19900101,1800,44,1,0 +19900101,1800,45,1,0 +19900101,1800,49,1,0 +19900101,1800,50,1,0 +19900101,1800,57,1,0 +19900101,1800,58,1,0 +19900101,1800,123,1,0 +19900101,1800,139,111,7 +19900101,1800,141,1,0 +19900101,1800,142,1,0 +19900101,1800,143,1,0 +19900101,1800,144,1,0 +19900101,1800,145,1,0 +19900101,1800,146,1,0 +19900101,1800,147,1,0 +19900101,1800,148,1,0 +19900101,1800,169,1,0 +19900101,1800,170,111,28 +19900101,1800,172,1,0 +19900101,1800,175,1,0 +19900101,1800,176,1,0 +19900101,1800,177,1,0 +19900101,1800,178,1,0 +19900101,1800,179,1,0 +19900101,1800,180,1,0 +19900101,1800,181,1,0 +19900101,1800,182,1,0 +19900101,1800,183,111,100 +19900101,1800,189,1,0 +19900101,1800,195,1,0 +19900101,1800,196,1,0 +19900101,1800,197,1,0 +19900101,1800,198,1,0 +19900101,1800,201,1,0 +19900101,1800,202,1,0 +19900101,1800,205,1,0 +19900101,1800,208,1,0 +19900101,1800,209,1,0 +19900101,1800,210,1,0 +19900101,1800,211,1,0 +19900101,1800,212,1,0 +19900101,1800,213,1,0 +19900101,1800,228,1,0 +19900101,1800,235,1,0 +19900101,1800,236,111,289 +19900101,1800,238,1,0 +19900101,1800,59,1,0 +19900101,1800,78,1,0 +19900101,1800,79,1,0 +19900101,1800,136,1,0 +19900101,1800,137,1,0 +19900101,1800,151,1,0 +19900101,1800,159,1,0 +19900101,1800,164,1,0 +19900101,1800,165,1,0 +19900101,1800,166,1,0 +19900101,1800,167,1,0 +19900101,1800,168,1,0 +19900101,1800,186,1,0 +19900101,1800,187,1,0 +19900101,1800,188,1,0 +19900101,1800,229,1,0 +19900101,1800,230,1,0 +19900101,1800,231,1,0 +19900101,1800,232,1,0 +19900101,1800,243,1,0 +19900101,1800,244,1,0 +19900101,1800,245,1,0 +19900101,1800,228246,1,0 +19900101,1800,228247,1,0 +19900101,2100,8,1,0 +19900101,2100,31,1,0 +19900101,2100,32,1,0 +19900101,2100,33,1,0 +19900101,2100,34,1,0 +19900101,2100,35,111,7 +19900101,2100,36,111,28 +19900101,2100,37,111,100 +19900101,2100,38,111,289 +19900101,2100,39,111,7 +19900101,2100,40,111,28 +19900101,2100,41,111,100 +19900101,2100,42,111,289 +19900101,2100,44,1,0 +19900101,2100,45,1,0 +19900101,2100,49,1,0 +19900101,2100,50,1,0 +19900101,2100,57,1,0 +19900101,2100,58,1,0 +19900101,2100,123,1,0 +19900101,2100,139,111,7 +19900101,2100,141,1,0 +19900101,2100,142,1,0 +19900101,2100,143,1,0 +19900101,2100,144,1,0 +19900101,2100,145,1,0 +19900101,2100,146,1,0 +19900101,2100,147,1,0 +19900101,2100,148,1,0 +19900101,2100,169,1,0 +19900101,2100,170,111,28 +19900101,2100,172,1,0 +19900101,2100,175,1,0 +19900101,2100,176,1,0 +19900101,2100,177,1,0 +19900101,2100,178,1,0 +19900101,2100,179,1,0 +19900101,2100,180,1,0 +19900101,2100,181,1,0 +19900101,2100,182,1,0 +19900101,2100,183,111,100 +19900101,2100,189,1,0 +19900101,2100,195,1,0 +19900101,2100,196,1,0 +19900101,2100,197,1,0 +19900101,2100,198,1,0 +19900101,2100,201,1,0 +19900101,2100,202,1,0 +19900101,2100,205,1,0 +19900101,2100,208,1,0 +19900101,2100,209,1,0 +19900101,2100,210,1,0 +19900101,2100,211,1,0 +19900101,2100,212,1,0 +19900101,2100,213,1,0 +19900101,2100,228,1,0 +19900101,2100,235,1,0 +19900101,2100,236,111,289 +19900101,2100,238,1,0 +19900101,2100,59,1,0 +19900101,2100,78,1,0 +19900101,2100,79,1,0 +19900101,2100,136,1,0 +19900101,2100,137,1,0 +19900101,2100,151,1,0 +19900101,2100,159,1,0 +19900101,2100,164,1,0 +19900101,2100,165,1,0 +19900101,2100,166,1,0 +19900101,2100,167,1,0 +19900101,2100,168,1,0 +19900101,2100,186,1,0 +19900101,2100,187,1,0 +19900101,2100,188,1,0 +19900101,2100,229,1,0 +19900101,2100,230,1,0 +19900101,2100,231,1,0 +19900101,2100,232,1,0 +19900101,2100,243,1,0 +19900101,2100,244,1,0 +19900101,2100,245,1,0 +19900101,2100,228246,1,0 +19900101,2100,228247,1,0 +19900102,0,133,100,1000 +19900102,0,133,100,975 +19900102,0,133,100,950 +19900102,0,133,100,925 +19900102,0,133,100,900 +19900102,0,133,100,875 +19900102,0,133,100,850 +19900102,0,133,100,825 +19900102,0,133,100,800 +19900102,0,133,100,775 +19900102,0,133,100,750 +19900102,0,133,100,740 +19900102,0,133,100,700 +19900102,0,133,100,650 +19900102,0,133,100,620 +19900102,0,133,100,600 +19900102,0,133,100,550 +19900102,0,133,100,500 +19900102,0,133,100,450 +19900102,0,133,100,400 +19900102,0,133,100,375 +19900102,0,133,100,350 +19900102,0,133,100,300 +19900102,0,133,100,250 +19900102,0,133,100,245 +19900102,0,133,100,225 +19900102,0,133,100,200 +19900102,0,133,100,175 +19900102,0,133,100,150 +19900102,0,133,100,125 +19900102,0,133,100,100 +19900102,0,133,100,70 +19900102,0,133,100,50 +19900102,0,133,100,30 +19900102,0,133,100,20 +19900102,0,133,100,10 +19900102,0,133,100,9 +19900102,0,133,100,7 +19900102,0,133,100,5 +19900102,0,133,100,3 +19900102,0,133,100,2 +19900102,0,133,100,1 +19900102,0,133,210,40 +19900102,0,3,117,2000 +19900102,0,133,109,1 +19900102,0,133,109,2 +19900102,0,133,109,3 +19900102,0,133,109,4 +19900102,0,133,109,5 +19900102,0,133,109,6 +19900102,0,133,109,7 +19900102,0,133,109,8 +19900102,0,133,109,9 +19900102,0,133,109,10 +19900102,0,246,109,1 +19900102,0,246,109,2 +19900102,0,246,109,3 +19900102,0,246,109,4 +19900102,0,246,109,5 +19900102,0,246,109,6 +19900102,0,246,109,7 +19900102,0,246,109,8 +19900102,0,246,109,9 +19900102,0,246,109,10 +19900102,0,247,109,1 +19900102,0,247,109,2 +19900102,0,247,109,3 +19900102,0,247,109,4 +19900102,0,247,109,5 +19900102,0,247,109,6 +19900102,0,247,109,7 +19900102,0,247,109,8 +19900102,0,247,109,9 +19900102,0,247,109,10 +19900102,0,248,109,1 +19900102,0,248,109,2 +19900102,0,248,109,3 +19900102,0,248,109,4 +19900102,0,248,109,5 +19900102,0,248,109,6 +19900102,0,248,109,7 +19900102,0,248,109,8 +19900102,0,248,109,9 +19900102,0,248,109,10 +19900102,0,8,1,0 +19900102,0,31,1,0 +19900102,0,32,1,0 +19900102,0,33,1,0 +19900102,0,34,1,0 +19900102,0,35,111,7 +19900102,0,36,111,28 +19900102,0,37,111,100 +19900102,0,38,111,289 +19900102,0,39,111,7 +19900102,0,40,111,28 +19900102,0,41,111,100 +19900102,0,42,111,289 +19900102,0,44,1,0 +19900102,0,45,1,0 +19900102,0,49,1,0 +19900102,0,50,1,0 +19900102,0,57,1,0 +19900102,0,58,1,0 +19900102,0,123,1,0 +19900102,0,139,111,7 +19900102,0,141,1,0 +19900102,0,142,1,0 +19900102,0,143,1,0 +19900102,0,144,1,0 +19900102,0,145,1,0 +19900102,0,146,1,0 +19900102,0,147,1,0 +19900102,0,148,1,0 +19900102,0,169,1,0 +19900102,0,170,111,28 +19900102,0,172,1,0 +19900102,0,175,1,0 +19900102,0,176,1,0 +19900102,0,177,1,0 +19900102,0,178,1,0 +19900102,0,179,1,0 +19900102,0,180,1,0 +19900102,0,181,1,0 +19900102,0,182,1,0 +19900102,0,183,111,100 +19900102,0,189,1,0 +19900102,0,195,1,0 +19900102,0,196,1,0 +19900102,0,197,1,0 +19900102,0,198,1,0 +19900102,0,201,1,0 +19900102,0,202,1,0 +19900102,0,205,1,0 +19900102,0,208,1,0 +19900102,0,209,1,0 +19900102,0,210,1,0 +19900102,0,211,1,0 +19900102,0,212,1,0 +19900102,0,213,1,0 +19900102,0,228,1,0 +19900102,0,235,1,0 +19900102,0,236,111,289 +19900102,0,238,1,0 +19900102,0,59,1,0 +19900102,0,78,1,0 +19900102,0,79,1,0 +19900102,0,136,1,0 +19900102,0,137,1,0 +19900102,0,151,1,0 +19900102,0,159,1,0 +19900102,0,164,1,0 +19900102,0,165,1,0 +19900102,0,166,1,0 +19900102,0,167,1,0 +19900102,0,168,1,0 +19900102,0,186,1,0 +19900102,0,187,1,0 +19900102,0,188,1,0 +19900102,0,229,1,0 +19900102,0,230,1,0 +19900102,0,231,1,0 +19900102,0,232,1,0 +19900102,0,243,1,0 +19900102,0,244,1,0 +19900102,0,245,1,0 +19900102,0,228246,1,0 +19900102,0,228247,1,0 +19900102,300,8,1,0 +19900102,300,31,1,0 +19900102,300,32,1,0 +19900102,300,33,1,0 +19900102,300,34,1,0 +19900102,300,35,111,7 +19900102,300,36,111,28 +19900102,300,37,111,100 +19900102,300,38,111,289 +19900102,300,39,111,7 +19900102,300,40,111,28 +19900102,300,41,111,100 +19900102,300,42,111,289 +19900102,300,44,1,0 +19900102,300,45,1,0 +19900102,300,49,1,0 +19900102,300,50,1,0 +19900102,300,57,1,0 +19900102,300,58,1,0 +19900102,300,123,1,0 +19900102,300,139,111,7 +19900102,300,141,1,0 +19900102,300,142,1,0 +19900102,300,143,1,0 +19900102,300,144,1,0 +19900102,300,145,1,0 +19900102,300,146,1,0 +19900102,300,147,1,0 +19900102,300,148,1,0 +19900102,300,169,1,0 +19900102,300,170,111,28 +19900102,300,172,1,0 +19900102,300,175,1,0 +19900102,300,176,1,0 +19900102,300,177,1,0 +19900102,300,178,1,0 +19900102,300,179,1,0 +19900102,300,180,1,0 +19900102,300,181,1,0 +19900102,300,182,1,0 +19900102,300,183,111,100 +19900102,300,189,1,0 +19900102,300,195,1,0 +19900102,300,196,1,0 +19900102,300,197,1,0 +19900102,300,198,1,0 +19900102,300,201,1,0 +19900102,300,202,1,0 +19900102,300,205,1,0 +19900102,300,208,1,0 +19900102,300,209,1,0 +19900102,300,210,1,0 +19900102,300,211,1,0 +19900102,300,212,1,0 +19900102,300,213,1,0 +19900102,300,228,1,0 +19900102,300,235,1,0 +19900102,300,236,111,289 +19900102,300,238,1,0 +19900102,300,59,1,0 +19900102,300,78,1,0 +19900102,300,79,1,0 +19900102,300,136,1,0 +19900102,300,137,1,0 +19900102,300,151,1,0 +19900102,300,159,1,0 +19900102,300,164,1,0 +19900102,300,165,1,0 +19900102,300,166,1,0 +19900102,300,167,1,0 +19900102,300,168,1,0 +19900102,300,186,1,0 +19900102,300,187,1,0 +19900102,300,188,1,0 +19900102,300,229,1,0 +19900102,300,230,1,0 +19900102,300,231,1,0 +19900102,300,232,1,0 +19900102,300,243,1,0 +19900102,300,244,1,0 +19900102,300,245,1,0 +19900102,300,228246,1,0 +19900102,300,228247,1,0 +19900102,600,133,100,1000 +19900102,600,133,100,975 +19900102,600,133,100,950 +19900102,600,133,100,925 +19900102,600,133,100,900 +19900102,600,133,100,875 +19900102,600,133,100,850 +19900102,600,133,100,825 +19900102,600,133,100,800 +19900102,600,133,100,775 +19900102,600,133,100,750 +19900102,600,133,100,740 +19900102,600,133,100,700 +19900102,600,133,100,650 +19900102,600,133,100,620 +19900102,600,133,100,600 +19900102,600,133,100,550 +19900102,600,133,100,500 +19900102,600,133,100,450 +19900102,600,133,100,400 +19900102,600,133,100,375 +19900102,600,133,100,350 +19900102,600,133,100,300 +19900102,600,133,100,250 +19900102,600,133,100,245 +19900102,600,133,100,225 +19900102,600,133,100,200 +19900102,600,133,100,175 +19900102,600,133,100,150 +19900102,600,133,100,125 +19900102,600,133,100,100 +19900102,600,133,100,70 +19900102,600,133,100,50 +19900102,600,133,100,30 +19900102,600,133,100,20 +19900102,600,133,100,10 +19900102,600,133,100,9 +19900102,600,133,100,7 +19900102,600,133,100,5 +19900102,600,133,100,3 +19900102,600,133,100,2 +19900102,600,133,100,1 +19900102,600,133,210,40 +19900102,600,3,117,2000 +19900102,600,133,109,1 +19900102,600,133,109,2 +19900102,600,133,109,3 +19900102,600,133,109,4 +19900102,600,133,109,5 +19900102,600,133,109,6 +19900102,600,133,109,7 +19900102,600,133,109,8 +19900102,600,133,109,9 +19900102,600,133,109,10 +19900102,600,246,109,1 +19900102,600,246,109,2 +19900102,600,246,109,3 +19900102,600,246,109,4 +19900102,600,246,109,5 +19900102,600,246,109,6 +19900102,600,246,109,7 +19900102,600,246,109,8 +19900102,600,246,109,9 +19900102,600,246,109,10 +19900102,600,247,109,1 +19900102,600,247,109,2 +19900102,600,247,109,3 +19900102,600,247,109,4 +19900102,600,247,109,5 +19900102,600,247,109,6 +19900102,600,247,109,7 +19900102,600,247,109,8 +19900102,600,247,109,9 +19900102,600,247,109,10 +19900102,600,248,109,1 +19900102,600,248,109,2 +19900102,600,248,109,3 +19900102,600,248,109,4 +19900102,600,248,109,5 +19900102,600,248,109,6 +19900102,600,248,109,7 +19900102,600,248,109,8 +19900102,600,248,109,9 +19900102,600,248,109,10 +19900102,600,8,1,0 +19900102,600,31,1,0 +19900102,600,32,1,0 +19900102,600,33,1,0 +19900102,600,34,1,0 +19900102,600,35,111,7 +19900102,600,36,111,28 +19900102,600,37,111,100 +19900102,600,38,111,289 +19900102,600,39,111,7 +19900102,600,40,111,28 +19900102,600,41,111,100 +19900102,600,42,111,289 +19900102,600,44,1,0 +19900102,600,45,1,0 +19900102,600,49,1,0 +19900102,600,50,1,0 +19900102,600,57,1,0 +19900102,600,58,1,0 +19900102,600,123,1,0 +19900102,600,139,111,7 +19900102,600,141,1,0 +19900102,600,142,1,0 +19900102,600,143,1,0 +19900102,600,144,1,0 +19900102,600,145,1,0 +19900102,600,146,1,0 +19900102,600,147,1,0 +19900102,600,148,1,0 +19900102,600,169,1,0 +19900102,600,170,111,28 +19900102,600,172,1,0 +19900102,600,175,1,0 +19900102,600,176,1,0 +19900102,600,177,1,0 +19900102,600,178,1,0 +19900102,600,179,1,0 +19900102,600,180,1,0 +19900102,600,181,1,0 +19900102,600,182,1,0 +19900102,600,183,111,100 +19900102,600,189,1,0 +19900102,600,195,1,0 +19900102,600,196,1,0 +19900102,600,197,1,0 +19900102,600,198,1,0 +19900102,600,201,1,0 +19900102,600,202,1,0 +19900102,600,205,1,0 +19900102,600,208,1,0 +19900102,600,209,1,0 +19900102,600,210,1,0 +19900102,600,211,1,0 +19900102,600,212,1,0 +19900102,600,213,1,0 +19900102,600,228,1,0 +19900102,600,235,1,0 +19900102,600,236,111,289 +19900102,600,238,1,0 +19900102,600,59,1,0 +19900102,600,78,1,0 +19900102,600,79,1,0 +19900102,600,136,1,0 +19900102,600,137,1,0 +19900102,600,151,1,0 +19900102,600,159,1,0 +19900102,600,164,1,0 +19900102,600,165,1,0 +19900102,600,166,1,0 +19900102,600,167,1,0 +19900102,600,168,1,0 +19900102,600,186,1,0 +19900102,600,187,1,0 +19900102,600,188,1,0 +19900102,600,229,1,0 +19900102,600,230,1,0 +19900102,600,231,1,0 +19900102,600,232,1,0 +19900102,600,243,1,0 +19900102,600,244,1,0 +19900102,600,245,1,0 +19900102,600,228246,1,0 +19900102,600,228247,1,0 +19900102,900,8,1,0 +19900102,900,31,1,0 +19900102,900,32,1,0 +19900102,900,33,1,0 +19900102,900,34,1,0 +19900102,900,35,111,7 +19900102,900,36,111,28 +19900102,900,37,111,100 +19900102,900,38,111,289 +19900102,900,39,111,7 +19900102,900,40,111,28 +19900102,900,41,111,100 +19900102,900,42,111,289 +19900102,900,44,1,0 +19900102,900,45,1,0 +19900102,900,49,1,0 +19900102,900,50,1,0 +19900102,900,57,1,0 +19900102,900,58,1,0 +19900102,900,123,1,0 +19900102,900,139,111,7 +19900102,900,141,1,0 +19900102,900,142,1,0 +19900102,900,143,1,0 +19900102,900,144,1,0 +19900102,900,145,1,0 +19900102,900,146,1,0 +19900102,900,147,1,0 +19900102,900,148,1,0 +19900102,900,169,1,0 +19900102,900,170,111,28 +19900102,900,172,1,0 +19900102,900,175,1,0 +19900102,900,176,1,0 +19900102,900,177,1,0 +19900102,900,178,1,0 +19900102,900,179,1,0 +19900102,900,180,1,0 +19900102,900,181,1,0 +19900102,900,182,1,0 +19900102,900,183,111,100 +19900102,900,189,1,0 +19900102,900,195,1,0 +19900102,900,196,1,0 +19900102,900,197,1,0 +19900102,900,198,1,0 +19900102,900,201,1,0 +19900102,900,202,1,0 +19900102,900,205,1,0 +19900102,900,208,1,0 +19900102,900,209,1,0 +19900102,900,210,1,0 +19900102,900,211,1,0 +19900102,900,212,1,0 +19900102,900,213,1,0 +19900102,900,228,1,0 +19900102,900,235,1,0 +19900102,900,236,111,289 +19900102,900,238,1,0 +19900102,900,59,1,0 +19900102,900,78,1,0 +19900102,900,79,1,0 +19900102,900,136,1,0 +19900102,900,137,1,0 +19900102,900,151,1,0 +19900102,900,159,1,0 +19900102,900,164,1,0 +19900102,900,165,1,0 +19900102,900,166,1,0 +19900102,900,167,1,0 +19900102,900,168,1,0 +19900102,900,186,1,0 +19900102,900,187,1,0 +19900102,900,188,1,0 +19900102,900,229,1,0 +19900102,900,230,1,0 +19900102,900,231,1,0 +19900102,900,232,1,0 +19900102,900,243,1,0 +19900102,900,244,1,0 +19900102,900,245,1,0 +19900102,900,228246,1,0 +19900102,900,228247,1,0 +19900102,1200,133,100,1000 +19900102,1200,133,100,975 +19900102,1200,133,100,950 +19900102,1200,133,100,925 +19900102,1200,133,100,900 +19900102,1200,133,100,875 +19900102,1200,133,100,850 +19900102,1200,133,100,825 +19900102,1200,133,100,800 +19900102,1200,133,100,775 +19900102,1200,133,100,750 +19900102,1200,133,100,740 +19900102,1200,133,100,700 +19900102,1200,133,100,650 +19900102,1200,133,100,620 +19900102,1200,133,100,600 +19900102,1200,133,100,550 +19900102,1200,133,100,500 +19900102,1200,133,100,450 +19900102,1200,133,100,400 +19900102,1200,133,100,375 +19900102,1200,133,100,350 +19900102,1200,133,100,300 +19900102,1200,133,100,250 +19900102,1200,133,100,245 +19900102,1200,133,100,225 +19900102,1200,133,100,200 +19900102,1200,133,100,175 +19900102,1200,133,100,150 +19900102,1200,133,100,125 +19900102,1200,133,100,100 +19900102,1200,133,100,70 +19900102,1200,133,100,50 +19900102,1200,133,100,30 +19900102,1200,133,100,20 +19900102,1200,133,100,10 +19900102,1200,133,100,9 +19900102,1200,133,100,7 +19900102,1200,133,100,5 +19900102,1200,133,100,3 +19900102,1200,133,100,2 +19900102,1200,133,100,1 +19900102,1200,133,210,40 +19900102,1200,3,117,2000 +19900102,1200,133,109,1 +19900102,1200,133,109,2 +19900102,1200,133,109,3 +19900102,1200,133,109,4 +19900102,1200,133,109,5 +19900102,1200,133,109,6 +19900102,1200,133,109,7 +19900102,1200,133,109,8 +19900102,1200,133,109,9 +19900102,1200,133,109,10 +19900102,1200,246,109,1 +19900102,1200,246,109,2 +19900102,1200,246,109,3 +19900102,1200,246,109,4 +19900102,1200,246,109,5 +19900102,1200,246,109,6 +19900102,1200,246,109,7 +19900102,1200,246,109,8 +19900102,1200,246,109,9 +19900102,1200,246,109,10 +19900102,1200,247,109,1 +19900102,1200,247,109,2 +19900102,1200,247,109,3 +19900102,1200,247,109,4 +19900102,1200,247,109,5 +19900102,1200,247,109,6 +19900102,1200,247,109,7 +19900102,1200,247,109,8 +19900102,1200,247,109,9 +19900102,1200,247,109,10 +19900102,1200,248,109,1 +19900102,1200,248,109,2 +19900102,1200,248,109,3 +19900102,1200,248,109,4 +19900102,1200,248,109,5 +19900102,1200,248,109,6 +19900102,1200,248,109,7 +19900102,1200,248,109,8 +19900102,1200,248,109,9 +19900102,1200,248,109,10 +19900102,1200,8,1,0 +19900102,1200,31,1,0 +19900102,1200,32,1,0 +19900102,1200,33,1,0 +19900102,1200,34,1,0 +19900102,1200,35,111,7 +19900102,1200,36,111,28 +19900102,1200,37,111,100 +19900102,1200,38,111,289 +19900102,1200,39,111,7 +19900102,1200,40,111,28 +19900102,1200,41,111,100 +19900102,1200,42,111,289 +19900102,1200,44,1,0 +19900102,1200,45,1,0 +19900102,1200,49,1,0 +19900102,1200,50,1,0 +19900102,1200,57,1,0 +19900102,1200,58,1,0 +19900102,1200,123,1,0 +19900102,1200,139,111,7 +19900102,1200,141,1,0 +19900102,1200,142,1,0 +19900102,1200,143,1,0 +19900102,1200,144,1,0 +19900102,1200,145,1,0 +19900102,1200,146,1,0 +19900102,1200,147,1,0 +19900102,1200,148,1,0 +19900102,1200,169,1,0 +19900102,1200,170,111,28 +19900102,1200,172,1,0 +19900102,1200,175,1,0 +19900102,1200,176,1,0 +19900102,1200,177,1,0 +19900102,1200,178,1,0 +19900102,1200,179,1,0 +19900102,1200,180,1,0 +19900102,1200,181,1,0 +19900102,1200,182,1,0 +19900102,1200,183,111,100 +19900102,1200,189,1,0 +19900102,1200,195,1,0 +19900102,1200,196,1,0 +19900102,1200,197,1,0 +19900102,1200,198,1,0 +19900102,1200,201,1,0 +19900102,1200,202,1,0 +19900102,1200,205,1,0 +19900102,1200,208,1,0 +19900102,1200,209,1,0 +19900102,1200,210,1,0 +19900102,1200,211,1,0 +19900102,1200,212,1,0 +19900102,1200,213,1,0 +19900102,1200,228,1,0 +19900102,1200,235,1,0 +19900102,1200,236,111,289 +19900102,1200,238,1,0 +19900102,1200,59,1,0 +19900102,1200,78,1,0 +19900102,1200,79,1,0 +19900102,1200,136,1,0 +19900102,1200,137,1,0 +19900102,1200,151,1,0 +19900102,1200,159,1,0 +19900102,1200,164,1,0 +19900102,1200,165,1,0 +19900102,1200,166,1,0 +19900102,1200,167,1,0 +19900102,1200,168,1,0 +19900102,1200,186,1,0 +19900102,1200,187,1,0 +19900102,1200,188,1,0 +19900102,1200,229,1,0 +19900102,1200,230,1,0 +19900102,1200,231,1,0 +19900102,1200,232,1,0 +19900102,1200,243,1,0 +19900102,1200,244,1,0 +19900102,1200,245,1,0 +19900102,1200,228246,1,0 +19900102,1200,228247,1,0 +19900102,1500,8,1,0 +19900102,1500,31,1,0 +19900102,1500,32,1,0 +19900102,1500,33,1,0 +19900102,1500,34,1,0 +19900102,1500,35,111,7 +19900102,1500,36,111,28 +19900102,1500,37,111,100 +19900102,1500,38,111,289 +19900102,1500,39,111,7 +19900102,1500,40,111,28 +19900102,1500,41,111,100 +19900102,1500,42,111,289 +19900102,1500,44,1,0 +19900102,1500,45,1,0 +19900102,1500,49,1,0 +19900102,1500,50,1,0 +19900102,1500,57,1,0 +19900102,1500,58,1,0 +19900102,1500,123,1,0 +19900102,1500,139,111,7 +19900102,1500,141,1,0 +19900102,1500,142,1,0 +19900102,1500,143,1,0 +19900102,1500,144,1,0 +19900102,1500,145,1,0 +19900102,1500,146,1,0 +19900102,1500,147,1,0 +19900102,1500,148,1,0 +19900102,1500,169,1,0 +19900102,1500,170,111,28 +19900102,1500,172,1,0 +19900102,1500,175,1,0 +19900102,1500,176,1,0 +19900102,1500,177,1,0 +19900102,1500,178,1,0 +19900102,1500,179,1,0 +19900102,1500,180,1,0 +19900102,1500,181,1,0 +19900102,1500,182,1,0 +19900102,1500,183,111,100 +19900102,1500,189,1,0 +19900102,1500,195,1,0 +19900102,1500,196,1,0 +19900102,1500,197,1,0 +19900102,1500,198,1,0 +19900102,1500,201,1,0 +19900102,1500,202,1,0 +19900102,1500,205,1,0 +19900102,1500,208,1,0 +19900102,1500,209,1,0 +19900102,1500,210,1,0 +19900102,1500,211,1,0 +19900102,1500,212,1,0 +19900102,1500,213,1,0 +19900102,1500,228,1,0 +19900102,1500,235,1,0 +19900102,1500,236,111,289 +19900102,1500,238,1,0 +19900102,1500,59,1,0 +19900102,1500,78,1,0 +19900102,1500,79,1,0 +19900102,1500,136,1,0 +19900102,1500,137,1,0 +19900102,1500,151,1,0 +19900102,1500,159,1,0 +19900102,1500,164,1,0 +19900102,1500,165,1,0 +19900102,1500,166,1,0 +19900102,1500,167,1,0 +19900102,1500,168,1,0 +19900102,1500,186,1,0 +19900102,1500,187,1,0 +19900102,1500,188,1,0 +19900102,1500,229,1,0 +19900102,1500,230,1,0 +19900102,1500,231,1,0 +19900102,1500,232,1,0 +19900102,1500,243,1,0 +19900102,1500,244,1,0 +19900102,1500,245,1,0 +19900102,1500,228246,1,0 +19900102,1500,228247,1,0 +19900102,1800,133,100,1000 +19900102,1800,133,100,975 +19900102,1800,133,100,950 +19900102,1800,133,100,925 +19900102,1800,133,100,900 +19900102,1800,133,100,875 +19900102,1800,133,100,850 +19900102,1800,133,100,825 +19900102,1800,133,100,800 +19900102,1800,133,100,775 +19900102,1800,133,100,750 +19900102,1800,133,100,740 +19900102,1800,133,100,700 +19900102,1800,133,100,650 +19900102,1800,133,100,620 +19900102,1800,133,100,600 +19900102,1800,133,100,550 +19900102,1800,133,100,500 +19900102,1800,133,100,450 +19900102,1800,133,100,400 +19900102,1800,133,100,375 +19900102,1800,133,100,350 +19900102,1800,133,100,300 +19900102,1800,133,100,250 +19900102,1800,133,100,245 +19900102,1800,133,100,225 +19900102,1800,133,100,200 +19900102,1800,133,100,175 +19900102,1800,133,100,150 +19900102,1800,133,100,125 +19900102,1800,133,100,100 +19900102,1800,133,100,70 +19900102,1800,133,100,50 +19900102,1800,133,100,30 +19900102,1800,133,100,20 +19900102,1800,133,100,10 +19900102,1800,133,100,9 +19900102,1800,133,100,7 +19900102,1800,133,100,5 +19900102,1800,133,100,3 +19900102,1800,133,100,2 +19900102,1800,133,100,1 +19900102,1800,133,210,40 +19900102,1800,3,117,2000 +19900102,1800,133,109,1 +19900102,1800,133,109,2 +19900102,1800,133,109,3 +19900102,1800,133,109,4 +19900102,1800,133,109,5 +19900102,1800,133,109,6 +19900102,1800,133,109,7 +19900102,1800,133,109,8 +19900102,1800,133,109,9 +19900102,1800,133,109,10 +19900102,1800,246,109,1 +19900102,1800,246,109,2 +19900102,1800,246,109,3 +19900102,1800,246,109,4 +19900102,1800,246,109,5 +19900102,1800,246,109,6 +19900102,1800,246,109,7 +19900102,1800,246,109,8 +19900102,1800,246,109,9 +19900102,1800,246,109,10 +19900102,1800,247,109,1 +19900102,1800,247,109,2 +19900102,1800,247,109,3 +19900102,1800,247,109,4 +19900102,1800,247,109,5 +19900102,1800,247,109,6 +19900102,1800,247,109,7 +19900102,1800,247,109,8 +19900102,1800,247,109,9 +19900102,1800,247,109,10 +19900102,1800,248,109,1 +19900102,1800,248,109,2 +19900102,1800,248,109,3 +19900102,1800,248,109,4 +19900102,1800,248,109,5 +19900102,1800,248,109,6 +19900102,1800,248,109,7 +19900102,1800,248,109,8 +19900102,1800,248,109,9 +19900102,1800,248,109,10 +19900102,1800,8,1,0 +19900102,1800,31,1,0 +19900102,1800,32,1,0 +19900102,1800,33,1,0 +19900102,1800,34,1,0 +19900102,1800,35,111,7 +19900102,1800,36,111,28 +19900102,1800,37,111,100 +19900102,1800,38,111,289 +19900102,1800,39,111,7 +19900102,1800,40,111,28 +19900102,1800,41,111,100 +19900102,1800,42,111,289 +19900102,1800,44,1,0 +19900102,1800,45,1,0 +19900102,1800,49,1,0 +19900102,1800,50,1,0 +19900102,1800,57,1,0 +19900102,1800,58,1,0 +19900102,1800,123,1,0 +19900102,1800,139,111,7 +19900102,1800,141,1,0 +19900102,1800,142,1,0 +19900102,1800,143,1,0 +19900102,1800,144,1,0 +19900102,1800,145,1,0 +19900102,1800,146,1,0 +19900102,1800,147,1,0 +19900102,1800,148,1,0 +19900102,1800,169,1,0 +19900102,1800,170,111,28 +19900102,1800,172,1,0 +19900102,1800,175,1,0 +19900102,1800,176,1,0 +19900102,1800,177,1,0 +19900102,1800,178,1,0 +19900102,1800,179,1,0 +19900102,1800,180,1,0 +19900102,1800,181,1,0 +19900102,1800,182,1,0 +19900102,1800,183,111,100 +19900102,1800,189,1,0 +19900102,1800,195,1,0 +19900102,1800,196,1,0 +19900102,1800,197,1,0 +19900102,1800,198,1,0 +19900102,1800,201,1,0 +19900102,1800,202,1,0 +19900102,1800,205,1,0 +19900102,1800,208,1,0 +19900102,1800,209,1,0 +19900102,1800,210,1,0 +19900102,1800,211,1,0 +19900102,1800,212,1,0 +19900102,1800,213,1,0 +19900102,1800,228,1,0 +19900102,1800,235,1,0 +19900102,1800,236,111,289 +19900102,1800,238,1,0 +19900102,1800,59,1,0 +19900102,1800,78,1,0 +19900102,1800,79,1,0 +19900102,1800,136,1,0 +19900102,1800,137,1,0 +19900102,1800,151,1,0 +19900102,1800,159,1,0 +19900102,1800,164,1,0 +19900102,1800,165,1,0 +19900102,1800,166,1,0 +19900102,1800,167,1,0 +19900102,1800,168,1,0 +19900102,1800,186,1,0 +19900102,1800,187,1,0 +19900102,1800,188,1,0 +19900102,1800,229,1,0 +19900102,1800,230,1,0 +19900102,1800,231,1,0 +19900102,1800,232,1,0 +19900102,1800,243,1,0 +19900102,1800,244,1,0 +19900102,1800,245,1,0 +19900102,1800,228246,1,0 +19900102,1800,228247,1,0 +19900102,2100,8,1,0 +19900102,2100,31,1,0 +19900102,2100,32,1,0 +19900102,2100,33,1,0 +19900102,2100,34,1,0 +19900102,2100,35,111,7 +19900102,2100,36,111,28 +19900102,2100,37,111,100 +19900102,2100,38,111,289 +19900102,2100,39,111,7 +19900102,2100,40,111,28 +19900102,2100,41,111,100 +19900102,2100,42,111,289 +19900102,2100,44,1,0 +19900102,2100,45,1,0 +19900102,2100,49,1,0 +19900102,2100,50,1,0 +19900102,2100,57,1,0 +19900102,2100,58,1,0 +19900102,2100,123,1,0 +19900102,2100,139,111,7 +19900102,2100,141,1,0 +19900102,2100,142,1,0 +19900102,2100,143,1,0 +19900102,2100,144,1,0 +19900102,2100,145,1,0 +19900102,2100,146,1,0 +19900102,2100,147,1,0 +19900102,2100,148,1,0 +19900102,2100,169,1,0 +19900102,2100,170,111,28 +19900102,2100,172,1,0 +19900102,2100,175,1,0 +19900102,2100,176,1,0 +19900102,2100,177,1,0 +19900102,2100,178,1,0 +19900102,2100,179,1,0 +19900102,2100,180,1,0 +19900102,2100,181,1,0 +19900102,2100,182,1,0 +19900102,2100,183,111,100 +19900102,2100,189,1,0 +19900102,2100,195,1,0 +19900102,2100,196,1,0 +19900102,2100,197,1,0 +19900102,2100,198,1,0 +19900102,2100,201,1,0 +19900102,2100,202,1,0 +19900102,2100,205,1,0 +19900102,2100,208,1,0 +19900102,2100,209,1,0 +19900102,2100,210,1,0 +19900102,2100,211,1,0 +19900102,2100,212,1,0 +19900102,2100,213,1,0 +19900102,2100,228,1,0 +19900102,2100,235,1,0 +19900102,2100,236,111,289 +19900102,2100,238,1,0 +19900102,2100,59,1,0 +19900102,2100,78,1,0 +19900102,2100,79,1,0 +19900102,2100,136,1,0 +19900102,2100,137,1,0 +19900102,2100,151,1,0 +19900102,2100,159,1,0 +19900102,2100,164,1,0 +19900102,2100,165,1,0 +19900102,2100,166,1,0 +19900102,2100,167,1,0 +19900102,2100,168,1,0 +19900102,2100,186,1,0 +19900102,2100,187,1,0 +19900102,2100,188,1,0 +19900102,2100,229,1,0 +19900102,2100,230,1,0 +19900102,2100,231,1,0 +19900102,2100,232,1,0 +19900102,2100,243,1,0 +19900102,2100,244,1,0 +19900102,2100,245,1,0 +19900102,2100,228246,1,0 +19900102,2100,228247,1,0 +19900103,0,133,100,1000 +19900103,0,133,100,975 +19900103,0,133,100,950 +19900103,0,133,100,925 +19900103,0,133,100,900 +19900103,0,133,100,875 +19900103,0,133,100,850 +19900103,0,133,100,825 +19900103,0,133,100,800 +19900103,0,133,100,775 +19900103,0,133,100,750 +19900103,0,133,100,740 +19900103,0,133,100,700 +19900103,0,133,100,650 +19900103,0,133,100,620 +19900103,0,133,100,600 +19900103,0,133,100,550 +19900103,0,133,100,500 +19900103,0,133,100,450 +19900103,0,133,100,400 +19900103,0,133,100,375 +19900103,0,133,100,350 +19900103,0,133,100,300 +19900103,0,133,100,250 +19900103,0,133,100,245 +19900103,0,133,100,225 +19900103,0,133,100,200 +19900103,0,133,100,175 +19900103,0,133,100,150 +19900103,0,133,100,125 +19900103,0,133,100,100 +19900103,0,133,100,70 +19900103,0,133,100,50 +19900103,0,133,100,30 +19900103,0,133,100,20 +19900103,0,133,100,10 +19900103,0,133,100,9 +19900103,0,133,100,7 +19900103,0,133,100,5 +19900103,0,133,100,3 +19900103,0,133,100,2 +19900103,0,133,100,1 +19900103,0,133,210,40 +19900103,0,3,117,2000 +19900103,0,133,109,1 +19900103,0,133,109,2 +19900103,0,133,109,3 +19900103,0,133,109,4 +19900103,0,133,109,5 +19900103,0,133,109,6 +19900103,0,133,109,7 +19900103,0,133,109,8 +19900103,0,133,109,9 +19900103,0,133,109,10 +19900103,0,246,109,1 +19900103,0,246,109,2 +19900103,0,246,109,3 +19900103,0,246,109,4 +19900103,0,246,109,5 +19900103,0,246,109,6 +19900103,0,246,109,7 +19900103,0,246,109,8 +19900103,0,246,109,9 +19900103,0,246,109,10 +19900103,0,247,109,1 +19900103,0,247,109,2 +19900103,0,247,109,3 +19900103,0,247,109,4 +19900103,0,247,109,5 +19900103,0,247,109,6 +19900103,0,247,109,7 +19900103,0,247,109,8 +19900103,0,247,109,9 +19900103,0,247,109,10 +19900103,0,248,109,1 +19900103,0,248,109,2 +19900103,0,248,109,3 +19900103,0,248,109,4 +19900103,0,248,109,5 +19900103,0,248,109,6 +19900103,0,248,109,7 +19900103,0,248,109,8 +19900103,0,248,109,9 +19900103,0,248,109,10 +19900103,0,8,1,0 +19900103,0,31,1,0 +19900103,0,32,1,0 +19900103,0,33,1,0 +19900103,0,34,1,0 +19900103,0,35,111,7 +19900103,0,36,111,28 +19900103,0,37,111,100 +19900103,0,38,111,289 +19900103,0,39,111,7 +19900103,0,40,111,28 +19900103,0,41,111,100 +19900103,0,42,111,289 +19900103,0,44,1,0 +19900103,0,45,1,0 +19900103,0,49,1,0 +19900103,0,50,1,0 +19900103,0,57,1,0 +19900103,0,58,1,0 +19900103,0,123,1,0 +19900103,0,139,111,7 +19900103,0,141,1,0 +19900103,0,142,1,0 +19900103,0,143,1,0 +19900103,0,144,1,0 +19900103,0,145,1,0 +19900103,0,146,1,0 +19900103,0,147,1,0 +19900103,0,148,1,0 +19900103,0,169,1,0 +19900103,0,170,111,28 +19900103,0,172,1,0 +19900103,0,175,1,0 +19900103,0,176,1,0 +19900103,0,177,1,0 +19900103,0,178,1,0 +19900103,0,179,1,0 +19900103,0,180,1,0 +19900103,0,181,1,0 +19900103,0,182,1,0 +19900103,0,183,111,100 +19900103,0,189,1,0 +19900103,0,195,1,0 +19900103,0,196,1,0 +19900103,0,197,1,0 +19900103,0,198,1,0 +19900103,0,201,1,0 +19900103,0,202,1,0 +19900103,0,205,1,0 +19900103,0,208,1,0 +19900103,0,209,1,0 +19900103,0,210,1,0 +19900103,0,211,1,0 +19900103,0,212,1,0 +19900103,0,213,1,0 +19900103,0,228,1,0 +19900103,0,235,1,0 +19900103,0,236,111,289 +19900103,0,238,1,0 +19900103,0,59,1,0 +19900103,0,78,1,0 +19900103,0,79,1,0 +19900103,0,136,1,0 +19900103,0,137,1,0 +19900103,0,151,1,0 +19900103,0,159,1,0 +19900103,0,164,1,0 +19900103,0,165,1,0 +19900103,0,166,1,0 +19900103,0,167,1,0 +19900103,0,168,1,0 +19900103,0,186,1,0 +19900103,0,187,1,0 +19900103,0,188,1,0 +19900103,0,229,1,0 +19900103,0,230,1,0 +19900103,0,231,1,0 +19900103,0,232,1,0 +19900103,0,243,1,0 +19900103,0,244,1,0 +19900103,0,245,1,0 +19900103,0,228246,1,0 +19900103,0,228247,1,0 +19900103,300,8,1,0 +19900103,300,31,1,0 +19900103,300,32,1,0 +19900103,300,33,1,0 +19900103,300,34,1,0 +19900103,300,35,111,7 +19900103,300,36,111,28 +19900103,300,37,111,100 +19900103,300,38,111,289 +19900103,300,39,111,7 +19900103,300,40,111,28 +19900103,300,41,111,100 +19900103,300,42,111,289 +19900103,300,44,1,0 +19900103,300,45,1,0 +19900103,300,49,1,0 +19900103,300,50,1,0 +19900103,300,57,1,0 +19900103,300,58,1,0 +19900103,300,123,1,0 +19900103,300,139,111,7 +19900103,300,141,1,0 +19900103,300,142,1,0 +19900103,300,143,1,0 +19900103,300,144,1,0 +19900103,300,145,1,0 +19900103,300,146,1,0 +19900103,300,147,1,0 +19900103,300,148,1,0 +19900103,300,169,1,0 +19900103,300,170,111,28 +19900103,300,172,1,0 +19900103,300,175,1,0 +19900103,300,176,1,0 +19900103,300,177,1,0 +19900103,300,178,1,0 +19900103,300,179,1,0 +19900103,300,180,1,0 +19900103,300,181,1,0 +19900103,300,182,1,0 +19900103,300,183,111,100 +19900103,300,189,1,0 +19900103,300,195,1,0 +19900103,300,196,1,0 +19900103,300,197,1,0 +19900103,300,198,1,0 +19900103,300,201,1,0 +19900103,300,202,1,0 +19900103,300,205,1,0 +19900103,300,208,1,0 +19900103,300,209,1,0 +19900103,300,210,1,0 +19900103,300,211,1,0 +19900103,300,212,1,0 +19900103,300,213,1,0 +19900103,300,228,1,0 +19900103,300,235,1,0 +19900103,300,236,111,289 +19900103,300,238,1,0 +19900103,300,59,1,0 +19900103,300,78,1,0 +19900103,300,79,1,0 +19900103,300,136,1,0 +19900103,300,137,1,0 +19900103,300,151,1,0 +19900103,300,159,1,0 +19900103,300,164,1,0 +19900103,300,165,1,0 +19900103,300,166,1,0 +19900103,300,167,1,0 +19900103,300,168,1,0 +19900103,300,186,1,0 +19900103,300,187,1,0 +19900103,300,188,1,0 +19900103,300,229,1,0 +19900103,300,230,1,0 +19900103,300,231,1,0 +19900103,300,232,1,0 +19900103,300,243,1,0 +19900103,300,244,1,0 +19900103,300,245,1,0 +19900103,300,228246,1,0 +19900103,300,228247,1,0 +19900103,600,133,100,1000 +19900103,600,133,100,975 +19900103,600,133,100,950 +19900103,600,133,100,925 +19900103,600,133,100,900 +19900103,600,133,100,875 +19900103,600,133,100,850 +19900103,600,133,100,825 +19900103,600,133,100,800 +19900103,600,133,100,775 +19900103,600,133,100,750 +19900103,600,133,100,740 +19900103,600,133,100,700 +19900103,600,133,100,650 +19900103,600,133,100,620 +19900103,600,133,100,600 +19900103,600,133,100,550 +19900103,600,133,100,500 +19900103,600,133,100,450 +19900103,600,133,100,400 +19900103,600,133,100,375 +19900103,600,133,100,350 +19900103,600,133,100,300 +19900103,600,133,100,250 +19900103,600,133,100,245 +19900103,600,133,100,225 +19900103,600,133,100,200 +19900103,600,133,100,175 +19900103,600,133,100,150 +19900103,600,133,100,125 +19900103,600,133,100,100 +19900103,600,133,100,70 +19900103,600,133,100,50 +19900103,600,133,100,30 +19900103,600,133,100,20 +19900103,600,133,100,10 +19900103,600,133,100,9 +19900103,600,133,100,7 +19900103,600,133,100,5 +19900103,600,133,100,3 +19900103,600,133,100,2 +19900103,600,133,100,1 +19900103,600,133,210,40 +19900103,600,3,117,2000 +19900103,600,133,109,1 +19900103,600,133,109,2 +19900103,600,133,109,3 +19900103,600,133,109,4 +19900103,600,133,109,5 +19900103,600,133,109,6 +19900103,600,133,109,7 +19900103,600,133,109,8 +19900103,600,133,109,9 +19900103,600,133,109,10 +19900103,600,246,109,1 +19900103,600,246,109,2 +19900103,600,246,109,3 +19900103,600,246,109,4 +19900103,600,246,109,5 +19900103,600,246,109,6 +19900103,600,246,109,7 +19900103,600,246,109,8 +19900103,600,246,109,9 +19900103,600,246,109,10 +19900103,600,247,109,1 +19900103,600,247,109,2 +19900103,600,247,109,3 +19900103,600,247,109,4 +19900103,600,247,109,5 +19900103,600,247,109,6 +19900103,600,247,109,7 +19900103,600,247,109,8 +19900103,600,247,109,9 +19900103,600,247,109,10 +19900103,600,248,109,1 +19900103,600,248,109,2 +19900103,600,248,109,3 +19900103,600,248,109,4 +19900103,600,248,109,5 +19900103,600,248,109,6 +19900103,600,248,109,7 +19900103,600,248,109,8 +19900103,600,248,109,9 +19900103,600,248,109,10 +19900103,600,8,1,0 +19900103,600,31,1,0 +19900103,600,32,1,0 +19900103,600,33,1,0 +19900103,600,34,1,0 +19900103,600,35,111,7 +19900103,600,36,111,28 +19900103,600,37,111,100 +19900103,600,38,111,289 +19900103,600,39,111,7 +19900103,600,40,111,28 +19900103,600,41,111,100 +19900103,600,42,111,289 +19900103,600,44,1,0 +19900103,600,45,1,0 +19900103,600,49,1,0 +19900103,600,50,1,0 +19900103,600,57,1,0 +19900103,600,58,1,0 +19900103,600,123,1,0 +19900103,600,139,111,7 +19900103,600,141,1,0 +19900103,600,142,1,0 +19900103,600,143,1,0 +19900103,600,144,1,0 +19900103,600,145,1,0 +19900103,600,146,1,0 +19900103,600,147,1,0 +19900103,600,148,1,0 +19900103,600,169,1,0 +19900103,600,170,111,28 +19900103,600,172,1,0 +19900103,600,175,1,0 +19900103,600,176,1,0 +19900103,600,177,1,0 +19900103,600,178,1,0 +19900103,600,179,1,0 +19900103,600,180,1,0 +19900103,600,181,1,0 +19900103,600,182,1,0 +19900103,600,183,111,100 +19900103,600,189,1,0 +19900103,600,195,1,0 +19900103,600,196,1,0 +19900103,600,197,1,0 +19900103,600,198,1,0 +19900103,600,201,1,0 +19900103,600,202,1,0 +19900103,600,205,1,0 +19900103,600,208,1,0 +19900103,600,209,1,0 +19900103,600,210,1,0 +19900103,600,211,1,0 +19900103,600,212,1,0 +19900103,600,213,1,0 +19900103,600,228,1,0 +19900103,600,235,1,0 +19900103,600,236,111,289 +19900103,600,238,1,0 +19900103,600,59,1,0 +19900103,600,78,1,0 +19900103,600,79,1,0 +19900103,600,136,1,0 +19900103,600,137,1,0 +19900103,600,151,1,0 +19900103,600,159,1,0 +19900103,600,164,1,0 +19900103,600,165,1,0 +19900103,600,166,1,0 +19900103,600,167,1,0 +19900103,600,168,1,0 +19900103,600,186,1,0 +19900103,600,187,1,0 +19900103,600,188,1,0 +19900103,600,229,1,0 +19900103,600,230,1,0 +19900103,600,231,1,0 +19900103,600,232,1,0 +19900103,600,243,1,0 +19900103,600,244,1,0 +19900103,600,245,1,0 +19900103,600,228246,1,0 +19900103,600,228247,1,0 +19900103,900,8,1,0 +19900103,900,31,1,0 +19900103,900,32,1,0 +19900103,900,33,1,0 +19900103,900,34,1,0 +19900103,900,35,111,7 +19900103,900,36,111,28 +19900103,900,37,111,100 +19900103,900,38,111,289 +19900103,900,39,111,7 +19900103,900,40,111,28 +19900103,900,41,111,100 +19900103,900,42,111,289 +19900103,900,44,1,0 +19900103,900,45,1,0 +19900103,900,49,1,0 +19900103,900,50,1,0 +19900103,900,57,1,0 +19900103,900,58,1,0 +19900103,900,123,1,0 +19900103,900,139,111,7 +19900103,900,141,1,0 +19900103,900,142,1,0 +19900103,900,143,1,0 +19900103,900,144,1,0 +19900103,900,145,1,0 +19900103,900,146,1,0 +19900103,900,147,1,0 +19900103,900,148,1,0 +19900103,900,169,1,0 +19900103,900,170,111,28 +19900103,900,172,1,0 +19900103,900,175,1,0 +19900103,900,176,1,0 +19900103,900,177,1,0 +19900103,900,178,1,0 +19900103,900,179,1,0 +19900103,900,180,1,0 +19900103,900,181,1,0 +19900103,900,182,1,0 +19900103,900,183,111,100 +19900103,900,189,1,0 +19900103,900,195,1,0 +19900103,900,196,1,0 +19900103,900,197,1,0 +19900103,900,198,1,0 +19900103,900,201,1,0 +19900103,900,202,1,0 +19900103,900,205,1,0 +19900103,900,208,1,0 +19900103,900,209,1,0 +19900103,900,210,1,0 +19900103,900,211,1,0 +19900103,900,212,1,0 +19900103,900,213,1,0 +19900103,900,228,1,0 +19900103,900,235,1,0 +19900103,900,236,111,289 +19900103,900,238,1,0 +19900103,900,59,1,0 +19900103,900,78,1,0 +19900103,900,79,1,0 +19900103,900,136,1,0 +19900103,900,137,1,0 +19900103,900,151,1,0 +19900103,900,159,1,0 +19900103,900,164,1,0 +19900103,900,165,1,0 +19900103,900,166,1,0 +19900103,900,167,1,0 +19900103,900,168,1,0 +19900103,900,186,1,0 +19900103,900,187,1,0 +19900103,900,188,1,0 +19900103,900,229,1,0 +19900103,900,230,1,0 +19900103,900,231,1,0 +19900103,900,232,1,0 +19900103,900,243,1,0 +19900103,900,244,1,0 +19900103,900,245,1,0 +19900103,900,228246,1,0 +19900103,900,228247,1,0 +19900103,1200,133,100,1000 +19900103,1200,133,100,975 +19900103,1200,133,100,950 +19900103,1200,133,100,925 +19900103,1200,133,100,900 +19900103,1200,133,100,875 +19900103,1200,133,100,850 +19900103,1200,133,100,825 +19900103,1200,133,100,800 +19900103,1200,133,100,775 +19900103,1200,133,100,750 +19900103,1200,133,100,740 +19900103,1200,133,100,700 +19900103,1200,133,100,650 +19900103,1200,133,100,620 +19900103,1200,133,100,600 +19900103,1200,133,100,550 +19900103,1200,133,100,500 +19900103,1200,133,100,450 +19900103,1200,133,100,400 +19900103,1200,133,100,375 +19900103,1200,133,100,350 +19900103,1200,133,100,300 +19900103,1200,133,100,250 +19900103,1200,133,100,245 +19900103,1200,133,100,225 +19900103,1200,133,100,200 +19900103,1200,133,100,175 +19900103,1200,133,100,150 +19900103,1200,133,100,125 +19900103,1200,133,100,100 +19900103,1200,133,100,70 +19900103,1200,133,100,50 +19900103,1200,133,100,30 +19900103,1200,133,100,20 +19900103,1200,133,100,10 +19900103,1200,133,100,9 +19900103,1200,133,100,7 +19900103,1200,133,100,5 +19900103,1200,133,100,3 +19900103,1200,133,100,2 +19900103,1200,133,100,1 +19900103,1200,133,210,40 +19900103,1200,3,117,2000 +19900103,1200,133,109,1 +19900103,1200,133,109,2 +19900103,1200,133,109,3 +19900103,1200,133,109,4 +19900103,1200,133,109,5 +19900103,1200,133,109,6 +19900103,1200,133,109,7 +19900103,1200,133,109,8 +19900103,1200,133,109,9 +19900103,1200,133,109,10 +19900103,1200,246,109,1 +19900103,1200,246,109,2 +19900103,1200,246,109,3 +19900103,1200,246,109,4 +19900103,1200,246,109,5 +19900103,1200,246,109,6 +19900103,1200,246,109,7 +19900103,1200,246,109,8 +19900103,1200,246,109,9 +19900103,1200,246,109,10 +19900103,1200,247,109,1 +19900103,1200,247,109,2 +19900103,1200,247,109,3 +19900103,1200,247,109,4 +19900103,1200,247,109,5 +19900103,1200,247,109,6 +19900103,1200,247,109,7 +19900103,1200,247,109,8 +19900103,1200,247,109,9 +19900103,1200,247,109,10 +19900103,1200,248,109,1 +19900103,1200,248,109,2 +19900103,1200,248,109,3 +19900103,1200,248,109,4 +19900103,1200,248,109,5 +19900103,1200,248,109,6 +19900103,1200,248,109,7 +19900103,1200,248,109,8 +19900103,1200,248,109,9 +19900103,1200,248,109,10 +19900103,1200,8,1,0 +19900103,1200,31,1,0 +19900103,1200,32,1,0 +19900103,1200,33,1,0 +19900103,1200,34,1,0 +19900103,1200,35,111,7 +19900103,1200,36,111,28 +19900103,1200,37,111,100 +19900103,1200,38,111,289 +19900103,1200,39,111,7 +19900103,1200,40,111,28 +19900103,1200,41,111,100 +19900103,1200,42,111,289 +19900103,1200,44,1,0 +19900103,1200,45,1,0 +19900103,1200,49,1,0 +19900103,1200,50,1,0 +19900103,1200,57,1,0 +19900103,1200,58,1,0 +19900103,1200,123,1,0 +19900103,1200,139,111,7 +19900103,1200,141,1,0 +19900103,1200,142,1,0 +19900103,1200,143,1,0 +19900103,1200,144,1,0 +19900103,1200,145,1,0 +19900103,1200,146,1,0 +19900103,1200,147,1,0 +19900103,1200,148,1,0 +19900103,1200,169,1,0 +19900103,1200,170,111,28 +19900103,1200,172,1,0 +19900103,1200,175,1,0 +19900103,1200,176,1,0 +19900103,1200,177,1,0 +19900103,1200,178,1,0 +19900103,1200,179,1,0 +19900103,1200,180,1,0 +19900103,1200,181,1,0 +19900103,1200,182,1,0 +19900103,1200,183,111,100 +19900103,1200,189,1,0 +19900103,1200,195,1,0 +19900103,1200,196,1,0 +19900103,1200,197,1,0 +19900103,1200,198,1,0 +19900103,1200,201,1,0 +19900103,1200,202,1,0 +19900103,1200,205,1,0 +19900103,1200,208,1,0 +19900103,1200,209,1,0 +19900103,1200,210,1,0 +19900103,1200,211,1,0 +19900103,1200,212,1,0 +19900103,1200,213,1,0 +19900103,1200,228,1,0 +19900103,1200,235,1,0 +19900103,1200,236,111,289 +19900103,1200,238,1,0 +19900103,1200,59,1,0 +19900103,1200,78,1,0 +19900103,1200,79,1,0 +19900103,1200,136,1,0 +19900103,1200,137,1,0 +19900103,1200,151,1,0 +19900103,1200,159,1,0 +19900103,1200,164,1,0 +19900103,1200,165,1,0 +19900103,1200,166,1,0 +19900103,1200,167,1,0 +19900103,1200,168,1,0 +19900103,1200,186,1,0 +19900103,1200,187,1,0 +19900103,1200,188,1,0 +19900103,1200,229,1,0 +19900103,1200,230,1,0 +19900103,1200,231,1,0 +19900103,1200,232,1,0 +19900103,1200,243,1,0 +19900103,1200,244,1,0 +19900103,1200,245,1,0 +19900103,1200,228246,1,0 +19900103,1200,228247,1,0 +19900103,1500,8,1,0 +19900103,1500,31,1,0 +19900103,1500,32,1,0 +19900103,1500,33,1,0 +19900103,1500,34,1,0 +19900103,1500,35,111,7 +19900103,1500,36,111,28 +19900103,1500,37,111,100 +19900103,1500,38,111,289 +19900103,1500,39,111,7 +19900103,1500,40,111,28 +19900103,1500,41,111,100 +19900103,1500,42,111,289 +19900103,1500,44,1,0 +19900103,1500,45,1,0 +19900103,1500,49,1,0 +19900103,1500,50,1,0 +19900103,1500,57,1,0 +19900103,1500,58,1,0 +19900103,1500,123,1,0 +19900103,1500,139,111,7 +19900103,1500,141,1,0 +19900103,1500,142,1,0 +19900103,1500,143,1,0 +19900103,1500,144,1,0 +19900103,1500,145,1,0 +19900103,1500,146,1,0 +19900103,1500,147,1,0 +19900103,1500,148,1,0 +19900103,1500,169,1,0 +19900103,1500,170,111,28 +19900103,1500,172,1,0 +19900103,1500,175,1,0 +19900103,1500,176,1,0 +19900103,1500,177,1,0 +19900103,1500,178,1,0 +19900103,1500,179,1,0 +19900103,1500,180,1,0 +19900103,1500,181,1,0 +19900103,1500,182,1,0 +19900103,1500,183,111,100 +19900103,1500,189,1,0 +19900103,1500,195,1,0 +19900103,1500,196,1,0 +19900103,1500,197,1,0 +19900103,1500,198,1,0 +19900103,1500,201,1,0 +19900103,1500,202,1,0 +19900103,1500,205,1,0 +19900103,1500,208,1,0 +19900103,1500,209,1,0 +19900103,1500,210,1,0 +19900103,1500,211,1,0 +19900103,1500,212,1,0 +19900103,1500,213,1,0 +19900103,1500,228,1,0 +19900103,1500,235,1,0 +19900103,1500,236,111,289 +19900103,1500,238,1,0 +19900103,1500,59,1,0 +19900103,1500,78,1,0 +19900103,1500,79,1,0 +19900103,1500,136,1,0 +19900103,1500,137,1,0 +19900103,1500,151,1,0 +19900103,1500,159,1,0 +19900103,1500,164,1,0 +19900103,1500,165,1,0 +19900103,1500,166,1,0 +19900103,1500,167,1,0 +19900103,1500,168,1,0 +19900103,1500,186,1,0 +19900103,1500,187,1,0 +19900103,1500,188,1,0 +19900103,1500,229,1,0 +19900103,1500,230,1,0 +19900103,1500,231,1,0 +19900103,1500,232,1,0 +19900103,1500,243,1,0 +19900103,1500,244,1,0 +19900103,1500,245,1,0 +19900103,1500,228246,1,0 +19900103,1500,228247,1,0 +19900103,1800,133,100,1000 +19900103,1800,133,100,975 +19900103,1800,133,100,950 +19900103,1800,133,100,925 +19900103,1800,133,100,900 +19900103,1800,133,100,875 +19900103,1800,133,100,850 +19900103,1800,133,100,825 +19900103,1800,133,100,800 +19900103,1800,133,100,775 +19900103,1800,133,100,750 +19900103,1800,133,100,740 +19900103,1800,133,100,700 +19900103,1800,133,100,650 +19900103,1800,133,100,620 +19900103,1800,133,100,600 +19900103,1800,133,100,550 +19900103,1800,133,100,500 +19900103,1800,133,100,450 +19900103,1800,133,100,400 +19900103,1800,133,100,375 +19900103,1800,133,100,350 +19900103,1800,133,100,300 +19900103,1800,133,100,250 +19900103,1800,133,100,245 +19900103,1800,133,100,225 +19900103,1800,133,100,200 +19900103,1800,133,100,175 +19900103,1800,133,100,150 +19900103,1800,133,100,125 +19900103,1800,133,100,100 +19900103,1800,133,100,70 +19900103,1800,133,100,50 +19900103,1800,133,100,30 +19900103,1800,133,100,20 +19900103,1800,133,100,10 +19900103,1800,133,100,9 +19900103,1800,133,100,7 +19900103,1800,133,100,5 +19900103,1800,133,100,3 +19900103,1800,133,100,2 +19900103,1800,133,100,1 +19900103,1800,133,210,40 +19900103,1800,3,117,2000 +19900103,1800,133,109,1 +19900103,1800,133,109,2 +19900103,1800,133,109,3 +19900103,1800,133,109,4 +19900103,1800,133,109,5 +19900103,1800,133,109,6 +19900103,1800,133,109,7 +19900103,1800,133,109,8 +19900103,1800,133,109,9 +19900103,1800,133,109,10 +19900103,1800,246,109,1 +19900103,1800,246,109,2 +19900103,1800,246,109,3 +19900103,1800,246,109,4 +19900103,1800,246,109,5 +19900103,1800,246,109,6 +19900103,1800,246,109,7 +19900103,1800,246,109,8 +19900103,1800,246,109,9 +19900103,1800,246,109,10 +19900103,1800,247,109,1 +19900103,1800,247,109,2 +19900103,1800,247,109,3 +19900103,1800,247,109,4 +19900103,1800,247,109,5 +19900103,1800,247,109,6 +19900103,1800,247,109,7 +19900103,1800,247,109,8 +19900103,1800,247,109,9 +19900103,1800,247,109,10 +19900103,1800,248,109,1 +19900103,1800,248,109,2 +19900103,1800,248,109,3 +19900103,1800,248,109,4 +19900103,1800,248,109,5 +19900103,1800,248,109,6 +19900103,1800,248,109,7 +19900103,1800,248,109,8 +19900103,1800,248,109,9 +19900103,1800,248,109,10 +19900103,1800,8,1,0 +19900103,1800,31,1,0 +19900103,1800,32,1,0 +19900103,1800,33,1,0 +19900103,1800,34,1,0 +19900103,1800,35,111,7 +19900103,1800,36,111,28 +19900103,1800,37,111,100 +19900103,1800,38,111,289 +19900103,1800,39,111,7 +19900103,1800,40,111,28 +19900103,1800,41,111,100 +19900103,1800,42,111,289 +19900103,1800,44,1,0 +19900103,1800,45,1,0 +19900103,1800,49,1,0 +19900103,1800,50,1,0 +19900103,1800,57,1,0 +19900103,1800,58,1,0 +19900103,1800,123,1,0 +19900103,1800,139,111,7 +19900103,1800,141,1,0 +19900103,1800,142,1,0 +19900103,1800,143,1,0 +19900103,1800,144,1,0 +19900103,1800,145,1,0 +19900103,1800,146,1,0 +19900103,1800,147,1,0 +19900103,1800,148,1,0 +19900103,1800,169,1,0 +19900103,1800,170,111,28 +19900103,1800,172,1,0 +19900103,1800,175,1,0 +19900103,1800,176,1,0 +19900103,1800,177,1,0 +19900103,1800,178,1,0 +19900103,1800,179,1,0 +19900103,1800,180,1,0 +19900103,1800,181,1,0 +19900103,1800,182,1,0 +19900103,1800,183,111,100 +19900103,1800,189,1,0 +19900103,1800,195,1,0 +19900103,1800,196,1,0 +19900103,1800,197,1,0 +19900103,1800,198,1,0 +19900103,1800,201,1,0 +19900103,1800,202,1,0 +19900103,1800,205,1,0 +19900103,1800,208,1,0 +19900103,1800,209,1,0 +19900103,1800,210,1,0 +19900103,1800,211,1,0 +19900103,1800,212,1,0 +19900103,1800,213,1,0 +19900103,1800,228,1,0 +19900103,1800,235,1,0 +19900103,1800,236,111,289 +19900103,1800,238,1,0 +19900103,1800,59,1,0 +19900103,1800,78,1,0 +19900103,1800,79,1,0 +19900103,1800,136,1,0 +19900103,1800,137,1,0 +19900103,1800,151,1,0 +19900103,1800,159,1,0 +19900103,1800,164,1,0 +19900103,1800,165,1,0 +19900103,1800,166,1,0 +19900103,1800,167,1,0 +19900103,1800,168,1,0 +19900103,1800,186,1,0 +19900103,1800,187,1,0 +19900103,1800,188,1,0 +19900103,1800,229,1,0 +19900103,1800,230,1,0 +19900103,1800,231,1,0 +19900103,1800,232,1,0 +19900103,1800,243,1,0 +19900103,1800,244,1,0 +19900103,1800,245,1,0 +19900103,1800,228246,1,0 +19900103,1800,228247,1,0 +19900103,2100,8,1,0 +19900103,2100,31,1,0 +19900103,2100,32,1,0 +19900103,2100,33,1,0 +19900103,2100,34,1,0 +19900103,2100,35,111,7 +19900103,2100,36,111,28 +19900103,2100,37,111,100 +19900103,2100,38,111,289 +19900103,2100,39,111,7 +19900103,2100,40,111,28 +19900103,2100,41,111,100 +19900103,2100,42,111,289 +19900103,2100,44,1,0 +19900103,2100,45,1,0 +19900103,2100,49,1,0 +19900103,2100,50,1,0 +19900103,2100,57,1,0 +19900103,2100,58,1,0 +19900103,2100,123,1,0 +19900103,2100,139,111,7 +19900103,2100,141,1,0 +19900103,2100,142,1,0 +19900103,2100,143,1,0 +19900103,2100,144,1,0 +19900103,2100,145,1,0 +19900103,2100,146,1,0 +19900103,2100,147,1,0 +19900103,2100,148,1,0 +19900103,2100,169,1,0 +19900103,2100,170,111,28 +19900103,2100,172,1,0 +19900103,2100,175,1,0 +19900103,2100,176,1,0 +19900103,2100,177,1,0 +19900103,2100,178,1,0 +19900103,2100,179,1,0 +19900103,2100,180,1,0 +19900103,2100,181,1,0 +19900103,2100,182,1,0 +19900103,2100,183,111,100 +19900103,2100,189,1,0 +19900103,2100,195,1,0 +19900103,2100,196,1,0 +19900103,2100,197,1,0 +19900103,2100,198,1,0 +19900103,2100,201,1,0 +19900103,2100,202,1,0 +19900103,2100,205,1,0 +19900103,2100,208,1,0 +19900103,2100,209,1,0 +19900103,2100,210,1,0 +19900103,2100,211,1,0 +19900103,2100,212,1,0 +19900103,2100,213,1,0 +19900103,2100,228,1,0 +19900103,2100,235,1,0 +19900103,2100,236,111,289 +19900103,2100,238,1,0 +19900103,2100,59,1,0 +19900103,2100,78,1,0 +19900103,2100,79,1,0 +19900103,2100,136,1,0 +19900103,2100,137,1,0 +19900103,2100,151,1,0 +19900103,2100,159,1,0 +19900103,2100,164,1,0 +19900103,2100,165,1,0 +19900103,2100,166,1,0 +19900103,2100,167,1,0 +19900103,2100,168,1,0 +19900103,2100,186,1,0 +19900103,2100,187,1,0 +19900103,2100,188,1,0 +19900103,2100,229,1,0 +19900103,2100,230,1,0 +19900103,2100,231,1,0 +19900103,2100,232,1,0 +19900103,2100,243,1,0 +19900103,2100,244,1,0 +19900103,2100,245,1,0 +19900103,2100,228246,1,0 +19900103,2100,228247,1,0 +19900104,0,133,100,1000 +19900104,0,133,100,975 +19900104,0,133,100,950 +19900104,0,133,100,925 +19900104,0,133,100,900 +19900104,0,133,100,875 +19900104,0,133,100,850 +19900104,0,133,100,825 +19900104,0,133,100,800 +19900104,0,133,100,775 +19900104,0,133,100,750 +19900104,0,133,100,740 +19900104,0,133,100,700 +19900104,0,133,100,650 +19900104,0,133,100,620 +19900104,0,133,100,600 +19900104,0,133,100,550 +19900104,0,133,100,500 +19900104,0,133,100,450 +19900104,0,133,100,400 +19900104,0,133,100,375 +19900104,0,133,100,350 +19900104,0,133,100,300 +19900104,0,133,100,250 +19900104,0,133,100,245 +19900104,0,133,100,225 +19900104,0,133,100,200 +19900104,0,133,100,175 +19900104,0,133,100,150 +19900104,0,133,100,125 +19900104,0,133,100,100 +19900104,0,133,100,70 +19900104,0,133,100,50 +19900104,0,133,100,30 +19900104,0,133,100,20 +19900104,0,133,100,10 +19900104,0,133,100,9 +19900104,0,133,100,7 +19900104,0,133,100,5 +19900104,0,133,100,3 +19900104,0,133,100,2 +19900104,0,133,100,1 +19900104,0,133,210,40 +19900104,0,3,117,2000 +19900104,0,133,109,1 +19900104,0,133,109,2 +19900104,0,133,109,3 +19900104,0,133,109,4 +19900104,0,133,109,5 +19900104,0,133,109,6 +19900104,0,133,109,7 +19900104,0,133,109,8 +19900104,0,133,109,9 +19900104,0,133,109,10 +19900104,0,246,109,1 +19900104,0,246,109,2 +19900104,0,246,109,3 +19900104,0,246,109,4 +19900104,0,246,109,5 +19900104,0,246,109,6 +19900104,0,246,109,7 +19900104,0,246,109,8 +19900104,0,246,109,9 +19900104,0,246,109,10 +19900104,0,247,109,1 +19900104,0,247,109,2 +19900104,0,247,109,3 +19900104,0,247,109,4 +19900104,0,247,109,5 +19900104,0,247,109,6 +19900104,0,247,109,7 +19900104,0,247,109,8 +19900104,0,247,109,9 +19900104,0,247,109,10 +19900104,0,248,109,1 +19900104,0,248,109,2 +19900104,0,248,109,3 +19900104,0,248,109,4 +19900104,0,248,109,5 +19900104,0,248,109,6 +19900104,0,248,109,7 +19900104,0,248,109,8 +19900104,0,248,109,9 +19900104,0,248,109,10 +19900104,0,8,1,0 +19900104,0,31,1,0 +19900104,0,32,1,0 +19900104,0,33,1,0 +19900104,0,34,1,0 +19900104,0,35,111,7 +19900104,0,36,111,28 +19900104,0,37,111,100 +19900104,0,38,111,289 +19900104,0,39,111,7 +19900104,0,40,111,28 +19900104,0,41,111,100 +19900104,0,42,111,289 +19900104,0,44,1,0 +19900104,0,45,1,0 +19900104,0,49,1,0 +19900104,0,50,1,0 +19900104,0,57,1,0 +19900104,0,58,1,0 +19900104,0,123,1,0 +19900104,0,139,111,7 +19900104,0,141,1,0 +19900104,0,142,1,0 +19900104,0,143,1,0 +19900104,0,144,1,0 +19900104,0,145,1,0 +19900104,0,146,1,0 +19900104,0,147,1,0 +19900104,0,148,1,0 +19900104,0,169,1,0 +19900104,0,170,111,28 +19900104,0,172,1,0 +19900104,0,175,1,0 +19900104,0,176,1,0 +19900104,0,177,1,0 +19900104,0,178,1,0 +19900104,0,179,1,0 +19900104,0,180,1,0 +19900104,0,181,1,0 +19900104,0,182,1,0 +19900104,0,183,111,100 +19900104,0,189,1,0 +19900104,0,195,1,0 +19900104,0,196,1,0 +19900104,0,197,1,0 +19900104,0,198,1,0 +19900104,0,201,1,0 +19900104,0,202,1,0 +19900104,0,205,1,0 +19900104,0,208,1,0 +19900104,0,209,1,0 +19900104,0,210,1,0 +19900104,0,211,1,0 +19900104,0,212,1,0 +19900104,0,213,1,0 +19900104,0,228,1,0 +19900104,0,235,1,0 +19900104,0,236,111,289 +19900104,0,238,1,0 +19900104,0,59,1,0 +19900104,0,78,1,0 +19900104,0,79,1,0 +19900104,0,136,1,0 +19900104,0,137,1,0 +19900104,0,151,1,0 +19900104,0,159,1,0 +19900104,0,164,1,0 +19900104,0,165,1,0 +19900104,0,166,1,0 +19900104,0,167,1,0 +19900104,0,168,1,0 +19900104,0,186,1,0 +19900104,0,187,1,0 +19900104,0,188,1,0 +19900104,0,229,1,0 +19900104,0,230,1,0 +19900104,0,231,1,0 +19900104,0,232,1,0 +19900104,0,243,1,0 +19900104,0,244,1,0 +19900104,0,245,1,0 +19900104,0,228246,1,0 +19900104,0,228247,1,0 +19900104,300,8,1,0 +19900104,300,31,1,0 +19900104,300,32,1,0 +19900104,300,33,1,0 +19900104,300,34,1,0 +19900104,300,35,111,7 +19900104,300,36,111,28 +19900104,300,37,111,100 +19900104,300,38,111,289 +19900104,300,39,111,7 +19900104,300,40,111,28 +19900104,300,41,111,100 +19900104,300,42,111,289 +19900104,300,44,1,0 +19900104,300,45,1,0 +19900104,300,49,1,0 +19900104,300,50,1,0 +19900104,300,57,1,0 +19900104,300,58,1,0 +19900104,300,123,1,0 +19900104,300,139,111,7 +19900104,300,141,1,0 +19900104,300,142,1,0 +19900104,300,143,1,0 +19900104,300,144,1,0 +19900104,300,145,1,0 +19900104,300,146,1,0 +19900104,300,147,1,0 +19900104,300,148,1,0 +19900104,300,169,1,0 +19900104,300,170,111,28 +19900104,300,172,1,0 +19900104,300,175,1,0 +19900104,300,176,1,0 +19900104,300,177,1,0 +19900104,300,178,1,0 +19900104,300,179,1,0 +19900104,300,180,1,0 +19900104,300,181,1,0 +19900104,300,182,1,0 +19900104,300,183,111,100 +19900104,300,189,1,0 +19900104,300,195,1,0 +19900104,300,196,1,0 +19900104,300,197,1,0 +19900104,300,198,1,0 +19900104,300,201,1,0 +19900104,300,202,1,0 +19900104,300,205,1,0 +19900104,300,208,1,0 +19900104,300,209,1,0 +19900104,300,210,1,0 +19900104,300,211,1,0 +19900104,300,212,1,0 +19900104,300,213,1,0 +19900104,300,228,1,0 +19900104,300,235,1,0 +19900104,300,236,111,289 +19900104,300,238,1,0 +19900104,300,59,1,0 +19900104,300,78,1,0 +19900104,300,79,1,0 +19900104,300,136,1,0 +19900104,300,137,1,0 +19900104,300,151,1,0 +19900104,300,159,1,0 +19900104,300,164,1,0 +19900104,300,165,1,0 +19900104,300,166,1,0 +19900104,300,167,1,0 +19900104,300,168,1,0 +19900104,300,186,1,0 +19900104,300,187,1,0 +19900104,300,188,1,0 +19900104,300,229,1,0 +19900104,300,230,1,0 +19900104,300,231,1,0 +19900104,300,232,1,0 +19900104,300,243,1,0 +19900104,300,244,1,0 +19900104,300,245,1,0 +19900104,300,228246,1,0 +19900104,300,228247,1,0 +19900104,600,133,100,1000 +19900104,600,133,100,975 +19900104,600,133,100,950 +19900104,600,133,100,925 +19900104,600,133,100,900 +19900104,600,133,100,875 +19900104,600,133,100,850 +19900104,600,133,100,825 +19900104,600,133,100,800 +19900104,600,133,100,775 +19900104,600,133,100,750 +19900104,600,133,100,740 +19900104,600,133,100,700 +19900104,600,133,100,650 +19900104,600,133,100,620 +19900104,600,133,100,600 +19900104,600,133,100,550 +19900104,600,133,100,500 +19900104,600,133,100,450 +19900104,600,133,100,400 +19900104,600,133,100,375 +19900104,600,133,100,350 +19900104,600,133,100,300 +19900104,600,133,100,250 +19900104,600,133,100,245 +19900104,600,133,100,225 +19900104,600,133,100,200 +19900104,600,133,100,175 +19900104,600,133,100,150 +19900104,600,133,100,125 +19900104,600,133,100,100 +19900104,600,133,100,70 +19900104,600,133,100,50 +19900104,600,133,100,30 +19900104,600,133,100,20 +19900104,600,133,100,10 +19900104,600,133,100,9 +19900104,600,133,100,7 +19900104,600,133,100,5 +19900104,600,133,100,3 +19900104,600,133,100,2 +19900104,600,133,100,1 +19900104,600,133,210,40 +19900104,600,3,117,2000 +19900104,600,133,109,1 +19900104,600,133,109,2 +19900104,600,133,109,3 +19900104,600,133,109,4 +19900104,600,133,109,5 +19900104,600,133,109,6 +19900104,600,133,109,7 +19900104,600,133,109,8 +19900104,600,133,109,9 +19900104,600,133,109,10 +19900104,600,246,109,1 +19900104,600,246,109,2 +19900104,600,246,109,3 +19900104,600,246,109,4 +19900104,600,246,109,5 +19900104,600,246,109,6 +19900104,600,246,109,7 +19900104,600,246,109,8 +19900104,600,246,109,9 +19900104,600,246,109,10 +19900104,600,247,109,1 +19900104,600,247,109,2 +19900104,600,247,109,3 +19900104,600,247,109,4 +19900104,600,247,109,5 +19900104,600,247,109,6 +19900104,600,247,109,7 +19900104,600,247,109,8 +19900104,600,247,109,9 +19900104,600,247,109,10 +19900104,600,248,109,1 +19900104,600,248,109,2 +19900104,600,248,109,3 +19900104,600,248,109,4 +19900104,600,248,109,5 +19900104,600,248,109,6 +19900104,600,248,109,7 +19900104,600,248,109,8 +19900104,600,248,109,9 +19900104,600,248,109,10 +19900104,600,8,1,0 +19900104,600,31,1,0 +19900104,600,32,1,0 +19900104,600,33,1,0 +19900104,600,34,1,0 +19900104,600,35,111,7 +19900104,600,36,111,28 +19900104,600,37,111,100 +19900104,600,38,111,289 +19900104,600,39,111,7 +19900104,600,40,111,28 +19900104,600,41,111,100 +19900104,600,42,111,289 +19900104,600,44,1,0 +19900104,600,45,1,0 +19900104,600,49,1,0 +19900104,600,50,1,0 +19900104,600,57,1,0 +19900104,600,58,1,0 +19900104,600,123,1,0 +19900104,600,139,111,7 +19900104,600,141,1,0 +19900104,600,142,1,0 +19900104,600,143,1,0 +19900104,600,144,1,0 +19900104,600,145,1,0 +19900104,600,146,1,0 +19900104,600,147,1,0 +19900104,600,148,1,0 +19900104,600,169,1,0 +19900104,600,170,111,28 +19900104,600,172,1,0 +19900104,600,175,1,0 +19900104,600,176,1,0 +19900104,600,177,1,0 +19900104,600,178,1,0 +19900104,600,179,1,0 +19900104,600,180,1,0 +19900104,600,181,1,0 +19900104,600,182,1,0 +19900104,600,183,111,100 +19900104,600,189,1,0 +19900104,600,195,1,0 +19900104,600,196,1,0 +19900104,600,197,1,0 +19900104,600,198,1,0 +19900104,600,201,1,0 +19900104,600,202,1,0 +19900104,600,205,1,0 +19900104,600,208,1,0 +19900104,600,209,1,0 +19900104,600,210,1,0 +19900104,600,211,1,0 +19900104,600,212,1,0 +19900104,600,213,1,0 +19900104,600,228,1,0 +19900104,600,235,1,0 +19900104,600,236,111,289 +19900104,600,238,1,0 +19900104,600,59,1,0 +19900104,600,78,1,0 +19900104,600,79,1,0 +19900104,600,136,1,0 +19900104,600,137,1,0 +19900104,600,151,1,0 +19900104,600,159,1,0 +19900104,600,164,1,0 +19900104,600,165,1,0 +19900104,600,166,1,0 +19900104,600,167,1,0 +19900104,600,168,1,0 +19900104,600,186,1,0 +19900104,600,187,1,0 +19900104,600,188,1,0 +19900104,600,229,1,0 +19900104,600,230,1,0 +19900104,600,231,1,0 +19900104,600,232,1,0 +19900104,600,243,1,0 +19900104,600,244,1,0 +19900104,600,245,1,0 +19900104,600,228246,1,0 +19900104,600,228247,1,0 +19900104,900,8,1,0 +19900104,900,31,1,0 +19900104,900,32,1,0 +19900104,900,33,1,0 +19900104,900,34,1,0 +19900104,900,35,111,7 +19900104,900,36,111,28 +19900104,900,37,111,100 +19900104,900,38,111,289 +19900104,900,39,111,7 +19900104,900,40,111,28 +19900104,900,41,111,100 +19900104,900,42,111,289 +19900104,900,44,1,0 +19900104,900,45,1,0 +19900104,900,49,1,0 +19900104,900,50,1,0 +19900104,900,57,1,0 +19900104,900,58,1,0 +19900104,900,123,1,0 +19900104,900,139,111,7 +19900104,900,141,1,0 +19900104,900,142,1,0 +19900104,900,143,1,0 +19900104,900,144,1,0 +19900104,900,145,1,0 +19900104,900,146,1,0 +19900104,900,147,1,0 +19900104,900,148,1,0 +19900104,900,169,1,0 +19900104,900,170,111,28 +19900104,900,172,1,0 +19900104,900,175,1,0 +19900104,900,176,1,0 +19900104,900,177,1,0 +19900104,900,178,1,0 +19900104,900,179,1,0 +19900104,900,180,1,0 +19900104,900,181,1,0 +19900104,900,182,1,0 +19900104,900,183,111,100 +19900104,900,189,1,0 +19900104,900,195,1,0 +19900104,900,196,1,0 +19900104,900,197,1,0 +19900104,900,198,1,0 +19900104,900,201,1,0 +19900104,900,202,1,0 +19900104,900,205,1,0 +19900104,900,208,1,0 +19900104,900,209,1,0 +19900104,900,210,1,0 +19900104,900,211,1,0 +19900104,900,212,1,0 +19900104,900,213,1,0 +19900104,900,228,1,0 +19900104,900,235,1,0 +19900104,900,236,111,289 +19900104,900,238,1,0 +19900104,900,59,1,0 +19900104,900,78,1,0 +19900104,900,79,1,0 +19900104,900,136,1,0 +19900104,900,137,1,0 +19900104,900,151,1,0 +19900104,900,159,1,0 +19900104,900,164,1,0 +19900104,900,165,1,0 +19900104,900,166,1,0 +19900104,900,167,1,0 +19900104,900,168,1,0 +19900104,900,186,1,0 +19900104,900,187,1,0 +19900104,900,188,1,0 +19900104,900,229,1,0 +19900104,900,230,1,0 +19900104,900,231,1,0 +19900104,900,232,1,0 +19900104,900,243,1,0 +19900104,900,244,1,0 +19900104,900,245,1,0 +19900104,900,228246,1,0 +19900104,900,228247,1,0 +19900104,1200,133,100,1000 +19900104,1200,133,100,975 +19900104,1200,133,100,950 +19900104,1200,133,100,925 +19900104,1200,133,100,900 +19900104,1200,133,100,875 +19900104,1200,133,100,850 +19900104,1200,133,100,825 +19900104,1200,133,100,800 +19900104,1200,133,100,775 +19900104,1200,133,100,750 +19900104,1200,133,100,740 +19900104,1200,133,100,700 +19900104,1200,133,100,650 +19900104,1200,133,100,620 +19900104,1200,133,100,600 +19900104,1200,133,100,550 +19900104,1200,133,100,500 +19900104,1200,133,100,450 +19900104,1200,133,100,400 +19900104,1200,133,100,375 +19900104,1200,133,100,350 +19900104,1200,133,100,300 +19900104,1200,133,100,250 +19900104,1200,133,100,245 +19900104,1200,133,100,225 +19900104,1200,133,100,200 +19900104,1200,133,100,175 +19900104,1200,133,100,150 +19900104,1200,133,100,125 +19900104,1200,133,100,100 +19900104,1200,133,100,70 +19900104,1200,133,100,50 +19900104,1200,133,100,30 +19900104,1200,133,100,20 +19900104,1200,133,100,10 +19900104,1200,133,100,9 +19900104,1200,133,100,7 +19900104,1200,133,100,5 +19900104,1200,133,100,3 +19900104,1200,133,100,2 +19900104,1200,133,100,1 +19900104,1200,133,210,40 +19900104,1200,3,117,2000 +19900104,1200,133,109,1 +19900104,1200,133,109,2 +19900104,1200,133,109,3 +19900104,1200,133,109,4 +19900104,1200,133,109,5 +19900104,1200,133,109,6 +19900104,1200,133,109,7 +19900104,1200,133,109,8 +19900104,1200,133,109,9 +19900104,1200,133,109,10 +19900104,1200,246,109,1 +19900104,1200,246,109,2 +19900104,1200,246,109,3 +19900104,1200,246,109,4 +19900104,1200,246,109,5 +19900104,1200,246,109,6 +19900104,1200,246,109,7 +19900104,1200,246,109,8 +19900104,1200,246,109,9 +19900104,1200,246,109,10 +19900104,1200,247,109,1 +19900104,1200,247,109,2 +19900104,1200,247,109,3 +19900104,1200,247,109,4 +19900104,1200,247,109,5 +19900104,1200,247,109,6 +19900104,1200,247,109,7 +19900104,1200,247,109,8 +19900104,1200,247,109,9 +19900104,1200,247,109,10 +19900104,1200,248,109,1 +19900104,1200,248,109,2 +19900104,1200,248,109,3 +19900104,1200,248,109,4 +19900104,1200,248,109,5 +19900104,1200,248,109,6 +19900104,1200,248,109,7 +19900104,1200,248,109,8 +19900104,1200,248,109,9 +19900104,1200,248,109,10 +19900104,1200,8,1,0 +19900104,1200,31,1,0 +19900104,1200,32,1,0 +19900104,1200,33,1,0 +19900104,1200,34,1,0 +19900104,1200,35,111,7 +19900104,1200,36,111,28 +19900104,1200,37,111,100 +19900104,1200,38,111,289 +19900104,1200,39,111,7 +19900104,1200,40,111,28 +19900104,1200,41,111,100 +19900104,1200,42,111,289 +19900104,1200,44,1,0 +19900104,1200,45,1,0 +19900104,1200,49,1,0 +19900104,1200,50,1,0 +19900104,1200,57,1,0 +19900104,1200,58,1,0 +19900104,1200,123,1,0 +19900104,1200,139,111,7 +19900104,1200,141,1,0 +19900104,1200,142,1,0 +19900104,1200,143,1,0 +19900104,1200,144,1,0 +19900104,1200,145,1,0 +19900104,1200,146,1,0 +19900104,1200,147,1,0 +19900104,1200,148,1,0 +19900104,1200,169,1,0 +19900104,1200,170,111,28 +19900104,1200,172,1,0 +19900104,1200,175,1,0 +19900104,1200,176,1,0 +19900104,1200,177,1,0 +19900104,1200,178,1,0 +19900104,1200,179,1,0 +19900104,1200,180,1,0 +19900104,1200,181,1,0 +19900104,1200,182,1,0 +19900104,1200,183,111,100 +19900104,1200,189,1,0 +19900104,1200,195,1,0 +19900104,1200,196,1,0 +19900104,1200,197,1,0 +19900104,1200,198,1,0 +19900104,1200,201,1,0 +19900104,1200,202,1,0 +19900104,1200,205,1,0 +19900104,1200,208,1,0 +19900104,1200,209,1,0 +19900104,1200,210,1,0 +19900104,1200,211,1,0 +19900104,1200,212,1,0 +19900104,1200,213,1,0 +19900104,1200,228,1,0 +19900104,1200,235,1,0 +19900104,1200,236,111,289 +19900104,1200,238,1,0 +19900104,1200,59,1,0 +19900104,1200,78,1,0 +19900104,1200,79,1,0 +19900104,1200,136,1,0 +19900104,1200,137,1,0 +19900104,1200,151,1,0 +19900104,1200,159,1,0 +19900104,1200,164,1,0 +19900104,1200,165,1,0 +19900104,1200,166,1,0 +19900104,1200,167,1,0 +19900104,1200,168,1,0 +19900104,1200,186,1,0 +19900104,1200,187,1,0 +19900104,1200,188,1,0 +19900104,1200,229,1,0 +19900104,1200,230,1,0 +19900104,1200,231,1,0 +19900104,1200,232,1,0 +19900104,1200,243,1,0 +19900104,1200,244,1,0 +19900104,1200,245,1,0 +19900104,1200,228246,1,0 +19900104,1200,228247,1,0 +19900104,1500,8,1,0 +19900104,1500,31,1,0 +19900104,1500,32,1,0 +19900104,1500,33,1,0 +19900104,1500,34,1,0 +19900104,1500,35,111,7 +19900104,1500,36,111,28 +19900104,1500,37,111,100 +19900104,1500,38,111,289 +19900104,1500,39,111,7 +19900104,1500,40,111,28 +19900104,1500,41,111,100 +19900104,1500,42,111,289 +19900104,1500,44,1,0 +19900104,1500,45,1,0 +19900104,1500,49,1,0 +19900104,1500,50,1,0 +19900104,1500,57,1,0 +19900104,1500,58,1,0 +19900104,1500,123,1,0 +19900104,1500,139,111,7 +19900104,1500,141,1,0 +19900104,1500,142,1,0 +19900104,1500,143,1,0 +19900104,1500,144,1,0 +19900104,1500,145,1,0 +19900104,1500,146,1,0 +19900104,1500,147,1,0 +19900104,1500,148,1,0 +19900104,1500,169,1,0 +19900104,1500,170,111,28 +19900104,1500,172,1,0 +19900104,1500,175,1,0 +19900104,1500,176,1,0 +19900104,1500,177,1,0 +19900104,1500,178,1,0 +19900104,1500,179,1,0 +19900104,1500,180,1,0 +19900104,1500,181,1,0 +19900104,1500,182,1,0 +19900104,1500,183,111,100 +19900104,1500,189,1,0 +19900104,1500,195,1,0 +19900104,1500,196,1,0 +19900104,1500,197,1,0 +19900104,1500,198,1,0 +19900104,1500,201,1,0 +19900104,1500,202,1,0 +19900104,1500,205,1,0 +19900104,1500,208,1,0 +19900104,1500,209,1,0 +19900104,1500,210,1,0 +19900104,1500,211,1,0 +19900104,1500,212,1,0 +19900104,1500,213,1,0 +19900104,1500,228,1,0 +19900104,1500,235,1,0 +19900104,1500,236,111,289 +19900104,1500,238,1,0 +19900104,1500,59,1,0 +19900104,1500,78,1,0 +19900104,1500,79,1,0 +19900104,1500,136,1,0 +19900104,1500,137,1,0 +19900104,1500,151,1,0 +19900104,1500,159,1,0 +19900104,1500,164,1,0 +19900104,1500,165,1,0 +19900104,1500,166,1,0 +19900104,1500,167,1,0 +19900104,1500,168,1,0 +19900104,1500,186,1,0 +19900104,1500,187,1,0 +19900104,1500,188,1,0 +19900104,1500,229,1,0 +19900104,1500,230,1,0 +19900104,1500,231,1,0 +19900104,1500,232,1,0 +19900104,1500,243,1,0 +19900104,1500,244,1,0 +19900104,1500,245,1,0 +19900104,1500,228246,1,0 +19900104,1500,228247,1,0 +19900104,1800,133,100,1000 +19900104,1800,133,100,975 +19900104,1800,133,100,950 +19900104,1800,133,100,925 +19900104,1800,133,100,900 +19900104,1800,133,100,875 +19900104,1800,133,100,850 +19900104,1800,133,100,825 +19900104,1800,133,100,800 +19900104,1800,133,100,775 +19900104,1800,133,100,750 +19900104,1800,133,100,740 +19900104,1800,133,100,700 +19900104,1800,133,100,650 +19900104,1800,133,100,620 +19900104,1800,133,100,600 +19900104,1800,133,100,550 +19900104,1800,133,100,500 +19900104,1800,133,100,450 +19900104,1800,133,100,400 +19900104,1800,133,100,375 +19900104,1800,133,100,350 +19900104,1800,133,100,300 +19900104,1800,133,100,250 +19900104,1800,133,100,245 +19900104,1800,133,100,225 +19900104,1800,133,100,200 +19900104,1800,133,100,175 +19900104,1800,133,100,150 +19900104,1800,133,100,125 +19900104,1800,133,100,100 +19900104,1800,133,100,70 +19900104,1800,133,100,50 +19900104,1800,133,100,30 +19900104,1800,133,100,20 +19900104,1800,133,100,10 +19900104,1800,133,100,9 +19900104,1800,133,100,7 +19900104,1800,133,100,5 +19900104,1800,133,100,3 +19900104,1800,133,100,2 +19900104,1800,133,100,1 +19900104,1800,133,210,40 +19900104,1800,3,117,2000 +19900104,1800,133,109,1 +19900104,1800,133,109,2 +19900104,1800,133,109,3 +19900104,1800,133,109,4 +19900104,1800,133,109,5 +19900104,1800,133,109,6 +19900104,1800,133,109,7 +19900104,1800,133,109,8 +19900104,1800,133,109,9 +19900104,1800,133,109,10 +19900104,1800,246,109,1 +19900104,1800,246,109,2 +19900104,1800,246,109,3 +19900104,1800,246,109,4 +19900104,1800,246,109,5 +19900104,1800,246,109,6 +19900104,1800,246,109,7 +19900104,1800,246,109,8 +19900104,1800,246,109,9 +19900104,1800,246,109,10 +19900104,1800,247,109,1 +19900104,1800,247,109,2 +19900104,1800,247,109,3 +19900104,1800,247,109,4 +19900104,1800,247,109,5 +19900104,1800,247,109,6 +19900104,1800,247,109,7 +19900104,1800,247,109,8 +19900104,1800,247,109,9 +19900104,1800,247,109,10 +19900104,1800,248,109,1 +19900104,1800,248,109,2 +19900104,1800,248,109,3 +19900104,1800,248,109,4 +19900104,1800,248,109,5 +19900104,1800,248,109,6 +19900104,1800,248,109,7 +19900104,1800,248,109,8 +19900104,1800,248,109,9 +19900104,1800,248,109,10 +19900104,1800,8,1,0 +19900104,1800,31,1,0 +19900104,1800,32,1,0 +19900104,1800,33,1,0 +19900104,1800,34,1,0 +19900104,1800,35,111,7 +19900104,1800,36,111,28 +19900104,1800,37,111,100 +19900104,1800,38,111,289 +19900104,1800,39,111,7 +19900104,1800,40,111,28 +19900104,1800,41,111,100 +19900104,1800,42,111,289 +19900104,1800,44,1,0 +19900104,1800,45,1,0 +19900104,1800,49,1,0 +19900104,1800,50,1,0 +19900104,1800,57,1,0 +19900104,1800,58,1,0 +19900104,1800,123,1,0 +19900104,1800,139,111,7 +19900104,1800,141,1,0 +19900104,1800,142,1,0 +19900104,1800,143,1,0 +19900104,1800,144,1,0 +19900104,1800,145,1,0 +19900104,1800,146,1,0 +19900104,1800,147,1,0 +19900104,1800,148,1,0 +19900104,1800,169,1,0 +19900104,1800,170,111,28 +19900104,1800,172,1,0 +19900104,1800,175,1,0 +19900104,1800,176,1,0 +19900104,1800,177,1,0 +19900104,1800,178,1,0 +19900104,1800,179,1,0 +19900104,1800,180,1,0 +19900104,1800,181,1,0 +19900104,1800,182,1,0 +19900104,1800,183,111,100 +19900104,1800,189,1,0 +19900104,1800,195,1,0 +19900104,1800,196,1,0 +19900104,1800,197,1,0 +19900104,1800,198,1,0 +19900104,1800,201,1,0 +19900104,1800,202,1,0 +19900104,1800,205,1,0 +19900104,1800,208,1,0 +19900104,1800,209,1,0 +19900104,1800,210,1,0 +19900104,1800,211,1,0 +19900104,1800,212,1,0 +19900104,1800,213,1,0 +19900104,1800,228,1,0 +19900104,1800,235,1,0 +19900104,1800,236,111,289 +19900104,1800,238,1,0 +19900104,1800,59,1,0 +19900104,1800,78,1,0 +19900104,1800,79,1,0 +19900104,1800,136,1,0 +19900104,1800,137,1,0 +19900104,1800,151,1,0 +19900104,1800,159,1,0 +19900104,1800,164,1,0 +19900104,1800,165,1,0 +19900104,1800,166,1,0 +19900104,1800,167,1,0 +19900104,1800,168,1,0 +19900104,1800,186,1,0 +19900104,1800,187,1,0 +19900104,1800,188,1,0 +19900104,1800,229,1,0 +19900104,1800,230,1,0 +19900104,1800,231,1,0 +19900104,1800,232,1,0 +19900104,1800,243,1,0 +19900104,1800,244,1,0 +19900104,1800,245,1,0 +19900104,1800,228246,1,0 +19900104,1800,228247,1,0 +19900104,2100,8,1,0 +19900104,2100,31,1,0 +19900104,2100,32,1,0 +19900104,2100,33,1,0 +19900104,2100,34,1,0 +19900104,2100,35,111,7 +19900104,2100,36,111,28 +19900104,2100,37,111,100 +19900104,2100,38,111,289 +19900104,2100,39,111,7 +19900104,2100,40,111,28 +19900104,2100,41,111,100 +19900104,2100,42,111,289 +19900104,2100,44,1,0 +19900104,2100,45,1,0 +19900104,2100,49,1,0 +19900104,2100,50,1,0 +19900104,2100,57,1,0 +19900104,2100,58,1,0 +19900104,2100,123,1,0 +19900104,2100,139,111,7 +19900104,2100,141,1,0 +19900104,2100,142,1,0 +19900104,2100,143,1,0 +19900104,2100,144,1,0 +19900104,2100,145,1,0 +19900104,2100,146,1,0 +19900104,2100,147,1,0 +19900104,2100,148,1,0 +19900104,2100,169,1,0 +19900104,2100,170,111,28 +19900104,2100,172,1,0 +19900104,2100,175,1,0 +19900104,2100,176,1,0 +19900104,2100,177,1,0 +19900104,2100,178,1,0 +19900104,2100,179,1,0 +19900104,2100,180,1,0 +19900104,2100,181,1,0 +19900104,2100,182,1,0 +19900104,2100,183,111,100 +19900104,2100,189,1,0 +19900104,2100,195,1,0 +19900104,2100,196,1,0 +19900104,2100,197,1,0 +19900104,2100,198,1,0 +19900104,2100,201,1,0 +19900104,2100,202,1,0 +19900104,2100,205,1,0 +19900104,2100,208,1,0 +19900104,2100,209,1,0 +19900104,2100,210,1,0 +19900104,2100,211,1,0 +19900104,2100,212,1,0 +19900104,2100,213,1,0 +19900104,2100,228,1,0 +19900104,2100,235,1,0 +19900104,2100,236,111,289 +19900104,2100,238,1,0 +19900104,2100,59,1,0 +19900104,2100,78,1,0 +19900104,2100,79,1,0 +19900104,2100,136,1,0 +19900104,2100,137,1,0 +19900104,2100,151,1,0 +19900104,2100,159,1,0 +19900104,2100,164,1,0 +19900104,2100,165,1,0 +19900104,2100,166,1,0 +19900104,2100,167,1,0 +19900104,2100,168,1,0 +19900104,2100,186,1,0 +19900104,2100,187,1,0 +19900104,2100,188,1,0 +19900104,2100,229,1,0 +19900104,2100,230,1,0 +19900104,2100,231,1,0 +19900104,2100,232,1,0 +19900104,2100,243,1,0 +19900104,2100,244,1,0 +19900104,2100,245,1,0 +19900104,2100,228246,1,0 +19900104,2100,228247,1,0 +19900105,0,133,100,1000 +19900105,0,133,100,975 +19900105,0,133,100,950 +19900105,0,133,100,925 +19900105,0,133,100,900 +19900105,0,133,100,875 +19900105,0,133,100,850 +19900105,0,133,100,825 +19900105,0,133,100,800 +19900105,0,133,100,775 +19900105,0,133,100,750 +19900105,0,133,100,740 +19900105,0,133,100,700 +19900105,0,133,100,650 +19900105,0,133,100,620 +19900105,0,133,100,600 +19900105,0,133,100,550 +19900105,0,133,100,500 +19900105,0,133,100,450 +19900105,0,133,100,400 +19900105,0,133,100,375 +19900105,0,133,100,350 +19900105,0,133,100,300 +19900105,0,133,100,250 +19900105,0,133,100,245 +19900105,0,133,100,225 +19900105,0,133,100,200 +19900105,0,133,100,175 +19900105,0,133,100,150 +19900105,0,133,100,125 +19900105,0,133,100,100 +19900105,0,133,100,70 +19900105,0,133,100,50 +19900105,0,133,100,30 +19900105,0,133,100,20 +19900105,0,133,100,10 +19900105,0,133,100,9 +19900105,0,133,100,7 +19900105,0,133,100,5 +19900105,0,133,100,3 +19900105,0,133,100,2 +19900105,0,133,100,1 +19900105,0,133,210,40 +19900105,0,3,117,2000 +19900105,0,133,109,1 +19900105,0,133,109,2 +19900105,0,133,109,3 +19900105,0,133,109,4 +19900105,0,133,109,5 +19900105,0,133,109,6 +19900105,0,133,109,7 +19900105,0,133,109,8 +19900105,0,133,109,9 +19900105,0,133,109,10 +19900105,0,246,109,1 +19900105,0,246,109,2 +19900105,0,246,109,3 +19900105,0,246,109,4 +19900105,0,246,109,5 +19900105,0,246,109,6 +19900105,0,246,109,7 +19900105,0,246,109,8 +19900105,0,246,109,9 +19900105,0,246,109,10 +19900105,0,247,109,1 +19900105,0,247,109,2 +19900105,0,247,109,3 +19900105,0,247,109,4 +19900105,0,247,109,5 +19900105,0,247,109,6 +19900105,0,247,109,7 +19900105,0,247,109,8 +19900105,0,247,109,9 +19900105,0,247,109,10 +19900105,0,248,109,1 +19900105,0,248,109,2 +19900105,0,248,109,3 +19900105,0,248,109,4 +19900105,0,248,109,5 +19900105,0,248,109,6 +19900105,0,248,109,7 +19900105,0,248,109,8 +19900105,0,248,109,9 +19900105,0,248,109,10 +19900105,0,8,1,0 +19900105,0,31,1,0 +19900105,0,32,1,0 +19900105,0,33,1,0 +19900105,0,34,1,0 +19900105,0,35,111,7 +19900105,0,36,111,28 +19900105,0,37,111,100 +19900105,0,38,111,289 +19900105,0,39,111,7 +19900105,0,40,111,28 +19900105,0,41,111,100 +19900105,0,42,111,289 +19900105,0,44,1,0 +19900105,0,45,1,0 +19900105,0,49,1,0 +19900105,0,50,1,0 +19900105,0,57,1,0 +19900105,0,58,1,0 +19900105,0,123,1,0 +19900105,0,139,111,7 +19900105,0,141,1,0 +19900105,0,142,1,0 +19900105,0,143,1,0 +19900105,0,144,1,0 +19900105,0,145,1,0 +19900105,0,146,1,0 +19900105,0,147,1,0 +19900105,0,148,1,0 +19900105,0,169,1,0 +19900105,0,170,111,28 +19900105,0,172,1,0 +19900105,0,175,1,0 +19900105,0,176,1,0 +19900105,0,177,1,0 +19900105,0,178,1,0 +19900105,0,179,1,0 +19900105,0,180,1,0 +19900105,0,181,1,0 +19900105,0,182,1,0 +19900105,0,183,111,100 +19900105,0,189,1,0 +19900105,0,195,1,0 +19900105,0,196,1,0 +19900105,0,197,1,0 +19900105,0,198,1,0 +19900105,0,201,1,0 +19900105,0,202,1,0 +19900105,0,205,1,0 +19900105,0,208,1,0 +19900105,0,209,1,0 +19900105,0,210,1,0 +19900105,0,211,1,0 +19900105,0,212,1,0 +19900105,0,213,1,0 +19900105,0,228,1,0 +19900105,0,235,1,0 +19900105,0,236,111,289 +19900105,0,238,1,0 +19900105,0,59,1,0 +19900105,0,78,1,0 +19900105,0,79,1,0 +19900105,0,136,1,0 +19900105,0,137,1,0 +19900105,0,151,1,0 +19900105,0,159,1,0 +19900105,0,164,1,0 +19900105,0,165,1,0 +19900105,0,166,1,0 +19900105,0,167,1,0 +19900105,0,168,1,0 +19900105,0,186,1,0 +19900105,0,187,1,0 +19900105,0,188,1,0 +19900105,0,229,1,0 +19900105,0,230,1,0 +19900105,0,231,1,0 +19900105,0,232,1,0 +19900105,0,243,1,0 +19900105,0,244,1,0 +19900105,0,245,1,0 +19900105,0,228246,1,0 +19900105,0,228247,1,0 +19900105,300,8,1,0 +19900105,300,31,1,0 +19900105,300,32,1,0 +19900105,300,33,1,0 +19900105,300,34,1,0 +19900105,300,35,111,7 +19900105,300,36,111,28 +19900105,300,37,111,100 +19900105,300,38,111,289 +19900105,300,39,111,7 +19900105,300,40,111,28 +19900105,300,41,111,100 +19900105,300,42,111,289 +19900105,300,44,1,0 +19900105,300,45,1,0 +19900105,300,49,1,0 +19900105,300,50,1,0 +19900105,300,57,1,0 +19900105,300,58,1,0 +19900105,300,123,1,0 +19900105,300,139,111,7 +19900105,300,141,1,0 +19900105,300,142,1,0 +19900105,300,143,1,0 +19900105,300,144,1,0 +19900105,300,145,1,0 +19900105,300,146,1,0 +19900105,300,147,1,0 +19900105,300,148,1,0 +19900105,300,169,1,0 +19900105,300,170,111,28 +19900105,300,172,1,0 +19900105,300,175,1,0 +19900105,300,176,1,0 +19900105,300,177,1,0 +19900105,300,178,1,0 +19900105,300,179,1,0 +19900105,300,180,1,0 +19900105,300,181,1,0 +19900105,300,182,1,0 +19900105,300,183,111,100 +19900105,300,189,1,0 +19900105,300,195,1,0 +19900105,300,196,1,0 +19900105,300,197,1,0 +19900105,300,198,1,0 +19900105,300,201,1,0 +19900105,300,202,1,0 +19900105,300,205,1,0 +19900105,300,208,1,0 +19900105,300,209,1,0 +19900105,300,210,1,0 +19900105,300,211,1,0 +19900105,300,212,1,0 +19900105,300,213,1,0 +19900105,300,228,1,0 +19900105,300,235,1,0 +19900105,300,236,111,289 +19900105,300,238,1,0 +19900105,300,59,1,0 +19900105,300,78,1,0 +19900105,300,79,1,0 +19900105,300,136,1,0 +19900105,300,137,1,0 +19900105,300,151,1,0 +19900105,300,159,1,0 +19900105,300,164,1,0 +19900105,300,165,1,0 +19900105,300,166,1,0 +19900105,300,167,1,0 +19900105,300,168,1,0 +19900105,300,186,1,0 +19900105,300,187,1,0 +19900105,300,188,1,0 +19900105,300,229,1,0 +19900105,300,230,1,0 +19900105,300,231,1,0 +19900105,300,232,1,0 +19900105,300,243,1,0 +19900105,300,244,1,0 +19900105,300,245,1,0 +19900105,300,228246,1,0 +19900105,300,228247,1,0 +19900105,600,133,100,1000 +19900105,600,133,100,975 +19900105,600,133,100,950 +19900105,600,133,100,925 +19900105,600,133,100,900 +19900105,600,133,100,875 +19900105,600,133,100,850 +19900105,600,133,100,825 +19900105,600,133,100,800 +19900105,600,133,100,775 +19900105,600,133,100,750 +19900105,600,133,100,740 +19900105,600,133,100,700 +19900105,600,133,100,650 +19900105,600,133,100,620 +19900105,600,133,100,600 +19900105,600,133,100,550 +19900105,600,133,100,500 +19900105,600,133,100,450 +19900105,600,133,100,400 +19900105,600,133,100,375 +19900105,600,133,100,350 +19900105,600,133,100,300 +19900105,600,133,100,250 +19900105,600,133,100,245 +19900105,600,133,100,225 +19900105,600,133,100,200 +19900105,600,133,100,175 +19900105,600,133,100,150 +19900105,600,133,100,125 +19900105,600,133,100,100 +19900105,600,133,100,70 +19900105,600,133,100,50 +19900105,600,133,100,30 +19900105,600,133,100,20 +19900105,600,133,100,10 +19900105,600,133,100,9 +19900105,600,133,100,7 +19900105,600,133,100,5 +19900105,600,133,100,3 +19900105,600,133,100,2 +19900105,600,133,100,1 +19900105,600,133,210,40 +19900105,600,3,117,2000 +19900105,600,133,109,1 +19900105,600,133,109,2 +19900105,600,133,109,3 +19900105,600,133,109,4 +19900105,600,133,109,5 +19900105,600,133,109,6 +19900105,600,133,109,7 +19900105,600,133,109,8 +19900105,600,133,109,9 +19900105,600,133,109,10 +19900105,600,246,109,1 +19900105,600,246,109,2 +19900105,600,246,109,3 +19900105,600,246,109,4 +19900105,600,246,109,5 +19900105,600,246,109,6 +19900105,600,246,109,7 +19900105,600,246,109,8 +19900105,600,246,109,9 +19900105,600,246,109,10 +19900105,600,247,109,1 +19900105,600,247,109,2 +19900105,600,247,109,3 +19900105,600,247,109,4 +19900105,600,247,109,5 +19900105,600,247,109,6 +19900105,600,247,109,7 +19900105,600,247,109,8 +19900105,600,247,109,9 +19900105,600,247,109,10 +19900105,600,248,109,1 +19900105,600,248,109,2 +19900105,600,248,109,3 +19900105,600,248,109,4 +19900105,600,248,109,5 +19900105,600,248,109,6 +19900105,600,248,109,7 +19900105,600,248,109,8 +19900105,600,248,109,9 +19900105,600,248,109,10 +19900105,600,8,1,0 +19900105,600,31,1,0 +19900105,600,32,1,0 +19900105,600,33,1,0 +19900105,600,34,1,0 +19900105,600,35,111,7 +19900105,600,36,111,28 +19900105,600,37,111,100 +19900105,600,38,111,289 +19900105,600,39,111,7 +19900105,600,40,111,28 +19900105,600,41,111,100 +19900105,600,42,111,289 +19900105,600,44,1,0 +19900105,600,45,1,0 +19900105,600,49,1,0 +19900105,600,50,1,0 +19900105,600,57,1,0 +19900105,600,58,1,0 +19900105,600,123,1,0 +19900105,600,139,111,7 +19900105,600,141,1,0 +19900105,600,142,1,0 +19900105,600,143,1,0 +19900105,600,144,1,0 +19900105,600,145,1,0 +19900105,600,146,1,0 +19900105,600,147,1,0 +19900105,600,148,1,0 +19900105,600,169,1,0 +19900105,600,170,111,28 +19900105,600,172,1,0 +19900105,600,175,1,0 +19900105,600,176,1,0 +19900105,600,177,1,0 +19900105,600,178,1,0 +19900105,600,179,1,0 +19900105,600,180,1,0 +19900105,600,181,1,0 +19900105,600,182,1,0 +19900105,600,183,111,100 +19900105,600,189,1,0 +19900105,600,195,1,0 +19900105,600,196,1,0 +19900105,600,197,1,0 +19900105,600,198,1,0 +19900105,600,201,1,0 +19900105,600,202,1,0 +19900105,600,205,1,0 +19900105,600,208,1,0 +19900105,600,209,1,0 +19900105,600,210,1,0 +19900105,600,211,1,0 +19900105,600,212,1,0 +19900105,600,213,1,0 +19900105,600,228,1,0 +19900105,600,235,1,0 +19900105,600,236,111,289 +19900105,600,238,1,0 +19900105,600,59,1,0 +19900105,600,78,1,0 +19900105,600,79,1,0 +19900105,600,136,1,0 +19900105,600,137,1,0 +19900105,600,151,1,0 +19900105,600,159,1,0 +19900105,600,164,1,0 +19900105,600,165,1,0 +19900105,600,166,1,0 +19900105,600,167,1,0 +19900105,600,168,1,0 +19900105,600,186,1,0 +19900105,600,187,1,0 +19900105,600,188,1,0 +19900105,600,229,1,0 +19900105,600,230,1,0 +19900105,600,231,1,0 +19900105,600,232,1,0 +19900105,600,243,1,0 +19900105,600,244,1,0 +19900105,600,245,1,0 +19900105,600,228246,1,0 +19900105,600,228247,1,0 +19900105,900,8,1,0 +19900105,900,31,1,0 +19900105,900,32,1,0 +19900105,900,33,1,0 +19900105,900,34,1,0 +19900105,900,35,111,7 +19900105,900,36,111,28 +19900105,900,37,111,100 +19900105,900,38,111,289 +19900105,900,39,111,7 +19900105,900,40,111,28 +19900105,900,41,111,100 +19900105,900,42,111,289 +19900105,900,44,1,0 +19900105,900,45,1,0 +19900105,900,49,1,0 +19900105,900,50,1,0 +19900105,900,57,1,0 +19900105,900,58,1,0 +19900105,900,123,1,0 +19900105,900,139,111,7 +19900105,900,141,1,0 +19900105,900,142,1,0 +19900105,900,143,1,0 +19900105,900,144,1,0 +19900105,900,145,1,0 +19900105,900,146,1,0 +19900105,900,147,1,0 +19900105,900,148,1,0 +19900105,900,169,1,0 +19900105,900,170,111,28 +19900105,900,172,1,0 +19900105,900,175,1,0 +19900105,900,176,1,0 +19900105,900,177,1,0 +19900105,900,178,1,0 +19900105,900,179,1,0 +19900105,900,180,1,0 +19900105,900,181,1,0 +19900105,900,182,1,0 +19900105,900,183,111,100 +19900105,900,189,1,0 +19900105,900,195,1,0 +19900105,900,196,1,0 +19900105,900,197,1,0 +19900105,900,198,1,0 +19900105,900,201,1,0 +19900105,900,202,1,0 +19900105,900,205,1,0 +19900105,900,208,1,0 +19900105,900,209,1,0 +19900105,900,210,1,0 +19900105,900,211,1,0 +19900105,900,212,1,0 +19900105,900,213,1,0 +19900105,900,228,1,0 +19900105,900,235,1,0 +19900105,900,236,111,289 +19900105,900,238,1,0 +19900105,900,59,1,0 +19900105,900,78,1,0 +19900105,900,79,1,0 +19900105,900,136,1,0 +19900105,900,137,1,0 +19900105,900,151,1,0 +19900105,900,159,1,0 +19900105,900,164,1,0 +19900105,900,165,1,0 +19900105,900,166,1,0 +19900105,900,167,1,0 +19900105,900,168,1,0 +19900105,900,186,1,0 +19900105,900,187,1,0 +19900105,900,188,1,0 +19900105,900,229,1,0 +19900105,900,230,1,0 +19900105,900,231,1,0 +19900105,900,232,1,0 +19900105,900,243,1,0 +19900105,900,244,1,0 +19900105,900,245,1,0 +19900105,900,228246,1,0 +19900105,900,228247,1,0 +19900105,1200,133,100,1000 +19900105,1200,133,100,975 +19900105,1200,133,100,950 +19900105,1200,133,100,925 +19900105,1200,133,100,900 +19900105,1200,133,100,875 +19900105,1200,133,100,850 +19900105,1200,133,100,825 +19900105,1200,133,100,800 +19900105,1200,133,100,775 +19900105,1200,133,100,750 +19900105,1200,133,100,740 +19900105,1200,133,100,700 +19900105,1200,133,100,650 +19900105,1200,133,100,620 +19900105,1200,133,100,600 +19900105,1200,133,100,550 +19900105,1200,133,100,500 +19900105,1200,133,100,450 +19900105,1200,133,100,400 +19900105,1200,133,100,375 +19900105,1200,133,100,350 +19900105,1200,133,100,300 +19900105,1200,133,100,250 +19900105,1200,133,100,245 +19900105,1200,133,100,225 +19900105,1200,133,100,200 +19900105,1200,133,100,175 +19900105,1200,133,100,150 +19900105,1200,133,100,125 +19900105,1200,133,100,100 +19900105,1200,133,100,70 +19900105,1200,133,100,50 +19900105,1200,133,100,30 +19900105,1200,133,100,20 +19900105,1200,133,100,10 +19900105,1200,133,100,9 +19900105,1200,133,100,7 +19900105,1200,133,100,5 +19900105,1200,133,100,3 +19900105,1200,133,100,2 +19900105,1200,133,100,1 +19900105,1200,133,210,40 +19900105,1200,3,117,2000 +19900105,1200,133,109,1 +19900105,1200,133,109,2 +19900105,1200,133,109,3 +19900105,1200,133,109,4 +19900105,1200,133,109,5 +19900105,1200,133,109,6 +19900105,1200,133,109,7 +19900105,1200,133,109,8 +19900105,1200,133,109,9 +19900105,1200,133,109,10 +19900105,1200,246,109,1 +19900105,1200,246,109,2 +19900105,1200,246,109,3 +19900105,1200,246,109,4 +19900105,1200,246,109,5 +19900105,1200,246,109,6 +19900105,1200,246,109,7 +19900105,1200,246,109,8 +19900105,1200,246,109,9 +19900105,1200,246,109,10 +19900105,1200,247,109,1 +19900105,1200,247,109,2 +19900105,1200,247,109,3 +19900105,1200,247,109,4 +19900105,1200,247,109,5 +19900105,1200,247,109,6 +19900105,1200,247,109,7 +19900105,1200,247,109,8 +19900105,1200,247,109,9 +19900105,1200,247,109,10 +19900105,1200,248,109,1 +19900105,1200,248,109,2 +19900105,1200,248,109,3 +19900105,1200,248,109,4 +19900105,1200,248,109,5 +19900105,1200,248,109,6 +19900105,1200,248,109,7 +19900105,1200,248,109,8 +19900105,1200,248,109,9 +19900105,1200,248,109,10 +19900105,1200,8,1,0 +19900105,1200,31,1,0 +19900105,1200,32,1,0 +19900105,1200,33,1,0 +19900105,1200,34,1,0 +19900105,1200,35,111,7 +19900105,1200,36,111,28 +19900105,1200,37,111,100 +19900105,1200,38,111,289 +19900105,1200,39,111,7 +19900105,1200,40,111,28 +19900105,1200,41,111,100 +19900105,1200,42,111,289 +19900105,1200,44,1,0 +19900105,1200,45,1,0 +19900105,1200,49,1,0 +19900105,1200,50,1,0 +19900105,1200,57,1,0 +19900105,1200,58,1,0 +19900105,1200,123,1,0 +19900105,1200,139,111,7 +19900105,1200,141,1,0 +19900105,1200,142,1,0 +19900105,1200,143,1,0 +19900105,1200,144,1,0 +19900105,1200,145,1,0 +19900105,1200,146,1,0 +19900105,1200,147,1,0 +19900105,1200,148,1,0 +19900105,1200,169,1,0 +19900105,1200,170,111,28 +19900105,1200,172,1,0 +19900105,1200,175,1,0 +19900105,1200,176,1,0 +19900105,1200,177,1,0 +19900105,1200,178,1,0 +19900105,1200,179,1,0 +19900105,1200,180,1,0 +19900105,1200,181,1,0 +19900105,1200,182,1,0 +19900105,1200,183,111,100 +19900105,1200,189,1,0 +19900105,1200,195,1,0 +19900105,1200,196,1,0 +19900105,1200,197,1,0 +19900105,1200,198,1,0 +19900105,1200,201,1,0 +19900105,1200,202,1,0 +19900105,1200,205,1,0 +19900105,1200,208,1,0 +19900105,1200,209,1,0 +19900105,1200,210,1,0 +19900105,1200,211,1,0 +19900105,1200,212,1,0 +19900105,1200,213,1,0 +19900105,1200,228,1,0 +19900105,1200,235,1,0 +19900105,1200,236,111,289 +19900105,1200,238,1,0 +19900105,1200,59,1,0 +19900105,1200,78,1,0 +19900105,1200,79,1,0 +19900105,1200,136,1,0 +19900105,1200,137,1,0 +19900105,1200,151,1,0 +19900105,1200,159,1,0 +19900105,1200,164,1,0 +19900105,1200,165,1,0 +19900105,1200,166,1,0 +19900105,1200,167,1,0 +19900105,1200,168,1,0 +19900105,1200,186,1,0 +19900105,1200,187,1,0 +19900105,1200,188,1,0 +19900105,1200,229,1,0 +19900105,1200,230,1,0 +19900105,1200,231,1,0 +19900105,1200,232,1,0 +19900105,1200,243,1,0 +19900105,1200,244,1,0 +19900105,1200,245,1,0 +19900105,1200,228246,1,0 +19900105,1200,228247,1,0 +19900105,1500,8,1,0 +19900105,1500,31,1,0 +19900105,1500,32,1,0 +19900105,1500,33,1,0 +19900105,1500,34,1,0 +19900105,1500,35,111,7 +19900105,1500,36,111,28 +19900105,1500,37,111,100 +19900105,1500,38,111,289 +19900105,1500,39,111,7 +19900105,1500,40,111,28 +19900105,1500,41,111,100 +19900105,1500,42,111,289 +19900105,1500,44,1,0 +19900105,1500,45,1,0 +19900105,1500,49,1,0 +19900105,1500,50,1,0 +19900105,1500,57,1,0 +19900105,1500,58,1,0 +19900105,1500,123,1,0 +19900105,1500,139,111,7 +19900105,1500,141,1,0 +19900105,1500,142,1,0 +19900105,1500,143,1,0 +19900105,1500,144,1,0 +19900105,1500,145,1,0 +19900105,1500,146,1,0 +19900105,1500,147,1,0 +19900105,1500,148,1,0 +19900105,1500,169,1,0 +19900105,1500,170,111,28 +19900105,1500,172,1,0 +19900105,1500,175,1,0 +19900105,1500,176,1,0 +19900105,1500,177,1,0 +19900105,1500,178,1,0 +19900105,1500,179,1,0 +19900105,1500,180,1,0 +19900105,1500,181,1,0 +19900105,1500,182,1,0 +19900105,1500,183,111,100 +19900105,1500,189,1,0 +19900105,1500,195,1,0 +19900105,1500,196,1,0 +19900105,1500,197,1,0 +19900105,1500,198,1,0 +19900105,1500,201,1,0 +19900105,1500,202,1,0 +19900105,1500,205,1,0 +19900105,1500,208,1,0 +19900105,1500,209,1,0 +19900105,1500,210,1,0 +19900105,1500,211,1,0 +19900105,1500,212,1,0 +19900105,1500,213,1,0 +19900105,1500,228,1,0 +19900105,1500,235,1,0 +19900105,1500,236,111,289 +19900105,1500,238,1,0 +19900105,1500,59,1,0 +19900105,1500,78,1,0 +19900105,1500,79,1,0 +19900105,1500,136,1,0 +19900105,1500,137,1,0 +19900105,1500,151,1,0 +19900105,1500,159,1,0 +19900105,1500,164,1,0 +19900105,1500,165,1,0 +19900105,1500,166,1,0 +19900105,1500,167,1,0 +19900105,1500,168,1,0 +19900105,1500,186,1,0 +19900105,1500,187,1,0 +19900105,1500,188,1,0 +19900105,1500,229,1,0 +19900105,1500,230,1,0 +19900105,1500,231,1,0 +19900105,1500,232,1,0 +19900105,1500,243,1,0 +19900105,1500,244,1,0 +19900105,1500,245,1,0 +19900105,1500,228246,1,0 +19900105,1500,228247,1,0 +19900105,1800,133,100,1000 +19900105,1800,133,100,975 +19900105,1800,133,100,950 +19900105,1800,133,100,925 +19900105,1800,133,100,900 +19900105,1800,133,100,875 +19900105,1800,133,100,850 +19900105,1800,133,100,825 +19900105,1800,133,100,800 +19900105,1800,133,100,775 +19900105,1800,133,100,750 +19900105,1800,133,100,740 +19900105,1800,133,100,700 +19900105,1800,133,100,650 +19900105,1800,133,100,620 +19900105,1800,133,100,600 +19900105,1800,133,100,550 +19900105,1800,133,100,500 +19900105,1800,133,100,450 +19900105,1800,133,100,400 +19900105,1800,133,100,375 +19900105,1800,133,100,350 +19900105,1800,133,100,300 +19900105,1800,133,100,250 +19900105,1800,133,100,245 +19900105,1800,133,100,225 +19900105,1800,133,100,200 +19900105,1800,133,100,175 +19900105,1800,133,100,150 +19900105,1800,133,100,125 +19900105,1800,133,100,100 +19900105,1800,133,100,70 +19900105,1800,133,100,50 +19900105,1800,133,100,30 +19900105,1800,133,100,20 +19900105,1800,133,100,10 +19900105,1800,133,100,9 +19900105,1800,133,100,7 +19900105,1800,133,100,5 +19900105,1800,133,100,3 +19900105,1800,133,100,2 +19900105,1800,133,100,1 +19900105,1800,133,210,40 +19900105,1800,3,117,2000 +19900105,1800,133,109,1 +19900105,1800,133,109,2 +19900105,1800,133,109,3 +19900105,1800,133,109,4 +19900105,1800,133,109,5 +19900105,1800,133,109,6 +19900105,1800,133,109,7 +19900105,1800,133,109,8 +19900105,1800,133,109,9 +19900105,1800,133,109,10 +19900105,1800,246,109,1 +19900105,1800,246,109,2 +19900105,1800,246,109,3 +19900105,1800,246,109,4 +19900105,1800,246,109,5 +19900105,1800,246,109,6 +19900105,1800,246,109,7 +19900105,1800,246,109,8 +19900105,1800,246,109,9 +19900105,1800,246,109,10 +19900105,1800,247,109,1 +19900105,1800,247,109,2 +19900105,1800,247,109,3 +19900105,1800,247,109,4 +19900105,1800,247,109,5 +19900105,1800,247,109,6 +19900105,1800,247,109,7 +19900105,1800,247,109,8 +19900105,1800,247,109,9 +19900105,1800,247,109,10 +19900105,1800,248,109,1 +19900105,1800,248,109,2 +19900105,1800,248,109,3 +19900105,1800,248,109,4 +19900105,1800,248,109,5 +19900105,1800,248,109,6 +19900105,1800,248,109,7 +19900105,1800,248,109,8 +19900105,1800,248,109,9 +19900105,1800,248,109,10 +19900105,1800,8,1,0 +19900105,1800,31,1,0 +19900105,1800,32,1,0 +19900105,1800,33,1,0 +19900105,1800,34,1,0 +19900105,1800,35,111,7 +19900105,1800,36,111,28 +19900105,1800,37,111,100 +19900105,1800,38,111,289 +19900105,1800,39,111,7 +19900105,1800,40,111,28 +19900105,1800,41,111,100 +19900105,1800,42,111,289 +19900105,1800,44,1,0 +19900105,1800,45,1,0 +19900105,1800,49,1,0 +19900105,1800,50,1,0 +19900105,1800,57,1,0 +19900105,1800,58,1,0 +19900105,1800,123,1,0 +19900105,1800,139,111,7 +19900105,1800,141,1,0 +19900105,1800,142,1,0 +19900105,1800,143,1,0 +19900105,1800,144,1,0 +19900105,1800,145,1,0 +19900105,1800,146,1,0 +19900105,1800,147,1,0 +19900105,1800,148,1,0 +19900105,1800,169,1,0 +19900105,1800,170,111,28 +19900105,1800,172,1,0 +19900105,1800,175,1,0 +19900105,1800,176,1,0 +19900105,1800,177,1,0 +19900105,1800,178,1,0 +19900105,1800,179,1,0 +19900105,1800,180,1,0 +19900105,1800,181,1,0 +19900105,1800,182,1,0 +19900105,1800,183,111,100 +19900105,1800,189,1,0 +19900105,1800,195,1,0 +19900105,1800,196,1,0 +19900105,1800,197,1,0 +19900105,1800,198,1,0 +19900105,1800,201,1,0 +19900105,1800,202,1,0 +19900105,1800,205,1,0 +19900105,1800,208,1,0 +19900105,1800,209,1,0 +19900105,1800,210,1,0 +19900105,1800,211,1,0 +19900105,1800,212,1,0 +19900105,1800,213,1,0 +19900105,1800,228,1,0 +19900105,1800,235,1,0 +19900105,1800,236,111,289 +19900105,1800,238,1,0 +19900105,1800,59,1,0 +19900105,1800,78,1,0 +19900105,1800,79,1,0 +19900105,1800,136,1,0 +19900105,1800,137,1,0 +19900105,1800,151,1,0 +19900105,1800,159,1,0 +19900105,1800,164,1,0 +19900105,1800,165,1,0 +19900105,1800,166,1,0 +19900105,1800,167,1,0 +19900105,1800,168,1,0 +19900105,1800,186,1,0 +19900105,1800,187,1,0 +19900105,1800,188,1,0 +19900105,1800,229,1,0 +19900105,1800,230,1,0 +19900105,1800,231,1,0 +19900105,1800,232,1,0 +19900105,1800,243,1,0 +19900105,1800,244,1,0 +19900105,1800,245,1,0 +19900105,1800,228246,1,0 +19900105,1800,228247,1,0 +19900105,2100,8,1,0 +19900105,2100,31,1,0 +19900105,2100,32,1,0 +19900105,2100,33,1,0 +19900105,2100,34,1,0 +19900105,2100,35,111,7 +19900105,2100,36,111,28 +19900105,2100,37,111,100 +19900105,2100,38,111,289 +19900105,2100,39,111,7 +19900105,2100,40,111,28 +19900105,2100,41,111,100 +19900105,2100,42,111,289 +19900105,2100,44,1,0 +19900105,2100,45,1,0 +19900105,2100,49,1,0 +19900105,2100,50,1,0 +19900105,2100,57,1,0 +19900105,2100,58,1,0 +19900105,2100,123,1,0 +19900105,2100,139,111,7 +19900105,2100,141,1,0 +19900105,2100,142,1,0 +19900105,2100,143,1,0 +19900105,2100,144,1,0 +19900105,2100,145,1,0 +19900105,2100,146,1,0 +19900105,2100,147,1,0 +19900105,2100,148,1,0 +19900105,2100,169,1,0 +19900105,2100,170,111,28 +19900105,2100,172,1,0 +19900105,2100,175,1,0 +19900105,2100,176,1,0 +19900105,2100,177,1,0 +19900105,2100,178,1,0 +19900105,2100,179,1,0 +19900105,2100,180,1,0 +19900105,2100,181,1,0 +19900105,2100,182,1,0 +19900105,2100,183,111,100 +19900105,2100,189,1,0 +19900105,2100,195,1,0 +19900105,2100,196,1,0 +19900105,2100,197,1,0 +19900105,2100,198,1,0 +19900105,2100,201,1,0 +19900105,2100,202,1,0 +19900105,2100,205,1,0 +19900105,2100,208,1,0 +19900105,2100,209,1,0 +19900105,2100,210,1,0 +19900105,2100,211,1,0 +19900105,2100,212,1,0 +19900105,2100,213,1,0 +19900105,2100,228,1,0 +19900105,2100,235,1,0 +19900105,2100,236,111,289 +19900105,2100,238,1,0 +19900105,2100,59,1,0 +19900105,2100,78,1,0 +19900105,2100,79,1,0 +19900105,2100,136,1,0 +19900105,2100,137,1,0 +19900105,2100,151,1,0 +19900105,2100,159,1,0 +19900105,2100,164,1,0 +19900105,2100,165,1,0 +19900105,2100,166,1,0 +19900105,2100,167,1,0 +19900105,2100,168,1,0 +19900105,2100,186,1,0 +19900105,2100,187,1,0 +19900105,2100,188,1,0 +19900105,2100,229,1,0 +19900105,2100,230,1,0 +19900105,2100,231,1,0 +19900105,2100,232,1,0 +19900105,2100,243,1,0 +19900105,2100,244,1,0 +19900105,2100,245,1,0 +19900105,2100,228246,1,0 +19900105,2100,228247,1,0 +19900106,0,133,100,1000 +19900106,0,133,100,975 +19900106,0,133,100,950 +19900106,0,133,100,925 +19900106,0,133,100,900 +19900106,0,133,100,875 +19900106,0,133,100,850 +19900106,0,133,100,825 +19900106,0,133,100,800 +19900106,0,133,100,775 +19900106,0,133,100,750 +19900106,0,133,100,740 +19900106,0,133,100,700 +19900106,0,133,100,650 +19900106,0,133,100,620 +19900106,0,133,100,600 +19900106,0,133,100,550 +19900106,0,133,100,500 +19900106,0,133,100,450 +19900106,0,133,100,400 +19900106,0,133,100,375 +19900106,0,133,100,350 +19900106,0,133,100,300 +19900106,0,133,100,250 +19900106,0,133,100,245 +19900106,0,133,100,225 +19900106,0,133,100,200 +19900106,0,133,100,175 +19900106,0,133,100,150 +19900106,0,133,100,125 +19900106,0,133,100,100 +19900106,0,133,100,70 +19900106,0,133,100,50 +19900106,0,133,100,30 +19900106,0,133,100,20 +19900106,0,133,100,10 +19900106,0,133,100,9 +19900106,0,133,100,7 +19900106,0,133,100,5 +19900106,0,133,100,3 +19900106,0,133,100,2 +19900106,0,133,100,1 +19900106,0,133,210,40 +19900106,0,3,117,2000 +19900106,0,133,109,1 +19900106,0,133,109,2 +19900106,0,133,109,3 +19900106,0,133,109,4 +19900106,0,133,109,5 +19900106,0,133,109,6 +19900106,0,133,109,7 +19900106,0,133,109,8 +19900106,0,133,109,9 +19900106,0,133,109,10 +19900106,0,246,109,1 +19900106,0,246,109,2 +19900106,0,246,109,3 +19900106,0,246,109,4 +19900106,0,246,109,5 +19900106,0,246,109,6 +19900106,0,246,109,7 +19900106,0,246,109,8 +19900106,0,246,109,9 +19900106,0,246,109,10 +19900106,0,247,109,1 +19900106,0,247,109,2 +19900106,0,247,109,3 +19900106,0,247,109,4 +19900106,0,247,109,5 +19900106,0,247,109,6 +19900106,0,247,109,7 +19900106,0,247,109,8 +19900106,0,247,109,9 +19900106,0,247,109,10 +19900106,0,248,109,1 +19900106,0,248,109,2 +19900106,0,248,109,3 +19900106,0,248,109,4 +19900106,0,248,109,5 +19900106,0,248,109,6 +19900106,0,248,109,7 +19900106,0,248,109,8 +19900106,0,248,109,9 +19900106,0,248,109,10 +19900106,0,8,1,0 +19900106,0,31,1,0 +19900106,0,32,1,0 +19900106,0,33,1,0 +19900106,0,34,1,0 +19900106,0,35,111,7 +19900106,0,36,111,28 +19900106,0,37,111,100 +19900106,0,38,111,289 +19900106,0,39,111,7 +19900106,0,40,111,28 +19900106,0,41,111,100 +19900106,0,42,111,289 +19900106,0,44,1,0 +19900106,0,45,1,0 +19900106,0,49,1,0 +19900106,0,50,1,0 +19900106,0,57,1,0 +19900106,0,58,1,0 +19900106,0,123,1,0 +19900106,0,139,111,7 +19900106,0,141,1,0 +19900106,0,142,1,0 +19900106,0,143,1,0 +19900106,0,144,1,0 +19900106,0,145,1,0 +19900106,0,146,1,0 +19900106,0,147,1,0 +19900106,0,148,1,0 +19900106,0,169,1,0 +19900106,0,170,111,28 +19900106,0,172,1,0 +19900106,0,175,1,0 +19900106,0,176,1,0 +19900106,0,177,1,0 +19900106,0,178,1,0 +19900106,0,179,1,0 +19900106,0,180,1,0 +19900106,0,181,1,0 +19900106,0,182,1,0 +19900106,0,183,111,100 +19900106,0,189,1,0 +19900106,0,195,1,0 +19900106,0,196,1,0 +19900106,0,197,1,0 +19900106,0,198,1,0 +19900106,0,201,1,0 +19900106,0,202,1,0 +19900106,0,205,1,0 +19900106,0,208,1,0 +19900106,0,209,1,0 +19900106,0,210,1,0 +19900106,0,211,1,0 +19900106,0,212,1,0 +19900106,0,213,1,0 +19900106,0,228,1,0 +19900106,0,235,1,0 +19900106,0,236,111,289 +19900106,0,238,1,0 +19900106,0,59,1,0 +19900106,0,78,1,0 +19900106,0,79,1,0 +19900106,0,136,1,0 +19900106,0,137,1,0 +19900106,0,151,1,0 +19900106,0,159,1,0 +19900106,0,164,1,0 +19900106,0,165,1,0 +19900106,0,166,1,0 +19900106,0,167,1,0 +19900106,0,168,1,0 +19900106,0,186,1,0 +19900106,0,187,1,0 +19900106,0,188,1,0 +19900106,0,229,1,0 +19900106,0,230,1,0 +19900106,0,231,1,0 +19900106,0,232,1,0 +19900106,0,243,1,0 +19900106,0,244,1,0 +19900106,0,245,1,0 +19900106,0,228246,1,0 +19900106,0,228247,1,0 +19900106,300,8,1,0 +19900106,300,31,1,0 +19900106,300,32,1,0 +19900106,300,33,1,0 +19900106,300,34,1,0 +19900106,300,35,111,7 +19900106,300,36,111,28 +19900106,300,37,111,100 +19900106,300,38,111,289 +19900106,300,39,111,7 +19900106,300,40,111,28 +19900106,300,41,111,100 +19900106,300,42,111,289 +19900106,300,44,1,0 +19900106,300,45,1,0 +19900106,300,49,1,0 +19900106,300,50,1,0 +19900106,300,57,1,0 +19900106,300,58,1,0 +19900106,300,123,1,0 +19900106,300,139,111,7 +19900106,300,141,1,0 +19900106,300,142,1,0 +19900106,300,143,1,0 +19900106,300,144,1,0 +19900106,300,145,1,0 +19900106,300,146,1,0 +19900106,300,147,1,0 +19900106,300,148,1,0 +19900106,300,169,1,0 +19900106,300,170,111,28 +19900106,300,172,1,0 +19900106,300,175,1,0 +19900106,300,176,1,0 +19900106,300,177,1,0 +19900106,300,178,1,0 +19900106,300,179,1,0 +19900106,300,180,1,0 +19900106,300,181,1,0 +19900106,300,182,1,0 +19900106,300,183,111,100 +19900106,300,189,1,0 +19900106,300,195,1,0 +19900106,300,196,1,0 +19900106,300,197,1,0 +19900106,300,198,1,0 +19900106,300,201,1,0 +19900106,300,202,1,0 +19900106,300,205,1,0 +19900106,300,208,1,0 +19900106,300,209,1,0 +19900106,300,210,1,0 +19900106,300,211,1,0 +19900106,300,212,1,0 +19900106,300,213,1,0 +19900106,300,228,1,0 +19900106,300,235,1,0 +19900106,300,236,111,289 +19900106,300,238,1,0 +19900106,300,59,1,0 +19900106,300,78,1,0 +19900106,300,79,1,0 +19900106,300,136,1,0 +19900106,300,137,1,0 +19900106,300,151,1,0 +19900106,300,159,1,0 +19900106,300,164,1,0 +19900106,300,165,1,0 +19900106,300,166,1,0 +19900106,300,167,1,0 +19900106,300,168,1,0 +19900106,300,186,1,0 +19900106,300,187,1,0 +19900106,300,188,1,0 +19900106,300,229,1,0 +19900106,300,230,1,0 +19900106,300,231,1,0 +19900106,300,232,1,0 +19900106,300,243,1,0 +19900106,300,244,1,0 +19900106,300,245,1,0 +19900106,300,228246,1,0 +19900106,300,228247,1,0 +19900106,600,133,100,1000 +19900106,600,133,100,975 +19900106,600,133,100,950 +19900106,600,133,100,925 +19900106,600,133,100,900 +19900106,600,133,100,875 +19900106,600,133,100,850 +19900106,600,133,100,825 +19900106,600,133,100,800 +19900106,600,133,100,775 +19900106,600,133,100,750 +19900106,600,133,100,740 +19900106,600,133,100,700 +19900106,600,133,100,650 +19900106,600,133,100,620 +19900106,600,133,100,600 +19900106,600,133,100,550 +19900106,600,133,100,500 +19900106,600,133,100,450 +19900106,600,133,100,400 +19900106,600,133,100,375 +19900106,600,133,100,350 +19900106,600,133,100,300 +19900106,600,133,100,250 +19900106,600,133,100,245 +19900106,600,133,100,225 +19900106,600,133,100,200 +19900106,600,133,100,175 +19900106,600,133,100,150 +19900106,600,133,100,125 +19900106,600,133,100,100 +19900106,600,133,100,70 +19900106,600,133,100,50 +19900106,600,133,100,30 +19900106,600,133,100,20 +19900106,600,133,100,10 +19900106,600,133,100,9 +19900106,600,133,100,7 +19900106,600,133,100,5 +19900106,600,133,100,3 +19900106,600,133,100,2 +19900106,600,133,100,1 +19900106,600,133,210,40 +19900106,600,3,117,2000 +19900106,600,133,109,1 +19900106,600,133,109,2 +19900106,600,133,109,3 +19900106,600,133,109,4 +19900106,600,133,109,5 +19900106,600,133,109,6 +19900106,600,133,109,7 +19900106,600,133,109,8 +19900106,600,133,109,9 +19900106,600,133,109,10 +19900106,600,246,109,1 +19900106,600,246,109,2 +19900106,600,246,109,3 +19900106,600,246,109,4 +19900106,600,246,109,5 +19900106,600,246,109,6 +19900106,600,246,109,7 +19900106,600,246,109,8 +19900106,600,246,109,9 +19900106,600,246,109,10 +19900106,600,247,109,1 +19900106,600,247,109,2 +19900106,600,247,109,3 +19900106,600,247,109,4 +19900106,600,247,109,5 +19900106,600,247,109,6 +19900106,600,247,109,7 +19900106,600,247,109,8 +19900106,600,247,109,9 +19900106,600,247,109,10 +19900106,600,248,109,1 +19900106,600,248,109,2 +19900106,600,248,109,3 +19900106,600,248,109,4 +19900106,600,248,109,5 +19900106,600,248,109,6 +19900106,600,248,109,7 +19900106,600,248,109,8 +19900106,600,248,109,9 +19900106,600,248,109,10 +19900106,600,8,1,0 +19900106,600,31,1,0 +19900106,600,32,1,0 +19900106,600,33,1,0 +19900106,600,34,1,0 +19900106,600,35,111,7 +19900106,600,36,111,28 +19900106,600,37,111,100 +19900106,600,38,111,289 +19900106,600,39,111,7 +19900106,600,40,111,28 +19900106,600,41,111,100 +19900106,600,42,111,289 +19900106,600,44,1,0 +19900106,600,45,1,0 +19900106,600,49,1,0 +19900106,600,50,1,0 +19900106,600,57,1,0 +19900106,600,58,1,0 +19900106,600,123,1,0 +19900106,600,139,111,7 +19900106,600,141,1,0 +19900106,600,142,1,0 +19900106,600,143,1,0 +19900106,600,144,1,0 +19900106,600,145,1,0 +19900106,600,146,1,0 +19900106,600,147,1,0 +19900106,600,148,1,0 +19900106,600,169,1,0 +19900106,600,170,111,28 +19900106,600,172,1,0 +19900106,600,175,1,0 +19900106,600,176,1,0 +19900106,600,177,1,0 +19900106,600,178,1,0 +19900106,600,179,1,0 +19900106,600,180,1,0 +19900106,600,181,1,0 +19900106,600,182,1,0 +19900106,600,183,111,100 +19900106,600,189,1,0 +19900106,600,195,1,0 +19900106,600,196,1,0 +19900106,600,197,1,0 +19900106,600,198,1,0 +19900106,600,201,1,0 +19900106,600,202,1,0 +19900106,600,205,1,0 +19900106,600,208,1,0 +19900106,600,209,1,0 +19900106,600,210,1,0 +19900106,600,211,1,0 +19900106,600,212,1,0 +19900106,600,213,1,0 +19900106,600,228,1,0 +19900106,600,235,1,0 +19900106,600,236,111,289 +19900106,600,238,1,0 +19900106,600,59,1,0 +19900106,600,78,1,0 +19900106,600,79,1,0 +19900106,600,136,1,0 +19900106,600,137,1,0 +19900106,600,151,1,0 +19900106,600,159,1,0 +19900106,600,164,1,0 +19900106,600,165,1,0 +19900106,600,166,1,0 +19900106,600,167,1,0 +19900106,600,168,1,0 +19900106,600,186,1,0 +19900106,600,187,1,0 +19900106,600,188,1,0 +19900106,600,229,1,0 +19900106,600,230,1,0 +19900106,600,231,1,0 +19900106,600,232,1,0 +19900106,600,243,1,0 +19900106,600,244,1,0 +19900106,600,245,1,0 +19900106,600,228246,1,0 +19900106,600,228247,1,0 +19900106,900,8,1,0 +19900106,900,31,1,0 +19900106,900,32,1,0 +19900106,900,33,1,0 +19900106,900,34,1,0 +19900106,900,35,111,7 +19900106,900,36,111,28 +19900106,900,37,111,100 +19900106,900,38,111,289 +19900106,900,39,111,7 +19900106,900,40,111,28 +19900106,900,41,111,100 +19900106,900,42,111,289 +19900106,900,44,1,0 +19900106,900,45,1,0 +19900106,900,49,1,0 +19900106,900,50,1,0 +19900106,900,57,1,0 +19900106,900,58,1,0 +19900106,900,123,1,0 +19900106,900,139,111,7 +19900106,900,141,1,0 +19900106,900,142,1,0 +19900106,900,143,1,0 +19900106,900,144,1,0 +19900106,900,145,1,0 +19900106,900,146,1,0 +19900106,900,147,1,0 +19900106,900,148,1,0 +19900106,900,169,1,0 +19900106,900,170,111,28 +19900106,900,172,1,0 +19900106,900,175,1,0 +19900106,900,176,1,0 +19900106,900,177,1,0 +19900106,900,178,1,0 +19900106,900,179,1,0 +19900106,900,180,1,0 +19900106,900,181,1,0 +19900106,900,182,1,0 +19900106,900,183,111,100 +19900106,900,189,1,0 +19900106,900,195,1,0 +19900106,900,196,1,0 +19900106,900,197,1,0 +19900106,900,198,1,0 +19900106,900,201,1,0 +19900106,900,202,1,0 +19900106,900,205,1,0 +19900106,900,208,1,0 +19900106,900,209,1,0 +19900106,900,210,1,0 +19900106,900,211,1,0 +19900106,900,212,1,0 +19900106,900,213,1,0 +19900106,900,228,1,0 +19900106,900,235,1,0 +19900106,900,236,111,289 +19900106,900,238,1,0 +19900106,900,59,1,0 +19900106,900,78,1,0 +19900106,900,79,1,0 +19900106,900,136,1,0 +19900106,900,137,1,0 +19900106,900,151,1,0 +19900106,900,159,1,0 +19900106,900,164,1,0 +19900106,900,165,1,0 +19900106,900,166,1,0 +19900106,900,167,1,0 +19900106,900,168,1,0 +19900106,900,186,1,0 +19900106,900,187,1,0 +19900106,900,188,1,0 +19900106,900,229,1,0 +19900106,900,230,1,0 +19900106,900,231,1,0 +19900106,900,232,1,0 +19900106,900,243,1,0 +19900106,900,244,1,0 +19900106,900,245,1,0 +19900106,900,228246,1,0 +19900106,900,228247,1,0 +19900106,1200,133,100,1000 +19900106,1200,133,100,975 +19900106,1200,133,100,950 +19900106,1200,133,100,925 +19900106,1200,133,100,900 +19900106,1200,133,100,875 +19900106,1200,133,100,850 +19900106,1200,133,100,825 +19900106,1200,133,100,800 +19900106,1200,133,100,775 +19900106,1200,133,100,750 +19900106,1200,133,100,740 +19900106,1200,133,100,700 +19900106,1200,133,100,650 +19900106,1200,133,100,620 +19900106,1200,133,100,600 +19900106,1200,133,100,550 +19900106,1200,133,100,500 +19900106,1200,133,100,450 +19900106,1200,133,100,400 +19900106,1200,133,100,375 +19900106,1200,133,100,350 +19900106,1200,133,100,300 +19900106,1200,133,100,250 +19900106,1200,133,100,245 +19900106,1200,133,100,225 +19900106,1200,133,100,200 +19900106,1200,133,100,175 +19900106,1200,133,100,150 +19900106,1200,133,100,125 +19900106,1200,133,100,100 +19900106,1200,133,100,70 +19900106,1200,133,100,50 +19900106,1200,133,100,30 +19900106,1200,133,100,20 +19900106,1200,133,100,10 +19900106,1200,133,100,9 +19900106,1200,133,100,7 +19900106,1200,133,100,5 +19900106,1200,133,100,3 +19900106,1200,133,100,2 +19900106,1200,133,100,1 +19900106,1200,133,210,40 +19900106,1200,3,117,2000 +19900106,1200,133,109,1 +19900106,1200,133,109,2 +19900106,1200,133,109,3 +19900106,1200,133,109,4 +19900106,1200,133,109,5 +19900106,1200,133,109,6 +19900106,1200,133,109,7 +19900106,1200,133,109,8 +19900106,1200,133,109,9 +19900106,1200,133,109,10 +19900106,1200,246,109,1 +19900106,1200,246,109,2 +19900106,1200,246,109,3 +19900106,1200,246,109,4 +19900106,1200,246,109,5 +19900106,1200,246,109,6 +19900106,1200,246,109,7 +19900106,1200,246,109,8 +19900106,1200,246,109,9 +19900106,1200,246,109,10 +19900106,1200,247,109,1 +19900106,1200,247,109,2 +19900106,1200,247,109,3 +19900106,1200,247,109,4 +19900106,1200,247,109,5 +19900106,1200,247,109,6 +19900106,1200,247,109,7 +19900106,1200,247,109,8 +19900106,1200,247,109,9 +19900106,1200,247,109,10 +19900106,1200,248,109,1 +19900106,1200,248,109,2 +19900106,1200,248,109,3 +19900106,1200,248,109,4 +19900106,1200,248,109,5 +19900106,1200,248,109,6 +19900106,1200,248,109,7 +19900106,1200,248,109,8 +19900106,1200,248,109,9 +19900106,1200,248,109,10 +19900106,1200,8,1,0 +19900106,1200,31,1,0 +19900106,1200,32,1,0 +19900106,1200,33,1,0 +19900106,1200,34,1,0 +19900106,1200,35,111,7 +19900106,1200,36,111,28 +19900106,1200,37,111,100 +19900106,1200,38,111,289 +19900106,1200,39,111,7 +19900106,1200,40,111,28 +19900106,1200,41,111,100 +19900106,1200,42,111,289 +19900106,1200,44,1,0 +19900106,1200,45,1,0 +19900106,1200,49,1,0 +19900106,1200,50,1,0 +19900106,1200,57,1,0 +19900106,1200,58,1,0 +19900106,1200,123,1,0 +19900106,1200,139,111,7 +19900106,1200,141,1,0 +19900106,1200,142,1,0 +19900106,1200,143,1,0 +19900106,1200,144,1,0 +19900106,1200,145,1,0 +19900106,1200,146,1,0 +19900106,1200,147,1,0 +19900106,1200,148,1,0 +19900106,1200,169,1,0 +19900106,1200,170,111,28 +19900106,1200,172,1,0 +19900106,1200,175,1,0 +19900106,1200,176,1,0 +19900106,1200,177,1,0 +19900106,1200,178,1,0 +19900106,1200,179,1,0 +19900106,1200,180,1,0 +19900106,1200,181,1,0 +19900106,1200,182,1,0 +19900106,1200,183,111,100 +19900106,1200,189,1,0 +19900106,1200,195,1,0 +19900106,1200,196,1,0 +19900106,1200,197,1,0 +19900106,1200,198,1,0 +19900106,1200,201,1,0 +19900106,1200,202,1,0 +19900106,1200,205,1,0 +19900106,1200,208,1,0 +19900106,1200,209,1,0 +19900106,1200,210,1,0 +19900106,1200,211,1,0 +19900106,1200,212,1,0 +19900106,1200,213,1,0 +19900106,1200,228,1,0 +19900106,1200,235,1,0 +19900106,1200,236,111,289 +19900106,1200,238,1,0 +19900106,1200,59,1,0 +19900106,1200,78,1,0 +19900106,1200,79,1,0 +19900106,1200,136,1,0 +19900106,1200,137,1,0 +19900106,1200,151,1,0 +19900106,1200,159,1,0 +19900106,1200,164,1,0 +19900106,1200,165,1,0 +19900106,1200,166,1,0 +19900106,1200,167,1,0 +19900106,1200,168,1,0 +19900106,1200,186,1,0 +19900106,1200,187,1,0 +19900106,1200,188,1,0 +19900106,1200,229,1,0 +19900106,1200,230,1,0 +19900106,1200,231,1,0 +19900106,1200,232,1,0 +19900106,1200,243,1,0 +19900106,1200,244,1,0 +19900106,1200,245,1,0 +19900106,1200,228246,1,0 +19900106,1200,228247,1,0 +19900106,1500,8,1,0 +19900106,1500,31,1,0 +19900106,1500,32,1,0 +19900106,1500,33,1,0 +19900106,1500,34,1,0 +19900106,1500,35,111,7 +19900106,1500,36,111,28 +19900106,1500,37,111,100 +19900106,1500,38,111,289 +19900106,1500,39,111,7 +19900106,1500,40,111,28 +19900106,1500,41,111,100 +19900106,1500,42,111,289 +19900106,1500,44,1,0 +19900106,1500,45,1,0 +19900106,1500,49,1,0 +19900106,1500,50,1,0 +19900106,1500,57,1,0 +19900106,1500,58,1,0 +19900106,1500,123,1,0 +19900106,1500,139,111,7 +19900106,1500,141,1,0 +19900106,1500,142,1,0 +19900106,1500,143,1,0 +19900106,1500,144,1,0 +19900106,1500,145,1,0 +19900106,1500,146,1,0 +19900106,1500,147,1,0 +19900106,1500,148,1,0 +19900106,1500,169,1,0 +19900106,1500,170,111,28 +19900106,1500,172,1,0 +19900106,1500,175,1,0 +19900106,1500,176,1,0 +19900106,1500,177,1,0 +19900106,1500,178,1,0 +19900106,1500,179,1,0 +19900106,1500,180,1,0 +19900106,1500,181,1,0 +19900106,1500,182,1,0 +19900106,1500,183,111,100 +19900106,1500,189,1,0 +19900106,1500,195,1,0 +19900106,1500,196,1,0 +19900106,1500,197,1,0 +19900106,1500,198,1,0 +19900106,1500,201,1,0 +19900106,1500,202,1,0 +19900106,1500,205,1,0 +19900106,1500,208,1,0 +19900106,1500,209,1,0 +19900106,1500,210,1,0 +19900106,1500,211,1,0 +19900106,1500,212,1,0 +19900106,1500,213,1,0 +19900106,1500,228,1,0 +19900106,1500,235,1,0 +19900106,1500,236,111,289 +19900106,1500,238,1,0 +19900106,1500,59,1,0 +19900106,1500,78,1,0 +19900106,1500,79,1,0 +19900106,1500,136,1,0 +19900106,1500,137,1,0 +19900106,1500,151,1,0 +19900106,1500,159,1,0 +19900106,1500,164,1,0 +19900106,1500,165,1,0 +19900106,1500,166,1,0 +19900106,1500,167,1,0 +19900106,1500,168,1,0 +19900106,1500,186,1,0 +19900106,1500,187,1,0 +19900106,1500,188,1,0 +19900106,1500,229,1,0 +19900106,1500,230,1,0 +19900106,1500,231,1,0 +19900106,1500,232,1,0 +19900106,1500,243,1,0 +19900106,1500,244,1,0 +19900106,1500,245,1,0 +19900106,1500,228246,1,0 +19900106,1500,228247,1,0 +19900106,1800,133,100,1000 +19900106,1800,133,100,975 +19900106,1800,133,100,950 +19900106,1800,133,100,925 +19900106,1800,133,100,900 +19900106,1800,133,100,875 +19900106,1800,133,100,850 +19900106,1800,133,100,825 +19900106,1800,133,100,800 +19900106,1800,133,100,775 +19900106,1800,133,100,750 +19900106,1800,133,100,740 +19900106,1800,133,100,700 +19900106,1800,133,100,650 +19900106,1800,133,100,620 +19900106,1800,133,100,600 +19900106,1800,133,100,550 +19900106,1800,133,100,500 +19900106,1800,133,100,450 +19900106,1800,133,100,400 +19900106,1800,133,100,375 +19900106,1800,133,100,350 +19900106,1800,133,100,300 +19900106,1800,133,100,250 +19900106,1800,133,100,245 +19900106,1800,133,100,225 +19900106,1800,133,100,200 +19900106,1800,133,100,175 +19900106,1800,133,100,150 +19900106,1800,133,100,125 +19900106,1800,133,100,100 +19900106,1800,133,100,70 +19900106,1800,133,100,50 +19900106,1800,133,100,30 +19900106,1800,133,100,20 +19900106,1800,133,100,10 +19900106,1800,133,100,9 +19900106,1800,133,100,7 +19900106,1800,133,100,5 +19900106,1800,133,100,3 +19900106,1800,133,100,2 +19900106,1800,133,100,1 +19900106,1800,133,210,40 +19900106,1800,3,117,2000 +19900106,1800,133,109,1 +19900106,1800,133,109,2 +19900106,1800,133,109,3 +19900106,1800,133,109,4 +19900106,1800,133,109,5 +19900106,1800,133,109,6 +19900106,1800,133,109,7 +19900106,1800,133,109,8 +19900106,1800,133,109,9 +19900106,1800,133,109,10 +19900106,1800,246,109,1 +19900106,1800,246,109,2 +19900106,1800,246,109,3 +19900106,1800,246,109,4 +19900106,1800,246,109,5 +19900106,1800,246,109,6 +19900106,1800,246,109,7 +19900106,1800,246,109,8 +19900106,1800,246,109,9 +19900106,1800,246,109,10 +19900106,1800,247,109,1 +19900106,1800,247,109,2 +19900106,1800,247,109,3 +19900106,1800,247,109,4 +19900106,1800,247,109,5 +19900106,1800,247,109,6 +19900106,1800,247,109,7 +19900106,1800,247,109,8 +19900106,1800,247,109,9 +19900106,1800,247,109,10 +19900106,1800,248,109,1 +19900106,1800,248,109,2 +19900106,1800,248,109,3 +19900106,1800,248,109,4 +19900106,1800,248,109,5 +19900106,1800,248,109,6 +19900106,1800,248,109,7 +19900106,1800,248,109,8 +19900106,1800,248,109,9 +19900106,1800,248,109,10 +19900106,1800,8,1,0 +19900106,1800,31,1,0 +19900106,1800,32,1,0 +19900106,1800,33,1,0 +19900106,1800,34,1,0 +19900106,1800,35,111,7 +19900106,1800,36,111,28 +19900106,1800,37,111,100 +19900106,1800,38,111,289 +19900106,1800,39,111,7 +19900106,1800,40,111,28 +19900106,1800,41,111,100 +19900106,1800,42,111,289 +19900106,1800,44,1,0 +19900106,1800,45,1,0 +19900106,1800,49,1,0 +19900106,1800,50,1,0 +19900106,1800,57,1,0 +19900106,1800,58,1,0 +19900106,1800,123,1,0 +19900106,1800,139,111,7 +19900106,1800,141,1,0 +19900106,1800,142,1,0 +19900106,1800,143,1,0 +19900106,1800,144,1,0 +19900106,1800,145,1,0 +19900106,1800,146,1,0 +19900106,1800,147,1,0 +19900106,1800,148,1,0 +19900106,1800,169,1,0 +19900106,1800,170,111,28 +19900106,1800,172,1,0 +19900106,1800,175,1,0 +19900106,1800,176,1,0 +19900106,1800,177,1,0 +19900106,1800,178,1,0 +19900106,1800,179,1,0 +19900106,1800,180,1,0 +19900106,1800,181,1,0 +19900106,1800,182,1,0 +19900106,1800,183,111,100 +19900106,1800,189,1,0 +19900106,1800,195,1,0 +19900106,1800,196,1,0 +19900106,1800,197,1,0 +19900106,1800,198,1,0 +19900106,1800,201,1,0 +19900106,1800,202,1,0 +19900106,1800,205,1,0 +19900106,1800,208,1,0 +19900106,1800,209,1,0 +19900106,1800,210,1,0 +19900106,1800,211,1,0 +19900106,1800,212,1,0 +19900106,1800,213,1,0 +19900106,1800,228,1,0 +19900106,1800,235,1,0 +19900106,1800,236,111,289 +19900106,1800,238,1,0 +19900106,1800,59,1,0 +19900106,1800,78,1,0 +19900106,1800,79,1,0 +19900106,1800,136,1,0 +19900106,1800,137,1,0 +19900106,1800,151,1,0 +19900106,1800,159,1,0 +19900106,1800,164,1,0 +19900106,1800,165,1,0 +19900106,1800,166,1,0 +19900106,1800,167,1,0 +19900106,1800,168,1,0 +19900106,1800,186,1,0 +19900106,1800,187,1,0 +19900106,1800,188,1,0 +19900106,1800,229,1,0 +19900106,1800,230,1,0 +19900106,1800,231,1,0 +19900106,1800,232,1,0 +19900106,1800,243,1,0 +19900106,1800,244,1,0 +19900106,1800,245,1,0 +19900106,1800,228246,1,0 +19900106,1800,228247,1,0 +19900106,2100,8,1,0 +19900106,2100,31,1,0 +19900106,2100,32,1,0 +19900106,2100,33,1,0 +19900106,2100,34,1,0 +19900106,2100,35,111,7 +19900106,2100,36,111,28 +19900106,2100,37,111,100 +19900106,2100,38,111,289 +19900106,2100,39,111,7 +19900106,2100,40,111,28 +19900106,2100,41,111,100 +19900106,2100,42,111,289 +19900106,2100,44,1,0 +19900106,2100,45,1,0 +19900106,2100,49,1,0 +19900106,2100,50,1,0 +19900106,2100,57,1,0 +19900106,2100,58,1,0 +19900106,2100,123,1,0 +19900106,2100,139,111,7 +19900106,2100,141,1,0 +19900106,2100,142,1,0 +19900106,2100,143,1,0 +19900106,2100,144,1,0 +19900106,2100,145,1,0 +19900106,2100,146,1,0 +19900106,2100,147,1,0 +19900106,2100,148,1,0 +19900106,2100,169,1,0 +19900106,2100,170,111,28 +19900106,2100,172,1,0 +19900106,2100,175,1,0 +19900106,2100,176,1,0 +19900106,2100,177,1,0 +19900106,2100,178,1,0 +19900106,2100,179,1,0 +19900106,2100,180,1,0 +19900106,2100,181,1,0 +19900106,2100,182,1,0 +19900106,2100,183,111,100 +19900106,2100,189,1,0 +19900106,2100,195,1,0 +19900106,2100,196,1,0 +19900106,2100,197,1,0 +19900106,2100,198,1,0 +19900106,2100,201,1,0 +19900106,2100,202,1,0 +19900106,2100,205,1,0 +19900106,2100,208,1,0 +19900106,2100,209,1,0 +19900106,2100,210,1,0 +19900106,2100,211,1,0 +19900106,2100,212,1,0 +19900106,2100,213,1,0 +19900106,2100,228,1,0 +19900106,2100,235,1,0 +19900106,2100,236,111,289 +19900106,2100,238,1,0 +19900106,2100,59,1,0 +19900106,2100,78,1,0 +19900106,2100,79,1,0 +19900106,2100,136,1,0 +19900106,2100,137,1,0 +19900106,2100,151,1,0 +19900106,2100,159,1,0 +19900106,2100,164,1,0 +19900106,2100,165,1,0 +19900106,2100,166,1,0 +19900106,2100,167,1,0 +19900106,2100,168,1,0 +19900106,2100,186,1,0 +19900106,2100,187,1,0 +19900106,2100,188,1,0 +19900106,2100,229,1,0 +19900106,2100,230,1,0 +19900106,2100,231,1,0 +19900106,2100,232,1,0 +19900106,2100,243,1,0 +19900106,2100,244,1,0 +19900106,2100,245,1,0 +19900106,2100,228246,1,0 +19900106,2100,228247,1,0 +19900107,0,133,100,1000 +19900107,0,133,100,975 +19900107,0,133,100,950 +19900107,0,133,100,925 +19900107,0,133,100,900 +19900107,0,133,100,875 +19900107,0,133,100,850 +19900107,0,133,100,825 +19900107,0,133,100,800 +19900107,0,133,100,775 +19900107,0,133,100,750 +19900107,0,133,100,740 +19900107,0,133,100,700 +19900107,0,133,100,650 +19900107,0,133,100,620 +19900107,0,133,100,600 +19900107,0,133,100,550 +19900107,0,133,100,500 +19900107,0,133,100,450 +19900107,0,133,100,400 +19900107,0,133,100,375 +19900107,0,133,100,350 +19900107,0,133,100,300 +19900107,0,133,100,250 +19900107,0,133,100,245 +19900107,0,133,100,225 +19900107,0,133,100,200 +19900107,0,133,100,175 +19900107,0,133,100,150 +19900107,0,133,100,125 +19900107,0,133,100,100 +19900107,0,133,100,70 +19900107,0,133,100,50 +19900107,0,133,100,30 +19900107,0,133,100,20 +19900107,0,133,100,10 +19900107,0,133,100,9 +19900107,0,133,100,7 +19900107,0,133,100,5 +19900107,0,133,100,3 +19900107,0,133,100,2 +19900107,0,133,100,1 +19900107,0,133,210,40 +19900107,0,3,117,2000 +19900107,0,133,109,1 +19900107,0,133,109,2 +19900107,0,133,109,3 +19900107,0,133,109,4 +19900107,0,133,109,5 +19900107,0,133,109,6 +19900107,0,133,109,7 +19900107,0,133,109,8 +19900107,0,133,109,9 +19900107,0,133,109,10 +19900107,0,246,109,1 +19900107,0,246,109,2 +19900107,0,246,109,3 +19900107,0,246,109,4 +19900107,0,246,109,5 +19900107,0,246,109,6 +19900107,0,246,109,7 +19900107,0,246,109,8 +19900107,0,246,109,9 +19900107,0,246,109,10 +19900107,0,247,109,1 +19900107,0,247,109,2 +19900107,0,247,109,3 +19900107,0,247,109,4 +19900107,0,247,109,5 +19900107,0,247,109,6 +19900107,0,247,109,7 +19900107,0,247,109,8 +19900107,0,247,109,9 +19900107,0,247,109,10 +19900107,0,248,109,1 +19900107,0,248,109,2 +19900107,0,248,109,3 +19900107,0,248,109,4 +19900107,0,248,109,5 +19900107,0,248,109,6 +19900107,0,248,109,7 +19900107,0,248,109,8 +19900107,0,248,109,9 +19900107,0,248,109,10 +19900107,0,8,1,0 +19900107,0,31,1,0 +19900107,0,32,1,0 +19900107,0,33,1,0 +19900107,0,34,1,0 +19900107,0,35,111,7 +19900107,0,36,111,28 +19900107,0,37,111,100 +19900107,0,38,111,289 +19900107,0,39,111,7 +19900107,0,40,111,28 +19900107,0,41,111,100 +19900107,0,42,111,289 +19900107,0,44,1,0 +19900107,0,45,1,0 +19900107,0,49,1,0 +19900107,0,50,1,0 +19900107,0,57,1,0 +19900107,0,58,1,0 +19900107,0,123,1,0 +19900107,0,139,111,7 +19900107,0,141,1,0 +19900107,0,142,1,0 +19900107,0,143,1,0 +19900107,0,144,1,0 +19900107,0,145,1,0 +19900107,0,146,1,0 +19900107,0,147,1,0 +19900107,0,148,1,0 +19900107,0,169,1,0 +19900107,0,170,111,28 +19900107,0,172,1,0 +19900107,0,175,1,0 +19900107,0,176,1,0 +19900107,0,177,1,0 +19900107,0,178,1,0 +19900107,0,179,1,0 +19900107,0,180,1,0 +19900107,0,181,1,0 +19900107,0,182,1,0 +19900107,0,183,111,100 +19900107,0,189,1,0 +19900107,0,195,1,0 +19900107,0,196,1,0 +19900107,0,197,1,0 +19900107,0,198,1,0 +19900107,0,201,1,0 +19900107,0,202,1,0 +19900107,0,205,1,0 +19900107,0,208,1,0 +19900107,0,209,1,0 +19900107,0,210,1,0 +19900107,0,211,1,0 +19900107,0,212,1,0 +19900107,0,213,1,0 +19900107,0,228,1,0 +19900107,0,235,1,0 +19900107,0,236,111,289 +19900107,0,238,1,0 +19900107,0,59,1,0 +19900107,0,78,1,0 +19900107,0,79,1,0 +19900107,0,136,1,0 +19900107,0,137,1,0 +19900107,0,151,1,0 +19900107,0,159,1,0 +19900107,0,164,1,0 +19900107,0,165,1,0 +19900107,0,166,1,0 +19900107,0,167,1,0 +19900107,0,168,1,0 +19900107,0,186,1,0 +19900107,0,187,1,0 +19900107,0,188,1,0 +19900107,0,229,1,0 +19900107,0,230,1,0 +19900107,0,231,1,0 +19900107,0,232,1,0 +19900107,0,243,1,0 +19900107,0,244,1,0 +19900107,0,245,1,0 +19900107,0,228246,1,0 +19900107,0,228247,1,0 +19900107,300,8,1,0 +19900107,300,31,1,0 +19900107,300,32,1,0 +19900107,300,33,1,0 +19900107,300,34,1,0 +19900107,300,35,111,7 +19900107,300,36,111,28 +19900107,300,37,111,100 +19900107,300,38,111,289 +19900107,300,39,111,7 +19900107,300,40,111,28 +19900107,300,41,111,100 +19900107,300,42,111,289 +19900107,300,44,1,0 +19900107,300,45,1,0 +19900107,300,49,1,0 +19900107,300,50,1,0 +19900107,300,57,1,0 +19900107,300,58,1,0 +19900107,300,123,1,0 +19900107,300,139,111,7 +19900107,300,141,1,0 +19900107,300,142,1,0 +19900107,300,143,1,0 +19900107,300,144,1,0 +19900107,300,145,1,0 +19900107,300,146,1,0 +19900107,300,147,1,0 +19900107,300,148,1,0 +19900107,300,169,1,0 +19900107,300,170,111,28 +19900107,300,172,1,0 +19900107,300,175,1,0 +19900107,300,176,1,0 +19900107,300,177,1,0 +19900107,300,178,1,0 +19900107,300,179,1,0 +19900107,300,180,1,0 +19900107,300,181,1,0 +19900107,300,182,1,0 +19900107,300,183,111,100 +19900107,300,189,1,0 +19900107,300,195,1,0 +19900107,300,196,1,0 +19900107,300,197,1,0 +19900107,300,198,1,0 +19900107,300,201,1,0 +19900107,300,202,1,0 +19900107,300,205,1,0 +19900107,300,208,1,0 +19900107,300,209,1,0 +19900107,300,210,1,0 +19900107,300,211,1,0 +19900107,300,212,1,0 +19900107,300,213,1,0 +19900107,300,228,1,0 +19900107,300,235,1,0 +19900107,300,236,111,289 +19900107,300,238,1,0 +19900107,300,59,1,0 +19900107,300,78,1,0 +19900107,300,79,1,0 +19900107,300,136,1,0 +19900107,300,137,1,0 +19900107,300,151,1,0 +19900107,300,159,1,0 +19900107,300,164,1,0 +19900107,300,165,1,0 +19900107,300,166,1,0 +19900107,300,167,1,0 +19900107,300,168,1,0 +19900107,300,186,1,0 +19900107,300,187,1,0 +19900107,300,188,1,0 +19900107,300,229,1,0 +19900107,300,230,1,0 +19900107,300,231,1,0 +19900107,300,232,1,0 +19900107,300,243,1,0 +19900107,300,244,1,0 +19900107,300,245,1,0 +19900107,300,228246,1,0 +19900107,300,228247,1,0 +19900107,600,133,100,1000 +19900107,600,133,100,975 +19900107,600,133,100,950 +19900107,600,133,100,925 +19900107,600,133,100,900 +19900107,600,133,100,875 +19900107,600,133,100,850 +19900107,600,133,100,825 +19900107,600,133,100,800 +19900107,600,133,100,775 +19900107,600,133,100,750 +19900107,600,133,100,740 +19900107,600,133,100,700 +19900107,600,133,100,650 +19900107,600,133,100,620 +19900107,600,133,100,600 +19900107,600,133,100,550 +19900107,600,133,100,500 +19900107,600,133,100,450 +19900107,600,133,100,400 +19900107,600,133,100,375 +19900107,600,133,100,350 +19900107,600,133,100,300 +19900107,600,133,100,250 +19900107,600,133,100,245 +19900107,600,133,100,225 +19900107,600,133,100,200 +19900107,600,133,100,175 +19900107,600,133,100,150 +19900107,600,133,100,125 +19900107,600,133,100,100 +19900107,600,133,100,70 +19900107,600,133,100,50 +19900107,600,133,100,30 +19900107,600,133,100,20 +19900107,600,133,100,10 +19900107,600,133,100,9 +19900107,600,133,100,7 +19900107,600,133,100,5 +19900107,600,133,100,3 +19900107,600,133,100,2 +19900107,600,133,100,1 +19900107,600,133,210,40 +19900107,600,3,117,2000 +19900107,600,133,109,1 +19900107,600,133,109,2 +19900107,600,133,109,3 +19900107,600,133,109,4 +19900107,600,133,109,5 +19900107,600,133,109,6 +19900107,600,133,109,7 +19900107,600,133,109,8 +19900107,600,133,109,9 +19900107,600,133,109,10 +19900107,600,246,109,1 +19900107,600,246,109,2 +19900107,600,246,109,3 +19900107,600,246,109,4 +19900107,600,246,109,5 +19900107,600,246,109,6 +19900107,600,246,109,7 +19900107,600,246,109,8 +19900107,600,246,109,9 +19900107,600,246,109,10 +19900107,600,247,109,1 +19900107,600,247,109,2 +19900107,600,247,109,3 +19900107,600,247,109,4 +19900107,600,247,109,5 +19900107,600,247,109,6 +19900107,600,247,109,7 +19900107,600,247,109,8 +19900107,600,247,109,9 +19900107,600,247,109,10 +19900107,600,248,109,1 +19900107,600,248,109,2 +19900107,600,248,109,3 +19900107,600,248,109,4 +19900107,600,248,109,5 +19900107,600,248,109,6 +19900107,600,248,109,7 +19900107,600,248,109,8 +19900107,600,248,109,9 +19900107,600,248,109,10 +19900107,600,8,1,0 +19900107,600,31,1,0 +19900107,600,32,1,0 +19900107,600,33,1,0 +19900107,600,34,1,0 +19900107,600,35,111,7 +19900107,600,36,111,28 +19900107,600,37,111,100 +19900107,600,38,111,289 +19900107,600,39,111,7 +19900107,600,40,111,28 +19900107,600,41,111,100 +19900107,600,42,111,289 +19900107,600,44,1,0 +19900107,600,45,1,0 +19900107,600,49,1,0 +19900107,600,50,1,0 +19900107,600,57,1,0 +19900107,600,58,1,0 +19900107,600,123,1,0 +19900107,600,139,111,7 +19900107,600,141,1,0 +19900107,600,142,1,0 +19900107,600,143,1,0 +19900107,600,144,1,0 +19900107,600,145,1,0 +19900107,600,146,1,0 +19900107,600,147,1,0 +19900107,600,148,1,0 +19900107,600,169,1,0 +19900107,600,170,111,28 +19900107,600,172,1,0 +19900107,600,175,1,0 +19900107,600,176,1,0 +19900107,600,177,1,0 +19900107,600,178,1,0 +19900107,600,179,1,0 +19900107,600,180,1,0 +19900107,600,181,1,0 +19900107,600,182,1,0 +19900107,600,183,111,100 +19900107,600,189,1,0 +19900107,600,195,1,0 +19900107,600,196,1,0 +19900107,600,197,1,0 +19900107,600,198,1,0 +19900107,600,201,1,0 +19900107,600,202,1,0 +19900107,600,205,1,0 +19900107,600,208,1,0 +19900107,600,209,1,0 +19900107,600,210,1,0 +19900107,600,211,1,0 +19900107,600,212,1,0 +19900107,600,213,1,0 +19900107,600,228,1,0 +19900107,600,235,1,0 +19900107,600,236,111,289 +19900107,600,238,1,0 +19900107,600,59,1,0 +19900107,600,78,1,0 +19900107,600,79,1,0 +19900107,600,136,1,0 +19900107,600,137,1,0 +19900107,600,151,1,0 +19900107,600,159,1,0 +19900107,600,164,1,0 +19900107,600,165,1,0 +19900107,600,166,1,0 +19900107,600,167,1,0 +19900107,600,168,1,0 +19900107,600,186,1,0 +19900107,600,187,1,0 +19900107,600,188,1,0 +19900107,600,229,1,0 +19900107,600,230,1,0 +19900107,600,231,1,0 +19900107,600,232,1,0 +19900107,600,243,1,0 +19900107,600,244,1,0 +19900107,600,245,1,0 +19900107,600,228246,1,0 +19900107,600,228247,1,0 +19900107,900,8,1,0 +19900107,900,31,1,0 +19900107,900,32,1,0 +19900107,900,33,1,0 +19900107,900,34,1,0 +19900107,900,35,111,7 +19900107,900,36,111,28 +19900107,900,37,111,100 +19900107,900,38,111,289 +19900107,900,39,111,7 +19900107,900,40,111,28 +19900107,900,41,111,100 +19900107,900,42,111,289 +19900107,900,44,1,0 +19900107,900,45,1,0 +19900107,900,49,1,0 +19900107,900,50,1,0 +19900107,900,57,1,0 +19900107,900,58,1,0 +19900107,900,123,1,0 +19900107,900,139,111,7 +19900107,900,141,1,0 +19900107,900,142,1,0 +19900107,900,143,1,0 +19900107,900,144,1,0 +19900107,900,145,1,0 +19900107,900,146,1,0 +19900107,900,147,1,0 +19900107,900,148,1,0 +19900107,900,169,1,0 +19900107,900,170,111,28 +19900107,900,172,1,0 +19900107,900,175,1,0 +19900107,900,176,1,0 +19900107,900,177,1,0 +19900107,900,178,1,0 +19900107,900,179,1,0 +19900107,900,180,1,0 +19900107,900,181,1,0 +19900107,900,182,1,0 +19900107,900,183,111,100 +19900107,900,189,1,0 +19900107,900,195,1,0 +19900107,900,196,1,0 +19900107,900,197,1,0 +19900107,900,198,1,0 +19900107,900,201,1,0 +19900107,900,202,1,0 +19900107,900,205,1,0 +19900107,900,208,1,0 +19900107,900,209,1,0 +19900107,900,210,1,0 +19900107,900,211,1,0 +19900107,900,212,1,0 +19900107,900,213,1,0 +19900107,900,228,1,0 +19900107,900,235,1,0 +19900107,900,236,111,289 +19900107,900,238,1,0 +19900107,900,59,1,0 +19900107,900,78,1,0 +19900107,900,79,1,0 +19900107,900,136,1,0 +19900107,900,137,1,0 +19900107,900,151,1,0 +19900107,900,159,1,0 +19900107,900,164,1,0 +19900107,900,165,1,0 +19900107,900,166,1,0 +19900107,900,167,1,0 +19900107,900,168,1,0 +19900107,900,186,1,0 +19900107,900,187,1,0 +19900107,900,188,1,0 +19900107,900,229,1,0 +19900107,900,230,1,0 +19900107,900,231,1,0 +19900107,900,232,1,0 +19900107,900,243,1,0 +19900107,900,244,1,0 +19900107,900,245,1,0 +19900107,900,228246,1,0 +19900107,900,228247,1,0 +19900107,1200,133,100,1000 +19900107,1200,133,100,975 +19900107,1200,133,100,950 +19900107,1200,133,100,925 +19900107,1200,133,100,900 +19900107,1200,133,100,875 +19900107,1200,133,100,850 +19900107,1200,133,100,825 +19900107,1200,133,100,800 +19900107,1200,133,100,775 +19900107,1200,133,100,750 +19900107,1200,133,100,740 +19900107,1200,133,100,700 +19900107,1200,133,100,650 +19900107,1200,133,100,620 +19900107,1200,133,100,600 +19900107,1200,133,100,550 +19900107,1200,133,100,500 +19900107,1200,133,100,450 +19900107,1200,133,100,400 +19900107,1200,133,100,375 +19900107,1200,133,100,350 +19900107,1200,133,100,300 +19900107,1200,133,100,250 +19900107,1200,133,100,245 +19900107,1200,133,100,225 +19900107,1200,133,100,200 +19900107,1200,133,100,175 +19900107,1200,133,100,150 +19900107,1200,133,100,125 +19900107,1200,133,100,100 +19900107,1200,133,100,70 +19900107,1200,133,100,50 +19900107,1200,133,100,30 +19900107,1200,133,100,20 +19900107,1200,133,100,10 +19900107,1200,133,100,9 +19900107,1200,133,100,7 +19900107,1200,133,100,5 +19900107,1200,133,100,3 +19900107,1200,133,100,2 +19900107,1200,133,100,1 +19900107,1200,133,210,40 +19900107,1200,3,117,2000 +19900107,1200,133,109,1 +19900107,1200,133,109,2 +19900107,1200,133,109,3 +19900107,1200,133,109,4 +19900107,1200,133,109,5 +19900107,1200,133,109,6 +19900107,1200,133,109,7 +19900107,1200,133,109,8 +19900107,1200,133,109,9 +19900107,1200,133,109,10 +19900107,1200,246,109,1 +19900107,1200,246,109,2 +19900107,1200,246,109,3 +19900107,1200,246,109,4 +19900107,1200,246,109,5 +19900107,1200,246,109,6 +19900107,1200,246,109,7 +19900107,1200,246,109,8 +19900107,1200,246,109,9 +19900107,1200,246,109,10 +19900107,1200,247,109,1 +19900107,1200,247,109,2 +19900107,1200,247,109,3 +19900107,1200,247,109,4 +19900107,1200,247,109,5 +19900107,1200,247,109,6 +19900107,1200,247,109,7 +19900107,1200,247,109,8 +19900107,1200,247,109,9 +19900107,1200,247,109,10 +19900107,1200,248,109,1 +19900107,1200,248,109,2 +19900107,1200,248,109,3 +19900107,1200,248,109,4 +19900107,1200,248,109,5 +19900107,1200,248,109,6 +19900107,1200,248,109,7 +19900107,1200,248,109,8 +19900107,1200,248,109,9 +19900107,1200,248,109,10 +19900107,1200,8,1,0 +19900107,1200,31,1,0 +19900107,1200,32,1,0 +19900107,1200,33,1,0 +19900107,1200,34,1,0 +19900107,1200,35,111,7 +19900107,1200,36,111,28 +19900107,1200,37,111,100 +19900107,1200,38,111,289 +19900107,1200,39,111,7 +19900107,1200,40,111,28 +19900107,1200,41,111,100 +19900107,1200,42,111,289 +19900107,1200,44,1,0 +19900107,1200,45,1,0 +19900107,1200,49,1,0 +19900107,1200,50,1,0 +19900107,1200,57,1,0 +19900107,1200,58,1,0 +19900107,1200,123,1,0 +19900107,1200,139,111,7 +19900107,1200,141,1,0 +19900107,1200,142,1,0 +19900107,1200,143,1,0 +19900107,1200,144,1,0 +19900107,1200,145,1,0 +19900107,1200,146,1,0 +19900107,1200,147,1,0 +19900107,1200,148,1,0 +19900107,1200,169,1,0 +19900107,1200,170,111,28 +19900107,1200,172,1,0 +19900107,1200,175,1,0 +19900107,1200,176,1,0 +19900107,1200,177,1,0 +19900107,1200,178,1,0 +19900107,1200,179,1,0 +19900107,1200,180,1,0 +19900107,1200,181,1,0 +19900107,1200,182,1,0 +19900107,1200,183,111,100 +19900107,1200,189,1,0 +19900107,1200,195,1,0 +19900107,1200,196,1,0 +19900107,1200,197,1,0 +19900107,1200,198,1,0 +19900107,1200,201,1,0 +19900107,1200,202,1,0 +19900107,1200,205,1,0 +19900107,1200,208,1,0 +19900107,1200,209,1,0 +19900107,1200,210,1,0 +19900107,1200,211,1,0 +19900107,1200,212,1,0 +19900107,1200,213,1,0 +19900107,1200,228,1,0 +19900107,1200,235,1,0 +19900107,1200,236,111,289 +19900107,1200,238,1,0 +19900107,1200,59,1,0 +19900107,1200,78,1,0 +19900107,1200,79,1,0 +19900107,1200,136,1,0 +19900107,1200,137,1,0 +19900107,1200,151,1,0 +19900107,1200,159,1,0 +19900107,1200,164,1,0 +19900107,1200,165,1,0 +19900107,1200,166,1,0 +19900107,1200,167,1,0 +19900107,1200,168,1,0 +19900107,1200,186,1,0 +19900107,1200,187,1,0 +19900107,1200,188,1,0 +19900107,1200,229,1,0 +19900107,1200,230,1,0 +19900107,1200,231,1,0 +19900107,1200,232,1,0 +19900107,1200,243,1,0 +19900107,1200,244,1,0 +19900107,1200,245,1,0 +19900107,1200,228246,1,0 +19900107,1200,228247,1,0 +19900107,1500,8,1,0 +19900107,1500,31,1,0 +19900107,1500,32,1,0 +19900107,1500,33,1,0 +19900107,1500,34,1,0 +19900107,1500,35,111,7 +19900107,1500,36,111,28 +19900107,1500,37,111,100 +19900107,1500,38,111,289 +19900107,1500,39,111,7 +19900107,1500,40,111,28 +19900107,1500,41,111,100 +19900107,1500,42,111,289 +19900107,1500,44,1,0 +19900107,1500,45,1,0 +19900107,1500,49,1,0 +19900107,1500,50,1,0 +19900107,1500,57,1,0 +19900107,1500,58,1,0 +19900107,1500,123,1,0 +19900107,1500,139,111,7 +19900107,1500,141,1,0 +19900107,1500,142,1,0 +19900107,1500,143,1,0 +19900107,1500,144,1,0 +19900107,1500,145,1,0 +19900107,1500,146,1,0 +19900107,1500,147,1,0 +19900107,1500,148,1,0 +19900107,1500,169,1,0 +19900107,1500,170,111,28 +19900107,1500,172,1,0 +19900107,1500,175,1,0 +19900107,1500,176,1,0 +19900107,1500,177,1,0 +19900107,1500,178,1,0 +19900107,1500,179,1,0 +19900107,1500,180,1,0 +19900107,1500,181,1,0 +19900107,1500,182,1,0 +19900107,1500,183,111,100 +19900107,1500,189,1,0 +19900107,1500,195,1,0 +19900107,1500,196,1,0 +19900107,1500,197,1,0 +19900107,1500,198,1,0 +19900107,1500,201,1,0 +19900107,1500,202,1,0 +19900107,1500,205,1,0 +19900107,1500,208,1,0 +19900107,1500,209,1,0 +19900107,1500,210,1,0 +19900107,1500,211,1,0 +19900107,1500,212,1,0 +19900107,1500,213,1,0 +19900107,1500,228,1,0 +19900107,1500,235,1,0 +19900107,1500,236,111,289 +19900107,1500,238,1,0 +19900107,1500,59,1,0 +19900107,1500,78,1,0 +19900107,1500,79,1,0 +19900107,1500,136,1,0 +19900107,1500,137,1,0 +19900107,1500,151,1,0 +19900107,1500,159,1,0 +19900107,1500,164,1,0 +19900107,1500,165,1,0 +19900107,1500,166,1,0 +19900107,1500,167,1,0 +19900107,1500,168,1,0 +19900107,1500,186,1,0 +19900107,1500,187,1,0 +19900107,1500,188,1,0 +19900107,1500,229,1,0 +19900107,1500,230,1,0 +19900107,1500,231,1,0 +19900107,1500,232,1,0 +19900107,1500,243,1,0 +19900107,1500,244,1,0 +19900107,1500,245,1,0 +19900107,1500,228246,1,0 +19900107,1500,228247,1,0 +19900107,1800,133,100,1000 +19900107,1800,133,100,975 +19900107,1800,133,100,950 +19900107,1800,133,100,925 +19900107,1800,133,100,900 +19900107,1800,133,100,875 +19900107,1800,133,100,850 +19900107,1800,133,100,825 +19900107,1800,133,100,800 +19900107,1800,133,100,775 +19900107,1800,133,100,750 +19900107,1800,133,100,740 +19900107,1800,133,100,700 +19900107,1800,133,100,650 +19900107,1800,133,100,620 +19900107,1800,133,100,600 +19900107,1800,133,100,550 +19900107,1800,133,100,500 +19900107,1800,133,100,450 +19900107,1800,133,100,400 +19900107,1800,133,100,375 +19900107,1800,133,100,350 +19900107,1800,133,100,300 +19900107,1800,133,100,250 +19900107,1800,133,100,245 +19900107,1800,133,100,225 +19900107,1800,133,100,200 +19900107,1800,133,100,175 +19900107,1800,133,100,150 +19900107,1800,133,100,125 +19900107,1800,133,100,100 +19900107,1800,133,100,70 +19900107,1800,133,100,50 +19900107,1800,133,100,30 +19900107,1800,133,100,20 +19900107,1800,133,100,10 +19900107,1800,133,100,9 +19900107,1800,133,100,7 +19900107,1800,133,100,5 +19900107,1800,133,100,3 +19900107,1800,133,100,2 +19900107,1800,133,100,1 +19900107,1800,133,210,40 +19900107,1800,3,117,2000 +19900107,1800,133,109,1 +19900107,1800,133,109,2 +19900107,1800,133,109,3 +19900107,1800,133,109,4 +19900107,1800,133,109,5 +19900107,1800,133,109,6 +19900107,1800,133,109,7 +19900107,1800,133,109,8 +19900107,1800,133,109,9 +19900107,1800,133,109,10 +19900107,1800,246,109,1 +19900107,1800,246,109,2 +19900107,1800,246,109,3 +19900107,1800,246,109,4 +19900107,1800,246,109,5 +19900107,1800,246,109,6 +19900107,1800,246,109,7 +19900107,1800,246,109,8 +19900107,1800,246,109,9 +19900107,1800,246,109,10 +19900107,1800,247,109,1 +19900107,1800,247,109,2 +19900107,1800,247,109,3 +19900107,1800,247,109,4 +19900107,1800,247,109,5 +19900107,1800,247,109,6 +19900107,1800,247,109,7 +19900107,1800,247,109,8 +19900107,1800,247,109,9 +19900107,1800,247,109,10 +19900107,1800,248,109,1 +19900107,1800,248,109,2 +19900107,1800,248,109,3 +19900107,1800,248,109,4 +19900107,1800,248,109,5 +19900107,1800,248,109,6 +19900107,1800,248,109,7 +19900107,1800,248,109,8 +19900107,1800,248,109,9 +19900107,1800,248,109,10 +19900107,1800,8,1,0 +19900107,1800,31,1,0 +19900107,1800,32,1,0 +19900107,1800,33,1,0 +19900107,1800,34,1,0 +19900107,1800,35,111,7 +19900107,1800,36,111,28 +19900107,1800,37,111,100 +19900107,1800,38,111,289 +19900107,1800,39,111,7 +19900107,1800,40,111,28 +19900107,1800,41,111,100 +19900107,1800,42,111,289 +19900107,1800,44,1,0 +19900107,1800,45,1,0 +19900107,1800,49,1,0 +19900107,1800,50,1,0 +19900107,1800,57,1,0 +19900107,1800,58,1,0 +19900107,1800,123,1,0 +19900107,1800,139,111,7 +19900107,1800,141,1,0 +19900107,1800,142,1,0 +19900107,1800,143,1,0 +19900107,1800,144,1,0 +19900107,1800,145,1,0 +19900107,1800,146,1,0 +19900107,1800,147,1,0 +19900107,1800,148,1,0 +19900107,1800,169,1,0 +19900107,1800,170,111,28 +19900107,1800,172,1,0 +19900107,1800,175,1,0 +19900107,1800,176,1,0 +19900107,1800,177,1,0 +19900107,1800,178,1,0 +19900107,1800,179,1,0 +19900107,1800,180,1,0 +19900107,1800,181,1,0 +19900107,1800,182,1,0 +19900107,1800,183,111,100 +19900107,1800,189,1,0 +19900107,1800,195,1,0 +19900107,1800,196,1,0 +19900107,1800,197,1,0 +19900107,1800,198,1,0 +19900107,1800,201,1,0 +19900107,1800,202,1,0 +19900107,1800,205,1,0 +19900107,1800,208,1,0 +19900107,1800,209,1,0 +19900107,1800,210,1,0 +19900107,1800,211,1,0 +19900107,1800,212,1,0 +19900107,1800,213,1,0 +19900107,1800,228,1,0 +19900107,1800,235,1,0 +19900107,1800,236,111,289 +19900107,1800,238,1,0 +19900107,1800,59,1,0 +19900107,1800,78,1,0 +19900107,1800,79,1,0 +19900107,1800,136,1,0 +19900107,1800,137,1,0 +19900107,1800,151,1,0 +19900107,1800,159,1,0 +19900107,1800,164,1,0 +19900107,1800,165,1,0 +19900107,1800,166,1,0 +19900107,1800,167,1,0 +19900107,1800,168,1,0 +19900107,1800,186,1,0 +19900107,1800,187,1,0 +19900107,1800,188,1,0 +19900107,1800,229,1,0 +19900107,1800,230,1,0 +19900107,1800,231,1,0 +19900107,1800,232,1,0 +19900107,1800,243,1,0 +19900107,1800,244,1,0 +19900107,1800,245,1,0 +19900107,1800,228246,1,0 +19900107,1800,228247,1,0 +19900107,2100,8,1,0 +19900107,2100,31,1,0 +19900107,2100,32,1,0 +19900107,2100,33,1,0 +19900107,2100,34,1,0 +19900107,2100,35,111,7 +19900107,2100,36,111,28 +19900107,2100,37,111,100 +19900107,2100,38,111,289 +19900107,2100,39,111,7 +19900107,2100,40,111,28 +19900107,2100,41,111,100 +19900107,2100,42,111,289 +19900107,2100,44,1,0 +19900107,2100,45,1,0 +19900107,2100,49,1,0 +19900107,2100,50,1,0 +19900107,2100,57,1,0 +19900107,2100,58,1,0 +19900107,2100,123,1,0 +19900107,2100,139,111,7 +19900107,2100,141,1,0 +19900107,2100,142,1,0 +19900107,2100,143,1,0 +19900107,2100,144,1,0 +19900107,2100,145,1,0 +19900107,2100,146,1,0 +19900107,2100,147,1,0 +19900107,2100,148,1,0 +19900107,2100,169,1,0 +19900107,2100,170,111,28 +19900107,2100,172,1,0 +19900107,2100,175,1,0 +19900107,2100,176,1,0 +19900107,2100,177,1,0 +19900107,2100,178,1,0 +19900107,2100,179,1,0 +19900107,2100,180,1,0 +19900107,2100,181,1,0 +19900107,2100,182,1,0 +19900107,2100,183,111,100 +19900107,2100,189,1,0 +19900107,2100,195,1,0 +19900107,2100,196,1,0 +19900107,2100,197,1,0 +19900107,2100,198,1,0 +19900107,2100,201,1,0 +19900107,2100,202,1,0 +19900107,2100,205,1,0 +19900107,2100,208,1,0 +19900107,2100,209,1,0 +19900107,2100,210,1,0 +19900107,2100,211,1,0 +19900107,2100,212,1,0 +19900107,2100,213,1,0 +19900107,2100,228,1,0 +19900107,2100,235,1,0 +19900107,2100,236,111,289 +19900107,2100,238,1,0 +19900107,2100,59,1,0 +19900107,2100,78,1,0 +19900107,2100,79,1,0 +19900107,2100,136,1,0 +19900107,2100,137,1,0 +19900107,2100,151,1,0 +19900107,2100,159,1,0 +19900107,2100,164,1,0 +19900107,2100,165,1,0 +19900107,2100,166,1,0 +19900107,2100,167,1,0 +19900107,2100,168,1,0 +19900107,2100,186,1,0 +19900107,2100,187,1,0 +19900107,2100,188,1,0 +19900107,2100,229,1,0 +19900107,2100,230,1,0 +19900107,2100,231,1,0 +19900107,2100,232,1,0 +19900107,2100,243,1,0 +19900107,2100,244,1,0 +19900107,2100,245,1,0 +19900107,2100,228246,1,0 +19900107,2100,228247,1,0 +19900108,0,133,100,1000 +19900108,0,133,100,975 +19900108,0,133,100,950 +19900108,0,133,100,925 +19900108,0,133,100,900 +19900108,0,133,100,875 +19900108,0,133,100,850 +19900108,0,133,100,825 +19900108,0,133,100,800 +19900108,0,133,100,775 +19900108,0,133,100,750 +19900108,0,133,100,740 +19900108,0,133,100,700 +19900108,0,133,100,650 +19900108,0,133,100,620 +19900108,0,133,100,600 +19900108,0,133,100,550 +19900108,0,133,100,500 +19900108,0,133,100,450 +19900108,0,133,100,400 +19900108,0,133,100,375 +19900108,0,133,100,350 +19900108,0,133,100,300 +19900108,0,133,100,250 +19900108,0,133,100,245 +19900108,0,133,100,225 +19900108,0,133,100,200 +19900108,0,133,100,175 +19900108,0,133,100,150 +19900108,0,133,100,125 +19900108,0,133,100,100 +19900108,0,133,100,70 +19900108,0,133,100,50 +19900108,0,133,100,30 +19900108,0,133,100,20 +19900108,0,133,100,10 +19900108,0,133,100,9 +19900108,0,133,100,7 +19900108,0,133,100,5 +19900108,0,133,100,3 +19900108,0,133,100,2 +19900108,0,133,100,1 +19900108,0,133,210,40 +19900108,0,3,117,2000 +19900108,0,133,109,1 +19900108,0,133,109,2 +19900108,0,133,109,3 +19900108,0,133,109,4 +19900108,0,133,109,5 +19900108,0,133,109,6 +19900108,0,133,109,7 +19900108,0,133,109,8 +19900108,0,133,109,9 +19900108,0,133,109,10 +19900108,0,246,109,1 +19900108,0,246,109,2 +19900108,0,246,109,3 +19900108,0,246,109,4 +19900108,0,246,109,5 +19900108,0,246,109,6 +19900108,0,246,109,7 +19900108,0,246,109,8 +19900108,0,246,109,9 +19900108,0,246,109,10 +19900108,0,247,109,1 +19900108,0,247,109,2 +19900108,0,247,109,3 +19900108,0,247,109,4 +19900108,0,247,109,5 +19900108,0,247,109,6 +19900108,0,247,109,7 +19900108,0,247,109,8 +19900108,0,247,109,9 +19900108,0,247,109,10 +19900108,0,248,109,1 +19900108,0,248,109,2 +19900108,0,248,109,3 +19900108,0,248,109,4 +19900108,0,248,109,5 +19900108,0,248,109,6 +19900108,0,248,109,7 +19900108,0,248,109,8 +19900108,0,248,109,9 +19900108,0,248,109,10 +19900108,0,8,1,0 +19900108,0,31,1,0 +19900108,0,32,1,0 +19900108,0,33,1,0 +19900108,0,34,1,0 +19900108,0,35,111,7 +19900108,0,36,111,28 +19900108,0,37,111,100 +19900108,0,38,111,289 +19900108,0,39,111,7 +19900108,0,40,111,28 +19900108,0,41,111,100 +19900108,0,42,111,289 +19900108,0,44,1,0 +19900108,0,45,1,0 +19900108,0,49,1,0 +19900108,0,50,1,0 +19900108,0,57,1,0 +19900108,0,58,1,0 +19900108,0,123,1,0 +19900108,0,139,111,7 +19900108,0,141,1,0 +19900108,0,142,1,0 +19900108,0,143,1,0 +19900108,0,144,1,0 +19900108,0,145,1,0 +19900108,0,146,1,0 +19900108,0,147,1,0 +19900108,0,148,1,0 +19900108,0,169,1,0 +19900108,0,170,111,28 +19900108,0,172,1,0 +19900108,0,175,1,0 +19900108,0,176,1,0 +19900108,0,177,1,0 +19900108,0,178,1,0 +19900108,0,179,1,0 +19900108,0,180,1,0 +19900108,0,181,1,0 +19900108,0,182,1,0 +19900108,0,183,111,100 +19900108,0,189,1,0 +19900108,0,195,1,0 +19900108,0,196,1,0 +19900108,0,197,1,0 +19900108,0,198,1,0 +19900108,0,201,1,0 +19900108,0,202,1,0 +19900108,0,205,1,0 +19900108,0,208,1,0 +19900108,0,209,1,0 +19900108,0,210,1,0 +19900108,0,211,1,0 +19900108,0,212,1,0 +19900108,0,213,1,0 +19900108,0,228,1,0 +19900108,0,235,1,0 +19900108,0,236,111,289 +19900108,0,238,1,0 +19900108,0,59,1,0 +19900108,0,78,1,0 +19900108,0,79,1,0 +19900108,0,136,1,0 +19900108,0,137,1,0 +19900108,0,151,1,0 +19900108,0,159,1,0 +19900108,0,164,1,0 +19900108,0,165,1,0 +19900108,0,166,1,0 +19900108,0,167,1,0 +19900108,0,168,1,0 +19900108,0,186,1,0 +19900108,0,187,1,0 +19900108,0,188,1,0 +19900108,0,229,1,0 +19900108,0,230,1,0 +19900108,0,231,1,0 +19900108,0,232,1,0 +19900108,0,243,1,0 +19900108,0,244,1,0 +19900108,0,245,1,0 +19900108,0,228246,1,0 +19900108,0,228247,1,0 +19900108,300,8,1,0 +19900108,300,31,1,0 +19900108,300,32,1,0 +19900108,300,33,1,0 +19900108,300,34,1,0 +19900108,300,35,111,7 +19900108,300,36,111,28 +19900108,300,37,111,100 +19900108,300,38,111,289 +19900108,300,39,111,7 +19900108,300,40,111,28 +19900108,300,41,111,100 +19900108,300,42,111,289 +19900108,300,44,1,0 +19900108,300,45,1,0 +19900108,300,49,1,0 +19900108,300,50,1,0 +19900108,300,57,1,0 +19900108,300,58,1,0 +19900108,300,123,1,0 +19900108,300,139,111,7 +19900108,300,141,1,0 +19900108,300,142,1,0 +19900108,300,143,1,0 +19900108,300,144,1,0 +19900108,300,145,1,0 +19900108,300,146,1,0 +19900108,300,147,1,0 +19900108,300,148,1,0 +19900108,300,169,1,0 +19900108,300,170,111,28 +19900108,300,172,1,0 +19900108,300,175,1,0 +19900108,300,176,1,0 +19900108,300,177,1,0 +19900108,300,178,1,0 +19900108,300,179,1,0 +19900108,300,180,1,0 +19900108,300,181,1,0 +19900108,300,182,1,0 +19900108,300,183,111,100 +19900108,300,189,1,0 +19900108,300,195,1,0 +19900108,300,196,1,0 +19900108,300,197,1,0 +19900108,300,198,1,0 +19900108,300,201,1,0 +19900108,300,202,1,0 +19900108,300,205,1,0 +19900108,300,208,1,0 +19900108,300,209,1,0 +19900108,300,210,1,0 +19900108,300,211,1,0 +19900108,300,212,1,0 +19900108,300,213,1,0 +19900108,300,228,1,0 +19900108,300,235,1,0 +19900108,300,236,111,289 +19900108,300,238,1,0 +19900108,300,59,1,0 +19900108,300,78,1,0 +19900108,300,79,1,0 +19900108,300,136,1,0 +19900108,300,137,1,0 +19900108,300,151,1,0 +19900108,300,159,1,0 +19900108,300,164,1,0 +19900108,300,165,1,0 +19900108,300,166,1,0 +19900108,300,167,1,0 +19900108,300,168,1,0 +19900108,300,186,1,0 +19900108,300,187,1,0 +19900108,300,188,1,0 +19900108,300,229,1,0 +19900108,300,230,1,0 +19900108,300,231,1,0 +19900108,300,232,1,0 +19900108,300,243,1,0 +19900108,300,244,1,0 +19900108,300,245,1,0 +19900108,300,228246,1,0 +19900108,300,228247,1,0 +19900108,600,133,100,1000 +19900108,600,133,100,975 +19900108,600,133,100,950 +19900108,600,133,100,925 +19900108,600,133,100,900 +19900108,600,133,100,875 +19900108,600,133,100,850 +19900108,600,133,100,825 +19900108,600,133,100,800 +19900108,600,133,100,775 +19900108,600,133,100,750 +19900108,600,133,100,740 +19900108,600,133,100,700 +19900108,600,133,100,650 +19900108,600,133,100,620 +19900108,600,133,100,600 +19900108,600,133,100,550 +19900108,600,133,100,500 +19900108,600,133,100,450 +19900108,600,133,100,400 +19900108,600,133,100,375 +19900108,600,133,100,350 +19900108,600,133,100,300 +19900108,600,133,100,250 +19900108,600,133,100,245 +19900108,600,133,100,225 +19900108,600,133,100,200 +19900108,600,133,100,175 +19900108,600,133,100,150 +19900108,600,133,100,125 +19900108,600,133,100,100 +19900108,600,133,100,70 +19900108,600,133,100,50 +19900108,600,133,100,30 +19900108,600,133,100,20 +19900108,600,133,100,10 +19900108,600,133,100,9 +19900108,600,133,100,7 +19900108,600,133,100,5 +19900108,600,133,100,3 +19900108,600,133,100,2 +19900108,600,133,100,1 +19900108,600,133,210,40 +19900108,600,3,117,2000 +19900108,600,133,109,1 +19900108,600,133,109,2 +19900108,600,133,109,3 +19900108,600,133,109,4 +19900108,600,133,109,5 +19900108,600,133,109,6 +19900108,600,133,109,7 +19900108,600,133,109,8 +19900108,600,133,109,9 +19900108,600,133,109,10 +19900108,600,246,109,1 +19900108,600,246,109,2 +19900108,600,246,109,3 +19900108,600,246,109,4 +19900108,600,246,109,5 +19900108,600,246,109,6 +19900108,600,246,109,7 +19900108,600,246,109,8 +19900108,600,246,109,9 +19900108,600,246,109,10 +19900108,600,247,109,1 +19900108,600,247,109,2 +19900108,600,247,109,3 +19900108,600,247,109,4 +19900108,600,247,109,5 +19900108,600,247,109,6 +19900108,600,247,109,7 +19900108,600,247,109,8 +19900108,600,247,109,9 +19900108,600,247,109,10 +19900108,600,248,109,1 +19900108,600,248,109,2 +19900108,600,248,109,3 +19900108,600,248,109,4 +19900108,600,248,109,5 +19900108,600,248,109,6 +19900108,600,248,109,7 +19900108,600,248,109,8 +19900108,600,248,109,9 +19900108,600,248,109,10 +19900108,600,8,1,0 +19900108,600,31,1,0 +19900108,600,32,1,0 +19900108,600,33,1,0 +19900108,600,34,1,0 +19900108,600,35,111,7 +19900108,600,36,111,28 +19900108,600,37,111,100 +19900108,600,38,111,289 +19900108,600,39,111,7 +19900108,600,40,111,28 +19900108,600,41,111,100 +19900108,600,42,111,289 +19900108,600,44,1,0 +19900108,600,45,1,0 +19900108,600,49,1,0 +19900108,600,50,1,0 +19900108,600,57,1,0 +19900108,600,58,1,0 +19900108,600,123,1,0 +19900108,600,139,111,7 +19900108,600,141,1,0 +19900108,600,142,1,0 +19900108,600,143,1,0 +19900108,600,144,1,0 +19900108,600,145,1,0 +19900108,600,146,1,0 +19900108,600,147,1,0 +19900108,600,148,1,0 +19900108,600,169,1,0 +19900108,600,170,111,28 +19900108,600,172,1,0 +19900108,600,175,1,0 +19900108,600,176,1,0 +19900108,600,177,1,0 +19900108,600,178,1,0 +19900108,600,179,1,0 +19900108,600,180,1,0 +19900108,600,181,1,0 +19900108,600,182,1,0 +19900108,600,183,111,100 +19900108,600,189,1,0 +19900108,600,195,1,0 +19900108,600,196,1,0 +19900108,600,197,1,0 +19900108,600,198,1,0 +19900108,600,201,1,0 +19900108,600,202,1,0 +19900108,600,205,1,0 +19900108,600,208,1,0 +19900108,600,209,1,0 +19900108,600,210,1,0 +19900108,600,211,1,0 +19900108,600,212,1,0 +19900108,600,213,1,0 +19900108,600,228,1,0 +19900108,600,235,1,0 +19900108,600,236,111,289 +19900108,600,238,1,0 +19900108,600,59,1,0 +19900108,600,78,1,0 +19900108,600,79,1,0 +19900108,600,136,1,0 +19900108,600,137,1,0 +19900108,600,151,1,0 +19900108,600,159,1,0 +19900108,600,164,1,0 +19900108,600,165,1,0 +19900108,600,166,1,0 +19900108,600,167,1,0 +19900108,600,168,1,0 +19900108,600,186,1,0 +19900108,600,187,1,0 +19900108,600,188,1,0 +19900108,600,229,1,0 +19900108,600,230,1,0 +19900108,600,231,1,0 +19900108,600,232,1,0 +19900108,600,243,1,0 +19900108,600,244,1,0 +19900108,600,245,1,0 +19900108,600,228246,1,0 +19900108,600,228247,1,0 +19900108,900,8,1,0 +19900108,900,31,1,0 +19900108,900,32,1,0 +19900108,900,33,1,0 +19900108,900,34,1,0 +19900108,900,35,111,7 +19900108,900,36,111,28 +19900108,900,37,111,100 +19900108,900,38,111,289 +19900108,900,39,111,7 +19900108,900,40,111,28 +19900108,900,41,111,100 +19900108,900,42,111,289 +19900108,900,44,1,0 +19900108,900,45,1,0 +19900108,900,49,1,0 +19900108,900,50,1,0 +19900108,900,57,1,0 +19900108,900,58,1,0 +19900108,900,123,1,0 +19900108,900,139,111,7 +19900108,900,141,1,0 +19900108,900,142,1,0 +19900108,900,143,1,0 +19900108,900,144,1,0 +19900108,900,145,1,0 +19900108,900,146,1,0 +19900108,900,147,1,0 +19900108,900,148,1,0 +19900108,900,169,1,0 +19900108,900,170,111,28 +19900108,900,172,1,0 +19900108,900,175,1,0 +19900108,900,176,1,0 +19900108,900,177,1,0 +19900108,900,178,1,0 +19900108,900,179,1,0 +19900108,900,180,1,0 +19900108,900,181,1,0 +19900108,900,182,1,0 +19900108,900,183,111,100 +19900108,900,189,1,0 +19900108,900,195,1,0 +19900108,900,196,1,0 +19900108,900,197,1,0 +19900108,900,198,1,0 +19900108,900,201,1,0 +19900108,900,202,1,0 +19900108,900,205,1,0 +19900108,900,208,1,0 +19900108,900,209,1,0 +19900108,900,210,1,0 +19900108,900,211,1,0 +19900108,900,212,1,0 +19900108,900,213,1,0 +19900108,900,228,1,0 +19900108,900,235,1,0 +19900108,900,236,111,289 +19900108,900,238,1,0 +19900108,900,59,1,0 +19900108,900,78,1,0 +19900108,900,79,1,0 +19900108,900,136,1,0 +19900108,900,137,1,0 +19900108,900,151,1,0 +19900108,900,159,1,0 +19900108,900,164,1,0 +19900108,900,165,1,0 +19900108,900,166,1,0 +19900108,900,167,1,0 +19900108,900,168,1,0 +19900108,900,186,1,0 +19900108,900,187,1,0 +19900108,900,188,1,0 +19900108,900,229,1,0 +19900108,900,230,1,0 +19900108,900,231,1,0 +19900108,900,232,1,0 +19900108,900,243,1,0 +19900108,900,244,1,0 +19900108,900,245,1,0 +19900108,900,228246,1,0 +19900108,900,228247,1,0 +19900108,1200,133,100,1000 +19900108,1200,133,100,975 +19900108,1200,133,100,950 +19900108,1200,133,100,925 +19900108,1200,133,100,900 +19900108,1200,133,100,875 +19900108,1200,133,100,850 +19900108,1200,133,100,825 +19900108,1200,133,100,800 +19900108,1200,133,100,775 +19900108,1200,133,100,750 +19900108,1200,133,100,740 +19900108,1200,133,100,700 +19900108,1200,133,100,650 +19900108,1200,133,100,620 +19900108,1200,133,100,600 +19900108,1200,133,100,550 +19900108,1200,133,100,500 +19900108,1200,133,100,450 +19900108,1200,133,100,400 +19900108,1200,133,100,375 +19900108,1200,133,100,350 +19900108,1200,133,100,300 +19900108,1200,133,100,250 +19900108,1200,133,100,245 +19900108,1200,133,100,225 +19900108,1200,133,100,200 +19900108,1200,133,100,175 +19900108,1200,133,100,150 +19900108,1200,133,100,125 +19900108,1200,133,100,100 +19900108,1200,133,100,70 +19900108,1200,133,100,50 +19900108,1200,133,100,30 +19900108,1200,133,100,20 +19900108,1200,133,100,10 +19900108,1200,133,100,9 +19900108,1200,133,100,7 +19900108,1200,133,100,5 +19900108,1200,133,100,3 +19900108,1200,133,100,2 +19900108,1200,133,100,1 +19900108,1200,133,210,40 +19900108,1200,3,117,2000 +19900108,1200,133,109,1 +19900108,1200,133,109,2 +19900108,1200,133,109,3 +19900108,1200,133,109,4 +19900108,1200,133,109,5 +19900108,1200,133,109,6 +19900108,1200,133,109,7 +19900108,1200,133,109,8 +19900108,1200,133,109,9 +19900108,1200,133,109,10 +19900108,1200,246,109,1 +19900108,1200,246,109,2 +19900108,1200,246,109,3 +19900108,1200,246,109,4 +19900108,1200,246,109,5 +19900108,1200,246,109,6 +19900108,1200,246,109,7 +19900108,1200,246,109,8 +19900108,1200,246,109,9 +19900108,1200,246,109,10 +19900108,1200,247,109,1 +19900108,1200,247,109,2 +19900108,1200,247,109,3 +19900108,1200,247,109,4 +19900108,1200,247,109,5 +19900108,1200,247,109,6 +19900108,1200,247,109,7 +19900108,1200,247,109,8 +19900108,1200,247,109,9 +19900108,1200,247,109,10 +19900108,1200,248,109,1 +19900108,1200,248,109,2 +19900108,1200,248,109,3 +19900108,1200,248,109,4 +19900108,1200,248,109,5 +19900108,1200,248,109,6 +19900108,1200,248,109,7 +19900108,1200,248,109,8 +19900108,1200,248,109,9 +19900108,1200,248,109,10 +19900108,1200,8,1,0 +19900108,1200,31,1,0 +19900108,1200,32,1,0 +19900108,1200,33,1,0 +19900108,1200,34,1,0 +19900108,1200,35,111,7 +19900108,1200,36,111,28 +19900108,1200,37,111,100 +19900108,1200,38,111,289 +19900108,1200,39,111,7 +19900108,1200,40,111,28 +19900108,1200,41,111,100 +19900108,1200,42,111,289 +19900108,1200,44,1,0 +19900108,1200,45,1,0 +19900108,1200,49,1,0 +19900108,1200,50,1,0 +19900108,1200,57,1,0 +19900108,1200,58,1,0 +19900108,1200,123,1,0 +19900108,1200,139,111,7 +19900108,1200,141,1,0 +19900108,1200,142,1,0 +19900108,1200,143,1,0 +19900108,1200,144,1,0 +19900108,1200,145,1,0 +19900108,1200,146,1,0 +19900108,1200,147,1,0 +19900108,1200,148,1,0 +19900108,1200,169,1,0 +19900108,1200,170,111,28 +19900108,1200,172,1,0 +19900108,1200,175,1,0 +19900108,1200,176,1,0 +19900108,1200,177,1,0 +19900108,1200,178,1,0 +19900108,1200,179,1,0 +19900108,1200,180,1,0 +19900108,1200,181,1,0 +19900108,1200,182,1,0 +19900108,1200,183,111,100 +19900108,1200,189,1,0 +19900108,1200,195,1,0 +19900108,1200,196,1,0 +19900108,1200,197,1,0 +19900108,1200,198,1,0 +19900108,1200,201,1,0 +19900108,1200,202,1,0 +19900108,1200,205,1,0 +19900108,1200,208,1,0 +19900108,1200,209,1,0 +19900108,1200,210,1,0 +19900108,1200,211,1,0 +19900108,1200,212,1,0 +19900108,1200,213,1,0 +19900108,1200,228,1,0 +19900108,1200,235,1,0 +19900108,1200,236,111,289 +19900108,1200,238,1,0 +19900108,1200,59,1,0 +19900108,1200,78,1,0 +19900108,1200,79,1,0 +19900108,1200,136,1,0 +19900108,1200,137,1,0 +19900108,1200,151,1,0 +19900108,1200,159,1,0 +19900108,1200,164,1,0 +19900108,1200,165,1,0 +19900108,1200,166,1,0 +19900108,1200,167,1,0 +19900108,1200,168,1,0 +19900108,1200,186,1,0 +19900108,1200,187,1,0 +19900108,1200,188,1,0 +19900108,1200,229,1,0 +19900108,1200,230,1,0 +19900108,1200,231,1,0 +19900108,1200,232,1,0 +19900108,1200,243,1,0 +19900108,1200,244,1,0 +19900108,1200,245,1,0 +19900108,1200,228246,1,0 +19900108,1200,228247,1,0 +19900108,1500,8,1,0 +19900108,1500,31,1,0 +19900108,1500,32,1,0 +19900108,1500,33,1,0 +19900108,1500,34,1,0 +19900108,1500,35,111,7 +19900108,1500,36,111,28 +19900108,1500,37,111,100 +19900108,1500,38,111,289 +19900108,1500,39,111,7 +19900108,1500,40,111,28 +19900108,1500,41,111,100 +19900108,1500,42,111,289 +19900108,1500,44,1,0 +19900108,1500,45,1,0 +19900108,1500,49,1,0 +19900108,1500,50,1,0 +19900108,1500,57,1,0 +19900108,1500,58,1,0 +19900108,1500,123,1,0 +19900108,1500,139,111,7 +19900108,1500,141,1,0 +19900108,1500,142,1,0 +19900108,1500,143,1,0 +19900108,1500,144,1,0 +19900108,1500,145,1,0 +19900108,1500,146,1,0 +19900108,1500,147,1,0 +19900108,1500,148,1,0 +19900108,1500,169,1,0 +19900108,1500,170,111,28 +19900108,1500,172,1,0 +19900108,1500,175,1,0 +19900108,1500,176,1,0 +19900108,1500,177,1,0 +19900108,1500,178,1,0 +19900108,1500,179,1,0 +19900108,1500,180,1,0 +19900108,1500,181,1,0 +19900108,1500,182,1,0 +19900108,1500,183,111,100 +19900108,1500,189,1,0 +19900108,1500,195,1,0 +19900108,1500,196,1,0 +19900108,1500,197,1,0 +19900108,1500,198,1,0 +19900108,1500,201,1,0 +19900108,1500,202,1,0 +19900108,1500,205,1,0 +19900108,1500,208,1,0 +19900108,1500,209,1,0 +19900108,1500,210,1,0 +19900108,1500,211,1,0 +19900108,1500,212,1,0 +19900108,1500,213,1,0 +19900108,1500,228,1,0 +19900108,1500,235,1,0 +19900108,1500,236,111,289 +19900108,1500,238,1,0 +19900108,1500,59,1,0 +19900108,1500,78,1,0 +19900108,1500,79,1,0 +19900108,1500,136,1,0 +19900108,1500,137,1,0 +19900108,1500,151,1,0 +19900108,1500,159,1,0 +19900108,1500,164,1,0 +19900108,1500,165,1,0 +19900108,1500,166,1,0 +19900108,1500,167,1,0 +19900108,1500,168,1,0 +19900108,1500,186,1,0 +19900108,1500,187,1,0 +19900108,1500,188,1,0 +19900108,1500,229,1,0 +19900108,1500,230,1,0 +19900108,1500,231,1,0 +19900108,1500,232,1,0 +19900108,1500,243,1,0 +19900108,1500,244,1,0 +19900108,1500,245,1,0 +19900108,1500,228246,1,0 +19900108,1500,228247,1,0 +19900108,1800,133,100,1000 +19900108,1800,133,100,975 +19900108,1800,133,100,950 +19900108,1800,133,100,925 +19900108,1800,133,100,900 +19900108,1800,133,100,875 +19900108,1800,133,100,850 +19900108,1800,133,100,825 +19900108,1800,133,100,800 +19900108,1800,133,100,775 +19900108,1800,133,100,750 +19900108,1800,133,100,740 +19900108,1800,133,100,700 +19900108,1800,133,100,650 +19900108,1800,133,100,620 +19900108,1800,133,100,600 +19900108,1800,133,100,550 +19900108,1800,133,100,500 +19900108,1800,133,100,450 +19900108,1800,133,100,400 +19900108,1800,133,100,375 +19900108,1800,133,100,350 +19900108,1800,133,100,300 +19900108,1800,133,100,250 +19900108,1800,133,100,245 +19900108,1800,133,100,225 +19900108,1800,133,100,200 +19900108,1800,133,100,175 +19900108,1800,133,100,150 +19900108,1800,133,100,125 +19900108,1800,133,100,100 +19900108,1800,133,100,70 +19900108,1800,133,100,50 +19900108,1800,133,100,30 +19900108,1800,133,100,20 +19900108,1800,133,100,10 +19900108,1800,133,100,9 +19900108,1800,133,100,7 +19900108,1800,133,100,5 +19900108,1800,133,100,3 +19900108,1800,133,100,2 +19900108,1800,133,100,1 +19900108,1800,133,210,40 +19900108,1800,3,117,2000 +19900108,1800,133,109,1 +19900108,1800,133,109,2 +19900108,1800,133,109,3 +19900108,1800,133,109,4 +19900108,1800,133,109,5 +19900108,1800,133,109,6 +19900108,1800,133,109,7 +19900108,1800,133,109,8 +19900108,1800,133,109,9 +19900108,1800,133,109,10 +19900108,1800,246,109,1 +19900108,1800,246,109,2 +19900108,1800,246,109,3 +19900108,1800,246,109,4 +19900108,1800,246,109,5 +19900108,1800,246,109,6 +19900108,1800,246,109,7 +19900108,1800,246,109,8 +19900108,1800,246,109,9 +19900108,1800,246,109,10 +19900108,1800,247,109,1 +19900108,1800,247,109,2 +19900108,1800,247,109,3 +19900108,1800,247,109,4 +19900108,1800,247,109,5 +19900108,1800,247,109,6 +19900108,1800,247,109,7 +19900108,1800,247,109,8 +19900108,1800,247,109,9 +19900108,1800,247,109,10 +19900108,1800,248,109,1 +19900108,1800,248,109,2 +19900108,1800,248,109,3 +19900108,1800,248,109,4 +19900108,1800,248,109,5 +19900108,1800,248,109,6 +19900108,1800,248,109,7 +19900108,1800,248,109,8 +19900108,1800,248,109,9 +19900108,1800,248,109,10 +19900108,1800,8,1,0 +19900108,1800,31,1,0 +19900108,1800,32,1,0 +19900108,1800,33,1,0 +19900108,1800,34,1,0 +19900108,1800,35,111,7 +19900108,1800,36,111,28 +19900108,1800,37,111,100 +19900108,1800,38,111,289 +19900108,1800,39,111,7 +19900108,1800,40,111,28 +19900108,1800,41,111,100 +19900108,1800,42,111,289 +19900108,1800,44,1,0 +19900108,1800,45,1,0 +19900108,1800,49,1,0 +19900108,1800,50,1,0 +19900108,1800,57,1,0 +19900108,1800,58,1,0 +19900108,1800,123,1,0 +19900108,1800,139,111,7 +19900108,1800,141,1,0 +19900108,1800,142,1,0 +19900108,1800,143,1,0 +19900108,1800,144,1,0 +19900108,1800,145,1,0 +19900108,1800,146,1,0 +19900108,1800,147,1,0 +19900108,1800,148,1,0 +19900108,1800,169,1,0 +19900108,1800,170,111,28 +19900108,1800,172,1,0 +19900108,1800,175,1,0 +19900108,1800,176,1,0 +19900108,1800,177,1,0 +19900108,1800,178,1,0 +19900108,1800,179,1,0 +19900108,1800,180,1,0 +19900108,1800,181,1,0 +19900108,1800,182,1,0 +19900108,1800,183,111,100 +19900108,1800,189,1,0 +19900108,1800,195,1,0 +19900108,1800,196,1,0 +19900108,1800,197,1,0 +19900108,1800,198,1,0 +19900108,1800,201,1,0 +19900108,1800,202,1,0 +19900108,1800,205,1,0 +19900108,1800,208,1,0 +19900108,1800,209,1,0 +19900108,1800,210,1,0 +19900108,1800,211,1,0 +19900108,1800,212,1,0 +19900108,1800,213,1,0 +19900108,1800,228,1,0 +19900108,1800,235,1,0 +19900108,1800,236,111,289 +19900108,1800,238,1,0 +19900108,1800,59,1,0 +19900108,1800,78,1,0 +19900108,1800,79,1,0 +19900108,1800,136,1,0 +19900108,1800,137,1,0 +19900108,1800,151,1,0 +19900108,1800,159,1,0 +19900108,1800,164,1,0 +19900108,1800,165,1,0 +19900108,1800,166,1,0 +19900108,1800,167,1,0 +19900108,1800,168,1,0 +19900108,1800,186,1,0 +19900108,1800,187,1,0 +19900108,1800,188,1,0 +19900108,1800,229,1,0 +19900108,1800,230,1,0 +19900108,1800,231,1,0 +19900108,1800,232,1,0 +19900108,1800,243,1,0 +19900108,1800,244,1,0 +19900108,1800,245,1,0 +19900108,1800,228246,1,0 +19900108,1800,228247,1,0 +19900108,2100,8,1,0 +19900108,2100,31,1,0 +19900108,2100,32,1,0 +19900108,2100,33,1,0 +19900108,2100,34,1,0 +19900108,2100,35,111,7 +19900108,2100,36,111,28 +19900108,2100,37,111,100 +19900108,2100,38,111,289 +19900108,2100,39,111,7 +19900108,2100,40,111,28 +19900108,2100,41,111,100 +19900108,2100,42,111,289 +19900108,2100,44,1,0 +19900108,2100,45,1,0 +19900108,2100,49,1,0 +19900108,2100,50,1,0 +19900108,2100,57,1,0 +19900108,2100,58,1,0 +19900108,2100,123,1,0 +19900108,2100,139,111,7 +19900108,2100,141,1,0 +19900108,2100,142,1,0 +19900108,2100,143,1,0 +19900108,2100,144,1,0 +19900108,2100,145,1,0 +19900108,2100,146,1,0 +19900108,2100,147,1,0 +19900108,2100,148,1,0 +19900108,2100,169,1,0 +19900108,2100,170,111,28 +19900108,2100,172,1,0 +19900108,2100,175,1,0 +19900108,2100,176,1,0 +19900108,2100,177,1,0 +19900108,2100,178,1,0 +19900108,2100,179,1,0 +19900108,2100,180,1,0 +19900108,2100,181,1,0 +19900108,2100,182,1,0 +19900108,2100,183,111,100 +19900108,2100,189,1,0 +19900108,2100,195,1,0 +19900108,2100,196,1,0 +19900108,2100,197,1,0 +19900108,2100,198,1,0 +19900108,2100,201,1,0 +19900108,2100,202,1,0 +19900108,2100,205,1,0 +19900108,2100,208,1,0 +19900108,2100,209,1,0 +19900108,2100,210,1,0 +19900108,2100,211,1,0 +19900108,2100,212,1,0 +19900108,2100,213,1,0 +19900108,2100,228,1,0 +19900108,2100,235,1,0 +19900108,2100,236,111,289 +19900108,2100,238,1,0 +19900108,2100,59,1,0 +19900108,2100,78,1,0 +19900108,2100,79,1,0 +19900108,2100,136,1,0 +19900108,2100,137,1,0 +19900108,2100,151,1,0 +19900108,2100,159,1,0 +19900108,2100,164,1,0 +19900108,2100,165,1,0 +19900108,2100,166,1,0 +19900108,2100,167,1,0 +19900108,2100,168,1,0 +19900108,2100,186,1,0 +19900108,2100,187,1,0 +19900108,2100,188,1,0 +19900108,2100,229,1,0 +19900108,2100,230,1,0 +19900108,2100,231,1,0 +19900108,2100,232,1,0 +19900108,2100,243,1,0 +19900108,2100,244,1,0 +19900108,2100,245,1,0 +19900108,2100,228246,1,0 +19900108,2100,228247,1,0 +19900109,0,133,100,1000 +19900109,0,133,100,975 +19900109,0,133,100,950 +19900109,0,133,100,925 +19900109,0,133,100,900 +19900109,0,133,100,875 +19900109,0,133,100,850 +19900109,0,133,100,825 +19900109,0,133,100,800 +19900109,0,133,100,775 +19900109,0,133,100,750 +19900109,0,133,100,740 +19900109,0,133,100,700 +19900109,0,133,100,650 +19900109,0,133,100,620 +19900109,0,133,100,600 +19900109,0,133,100,550 +19900109,0,133,100,500 +19900109,0,133,100,450 +19900109,0,133,100,400 +19900109,0,133,100,375 +19900109,0,133,100,350 +19900109,0,133,100,300 +19900109,0,133,100,250 +19900109,0,133,100,245 +19900109,0,133,100,225 +19900109,0,133,100,200 +19900109,0,133,100,175 +19900109,0,133,100,150 +19900109,0,133,100,125 +19900109,0,133,100,100 +19900109,0,133,100,70 +19900109,0,133,100,50 +19900109,0,133,100,30 +19900109,0,133,100,20 +19900109,0,133,100,10 +19900109,0,133,100,9 +19900109,0,133,100,7 +19900109,0,133,100,5 +19900109,0,133,100,3 +19900109,0,133,100,2 +19900109,0,133,100,1 +19900109,0,133,210,40 +19900109,0,3,117,2000 +19900109,0,133,109,1 +19900109,0,133,109,2 +19900109,0,133,109,3 +19900109,0,133,109,4 +19900109,0,133,109,5 +19900109,0,133,109,6 +19900109,0,133,109,7 +19900109,0,133,109,8 +19900109,0,133,109,9 +19900109,0,133,109,10 +19900109,0,246,109,1 +19900109,0,246,109,2 +19900109,0,246,109,3 +19900109,0,246,109,4 +19900109,0,246,109,5 +19900109,0,246,109,6 +19900109,0,246,109,7 +19900109,0,246,109,8 +19900109,0,246,109,9 +19900109,0,246,109,10 +19900109,0,247,109,1 +19900109,0,247,109,2 +19900109,0,247,109,3 +19900109,0,247,109,4 +19900109,0,247,109,5 +19900109,0,247,109,6 +19900109,0,247,109,7 +19900109,0,247,109,8 +19900109,0,247,109,9 +19900109,0,247,109,10 +19900109,0,248,109,1 +19900109,0,248,109,2 +19900109,0,248,109,3 +19900109,0,248,109,4 +19900109,0,248,109,5 +19900109,0,248,109,6 +19900109,0,248,109,7 +19900109,0,248,109,8 +19900109,0,248,109,9 +19900109,0,248,109,10 +19900109,0,8,1,0 +19900109,0,31,1,0 +19900109,0,32,1,0 +19900109,0,33,1,0 +19900109,0,34,1,0 +19900109,0,35,111,7 +19900109,0,36,111,28 +19900109,0,37,111,100 +19900109,0,38,111,289 +19900109,0,39,111,7 +19900109,0,40,111,28 +19900109,0,41,111,100 +19900109,0,42,111,289 +19900109,0,44,1,0 +19900109,0,45,1,0 +19900109,0,49,1,0 +19900109,0,50,1,0 +19900109,0,57,1,0 +19900109,0,58,1,0 +19900109,0,123,1,0 +19900109,0,139,111,7 +19900109,0,141,1,0 +19900109,0,142,1,0 +19900109,0,143,1,0 +19900109,0,144,1,0 +19900109,0,145,1,0 +19900109,0,146,1,0 +19900109,0,147,1,0 +19900109,0,148,1,0 +19900109,0,169,1,0 +19900109,0,170,111,28 +19900109,0,172,1,0 +19900109,0,175,1,0 +19900109,0,176,1,0 +19900109,0,177,1,0 +19900109,0,178,1,0 +19900109,0,179,1,0 +19900109,0,180,1,0 +19900109,0,181,1,0 +19900109,0,182,1,0 +19900109,0,183,111,100 +19900109,0,189,1,0 +19900109,0,195,1,0 +19900109,0,196,1,0 +19900109,0,197,1,0 +19900109,0,198,1,0 +19900109,0,201,1,0 +19900109,0,202,1,0 +19900109,0,205,1,0 +19900109,0,208,1,0 +19900109,0,209,1,0 +19900109,0,210,1,0 +19900109,0,211,1,0 +19900109,0,212,1,0 +19900109,0,213,1,0 +19900109,0,228,1,0 +19900109,0,235,1,0 +19900109,0,236,111,289 +19900109,0,238,1,0 +19900109,0,59,1,0 +19900109,0,78,1,0 +19900109,0,79,1,0 +19900109,0,136,1,0 +19900109,0,137,1,0 +19900109,0,151,1,0 +19900109,0,159,1,0 +19900109,0,164,1,0 +19900109,0,165,1,0 +19900109,0,166,1,0 +19900109,0,167,1,0 +19900109,0,168,1,0 +19900109,0,186,1,0 +19900109,0,187,1,0 +19900109,0,188,1,0 +19900109,0,229,1,0 +19900109,0,230,1,0 +19900109,0,231,1,0 +19900109,0,232,1,0 +19900109,0,243,1,0 +19900109,0,244,1,0 +19900109,0,245,1,0 +19900109,0,228246,1,0 +19900109,0,228247,1,0 +19900109,300,8,1,0 +19900109,300,31,1,0 +19900109,300,32,1,0 +19900109,300,33,1,0 +19900109,300,34,1,0 +19900109,300,35,111,7 +19900109,300,36,111,28 +19900109,300,37,111,100 +19900109,300,38,111,289 +19900109,300,39,111,7 +19900109,300,40,111,28 +19900109,300,41,111,100 +19900109,300,42,111,289 +19900109,300,44,1,0 +19900109,300,45,1,0 +19900109,300,49,1,0 +19900109,300,50,1,0 +19900109,300,57,1,0 +19900109,300,58,1,0 +19900109,300,123,1,0 +19900109,300,139,111,7 +19900109,300,141,1,0 +19900109,300,142,1,0 +19900109,300,143,1,0 +19900109,300,144,1,0 +19900109,300,145,1,0 +19900109,300,146,1,0 +19900109,300,147,1,0 +19900109,300,148,1,0 +19900109,300,169,1,0 +19900109,300,170,111,28 +19900109,300,172,1,0 +19900109,300,175,1,0 +19900109,300,176,1,0 +19900109,300,177,1,0 +19900109,300,178,1,0 +19900109,300,179,1,0 +19900109,300,180,1,0 +19900109,300,181,1,0 +19900109,300,182,1,0 +19900109,300,183,111,100 +19900109,300,189,1,0 +19900109,300,195,1,0 +19900109,300,196,1,0 +19900109,300,197,1,0 +19900109,300,198,1,0 +19900109,300,201,1,0 +19900109,300,202,1,0 +19900109,300,205,1,0 +19900109,300,208,1,0 +19900109,300,209,1,0 +19900109,300,210,1,0 +19900109,300,211,1,0 +19900109,300,212,1,0 +19900109,300,213,1,0 +19900109,300,228,1,0 +19900109,300,235,1,0 +19900109,300,236,111,289 +19900109,300,238,1,0 +19900109,300,59,1,0 +19900109,300,78,1,0 +19900109,300,79,1,0 +19900109,300,136,1,0 +19900109,300,137,1,0 +19900109,300,151,1,0 +19900109,300,159,1,0 +19900109,300,164,1,0 +19900109,300,165,1,0 +19900109,300,166,1,0 +19900109,300,167,1,0 +19900109,300,168,1,0 +19900109,300,186,1,0 +19900109,300,187,1,0 +19900109,300,188,1,0 +19900109,300,229,1,0 +19900109,300,230,1,0 +19900109,300,231,1,0 +19900109,300,232,1,0 +19900109,300,243,1,0 +19900109,300,244,1,0 +19900109,300,245,1,0 +19900109,300,228246,1,0 +19900109,300,228247,1,0 +19900109,600,133,100,1000 +19900109,600,133,100,975 +19900109,600,133,100,950 +19900109,600,133,100,925 +19900109,600,133,100,900 +19900109,600,133,100,875 +19900109,600,133,100,850 +19900109,600,133,100,825 +19900109,600,133,100,800 +19900109,600,133,100,775 +19900109,600,133,100,750 +19900109,600,133,100,740 +19900109,600,133,100,700 +19900109,600,133,100,650 +19900109,600,133,100,620 +19900109,600,133,100,600 +19900109,600,133,100,550 +19900109,600,133,100,500 +19900109,600,133,100,450 +19900109,600,133,100,400 +19900109,600,133,100,375 +19900109,600,133,100,350 +19900109,600,133,100,300 +19900109,600,133,100,250 +19900109,600,133,100,245 +19900109,600,133,100,225 +19900109,600,133,100,200 +19900109,600,133,100,175 +19900109,600,133,100,150 +19900109,600,133,100,125 +19900109,600,133,100,100 +19900109,600,133,100,70 +19900109,600,133,100,50 +19900109,600,133,100,30 +19900109,600,133,100,20 +19900109,600,133,100,10 +19900109,600,133,100,9 +19900109,600,133,100,7 +19900109,600,133,100,5 +19900109,600,133,100,3 +19900109,600,133,100,2 +19900109,600,133,100,1 +19900109,600,133,210,40 +19900109,600,3,117,2000 +19900109,600,133,109,1 +19900109,600,133,109,2 +19900109,600,133,109,3 +19900109,600,133,109,4 +19900109,600,133,109,5 +19900109,600,133,109,6 +19900109,600,133,109,7 +19900109,600,133,109,8 +19900109,600,133,109,9 +19900109,600,133,109,10 +19900109,600,246,109,1 +19900109,600,246,109,2 +19900109,600,246,109,3 +19900109,600,246,109,4 +19900109,600,246,109,5 +19900109,600,246,109,6 +19900109,600,246,109,7 +19900109,600,246,109,8 +19900109,600,246,109,9 +19900109,600,246,109,10 +19900109,600,247,109,1 +19900109,600,247,109,2 +19900109,600,247,109,3 +19900109,600,247,109,4 +19900109,600,247,109,5 +19900109,600,247,109,6 +19900109,600,247,109,7 +19900109,600,247,109,8 +19900109,600,247,109,9 +19900109,600,247,109,10 +19900109,600,248,109,1 +19900109,600,248,109,2 +19900109,600,248,109,3 +19900109,600,248,109,4 +19900109,600,248,109,5 +19900109,600,248,109,6 +19900109,600,248,109,7 +19900109,600,248,109,8 +19900109,600,248,109,9 +19900109,600,248,109,10 +19900109,600,8,1,0 +19900109,600,31,1,0 +19900109,600,32,1,0 +19900109,600,33,1,0 +19900109,600,34,1,0 +19900109,600,35,111,7 +19900109,600,36,111,28 +19900109,600,37,111,100 +19900109,600,38,111,289 +19900109,600,39,111,7 +19900109,600,40,111,28 +19900109,600,41,111,100 +19900109,600,42,111,289 +19900109,600,44,1,0 +19900109,600,45,1,0 +19900109,600,49,1,0 +19900109,600,50,1,0 +19900109,600,57,1,0 +19900109,600,58,1,0 +19900109,600,123,1,0 +19900109,600,139,111,7 +19900109,600,141,1,0 +19900109,600,142,1,0 +19900109,600,143,1,0 +19900109,600,144,1,0 +19900109,600,145,1,0 +19900109,600,146,1,0 +19900109,600,147,1,0 +19900109,600,148,1,0 +19900109,600,169,1,0 +19900109,600,170,111,28 +19900109,600,172,1,0 +19900109,600,175,1,0 +19900109,600,176,1,0 +19900109,600,177,1,0 +19900109,600,178,1,0 +19900109,600,179,1,0 +19900109,600,180,1,0 +19900109,600,181,1,0 +19900109,600,182,1,0 +19900109,600,183,111,100 +19900109,600,189,1,0 +19900109,600,195,1,0 +19900109,600,196,1,0 +19900109,600,197,1,0 +19900109,600,198,1,0 +19900109,600,201,1,0 +19900109,600,202,1,0 +19900109,600,205,1,0 +19900109,600,208,1,0 +19900109,600,209,1,0 +19900109,600,210,1,0 +19900109,600,211,1,0 +19900109,600,212,1,0 +19900109,600,213,1,0 +19900109,600,228,1,0 +19900109,600,235,1,0 +19900109,600,236,111,289 +19900109,600,238,1,0 +19900109,600,59,1,0 +19900109,600,78,1,0 +19900109,600,79,1,0 +19900109,600,136,1,0 +19900109,600,137,1,0 +19900109,600,151,1,0 +19900109,600,159,1,0 +19900109,600,164,1,0 +19900109,600,165,1,0 +19900109,600,166,1,0 +19900109,600,167,1,0 +19900109,600,168,1,0 +19900109,600,186,1,0 +19900109,600,187,1,0 +19900109,600,188,1,0 +19900109,600,229,1,0 +19900109,600,230,1,0 +19900109,600,231,1,0 +19900109,600,232,1,0 +19900109,600,243,1,0 +19900109,600,244,1,0 +19900109,600,245,1,0 +19900109,600,228246,1,0 +19900109,600,228247,1,0 +19900109,900,8,1,0 +19900109,900,31,1,0 +19900109,900,32,1,0 +19900109,900,33,1,0 +19900109,900,34,1,0 +19900109,900,35,111,7 +19900109,900,36,111,28 +19900109,900,37,111,100 +19900109,900,38,111,289 +19900109,900,39,111,7 +19900109,900,40,111,28 +19900109,900,41,111,100 +19900109,900,42,111,289 +19900109,900,44,1,0 +19900109,900,45,1,0 +19900109,900,49,1,0 +19900109,900,50,1,0 +19900109,900,57,1,0 +19900109,900,58,1,0 +19900109,900,123,1,0 +19900109,900,139,111,7 +19900109,900,141,1,0 +19900109,900,142,1,0 +19900109,900,143,1,0 +19900109,900,144,1,0 +19900109,900,145,1,0 +19900109,900,146,1,0 +19900109,900,147,1,0 +19900109,900,148,1,0 +19900109,900,169,1,0 +19900109,900,170,111,28 +19900109,900,172,1,0 +19900109,900,175,1,0 +19900109,900,176,1,0 +19900109,900,177,1,0 +19900109,900,178,1,0 +19900109,900,179,1,0 +19900109,900,180,1,0 +19900109,900,181,1,0 +19900109,900,182,1,0 +19900109,900,183,111,100 +19900109,900,189,1,0 +19900109,900,195,1,0 +19900109,900,196,1,0 +19900109,900,197,1,0 +19900109,900,198,1,0 +19900109,900,201,1,0 +19900109,900,202,1,0 +19900109,900,205,1,0 +19900109,900,208,1,0 +19900109,900,209,1,0 +19900109,900,210,1,0 +19900109,900,211,1,0 +19900109,900,212,1,0 +19900109,900,213,1,0 +19900109,900,228,1,0 +19900109,900,235,1,0 +19900109,900,236,111,289 +19900109,900,238,1,0 +19900109,900,59,1,0 +19900109,900,78,1,0 +19900109,900,79,1,0 +19900109,900,136,1,0 +19900109,900,137,1,0 +19900109,900,151,1,0 +19900109,900,159,1,0 +19900109,900,164,1,0 +19900109,900,165,1,0 +19900109,900,166,1,0 +19900109,900,167,1,0 +19900109,900,168,1,0 +19900109,900,186,1,0 +19900109,900,187,1,0 +19900109,900,188,1,0 +19900109,900,229,1,0 +19900109,900,230,1,0 +19900109,900,231,1,0 +19900109,900,232,1,0 +19900109,900,243,1,0 +19900109,900,244,1,0 +19900109,900,245,1,0 +19900109,900,228246,1,0 +19900109,900,228247,1,0 +19900109,1200,133,100,1000 +19900109,1200,133,100,975 +19900109,1200,133,100,950 +19900109,1200,133,100,925 +19900109,1200,133,100,900 +19900109,1200,133,100,875 +19900109,1200,133,100,850 +19900109,1200,133,100,825 +19900109,1200,133,100,800 +19900109,1200,133,100,775 +19900109,1200,133,100,750 +19900109,1200,133,100,740 +19900109,1200,133,100,700 +19900109,1200,133,100,650 +19900109,1200,133,100,620 +19900109,1200,133,100,600 +19900109,1200,133,100,550 +19900109,1200,133,100,500 +19900109,1200,133,100,450 +19900109,1200,133,100,400 +19900109,1200,133,100,375 +19900109,1200,133,100,350 +19900109,1200,133,100,300 +19900109,1200,133,100,250 +19900109,1200,133,100,245 +19900109,1200,133,100,225 +19900109,1200,133,100,200 +19900109,1200,133,100,175 +19900109,1200,133,100,150 +19900109,1200,133,100,125 +19900109,1200,133,100,100 +19900109,1200,133,100,70 +19900109,1200,133,100,50 +19900109,1200,133,100,30 +19900109,1200,133,100,20 +19900109,1200,133,100,10 +19900109,1200,133,100,9 +19900109,1200,133,100,7 +19900109,1200,133,100,5 +19900109,1200,133,100,3 +19900109,1200,133,100,2 +19900109,1200,133,100,1 +19900109,1200,133,210,40 +19900109,1200,3,117,2000 +19900109,1200,133,109,1 +19900109,1200,133,109,2 +19900109,1200,133,109,3 +19900109,1200,133,109,4 +19900109,1200,133,109,5 +19900109,1200,133,109,6 +19900109,1200,133,109,7 +19900109,1200,133,109,8 +19900109,1200,133,109,9 +19900109,1200,133,109,10 +19900109,1200,246,109,1 +19900109,1200,246,109,2 +19900109,1200,246,109,3 +19900109,1200,246,109,4 +19900109,1200,246,109,5 +19900109,1200,246,109,6 +19900109,1200,246,109,7 +19900109,1200,246,109,8 +19900109,1200,246,109,9 +19900109,1200,246,109,10 +19900109,1200,247,109,1 +19900109,1200,247,109,2 +19900109,1200,247,109,3 +19900109,1200,247,109,4 +19900109,1200,247,109,5 +19900109,1200,247,109,6 +19900109,1200,247,109,7 +19900109,1200,247,109,8 +19900109,1200,247,109,9 +19900109,1200,247,109,10 +19900109,1200,248,109,1 +19900109,1200,248,109,2 +19900109,1200,248,109,3 +19900109,1200,248,109,4 +19900109,1200,248,109,5 +19900109,1200,248,109,6 +19900109,1200,248,109,7 +19900109,1200,248,109,8 +19900109,1200,248,109,9 +19900109,1200,248,109,10 +19900109,1200,8,1,0 +19900109,1200,31,1,0 +19900109,1200,32,1,0 +19900109,1200,33,1,0 +19900109,1200,34,1,0 +19900109,1200,35,111,7 +19900109,1200,36,111,28 +19900109,1200,37,111,100 +19900109,1200,38,111,289 +19900109,1200,39,111,7 +19900109,1200,40,111,28 +19900109,1200,41,111,100 +19900109,1200,42,111,289 +19900109,1200,44,1,0 +19900109,1200,45,1,0 +19900109,1200,49,1,0 +19900109,1200,50,1,0 +19900109,1200,57,1,0 +19900109,1200,58,1,0 +19900109,1200,123,1,0 +19900109,1200,139,111,7 +19900109,1200,141,1,0 +19900109,1200,142,1,0 +19900109,1200,143,1,0 +19900109,1200,144,1,0 +19900109,1200,145,1,0 +19900109,1200,146,1,0 +19900109,1200,147,1,0 +19900109,1200,148,1,0 +19900109,1200,169,1,0 +19900109,1200,170,111,28 +19900109,1200,172,1,0 +19900109,1200,175,1,0 +19900109,1200,176,1,0 +19900109,1200,177,1,0 +19900109,1200,178,1,0 +19900109,1200,179,1,0 +19900109,1200,180,1,0 +19900109,1200,181,1,0 +19900109,1200,182,1,0 +19900109,1200,183,111,100 +19900109,1200,189,1,0 +19900109,1200,195,1,0 +19900109,1200,196,1,0 +19900109,1200,197,1,0 +19900109,1200,198,1,0 +19900109,1200,201,1,0 +19900109,1200,202,1,0 +19900109,1200,205,1,0 +19900109,1200,208,1,0 +19900109,1200,209,1,0 +19900109,1200,210,1,0 +19900109,1200,211,1,0 +19900109,1200,212,1,0 +19900109,1200,213,1,0 +19900109,1200,228,1,0 +19900109,1200,235,1,0 +19900109,1200,236,111,289 +19900109,1200,238,1,0 +19900109,1200,59,1,0 +19900109,1200,78,1,0 +19900109,1200,79,1,0 +19900109,1200,136,1,0 +19900109,1200,137,1,0 +19900109,1200,151,1,0 +19900109,1200,159,1,0 +19900109,1200,164,1,0 +19900109,1200,165,1,0 +19900109,1200,166,1,0 +19900109,1200,167,1,0 +19900109,1200,168,1,0 +19900109,1200,186,1,0 +19900109,1200,187,1,0 +19900109,1200,188,1,0 +19900109,1200,229,1,0 +19900109,1200,230,1,0 +19900109,1200,231,1,0 +19900109,1200,232,1,0 +19900109,1200,243,1,0 +19900109,1200,244,1,0 +19900109,1200,245,1,0 +19900109,1200,228246,1,0 +19900109,1200,228247,1,0 +19900109,1500,8,1,0 +19900109,1500,31,1,0 +19900109,1500,32,1,0 +19900109,1500,33,1,0 +19900109,1500,34,1,0 +19900109,1500,35,111,7 +19900109,1500,36,111,28 +19900109,1500,37,111,100 +19900109,1500,38,111,289 +19900109,1500,39,111,7 +19900109,1500,40,111,28 +19900109,1500,41,111,100 +19900109,1500,42,111,289 +19900109,1500,44,1,0 +19900109,1500,45,1,0 +19900109,1500,49,1,0 +19900109,1500,50,1,0 +19900109,1500,57,1,0 +19900109,1500,58,1,0 +19900109,1500,123,1,0 +19900109,1500,139,111,7 +19900109,1500,141,1,0 +19900109,1500,142,1,0 +19900109,1500,143,1,0 +19900109,1500,144,1,0 +19900109,1500,145,1,0 +19900109,1500,146,1,0 +19900109,1500,147,1,0 +19900109,1500,148,1,0 +19900109,1500,169,1,0 +19900109,1500,170,111,28 +19900109,1500,172,1,0 +19900109,1500,175,1,0 +19900109,1500,176,1,0 +19900109,1500,177,1,0 +19900109,1500,178,1,0 +19900109,1500,179,1,0 +19900109,1500,180,1,0 +19900109,1500,181,1,0 +19900109,1500,182,1,0 +19900109,1500,183,111,100 +19900109,1500,189,1,0 +19900109,1500,195,1,0 +19900109,1500,196,1,0 +19900109,1500,197,1,0 +19900109,1500,198,1,0 +19900109,1500,201,1,0 +19900109,1500,202,1,0 +19900109,1500,205,1,0 +19900109,1500,208,1,0 +19900109,1500,209,1,0 +19900109,1500,210,1,0 +19900109,1500,211,1,0 +19900109,1500,212,1,0 +19900109,1500,213,1,0 +19900109,1500,228,1,0 +19900109,1500,235,1,0 +19900109,1500,236,111,289 +19900109,1500,238,1,0 +19900109,1500,59,1,0 +19900109,1500,78,1,0 +19900109,1500,79,1,0 +19900109,1500,136,1,0 +19900109,1500,137,1,0 +19900109,1500,151,1,0 +19900109,1500,159,1,0 +19900109,1500,164,1,0 +19900109,1500,165,1,0 +19900109,1500,166,1,0 +19900109,1500,167,1,0 +19900109,1500,168,1,0 +19900109,1500,186,1,0 +19900109,1500,187,1,0 +19900109,1500,188,1,0 +19900109,1500,229,1,0 +19900109,1500,230,1,0 +19900109,1500,231,1,0 +19900109,1500,232,1,0 +19900109,1500,243,1,0 +19900109,1500,244,1,0 +19900109,1500,245,1,0 +19900109,1500,228246,1,0 +19900109,1500,228247,1,0 +19900109,1800,133,100,1000 +19900109,1800,133,100,975 +19900109,1800,133,100,950 +19900109,1800,133,100,925 +19900109,1800,133,100,900 +19900109,1800,133,100,875 +19900109,1800,133,100,850 +19900109,1800,133,100,825 +19900109,1800,133,100,800 +19900109,1800,133,100,775 +19900109,1800,133,100,750 +19900109,1800,133,100,740 +19900109,1800,133,100,700 +19900109,1800,133,100,650 +19900109,1800,133,100,620 +19900109,1800,133,100,600 +19900109,1800,133,100,550 +19900109,1800,133,100,500 +19900109,1800,133,100,450 +19900109,1800,133,100,400 +19900109,1800,133,100,375 +19900109,1800,133,100,350 +19900109,1800,133,100,300 +19900109,1800,133,100,250 +19900109,1800,133,100,245 +19900109,1800,133,100,225 +19900109,1800,133,100,200 +19900109,1800,133,100,175 +19900109,1800,133,100,150 +19900109,1800,133,100,125 +19900109,1800,133,100,100 +19900109,1800,133,100,70 +19900109,1800,133,100,50 +19900109,1800,133,100,30 +19900109,1800,133,100,20 +19900109,1800,133,100,10 +19900109,1800,133,100,9 +19900109,1800,133,100,7 +19900109,1800,133,100,5 +19900109,1800,133,100,3 +19900109,1800,133,100,2 +19900109,1800,133,100,1 +19900109,1800,133,210,40 +19900109,1800,3,117,2000 +19900109,1800,133,109,1 +19900109,1800,133,109,2 +19900109,1800,133,109,3 +19900109,1800,133,109,4 +19900109,1800,133,109,5 +19900109,1800,133,109,6 +19900109,1800,133,109,7 +19900109,1800,133,109,8 +19900109,1800,133,109,9 +19900109,1800,133,109,10 +19900109,1800,246,109,1 +19900109,1800,246,109,2 +19900109,1800,246,109,3 +19900109,1800,246,109,4 +19900109,1800,246,109,5 +19900109,1800,246,109,6 +19900109,1800,246,109,7 +19900109,1800,246,109,8 +19900109,1800,246,109,9 +19900109,1800,246,109,10 +19900109,1800,247,109,1 +19900109,1800,247,109,2 +19900109,1800,247,109,3 +19900109,1800,247,109,4 +19900109,1800,247,109,5 +19900109,1800,247,109,6 +19900109,1800,247,109,7 +19900109,1800,247,109,8 +19900109,1800,247,109,9 +19900109,1800,247,109,10 +19900109,1800,248,109,1 +19900109,1800,248,109,2 +19900109,1800,248,109,3 +19900109,1800,248,109,4 +19900109,1800,248,109,5 +19900109,1800,248,109,6 +19900109,1800,248,109,7 +19900109,1800,248,109,8 +19900109,1800,248,109,9 +19900109,1800,248,109,10 +19900109,1800,8,1,0 +19900109,1800,31,1,0 +19900109,1800,32,1,0 +19900109,1800,33,1,0 +19900109,1800,34,1,0 +19900109,1800,35,111,7 +19900109,1800,36,111,28 +19900109,1800,37,111,100 +19900109,1800,38,111,289 +19900109,1800,39,111,7 +19900109,1800,40,111,28 +19900109,1800,41,111,100 +19900109,1800,42,111,289 +19900109,1800,44,1,0 +19900109,1800,45,1,0 +19900109,1800,49,1,0 +19900109,1800,50,1,0 +19900109,1800,57,1,0 +19900109,1800,58,1,0 +19900109,1800,123,1,0 +19900109,1800,139,111,7 +19900109,1800,141,1,0 +19900109,1800,142,1,0 +19900109,1800,143,1,0 +19900109,1800,144,1,0 +19900109,1800,145,1,0 +19900109,1800,146,1,0 +19900109,1800,147,1,0 +19900109,1800,148,1,0 +19900109,1800,169,1,0 +19900109,1800,170,111,28 +19900109,1800,172,1,0 +19900109,1800,175,1,0 +19900109,1800,176,1,0 +19900109,1800,177,1,0 +19900109,1800,178,1,0 +19900109,1800,179,1,0 +19900109,1800,180,1,0 +19900109,1800,181,1,0 +19900109,1800,182,1,0 +19900109,1800,183,111,100 +19900109,1800,189,1,0 +19900109,1800,195,1,0 +19900109,1800,196,1,0 +19900109,1800,197,1,0 +19900109,1800,198,1,0 +19900109,1800,201,1,0 +19900109,1800,202,1,0 +19900109,1800,205,1,0 +19900109,1800,208,1,0 +19900109,1800,209,1,0 +19900109,1800,210,1,0 +19900109,1800,211,1,0 +19900109,1800,212,1,0 +19900109,1800,213,1,0 +19900109,1800,228,1,0 +19900109,1800,235,1,0 +19900109,1800,236,111,289 +19900109,1800,238,1,0 +19900109,1800,59,1,0 +19900109,1800,78,1,0 +19900109,1800,79,1,0 +19900109,1800,136,1,0 +19900109,1800,137,1,0 +19900109,1800,151,1,0 +19900109,1800,159,1,0 +19900109,1800,164,1,0 +19900109,1800,165,1,0 +19900109,1800,166,1,0 +19900109,1800,167,1,0 +19900109,1800,168,1,0 +19900109,1800,186,1,0 +19900109,1800,187,1,0 +19900109,1800,188,1,0 +19900109,1800,229,1,0 +19900109,1800,230,1,0 +19900109,1800,231,1,0 +19900109,1800,232,1,0 +19900109,1800,243,1,0 +19900109,1800,244,1,0 +19900109,1800,245,1,0 +19900109,1800,228246,1,0 +19900109,1800,228247,1,0 +19900109,2100,8,1,0 +19900109,2100,31,1,0 +19900109,2100,32,1,0 +19900109,2100,33,1,0 +19900109,2100,34,1,0 +19900109,2100,35,111,7 +19900109,2100,36,111,28 +19900109,2100,37,111,100 +19900109,2100,38,111,289 +19900109,2100,39,111,7 +19900109,2100,40,111,28 +19900109,2100,41,111,100 +19900109,2100,42,111,289 +19900109,2100,44,1,0 +19900109,2100,45,1,0 +19900109,2100,49,1,0 +19900109,2100,50,1,0 +19900109,2100,57,1,0 +19900109,2100,58,1,0 +19900109,2100,123,1,0 +19900109,2100,139,111,7 +19900109,2100,141,1,0 +19900109,2100,142,1,0 +19900109,2100,143,1,0 +19900109,2100,144,1,0 +19900109,2100,145,1,0 +19900109,2100,146,1,0 +19900109,2100,147,1,0 +19900109,2100,148,1,0 +19900109,2100,169,1,0 +19900109,2100,170,111,28 +19900109,2100,172,1,0 +19900109,2100,175,1,0 +19900109,2100,176,1,0 +19900109,2100,177,1,0 +19900109,2100,178,1,0 +19900109,2100,179,1,0 +19900109,2100,180,1,0 +19900109,2100,181,1,0 +19900109,2100,182,1,0 +19900109,2100,183,111,100 +19900109,2100,189,1,0 +19900109,2100,195,1,0 +19900109,2100,196,1,0 +19900109,2100,197,1,0 +19900109,2100,198,1,0 +19900109,2100,201,1,0 +19900109,2100,202,1,0 +19900109,2100,205,1,0 +19900109,2100,208,1,0 +19900109,2100,209,1,0 +19900109,2100,210,1,0 +19900109,2100,211,1,0 +19900109,2100,212,1,0 +19900109,2100,213,1,0 +19900109,2100,228,1,0 +19900109,2100,235,1,0 +19900109,2100,236,111,289 +19900109,2100,238,1,0 +19900109,2100,59,1,0 +19900109,2100,78,1,0 +19900109,2100,79,1,0 +19900109,2100,136,1,0 +19900109,2100,137,1,0 +19900109,2100,151,1,0 +19900109,2100,159,1,0 +19900109,2100,164,1,0 +19900109,2100,165,1,0 +19900109,2100,166,1,0 +19900109,2100,167,1,0 +19900109,2100,168,1,0 +19900109,2100,186,1,0 +19900109,2100,187,1,0 +19900109,2100,188,1,0 +19900109,2100,229,1,0 +19900109,2100,230,1,0 +19900109,2100,231,1,0 +19900109,2100,232,1,0 +19900109,2100,243,1,0 +19900109,2100,244,1,0 +19900109,2100,245,1,0 +19900109,2100,228246,1,0 +19900109,2100,228247,1,0 +19900110,0,133,100,1000 +19900110,0,133,100,975 +19900110,0,133,100,950 +19900110,0,133,100,925 +19900110,0,133,100,900 +19900110,0,133,100,875 +19900110,0,133,100,850 +19900110,0,133,100,825 +19900110,0,133,100,800 +19900110,0,133,100,775 +19900110,0,133,100,750 +19900110,0,133,100,740 +19900110,0,133,100,700 +19900110,0,133,100,650 +19900110,0,133,100,620 +19900110,0,133,100,600 +19900110,0,133,100,550 +19900110,0,133,100,500 +19900110,0,133,100,450 +19900110,0,133,100,400 +19900110,0,133,100,375 +19900110,0,133,100,350 +19900110,0,133,100,300 +19900110,0,133,100,250 +19900110,0,133,100,245 +19900110,0,133,100,225 +19900110,0,133,100,200 +19900110,0,133,100,175 +19900110,0,133,100,150 +19900110,0,133,100,125 +19900110,0,133,100,100 +19900110,0,133,100,70 +19900110,0,133,100,50 +19900110,0,133,100,30 +19900110,0,133,100,20 +19900110,0,133,100,10 +19900110,0,133,100,9 +19900110,0,133,100,7 +19900110,0,133,100,5 +19900110,0,133,100,3 +19900110,0,133,100,2 +19900110,0,133,100,1 +19900110,0,133,210,40 +19900110,0,3,117,2000 +19900110,0,133,109,1 +19900110,0,133,109,2 +19900110,0,133,109,3 +19900110,0,133,109,4 +19900110,0,133,109,5 +19900110,0,133,109,6 +19900110,0,133,109,7 +19900110,0,133,109,8 +19900110,0,133,109,9 +19900110,0,133,109,10 +19900110,0,246,109,1 +19900110,0,246,109,2 +19900110,0,246,109,3 +19900110,0,246,109,4 +19900110,0,246,109,5 +19900110,0,246,109,6 +19900110,0,246,109,7 +19900110,0,246,109,8 +19900110,0,246,109,9 +19900110,0,246,109,10 +19900110,0,247,109,1 +19900110,0,247,109,2 +19900110,0,247,109,3 +19900110,0,247,109,4 +19900110,0,247,109,5 +19900110,0,247,109,6 +19900110,0,247,109,7 +19900110,0,247,109,8 +19900110,0,247,109,9 +19900110,0,247,109,10 +19900110,0,248,109,1 +19900110,0,248,109,2 +19900110,0,248,109,3 +19900110,0,248,109,4 +19900110,0,248,109,5 +19900110,0,248,109,6 +19900110,0,248,109,7 +19900110,0,248,109,8 +19900110,0,248,109,9 +19900110,0,248,109,10 +19900110,0,8,1,0 +19900110,0,31,1,0 +19900110,0,32,1,0 +19900110,0,33,1,0 +19900110,0,34,1,0 +19900110,0,35,111,7 +19900110,0,36,111,28 +19900110,0,37,111,100 +19900110,0,38,111,289 +19900110,0,39,111,7 +19900110,0,40,111,28 +19900110,0,41,111,100 +19900110,0,42,111,289 +19900110,0,44,1,0 +19900110,0,45,1,0 +19900110,0,49,1,0 +19900110,0,50,1,0 +19900110,0,57,1,0 +19900110,0,58,1,0 +19900110,0,123,1,0 +19900110,0,139,111,7 +19900110,0,141,1,0 +19900110,0,142,1,0 +19900110,0,143,1,0 +19900110,0,144,1,0 +19900110,0,145,1,0 +19900110,0,146,1,0 +19900110,0,147,1,0 +19900110,0,148,1,0 +19900110,0,169,1,0 +19900110,0,170,111,28 +19900110,0,172,1,0 +19900110,0,175,1,0 +19900110,0,176,1,0 +19900110,0,177,1,0 +19900110,0,178,1,0 +19900110,0,179,1,0 +19900110,0,180,1,0 +19900110,0,181,1,0 +19900110,0,182,1,0 +19900110,0,183,111,100 +19900110,0,189,1,0 +19900110,0,195,1,0 +19900110,0,196,1,0 +19900110,0,197,1,0 +19900110,0,198,1,0 +19900110,0,201,1,0 +19900110,0,202,1,0 +19900110,0,205,1,0 +19900110,0,208,1,0 +19900110,0,209,1,0 +19900110,0,210,1,0 +19900110,0,211,1,0 +19900110,0,212,1,0 +19900110,0,213,1,0 +19900110,0,228,1,0 +19900110,0,235,1,0 +19900110,0,236,111,289 +19900110,0,238,1,0 +19900110,0,59,1,0 +19900110,0,78,1,0 +19900110,0,79,1,0 +19900110,0,136,1,0 +19900110,0,137,1,0 +19900110,0,151,1,0 +19900110,0,159,1,0 +19900110,0,164,1,0 +19900110,0,165,1,0 +19900110,0,166,1,0 +19900110,0,167,1,0 +19900110,0,168,1,0 +19900110,0,186,1,0 +19900110,0,187,1,0 +19900110,0,188,1,0 +19900110,0,229,1,0 +19900110,0,230,1,0 +19900110,0,231,1,0 +19900110,0,232,1,0 +19900110,0,243,1,0 +19900110,0,244,1,0 +19900110,0,245,1,0 +19900110,0,228246,1,0 +19900110,0,228247,1,0 +19900110,300,8,1,0 +19900110,300,31,1,0 +19900110,300,32,1,0 +19900110,300,33,1,0 +19900110,300,34,1,0 +19900110,300,35,111,7 +19900110,300,36,111,28 +19900110,300,37,111,100 +19900110,300,38,111,289 +19900110,300,39,111,7 +19900110,300,40,111,28 +19900110,300,41,111,100 +19900110,300,42,111,289 +19900110,300,44,1,0 +19900110,300,45,1,0 +19900110,300,49,1,0 +19900110,300,50,1,0 +19900110,300,57,1,0 +19900110,300,58,1,0 +19900110,300,123,1,0 +19900110,300,139,111,7 +19900110,300,141,1,0 +19900110,300,142,1,0 +19900110,300,143,1,0 +19900110,300,144,1,0 +19900110,300,145,1,0 +19900110,300,146,1,0 +19900110,300,147,1,0 +19900110,300,148,1,0 +19900110,300,169,1,0 +19900110,300,170,111,28 +19900110,300,172,1,0 +19900110,300,175,1,0 +19900110,300,176,1,0 +19900110,300,177,1,0 +19900110,300,178,1,0 +19900110,300,179,1,0 +19900110,300,180,1,0 +19900110,300,181,1,0 +19900110,300,182,1,0 +19900110,300,183,111,100 +19900110,300,189,1,0 +19900110,300,195,1,0 +19900110,300,196,1,0 +19900110,300,197,1,0 +19900110,300,198,1,0 +19900110,300,201,1,0 +19900110,300,202,1,0 +19900110,300,205,1,0 +19900110,300,208,1,0 +19900110,300,209,1,0 +19900110,300,210,1,0 +19900110,300,211,1,0 +19900110,300,212,1,0 +19900110,300,213,1,0 +19900110,300,228,1,0 +19900110,300,235,1,0 +19900110,300,236,111,289 +19900110,300,238,1,0 +19900110,300,59,1,0 +19900110,300,78,1,0 +19900110,300,79,1,0 +19900110,300,136,1,0 +19900110,300,137,1,0 +19900110,300,151,1,0 +19900110,300,159,1,0 +19900110,300,164,1,0 +19900110,300,165,1,0 +19900110,300,166,1,0 +19900110,300,167,1,0 +19900110,300,168,1,0 +19900110,300,186,1,0 +19900110,300,187,1,0 +19900110,300,188,1,0 +19900110,300,229,1,0 +19900110,300,230,1,0 +19900110,300,231,1,0 +19900110,300,232,1,0 +19900110,300,243,1,0 +19900110,300,244,1,0 +19900110,300,245,1,0 +19900110,300,228246,1,0 +19900110,300,228247,1,0 +19900110,600,133,100,1000 +19900110,600,133,100,975 +19900110,600,133,100,950 +19900110,600,133,100,925 +19900110,600,133,100,900 +19900110,600,133,100,875 +19900110,600,133,100,850 +19900110,600,133,100,825 +19900110,600,133,100,800 +19900110,600,133,100,775 +19900110,600,133,100,750 +19900110,600,133,100,740 +19900110,600,133,100,700 +19900110,600,133,100,650 +19900110,600,133,100,620 +19900110,600,133,100,600 +19900110,600,133,100,550 +19900110,600,133,100,500 +19900110,600,133,100,450 +19900110,600,133,100,400 +19900110,600,133,100,375 +19900110,600,133,100,350 +19900110,600,133,100,300 +19900110,600,133,100,250 +19900110,600,133,100,245 +19900110,600,133,100,225 +19900110,600,133,100,200 +19900110,600,133,100,175 +19900110,600,133,100,150 +19900110,600,133,100,125 +19900110,600,133,100,100 +19900110,600,133,100,70 +19900110,600,133,100,50 +19900110,600,133,100,30 +19900110,600,133,100,20 +19900110,600,133,100,10 +19900110,600,133,100,9 +19900110,600,133,100,7 +19900110,600,133,100,5 +19900110,600,133,100,3 +19900110,600,133,100,2 +19900110,600,133,100,1 +19900110,600,133,210,40 +19900110,600,3,117,2000 +19900110,600,133,109,1 +19900110,600,133,109,2 +19900110,600,133,109,3 +19900110,600,133,109,4 +19900110,600,133,109,5 +19900110,600,133,109,6 +19900110,600,133,109,7 +19900110,600,133,109,8 +19900110,600,133,109,9 +19900110,600,133,109,10 +19900110,600,246,109,1 +19900110,600,246,109,2 +19900110,600,246,109,3 +19900110,600,246,109,4 +19900110,600,246,109,5 +19900110,600,246,109,6 +19900110,600,246,109,7 +19900110,600,246,109,8 +19900110,600,246,109,9 +19900110,600,246,109,10 +19900110,600,247,109,1 +19900110,600,247,109,2 +19900110,600,247,109,3 +19900110,600,247,109,4 +19900110,600,247,109,5 +19900110,600,247,109,6 +19900110,600,247,109,7 +19900110,600,247,109,8 +19900110,600,247,109,9 +19900110,600,247,109,10 +19900110,600,248,109,1 +19900110,600,248,109,2 +19900110,600,248,109,3 +19900110,600,248,109,4 +19900110,600,248,109,5 +19900110,600,248,109,6 +19900110,600,248,109,7 +19900110,600,248,109,8 +19900110,600,248,109,9 +19900110,600,248,109,10 +19900110,600,8,1,0 +19900110,600,31,1,0 +19900110,600,32,1,0 +19900110,600,33,1,0 +19900110,600,34,1,0 +19900110,600,35,111,7 +19900110,600,36,111,28 +19900110,600,37,111,100 +19900110,600,38,111,289 +19900110,600,39,111,7 +19900110,600,40,111,28 +19900110,600,41,111,100 +19900110,600,42,111,289 +19900110,600,44,1,0 +19900110,600,45,1,0 +19900110,600,49,1,0 +19900110,600,50,1,0 +19900110,600,57,1,0 +19900110,600,58,1,0 +19900110,600,123,1,0 +19900110,600,139,111,7 +19900110,600,141,1,0 +19900110,600,142,1,0 +19900110,600,143,1,0 +19900110,600,144,1,0 +19900110,600,145,1,0 +19900110,600,146,1,0 +19900110,600,147,1,0 +19900110,600,148,1,0 +19900110,600,169,1,0 +19900110,600,170,111,28 +19900110,600,172,1,0 +19900110,600,175,1,0 +19900110,600,176,1,0 +19900110,600,177,1,0 +19900110,600,178,1,0 +19900110,600,179,1,0 +19900110,600,180,1,0 +19900110,600,181,1,0 +19900110,600,182,1,0 +19900110,600,183,111,100 +19900110,600,189,1,0 +19900110,600,195,1,0 +19900110,600,196,1,0 +19900110,600,197,1,0 +19900110,600,198,1,0 +19900110,600,201,1,0 +19900110,600,202,1,0 +19900110,600,205,1,0 +19900110,600,208,1,0 +19900110,600,209,1,0 +19900110,600,210,1,0 +19900110,600,211,1,0 +19900110,600,212,1,0 +19900110,600,213,1,0 +19900110,600,228,1,0 +19900110,600,235,1,0 +19900110,600,236,111,289 +19900110,600,238,1,0 +19900110,600,59,1,0 +19900110,600,78,1,0 +19900110,600,79,1,0 +19900110,600,136,1,0 +19900110,600,137,1,0 +19900110,600,151,1,0 +19900110,600,159,1,0 +19900110,600,164,1,0 +19900110,600,165,1,0 +19900110,600,166,1,0 +19900110,600,167,1,0 +19900110,600,168,1,0 +19900110,600,186,1,0 +19900110,600,187,1,0 +19900110,600,188,1,0 +19900110,600,229,1,0 +19900110,600,230,1,0 +19900110,600,231,1,0 +19900110,600,232,1,0 +19900110,600,243,1,0 +19900110,600,244,1,0 +19900110,600,245,1,0 +19900110,600,228246,1,0 +19900110,600,228247,1,0 +19900110,900,8,1,0 +19900110,900,31,1,0 +19900110,900,32,1,0 +19900110,900,33,1,0 +19900110,900,34,1,0 +19900110,900,35,111,7 +19900110,900,36,111,28 +19900110,900,37,111,100 +19900110,900,38,111,289 +19900110,900,39,111,7 +19900110,900,40,111,28 +19900110,900,41,111,100 +19900110,900,42,111,289 +19900110,900,44,1,0 +19900110,900,45,1,0 +19900110,900,49,1,0 +19900110,900,50,1,0 +19900110,900,57,1,0 +19900110,900,58,1,0 +19900110,900,123,1,0 +19900110,900,139,111,7 +19900110,900,141,1,0 +19900110,900,142,1,0 +19900110,900,143,1,0 +19900110,900,144,1,0 +19900110,900,145,1,0 +19900110,900,146,1,0 +19900110,900,147,1,0 +19900110,900,148,1,0 +19900110,900,169,1,0 +19900110,900,170,111,28 +19900110,900,172,1,0 +19900110,900,175,1,0 +19900110,900,176,1,0 +19900110,900,177,1,0 +19900110,900,178,1,0 +19900110,900,179,1,0 +19900110,900,180,1,0 +19900110,900,181,1,0 +19900110,900,182,1,0 +19900110,900,183,111,100 +19900110,900,189,1,0 +19900110,900,195,1,0 +19900110,900,196,1,0 +19900110,900,197,1,0 +19900110,900,198,1,0 +19900110,900,201,1,0 +19900110,900,202,1,0 +19900110,900,205,1,0 +19900110,900,208,1,0 +19900110,900,209,1,0 +19900110,900,210,1,0 +19900110,900,211,1,0 +19900110,900,212,1,0 +19900110,900,213,1,0 +19900110,900,228,1,0 +19900110,900,235,1,0 +19900110,900,236,111,289 +19900110,900,238,1,0 +19900110,900,59,1,0 +19900110,900,78,1,0 +19900110,900,79,1,0 +19900110,900,136,1,0 +19900110,900,137,1,0 +19900110,900,151,1,0 +19900110,900,159,1,0 +19900110,900,164,1,0 +19900110,900,165,1,0 +19900110,900,166,1,0 +19900110,900,167,1,0 +19900110,900,168,1,0 +19900110,900,186,1,0 +19900110,900,187,1,0 +19900110,900,188,1,0 +19900110,900,229,1,0 +19900110,900,230,1,0 +19900110,900,231,1,0 +19900110,900,232,1,0 +19900110,900,243,1,0 +19900110,900,244,1,0 +19900110,900,245,1,0 +19900110,900,228246,1,0 +19900110,900,228247,1,0 +19900110,1200,133,100,1000 +19900110,1200,133,100,975 +19900110,1200,133,100,950 +19900110,1200,133,100,925 +19900110,1200,133,100,900 +19900110,1200,133,100,875 +19900110,1200,133,100,850 +19900110,1200,133,100,825 +19900110,1200,133,100,800 +19900110,1200,133,100,775 +19900110,1200,133,100,750 +19900110,1200,133,100,740 +19900110,1200,133,100,700 +19900110,1200,133,100,650 +19900110,1200,133,100,620 +19900110,1200,133,100,600 +19900110,1200,133,100,550 +19900110,1200,133,100,500 +19900110,1200,133,100,450 +19900110,1200,133,100,400 +19900110,1200,133,100,375 +19900110,1200,133,100,350 +19900110,1200,133,100,300 +19900110,1200,133,100,250 +19900110,1200,133,100,245 +19900110,1200,133,100,225 +19900110,1200,133,100,200 +19900110,1200,133,100,175 +19900110,1200,133,100,150 +19900110,1200,133,100,125 +19900110,1200,133,100,100 +19900110,1200,133,100,70 +19900110,1200,133,100,50 +19900110,1200,133,100,30 +19900110,1200,133,100,20 +19900110,1200,133,100,10 +19900110,1200,133,100,9 +19900110,1200,133,100,7 +19900110,1200,133,100,5 +19900110,1200,133,100,3 +19900110,1200,133,100,2 +19900110,1200,133,100,1 +19900110,1200,133,210,40 +19900110,1200,3,117,2000 +19900110,1200,133,109,1 +19900110,1200,133,109,2 +19900110,1200,133,109,3 +19900110,1200,133,109,4 +19900110,1200,133,109,5 +19900110,1200,133,109,6 +19900110,1200,133,109,7 +19900110,1200,133,109,8 +19900110,1200,133,109,9 +19900110,1200,133,109,10 +19900110,1200,246,109,1 +19900110,1200,246,109,2 +19900110,1200,246,109,3 +19900110,1200,246,109,4 +19900110,1200,246,109,5 +19900110,1200,246,109,6 +19900110,1200,246,109,7 +19900110,1200,246,109,8 +19900110,1200,246,109,9 +19900110,1200,246,109,10 +19900110,1200,247,109,1 +19900110,1200,247,109,2 +19900110,1200,247,109,3 +19900110,1200,247,109,4 +19900110,1200,247,109,5 +19900110,1200,247,109,6 +19900110,1200,247,109,7 +19900110,1200,247,109,8 +19900110,1200,247,109,9 +19900110,1200,247,109,10 +19900110,1200,248,109,1 +19900110,1200,248,109,2 +19900110,1200,248,109,3 +19900110,1200,248,109,4 +19900110,1200,248,109,5 +19900110,1200,248,109,6 +19900110,1200,248,109,7 +19900110,1200,248,109,8 +19900110,1200,248,109,9 +19900110,1200,248,109,10 +19900110,1200,8,1,0 +19900110,1200,31,1,0 +19900110,1200,32,1,0 +19900110,1200,33,1,0 +19900110,1200,34,1,0 +19900110,1200,35,111,7 +19900110,1200,36,111,28 +19900110,1200,37,111,100 +19900110,1200,38,111,289 +19900110,1200,39,111,7 +19900110,1200,40,111,28 +19900110,1200,41,111,100 +19900110,1200,42,111,289 +19900110,1200,44,1,0 +19900110,1200,45,1,0 +19900110,1200,49,1,0 +19900110,1200,50,1,0 +19900110,1200,57,1,0 +19900110,1200,58,1,0 +19900110,1200,123,1,0 +19900110,1200,139,111,7 +19900110,1200,141,1,0 +19900110,1200,142,1,0 +19900110,1200,143,1,0 +19900110,1200,144,1,0 +19900110,1200,145,1,0 +19900110,1200,146,1,0 +19900110,1200,147,1,0 +19900110,1200,148,1,0 +19900110,1200,169,1,0 +19900110,1200,170,111,28 +19900110,1200,172,1,0 +19900110,1200,175,1,0 +19900110,1200,176,1,0 +19900110,1200,177,1,0 +19900110,1200,178,1,0 +19900110,1200,179,1,0 +19900110,1200,180,1,0 +19900110,1200,181,1,0 +19900110,1200,182,1,0 +19900110,1200,183,111,100 +19900110,1200,189,1,0 +19900110,1200,195,1,0 +19900110,1200,196,1,0 +19900110,1200,197,1,0 +19900110,1200,198,1,0 +19900110,1200,201,1,0 +19900110,1200,202,1,0 +19900110,1200,205,1,0 +19900110,1200,208,1,0 +19900110,1200,209,1,0 +19900110,1200,210,1,0 +19900110,1200,211,1,0 +19900110,1200,212,1,0 +19900110,1200,213,1,0 +19900110,1200,228,1,0 +19900110,1200,235,1,0 +19900110,1200,236,111,289 +19900110,1200,238,1,0 +19900110,1200,59,1,0 +19900110,1200,78,1,0 +19900110,1200,79,1,0 +19900110,1200,136,1,0 +19900110,1200,137,1,0 +19900110,1200,151,1,0 +19900110,1200,159,1,0 +19900110,1200,164,1,0 +19900110,1200,165,1,0 +19900110,1200,166,1,0 +19900110,1200,167,1,0 +19900110,1200,168,1,0 +19900110,1200,186,1,0 +19900110,1200,187,1,0 +19900110,1200,188,1,0 +19900110,1200,229,1,0 +19900110,1200,230,1,0 +19900110,1200,231,1,0 +19900110,1200,232,1,0 +19900110,1200,243,1,0 +19900110,1200,244,1,0 +19900110,1200,245,1,0 +19900110,1200,228246,1,0 +19900110,1200,228247,1,0 +19900110,1500,8,1,0 +19900110,1500,31,1,0 +19900110,1500,32,1,0 +19900110,1500,33,1,0 +19900110,1500,34,1,0 +19900110,1500,35,111,7 +19900110,1500,36,111,28 +19900110,1500,37,111,100 +19900110,1500,38,111,289 +19900110,1500,39,111,7 +19900110,1500,40,111,28 +19900110,1500,41,111,100 +19900110,1500,42,111,289 +19900110,1500,44,1,0 +19900110,1500,45,1,0 +19900110,1500,49,1,0 +19900110,1500,50,1,0 +19900110,1500,57,1,0 +19900110,1500,58,1,0 +19900110,1500,123,1,0 +19900110,1500,139,111,7 +19900110,1500,141,1,0 +19900110,1500,142,1,0 +19900110,1500,143,1,0 +19900110,1500,144,1,0 +19900110,1500,145,1,0 +19900110,1500,146,1,0 +19900110,1500,147,1,0 +19900110,1500,148,1,0 +19900110,1500,169,1,0 +19900110,1500,170,111,28 +19900110,1500,172,1,0 +19900110,1500,175,1,0 +19900110,1500,176,1,0 +19900110,1500,177,1,0 +19900110,1500,178,1,0 +19900110,1500,179,1,0 +19900110,1500,180,1,0 +19900110,1500,181,1,0 +19900110,1500,182,1,0 +19900110,1500,183,111,100 +19900110,1500,189,1,0 +19900110,1500,195,1,0 +19900110,1500,196,1,0 +19900110,1500,197,1,0 +19900110,1500,198,1,0 +19900110,1500,201,1,0 +19900110,1500,202,1,0 +19900110,1500,205,1,0 +19900110,1500,208,1,0 +19900110,1500,209,1,0 +19900110,1500,210,1,0 +19900110,1500,211,1,0 +19900110,1500,212,1,0 +19900110,1500,213,1,0 +19900110,1500,228,1,0 +19900110,1500,235,1,0 +19900110,1500,236,111,289 +19900110,1500,238,1,0 +19900110,1500,59,1,0 +19900110,1500,78,1,0 +19900110,1500,79,1,0 +19900110,1500,136,1,0 +19900110,1500,137,1,0 +19900110,1500,151,1,0 +19900110,1500,159,1,0 +19900110,1500,164,1,0 +19900110,1500,165,1,0 +19900110,1500,166,1,0 +19900110,1500,167,1,0 +19900110,1500,168,1,0 +19900110,1500,186,1,0 +19900110,1500,187,1,0 +19900110,1500,188,1,0 +19900110,1500,229,1,0 +19900110,1500,230,1,0 +19900110,1500,231,1,0 +19900110,1500,232,1,0 +19900110,1500,243,1,0 +19900110,1500,244,1,0 +19900110,1500,245,1,0 +19900110,1500,228246,1,0 +19900110,1500,228247,1,0 +19900110,1800,133,100,1000 +19900110,1800,133,100,975 +19900110,1800,133,100,950 +19900110,1800,133,100,925 +19900110,1800,133,100,900 +19900110,1800,133,100,875 +19900110,1800,133,100,850 +19900110,1800,133,100,825 +19900110,1800,133,100,800 +19900110,1800,133,100,775 +19900110,1800,133,100,750 +19900110,1800,133,100,740 +19900110,1800,133,100,700 +19900110,1800,133,100,650 +19900110,1800,133,100,620 +19900110,1800,133,100,600 +19900110,1800,133,100,550 +19900110,1800,133,100,500 +19900110,1800,133,100,450 +19900110,1800,133,100,400 +19900110,1800,133,100,375 +19900110,1800,133,100,350 +19900110,1800,133,100,300 +19900110,1800,133,100,250 +19900110,1800,133,100,245 +19900110,1800,133,100,225 +19900110,1800,133,100,200 +19900110,1800,133,100,175 +19900110,1800,133,100,150 +19900110,1800,133,100,125 +19900110,1800,133,100,100 +19900110,1800,133,100,70 +19900110,1800,133,100,50 +19900110,1800,133,100,30 +19900110,1800,133,100,20 +19900110,1800,133,100,10 +19900110,1800,133,100,9 +19900110,1800,133,100,7 +19900110,1800,133,100,5 +19900110,1800,133,100,3 +19900110,1800,133,100,2 +19900110,1800,133,100,1 +19900110,1800,133,210,40 +19900110,1800,3,117,2000 +19900110,1800,133,109,1 +19900110,1800,133,109,2 +19900110,1800,133,109,3 +19900110,1800,133,109,4 +19900110,1800,133,109,5 +19900110,1800,133,109,6 +19900110,1800,133,109,7 +19900110,1800,133,109,8 +19900110,1800,133,109,9 +19900110,1800,133,109,10 +19900110,1800,246,109,1 +19900110,1800,246,109,2 +19900110,1800,246,109,3 +19900110,1800,246,109,4 +19900110,1800,246,109,5 +19900110,1800,246,109,6 +19900110,1800,246,109,7 +19900110,1800,246,109,8 +19900110,1800,246,109,9 +19900110,1800,246,109,10 +19900110,1800,247,109,1 +19900110,1800,247,109,2 +19900110,1800,247,109,3 +19900110,1800,247,109,4 +19900110,1800,247,109,5 +19900110,1800,247,109,6 +19900110,1800,247,109,7 +19900110,1800,247,109,8 +19900110,1800,247,109,9 +19900110,1800,247,109,10 +19900110,1800,248,109,1 +19900110,1800,248,109,2 +19900110,1800,248,109,3 +19900110,1800,248,109,4 +19900110,1800,248,109,5 +19900110,1800,248,109,6 +19900110,1800,248,109,7 +19900110,1800,248,109,8 +19900110,1800,248,109,9 +19900110,1800,248,109,10 +19900110,1800,8,1,0 +19900110,1800,31,1,0 +19900110,1800,32,1,0 +19900110,1800,33,1,0 +19900110,1800,34,1,0 +19900110,1800,35,111,7 +19900110,1800,36,111,28 +19900110,1800,37,111,100 +19900110,1800,38,111,289 +19900110,1800,39,111,7 +19900110,1800,40,111,28 +19900110,1800,41,111,100 +19900110,1800,42,111,289 +19900110,1800,44,1,0 +19900110,1800,45,1,0 +19900110,1800,49,1,0 +19900110,1800,50,1,0 +19900110,1800,57,1,0 +19900110,1800,58,1,0 +19900110,1800,123,1,0 +19900110,1800,139,111,7 +19900110,1800,141,1,0 +19900110,1800,142,1,0 +19900110,1800,143,1,0 +19900110,1800,144,1,0 +19900110,1800,145,1,0 +19900110,1800,146,1,0 +19900110,1800,147,1,0 +19900110,1800,148,1,0 +19900110,1800,169,1,0 +19900110,1800,170,111,28 +19900110,1800,172,1,0 +19900110,1800,175,1,0 +19900110,1800,176,1,0 +19900110,1800,177,1,0 +19900110,1800,178,1,0 +19900110,1800,179,1,0 +19900110,1800,180,1,0 +19900110,1800,181,1,0 +19900110,1800,182,1,0 +19900110,1800,183,111,100 +19900110,1800,189,1,0 +19900110,1800,195,1,0 +19900110,1800,196,1,0 +19900110,1800,197,1,0 +19900110,1800,198,1,0 +19900110,1800,201,1,0 +19900110,1800,202,1,0 +19900110,1800,205,1,0 +19900110,1800,208,1,0 +19900110,1800,209,1,0 +19900110,1800,210,1,0 +19900110,1800,211,1,0 +19900110,1800,212,1,0 +19900110,1800,213,1,0 +19900110,1800,228,1,0 +19900110,1800,235,1,0 +19900110,1800,236,111,289 +19900110,1800,238,1,0 +19900110,1800,59,1,0 +19900110,1800,78,1,0 +19900110,1800,79,1,0 +19900110,1800,136,1,0 +19900110,1800,137,1,0 +19900110,1800,151,1,0 +19900110,1800,159,1,0 +19900110,1800,164,1,0 +19900110,1800,165,1,0 +19900110,1800,166,1,0 +19900110,1800,167,1,0 +19900110,1800,168,1,0 +19900110,1800,186,1,0 +19900110,1800,187,1,0 +19900110,1800,188,1,0 +19900110,1800,229,1,0 +19900110,1800,230,1,0 +19900110,1800,231,1,0 +19900110,1800,232,1,0 +19900110,1800,243,1,0 +19900110,1800,244,1,0 +19900110,1800,245,1,0 +19900110,1800,228246,1,0 +19900110,1800,228247,1,0 +19900110,2100,8,1,0 +19900110,2100,31,1,0 +19900110,2100,32,1,0 +19900110,2100,33,1,0 +19900110,2100,34,1,0 +19900110,2100,35,111,7 +19900110,2100,36,111,28 +19900110,2100,37,111,100 +19900110,2100,38,111,289 +19900110,2100,39,111,7 +19900110,2100,40,111,28 +19900110,2100,41,111,100 +19900110,2100,42,111,289 +19900110,2100,44,1,0 +19900110,2100,45,1,0 +19900110,2100,49,1,0 +19900110,2100,50,1,0 +19900110,2100,57,1,0 +19900110,2100,58,1,0 +19900110,2100,123,1,0 +19900110,2100,139,111,7 +19900110,2100,141,1,0 +19900110,2100,142,1,0 +19900110,2100,143,1,0 +19900110,2100,144,1,0 +19900110,2100,145,1,0 +19900110,2100,146,1,0 +19900110,2100,147,1,0 +19900110,2100,148,1,0 +19900110,2100,169,1,0 +19900110,2100,170,111,28 +19900110,2100,172,1,0 +19900110,2100,175,1,0 +19900110,2100,176,1,0 +19900110,2100,177,1,0 +19900110,2100,178,1,0 +19900110,2100,179,1,0 +19900110,2100,180,1,0 +19900110,2100,181,1,0 +19900110,2100,182,1,0 +19900110,2100,183,111,100 +19900110,2100,189,1,0 +19900110,2100,195,1,0 +19900110,2100,196,1,0 +19900110,2100,197,1,0 +19900110,2100,198,1,0 +19900110,2100,201,1,0 +19900110,2100,202,1,0 +19900110,2100,205,1,0 +19900110,2100,208,1,0 +19900110,2100,209,1,0 +19900110,2100,210,1,0 +19900110,2100,211,1,0 +19900110,2100,212,1,0 +19900110,2100,213,1,0 +19900110,2100,228,1,0 +19900110,2100,235,1,0 +19900110,2100,236,111,289 +19900110,2100,238,1,0 +19900110,2100,59,1,0 +19900110,2100,78,1,0 +19900110,2100,79,1,0 +19900110,2100,136,1,0 +19900110,2100,137,1,0 +19900110,2100,151,1,0 +19900110,2100,159,1,0 +19900110,2100,164,1,0 +19900110,2100,165,1,0 +19900110,2100,166,1,0 +19900110,2100,167,1,0 +19900110,2100,168,1,0 +19900110,2100,186,1,0 +19900110,2100,187,1,0 +19900110,2100,188,1,0 +19900110,2100,229,1,0 +19900110,2100,230,1,0 +19900110,2100,231,1,0 +19900110,2100,232,1,0 +19900110,2100,243,1,0 +19900110,2100,244,1,0 +19900110,2100,245,1,0 +19900110,2100,228246,1,0 +19900110,2100,228247,1,0 +19900111,0,133,100,1000 +19900111,0,133,100,975 +19900111,0,133,100,950 +19900111,0,133,100,925 +19900111,0,133,100,900 +19900111,0,133,100,875 +19900111,0,133,100,850 +19900111,0,133,100,825 +19900111,0,133,100,800 +19900111,0,133,100,775 +19900111,0,133,100,750 +19900111,0,133,100,740 +19900111,0,133,100,700 +19900111,0,133,100,650 +19900111,0,133,100,620 +19900111,0,133,100,600 +19900111,0,133,100,550 +19900111,0,133,100,500 +19900111,0,133,100,450 +19900111,0,133,100,400 +19900111,0,133,100,375 +19900111,0,133,100,350 +19900111,0,133,100,300 +19900111,0,133,100,250 +19900111,0,133,100,245 +19900111,0,133,100,225 +19900111,0,133,100,200 +19900111,0,133,100,175 +19900111,0,133,100,150 +19900111,0,133,100,125 +19900111,0,133,100,100 +19900111,0,133,100,70 +19900111,0,133,100,50 +19900111,0,133,100,30 +19900111,0,133,100,20 +19900111,0,133,100,10 +19900111,0,133,100,9 +19900111,0,133,100,7 +19900111,0,133,100,5 +19900111,0,133,100,3 +19900111,0,133,100,2 +19900111,0,133,100,1 +19900111,0,133,210,40 +19900111,0,3,117,2000 +19900111,0,133,109,1 +19900111,0,133,109,2 +19900111,0,133,109,3 +19900111,0,133,109,4 +19900111,0,133,109,5 +19900111,0,133,109,6 +19900111,0,133,109,7 +19900111,0,133,109,8 +19900111,0,133,109,9 +19900111,0,133,109,10 +19900111,0,246,109,1 +19900111,0,246,109,2 +19900111,0,246,109,3 +19900111,0,246,109,4 +19900111,0,246,109,5 +19900111,0,246,109,6 +19900111,0,246,109,7 +19900111,0,246,109,8 +19900111,0,246,109,9 +19900111,0,246,109,10 +19900111,0,247,109,1 +19900111,0,247,109,2 +19900111,0,247,109,3 +19900111,0,247,109,4 +19900111,0,247,109,5 +19900111,0,247,109,6 +19900111,0,247,109,7 +19900111,0,247,109,8 +19900111,0,247,109,9 +19900111,0,247,109,10 +19900111,0,248,109,1 +19900111,0,248,109,2 +19900111,0,248,109,3 +19900111,0,248,109,4 +19900111,0,248,109,5 +19900111,0,248,109,6 +19900111,0,248,109,7 +19900111,0,248,109,8 +19900111,0,248,109,9 +19900111,0,248,109,10 +19900111,0,8,1,0 +19900111,0,31,1,0 +19900111,0,32,1,0 +19900111,0,33,1,0 +19900111,0,34,1,0 +19900111,0,35,111,7 +19900111,0,36,111,28 +19900111,0,37,111,100 +19900111,0,38,111,289 +19900111,0,39,111,7 +19900111,0,40,111,28 +19900111,0,41,111,100 +19900111,0,42,111,289 +19900111,0,44,1,0 +19900111,0,45,1,0 +19900111,0,49,1,0 +19900111,0,50,1,0 +19900111,0,57,1,0 +19900111,0,58,1,0 +19900111,0,123,1,0 +19900111,0,139,111,7 +19900111,0,141,1,0 +19900111,0,142,1,0 +19900111,0,143,1,0 +19900111,0,144,1,0 +19900111,0,145,1,0 +19900111,0,146,1,0 +19900111,0,147,1,0 +19900111,0,148,1,0 +19900111,0,169,1,0 +19900111,0,170,111,28 +19900111,0,172,1,0 +19900111,0,175,1,0 +19900111,0,176,1,0 +19900111,0,177,1,0 +19900111,0,178,1,0 +19900111,0,179,1,0 +19900111,0,180,1,0 +19900111,0,181,1,0 +19900111,0,182,1,0 +19900111,0,183,111,100 +19900111,0,189,1,0 +19900111,0,195,1,0 +19900111,0,196,1,0 +19900111,0,197,1,0 +19900111,0,198,1,0 +19900111,0,201,1,0 +19900111,0,202,1,0 +19900111,0,205,1,0 +19900111,0,208,1,0 +19900111,0,209,1,0 +19900111,0,210,1,0 +19900111,0,211,1,0 +19900111,0,212,1,0 +19900111,0,213,1,0 +19900111,0,228,1,0 +19900111,0,235,1,0 +19900111,0,236,111,289 +19900111,0,238,1,0 +19900111,0,59,1,0 +19900111,0,78,1,0 +19900111,0,79,1,0 +19900111,0,136,1,0 +19900111,0,137,1,0 +19900111,0,151,1,0 +19900111,0,159,1,0 +19900111,0,164,1,0 +19900111,0,165,1,0 +19900111,0,166,1,0 +19900111,0,167,1,0 +19900111,0,168,1,0 +19900111,0,186,1,0 +19900111,0,187,1,0 +19900111,0,188,1,0 +19900111,0,229,1,0 +19900111,0,230,1,0 +19900111,0,231,1,0 +19900111,0,232,1,0 +19900111,0,243,1,0 +19900111,0,244,1,0 +19900111,0,245,1,0 +19900111,0,228246,1,0 +19900111,0,228247,1,0 +19900111,300,8,1,0 +19900111,300,31,1,0 +19900111,300,32,1,0 +19900111,300,33,1,0 +19900111,300,34,1,0 +19900111,300,35,111,7 +19900111,300,36,111,28 +19900111,300,37,111,100 +19900111,300,38,111,289 +19900111,300,39,111,7 +19900111,300,40,111,28 +19900111,300,41,111,100 +19900111,300,42,111,289 +19900111,300,44,1,0 +19900111,300,45,1,0 +19900111,300,49,1,0 +19900111,300,50,1,0 +19900111,300,57,1,0 +19900111,300,58,1,0 +19900111,300,123,1,0 +19900111,300,139,111,7 +19900111,300,141,1,0 +19900111,300,142,1,0 +19900111,300,143,1,0 +19900111,300,144,1,0 +19900111,300,145,1,0 +19900111,300,146,1,0 +19900111,300,147,1,0 +19900111,300,148,1,0 +19900111,300,169,1,0 +19900111,300,170,111,28 +19900111,300,172,1,0 +19900111,300,175,1,0 +19900111,300,176,1,0 +19900111,300,177,1,0 +19900111,300,178,1,0 +19900111,300,179,1,0 +19900111,300,180,1,0 +19900111,300,181,1,0 +19900111,300,182,1,0 +19900111,300,183,111,100 +19900111,300,189,1,0 +19900111,300,195,1,0 +19900111,300,196,1,0 +19900111,300,197,1,0 +19900111,300,198,1,0 +19900111,300,201,1,0 +19900111,300,202,1,0 +19900111,300,205,1,0 +19900111,300,208,1,0 +19900111,300,209,1,0 +19900111,300,210,1,0 +19900111,300,211,1,0 +19900111,300,212,1,0 +19900111,300,213,1,0 +19900111,300,228,1,0 +19900111,300,235,1,0 +19900111,300,236,111,289 +19900111,300,238,1,0 +19900111,300,59,1,0 +19900111,300,78,1,0 +19900111,300,79,1,0 +19900111,300,136,1,0 +19900111,300,137,1,0 +19900111,300,151,1,0 +19900111,300,159,1,0 +19900111,300,164,1,0 +19900111,300,165,1,0 +19900111,300,166,1,0 +19900111,300,167,1,0 +19900111,300,168,1,0 +19900111,300,186,1,0 +19900111,300,187,1,0 +19900111,300,188,1,0 +19900111,300,229,1,0 +19900111,300,230,1,0 +19900111,300,231,1,0 +19900111,300,232,1,0 +19900111,300,243,1,0 +19900111,300,244,1,0 +19900111,300,245,1,0 +19900111,300,228246,1,0 +19900111,300,228247,1,0 +19900111,600,133,100,1000 +19900111,600,133,100,975 +19900111,600,133,100,950 +19900111,600,133,100,925 +19900111,600,133,100,900 +19900111,600,133,100,875 +19900111,600,133,100,850 +19900111,600,133,100,825 +19900111,600,133,100,800 +19900111,600,133,100,775 +19900111,600,133,100,750 +19900111,600,133,100,740 +19900111,600,133,100,700 +19900111,600,133,100,650 +19900111,600,133,100,620 +19900111,600,133,100,600 +19900111,600,133,100,550 +19900111,600,133,100,500 +19900111,600,133,100,450 +19900111,600,133,100,400 +19900111,600,133,100,375 +19900111,600,133,100,350 +19900111,600,133,100,300 +19900111,600,133,100,250 +19900111,600,133,100,245 +19900111,600,133,100,225 +19900111,600,133,100,200 +19900111,600,133,100,175 +19900111,600,133,100,150 +19900111,600,133,100,125 +19900111,600,133,100,100 +19900111,600,133,100,70 +19900111,600,133,100,50 +19900111,600,133,100,30 +19900111,600,133,100,20 +19900111,600,133,100,10 +19900111,600,133,100,9 +19900111,600,133,100,7 +19900111,600,133,100,5 +19900111,600,133,100,3 +19900111,600,133,100,2 +19900111,600,133,100,1 +19900111,600,133,210,40 +19900111,600,3,117,2000 +19900111,600,133,109,1 +19900111,600,133,109,2 +19900111,600,133,109,3 +19900111,600,133,109,4 +19900111,600,133,109,5 +19900111,600,133,109,6 +19900111,600,133,109,7 +19900111,600,133,109,8 +19900111,600,133,109,9 +19900111,600,133,109,10 +19900111,600,246,109,1 +19900111,600,246,109,2 +19900111,600,246,109,3 +19900111,600,246,109,4 +19900111,600,246,109,5 +19900111,600,246,109,6 +19900111,600,246,109,7 +19900111,600,246,109,8 +19900111,600,246,109,9 +19900111,600,246,109,10 +19900111,600,247,109,1 +19900111,600,247,109,2 +19900111,600,247,109,3 +19900111,600,247,109,4 +19900111,600,247,109,5 +19900111,600,247,109,6 +19900111,600,247,109,7 +19900111,600,247,109,8 +19900111,600,247,109,9 +19900111,600,247,109,10 +19900111,600,248,109,1 +19900111,600,248,109,2 +19900111,600,248,109,3 +19900111,600,248,109,4 +19900111,600,248,109,5 +19900111,600,248,109,6 +19900111,600,248,109,7 +19900111,600,248,109,8 +19900111,600,248,109,9 +19900111,600,248,109,10 +19900111,600,8,1,0 +19900111,600,31,1,0 +19900111,600,32,1,0 +19900111,600,33,1,0 +19900111,600,34,1,0 +19900111,600,35,111,7 +19900111,600,36,111,28 +19900111,600,37,111,100 +19900111,600,38,111,289 +19900111,600,39,111,7 +19900111,600,40,111,28 +19900111,600,41,111,100 +19900111,600,42,111,289 +19900111,600,44,1,0 +19900111,600,45,1,0 +19900111,600,49,1,0 +19900111,600,50,1,0 +19900111,600,57,1,0 +19900111,600,58,1,0 +19900111,600,123,1,0 +19900111,600,139,111,7 +19900111,600,141,1,0 +19900111,600,142,1,0 +19900111,600,143,1,0 +19900111,600,144,1,0 +19900111,600,145,1,0 +19900111,600,146,1,0 +19900111,600,147,1,0 +19900111,600,148,1,0 +19900111,600,169,1,0 +19900111,600,170,111,28 +19900111,600,172,1,0 +19900111,600,175,1,0 +19900111,600,176,1,0 +19900111,600,177,1,0 +19900111,600,178,1,0 +19900111,600,179,1,0 +19900111,600,180,1,0 +19900111,600,181,1,0 +19900111,600,182,1,0 +19900111,600,183,111,100 +19900111,600,189,1,0 +19900111,600,195,1,0 +19900111,600,196,1,0 +19900111,600,197,1,0 +19900111,600,198,1,0 +19900111,600,201,1,0 +19900111,600,202,1,0 +19900111,600,205,1,0 +19900111,600,208,1,0 +19900111,600,209,1,0 +19900111,600,210,1,0 +19900111,600,211,1,0 +19900111,600,212,1,0 +19900111,600,213,1,0 +19900111,600,228,1,0 +19900111,600,235,1,0 +19900111,600,236,111,289 +19900111,600,238,1,0 +19900111,600,59,1,0 +19900111,600,78,1,0 +19900111,600,79,1,0 +19900111,600,136,1,0 +19900111,600,137,1,0 +19900111,600,151,1,0 +19900111,600,159,1,0 +19900111,600,164,1,0 +19900111,600,165,1,0 +19900111,600,166,1,0 +19900111,600,167,1,0 +19900111,600,168,1,0 +19900111,600,186,1,0 +19900111,600,187,1,0 +19900111,600,188,1,0 +19900111,600,229,1,0 +19900111,600,230,1,0 +19900111,600,231,1,0 +19900111,600,232,1,0 +19900111,600,243,1,0 +19900111,600,244,1,0 +19900111,600,245,1,0 +19900111,600,228246,1,0 +19900111,600,228247,1,0 +19900111,900,8,1,0 +19900111,900,31,1,0 +19900111,900,32,1,0 +19900111,900,33,1,0 +19900111,900,34,1,0 +19900111,900,35,111,7 +19900111,900,36,111,28 +19900111,900,37,111,100 +19900111,900,38,111,289 +19900111,900,39,111,7 +19900111,900,40,111,28 +19900111,900,41,111,100 +19900111,900,42,111,289 +19900111,900,44,1,0 +19900111,900,45,1,0 +19900111,900,49,1,0 +19900111,900,50,1,0 +19900111,900,57,1,0 +19900111,900,58,1,0 +19900111,900,123,1,0 +19900111,900,139,111,7 +19900111,900,141,1,0 +19900111,900,142,1,0 +19900111,900,143,1,0 +19900111,900,144,1,0 +19900111,900,145,1,0 +19900111,900,146,1,0 +19900111,900,147,1,0 +19900111,900,148,1,0 +19900111,900,169,1,0 +19900111,900,170,111,28 +19900111,900,172,1,0 +19900111,900,175,1,0 +19900111,900,176,1,0 +19900111,900,177,1,0 +19900111,900,178,1,0 +19900111,900,179,1,0 +19900111,900,180,1,0 +19900111,900,181,1,0 +19900111,900,182,1,0 +19900111,900,183,111,100 +19900111,900,189,1,0 +19900111,900,195,1,0 +19900111,900,196,1,0 +19900111,900,197,1,0 +19900111,900,198,1,0 +19900111,900,201,1,0 +19900111,900,202,1,0 +19900111,900,205,1,0 +19900111,900,208,1,0 +19900111,900,209,1,0 +19900111,900,210,1,0 +19900111,900,211,1,0 +19900111,900,212,1,0 +19900111,900,213,1,0 +19900111,900,228,1,0 +19900111,900,235,1,0 +19900111,900,236,111,289 +19900111,900,238,1,0 +19900111,900,59,1,0 +19900111,900,78,1,0 +19900111,900,79,1,0 +19900111,900,136,1,0 +19900111,900,137,1,0 +19900111,900,151,1,0 +19900111,900,159,1,0 +19900111,900,164,1,0 +19900111,900,165,1,0 +19900111,900,166,1,0 +19900111,900,167,1,0 +19900111,900,168,1,0 +19900111,900,186,1,0 +19900111,900,187,1,0 +19900111,900,188,1,0 +19900111,900,229,1,0 +19900111,900,230,1,0 +19900111,900,231,1,0 +19900111,900,232,1,0 +19900111,900,243,1,0 +19900111,900,244,1,0 +19900111,900,245,1,0 +19900111,900,228246,1,0 +19900111,900,228247,1,0 +19900111,1200,133,100,1000 +19900111,1200,133,100,975 +19900111,1200,133,100,950 +19900111,1200,133,100,925 +19900111,1200,133,100,900 +19900111,1200,133,100,875 +19900111,1200,133,100,850 +19900111,1200,133,100,825 +19900111,1200,133,100,800 +19900111,1200,133,100,775 +19900111,1200,133,100,750 +19900111,1200,133,100,740 +19900111,1200,133,100,700 +19900111,1200,133,100,650 +19900111,1200,133,100,620 +19900111,1200,133,100,600 +19900111,1200,133,100,550 +19900111,1200,133,100,500 +19900111,1200,133,100,450 +19900111,1200,133,100,400 +19900111,1200,133,100,375 +19900111,1200,133,100,350 +19900111,1200,133,100,300 +19900111,1200,133,100,250 +19900111,1200,133,100,245 +19900111,1200,133,100,225 +19900111,1200,133,100,200 +19900111,1200,133,100,175 +19900111,1200,133,100,150 +19900111,1200,133,100,125 +19900111,1200,133,100,100 +19900111,1200,133,100,70 +19900111,1200,133,100,50 +19900111,1200,133,100,30 +19900111,1200,133,100,20 +19900111,1200,133,100,10 +19900111,1200,133,100,9 +19900111,1200,133,100,7 +19900111,1200,133,100,5 +19900111,1200,133,100,3 +19900111,1200,133,100,2 +19900111,1200,133,100,1 +19900111,1200,133,210,40 +19900111,1200,3,117,2000 +19900111,1200,133,109,1 +19900111,1200,133,109,2 +19900111,1200,133,109,3 +19900111,1200,133,109,4 +19900111,1200,133,109,5 +19900111,1200,133,109,6 +19900111,1200,133,109,7 +19900111,1200,133,109,8 +19900111,1200,133,109,9 +19900111,1200,133,109,10 +19900111,1200,246,109,1 +19900111,1200,246,109,2 +19900111,1200,246,109,3 +19900111,1200,246,109,4 +19900111,1200,246,109,5 +19900111,1200,246,109,6 +19900111,1200,246,109,7 +19900111,1200,246,109,8 +19900111,1200,246,109,9 +19900111,1200,246,109,10 +19900111,1200,247,109,1 +19900111,1200,247,109,2 +19900111,1200,247,109,3 +19900111,1200,247,109,4 +19900111,1200,247,109,5 +19900111,1200,247,109,6 +19900111,1200,247,109,7 +19900111,1200,247,109,8 +19900111,1200,247,109,9 +19900111,1200,247,109,10 +19900111,1200,248,109,1 +19900111,1200,248,109,2 +19900111,1200,248,109,3 +19900111,1200,248,109,4 +19900111,1200,248,109,5 +19900111,1200,248,109,6 +19900111,1200,248,109,7 +19900111,1200,248,109,8 +19900111,1200,248,109,9 +19900111,1200,248,109,10 +19900111,1200,8,1,0 +19900111,1200,31,1,0 +19900111,1200,32,1,0 +19900111,1200,33,1,0 +19900111,1200,34,1,0 +19900111,1200,35,111,7 +19900111,1200,36,111,28 +19900111,1200,37,111,100 +19900111,1200,38,111,289 +19900111,1200,39,111,7 +19900111,1200,40,111,28 +19900111,1200,41,111,100 +19900111,1200,42,111,289 +19900111,1200,44,1,0 +19900111,1200,45,1,0 +19900111,1200,49,1,0 +19900111,1200,50,1,0 +19900111,1200,57,1,0 +19900111,1200,58,1,0 +19900111,1200,123,1,0 +19900111,1200,139,111,7 +19900111,1200,141,1,0 +19900111,1200,142,1,0 +19900111,1200,143,1,0 +19900111,1200,144,1,0 +19900111,1200,145,1,0 +19900111,1200,146,1,0 +19900111,1200,147,1,0 +19900111,1200,148,1,0 +19900111,1200,169,1,0 +19900111,1200,170,111,28 +19900111,1200,172,1,0 +19900111,1200,175,1,0 +19900111,1200,176,1,0 +19900111,1200,177,1,0 +19900111,1200,178,1,0 +19900111,1200,179,1,0 +19900111,1200,180,1,0 +19900111,1200,181,1,0 +19900111,1200,182,1,0 +19900111,1200,183,111,100 +19900111,1200,189,1,0 +19900111,1200,195,1,0 +19900111,1200,196,1,0 +19900111,1200,197,1,0 +19900111,1200,198,1,0 +19900111,1200,201,1,0 +19900111,1200,202,1,0 +19900111,1200,205,1,0 +19900111,1200,208,1,0 +19900111,1200,209,1,0 +19900111,1200,210,1,0 +19900111,1200,211,1,0 +19900111,1200,212,1,0 +19900111,1200,213,1,0 +19900111,1200,228,1,0 +19900111,1200,235,1,0 +19900111,1200,236,111,289 +19900111,1200,238,1,0 +19900111,1200,59,1,0 +19900111,1200,78,1,0 +19900111,1200,79,1,0 +19900111,1200,136,1,0 +19900111,1200,137,1,0 +19900111,1200,151,1,0 +19900111,1200,159,1,0 +19900111,1200,164,1,0 +19900111,1200,165,1,0 +19900111,1200,166,1,0 +19900111,1200,167,1,0 +19900111,1200,168,1,0 +19900111,1200,186,1,0 +19900111,1200,187,1,0 +19900111,1200,188,1,0 +19900111,1200,229,1,0 +19900111,1200,230,1,0 +19900111,1200,231,1,0 +19900111,1200,232,1,0 +19900111,1200,243,1,0 +19900111,1200,244,1,0 +19900111,1200,245,1,0 +19900111,1200,228246,1,0 +19900111,1200,228247,1,0 +19900111,1500,8,1,0 +19900111,1500,31,1,0 +19900111,1500,32,1,0 +19900111,1500,33,1,0 +19900111,1500,34,1,0 +19900111,1500,35,111,7 +19900111,1500,36,111,28 +19900111,1500,37,111,100 +19900111,1500,38,111,289 +19900111,1500,39,111,7 +19900111,1500,40,111,28 +19900111,1500,41,111,100 +19900111,1500,42,111,289 +19900111,1500,44,1,0 +19900111,1500,45,1,0 +19900111,1500,49,1,0 +19900111,1500,50,1,0 +19900111,1500,57,1,0 +19900111,1500,58,1,0 +19900111,1500,123,1,0 +19900111,1500,139,111,7 +19900111,1500,141,1,0 +19900111,1500,142,1,0 +19900111,1500,143,1,0 +19900111,1500,144,1,0 +19900111,1500,145,1,0 +19900111,1500,146,1,0 +19900111,1500,147,1,0 +19900111,1500,148,1,0 +19900111,1500,169,1,0 +19900111,1500,170,111,28 +19900111,1500,172,1,0 +19900111,1500,175,1,0 +19900111,1500,176,1,0 +19900111,1500,177,1,0 +19900111,1500,178,1,0 +19900111,1500,179,1,0 +19900111,1500,180,1,0 +19900111,1500,181,1,0 +19900111,1500,182,1,0 +19900111,1500,183,111,100 +19900111,1500,189,1,0 +19900111,1500,195,1,0 +19900111,1500,196,1,0 +19900111,1500,197,1,0 +19900111,1500,198,1,0 +19900111,1500,201,1,0 +19900111,1500,202,1,0 +19900111,1500,205,1,0 +19900111,1500,208,1,0 +19900111,1500,209,1,0 +19900111,1500,210,1,0 +19900111,1500,211,1,0 +19900111,1500,212,1,0 +19900111,1500,213,1,0 +19900111,1500,228,1,0 +19900111,1500,235,1,0 +19900111,1500,236,111,289 +19900111,1500,238,1,0 +19900111,1500,59,1,0 +19900111,1500,78,1,0 +19900111,1500,79,1,0 +19900111,1500,136,1,0 +19900111,1500,137,1,0 +19900111,1500,151,1,0 +19900111,1500,159,1,0 +19900111,1500,164,1,0 +19900111,1500,165,1,0 +19900111,1500,166,1,0 +19900111,1500,167,1,0 +19900111,1500,168,1,0 +19900111,1500,186,1,0 +19900111,1500,187,1,0 +19900111,1500,188,1,0 +19900111,1500,229,1,0 +19900111,1500,230,1,0 +19900111,1500,231,1,0 +19900111,1500,232,1,0 +19900111,1500,243,1,0 +19900111,1500,244,1,0 +19900111,1500,245,1,0 +19900111,1500,228246,1,0 +19900111,1500,228247,1,0 +19900111,1800,133,100,1000 +19900111,1800,133,100,975 +19900111,1800,133,100,950 +19900111,1800,133,100,925 +19900111,1800,133,100,900 +19900111,1800,133,100,875 +19900111,1800,133,100,850 +19900111,1800,133,100,825 +19900111,1800,133,100,800 +19900111,1800,133,100,775 +19900111,1800,133,100,750 +19900111,1800,133,100,740 +19900111,1800,133,100,700 +19900111,1800,133,100,650 +19900111,1800,133,100,620 +19900111,1800,133,100,600 +19900111,1800,133,100,550 +19900111,1800,133,100,500 +19900111,1800,133,100,450 +19900111,1800,133,100,400 +19900111,1800,133,100,375 +19900111,1800,133,100,350 +19900111,1800,133,100,300 +19900111,1800,133,100,250 +19900111,1800,133,100,245 +19900111,1800,133,100,225 +19900111,1800,133,100,200 +19900111,1800,133,100,175 +19900111,1800,133,100,150 +19900111,1800,133,100,125 +19900111,1800,133,100,100 +19900111,1800,133,100,70 +19900111,1800,133,100,50 +19900111,1800,133,100,30 +19900111,1800,133,100,20 +19900111,1800,133,100,10 +19900111,1800,133,100,9 +19900111,1800,133,100,7 +19900111,1800,133,100,5 +19900111,1800,133,100,3 +19900111,1800,133,100,2 +19900111,1800,133,100,1 +19900111,1800,133,210,40 +19900111,1800,3,117,2000 +19900111,1800,133,109,1 +19900111,1800,133,109,2 +19900111,1800,133,109,3 +19900111,1800,133,109,4 +19900111,1800,133,109,5 +19900111,1800,133,109,6 +19900111,1800,133,109,7 +19900111,1800,133,109,8 +19900111,1800,133,109,9 +19900111,1800,133,109,10 +19900111,1800,246,109,1 +19900111,1800,246,109,2 +19900111,1800,246,109,3 +19900111,1800,246,109,4 +19900111,1800,246,109,5 +19900111,1800,246,109,6 +19900111,1800,246,109,7 +19900111,1800,246,109,8 +19900111,1800,246,109,9 +19900111,1800,246,109,10 +19900111,1800,247,109,1 +19900111,1800,247,109,2 +19900111,1800,247,109,3 +19900111,1800,247,109,4 +19900111,1800,247,109,5 +19900111,1800,247,109,6 +19900111,1800,247,109,7 +19900111,1800,247,109,8 +19900111,1800,247,109,9 +19900111,1800,247,109,10 +19900111,1800,248,109,1 +19900111,1800,248,109,2 +19900111,1800,248,109,3 +19900111,1800,248,109,4 +19900111,1800,248,109,5 +19900111,1800,248,109,6 +19900111,1800,248,109,7 +19900111,1800,248,109,8 +19900111,1800,248,109,9 +19900111,1800,248,109,10 +19900111,1800,8,1,0 +19900111,1800,31,1,0 +19900111,1800,32,1,0 +19900111,1800,33,1,0 +19900111,1800,34,1,0 +19900111,1800,35,111,7 +19900111,1800,36,111,28 +19900111,1800,37,111,100 +19900111,1800,38,111,289 +19900111,1800,39,111,7 +19900111,1800,40,111,28 +19900111,1800,41,111,100 +19900111,1800,42,111,289 +19900111,1800,44,1,0 +19900111,1800,45,1,0 +19900111,1800,49,1,0 +19900111,1800,50,1,0 +19900111,1800,57,1,0 +19900111,1800,58,1,0 +19900111,1800,123,1,0 +19900111,1800,139,111,7 +19900111,1800,141,1,0 +19900111,1800,142,1,0 +19900111,1800,143,1,0 +19900111,1800,144,1,0 +19900111,1800,145,1,0 +19900111,1800,146,1,0 +19900111,1800,147,1,0 +19900111,1800,148,1,0 +19900111,1800,169,1,0 +19900111,1800,170,111,28 +19900111,1800,172,1,0 +19900111,1800,175,1,0 +19900111,1800,176,1,0 +19900111,1800,177,1,0 +19900111,1800,178,1,0 +19900111,1800,179,1,0 +19900111,1800,180,1,0 +19900111,1800,181,1,0 +19900111,1800,182,1,0 +19900111,1800,183,111,100 +19900111,1800,189,1,0 +19900111,1800,195,1,0 +19900111,1800,196,1,0 +19900111,1800,197,1,0 +19900111,1800,198,1,0 +19900111,1800,201,1,0 +19900111,1800,202,1,0 +19900111,1800,205,1,0 +19900111,1800,208,1,0 +19900111,1800,209,1,0 +19900111,1800,210,1,0 +19900111,1800,211,1,0 +19900111,1800,212,1,0 +19900111,1800,213,1,0 +19900111,1800,228,1,0 +19900111,1800,235,1,0 +19900111,1800,236,111,289 +19900111,1800,238,1,0 +19900111,1800,59,1,0 +19900111,1800,78,1,0 +19900111,1800,79,1,0 +19900111,1800,136,1,0 +19900111,1800,137,1,0 +19900111,1800,151,1,0 +19900111,1800,159,1,0 +19900111,1800,164,1,0 +19900111,1800,165,1,0 +19900111,1800,166,1,0 +19900111,1800,167,1,0 +19900111,1800,168,1,0 +19900111,1800,186,1,0 +19900111,1800,187,1,0 +19900111,1800,188,1,0 +19900111,1800,229,1,0 +19900111,1800,230,1,0 +19900111,1800,231,1,0 +19900111,1800,232,1,0 +19900111,1800,243,1,0 +19900111,1800,244,1,0 +19900111,1800,245,1,0 +19900111,1800,228246,1,0 +19900111,1800,228247,1,0 +19900111,2100,8,1,0 +19900111,2100,31,1,0 +19900111,2100,32,1,0 +19900111,2100,33,1,0 +19900111,2100,34,1,0 +19900111,2100,35,111,7 +19900111,2100,36,111,28 +19900111,2100,37,111,100 +19900111,2100,38,111,289 +19900111,2100,39,111,7 +19900111,2100,40,111,28 +19900111,2100,41,111,100 +19900111,2100,42,111,289 +19900111,2100,44,1,0 +19900111,2100,45,1,0 +19900111,2100,49,1,0 +19900111,2100,50,1,0 +19900111,2100,57,1,0 +19900111,2100,58,1,0 +19900111,2100,123,1,0 +19900111,2100,139,111,7 +19900111,2100,141,1,0 +19900111,2100,142,1,0 +19900111,2100,143,1,0 +19900111,2100,144,1,0 +19900111,2100,145,1,0 +19900111,2100,146,1,0 +19900111,2100,147,1,0 +19900111,2100,148,1,0 +19900111,2100,169,1,0 +19900111,2100,170,111,28 +19900111,2100,172,1,0 +19900111,2100,175,1,0 +19900111,2100,176,1,0 +19900111,2100,177,1,0 +19900111,2100,178,1,0 +19900111,2100,179,1,0 +19900111,2100,180,1,0 +19900111,2100,181,1,0 +19900111,2100,182,1,0 +19900111,2100,183,111,100 +19900111,2100,189,1,0 +19900111,2100,195,1,0 +19900111,2100,196,1,0 +19900111,2100,197,1,0 +19900111,2100,198,1,0 +19900111,2100,201,1,0 +19900111,2100,202,1,0 +19900111,2100,205,1,0 +19900111,2100,208,1,0 +19900111,2100,209,1,0 +19900111,2100,210,1,0 +19900111,2100,211,1,0 +19900111,2100,212,1,0 +19900111,2100,213,1,0 +19900111,2100,228,1,0 +19900111,2100,235,1,0 +19900111,2100,236,111,289 +19900111,2100,238,1,0 +19900111,2100,59,1,0 +19900111,2100,78,1,0 +19900111,2100,79,1,0 +19900111,2100,136,1,0 +19900111,2100,137,1,0 +19900111,2100,151,1,0 +19900111,2100,159,1,0 +19900111,2100,164,1,0 +19900111,2100,165,1,0 +19900111,2100,166,1,0 +19900111,2100,167,1,0 +19900111,2100,168,1,0 +19900111,2100,186,1,0 +19900111,2100,187,1,0 +19900111,2100,188,1,0 +19900111,2100,229,1,0 +19900111,2100,230,1,0 +19900111,2100,231,1,0 +19900111,2100,232,1,0 +19900111,2100,243,1,0 +19900111,2100,244,1,0 +19900111,2100,245,1,0 +19900111,2100,228246,1,0 +19900111,2100,228247,1,0 +19900112,0,133,100,1000 +19900112,0,133,100,975 +19900112,0,133,100,950 +19900112,0,133,100,925 +19900112,0,133,100,900 +19900112,0,133,100,875 +19900112,0,133,100,850 +19900112,0,133,100,825 +19900112,0,133,100,800 +19900112,0,133,100,775 +19900112,0,133,100,750 +19900112,0,133,100,740 +19900112,0,133,100,700 +19900112,0,133,100,650 +19900112,0,133,100,620 +19900112,0,133,100,600 +19900112,0,133,100,550 +19900112,0,133,100,500 +19900112,0,133,100,450 +19900112,0,133,100,400 +19900112,0,133,100,375 +19900112,0,133,100,350 +19900112,0,133,100,300 +19900112,0,133,100,250 +19900112,0,133,100,245 +19900112,0,133,100,225 +19900112,0,133,100,200 +19900112,0,133,100,175 +19900112,0,133,100,150 +19900112,0,133,100,125 +19900112,0,133,100,100 +19900112,0,133,100,70 +19900112,0,133,100,50 +19900112,0,133,100,30 +19900112,0,133,100,20 +19900112,0,133,100,10 +19900112,0,133,100,9 +19900112,0,133,100,7 +19900112,0,133,100,5 +19900112,0,133,100,3 +19900112,0,133,100,2 +19900112,0,133,100,1 +19900112,0,133,210,40 +19900112,0,3,117,2000 +19900112,0,133,109,1 +19900112,0,133,109,2 +19900112,0,133,109,3 +19900112,0,133,109,4 +19900112,0,133,109,5 +19900112,0,133,109,6 +19900112,0,133,109,7 +19900112,0,133,109,8 +19900112,0,133,109,9 +19900112,0,133,109,10 +19900112,0,246,109,1 +19900112,0,246,109,2 +19900112,0,246,109,3 +19900112,0,246,109,4 +19900112,0,246,109,5 +19900112,0,246,109,6 +19900112,0,246,109,7 +19900112,0,246,109,8 +19900112,0,246,109,9 +19900112,0,246,109,10 +19900112,0,247,109,1 +19900112,0,247,109,2 +19900112,0,247,109,3 +19900112,0,247,109,4 +19900112,0,247,109,5 +19900112,0,247,109,6 +19900112,0,247,109,7 +19900112,0,247,109,8 +19900112,0,247,109,9 +19900112,0,247,109,10 +19900112,0,248,109,1 +19900112,0,248,109,2 +19900112,0,248,109,3 +19900112,0,248,109,4 +19900112,0,248,109,5 +19900112,0,248,109,6 +19900112,0,248,109,7 +19900112,0,248,109,8 +19900112,0,248,109,9 +19900112,0,248,109,10 +19900112,0,8,1,0 +19900112,0,31,1,0 +19900112,0,32,1,0 +19900112,0,33,1,0 +19900112,0,34,1,0 +19900112,0,35,111,7 +19900112,0,36,111,28 +19900112,0,37,111,100 +19900112,0,38,111,289 +19900112,0,39,111,7 +19900112,0,40,111,28 +19900112,0,41,111,100 +19900112,0,42,111,289 +19900112,0,44,1,0 +19900112,0,45,1,0 +19900112,0,49,1,0 +19900112,0,50,1,0 +19900112,0,57,1,0 +19900112,0,58,1,0 +19900112,0,123,1,0 +19900112,0,139,111,7 +19900112,0,141,1,0 +19900112,0,142,1,0 +19900112,0,143,1,0 +19900112,0,144,1,0 +19900112,0,145,1,0 +19900112,0,146,1,0 +19900112,0,147,1,0 +19900112,0,148,1,0 +19900112,0,169,1,0 +19900112,0,170,111,28 +19900112,0,172,1,0 +19900112,0,175,1,0 +19900112,0,176,1,0 +19900112,0,177,1,0 +19900112,0,178,1,0 +19900112,0,179,1,0 +19900112,0,180,1,0 +19900112,0,181,1,0 +19900112,0,182,1,0 +19900112,0,183,111,100 +19900112,0,189,1,0 +19900112,0,195,1,0 +19900112,0,196,1,0 +19900112,0,197,1,0 +19900112,0,198,1,0 +19900112,0,201,1,0 +19900112,0,202,1,0 +19900112,0,205,1,0 +19900112,0,208,1,0 +19900112,0,209,1,0 +19900112,0,210,1,0 +19900112,0,211,1,0 +19900112,0,212,1,0 +19900112,0,213,1,0 +19900112,0,228,1,0 +19900112,0,235,1,0 +19900112,0,236,111,289 +19900112,0,238,1,0 +19900112,0,59,1,0 +19900112,0,78,1,0 +19900112,0,79,1,0 +19900112,0,136,1,0 +19900112,0,137,1,0 +19900112,0,151,1,0 +19900112,0,159,1,0 +19900112,0,164,1,0 +19900112,0,165,1,0 +19900112,0,166,1,0 +19900112,0,167,1,0 +19900112,0,168,1,0 +19900112,0,186,1,0 +19900112,0,187,1,0 +19900112,0,188,1,0 +19900112,0,229,1,0 +19900112,0,230,1,0 +19900112,0,231,1,0 +19900112,0,232,1,0 +19900112,0,243,1,0 +19900112,0,244,1,0 +19900112,0,245,1,0 +19900112,0,228246,1,0 +19900112,0,228247,1,0 +19900112,300,8,1,0 +19900112,300,31,1,0 +19900112,300,32,1,0 +19900112,300,33,1,0 +19900112,300,34,1,0 +19900112,300,35,111,7 +19900112,300,36,111,28 +19900112,300,37,111,100 +19900112,300,38,111,289 +19900112,300,39,111,7 +19900112,300,40,111,28 +19900112,300,41,111,100 +19900112,300,42,111,289 +19900112,300,44,1,0 +19900112,300,45,1,0 +19900112,300,49,1,0 +19900112,300,50,1,0 +19900112,300,57,1,0 +19900112,300,58,1,0 +19900112,300,123,1,0 +19900112,300,139,111,7 +19900112,300,141,1,0 +19900112,300,142,1,0 +19900112,300,143,1,0 +19900112,300,144,1,0 +19900112,300,145,1,0 +19900112,300,146,1,0 +19900112,300,147,1,0 +19900112,300,148,1,0 +19900112,300,169,1,0 +19900112,300,170,111,28 +19900112,300,172,1,0 +19900112,300,175,1,0 +19900112,300,176,1,0 +19900112,300,177,1,0 +19900112,300,178,1,0 +19900112,300,179,1,0 +19900112,300,180,1,0 +19900112,300,181,1,0 +19900112,300,182,1,0 +19900112,300,183,111,100 +19900112,300,189,1,0 +19900112,300,195,1,0 +19900112,300,196,1,0 +19900112,300,197,1,0 +19900112,300,198,1,0 +19900112,300,201,1,0 +19900112,300,202,1,0 +19900112,300,205,1,0 +19900112,300,208,1,0 +19900112,300,209,1,0 +19900112,300,210,1,0 +19900112,300,211,1,0 +19900112,300,212,1,0 +19900112,300,213,1,0 +19900112,300,228,1,0 +19900112,300,235,1,0 +19900112,300,236,111,289 +19900112,300,238,1,0 +19900112,300,59,1,0 +19900112,300,78,1,0 +19900112,300,79,1,0 +19900112,300,136,1,0 +19900112,300,137,1,0 +19900112,300,151,1,0 +19900112,300,159,1,0 +19900112,300,164,1,0 +19900112,300,165,1,0 +19900112,300,166,1,0 +19900112,300,167,1,0 +19900112,300,168,1,0 +19900112,300,186,1,0 +19900112,300,187,1,0 +19900112,300,188,1,0 +19900112,300,229,1,0 +19900112,300,230,1,0 +19900112,300,231,1,0 +19900112,300,232,1,0 +19900112,300,243,1,0 +19900112,300,244,1,0 +19900112,300,245,1,0 +19900112,300,228246,1,0 +19900112,300,228247,1,0 +19900112,600,133,100,1000 +19900112,600,133,100,975 +19900112,600,133,100,950 +19900112,600,133,100,925 +19900112,600,133,100,900 +19900112,600,133,100,875 +19900112,600,133,100,850 +19900112,600,133,100,825 +19900112,600,133,100,800 +19900112,600,133,100,775 +19900112,600,133,100,750 +19900112,600,133,100,740 +19900112,600,133,100,700 +19900112,600,133,100,650 +19900112,600,133,100,620 +19900112,600,133,100,600 +19900112,600,133,100,550 +19900112,600,133,100,500 +19900112,600,133,100,450 +19900112,600,133,100,400 +19900112,600,133,100,375 +19900112,600,133,100,350 +19900112,600,133,100,300 +19900112,600,133,100,250 +19900112,600,133,100,245 +19900112,600,133,100,225 +19900112,600,133,100,200 +19900112,600,133,100,175 +19900112,600,133,100,150 +19900112,600,133,100,125 +19900112,600,133,100,100 +19900112,600,133,100,70 +19900112,600,133,100,50 +19900112,600,133,100,30 +19900112,600,133,100,20 +19900112,600,133,100,10 +19900112,600,133,100,9 +19900112,600,133,100,7 +19900112,600,133,100,5 +19900112,600,133,100,3 +19900112,600,133,100,2 +19900112,600,133,100,1 +19900112,600,133,210,40 +19900112,600,3,117,2000 +19900112,600,133,109,1 +19900112,600,133,109,2 +19900112,600,133,109,3 +19900112,600,133,109,4 +19900112,600,133,109,5 +19900112,600,133,109,6 +19900112,600,133,109,7 +19900112,600,133,109,8 +19900112,600,133,109,9 +19900112,600,133,109,10 +19900112,600,246,109,1 +19900112,600,246,109,2 +19900112,600,246,109,3 +19900112,600,246,109,4 +19900112,600,246,109,5 +19900112,600,246,109,6 +19900112,600,246,109,7 +19900112,600,246,109,8 +19900112,600,246,109,9 +19900112,600,246,109,10 +19900112,600,247,109,1 +19900112,600,247,109,2 +19900112,600,247,109,3 +19900112,600,247,109,4 +19900112,600,247,109,5 +19900112,600,247,109,6 +19900112,600,247,109,7 +19900112,600,247,109,8 +19900112,600,247,109,9 +19900112,600,247,109,10 +19900112,600,248,109,1 +19900112,600,248,109,2 +19900112,600,248,109,3 +19900112,600,248,109,4 +19900112,600,248,109,5 +19900112,600,248,109,6 +19900112,600,248,109,7 +19900112,600,248,109,8 +19900112,600,248,109,9 +19900112,600,248,109,10 +19900112,600,8,1,0 +19900112,600,31,1,0 +19900112,600,32,1,0 +19900112,600,33,1,0 +19900112,600,34,1,0 +19900112,600,35,111,7 +19900112,600,36,111,28 +19900112,600,37,111,100 +19900112,600,38,111,289 +19900112,600,39,111,7 +19900112,600,40,111,28 +19900112,600,41,111,100 +19900112,600,42,111,289 +19900112,600,44,1,0 +19900112,600,45,1,0 +19900112,600,49,1,0 +19900112,600,50,1,0 +19900112,600,57,1,0 +19900112,600,58,1,0 +19900112,600,123,1,0 +19900112,600,139,111,7 +19900112,600,141,1,0 +19900112,600,142,1,0 +19900112,600,143,1,0 +19900112,600,144,1,0 +19900112,600,145,1,0 +19900112,600,146,1,0 +19900112,600,147,1,0 +19900112,600,148,1,0 +19900112,600,169,1,0 +19900112,600,170,111,28 +19900112,600,172,1,0 +19900112,600,175,1,0 +19900112,600,176,1,0 +19900112,600,177,1,0 +19900112,600,178,1,0 +19900112,600,179,1,0 +19900112,600,180,1,0 +19900112,600,181,1,0 +19900112,600,182,1,0 +19900112,600,183,111,100 +19900112,600,189,1,0 +19900112,600,195,1,0 +19900112,600,196,1,0 +19900112,600,197,1,0 +19900112,600,198,1,0 +19900112,600,201,1,0 +19900112,600,202,1,0 +19900112,600,205,1,0 +19900112,600,208,1,0 +19900112,600,209,1,0 +19900112,600,210,1,0 +19900112,600,211,1,0 +19900112,600,212,1,0 +19900112,600,213,1,0 +19900112,600,228,1,0 +19900112,600,235,1,0 +19900112,600,236,111,289 +19900112,600,238,1,0 +19900112,600,59,1,0 +19900112,600,78,1,0 +19900112,600,79,1,0 +19900112,600,136,1,0 +19900112,600,137,1,0 +19900112,600,151,1,0 +19900112,600,159,1,0 +19900112,600,164,1,0 +19900112,600,165,1,0 +19900112,600,166,1,0 +19900112,600,167,1,0 +19900112,600,168,1,0 +19900112,600,186,1,0 +19900112,600,187,1,0 +19900112,600,188,1,0 +19900112,600,229,1,0 +19900112,600,230,1,0 +19900112,600,231,1,0 +19900112,600,232,1,0 +19900112,600,243,1,0 +19900112,600,244,1,0 +19900112,600,245,1,0 +19900112,600,228246,1,0 +19900112,600,228247,1,0 +19900112,900,8,1,0 +19900112,900,31,1,0 +19900112,900,32,1,0 +19900112,900,33,1,0 +19900112,900,34,1,0 +19900112,900,35,111,7 +19900112,900,36,111,28 +19900112,900,37,111,100 +19900112,900,38,111,289 +19900112,900,39,111,7 +19900112,900,40,111,28 +19900112,900,41,111,100 +19900112,900,42,111,289 +19900112,900,44,1,0 +19900112,900,45,1,0 +19900112,900,49,1,0 +19900112,900,50,1,0 +19900112,900,57,1,0 +19900112,900,58,1,0 +19900112,900,123,1,0 +19900112,900,139,111,7 +19900112,900,141,1,0 +19900112,900,142,1,0 +19900112,900,143,1,0 +19900112,900,144,1,0 +19900112,900,145,1,0 +19900112,900,146,1,0 +19900112,900,147,1,0 +19900112,900,148,1,0 +19900112,900,169,1,0 +19900112,900,170,111,28 +19900112,900,172,1,0 +19900112,900,175,1,0 +19900112,900,176,1,0 +19900112,900,177,1,0 +19900112,900,178,1,0 +19900112,900,179,1,0 +19900112,900,180,1,0 +19900112,900,181,1,0 +19900112,900,182,1,0 +19900112,900,183,111,100 +19900112,900,189,1,0 +19900112,900,195,1,0 +19900112,900,196,1,0 +19900112,900,197,1,0 +19900112,900,198,1,0 +19900112,900,201,1,0 +19900112,900,202,1,0 +19900112,900,205,1,0 +19900112,900,208,1,0 +19900112,900,209,1,0 +19900112,900,210,1,0 +19900112,900,211,1,0 +19900112,900,212,1,0 +19900112,900,213,1,0 +19900112,900,228,1,0 +19900112,900,235,1,0 +19900112,900,236,111,289 +19900112,900,238,1,0 +19900112,900,59,1,0 +19900112,900,78,1,0 +19900112,900,79,1,0 +19900112,900,136,1,0 +19900112,900,137,1,0 +19900112,900,151,1,0 +19900112,900,159,1,0 +19900112,900,164,1,0 +19900112,900,165,1,0 +19900112,900,166,1,0 +19900112,900,167,1,0 +19900112,900,168,1,0 +19900112,900,186,1,0 +19900112,900,187,1,0 +19900112,900,188,1,0 +19900112,900,229,1,0 +19900112,900,230,1,0 +19900112,900,231,1,0 +19900112,900,232,1,0 +19900112,900,243,1,0 +19900112,900,244,1,0 +19900112,900,245,1,0 +19900112,900,228246,1,0 +19900112,900,228247,1,0 +19900112,1200,133,100,1000 +19900112,1200,133,100,975 +19900112,1200,133,100,950 +19900112,1200,133,100,925 +19900112,1200,133,100,900 +19900112,1200,133,100,875 +19900112,1200,133,100,850 +19900112,1200,133,100,825 +19900112,1200,133,100,800 +19900112,1200,133,100,775 +19900112,1200,133,100,750 +19900112,1200,133,100,740 +19900112,1200,133,100,700 +19900112,1200,133,100,650 +19900112,1200,133,100,620 +19900112,1200,133,100,600 +19900112,1200,133,100,550 +19900112,1200,133,100,500 +19900112,1200,133,100,450 +19900112,1200,133,100,400 +19900112,1200,133,100,375 +19900112,1200,133,100,350 +19900112,1200,133,100,300 +19900112,1200,133,100,250 +19900112,1200,133,100,245 +19900112,1200,133,100,225 +19900112,1200,133,100,200 +19900112,1200,133,100,175 +19900112,1200,133,100,150 +19900112,1200,133,100,125 +19900112,1200,133,100,100 +19900112,1200,133,100,70 +19900112,1200,133,100,50 +19900112,1200,133,100,30 +19900112,1200,133,100,20 +19900112,1200,133,100,10 +19900112,1200,133,100,9 +19900112,1200,133,100,7 +19900112,1200,133,100,5 +19900112,1200,133,100,3 +19900112,1200,133,100,2 +19900112,1200,133,100,1 +19900112,1200,133,210,40 +19900112,1200,3,117,2000 +19900112,1200,133,109,1 +19900112,1200,133,109,2 +19900112,1200,133,109,3 +19900112,1200,133,109,4 +19900112,1200,133,109,5 +19900112,1200,133,109,6 +19900112,1200,133,109,7 +19900112,1200,133,109,8 +19900112,1200,133,109,9 +19900112,1200,133,109,10 +19900112,1200,246,109,1 +19900112,1200,246,109,2 +19900112,1200,246,109,3 +19900112,1200,246,109,4 +19900112,1200,246,109,5 +19900112,1200,246,109,6 +19900112,1200,246,109,7 +19900112,1200,246,109,8 +19900112,1200,246,109,9 +19900112,1200,246,109,10 +19900112,1200,247,109,1 +19900112,1200,247,109,2 +19900112,1200,247,109,3 +19900112,1200,247,109,4 +19900112,1200,247,109,5 +19900112,1200,247,109,6 +19900112,1200,247,109,7 +19900112,1200,247,109,8 +19900112,1200,247,109,9 +19900112,1200,247,109,10 +19900112,1200,248,109,1 +19900112,1200,248,109,2 +19900112,1200,248,109,3 +19900112,1200,248,109,4 +19900112,1200,248,109,5 +19900112,1200,248,109,6 +19900112,1200,248,109,7 +19900112,1200,248,109,8 +19900112,1200,248,109,9 +19900112,1200,248,109,10 +19900112,1200,8,1,0 +19900112,1200,31,1,0 +19900112,1200,32,1,0 +19900112,1200,33,1,0 +19900112,1200,34,1,0 +19900112,1200,35,111,7 +19900112,1200,36,111,28 +19900112,1200,37,111,100 +19900112,1200,38,111,289 +19900112,1200,39,111,7 +19900112,1200,40,111,28 +19900112,1200,41,111,100 +19900112,1200,42,111,289 +19900112,1200,44,1,0 +19900112,1200,45,1,0 +19900112,1200,49,1,0 +19900112,1200,50,1,0 +19900112,1200,57,1,0 +19900112,1200,58,1,0 +19900112,1200,123,1,0 +19900112,1200,139,111,7 +19900112,1200,141,1,0 +19900112,1200,142,1,0 +19900112,1200,143,1,0 +19900112,1200,144,1,0 +19900112,1200,145,1,0 +19900112,1200,146,1,0 +19900112,1200,147,1,0 +19900112,1200,148,1,0 +19900112,1200,169,1,0 +19900112,1200,170,111,28 +19900112,1200,172,1,0 +19900112,1200,175,1,0 +19900112,1200,176,1,0 +19900112,1200,177,1,0 +19900112,1200,178,1,0 +19900112,1200,179,1,0 +19900112,1200,180,1,0 +19900112,1200,181,1,0 +19900112,1200,182,1,0 +19900112,1200,183,111,100 +19900112,1200,189,1,0 +19900112,1200,195,1,0 +19900112,1200,196,1,0 +19900112,1200,197,1,0 +19900112,1200,198,1,0 +19900112,1200,201,1,0 +19900112,1200,202,1,0 +19900112,1200,205,1,0 +19900112,1200,208,1,0 +19900112,1200,209,1,0 +19900112,1200,210,1,0 +19900112,1200,211,1,0 +19900112,1200,212,1,0 +19900112,1200,213,1,0 +19900112,1200,228,1,0 +19900112,1200,235,1,0 +19900112,1200,236,111,289 +19900112,1200,238,1,0 +19900112,1200,59,1,0 +19900112,1200,78,1,0 +19900112,1200,79,1,0 +19900112,1200,136,1,0 +19900112,1200,137,1,0 +19900112,1200,151,1,0 +19900112,1200,159,1,0 +19900112,1200,164,1,0 +19900112,1200,165,1,0 +19900112,1200,166,1,0 +19900112,1200,167,1,0 +19900112,1200,168,1,0 +19900112,1200,186,1,0 +19900112,1200,187,1,0 +19900112,1200,188,1,0 +19900112,1200,229,1,0 +19900112,1200,230,1,0 +19900112,1200,231,1,0 +19900112,1200,232,1,0 +19900112,1200,243,1,0 +19900112,1200,244,1,0 +19900112,1200,245,1,0 +19900112,1200,228246,1,0 +19900112,1200,228247,1,0 +19900112,1500,8,1,0 +19900112,1500,31,1,0 +19900112,1500,32,1,0 +19900112,1500,33,1,0 +19900112,1500,34,1,0 +19900112,1500,35,111,7 +19900112,1500,36,111,28 +19900112,1500,37,111,100 +19900112,1500,38,111,289 +19900112,1500,39,111,7 +19900112,1500,40,111,28 +19900112,1500,41,111,100 +19900112,1500,42,111,289 +19900112,1500,44,1,0 +19900112,1500,45,1,0 +19900112,1500,49,1,0 +19900112,1500,50,1,0 +19900112,1500,57,1,0 +19900112,1500,58,1,0 +19900112,1500,123,1,0 +19900112,1500,139,111,7 +19900112,1500,141,1,0 +19900112,1500,142,1,0 +19900112,1500,143,1,0 +19900112,1500,144,1,0 +19900112,1500,145,1,0 +19900112,1500,146,1,0 +19900112,1500,147,1,0 +19900112,1500,148,1,0 +19900112,1500,169,1,0 +19900112,1500,170,111,28 +19900112,1500,172,1,0 +19900112,1500,175,1,0 +19900112,1500,176,1,0 +19900112,1500,177,1,0 +19900112,1500,178,1,0 +19900112,1500,179,1,0 +19900112,1500,180,1,0 +19900112,1500,181,1,0 +19900112,1500,182,1,0 +19900112,1500,183,111,100 +19900112,1500,189,1,0 +19900112,1500,195,1,0 +19900112,1500,196,1,0 +19900112,1500,197,1,0 +19900112,1500,198,1,0 +19900112,1500,201,1,0 +19900112,1500,202,1,0 +19900112,1500,205,1,0 +19900112,1500,208,1,0 +19900112,1500,209,1,0 +19900112,1500,210,1,0 +19900112,1500,211,1,0 +19900112,1500,212,1,0 +19900112,1500,213,1,0 +19900112,1500,228,1,0 +19900112,1500,235,1,0 +19900112,1500,236,111,289 +19900112,1500,238,1,0 +19900112,1500,59,1,0 +19900112,1500,78,1,0 +19900112,1500,79,1,0 +19900112,1500,136,1,0 +19900112,1500,137,1,0 +19900112,1500,151,1,0 +19900112,1500,159,1,0 +19900112,1500,164,1,0 +19900112,1500,165,1,0 +19900112,1500,166,1,0 +19900112,1500,167,1,0 +19900112,1500,168,1,0 +19900112,1500,186,1,0 +19900112,1500,187,1,0 +19900112,1500,188,1,0 +19900112,1500,229,1,0 +19900112,1500,230,1,0 +19900112,1500,231,1,0 +19900112,1500,232,1,0 +19900112,1500,243,1,0 +19900112,1500,244,1,0 +19900112,1500,245,1,0 +19900112,1500,228246,1,0 +19900112,1500,228247,1,0 +19900112,1800,133,100,1000 +19900112,1800,133,100,975 +19900112,1800,133,100,950 +19900112,1800,133,100,925 +19900112,1800,133,100,900 +19900112,1800,133,100,875 +19900112,1800,133,100,850 +19900112,1800,133,100,825 +19900112,1800,133,100,800 +19900112,1800,133,100,775 +19900112,1800,133,100,750 +19900112,1800,133,100,740 +19900112,1800,133,100,700 +19900112,1800,133,100,650 +19900112,1800,133,100,620 +19900112,1800,133,100,600 +19900112,1800,133,100,550 +19900112,1800,133,100,500 +19900112,1800,133,100,450 +19900112,1800,133,100,400 +19900112,1800,133,100,375 +19900112,1800,133,100,350 +19900112,1800,133,100,300 +19900112,1800,133,100,250 +19900112,1800,133,100,245 +19900112,1800,133,100,225 +19900112,1800,133,100,200 +19900112,1800,133,100,175 +19900112,1800,133,100,150 +19900112,1800,133,100,125 +19900112,1800,133,100,100 +19900112,1800,133,100,70 +19900112,1800,133,100,50 +19900112,1800,133,100,30 +19900112,1800,133,100,20 +19900112,1800,133,100,10 +19900112,1800,133,100,9 +19900112,1800,133,100,7 +19900112,1800,133,100,5 +19900112,1800,133,100,3 +19900112,1800,133,100,2 +19900112,1800,133,100,1 +19900112,1800,133,210,40 +19900112,1800,3,117,2000 +19900112,1800,133,109,1 +19900112,1800,133,109,2 +19900112,1800,133,109,3 +19900112,1800,133,109,4 +19900112,1800,133,109,5 +19900112,1800,133,109,6 +19900112,1800,133,109,7 +19900112,1800,133,109,8 +19900112,1800,133,109,9 +19900112,1800,133,109,10 +19900112,1800,246,109,1 +19900112,1800,246,109,2 +19900112,1800,246,109,3 +19900112,1800,246,109,4 +19900112,1800,246,109,5 +19900112,1800,246,109,6 +19900112,1800,246,109,7 +19900112,1800,246,109,8 +19900112,1800,246,109,9 +19900112,1800,246,109,10 +19900112,1800,247,109,1 +19900112,1800,247,109,2 +19900112,1800,247,109,3 +19900112,1800,247,109,4 +19900112,1800,247,109,5 +19900112,1800,247,109,6 +19900112,1800,247,109,7 +19900112,1800,247,109,8 +19900112,1800,247,109,9 +19900112,1800,247,109,10 +19900112,1800,248,109,1 +19900112,1800,248,109,2 +19900112,1800,248,109,3 +19900112,1800,248,109,4 +19900112,1800,248,109,5 +19900112,1800,248,109,6 +19900112,1800,248,109,7 +19900112,1800,248,109,8 +19900112,1800,248,109,9 +19900112,1800,248,109,10 +19900112,1800,8,1,0 +19900112,1800,31,1,0 +19900112,1800,32,1,0 +19900112,1800,33,1,0 +19900112,1800,34,1,0 +19900112,1800,35,111,7 +19900112,1800,36,111,28 +19900112,1800,37,111,100 +19900112,1800,38,111,289 +19900112,1800,39,111,7 +19900112,1800,40,111,28 +19900112,1800,41,111,100 +19900112,1800,42,111,289 +19900112,1800,44,1,0 +19900112,1800,45,1,0 +19900112,1800,49,1,0 +19900112,1800,50,1,0 +19900112,1800,57,1,0 +19900112,1800,58,1,0 +19900112,1800,123,1,0 +19900112,1800,139,111,7 +19900112,1800,141,1,0 +19900112,1800,142,1,0 +19900112,1800,143,1,0 +19900112,1800,144,1,0 +19900112,1800,145,1,0 +19900112,1800,146,1,0 +19900112,1800,147,1,0 +19900112,1800,148,1,0 +19900112,1800,169,1,0 +19900112,1800,170,111,28 +19900112,1800,172,1,0 +19900112,1800,175,1,0 +19900112,1800,176,1,0 +19900112,1800,177,1,0 +19900112,1800,178,1,0 +19900112,1800,179,1,0 +19900112,1800,180,1,0 +19900112,1800,181,1,0 +19900112,1800,182,1,0 +19900112,1800,183,111,100 +19900112,1800,189,1,0 +19900112,1800,195,1,0 +19900112,1800,196,1,0 +19900112,1800,197,1,0 +19900112,1800,198,1,0 +19900112,1800,201,1,0 +19900112,1800,202,1,0 +19900112,1800,205,1,0 +19900112,1800,208,1,0 +19900112,1800,209,1,0 +19900112,1800,210,1,0 +19900112,1800,211,1,0 +19900112,1800,212,1,0 +19900112,1800,213,1,0 +19900112,1800,228,1,0 +19900112,1800,235,1,0 +19900112,1800,236,111,289 +19900112,1800,238,1,0 +19900112,1800,59,1,0 +19900112,1800,78,1,0 +19900112,1800,79,1,0 +19900112,1800,136,1,0 +19900112,1800,137,1,0 +19900112,1800,151,1,0 +19900112,1800,159,1,0 +19900112,1800,164,1,0 +19900112,1800,165,1,0 +19900112,1800,166,1,0 +19900112,1800,167,1,0 +19900112,1800,168,1,0 +19900112,1800,186,1,0 +19900112,1800,187,1,0 +19900112,1800,188,1,0 +19900112,1800,229,1,0 +19900112,1800,230,1,0 +19900112,1800,231,1,0 +19900112,1800,232,1,0 +19900112,1800,243,1,0 +19900112,1800,244,1,0 +19900112,1800,245,1,0 +19900112,1800,228246,1,0 +19900112,1800,228247,1,0 +19900112,2100,8,1,0 +19900112,2100,31,1,0 +19900112,2100,32,1,0 +19900112,2100,33,1,0 +19900112,2100,34,1,0 +19900112,2100,35,111,7 +19900112,2100,36,111,28 +19900112,2100,37,111,100 +19900112,2100,38,111,289 +19900112,2100,39,111,7 +19900112,2100,40,111,28 +19900112,2100,41,111,100 +19900112,2100,42,111,289 +19900112,2100,44,1,0 +19900112,2100,45,1,0 +19900112,2100,49,1,0 +19900112,2100,50,1,0 +19900112,2100,57,1,0 +19900112,2100,58,1,0 +19900112,2100,123,1,0 +19900112,2100,139,111,7 +19900112,2100,141,1,0 +19900112,2100,142,1,0 +19900112,2100,143,1,0 +19900112,2100,144,1,0 +19900112,2100,145,1,0 +19900112,2100,146,1,0 +19900112,2100,147,1,0 +19900112,2100,148,1,0 +19900112,2100,169,1,0 +19900112,2100,170,111,28 +19900112,2100,172,1,0 +19900112,2100,175,1,0 +19900112,2100,176,1,0 +19900112,2100,177,1,0 +19900112,2100,178,1,0 +19900112,2100,179,1,0 +19900112,2100,180,1,0 +19900112,2100,181,1,0 +19900112,2100,182,1,0 +19900112,2100,183,111,100 +19900112,2100,189,1,0 +19900112,2100,195,1,0 +19900112,2100,196,1,0 +19900112,2100,197,1,0 +19900112,2100,198,1,0 +19900112,2100,201,1,0 +19900112,2100,202,1,0 +19900112,2100,205,1,0 +19900112,2100,208,1,0 +19900112,2100,209,1,0 +19900112,2100,210,1,0 +19900112,2100,211,1,0 +19900112,2100,212,1,0 +19900112,2100,213,1,0 +19900112,2100,228,1,0 +19900112,2100,235,1,0 +19900112,2100,236,111,289 +19900112,2100,238,1,0 +19900112,2100,59,1,0 +19900112,2100,78,1,0 +19900112,2100,79,1,0 +19900112,2100,136,1,0 +19900112,2100,137,1,0 +19900112,2100,151,1,0 +19900112,2100,159,1,0 +19900112,2100,164,1,0 +19900112,2100,165,1,0 +19900112,2100,166,1,0 +19900112,2100,167,1,0 +19900112,2100,168,1,0 +19900112,2100,186,1,0 +19900112,2100,187,1,0 +19900112,2100,188,1,0 +19900112,2100,229,1,0 +19900112,2100,230,1,0 +19900112,2100,231,1,0 +19900112,2100,232,1,0 +19900112,2100,243,1,0 +19900112,2100,244,1,0 +19900112,2100,245,1,0 +19900112,2100,228246,1,0 +19900112,2100,228247,1,0 +19900113,0,133,100,1000 +19900113,0,133,100,975 +19900113,0,133,100,950 +19900113,0,133,100,925 +19900113,0,133,100,900 +19900113,0,133,100,875 +19900113,0,133,100,850 +19900113,0,133,100,825 +19900113,0,133,100,800 +19900113,0,133,100,775 +19900113,0,133,100,750 +19900113,0,133,100,740 +19900113,0,133,100,700 +19900113,0,133,100,650 +19900113,0,133,100,620 +19900113,0,133,100,600 +19900113,0,133,100,550 +19900113,0,133,100,500 +19900113,0,133,100,450 +19900113,0,133,100,400 +19900113,0,133,100,375 +19900113,0,133,100,350 +19900113,0,133,100,300 +19900113,0,133,100,250 +19900113,0,133,100,245 +19900113,0,133,100,225 +19900113,0,133,100,200 +19900113,0,133,100,175 +19900113,0,133,100,150 +19900113,0,133,100,125 +19900113,0,133,100,100 +19900113,0,133,100,70 +19900113,0,133,100,50 +19900113,0,133,100,30 +19900113,0,133,100,20 +19900113,0,133,100,10 +19900113,0,133,100,9 +19900113,0,133,100,7 +19900113,0,133,100,5 +19900113,0,133,100,3 +19900113,0,133,100,2 +19900113,0,133,100,1 +19900113,0,133,210,40 +19900113,0,3,117,2000 +19900113,0,133,109,1 +19900113,0,133,109,2 +19900113,0,133,109,3 +19900113,0,133,109,4 +19900113,0,133,109,5 +19900113,0,133,109,6 +19900113,0,133,109,7 +19900113,0,133,109,8 +19900113,0,133,109,9 +19900113,0,133,109,10 +19900113,0,246,109,1 +19900113,0,246,109,2 +19900113,0,246,109,3 +19900113,0,246,109,4 +19900113,0,246,109,5 +19900113,0,246,109,6 +19900113,0,246,109,7 +19900113,0,246,109,8 +19900113,0,246,109,9 +19900113,0,246,109,10 +19900113,0,247,109,1 +19900113,0,247,109,2 +19900113,0,247,109,3 +19900113,0,247,109,4 +19900113,0,247,109,5 +19900113,0,247,109,6 +19900113,0,247,109,7 +19900113,0,247,109,8 +19900113,0,247,109,9 +19900113,0,247,109,10 +19900113,0,248,109,1 +19900113,0,248,109,2 +19900113,0,248,109,3 +19900113,0,248,109,4 +19900113,0,248,109,5 +19900113,0,248,109,6 +19900113,0,248,109,7 +19900113,0,248,109,8 +19900113,0,248,109,9 +19900113,0,248,109,10 +19900113,0,8,1,0 +19900113,0,31,1,0 +19900113,0,32,1,0 +19900113,0,33,1,0 +19900113,0,34,1,0 +19900113,0,35,111,7 +19900113,0,36,111,28 +19900113,0,37,111,100 +19900113,0,38,111,289 +19900113,0,39,111,7 +19900113,0,40,111,28 +19900113,0,41,111,100 +19900113,0,42,111,289 +19900113,0,44,1,0 +19900113,0,45,1,0 +19900113,0,49,1,0 +19900113,0,50,1,0 +19900113,0,57,1,0 +19900113,0,58,1,0 +19900113,0,123,1,0 +19900113,0,139,111,7 +19900113,0,141,1,0 +19900113,0,142,1,0 +19900113,0,143,1,0 +19900113,0,144,1,0 +19900113,0,145,1,0 +19900113,0,146,1,0 +19900113,0,147,1,0 +19900113,0,148,1,0 +19900113,0,169,1,0 +19900113,0,170,111,28 +19900113,0,172,1,0 +19900113,0,175,1,0 +19900113,0,176,1,0 +19900113,0,177,1,0 +19900113,0,178,1,0 +19900113,0,179,1,0 +19900113,0,180,1,0 +19900113,0,181,1,0 +19900113,0,182,1,0 +19900113,0,183,111,100 +19900113,0,189,1,0 +19900113,0,195,1,0 +19900113,0,196,1,0 +19900113,0,197,1,0 +19900113,0,198,1,0 +19900113,0,201,1,0 +19900113,0,202,1,0 +19900113,0,205,1,0 +19900113,0,208,1,0 +19900113,0,209,1,0 +19900113,0,210,1,0 +19900113,0,211,1,0 +19900113,0,212,1,0 +19900113,0,213,1,0 +19900113,0,228,1,0 +19900113,0,235,1,0 +19900113,0,236,111,289 +19900113,0,238,1,0 +19900113,0,59,1,0 +19900113,0,78,1,0 +19900113,0,79,1,0 +19900113,0,136,1,0 +19900113,0,137,1,0 +19900113,0,151,1,0 +19900113,0,159,1,0 +19900113,0,164,1,0 +19900113,0,165,1,0 +19900113,0,166,1,0 +19900113,0,167,1,0 +19900113,0,168,1,0 +19900113,0,186,1,0 +19900113,0,187,1,0 +19900113,0,188,1,0 +19900113,0,229,1,0 +19900113,0,230,1,0 +19900113,0,231,1,0 +19900113,0,232,1,0 +19900113,0,243,1,0 +19900113,0,244,1,0 +19900113,0,245,1,0 +19900113,0,228246,1,0 +19900113,0,228247,1,0 +19900113,300,8,1,0 +19900113,300,31,1,0 +19900113,300,32,1,0 +19900113,300,33,1,0 +19900113,300,34,1,0 +19900113,300,35,111,7 +19900113,300,36,111,28 +19900113,300,37,111,100 +19900113,300,38,111,289 +19900113,300,39,111,7 +19900113,300,40,111,28 +19900113,300,41,111,100 +19900113,300,42,111,289 +19900113,300,44,1,0 +19900113,300,45,1,0 +19900113,300,49,1,0 +19900113,300,50,1,0 +19900113,300,57,1,0 +19900113,300,58,1,0 +19900113,300,123,1,0 +19900113,300,139,111,7 +19900113,300,141,1,0 +19900113,300,142,1,0 +19900113,300,143,1,0 +19900113,300,144,1,0 +19900113,300,145,1,0 +19900113,300,146,1,0 +19900113,300,147,1,0 +19900113,300,148,1,0 +19900113,300,169,1,0 +19900113,300,170,111,28 +19900113,300,172,1,0 +19900113,300,175,1,0 +19900113,300,176,1,0 +19900113,300,177,1,0 +19900113,300,178,1,0 +19900113,300,179,1,0 +19900113,300,180,1,0 +19900113,300,181,1,0 +19900113,300,182,1,0 +19900113,300,183,111,100 +19900113,300,189,1,0 +19900113,300,195,1,0 +19900113,300,196,1,0 +19900113,300,197,1,0 +19900113,300,198,1,0 +19900113,300,201,1,0 +19900113,300,202,1,0 +19900113,300,205,1,0 +19900113,300,208,1,0 +19900113,300,209,1,0 +19900113,300,210,1,0 +19900113,300,211,1,0 +19900113,300,212,1,0 +19900113,300,213,1,0 +19900113,300,228,1,0 +19900113,300,235,1,0 +19900113,300,236,111,289 +19900113,300,238,1,0 +19900113,300,59,1,0 +19900113,300,78,1,0 +19900113,300,79,1,0 +19900113,300,136,1,0 +19900113,300,137,1,0 +19900113,300,151,1,0 +19900113,300,159,1,0 +19900113,300,164,1,0 +19900113,300,165,1,0 +19900113,300,166,1,0 +19900113,300,167,1,0 +19900113,300,168,1,0 +19900113,300,186,1,0 +19900113,300,187,1,0 +19900113,300,188,1,0 +19900113,300,229,1,0 +19900113,300,230,1,0 +19900113,300,231,1,0 +19900113,300,232,1,0 +19900113,300,243,1,0 +19900113,300,244,1,0 +19900113,300,245,1,0 +19900113,300,228246,1,0 +19900113,300,228247,1,0 +19900113,600,133,100,1000 +19900113,600,133,100,975 +19900113,600,133,100,950 +19900113,600,133,100,925 +19900113,600,133,100,900 +19900113,600,133,100,875 +19900113,600,133,100,850 +19900113,600,133,100,825 +19900113,600,133,100,800 +19900113,600,133,100,775 +19900113,600,133,100,750 +19900113,600,133,100,740 +19900113,600,133,100,700 +19900113,600,133,100,650 +19900113,600,133,100,620 +19900113,600,133,100,600 +19900113,600,133,100,550 +19900113,600,133,100,500 +19900113,600,133,100,450 +19900113,600,133,100,400 +19900113,600,133,100,375 +19900113,600,133,100,350 +19900113,600,133,100,300 +19900113,600,133,100,250 +19900113,600,133,100,245 +19900113,600,133,100,225 +19900113,600,133,100,200 +19900113,600,133,100,175 +19900113,600,133,100,150 +19900113,600,133,100,125 +19900113,600,133,100,100 +19900113,600,133,100,70 +19900113,600,133,100,50 +19900113,600,133,100,30 +19900113,600,133,100,20 +19900113,600,133,100,10 +19900113,600,133,100,9 +19900113,600,133,100,7 +19900113,600,133,100,5 +19900113,600,133,100,3 +19900113,600,133,100,2 +19900113,600,133,100,1 +19900113,600,133,210,40 +19900113,600,3,117,2000 +19900113,600,133,109,1 +19900113,600,133,109,2 +19900113,600,133,109,3 +19900113,600,133,109,4 +19900113,600,133,109,5 +19900113,600,133,109,6 +19900113,600,133,109,7 +19900113,600,133,109,8 +19900113,600,133,109,9 +19900113,600,133,109,10 +19900113,600,246,109,1 +19900113,600,246,109,2 +19900113,600,246,109,3 +19900113,600,246,109,4 +19900113,600,246,109,5 +19900113,600,246,109,6 +19900113,600,246,109,7 +19900113,600,246,109,8 +19900113,600,246,109,9 +19900113,600,246,109,10 +19900113,600,247,109,1 +19900113,600,247,109,2 +19900113,600,247,109,3 +19900113,600,247,109,4 +19900113,600,247,109,5 +19900113,600,247,109,6 +19900113,600,247,109,7 +19900113,600,247,109,8 +19900113,600,247,109,9 +19900113,600,247,109,10 +19900113,600,248,109,1 +19900113,600,248,109,2 +19900113,600,248,109,3 +19900113,600,248,109,4 +19900113,600,248,109,5 +19900113,600,248,109,6 +19900113,600,248,109,7 +19900113,600,248,109,8 +19900113,600,248,109,9 +19900113,600,248,109,10 +19900113,600,8,1,0 +19900113,600,31,1,0 +19900113,600,32,1,0 +19900113,600,33,1,0 +19900113,600,34,1,0 +19900113,600,35,111,7 +19900113,600,36,111,28 +19900113,600,37,111,100 +19900113,600,38,111,289 +19900113,600,39,111,7 +19900113,600,40,111,28 +19900113,600,41,111,100 +19900113,600,42,111,289 +19900113,600,44,1,0 +19900113,600,45,1,0 +19900113,600,49,1,0 +19900113,600,50,1,0 +19900113,600,57,1,0 +19900113,600,58,1,0 +19900113,600,123,1,0 +19900113,600,139,111,7 +19900113,600,141,1,0 +19900113,600,142,1,0 +19900113,600,143,1,0 +19900113,600,144,1,0 +19900113,600,145,1,0 +19900113,600,146,1,0 +19900113,600,147,1,0 +19900113,600,148,1,0 +19900113,600,169,1,0 +19900113,600,170,111,28 +19900113,600,172,1,0 +19900113,600,175,1,0 +19900113,600,176,1,0 +19900113,600,177,1,0 +19900113,600,178,1,0 +19900113,600,179,1,0 +19900113,600,180,1,0 +19900113,600,181,1,0 +19900113,600,182,1,0 +19900113,600,183,111,100 +19900113,600,189,1,0 +19900113,600,195,1,0 +19900113,600,196,1,0 +19900113,600,197,1,0 +19900113,600,198,1,0 +19900113,600,201,1,0 +19900113,600,202,1,0 +19900113,600,205,1,0 +19900113,600,208,1,0 +19900113,600,209,1,0 +19900113,600,210,1,0 +19900113,600,211,1,0 +19900113,600,212,1,0 +19900113,600,213,1,0 +19900113,600,228,1,0 +19900113,600,235,1,0 +19900113,600,236,111,289 +19900113,600,238,1,0 +19900113,600,59,1,0 +19900113,600,78,1,0 +19900113,600,79,1,0 +19900113,600,136,1,0 +19900113,600,137,1,0 +19900113,600,151,1,0 +19900113,600,159,1,0 +19900113,600,164,1,0 +19900113,600,165,1,0 +19900113,600,166,1,0 +19900113,600,167,1,0 +19900113,600,168,1,0 +19900113,600,186,1,0 +19900113,600,187,1,0 +19900113,600,188,1,0 +19900113,600,229,1,0 +19900113,600,230,1,0 +19900113,600,231,1,0 +19900113,600,232,1,0 +19900113,600,243,1,0 +19900113,600,244,1,0 +19900113,600,245,1,0 +19900113,600,228246,1,0 +19900113,600,228247,1,0 +19900113,900,8,1,0 +19900113,900,31,1,0 +19900113,900,32,1,0 +19900113,900,33,1,0 +19900113,900,34,1,0 +19900113,900,35,111,7 +19900113,900,36,111,28 +19900113,900,37,111,100 +19900113,900,38,111,289 +19900113,900,39,111,7 +19900113,900,40,111,28 +19900113,900,41,111,100 +19900113,900,42,111,289 +19900113,900,44,1,0 +19900113,900,45,1,0 +19900113,900,49,1,0 +19900113,900,50,1,0 +19900113,900,57,1,0 +19900113,900,58,1,0 +19900113,900,123,1,0 +19900113,900,139,111,7 +19900113,900,141,1,0 +19900113,900,142,1,0 +19900113,900,143,1,0 +19900113,900,144,1,0 +19900113,900,145,1,0 +19900113,900,146,1,0 +19900113,900,147,1,0 +19900113,900,148,1,0 +19900113,900,169,1,0 +19900113,900,170,111,28 +19900113,900,172,1,0 +19900113,900,175,1,0 +19900113,900,176,1,0 +19900113,900,177,1,0 +19900113,900,178,1,0 +19900113,900,179,1,0 +19900113,900,180,1,0 +19900113,900,181,1,0 +19900113,900,182,1,0 +19900113,900,183,111,100 +19900113,900,189,1,0 +19900113,900,195,1,0 +19900113,900,196,1,0 +19900113,900,197,1,0 +19900113,900,198,1,0 +19900113,900,201,1,0 +19900113,900,202,1,0 +19900113,900,205,1,0 +19900113,900,208,1,0 +19900113,900,209,1,0 +19900113,900,210,1,0 +19900113,900,211,1,0 +19900113,900,212,1,0 +19900113,900,213,1,0 +19900113,900,228,1,0 +19900113,900,235,1,0 +19900113,900,236,111,289 +19900113,900,238,1,0 +19900113,900,59,1,0 +19900113,900,78,1,0 +19900113,900,79,1,0 +19900113,900,136,1,0 +19900113,900,137,1,0 +19900113,900,151,1,0 +19900113,900,159,1,0 +19900113,900,164,1,0 +19900113,900,165,1,0 +19900113,900,166,1,0 +19900113,900,167,1,0 +19900113,900,168,1,0 +19900113,900,186,1,0 +19900113,900,187,1,0 +19900113,900,188,1,0 +19900113,900,229,1,0 +19900113,900,230,1,0 +19900113,900,231,1,0 +19900113,900,232,1,0 +19900113,900,243,1,0 +19900113,900,244,1,0 +19900113,900,245,1,0 +19900113,900,228246,1,0 +19900113,900,228247,1,0 +19900113,1200,133,100,1000 +19900113,1200,133,100,975 +19900113,1200,133,100,950 +19900113,1200,133,100,925 +19900113,1200,133,100,900 +19900113,1200,133,100,875 +19900113,1200,133,100,850 +19900113,1200,133,100,825 +19900113,1200,133,100,800 +19900113,1200,133,100,775 +19900113,1200,133,100,750 +19900113,1200,133,100,740 +19900113,1200,133,100,700 +19900113,1200,133,100,650 +19900113,1200,133,100,620 +19900113,1200,133,100,600 +19900113,1200,133,100,550 +19900113,1200,133,100,500 +19900113,1200,133,100,450 +19900113,1200,133,100,400 +19900113,1200,133,100,375 +19900113,1200,133,100,350 +19900113,1200,133,100,300 +19900113,1200,133,100,250 +19900113,1200,133,100,245 +19900113,1200,133,100,225 +19900113,1200,133,100,200 +19900113,1200,133,100,175 +19900113,1200,133,100,150 +19900113,1200,133,100,125 +19900113,1200,133,100,100 +19900113,1200,133,100,70 +19900113,1200,133,100,50 +19900113,1200,133,100,30 +19900113,1200,133,100,20 +19900113,1200,133,100,10 +19900113,1200,133,100,9 +19900113,1200,133,100,7 +19900113,1200,133,100,5 +19900113,1200,133,100,3 +19900113,1200,133,100,2 +19900113,1200,133,100,1 +19900113,1200,133,210,40 +19900113,1200,3,117,2000 +19900113,1200,133,109,1 +19900113,1200,133,109,2 +19900113,1200,133,109,3 +19900113,1200,133,109,4 +19900113,1200,133,109,5 +19900113,1200,133,109,6 +19900113,1200,133,109,7 +19900113,1200,133,109,8 +19900113,1200,133,109,9 +19900113,1200,133,109,10 +19900113,1200,246,109,1 +19900113,1200,246,109,2 +19900113,1200,246,109,3 +19900113,1200,246,109,4 +19900113,1200,246,109,5 +19900113,1200,246,109,6 +19900113,1200,246,109,7 +19900113,1200,246,109,8 +19900113,1200,246,109,9 +19900113,1200,246,109,10 +19900113,1200,247,109,1 +19900113,1200,247,109,2 +19900113,1200,247,109,3 +19900113,1200,247,109,4 +19900113,1200,247,109,5 +19900113,1200,247,109,6 +19900113,1200,247,109,7 +19900113,1200,247,109,8 +19900113,1200,247,109,9 +19900113,1200,247,109,10 +19900113,1200,248,109,1 +19900113,1200,248,109,2 +19900113,1200,248,109,3 +19900113,1200,248,109,4 +19900113,1200,248,109,5 +19900113,1200,248,109,6 +19900113,1200,248,109,7 +19900113,1200,248,109,8 +19900113,1200,248,109,9 +19900113,1200,248,109,10 +19900113,1200,8,1,0 +19900113,1200,31,1,0 +19900113,1200,32,1,0 +19900113,1200,33,1,0 +19900113,1200,34,1,0 +19900113,1200,35,111,7 +19900113,1200,36,111,28 +19900113,1200,37,111,100 +19900113,1200,38,111,289 +19900113,1200,39,111,7 +19900113,1200,40,111,28 +19900113,1200,41,111,100 +19900113,1200,42,111,289 +19900113,1200,44,1,0 +19900113,1200,45,1,0 +19900113,1200,49,1,0 +19900113,1200,50,1,0 +19900113,1200,57,1,0 +19900113,1200,58,1,0 +19900113,1200,123,1,0 +19900113,1200,139,111,7 +19900113,1200,141,1,0 +19900113,1200,142,1,0 +19900113,1200,143,1,0 +19900113,1200,144,1,0 +19900113,1200,145,1,0 +19900113,1200,146,1,0 +19900113,1200,147,1,0 +19900113,1200,148,1,0 +19900113,1200,169,1,0 +19900113,1200,170,111,28 +19900113,1200,172,1,0 +19900113,1200,175,1,0 +19900113,1200,176,1,0 +19900113,1200,177,1,0 +19900113,1200,178,1,0 +19900113,1200,179,1,0 +19900113,1200,180,1,0 +19900113,1200,181,1,0 +19900113,1200,182,1,0 +19900113,1200,183,111,100 +19900113,1200,189,1,0 +19900113,1200,195,1,0 +19900113,1200,196,1,0 +19900113,1200,197,1,0 +19900113,1200,198,1,0 +19900113,1200,201,1,0 +19900113,1200,202,1,0 +19900113,1200,205,1,0 +19900113,1200,208,1,0 +19900113,1200,209,1,0 +19900113,1200,210,1,0 +19900113,1200,211,1,0 +19900113,1200,212,1,0 +19900113,1200,213,1,0 +19900113,1200,228,1,0 +19900113,1200,235,1,0 +19900113,1200,236,111,289 +19900113,1200,238,1,0 +19900113,1200,59,1,0 +19900113,1200,78,1,0 +19900113,1200,79,1,0 +19900113,1200,136,1,0 +19900113,1200,137,1,0 +19900113,1200,151,1,0 +19900113,1200,159,1,0 +19900113,1200,164,1,0 +19900113,1200,165,1,0 +19900113,1200,166,1,0 +19900113,1200,167,1,0 +19900113,1200,168,1,0 +19900113,1200,186,1,0 +19900113,1200,187,1,0 +19900113,1200,188,1,0 +19900113,1200,229,1,0 +19900113,1200,230,1,0 +19900113,1200,231,1,0 +19900113,1200,232,1,0 +19900113,1200,243,1,0 +19900113,1200,244,1,0 +19900113,1200,245,1,0 +19900113,1200,228246,1,0 +19900113,1200,228247,1,0 +19900113,1500,8,1,0 +19900113,1500,31,1,0 +19900113,1500,32,1,0 +19900113,1500,33,1,0 +19900113,1500,34,1,0 +19900113,1500,35,111,7 +19900113,1500,36,111,28 +19900113,1500,37,111,100 +19900113,1500,38,111,289 +19900113,1500,39,111,7 +19900113,1500,40,111,28 +19900113,1500,41,111,100 +19900113,1500,42,111,289 +19900113,1500,44,1,0 +19900113,1500,45,1,0 +19900113,1500,49,1,0 +19900113,1500,50,1,0 +19900113,1500,57,1,0 +19900113,1500,58,1,0 +19900113,1500,123,1,0 +19900113,1500,139,111,7 +19900113,1500,141,1,0 +19900113,1500,142,1,0 +19900113,1500,143,1,0 +19900113,1500,144,1,0 +19900113,1500,145,1,0 +19900113,1500,146,1,0 +19900113,1500,147,1,0 +19900113,1500,148,1,0 +19900113,1500,169,1,0 +19900113,1500,170,111,28 +19900113,1500,172,1,0 +19900113,1500,175,1,0 +19900113,1500,176,1,0 +19900113,1500,177,1,0 +19900113,1500,178,1,0 +19900113,1500,179,1,0 +19900113,1500,180,1,0 +19900113,1500,181,1,0 +19900113,1500,182,1,0 +19900113,1500,183,111,100 +19900113,1500,189,1,0 +19900113,1500,195,1,0 +19900113,1500,196,1,0 +19900113,1500,197,1,0 +19900113,1500,198,1,0 +19900113,1500,201,1,0 +19900113,1500,202,1,0 +19900113,1500,205,1,0 +19900113,1500,208,1,0 +19900113,1500,209,1,0 +19900113,1500,210,1,0 +19900113,1500,211,1,0 +19900113,1500,212,1,0 +19900113,1500,213,1,0 +19900113,1500,228,1,0 +19900113,1500,235,1,0 +19900113,1500,236,111,289 +19900113,1500,238,1,0 +19900113,1500,59,1,0 +19900113,1500,78,1,0 +19900113,1500,79,1,0 +19900113,1500,136,1,0 +19900113,1500,137,1,0 +19900113,1500,151,1,0 +19900113,1500,159,1,0 +19900113,1500,164,1,0 +19900113,1500,165,1,0 +19900113,1500,166,1,0 +19900113,1500,167,1,0 +19900113,1500,168,1,0 +19900113,1500,186,1,0 +19900113,1500,187,1,0 +19900113,1500,188,1,0 +19900113,1500,229,1,0 +19900113,1500,230,1,0 +19900113,1500,231,1,0 +19900113,1500,232,1,0 +19900113,1500,243,1,0 +19900113,1500,244,1,0 +19900113,1500,245,1,0 +19900113,1500,228246,1,0 +19900113,1500,228247,1,0 +19900113,1800,133,100,1000 +19900113,1800,133,100,975 +19900113,1800,133,100,950 +19900113,1800,133,100,925 +19900113,1800,133,100,900 +19900113,1800,133,100,875 +19900113,1800,133,100,850 +19900113,1800,133,100,825 +19900113,1800,133,100,800 +19900113,1800,133,100,775 +19900113,1800,133,100,750 +19900113,1800,133,100,740 +19900113,1800,133,100,700 +19900113,1800,133,100,650 +19900113,1800,133,100,620 +19900113,1800,133,100,600 +19900113,1800,133,100,550 +19900113,1800,133,100,500 +19900113,1800,133,100,450 +19900113,1800,133,100,400 +19900113,1800,133,100,375 +19900113,1800,133,100,350 +19900113,1800,133,100,300 +19900113,1800,133,100,250 +19900113,1800,133,100,245 +19900113,1800,133,100,225 +19900113,1800,133,100,200 +19900113,1800,133,100,175 +19900113,1800,133,100,150 +19900113,1800,133,100,125 +19900113,1800,133,100,100 +19900113,1800,133,100,70 +19900113,1800,133,100,50 +19900113,1800,133,100,30 +19900113,1800,133,100,20 +19900113,1800,133,100,10 +19900113,1800,133,100,9 +19900113,1800,133,100,7 +19900113,1800,133,100,5 +19900113,1800,133,100,3 +19900113,1800,133,100,2 +19900113,1800,133,100,1 +19900113,1800,133,210,40 +19900113,1800,3,117,2000 +19900113,1800,133,109,1 +19900113,1800,133,109,2 +19900113,1800,133,109,3 +19900113,1800,133,109,4 +19900113,1800,133,109,5 +19900113,1800,133,109,6 +19900113,1800,133,109,7 +19900113,1800,133,109,8 +19900113,1800,133,109,9 +19900113,1800,133,109,10 +19900113,1800,246,109,1 +19900113,1800,246,109,2 +19900113,1800,246,109,3 +19900113,1800,246,109,4 +19900113,1800,246,109,5 +19900113,1800,246,109,6 +19900113,1800,246,109,7 +19900113,1800,246,109,8 +19900113,1800,246,109,9 +19900113,1800,246,109,10 +19900113,1800,247,109,1 +19900113,1800,247,109,2 +19900113,1800,247,109,3 +19900113,1800,247,109,4 +19900113,1800,247,109,5 +19900113,1800,247,109,6 +19900113,1800,247,109,7 +19900113,1800,247,109,8 +19900113,1800,247,109,9 +19900113,1800,247,109,10 +19900113,1800,248,109,1 +19900113,1800,248,109,2 +19900113,1800,248,109,3 +19900113,1800,248,109,4 +19900113,1800,248,109,5 +19900113,1800,248,109,6 +19900113,1800,248,109,7 +19900113,1800,248,109,8 +19900113,1800,248,109,9 +19900113,1800,248,109,10 +19900113,1800,8,1,0 +19900113,1800,31,1,0 +19900113,1800,32,1,0 +19900113,1800,33,1,0 +19900113,1800,34,1,0 +19900113,1800,35,111,7 +19900113,1800,36,111,28 +19900113,1800,37,111,100 +19900113,1800,38,111,289 +19900113,1800,39,111,7 +19900113,1800,40,111,28 +19900113,1800,41,111,100 +19900113,1800,42,111,289 +19900113,1800,44,1,0 +19900113,1800,45,1,0 +19900113,1800,49,1,0 +19900113,1800,50,1,0 +19900113,1800,57,1,0 +19900113,1800,58,1,0 +19900113,1800,123,1,0 +19900113,1800,139,111,7 +19900113,1800,141,1,0 +19900113,1800,142,1,0 +19900113,1800,143,1,0 +19900113,1800,144,1,0 +19900113,1800,145,1,0 +19900113,1800,146,1,0 +19900113,1800,147,1,0 +19900113,1800,148,1,0 +19900113,1800,169,1,0 +19900113,1800,170,111,28 +19900113,1800,172,1,0 +19900113,1800,175,1,0 +19900113,1800,176,1,0 +19900113,1800,177,1,0 +19900113,1800,178,1,0 +19900113,1800,179,1,0 +19900113,1800,180,1,0 +19900113,1800,181,1,0 +19900113,1800,182,1,0 +19900113,1800,183,111,100 +19900113,1800,189,1,0 +19900113,1800,195,1,0 +19900113,1800,196,1,0 +19900113,1800,197,1,0 +19900113,1800,198,1,0 +19900113,1800,201,1,0 +19900113,1800,202,1,0 +19900113,1800,205,1,0 +19900113,1800,208,1,0 +19900113,1800,209,1,0 +19900113,1800,210,1,0 +19900113,1800,211,1,0 +19900113,1800,212,1,0 +19900113,1800,213,1,0 +19900113,1800,228,1,0 +19900113,1800,235,1,0 +19900113,1800,236,111,289 +19900113,1800,238,1,0 +19900113,1800,59,1,0 +19900113,1800,78,1,0 +19900113,1800,79,1,0 +19900113,1800,136,1,0 +19900113,1800,137,1,0 +19900113,1800,151,1,0 +19900113,1800,159,1,0 +19900113,1800,164,1,0 +19900113,1800,165,1,0 +19900113,1800,166,1,0 +19900113,1800,167,1,0 +19900113,1800,168,1,0 +19900113,1800,186,1,0 +19900113,1800,187,1,0 +19900113,1800,188,1,0 +19900113,1800,229,1,0 +19900113,1800,230,1,0 +19900113,1800,231,1,0 +19900113,1800,232,1,0 +19900113,1800,243,1,0 +19900113,1800,244,1,0 +19900113,1800,245,1,0 +19900113,1800,228246,1,0 +19900113,1800,228247,1,0 +19900113,2100,8,1,0 +19900113,2100,31,1,0 +19900113,2100,32,1,0 +19900113,2100,33,1,0 +19900113,2100,34,1,0 +19900113,2100,35,111,7 +19900113,2100,36,111,28 +19900113,2100,37,111,100 +19900113,2100,38,111,289 +19900113,2100,39,111,7 +19900113,2100,40,111,28 +19900113,2100,41,111,100 +19900113,2100,42,111,289 +19900113,2100,44,1,0 +19900113,2100,45,1,0 +19900113,2100,49,1,0 +19900113,2100,50,1,0 +19900113,2100,57,1,0 +19900113,2100,58,1,0 +19900113,2100,123,1,0 +19900113,2100,139,111,7 +19900113,2100,141,1,0 +19900113,2100,142,1,0 +19900113,2100,143,1,0 +19900113,2100,144,1,0 +19900113,2100,145,1,0 +19900113,2100,146,1,0 +19900113,2100,147,1,0 +19900113,2100,148,1,0 +19900113,2100,169,1,0 +19900113,2100,170,111,28 +19900113,2100,172,1,0 +19900113,2100,175,1,0 +19900113,2100,176,1,0 +19900113,2100,177,1,0 +19900113,2100,178,1,0 +19900113,2100,179,1,0 +19900113,2100,180,1,0 +19900113,2100,181,1,0 +19900113,2100,182,1,0 +19900113,2100,183,111,100 +19900113,2100,189,1,0 +19900113,2100,195,1,0 +19900113,2100,196,1,0 +19900113,2100,197,1,0 +19900113,2100,198,1,0 +19900113,2100,201,1,0 +19900113,2100,202,1,0 +19900113,2100,205,1,0 +19900113,2100,208,1,0 +19900113,2100,209,1,0 +19900113,2100,210,1,0 +19900113,2100,211,1,0 +19900113,2100,212,1,0 +19900113,2100,213,1,0 +19900113,2100,228,1,0 +19900113,2100,235,1,0 +19900113,2100,236,111,289 +19900113,2100,238,1,0 +19900113,2100,59,1,0 +19900113,2100,78,1,0 +19900113,2100,79,1,0 +19900113,2100,136,1,0 +19900113,2100,137,1,0 +19900113,2100,151,1,0 +19900113,2100,159,1,0 +19900113,2100,164,1,0 +19900113,2100,165,1,0 +19900113,2100,166,1,0 +19900113,2100,167,1,0 +19900113,2100,168,1,0 +19900113,2100,186,1,0 +19900113,2100,187,1,0 +19900113,2100,188,1,0 +19900113,2100,229,1,0 +19900113,2100,230,1,0 +19900113,2100,231,1,0 +19900113,2100,232,1,0 +19900113,2100,243,1,0 +19900113,2100,244,1,0 +19900113,2100,245,1,0 +19900113,2100,228246,1,0 +19900113,2100,228247,1,0 +19900114,0,133,100,1000 +19900114,0,133,100,975 +19900114,0,133,100,950 +19900114,0,133,100,925 +19900114,0,133,100,900 +19900114,0,133,100,875 +19900114,0,133,100,850 +19900114,0,133,100,825 +19900114,0,133,100,800 +19900114,0,133,100,775 +19900114,0,133,100,750 +19900114,0,133,100,740 +19900114,0,133,100,700 +19900114,0,133,100,650 +19900114,0,133,100,620 +19900114,0,133,100,600 +19900114,0,133,100,550 +19900114,0,133,100,500 +19900114,0,133,100,450 +19900114,0,133,100,400 +19900114,0,133,100,375 +19900114,0,133,100,350 +19900114,0,133,100,300 +19900114,0,133,100,250 +19900114,0,133,100,245 +19900114,0,133,100,225 +19900114,0,133,100,200 +19900114,0,133,100,175 +19900114,0,133,100,150 +19900114,0,133,100,125 +19900114,0,133,100,100 +19900114,0,133,100,70 +19900114,0,133,100,50 +19900114,0,133,100,30 +19900114,0,133,100,20 +19900114,0,133,100,10 +19900114,0,133,100,9 +19900114,0,133,100,7 +19900114,0,133,100,5 +19900114,0,133,100,3 +19900114,0,133,100,2 +19900114,0,133,100,1 +19900114,0,133,210,40 +19900114,0,3,117,2000 +19900114,0,133,109,1 +19900114,0,133,109,2 +19900114,0,133,109,3 +19900114,0,133,109,4 +19900114,0,133,109,5 +19900114,0,133,109,6 +19900114,0,133,109,7 +19900114,0,133,109,8 +19900114,0,133,109,9 +19900114,0,133,109,10 +19900114,0,246,109,1 +19900114,0,246,109,2 +19900114,0,246,109,3 +19900114,0,246,109,4 +19900114,0,246,109,5 +19900114,0,246,109,6 +19900114,0,246,109,7 +19900114,0,246,109,8 +19900114,0,246,109,9 +19900114,0,246,109,10 +19900114,0,247,109,1 +19900114,0,247,109,2 +19900114,0,247,109,3 +19900114,0,247,109,4 +19900114,0,247,109,5 +19900114,0,247,109,6 +19900114,0,247,109,7 +19900114,0,247,109,8 +19900114,0,247,109,9 +19900114,0,247,109,10 +19900114,0,248,109,1 +19900114,0,248,109,2 +19900114,0,248,109,3 +19900114,0,248,109,4 +19900114,0,248,109,5 +19900114,0,248,109,6 +19900114,0,248,109,7 +19900114,0,248,109,8 +19900114,0,248,109,9 +19900114,0,248,109,10 +19900114,0,8,1,0 +19900114,0,31,1,0 +19900114,0,32,1,0 +19900114,0,33,1,0 +19900114,0,34,1,0 +19900114,0,35,111,7 +19900114,0,36,111,28 +19900114,0,37,111,100 +19900114,0,38,111,289 +19900114,0,39,111,7 +19900114,0,40,111,28 +19900114,0,41,111,100 +19900114,0,42,111,289 +19900114,0,44,1,0 +19900114,0,45,1,0 +19900114,0,49,1,0 +19900114,0,50,1,0 +19900114,0,57,1,0 +19900114,0,58,1,0 +19900114,0,123,1,0 +19900114,0,139,111,7 +19900114,0,141,1,0 +19900114,0,142,1,0 +19900114,0,143,1,0 +19900114,0,144,1,0 +19900114,0,145,1,0 +19900114,0,146,1,0 +19900114,0,147,1,0 +19900114,0,148,1,0 +19900114,0,169,1,0 +19900114,0,170,111,28 +19900114,0,172,1,0 +19900114,0,175,1,0 +19900114,0,176,1,0 +19900114,0,177,1,0 +19900114,0,178,1,0 +19900114,0,179,1,0 +19900114,0,180,1,0 +19900114,0,181,1,0 +19900114,0,182,1,0 +19900114,0,183,111,100 +19900114,0,189,1,0 +19900114,0,195,1,0 +19900114,0,196,1,0 +19900114,0,197,1,0 +19900114,0,198,1,0 +19900114,0,201,1,0 +19900114,0,202,1,0 +19900114,0,205,1,0 +19900114,0,208,1,0 +19900114,0,209,1,0 +19900114,0,210,1,0 +19900114,0,211,1,0 +19900114,0,212,1,0 +19900114,0,213,1,0 +19900114,0,228,1,0 +19900114,0,235,1,0 +19900114,0,236,111,289 +19900114,0,238,1,0 +19900114,0,59,1,0 +19900114,0,78,1,0 +19900114,0,79,1,0 +19900114,0,136,1,0 +19900114,0,137,1,0 +19900114,0,151,1,0 +19900114,0,159,1,0 +19900114,0,164,1,0 +19900114,0,165,1,0 +19900114,0,166,1,0 +19900114,0,167,1,0 +19900114,0,168,1,0 +19900114,0,186,1,0 +19900114,0,187,1,0 +19900114,0,188,1,0 +19900114,0,229,1,0 +19900114,0,230,1,0 +19900114,0,231,1,0 +19900114,0,232,1,0 +19900114,0,243,1,0 +19900114,0,244,1,0 +19900114,0,245,1,0 +19900114,0,228246,1,0 +19900114,0,228247,1,0 +19900114,300,8,1,0 +19900114,300,31,1,0 +19900114,300,32,1,0 +19900114,300,33,1,0 +19900114,300,34,1,0 +19900114,300,35,111,7 +19900114,300,36,111,28 +19900114,300,37,111,100 +19900114,300,38,111,289 +19900114,300,39,111,7 +19900114,300,40,111,28 +19900114,300,41,111,100 +19900114,300,42,111,289 +19900114,300,44,1,0 +19900114,300,45,1,0 +19900114,300,49,1,0 +19900114,300,50,1,0 +19900114,300,57,1,0 +19900114,300,58,1,0 +19900114,300,123,1,0 +19900114,300,139,111,7 +19900114,300,141,1,0 +19900114,300,142,1,0 +19900114,300,143,1,0 +19900114,300,144,1,0 +19900114,300,145,1,0 +19900114,300,146,1,0 +19900114,300,147,1,0 +19900114,300,148,1,0 +19900114,300,169,1,0 +19900114,300,170,111,28 +19900114,300,172,1,0 +19900114,300,175,1,0 +19900114,300,176,1,0 +19900114,300,177,1,0 +19900114,300,178,1,0 +19900114,300,179,1,0 +19900114,300,180,1,0 +19900114,300,181,1,0 +19900114,300,182,1,0 +19900114,300,183,111,100 +19900114,300,189,1,0 +19900114,300,195,1,0 +19900114,300,196,1,0 +19900114,300,197,1,0 +19900114,300,198,1,0 +19900114,300,201,1,0 +19900114,300,202,1,0 +19900114,300,205,1,0 +19900114,300,208,1,0 +19900114,300,209,1,0 +19900114,300,210,1,0 +19900114,300,211,1,0 +19900114,300,212,1,0 +19900114,300,213,1,0 +19900114,300,228,1,0 +19900114,300,235,1,0 +19900114,300,236,111,289 +19900114,300,238,1,0 +19900114,300,59,1,0 +19900114,300,78,1,0 +19900114,300,79,1,0 +19900114,300,136,1,0 +19900114,300,137,1,0 +19900114,300,151,1,0 +19900114,300,159,1,0 +19900114,300,164,1,0 +19900114,300,165,1,0 +19900114,300,166,1,0 +19900114,300,167,1,0 +19900114,300,168,1,0 +19900114,300,186,1,0 +19900114,300,187,1,0 +19900114,300,188,1,0 +19900114,300,229,1,0 +19900114,300,230,1,0 +19900114,300,231,1,0 +19900114,300,232,1,0 +19900114,300,243,1,0 +19900114,300,244,1,0 +19900114,300,245,1,0 +19900114,300,228246,1,0 +19900114,300,228247,1,0 +19900114,600,133,100,1000 +19900114,600,133,100,975 +19900114,600,133,100,950 +19900114,600,133,100,925 +19900114,600,133,100,900 +19900114,600,133,100,875 +19900114,600,133,100,850 +19900114,600,133,100,825 +19900114,600,133,100,800 +19900114,600,133,100,775 +19900114,600,133,100,750 +19900114,600,133,100,740 +19900114,600,133,100,700 +19900114,600,133,100,650 +19900114,600,133,100,620 +19900114,600,133,100,600 +19900114,600,133,100,550 +19900114,600,133,100,500 +19900114,600,133,100,450 +19900114,600,133,100,400 +19900114,600,133,100,375 +19900114,600,133,100,350 +19900114,600,133,100,300 +19900114,600,133,100,250 +19900114,600,133,100,245 +19900114,600,133,100,225 +19900114,600,133,100,200 +19900114,600,133,100,175 +19900114,600,133,100,150 +19900114,600,133,100,125 +19900114,600,133,100,100 +19900114,600,133,100,70 +19900114,600,133,100,50 +19900114,600,133,100,30 +19900114,600,133,100,20 +19900114,600,133,100,10 +19900114,600,133,100,9 +19900114,600,133,100,7 +19900114,600,133,100,5 +19900114,600,133,100,3 +19900114,600,133,100,2 +19900114,600,133,100,1 +19900114,600,133,210,40 +19900114,600,3,117,2000 +19900114,600,133,109,1 +19900114,600,133,109,2 +19900114,600,133,109,3 +19900114,600,133,109,4 +19900114,600,133,109,5 +19900114,600,133,109,6 +19900114,600,133,109,7 +19900114,600,133,109,8 +19900114,600,133,109,9 +19900114,600,133,109,10 +19900114,600,246,109,1 +19900114,600,246,109,2 +19900114,600,246,109,3 +19900114,600,246,109,4 +19900114,600,246,109,5 +19900114,600,246,109,6 +19900114,600,246,109,7 +19900114,600,246,109,8 +19900114,600,246,109,9 +19900114,600,246,109,10 +19900114,600,247,109,1 +19900114,600,247,109,2 +19900114,600,247,109,3 +19900114,600,247,109,4 +19900114,600,247,109,5 +19900114,600,247,109,6 +19900114,600,247,109,7 +19900114,600,247,109,8 +19900114,600,247,109,9 +19900114,600,247,109,10 +19900114,600,248,109,1 +19900114,600,248,109,2 +19900114,600,248,109,3 +19900114,600,248,109,4 +19900114,600,248,109,5 +19900114,600,248,109,6 +19900114,600,248,109,7 +19900114,600,248,109,8 +19900114,600,248,109,9 +19900114,600,248,109,10 +19900114,600,8,1,0 +19900114,600,31,1,0 +19900114,600,32,1,0 +19900114,600,33,1,0 +19900114,600,34,1,0 +19900114,600,35,111,7 +19900114,600,36,111,28 +19900114,600,37,111,100 +19900114,600,38,111,289 +19900114,600,39,111,7 +19900114,600,40,111,28 +19900114,600,41,111,100 +19900114,600,42,111,289 +19900114,600,44,1,0 +19900114,600,45,1,0 +19900114,600,49,1,0 +19900114,600,50,1,0 +19900114,600,57,1,0 +19900114,600,58,1,0 +19900114,600,123,1,0 +19900114,600,139,111,7 +19900114,600,141,1,0 +19900114,600,142,1,0 +19900114,600,143,1,0 +19900114,600,144,1,0 +19900114,600,145,1,0 +19900114,600,146,1,0 +19900114,600,147,1,0 +19900114,600,148,1,0 +19900114,600,169,1,0 +19900114,600,170,111,28 +19900114,600,172,1,0 +19900114,600,175,1,0 +19900114,600,176,1,0 +19900114,600,177,1,0 +19900114,600,178,1,0 +19900114,600,179,1,0 +19900114,600,180,1,0 +19900114,600,181,1,0 +19900114,600,182,1,0 +19900114,600,183,111,100 +19900114,600,189,1,0 +19900114,600,195,1,0 +19900114,600,196,1,0 +19900114,600,197,1,0 +19900114,600,198,1,0 +19900114,600,201,1,0 +19900114,600,202,1,0 +19900114,600,205,1,0 +19900114,600,208,1,0 +19900114,600,209,1,0 +19900114,600,210,1,0 +19900114,600,211,1,0 +19900114,600,212,1,0 +19900114,600,213,1,0 +19900114,600,228,1,0 +19900114,600,235,1,0 +19900114,600,236,111,289 +19900114,600,238,1,0 +19900114,600,59,1,0 +19900114,600,78,1,0 +19900114,600,79,1,0 +19900114,600,136,1,0 +19900114,600,137,1,0 +19900114,600,151,1,0 +19900114,600,159,1,0 +19900114,600,164,1,0 +19900114,600,165,1,0 +19900114,600,166,1,0 +19900114,600,167,1,0 +19900114,600,168,1,0 +19900114,600,186,1,0 +19900114,600,187,1,0 +19900114,600,188,1,0 +19900114,600,229,1,0 +19900114,600,230,1,0 +19900114,600,231,1,0 +19900114,600,232,1,0 +19900114,600,243,1,0 +19900114,600,244,1,0 +19900114,600,245,1,0 +19900114,600,228246,1,0 +19900114,600,228247,1,0 +19900114,900,8,1,0 +19900114,900,31,1,0 +19900114,900,32,1,0 +19900114,900,33,1,0 +19900114,900,34,1,0 +19900114,900,35,111,7 +19900114,900,36,111,28 +19900114,900,37,111,100 +19900114,900,38,111,289 +19900114,900,39,111,7 +19900114,900,40,111,28 +19900114,900,41,111,100 +19900114,900,42,111,289 +19900114,900,44,1,0 +19900114,900,45,1,0 +19900114,900,49,1,0 +19900114,900,50,1,0 +19900114,900,57,1,0 +19900114,900,58,1,0 +19900114,900,123,1,0 +19900114,900,139,111,7 +19900114,900,141,1,0 +19900114,900,142,1,0 +19900114,900,143,1,0 +19900114,900,144,1,0 +19900114,900,145,1,0 +19900114,900,146,1,0 +19900114,900,147,1,0 +19900114,900,148,1,0 +19900114,900,169,1,0 +19900114,900,170,111,28 +19900114,900,172,1,0 +19900114,900,175,1,0 +19900114,900,176,1,0 +19900114,900,177,1,0 +19900114,900,178,1,0 +19900114,900,179,1,0 +19900114,900,180,1,0 +19900114,900,181,1,0 +19900114,900,182,1,0 +19900114,900,183,111,100 +19900114,900,189,1,0 +19900114,900,195,1,0 +19900114,900,196,1,0 +19900114,900,197,1,0 +19900114,900,198,1,0 +19900114,900,201,1,0 +19900114,900,202,1,0 +19900114,900,205,1,0 +19900114,900,208,1,0 +19900114,900,209,1,0 +19900114,900,210,1,0 +19900114,900,211,1,0 +19900114,900,212,1,0 +19900114,900,213,1,0 +19900114,900,228,1,0 +19900114,900,235,1,0 +19900114,900,236,111,289 +19900114,900,238,1,0 +19900114,900,59,1,0 +19900114,900,78,1,0 +19900114,900,79,1,0 +19900114,900,136,1,0 +19900114,900,137,1,0 +19900114,900,151,1,0 +19900114,900,159,1,0 +19900114,900,164,1,0 +19900114,900,165,1,0 +19900114,900,166,1,0 +19900114,900,167,1,0 +19900114,900,168,1,0 +19900114,900,186,1,0 +19900114,900,187,1,0 +19900114,900,188,1,0 +19900114,900,229,1,0 +19900114,900,230,1,0 +19900114,900,231,1,0 +19900114,900,232,1,0 +19900114,900,243,1,0 +19900114,900,244,1,0 +19900114,900,245,1,0 +19900114,900,228246,1,0 +19900114,900,228247,1,0 +19900114,1200,133,100,1000 +19900114,1200,133,100,975 +19900114,1200,133,100,950 +19900114,1200,133,100,925 +19900114,1200,133,100,900 +19900114,1200,133,100,875 +19900114,1200,133,100,850 +19900114,1200,133,100,825 +19900114,1200,133,100,800 +19900114,1200,133,100,775 +19900114,1200,133,100,750 +19900114,1200,133,100,740 +19900114,1200,133,100,700 +19900114,1200,133,100,650 +19900114,1200,133,100,620 +19900114,1200,133,100,600 +19900114,1200,133,100,550 +19900114,1200,133,100,500 +19900114,1200,133,100,450 +19900114,1200,133,100,400 +19900114,1200,133,100,375 +19900114,1200,133,100,350 +19900114,1200,133,100,300 +19900114,1200,133,100,250 +19900114,1200,133,100,245 +19900114,1200,133,100,225 +19900114,1200,133,100,200 +19900114,1200,133,100,175 +19900114,1200,133,100,150 +19900114,1200,133,100,125 +19900114,1200,133,100,100 +19900114,1200,133,100,70 +19900114,1200,133,100,50 +19900114,1200,133,100,30 +19900114,1200,133,100,20 +19900114,1200,133,100,10 +19900114,1200,133,100,9 +19900114,1200,133,100,7 +19900114,1200,133,100,5 +19900114,1200,133,100,3 +19900114,1200,133,100,2 +19900114,1200,133,100,1 +19900114,1200,133,210,40 +19900114,1200,3,117,2000 +19900114,1200,133,109,1 +19900114,1200,133,109,2 +19900114,1200,133,109,3 +19900114,1200,133,109,4 +19900114,1200,133,109,5 +19900114,1200,133,109,6 +19900114,1200,133,109,7 +19900114,1200,133,109,8 +19900114,1200,133,109,9 +19900114,1200,133,109,10 +19900114,1200,246,109,1 +19900114,1200,246,109,2 +19900114,1200,246,109,3 +19900114,1200,246,109,4 +19900114,1200,246,109,5 +19900114,1200,246,109,6 +19900114,1200,246,109,7 +19900114,1200,246,109,8 +19900114,1200,246,109,9 +19900114,1200,246,109,10 +19900114,1200,247,109,1 +19900114,1200,247,109,2 +19900114,1200,247,109,3 +19900114,1200,247,109,4 +19900114,1200,247,109,5 +19900114,1200,247,109,6 +19900114,1200,247,109,7 +19900114,1200,247,109,8 +19900114,1200,247,109,9 +19900114,1200,247,109,10 +19900114,1200,248,109,1 +19900114,1200,248,109,2 +19900114,1200,248,109,3 +19900114,1200,248,109,4 +19900114,1200,248,109,5 +19900114,1200,248,109,6 +19900114,1200,248,109,7 +19900114,1200,248,109,8 +19900114,1200,248,109,9 +19900114,1200,248,109,10 +19900114,1200,8,1,0 +19900114,1200,31,1,0 +19900114,1200,32,1,0 +19900114,1200,33,1,0 +19900114,1200,34,1,0 +19900114,1200,35,111,7 +19900114,1200,36,111,28 +19900114,1200,37,111,100 +19900114,1200,38,111,289 +19900114,1200,39,111,7 +19900114,1200,40,111,28 +19900114,1200,41,111,100 +19900114,1200,42,111,289 +19900114,1200,44,1,0 +19900114,1200,45,1,0 +19900114,1200,49,1,0 +19900114,1200,50,1,0 +19900114,1200,57,1,0 +19900114,1200,58,1,0 +19900114,1200,123,1,0 +19900114,1200,139,111,7 +19900114,1200,141,1,0 +19900114,1200,142,1,0 +19900114,1200,143,1,0 +19900114,1200,144,1,0 +19900114,1200,145,1,0 +19900114,1200,146,1,0 +19900114,1200,147,1,0 +19900114,1200,148,1,0 +19900114,1200,169,1,0 +19900114,1200,170,111,28 +19900114,1200,172,1,0 +19900114,1200,175,1,0 +19900114,1200,176,1,0 +19900114,1200,177,1,0 +19900114,1200,178,1,0 +19900114,1200,179,1,0 +19900114,1200,180,1,0 +19900114,1200,181,1,0 +19900114,1200,182,1,0 +19900114,1200,183,111,100 +19900114,1200,189,1,0 +19900114,1200,195,1,0 +19900114,1200,196,1,0 +19900114,1200,197,1,0 +19900114,1200,198,1,0 +19900114,1200,201,1,0 +19900114,1200,202,1,0 +19900114,1200,205,1,0 +19900114,1200,208,1,0 +19900114,1200,209,1,0 +19900114,1200,210,1,0 +19900114,1200,211,1,0 +19900114,1200,212,1,0 +19900114,1200,213,1,0 +19900114,1200,228,1,0 +19900114,1200,235,1,0 +19900114,1200,236,111,289 +19900114,1200,238,1,0 +19900114,1200,59,1,0 +19900114,1200,78,1,0 +19900114,1200,79,1,0 +19900114,1200,136,1,0 +19900114,1200,137,1,0 +19900114,1200,151,1,0 +19900114,1200,159,1,0 +19900114,1200,164,1,0 +19900114,1200,165,1,0 +19900114,1200,166,1,0 +19900114,1200,167,1,0 +19900114,1200,168,1,0 +19900114,1200,186,1,0 +19900114,1200,187,1,0 +19900114,1200,188,1,0 +19900114,1200,229,1,0 +19900114,1200,230,1,0 +19900114,1200,231,1,0 +19900114,1200,232,1,0 +19900114,1200,243,1,0 +19900114,1200,244,1,0 +19900114,1200,245,1,0 +19900114,1200,228246,1,0 +19900114,1200,228247,1,0 +19900114,1500,8,1,0 +19900114,1500,31,1,0 +19900114,1500,32,1,0 +19900114,1500,33,1,0 +19900114,1500,34,1,0 +19900114,1500,35,111,7 +19900114,1500,36,111,28 +19900114,1500,37,111,100 +19900114,1500,38,111,289 +19900114,1500,39,111,7 +19900114,1500,40,111,28 +19900114,1500,41,111,100 +19900114,1500,42,111,289 +19900114,1500,44,1,0 +19900114,1500,45,1,0 +19900114,1500,49,1,0 +19900114,1500,50,1,0 +19900114,1500,57,1,0 +19900114,1500,58,1,0 +19900114,1500,123,1,0 +19900114,1500,139,111,7 +19900114,1500,141,1,0 +19900114,1500,142,1,0 +19900114,1500,143,1,0 +19900114,1500,144,1,0 +19900114,1500,145,1,0 +19900114,1500,146,1,0 +19900114,1500,147,1,0 +19900114,1500,148,1,0 +19900114,1500,169,1,0 +19900114,1500,170,111,28 +19900114,1500,172,1,0 +19900114,1500,175,1,0 +19900114,1500,176,1,0 +19900114,1500,177,1,0 +19900114,1500,178,1,0 +19900114,1500,179,1,0 +19900114,1500,180,1,0 +19900114,1500,181,1,0 +19900114,1500,182,1,0 +19900114,1500,183,111,100 +19900114,1500,189,1,0 +19900114,1500,195,1,0 +19900114,1500,196,1,0 +19900114,1500,197,1,0 +19900114,1500,198,1,0 +19900114,1500,201,1,0 +19900114,1500,202,1,0 +19900114,1500,205,1,0 +19900114,1500,208,1,0 +19900114,1500,209,1,0 +19900114,1500,210,1,0 +19900114,1500,211,1,0 +19900114,1500,212,1,0 +19900114,1500,213,1,0 +19900114,1500,228,1,0 +19900114,1500,235,1,0 +19900114,1500,236,111,289 +19900114,1500,238,1,0 +19900114,1500,59,1,0 +19900114,1500,78,1,0 +19900114,1500,79,1,0 +19900114,1500,136,1,0 +19900114,1500,137,1,0 +19900114,1500,151,1,0 +19900114,1500,159,1,0 +19900114,1500,164,1,0 +19900114,1500,165,1,0 +19900114,1500,166,1,0 +19900114,1500,167,1,0 +19900114,1500,168,1,0 +19900114,1500,186,1,0 +19900114,1500,187,1,0 +19900114,1500,188,1,0 +19900114,1500,229,1,0 +19900114,1500,230,1,0 +19900114,1500,231,1,0 +19900114,1500,232,1,0 +19900114,1500,243,1,0 +19900114,1500,244,1,0 +19900114,1500,245,1,0 +19900114,1500,228246,1,0 +19900114,1500,228247,1,0 +19900114,1800,133,100,1000 +19900114,1800,133,100,975 +19900114,1800,133,100,950 +19900114,1800,133,100,925 +19900114,1800,133,100,900 +19900114,1800,133,100,875 +19900114,1800,133,100,850 +19900114,1800,133,100,825 +19900114,1800,133,100,800 +19900114,1800,133,100,775 +19900114,1800,133,100,750 +19900114,1800,133,100,740 +19900114,1800,133,100,700 +19900114,1800,133,100,650 +19900114,1800,133,100,620 +19900114,1800,133,100,600 +19900114,1800,133,100,550 +19900114,1800,133,100,500 +19900114,1800,133,100,450 +19900114,1800,133,100,400 +19900114,1800,133,100,375 +19900114,1800,133,100,350 +19900114,1800,133,100,300 +19900114,1800,133,100,250 +19900114,1800,133,100,245 +19900114,1800,133,100,225 +19900114,1800,133,100,200 +19900114,1800,133,100,175 +19900114,1800,133,100,150 +19900114,1800,133,100,125 +19900114,1800,133,100,100 +19900114,1800,133,100,70 +19900114,1800,133,100,50 +19900114,1800,133,100,30 +19900114,1800,133,100,20 +19900114,1800,133,100,10 +19900114,1800,133,100,9 +19900114,1800,133,100,7 +19900114,1800,133,100,5 +19900114,1800,133,100,3 +19900114,1800,133,100,2 +19900114,1800,133,100,1 +19900114,1800,133,210,40 +19900114,1800,3,117,2000 +19900114,1800,133,109,1 +19900114,1800,133,109,2 +19900114,1800,133,109,3 +19900114,1800,133,109,4 +19900114,1800,133,109,5 +19900114,1800,133,109,6 +19900114,1800,133,109,7 +19900114,1800,133,109,8 +19900114,1800,133,109,9 +19900114,1800,133,109,10 +19900114,1800,246,109,1 +19900114,1800,246,109,2 +19900114,1800,246,109,3 +19900114,1800,246,109,4 +19900114,1800,246,109,5 +19900114,1800,246,109,6 +19900114,1800,246,109,7 +19900114,1800,246,109,8 +19900114,1800,246,109,9 +19900114,1800,246,109,10 +19900114,1800,247,109,1 +19900114,1800,247,109,2 +19900114,1800,247,109,3 +19900114,1800,247,109,4 +19900114,1800,247,109,5 +19900114,1800,247,109,6 +19900114,1800,247,109,7 +19900114,1800,247,109,8 +19900114,1800,247,109,9 +19900114,1800,247,109,10 +19900114,1800,248,109,1 +19900114,1800,248,109,2 +19900114,1800,248,109,3 +19900114,1800,248,109,4 +19900114,1800,248,109,5 +19900114,1800,248,109,6 +19900114,1800,248,109,7 +19900114,1800,248,109,8 +19900114,1800,248,109,9 +19900114,1800,248,109,10 +19900114,1800,8,1,0 +19900114,1800,31,1,0 +19900114,1800,32,1,0 +19900114,1800,33,1,0 +19900114,1800,34,1,0 +19900114,1800,35,111,7 +19900114,1800,36,111,28 +19900114,1800,37,111,100 +19900114,1800,38,111,289 +19900114,1800,39,111,7 +19900114,1800,40,111,28 +19900114,1800,41,111,100 +19900114,1800,42,111,289 +19900114,1800,44,1,0 +19900114,1800,45,1,0 +19900114,1800,49,1,0 +19900114,1800,50,1,0 +19900114,1800,57,1,0 +19900114,1800,58,1,0 +19900114,1800,123,1,0 +19900114,1800,139,111,7 +19900114,1800,141,1,0 +19900114,1800,142,1,0 +19900114,1800,143,1,0 +19900114,1800,144,1,0 +19900114,1800,145,1,0 +19900114,1800,146,1,0 +19900114,1800,147,1,0 +19900114,1800,148,1,0 +19900114,1800,169,1,0 +19900114,1800,170,111,28 +19900114,1800,172,1,0 +19900114,1800,175,1,0 +19900114,1800,176,1,0 +19900114,1800,177,1,0 +19900114,1800,178,1,0 +19900114,1800,179,1,0 +19900114,1800,180,1,0 +19900114,1800,181,1,0 +19900114,1800,182,1,0 +19900114,1800,183,111,100 +19900114,1800,189,1,0 +19900114,1800,195,1,0 +19900114,1800,196,1,0 +19900114,1800,197,1,0 +19900114,1800,198,1,0 +19900114,1800,201,1,0 +19900114,1800,202,1,0 +19900114,1800,205,1,0 +19900114,1800,208,1,0 +19900114,1800,209,1,0 +19900114,1800,210,1,0 +19900114,1800,211,1,0 +19900114,1800,212,1,0 +19900114,1800,213,1,0 +19900114,1800,228,1,0 +19900114,1800,235,1,0 +19900114,1800,236,111,289 +19900114,1800,238,1,0 +19900114,1800,59,1,0 +19900114,1800,78,1,0 +19900114,1800,79,1,0 +19900114,1800,136,1,0 +19900114,1800,137,1,0 +19900114,1800,151,1,0 +19900114,1800,159,1,0 +19900114,1800,164,1,0 +19900114,1800,165,1,0 +19900114,1800,166,1,0 +19900114,1800,167,1,0 +19900114,1800,168,1,0 +19900114,1800,186,1,0 +19900114,1800,187,1,0 +19900114,1800,188,1,0 +19900114,1800,229,1,0 +19900114,1800,230,1,0 +19900114,1800,231,1,0 +19900114,1800,232,1,0 +19900114,1800,243,1,0 +19900114,1800,244,1,0 +19900114,1800,245,1,0 +19900114,1800,228246,1,0 +19900114,1800,228247,1,0 +19900114,2100,8,1,0 +19900114,2100,31,1,0 +19900114,2100,32,1,0 +19900114,2100,33,1,0 +19900114,2100,34,1,0 +19900114,2100,35,111,7 +19900114,2100,36,111,28 +19900114,2100,37,111,100 +19900114,2100,38,111,289 +19900114,2100,39,111,7 +19900114,2100,40,111,28 +19900114,2100,41,111,100 +19900114,2100,42,111,289 +19900114,2100,44,1,0 +19900114,2100,45,1,0 +19900114,2100,49,1,0 +19900114,2100,50,1,0 +19900114,2100,57,1,0 +19900114,2100,58,1,0 +19900114,2100,123,1,0 +19900114,2100,139,111,7 +19900114,2100,141,1,0 +19900114,2100,142,1,0 +19900114,2100,143,1,0 +19900114,2100,144,1,0 +19900114,2100,145,1,0 +19900114,2100,146,1,0 +19900114,2100,147,1,0 +19900114,2100,148,1,0 +19900114,2100,169,1,0 +19900114,2100,170,111,28 +19900114,2100,172,1,0 +19900114,2100,175,1,0 +19900114,2100,176,1,0 +19900114,2100,177,1,0 +19900114,2100,178,1,0 +19900114,2100,179,1,0 +19900114,2100,180,1,0 +19900114,2100,181,1,0 +19900114,2100,182,1,0 +19900114,2100,183,111,100 +19900114,2100,189,1,0 +19900114,2100,195,1,0 +19900114,2100,196,1,0 +19900114,2100,197,1,0 +19900114,2100,198,1,0 +19900114,2100,201,1,0 +19900114,2100,202,1,0 +19900114,2100,205,1,0 +19900114,2100,208,1,0 +19900114,2100,209,1,0 +19900114,2100,210,1,0 +19900114,2100,211,1,0 +19900114,2100,212,1,0 +19900114,2100,213,1,0 +19900114,2100,228,1,0 +19900114,2100,235,1,0 +19900114,2100,236,111,289 +19900114,2100,238,1,0 +19900114,2100,59,1,0 +19900114,2100,78,1,0 +19900114,2100,79,1,0 +19900114,2100,136,1,0 +19900114,2100,137,1,0 +19900114,2100,151,1,0 +19900114,2100,159,1,0 +19900114,2100,164,1,0 +19900114,2100,165,1,0 +19900114,2100,166,1,0 +19900114,2100,167,1,0 +19900114,2100,168,1,0 +19900114,2100,186,1,0 +19900114,2100,187,1,0 +19900114,2100,188,1,0 +19900114,2100,229,1,0 +19900114,2100,230,1,0 +19900114,2100,231,1,0 +19900114,2100,232,1,0 +19900114,2100,243,1,0 +19900114,2100,244,1,0 +19900114,2100,245,1,0 +19900114,2100,228246,1,0 +19900114,2100,228247,1,0 +19900115,0,133,100,1000 +19900115,0,133,100,975 +19900115,0,133,100,950 +19900115,0,133,100,925 +19900115,0,133,100,900 +19900115,0,133,100,875 +19900115,0,133,100,850 +19900115,0,133,100,825 +19900115,0,133,100,800 +19900115,0,133,100,775 +19900115,0,133,100,750 +19900115,0,133,100,740 +19900115,0,133,100,700 +19900115,0,133,100,650 +19900115,0,133,100,620 +19900115,0,133,100,600 +19900115,0,133,100,550 +19900115,0,133,100,500 +19900115,0,133,100,450 +19900115,0,133,100,400 +19900115,0,133,100,375 +19900115,0,133,100,350 +19900115,0,133,100,300 +19900115,0,133,100,250 +19900115,0,133,100,245 +19900115,0,133,100,225 +19900115,0,133,100,200 +19900115,0,133,100,175 +19900115,0,133,100,150 +19900115,0,133,100,125 +19900115,0,133,100,100 +19900115,0,133,100,70 +19900115,0,133,100,50 +19900115,0,133,100,30 +19900115,0,133,100,20 +19900115,0,133,100,10 +19900115,0,133,100,9 +19900115,0,133,100,7 +19900115,0,133,100,5 +19900115,0,133,100,3 +19900115,0,133,100,2 +19900115,0,133,100,1 +19900115,0,133,210,40 +19900115,0,3,117,2000 +19900115,0,133,109,1 +19900115,0,133,109,2 +19900115,0,133,109,3 +19900115,0,133,109,4 +19900115,0,133,109,5 +19900115,0,133,109,6 +19900115,0,133,109,7 +19900115,0,133,109,8 +19900115,0,133,109,9 +19900115,0,133,109,10 +19900115,0,246,109,1 +19900115,0,246,109,2 +19900115,0,246,109,3 +19900115,0,246,109,4 +19900115,0,246,109,5 +19900115,0,246,109,6 +19900115,0,246,109,7 +19900115,0,246,109,8 +19900115,0,246,109,9 +19900115,0,246,109,10 +19900115,0,247,109,1 +19900115,0,247,109,2 +19900115,0,247,109,3 +19900115,0,247,109,4 +19900115,0,247,109,5 +19900115,0,247,109,6 +19900115,0,247,109,7 +19900115,0,247,109,8 +19900115,0,247,109,9 +19900115,0,247,109,10 +19900115,0,248,109,1 +19900115,0,248,109,2 +19900115,0,248,109,3 +19900115,0,248,109,4 +19900115,0,248,109,5 +19900115,0,248,109,6 +19900115,0,248,109,7 +19900115,0,248,109,8 +19900115,0,248,109,9 +19900115,0,248,109,10 +19900115,0,8,1,0 +19900115,0,31,1,0 +19900115,0,32,1,0 +19900115,0,33,1,0 +19900115,0,34,1,0 +19900115,0,35,111,7 +19900115,0,36,111,28 +19900115,0,37,111,100 +19900115,0,38,111,289 +19900115,0,39,111,7 +19900115,0,40,111,28 +19900115,0,41,111,100 +19900115,0,42,111,289 +19900115,0,44,1,0 +19900115,0,45,1,0 +19900115,0,49,1,0 +19900115,0,50,1,0 +19900115,0,57,1,0 +19900115,0,58,1,0 +19900115,0,123,1,0 +19900115,0,139,111,7 +19900115,0,141,1,0 +19900115,0,142,1,0 +19900115,0,143,1,0 +19900115,0,144,1,0 +19900115,0,145,1,0 +19900115,0,146,1,0 +19900115,0,147,1,0 +19900115,0,148,1,0 +19900115,0,169,1,0 +19900115,0,170,111,28 +19900115,0,172,1,0 +19900115,0,175,1,0 +19900115,0,176,1,0 +19900115,0,177,1,0 +19900115,0,178,1,0 +19900115,0,179,1,0 +19900115,0,180,1,0 +19900115,0,181,1,0 +19900115,0,182,1,0 +19900115,0,183,111,100 +19900115,0,189,1,0 +19900115,0,195,1,0 +19900115,0,196,1,0 +19900115,0,197,1,0 +19900115,0,198,1,0 +19900115,0,201,1,0 +19900115,0,202,1,0 +19900115,0,205,1,0 +19900115,0,208,1,0 +19900115,0,209,1,0 +19900115,0,210,1,0 +19900115,0,211,1,0 +19900115,0,212,1,0 +19900115,0,213,1,0 +19900115,0,228,1,0 +19900115,0,235,1,0 +19900115,0,236,111,289 +19900115,0,238,1,0 +19900115,0,59,1,0 +19900115,0,78,1,0 +19900115,0,79,1,0 +19900115,0,136,1,0 +19900115,0,137,1,0 +19900115,0,151,1,0 +19900115,0,159,1,0 +19900115,0,164,1,0 +19900115,0,165,1,0 +19900115,0,166,1,0 +19900115,0,167,1,0 +19900115,0,168,1,0 +19900115,0,186,1,0 +19900115,0,187,1,0 +19900115,0,188,1,0 +19900115,0,229,1,0 +19900115,0,230,1,0 +19900115,0,231,1,0 +19900115,0,232,1,0 +19900115,0,243,1,0 +19900115,0,244,1,0 +19900115,0,245,1,0 +19900115,0,228246,1,0 +19900115,0,228247,1,0 +19900115,300,8,1,0 +19900115,300,31,1,0 +19900115,300,32,1,0 +19900115,300,33,1,0 +19900115,300,34,1,0 +19900115,300,35,111,7 +19900115,300,36,111,28 +19900115,300,37,111,100 +19900115,300,38,111,289 +19900115,300,39,111,7 +19900115,300,40,111,28 +19900115,300,41,111,100 +19900115,300,42,111,289 +19900115,300,44,1,0 +19900115,300,45,1,0 +19900115,300,49,1,0 +19900115,300,50,1,0 +19900115,300,57,1,0 +19900115,300,58,1,0 +19900115,300,123,1,0 +19900115,300,139,111,7 +19900115,300,141,1,0 +19900115,300,142,1,0 +19900115,300,143,1,0 +19900115,300,144,1,0 +19900115,300,145,1,0 +19900115,300,146,1,0 +19900115,300,147,1,0 +19900115,300,148,1,0 +19900115,300,169,1,0 +19900115,300,170,111,28 +19900115,300,172,1,0 +19900115,300,175,1,0 +19900115,300,176,1,0 +19900115,300,177,1,0 +19900115,300,178,1,0 +19900115,300,179,1,0 +19900115,300,180,1,0 +19900115,300,181,1,0 +19900115,300,182,1,0 +19900115,300,183,111,100 +19900115,300,189,1,0 +19900115,300,195,1,0 +19900115,300,196,1,0 +19900115,300,197,1,0 +19900115,300,198,1,0 +19900115,300,201,1,0 +19900115,300,202,1,0 +19900115,300,205,1,0 +19900115,300,208,1,0 +19900115,300,209,1,0 +19900115,300,210,1,0 +19900115,300,211,1,0 +19900115,300,212,1,0 +19900115,300,213,1,0 +19900115,300,228,1,0 +19900115,300,235,1,0 +19900115,300,236,111,289 +19900115,300,238,1,0 +19900115,300,59,1,0 +19900115,300,78,1,0 +19900115,300,79,1,0 +19900115,300,136,1,0 +19900115,300,137,1,0 +19900115,300,151,1,0 +19900115,300,159,1,0 +19900115,300,164,1,0 +19900115,300,165,1,0 +19900115,300,166,1,0 +19900115,300,167,1,0 +19900115,300,168,1,0 +19900115,300,186,1,0 +19900115,300,187,1,0 +19900115,300,188,1,0 +19900115,300,229,1,0 +19900115,300,230,1,0 +19900115,300,231,1,0 +19900115,300,232,1,0 +19900115,300,243,1,0 +19900115,300,244,1,0 +19900115,300,245,1,0 +19900115,300,228246,1,0 +19900115,300,228247,1,0 +19900115,600,133,100,1000 +19900115,600,133,100,975 +19900115,600,133,100,950 +19900115,600,133,100,925 +19900115,600,133,100,900 +19900115,600,133,100,875 +19900115,600,133,100,850 +19900115,600,133,100,825 +19900115,600,133,100,800 +19900115,600,133,100,775 +19900115,600,133,100,750 +19900115,600,133,100,740 +19900115,600,133,100,700 +19900115,600,133,100,650 +19900115,600,133,100,620 +19900115,600,133,100,600 +19900115,600,133,100,550 +19900115,600,133,100,500 +19900115,600,133,100,450 +19900115,600,133,100,400 +19900115,600,133,100,375 +19900115,600,133,100,350 +19900115,600,133,100,300 +19900115,600,133,100,250 +19900115,600,133,100,245 +19900115,600,133,100,225 +19900115,600,133,100,200 +19900115,600,133,100,175 +19900115,600,133,100,150 +19900115,600,133,100,125 +19900115,600,133,100,100 +19900115,600,133,100,70 +19900115,600,133,100,50 +19900115,600,133,100,30 +19900115,600,133,100,20 +19900115,600,133,100,10 +19900115,600,133,100,9 +19900115,600,133,100,7 +19900115,600,133,100,5 +19900115,600,133,100,3 +19900115,600,133,100,2 +19900115,600,133,100,1 +19900115,600,133,210,40 +19900115,600,3,117,2000 +19900115,600,133,109,1 +19900115,600,133,109,2 +19900115,600,133,109,3 +19900115,600,133,109,4 +19900115,600,133,109,5 +19900115,600,133,109,6 +19900115,600,133,109,7 +19900115,600,133,109,8 +19900115,600,133,109,9 +19900115,600,133,109,10 +19900115,600,246,109,1 +19900115,600,246,109,2 +19900115,600,246,109,3 +19900115,600,246,109,4 +19900115,600,246,109,5 +19900115,600,246,109,6 +19900115,600,246,109,7 +19900115,600,246,109,8 +19900115,600,246,109,9 +19900115,600,246,109,10 +19900115,600,247,109,1 +19900115,600,247,109,2 +19900115,600,247,109,3 +19900115,600,247,109,4 +19900115,600,247,109,5 +19900115,600,247,109,6 +19900115,600,247,109,7 +19900115,600,247,109,8 +19900115,600,247,109,9 +19900115,600,247,109,10 +19900115,600,248,109,1 +19900115,600,248,109,2 +19900115,600,248,109,3 +19900115,600,248,109,4 +19900115,600,248,109,5 +19900115,600,248,109,6 +19900115,600,248,109,7 +19900115,600,248,109,8 +19900115,600,248,109,9 +19900115,600,248,109,10 +19900115,600,8,1,0 +19900115,600,31,1,0 +19900115,600,32,1,0 +19900115,600,33,1,0 +19900115,600,34,1,0 +19900115,600,35,111,7 +19900115,600,36,111,28 +19900115,600,37,111,100 +19900115,600,38,111,289 +19900115,600,39,111,7 +19900115,600,40,111,28 +19900115,600,41,111,100 +19900115,600,42,111,289 +19900115,600,44,1,0 +19900115,600,45,1,0 +19900115,600,49,1,0 +19900115,600,50,1,0 +19900115,600,57,1,0 +19900115,600,58,1,0 +19900115,600,123,1,0 +19900115,600,139,111,7 +19900115,600,141,1,0 +19900115,600,142,1,0 +19900115,600,143,1,0 +19900115,600,144,1,0 +19900115,600,145,1,0 +19900115,600,146,1,0 +19900115,600,147,1,0 +19900115,600,148,1,0 +19900115,600,169,1,0 +19900115,600,170,111,28 +19900115,600,172,1,0 +19900115,600,175,1,0 +19900115,600,176,1,0 +19900115,600,177,1,0 +19900115,600,178,1,0 +19900115,600,179,1,0 +19900115,600,180,1,0 +19900115,600,181,1,0 +19900115,600,182,1,0 +19900115,600,183,111,100 +19900115,600,189,1,0 +19900115,600,195,1,0 +19900115,600,196,1,0 +19900115,600,197,1,0 +19900115,600,198,1,0 +19900115,600,201,1,0 +19900115,600,202,1,0 +19900115,600,205,1,0 +19900115,600,208,1,0 +19900115,600,209,1,0 +19900115,600,210,1,0 +19900115,600,211,1,0 +19900115,600,212,1,0 +19900115,600,213,1,0 +19900115,600,228,1,0 +19900115,600,235,1,0 +19900115,600,236,111,289 +19900115,600,238,1,0 +19900115,600,59,1,0 +19900115,600,78,1,0 +19900115,600,79,1,0 +19900115,600,136,1,0 +19900115,600,137,1,0 +19900115,600,151,1,0 +19900115,600,159,1,0 +19900115,600,164,1,0 +19900115,600,165,1,0 +19900115,600,166,1,0 +19900115,600,167,1,0 +19900115,600,168,1,0 +19900115,600,186,1,0 +19900115,600,187,1,0 +19900115,600,188,1,0 +19900115,600,229,1,0 +19900115,600,230,1,0 +19900115,600,231,1,0 +19900115,600,232,1,0 +19900115,600,243,1,0 +19900115,600,244,1,0 +19900115,600,245,1,0 +19900115,600,228246,1,0 +19900115,600,228247,1,0 +19900115,900,8,1,0 +19900115,900,31,1,0 +19900115,900,32,1,0 +19900115,900,33,1,0 +19900115,900,34,1,0 +19900115,900,35,111,7 +19900115,900,36,111,28 +19900115,900,37,111,100 +19900115,900,38,111,289 +19900115,900,39,111,7 +19900115,900,40,111,28 +19900115,900,41,111,100 +19900115,900,42,111,289 +19900115,900,44,1,0 +19900115,900,45,1,0 +19900115,900,49,1,0 +19900115,900,50,1,0 +19900115,900,57,1,0 +19900115,900,58,1,0 +19900115,900,123,1,0 +19900115,900,139,111,7 +19900115,900,141,1,0 +19900115,900,142,1,0 +19900115,900,143,1,0 +19900115,900,144,1,0 +19900115,900,145,1,0 +19900115,900,146,1,0 +19900115,900,147,1,0 +19900115,900,148,1,0 +19900115,900,169,1,0 +19900115,900,170,111,28 +19900115,900,172,1,0 +19900115,900,175,1,0 +19900115,900,176,1,0 +19900115,900,177,1,0 +19900115,900,178,1,0 +19900115,900,179,1,0 +19900115,900,180,1,0 +19900115,900,181,1,0 +19900115,900,182,1,0 +19900115,900,183,111,100 +19900115,900,189,1,0 +19900115,900,195,1,0 +19900115,900,196,1,0 +19900115,900,197,1,0 +19900115,900,198,1,0 +19900115,900,201,1,0 +19900115,900,202,1,0 +19900115,900,205,1,0 +19900115,900,208,1,0 +19900115,900,209,1,0 +19900115,900,210,1,0 +19900115,900,211,1,0 +19900115,900,212,1,0 +19900115,900,213,1,0 +19900115,900,228,1,0 +19900115,900,235,1,0 +19900115,900,236,111,289 +19900115,900,238,1,0 +19900115,900,59,1,0 +19900115,900,78,1,0 +19900115,900,79,1,0 +19900115,900,136,1,0 +19900115,900,137,1,0 +19900115,900,151,1,0 +19900115,900,159,1,0 +19900115,900,164,1,0 +19900115,900,165,1,0 +19900115,900,166,1,0 +19900115,900,167,1,0 +19900115,900,168,1,0 +19900115,900,186,1,0 +19900115,900,187,1,0 +19900115,900,188,1,0 +19900115,900,229,1,0 +19900115,900,230,1,0 +19900115,900,231,1,0 +19900115,900,232,1,0 +19900115,900,243,1,0 +19900115,900,244,1,0 +19900115,900,245,1,0 +19900115,900,228246,1,0 +19900115,900,228247,1,0 +19900115,1200,133,100,1000 +19900115,1200,133,100,975 +19900115,1200,133,100,950 +19900115,1200,133,100,925 +19900115,1200,133,100,900 +19900115,1200,133,100,875 +19900115,1200,133,100,850 +19900115,1200,133,100,825 +19900115,1200,133,100,800 +19900115,1200,133,100,775 +19900115,1200,133,100,750 +19900115,1200,133,100,740 +19900115,1200,133,100,700 +19900115,1200,133,100,650 +19900115,1200,133,100,620 +19900115,1200,133,100,600 +19900115,1200,133,100,550 +19900115,1200,133,100,500 +19900115,1200,133,100,450 +19900115,1200,133,100,400 +19900115,1200,133,100,375 +19900115,1200,133,100,350 +19900115,1200,133,100,300 +19900115,1200,133,100,250 +19900115,1200,133,100,245 +19900115,1200,133,100,225 +19900115,1200,133,100,200 +19900115,1200,133,100,175 +19900115,1200,133,100,150 +19900115,1200,133,100,125 +19900115,1200,133,100,100 +19900115,1200,133,100,70 +19900115,1200,133,100,50 +19900115,1200,133,100,30 +19900115,1200,133,100,20 +19900115,1200,133,100,10 +19900115,1200,133,100,9 +19900115,1200,133,100,7 +19900115,1200,133,100,5 +19900115,1200,133,100,3 +19900115,1200,133,100,2 +19900115,1200,133,100,1 +19900115,1200,133,210,40 +19900115,1200,3,117,2000 +19900115,1200,133,109,1 +19900115,1200,133,109,2 +19900115,1200,133,109,3 +19900115,1200,133,109,4 +19900115,1200,133,109,5 +19900115,1200,133,109,6 +19900115,1200,133,109,7 +19900115,1200,133,109,8 +19900115,1200,133,109,9 +19900115,1200,133,109,10 +19900115,1200,246,109,1 +19900115,1200,246,109,2 +19900115,1200,246,109,3 +19900115,1200,246,109,4 +19900115,1200,246,109,5 +19900115,1200,246,109,6 +19900115,1200,246,109,7 +19900115,1200,246,109,8 +19900115,1200,246,109,9 +19900115,1200,246,109,10 +19900115,1200,247,109,1 +19900115,1200,247,109,2 +19900115,1200,247,109,3 +19900115,1200,247,109,4 +19900115,1200,247,109,5 +19900115,1200,247,109,6 +19900115,1200,247,109,7 +19900115,1200,247,109,8 +19900115,1200,247,109,9 +19900115,1200,247,109,10 +19900115,1200,248,109,1 +19900115,1200,248,109,2 +19900115,1200,248,109,3 +19900115,1200,248,109,4 +19900115,1200,248,109,5 +19900115,1200,248,109,6 +19900115,1200,248,109,7 +19900115,1200,248,109,8 +19900115,1200,248,109,9 +19900115,1200,248,109,10 +19900115,1200,8,1,0 +19900115,1200,31,1,0 +19900115,1200,32,1,0 +19900115,1200,33,1,0 +19900115,1200,34,1,0 +19900115,1200,35,111,7 +19900115,1200,36,111,28 +19900115,1200,37,111,100 +19900115,1200,38,111,289 +19900115,1200,39,111,7 +19900115,1200,40,111,28 +19900115,1200,41,111,100 +19900115,1200,42,111,289 +19900115,1200,44,1,0 +19900115,1200,45,1,0 +19900115,1200,49,1,0 +19900115,1200,50,1,0 +19900115,1200,57,1,0 +19900115,1200,58,1,0 +19900115,1200,123,1,0 +19900115,1200,139,111,7 +19900115,1200,141,1,0 +19900115,1200,142,1,0 +19900115,1200,143,1,0 +19900115,1200,144,1,0 +19900115,1200,145,1,0 +19900115,1200,146,1,0 +19900115,1200,147,1,0 +19900115,1200,148,1,0 +19900115,1200,169,1,0 +19900115,1200,170,111,28 +19900115,1200,172,1,0 +19900115,1200,175,1,0 +19900115,1200,176,1,0 +19900115,1200,177,1,0 +19900115,1200,178,1,0 +19900115,1200,179,1,0 +19900115,1200,180,1,0 +19900115,1200,181,1,0 +19900115,1200,182,1,0 +19900115,1200,183,111,100 +19900115,1200,189,1,0 +19900115,1200,195,1,0 +19900115,1200,196,1,0 +19900115,1200,197,1,0 +19900115,1200,198,1,0 +19900115,1200,201,1,0 +19900115,1200,202,1,0 +19900115,1200,205,1,0 +19900115,1200,208,1,0 +19900115,1200,209,1,0 +19900115,1200,210,1,0 +19900115,1200,211,1,0 +19900115,1200,212,1,0 +19900115,1200,213,1,0 +19900115,1200,228,1,0 +19900115,1200,235,1,0 +19900115,1200,236,111,289 +19900115,1200,238,1,0 +19900115,1200,59,1,0 +19900115,1200,78,1,0 +19900115,1200,79,1,0 +19900115,1200,136,1,0 +19900115,1200,137,1,0 +19900115,1200,151,1,0 +19900115,1200,159,1,0 +19900115,1200,164,1,0 +19900115,1200,165,1,0 +19900115,1200,166,1,0 +19900115,1200,167,1,0 +19900115,1200,168,1,0 +19900115,1200,186,1,0 +19900115,1200,187,1,0 +19900115,1200,188,1,0 +19900115,1200,229,1,0 +19900115,1200,230,1,0 +19900115,1200,231,1,0 +19900115,1200,232,1,0 +19900115,1200,243,1,0 +19900115,1200,244,1,0 +19900115,1200,245,1,0 +19900115,1200,228246,1,0 +19900115,1200,228247,1,0 +19900115,1500,8,1,0 +19900115,1500,31,1,0 +19900115,1500,32,1,0 +19900115,1500,33,1,0 +19900115,1500,34,1,0 +19900115,1500,35,111,7 +19900115,1500,36,111,28 +19900115,1500,37,111,100 +19900115,1500,38,111,289 +19900115,1500,39,111,7 +19900115,1500,40,111,28 +19900115,1500,41,111,100 +19900115,1500,42,111,289 +19900115,1500,44,1,0 +19900115,1500,45,1,0 +19900115,1500,49,1,0 +19900115,1500,50,1,0 +19900115,1500,57,1,0 +19900115,1500,58,1,0 +19900115,1500,123,1,0 +19900115,1500,139,111,7 +19900115,1500,141,1,0 +19900115,1500,142,1,0 +19900115,1500,143,1,0 +19900115,1500,144,1,0 +19900115,1500,145,1,0 +19900115,1500,146,1,0 +19900115,1500,147,1,0 +19900115,1500,148,1,0 +19900115,1500,169,1,0 +19900115,1500,170,111,28 +19900115,1500,172,1,0 +19900115,1500,175,1,0 +19900115,1500,176,1,0 +19900115,1500,177,1,0 +19900115,1500,178,1,0 +19900115,1500,179,1,0 +19900115,1500,180,1,0 +19900115,1500,181,1,0 +19900115,1500,182,1,0 +19900115,1500,183,111,100 +19900115,1500,189,1,0 +19900115,1500,195,1,0 +19900115,1500,196,1,0 +19900115,1500,197,1,0 +19900115,1500,198,1,0 +19900115,1500,201,1,0 +19900115,1500,202,1,0 +19900115,1500,205,1,0 +19900115,1500,208,1,0 +19900115,1500,209,1,0 +19900115,1500,210,1,0 +19900115,1500,211,1,0 +19900115,1500,212,1,0 +19900115,1500,213,1,0 +19900115,1500,228,1,0 +19900115,1500,235,1,0 +19900115,1500,236,111,289 +19900115,1500,238,1,0 +19900115,1500,59,1,0 +19900115,1500,78,1,0 +19900115,1500,79,1,0 +19900115,1500,136,1,0 +19900115,1500,137,1,0 +19900115,1500,151,1,0 +19900115,1500,159,1,0 +19900115,1500,164,1,0 +19900115,1500,165,1,0 +19900115,1500,166,1,0 +19900115,1500,167,1,0 +19900115,1500,168,1,0 +19900115,1500,186,1,0 +19900115,1500,187,1,0 +19900115,1500,188,1,0 +19900115,1500,229,1,0 +19900115,1500,230,1,0 +19900115,1500,231,1,0 +19900115,1500,232,1,0 +19900115,1500,243,1,0 +19900115,1500,244,1,0 +19900115,1500,245,1,0 +19900115,1500,228246,1,0 +19900115,1500,228247,1,0 +19900115,1800,133,100,1000 +19900115,1800,133,100,975 +19900115,1800,133,100,950 +19900115,1800,133,100,925 +19900115,1800,133,100,900 +19900115,1800,133,100,875 +19900115,1800,133,100,850 +19900115,1800,133,100,825 +19900115,1800,133,100,800 +19900115,1800,133,100,775 +19900115,1800,133,100,750 +19900115,1800,133,100,740 +19900115,1800,133,100,700 +19900115,1800,133,100,650 +19900115,1800,133,100,620 +19900115,1800,133,100,600 +19900115,1800,133,100,550 +19900115,1800,133,100,500 +19900115,1800,133,100,450 +19900115,1800,133,100,400 +19900115,1800,133,100,375 +19900115,1800,133,100,350 +19900115,1800,133,100,300 +19900115,1800,133,100,250 +19900115,1800,133,100,245 +19900115,1800,133,100,225 +19900115,1800,133,100,200 +19900115,1800,133,100,175 +19900115,1800,133,100,150 +19900115,1800,133,100,125 +19900115,1800,133,100,100 +19900115,1800,133,100,70 +19900115,1800,133,100,50 +19900115,1800,133,100,30 +19900115,1800,133,100,20 +19900115,1800,133,100,10 +19900115,1800,133,100,9 +19900115,1800,133,100,7 +19900115,1800,133,100,5 +19900115,1800,133,100,3 +19900115,1800,133,100,2 +19900115,1800,133,100,1 +19900115,1800,133,210,40 +19900115,1800,3,117,2000 +19900115,1800,133,109,1 +19900115,1800,133,109,2 +19900115,1800,133,109,3 +19900115,1800,133,109,4 +19900115,1800,133,109,5 +19900115,1800,133,109,6 +19900115,1800,133,109,7 +19900115,1800,133,109,8 +19900115,1800,133,109,9 +19900115,1800,133,109,10 +19900115,1800,246,109,1 +19900115,1800,246,109,2 +19900115,1800,246,109,3 +19900115,1800,246,109,4 +19900115,1800,246,109,5 +19900115,1800,246,109,6 +19900115,1800,246,109,7 +19900115,1800,246,109,8 +19900115,1800,246,109,9 +19900115,1800,246,109,10 +19900115,1800,247,109,1 +19900115,1800,247,109,2 +19900115,1800,247,109,3 +19900115,1800,247,109,4 +19900115,1800,247,109,5 +19900115,1800,247,109,6 +19900115,1800,247,109,7 +19900115,1800,247,109,8 +19900115,1800,247,109,9 +19900115,1800,247,109,10 +19900115,1800,248,109,1 +19900115,1800,248,109,2 +19900115,1800,248,109,3 +19900115,1800,248,109,4 +19900115,1800,248,109,5 +19900115,1800,248,109,6 +19900115,1800,248,109,7 +19900115,1800,248,109,8 +19900115,1800,248,109,9 +19900115,1800,248,109,10 +19900115,1800,8,1,0 +19900115,1800,31,1,0 +19900115,1800,32,1,0 +19900115,1800,33,1,0 +19900115,1800,34,1,0 +19900115,1800,35,111,7 +19900115,1800,36,111,28 +19900115,1800,37,111,100 +19900115,1800,38,111,289 +19900115,1800,39,111,7 +19900115,1800,40,111,28 +19900115,1800,41,111,100 +19900115,1800,42,111,289 +19900115,1800,44,1,0 +19900115,1800,45,1,0 +19900115,1800,49,1,0 +19900115,1800,50,1,0 +19900115,1800,57,1,0 +19900115,1800,58,1,0 +19900115,1800,123,1,0 +19900115,1800,139,111,7 +19900115,1800,141,1,0 +19900115,1800,142,1,0 +19900115,1800,143,1,0 +19900115,1800,144,1,0 +19900115,1800,145,1,0 +19900115,1800,146,1,0 +19900115,1800,147,1,0 +19900115,1800,148,1,0 +19900115,1800,169,1,0 +19900115,1800,170,111,28 +19900115,1800,172,1,0 +19900115,1800,175,1,0 +19900115,1800,176,1,0 +19900115,1800,177,1,0 +19900115,1800,178,1,0 +19900115,1800,179,1,0 +19900115,1800,180,1,0 +19900115,1800,181,1,0 +19900115,1800,182,1,0 +19900115,1800,183,111,100 +19900115,1800,189,1,0 +19900115,1800,195,1,0 +19900115,1800,196,1,0 +19900115,1800,197,1,0 +19900115,1800,198,1,0 +19900115,1800,201,1,0 +19900115,1800,202,1,0 +19900115,1800,205,1,0 +19900115,1800,208,1,0 +19900115,1800,209,1,0 +19900115,1800,210,1,0 +19900115,1800,211,1,0 +19900115,1800,212,1,0 +19900115,1800,213,1,0 +19900115,1800,228,1,0 +19900115,1800,235,1,0 +19900115,1800,236,111,289 +19900115,1800,238,1,0 +19900115,1800,59,1,0 +19900115,1800,78,1,0 +19900115,1800,79,1,0 +19900115,1800,136,1,0 +19900115,1800,137,1,0 +19900115,1800,151,1,0 +19900115,1800,159,1,0 +19900115,1800,164,1,0 +19900115,1800,165,1,0 +19900115,1800,166,1,0 +19900115,1800,167,1,0 +19900115,1800,168,1,0 +19900115,1800,186,1,0 +19900115,1800,187,1,0 +19900115,1800,188,1,0 +19900115,1800,229,1,0 +19900115,1800,230,1,0 +19900115,1800,231,1,0 +19900115,1800,232,1,0 +19900115,1800,243,1,0 +19900115,1800,244,1,0 +19900115,1800,245,1,0 +19900115,1800,228246,1,0 +19900115,1800,228247,1,0 +19900115,2100,8,1,0 +19900115,2100,31,1,0 +19900115,2100,32,1,0 +19900115,2100,33,1,0 +19900115,2100,34,1,0 +19900115,2100,35,111,7 +19900115,2100,36,111,28 +19900115,2100,37,111,100 +19900115,2100,38,111,289 +19900115,2100,39,111,7 +19900115,2100,40,111,28 +19900115,2100,41,111,100 +19900115,2100,42,111,289 +19900115,2100,44,1,0 +19900115,2100,45,1,0 +19900115,2100,49,1,0 +19900115,2100,50,1,0 +19900115,2100,57,1,0 +19900115,2100,58,1,0 +19900115,2100,123,1,0 +19900115,2100,139,111,7 +19900115,2100,141,1,0 +19900115,2100,142,1,0 +19900115,2100,143,1,0 +19900115,2100,144,1,0 +19900115,2100,145,1,0 +19900115,2100,146,1,0 +19900115,2100,147,1,0 +19900115,2100,148,1,0 +19900115,2100,169,1,0 +19900115,2100,170,111,28 +19900115,2100,172,1,0 +19900115,2100,175,1,0 +19900115,2100,176,1,0 +19900115,2100,177,1,0 +19900115,2100,178,1,0 +19900115,2100,179,1,0 +19900115,2100,180,1,0 +19900115,2100,181,1,0 +19900115,2100,182,1,0 +19900115,2100,183,111,100 +19900115,2100,189,1,0 +19900115,2100,195,1,0 +19900115,2100,196,1,0 +19900115,2100,197,1,0 +19900115,2100,198,1,0 +19900115,2100,201,1,0 +19900115,2100,202,1,0 +19900115,2100,205,1,0 +19900115,2100,208,1,0 +19900115,2100,209,1,0 +19900115,2100,210,1,0 +19900115,2100,211,1,0 +19900115,2100,212,1,0 +19900115,2100,213,1,0 +19900115,2100,228,1,0 +19900115,2100,235,1,0 +19900115,2100,236,111,289 +19900115,2100,238,1,0 +19900115,2100,59,1,0 +19900115,2100,78,1,0 +19900115,2100,79,1,0 +19900115,2100,136,1,0 +19900115,2100,137,1,0 +19900115,2100,151,1,0 +19900115,2100,159,1,0 +19900115,2100,164,1,0 +19900115,2100,165,1,0 +19900115,2100,166,1,0 +19900115,2100,167,1,0 +19900115,2100,168,1,0 +19900115,2100,186,1,0 +19900115,2100,187,1,0 +19900115,2100,188,1,0 +19900115,2100,229,1,0 +19900115,2100,230,1,0 +19900115,2100,231,1,0 +19900115,2100,232,1,0 +19900115,2100,243,1,0 +19900115,2100,244,1,0 +19900115,2100,245,1,0 +19900115,2100,228246,1,0 +19900115,2100,228247,1,0 +19900116,0,133,100,1000 +19900116,0,133,100,975 +19900116,0,133,100,950 +19900116,0,133,100,925 +19900116,0,133,100,900 +19900116,0,133,100,875 +19900116,0,133,100,850 +19900116,0,133,100,825 +19900116,0,133,100,800 +19900116,0,133,100,775 +19900116,0,133,100,750 +19900116,0,133,100,740 +19900116,0,133,100,700 +19900116,0,133,100,650 +19900116,0,133,100,620 +19900116,0,133,100,600 +19900116,0,133,100,550 +19900116,0,133,100,500 +19900116,0,133,100,450 +19900116,0,133,100,400 +19900116,0,133,100,375 +19900116,0,133,100,350 +19900116,0,133,100,300 +19900116,0,133,100,250 +19900116,0,133,100,245 +19900116,0,133,100,225 +19900116,0,133,100,200 +19900116,0,133,100,175 +19900116,0,133,100,150 +19900116,0,133,100,125 +19900116,0,133,100,100 +19900116,0,133,100,70 +19900116,0,133,100,50 +19900116,0,133,100,30 +19900116,0,133,100,20 +19900116,0,133,100,10 +19900116,0,133,100,9 +19900116,0,133,100,7 +19900116,0,133,100,5 +19900116,0,133,100,3 +19900116,0,133,100,2 +19900116,0,133,100,1 +19900116,0,133,210,40 +19900116,0,3,117,2000 +19900116,0,133,109,1 +19900116,0,133,109,2 +19900116,0,133,109,3 +19900116,0,133,109,4 +19900116,0,133,109,5 +19900116,0,133,109,6 +19900116,0,133,109,7 +19900116,0,133,109,8 +19900116,0,133,109,9 +19900116,0,133,109,10 +19900116,0,246,109,1 +19900116,0,246,109,2 +19900116,0,246,109,3 +19900116,0,246,109,4 +19900116,0,246,109,5 +19900116,0,246,109,6 +19900116,0,246,109,7 +19900116,0,246,109,8 +19900116,0,246,109,9 +19900116,0,246,109,10 +19900116,0,247,109,1 +19900116,0,247,109,2 +19900116,0,247,109,3 +19900116,0,247,109,4 +19900116,0,247,109,5 +19900116,0,247,109,6 +19900116,0,247,109,7 +19900116,0,247,109,8 +19900116,0,247,109,9 +19900116,0,247,109,10 +19900116,0,248,109,1 +19900116,0,248,109,2 +19900116,0,248,109,3 +19900116,0,248,109,4 +19900116,0,248,109,5 +19900116,0,248,109,6 +19900116,0,248,109,7 +19900116,0,248,109,8 +19900116,0,248,109,9 +19900116,0,248,109,10 +19900116,0,8,1,0 +19900116,0,31,1,0 +19900116,0,32,1,0 +19900116,0,33,1,0 +19900116,0,34,1,0 +19900116,0,35,111,7 +19900116,0,36,111,28 +19900116,0,37,111,100 +19900116,0,38,111,289 +19900116,0,39,111,7 +19900116,0,40,111,28 +19900116,0,41,111,100 +19900116,0,42,111,289 +19900116,0,44,1,0 +19900116,0,45,1,0 +19900116,0,49,1,0 +19900116,0,50,1,0 +19900116,0,57,1,0 +19900116,0,58,1,0 +19900116,0,123,1,0 +19900116,0,139,111,7 +19900116,0,141,1,0 +19900116,0,142,1,0 +19900116,0,143,1,0 +19900116,0,144,1,0 +19900116,0,145,1,0 +19900116,0,146,1,0 +19900116,0,147,1,0 +19900116,0,148,1,0 +19900116,0,169,1,0 +19900116,0,170,111,28 +19900116,0,172,1,0 +19900116,0,175,1,0 +19900116,0,176,1,0 +19900116,0,177,1,0 +19900116,0,178,1,0 +19900116,0,179,1,0 +19900116,0,180,1,0 +19900116,0,181,1,0 +19900116,0,182,1,0 +19900116,0,183,111,100 +19900116,0,189,1,0 +19900116,0,195,1,0 +19900116,0,196,1,0 +19900116,0,197,1,0 +19900116,0,198,1,0 +19900116,0,201,1,0 +19900116,0,202,1,0 +19900116,0,205,1,0 +19900116,0,208,1,0 +19900116,0,209,1,0 +19900116,0,210,1,0 +19900116,0,211,1,0 +19900116,0,212,1,0 +19900116,0,213,1,0 +19900116,0,228,1,0 +19900116,0,235,1,0 +19900116,0,236,111,289 +19900116,0,238,1,0 +19900116,0,59,1,0 +19900116,0,78,1,0 +19900116,0,79,1,0 +19900116,0,136,1,0 +19900116,0,137,1,0 +19900116,0,151,1,0 +19900116,0,159,1,0 +19900116,0,164,1,0 +19900116,0,165,1,0 +19900116,0,166,1,0 +19900116,0,167,1,0 +19900116,0,168,1,0 +19900116,0,186,1,0 +19900116,0,187,1,0 +19900116,0,188,1,0 +19900116,0,229,1,0 +19900116,0,230,1,0 +19900116,0,231,1,0 +19900116,0,232,1,0 +19900116,0,243,1,0 +19900116,0,244,1,0 +19900116,0,245,1,0 +19900116,0,228246,1,0 +19900116,0,228247,1,0 +19900116,300,8,1,0 +19900116,300,31,1,0 +19900116,300,32,1,0 +19900116,300,33,1,0 +19900116,300,34,1,0 +19900116,300,35,111,7 +19900116,300,36,111,28 +19900116,300,37,111,100 +19900116,300,38,111,289 +19900116,300,39,111,7 +19900116,300,40,111,28 +19900116,300,41,111,100 +19900116,300,42,111,289 +19900116,300,44,1,0 +19900116,300,45,1,0 +19900116,300,49,1,0 +19900116,300,50,1,0 +19900116,300,57,1,0 +19900116,300,58,1,0 +19900116,300,123,1,0 +19900116,300,139,111,7 +19900116,300,141,1,0 +19900116,300,142,1,0 +19900116,300,143,1,0 +19900116,300,144,1,0 +19900116,300,145,1,0 +19900116,300,146,1,0 +19900116,300,147,1,0 +19900116,300,148,1,0 +19900116,300,169,1,0 +19900116,300,170,111,28 +19900116,300,172,1,0 +19900116,300,175,1,0 +19900116,300,176,1,0 +19900116,300,177,1,0 +19900116,300,178,1,0 +19900116,300,179,1,0 +19900116,300,180,1,0 +19900116,300,181,1,0 +19900116,300,182,1,0 +19900116,300,183,111,100 +19900116,300,189,1,0 +19900116,300,195,1,0 +19900116,300,196,1,0 +19900116,300,197,1,0 +19900116,300,198,1,0 +19900116,300,201,1,0 +19900116,300,202,1,0 +19900116,300,205,1,0 +19900116,300,208,1,0 +19900116,300,209,1,0 +19900116,300,210,1,0 +19900116,300,211,1,0 +19900116,300,212,1,0 +19900116,300,213,1,0 +19900116,300,228,1,0 +19900116,300,235,1,0 +19900116,300,236,111,289 +19900116,300,238,1,0 +19900116,300,59,1,0 +19900116,300,78,1,0 +19900116,300,79,1,0 +19900116,300,136,1,0 +19900116,300,137,1,0 +19900116,300,151,1,0 +19900116,300,159,1,0 +19900116,300,164,1,0 +19900116,300,165,1,0 +19900116,300,166,1,0 +19900116,300,167,1,0 +19900116,300,168,1,0 +19900116,300,186,1,0 +19900116,300,187,1,0 +19900116,300,188,1,0 +19900116,300,229,1,0 +19900116,300,230,1,0 +19900116,300,231,1,0 +19900116,300,232,1,0 +19900116,300,243,1,0 +19900116,300,244,1,0 +19900116,300,245,1,0 +19900116,300,228246,1,0 +19900116,300,228247,1,0 +19900116,600,133,100,1000 +19900116,600,133,100,975 +19900116,600,133,100,950 +19900116,600,133,100,925 +19900116,600,133,100,900 +19900116,600,133,100,875 +19900116,600,133,100,850 +19900116,600,133,100,825 +19900116,600,133,100,800 +19900116,600,133,100,775 +19900116,600,133,100,750 +19900116,600,133,100,740 +19900116,600,133,100,700 +19900116,600,133,100,650 +19900116,600,133,100,620 +19900116,600,133,100,600 +19900116,600,133,100,550 +19900116,600,133,100,500 +19900116,600,133,100,450 +19900116,600,133,100,400 +19900116,600,133,100,375 +19900116,600,133,100,350 +19900116,600,133,100,300 +19900116,600,133,100,250 +19900116,600,133,100,245 +19900116,600,133,100,225 +19900116,600,133,100,200 +19900116,600,133,100,175 +19900116,600,133,100,150 +19900116,600,133,100,125 +19900116,600,133,100,100 +19900116,600,133,100,70 +19900116,600,133,100,50 +19900116,600,133,100,30 +19900116,600,133,100,20 +19900116,600,133,100,10 +19900116,600,133,100,9 +19900116,600,133,100,7 +19900116,600,133,100,5 +19900116,600,133,100,3 +19900116,600,133,100,2 +19900116,600,133,100,1 +19900116,600,133,210,40 +19900116,600,3,117,2000 +19900116,600,133,109,1 +19900116,600,133,109,2 +19900116,600,133,109,3 +19900116,600,133,109,4 +19900116,600,133,109,5 +19900116,600,133,109,6 +19900116,600,133,109,7 +19900116,600,133,109,8 +19900116,600,133,109,9 +19900116,600,133,109,10 +19900116,600,246,109,1 +19900116,600,246,109,2 +19900116,600,246,109,3 +19900116,600,246,109,4 +19900116,600,246,109,5 +19900116,600,246,109,6 +19900116,600,246,109,7 +19900116,600,246,109,8 +19900116,600,246,109,9 +19900116,600,246,109,10 +19900116,600,247,109,1 +19900116,600,247,109,2 +19900116,600,247,109,3 +19900116,600,247,109,4 +19900116,600,247,109,5 +19900116,600,247,109,6 +19900116,600,247,109,7 +19900116,600,247,109,8 +19900116,600,247,109,9 +19900116,600,247,109,10 +19900116,600,248,109,1 +19900116,600,248,109,2 +19900116,600,248,109,3 +19900116,600,248,109,4 +19900116,600,248,109,5 +19900116,600,248,109,6 +19900116,600,248,109,7 +19900116,600,248,109,8 +19900116,600,248,109,9 +19900116,600,248,109,10 +19900116,600,8,1,0 +19900116,600,31,1,0 +19900116,600,32,1,0 +19900116,600,33,1,0 +19900116,600,34,1,0 +19900116,600,35,111,7 +19900116,600,36,111,28 +19900116,600,37,111,100 +19900116,600,38,111,289 +19900116,600,39,111,7 +19900116,600,40,111,28 +19900116,600,41,111,100 +19900116,600,42,111,289 +19900116,600,44,1,0 +19900116,600,45,1,0 +19900116,600,49,1,0 +19900116,600,50,1,0 +19900116,600,57,1,0 +19900116,600,58,1,0 +19900116,600,123,1,0 +19900116,600,139,111,7 +19900116,600,141,1,0 +19900116,600,142,1,0 +19900116,600,143,1,0 +19900116,600,144,1,0 +19900116,600,145,1,0 +19900116,600,146,1,0 +19900116,600,147,1,0 +19900116,600,148,1,0 +19900116,600,169,1,0 +19900116,600,170,111,28 +19900116,600,172,1,0 +19900116,600,175,1,0 +19900116,600,176,1,0 +19900116,600,177,1,0 +19900116,600,178,1,0 +19900116,600,179,1,0 +19900116,600,180,1,0 +19900116,600,181,1,0 +19900116,600,182,1,0 +19900116,600,183,111,100 +19900116,600,189,1,0 +19900116,600,195,1,0 +19900116,600,196,1,0 +19900116,600,197,1,0 +19900116,600,198,1,0 +19900116,600,201,1,0 +19900116,600,202,1,0 +19900116,600,205,1,0 +19900116,600,208,1,0 +19900116,600,209,1,0 +19900116,600,210,1,0 +19900116,600,211,1,0 +19900116,600,212,1,0 +19900116,600,213,1,0 +19900116,600,228,1,0 +19900116,600,235,1,0 +19900116,600,236,111,289 +19900116,600,238,1,0 +19900116,600,59,1,0 +19900116,600,78,1,0 +19900116,600,79,1,0 +19900116,600,136,1,0 +19900116,600,137,1,0 +19900116,600,151,1,0 +19900116,600,159,1,0 +19900116,600,164,1,0 +19900116,600,165,1,0 +19900116,600,166,1,0 +19900116,600,167,1,0 +19900116,600,168,1,0 +19900116,600,186,1,0 +19900116,600,187,1,0 +19900116,600,188,1,0 +19900116,600,229,1,0 +19900116,600,230,1,0 +19900116,600,231,1,0 +19900116,600,232,1,0 +19900116,600,243,1,0 +19900116,600,244,1,0 +19900116,600,245,1,0 +19900116,600,228246,1,0 +19900116,600,228247,1,0 +19900116,900,8,1,0 +19900116,900,31,1,0 +19900116,900,32,1,0 +19900116,900,33,1,0 +19900116,900,34,1,0 +19900116,900,35,111,7 +19900116,900,36,111,28 +19900116,900,37,111,100 +19900116,900,38,111,289 +19900116,900,39,111,7 +19900116,900,40,111,28 +19900116,900,41,111,100 +19900116,900,42,111,289 +19900116,900,44,1,0 +19900116,900,45,1,0 +19900116,900,49,1,0 +19900116,900,50,1,0 +19900116,900,57,1,0 +19900116,900,58,1,0 +19900116,900,123,1,0 +19900116,900,139,111,7 +19900116,900,141,1,0 +19900116,900,142,1,0 +19900116,900,143,1,0 +19900116,900,144,1,0 +19900116,900,145,1,0 +19900116,900,146,1,0 +19900116,900,147,1,0 +19900116,900,148,1,0 +19900116,900,169,1,0 +19900116,900,170,111,28 +19900116,900,172,1,0 +19900116,900,175,1,0 +19900116,900,176,1,0 +19900116,900,177,1,0 +19900116,900,178,1,0 +19900116,900,179,1,0 +19900116,900,180,1,0 +19900116,900,181,1,0 +19900116,900,182,1,0 +19900116,900,183,111,100 +19900116,900,189,1,0 +19900116,900,195,1,0 +19900116,900,196,1,0 +19900116,900,197,1,0 +19900116,900,198,1,0 +19900116,900,201,1,0 +19900116,900,202,1,0 +19900116,900,205,1,0 +19900116,900,208,1,0 +19900116,900,209,1,0 +19900116,900,210,1,0 +19900116,900,211,1,0 +19900116,900,212,1,0 +19900116,900,213,1,0 +19900116,900,228,1,0 +19900116,900,235,1,0 +19900116,900,236,111,289 +19900116,900,238,1,0 +19900116,900,59,1,0 +19900116,900,78,1,0 +19900116,900,79,1,0 +19900116,900,136,1,0 +19900116,900,137,1,0 +19900116,900,151,1,0 +19900116,900,159,1,0 +19900116,900,164,1,0 +19900116,900,165,1,0 +19900116,900,166,1,0 +19900116,900,167,1,0 +19900116,900,168,1,0 +19900116,900,186,1,0 +19900116,900,187,1,0 +19900116,900,188,1,0 +19900116,900,229,1,0 +19900116,900,230,1,0 +19900116,900,231,1,0 +19900116,900,232,1,0 +19900116,900,243,1,0 +19900116,900,244,1,0 +19900116,900,245,1,0 +19900116,900,228246,1,0 +19900116,900,228247,1,0 +19900116,1200,133,100,1000 +19900116,1200,133,100,975 +19900116,1200,133,100,950 +19900116,1200,133,100,925 +19900116,1200,133,100,900 +19900116,1200,133,100,875 +19900116,1200,133,100,850 +19900116,1200,133,100,825 +19900116,1200,133,100,800 +19900116,1200,133,100,775 +19900116,1200,133,100,750 +19900116,1200,133,100,740 +19900116,1200,133,100,700 +19900116,1200,133,100,650 +19900116,1200,133,100,620 +19900116,1200,133,100,600 +19900116,1200,133,100,550 +19900116,1200,133,100,500 +19900116,1200,133,100,450 +19900116,1200,133,100,400 +19900116,1200,133,100,375 +19900116,1200,133,100,350 +19900116,1200,133,100,300 +19900116,1200,133,100,250 +19900116,1200,133,100,245 +19900116,1200,133,100,225 +19900116,1200,133,100,200 +19900116,1200,133,100,175 +19900116,1200,133,100,150 +19900116,1200,133,100,125 +19900116,1200,133,100,100 +19900116,1200,133,100,70 +19900116,1200,133,100,50 +19900116,1200,133,100,30 +19900116,1200,133,100,20 +19900116,1200,133,100,10 +19900116,1200,133,100,9 +19900116,1200,133,100,7 +19900116,1200,133,100,5 +19900116,1200,133,100,3 +19900116,1200,133,100,2 +19900116,1200,133,100,1 +19900116,1200,133,210,40 +19900116,1200,3,117,2000 +19900116,1200,133,109,1 +19900116,1200,133,109,2 +19900116,1200,133,109,3 +19900116,1200,133,109,4 +19900116,1200,133,109,5 +19900116,1200,133,109,6 +19900116,1200,133,109,7 +19900116,1200,133,109,8 +19900116,1200,133,109,9 +19900116,1200,133,109,10 +19900116,1200,246,109,1 +19900116,1200,246,109,2 +19900116,1200,246,109,3 +19900116,1200,246,109,4 +19900116,1200,246,109,5 +19900116,1200,246,109,6 +19900116,1200,246,109,7 +19900116,1200,246,109,8 +19900116,1200,246,109,9 +19900116,1200,246,109,10 +19900116,1200,247,109,1 +19900116,1200,247,109,2 +19900116,1200,247,109,3 +19900116,1200,247,109,4 +19900116,1200,247,109,5 +19900116,1200,247,109,6 +19900116,1200,247,109,7 +19900116,1200,247,109,8 +19900116,1200,247,109,9 +19900116,1200,247,109,10 +19900116,1200,248,109,1 +19900116,1200,248,109,2 +19900116,1200,248,109,3 +19900116,1200,248,109,4 +19900116,1200,248,109,5 +19900116,1200,248,109,6 +19900116,1200,248,109,7 +19900116,1200,248,109,8 +19900116,1200,248,109,9 +19900116,1200,248,109,10 +19900116,1200,8,1,0 +19900116,1200,31,1,0 +19900116,1200,32,1,0 +19900116,1200,33,1,0 +19900116,1200,34,1,0 +19900116,1200,35,111,7 +19900116,1200,36,111,28 +19900116,1200,37,111,100 +19900116,1200,38,111,289 +19900116,1200,39,111,7 +19900116,1200,40,111,28 +19900116,1200,41,111,100 +19900116,1200,42,111,289 +19900116,1200,44,1,0 +19900116,1200,45,1,0 +19900116,1200,49,1,0 +19900116,1200,50,1,0 +19900116,1200,57,1,0 +19900116,1200,58,1,0 +19900116,1200,123,1,0 +19900116,1200,139,111,7 +19900116,1200,141,1,0 +19900116,1200,142,1,0 +19900116,1200,143,1,0 +19900116,1200,144,1,0 +19900116,1200,145,1,0 +19900116,1200,146,1,0 +19900116,1200,147,1,0 +19900116,1200,148,1,0 +19900116,1200,169,1,0 +19900116,1200,170,111,28 +19900116,1200,172,1,0 +19900116,1200,175,1,0 +19900116,1200,176,1,0 +19900116,1200,177,1,0 +19900116,1200,178,1,0 +19900116,1200,179,1,0 +19900116,1200,180,1,0 +19900116,1200,181,1,0 +19900116,1200,182,1,0 +19900116,1200,183,111,100 +19900116,1200,189,1,0 +19900116,1200,195,1,0 +19900116,1200,196,1,0 +19900116,1200,197,1,0 +19900116,1200,198,1,0 +19900116,1200,201,1,0 +19900116,1200,202,1,0 +19900116,1200,205,1,0 +19900116,1200,208,1,0 +19900116,1200,209,1,0 +19900116,1200,210,1,0 +19900116,1200,211,1,0 +19900116,1200,212,1,0 +19900116,1200,213,1,0 +19900116,1200,228,1,0 +19900116,1200,235,1,0 +19900116,1200,236,111,289 +19900116,1200,238,1,0 +19900116,1200,59,1,0 +19900116,1200,78,1,0 +19900116,1200,79,1,0 +19900116,1200,136,1,0 +19900116,1200,137,1,0 +19900116,1200,151,1,0 +19900116,1200,159,1,0 +19900116,1200,164,1,0 +19900116,1200,165,1,0 +19900116,1200,166,1,0 +19900116,1200,167,1,0 +19900116,1200,168,1,0 +19900116,1200,186,1,0 +19900116,1200,187,1,0 +19900116,1200,188,1,0 +19900116,1200,229,1,0 +19900116,1200,230,1,0 +19900116,1200,231,1,0 +19900116,1200,232,1,0 +19900116,1200,243,1,0 +19900116,1200,244,1,0 +19900116,1200,245,1,0 +19900116,1200,228246,1,0 +19900116,1200,228247,1,0 +19900116,1500,8,1,0 +19900116,1500,31,1,0 +19900116,1500,32,1,0 +19900116,1500,33,1,0 +19900116,1500,34,1,0 +19900116,1500,35,111,7 +19900116,1500,36,111,28 +19900116,1500,37,111,100 +19900116,1500,38,111,289 +19900116,1500,39,111,7 +19900116,1500,40,111,28 +19900116,1500,41,111,100 +19900116,1500,42,111,289 +19900116,1500,44,1,0 +19900116,1500,45,1,0 +19900116,1500,49,1,0 +19900116,1500,50,1,0 +19900116,1500,57,1,0 +19900116,1500,58,1,0 +19900116,1500,123,1,0 +19900116,1500,139,111,7 +19900116,1500,141,1,0 +19900116,1500,142,1,0 +19900116,1500,143,1,0 +19900116,1500,144,1,0 +19900116,1500,145,1,0 +19900116,1500,146,1,0 +19900116,1500,147,1,0 +19900116,1500,148,1,0 +19900116,1500,169,1,0 +19900116,1500,170,111,28 +19900116,1500,172,1,0 +19900116,1500,175,1,0 +19900116,1500,176,1,0 +19900116,1500,177,1,0 +19900116,1500,178,1,0 +19900116,1500,179,1,0 +19900116,1500,180,1,0 +19900116,1500,181,1,0 +19900116,1500,182,1,0 +19900116,1500,183,111,100 +19900116,1500,189,1,0 +19900116,1500,195,1,0 +19900116,1500,196,1,0 +19900116,1500,197,1,0 +19900116,1500,198,1,0 +19900116,1500,201,1,0 +19900116,1500,202,1,0 +19900116,1500,205,1,0 +19900116,1500,208,1,0 +19900116,1500,209,1,0 +19900116,1500,210,1,0 +19900116,1500,211,1,0 +19900116,1500,212,1,0 +19900116,1500,213,1,0 +19900116,1500,228,1,0 +19900116,1500,235,1,0 +19900116,1500,236,111,289 +19900116,1500,238,1,0 +19900116,1500,59,1,0 +19900116,1500,78,1,0 +19900116,1500,79,1,0 +19900116,1500,136,1,0 +19900116,1500,137,1,0 +19900116,1500,151,1,0 +19900116,1500,159,1,0 +19900116,1500,164,1,0 +19900116,1500,165,1,0 +19900116,1500,166,1,0 +19900116,1500,167,1,0 +19900116,1500,168,1,0 +19900116,1500,186,1,0 +19900116,1500,187,1,0 +19900116,1500,188,1,0 +19900116,1500,229,1,0 +19900116,1500,230,1,0 +19900116,1500,231,1,0 +19900116,1500,232,1,0 +19900116,1500,243,1,0 +19900116,1500,244,1,0 +19900116,1500,245,1,0 +19900116,1500,228246,1,0 +19900116,1500,228247,1,0 +19900116,1800,133,100,1000 +19900116,1800,133,100,975 +19900116,1800,133,100,950 +19900116,1800,133,100,925 +19900116,1800,133,100,900 +19900116,1800,133,100,875 +19900116,1800,133,100,850 +19900116,1800,133,100,825 +19900116,1800,133,100,800 +19900116,1800,133,100,775 +19900116,1800,133,100,750 +19900116,1800,133,100,740 +19900116,1800,133,100,700 +19900116,1800,133,100,650 +19900116,1800,133,100,620 +19900116,1800,133,100,600 +19900116,1800,133,100,550 +19900116,1800,133,100,500 +19900116,1800,133,100,450 +19900116,1800,133,100,400 +19900116,1800,133,100,375 +19900116,1800,133,100,350 +19900116,1800,133,100,300 +19900116,1800,133,100,250 +19900116,1800,133,100,245 +19900116,1800,133,100,225 +19900116,1800,133,100,200 +19900116,1800,133,100,175 +19900116,1800,133,100,150 +19900116,1800,133,100,125 +19900116,1800,133,100,100 +19900116,1800,133,100,70 +19900116,1800,133,100,50 +19900116,1800,133,100,30 +19900116,1800,133,100,20 +19900116,1800,133,100,10 +19900116,1800,133,100,9 +19900116,1800,133,100,7 +19900116,1800,133,100,5 +19900116,1800,133,100,3 +19900116,1800,133,100,2 +19900116,1800,133,100,1 +19900116,1800,133,210,40 +19900116,1800,3,117,2000 +19900116,1800,133,109,1 +19900116,1800,133,109,2 +19900116,1800,133,109,3 +19900116,1800,133,109,4 +19900116,1800,133,109,5 +19900116,1800,133,109,6 +19900116,1800,133,109,7 +19900116,1800,133,109,8 +19900116,1800,133,109,9 +19900116,1800,133,109,10 +19900116,1800,246,109,1 +19900116,1800,246,109,2 +19900116,1800,246,109,3 +19900116,1800,246,109,4 +19900116,1800,246,109,5 +19900116,1800,246,109,6 +19900116,1800,246,109,7 +19900116,1800,246,109,8 +19900116,1800,246,109,9 +19900116,1800,246,109,10 +19900116,1800,247,109,1 +19900116,1800,247,109,2 +19900116,1800,247,109,3 +19900116,1800,247,109,4 +19900116,1800,247,109,5 +19900116,1800,247,109,6 +19900116,1800,247,109,7 +19900116,1800,247,109,8 +19900116,1800,247,109,9 +19900116,1800,247,109,10 +19900116,1800,248,109,1 +19900116,1800,248,109,2 +19900116,1800,248,109,3 +19900116,1800,248,109,4 +19900116,1800,248,109,5 +19900116,1800,248,109,6 +19900116,1800,248,109,7 +19900116,1800,248,109,8 +19900116,1800,248,109,9 +19900116,1800,248,109,10 +19900116,1800,8,1,0 +19900116,1800,31,1,0 +19900116,1800,32,1,0 +19900116,1800,33,1,0 +19900116,1800,34,1,0 +19900116,1800,35,111,7 +19900116,1800,36,111,28 +19900116,1800,37,111,100 +19900116,1800,38,111,289 +19900116,1800,39,111,7 +19900116,1800,40,111,28 +19900116,1800,41,111,100 +19900116,1800,42,111,289 +19900116,1800,44,1,0 +19900116,1800,45,1,0 +19900116,1800,49,1,0 +19900116,1800,50,1,0 +19900116,1800,57,1,0 +19900116,1800,58,1,0 +19900116,1800,123,1,0 +19900116,1800,139,111,7 +19900116,1800,141,1,0 +19900116,1800,142,1,0 +19900116,1800,143,1,0 +19900116,1800,144,1,0 +19900116,1800,145,1,0 +19900116,1800,146,1,0 +19900116,1800,147,1,0 +19900116,1800,148,1,0 +19900116,1800,169,1,0 +19900116,1800,170,111,28 +19900116,1800,172,1,0 +19900116,1800,175,1,0 +19900116,1800,176,1,0 +19900116,1800,177,1,0 +19900116,1800,178,1,0 +19900116,1800,179,1,0 +19900116,1800,180,1,0 +19900116,1800,181,1,0 +19900116,1800,182,1,0 +19900116,1800,183,111,100 +19900116,1800,189,1,0 +19900116,1800,195,1,0 +19900116,1800,196,1,0 +19900116,1800,197,1,0 +19900116,1800,198,1,0 +19900116,1800,201,1,0 +19900116,1800,202,1,0 +19900116,1800,205,1,0 +19900116,1800,208,1,0 +19900116,1800,209,1,0 +19900116,1800,210,1,0 +19900116,1800,211,1,0 +19900116,1800,212,1,0 +19900116,1800,213,1,0 +19900116,1800,228,1,0 +19900116,1800,235,1,0 +19900116,1800,236,111,289 +19900116,1800,238,1,0 +19900116,1800,59,1,0 +19900116,1800,78,1,0 +19900116,1800,79,1,0 +19900116,1800,136,1,0 +19900116,1800,137,1,0 +19900116,1800,151,1,0 +19900116,1800,159,1,0 +19900116,1800,164,1,0 +19900116,1800,165,1,0 +19900116,1800,166,1,0 +19900116,1800,167,1,0 +19900116,1800,168,1,0 +19900116,1800,186,1,0 +19900116,1800,187,1,0 +19900116,1800,188,1,0 +19900116,1800,229,1,0 +19900116,1800,230,1,0 +19900116,1800,231,1,0 +19900116,1800,232,1,0 +19900116,1800,243,1,0 +19900116,1800,244,1,0 +19900116,1800,245,1,0 +19900116,1800,228246,1,0 +19900116,1800,228247,1,0 +19900116,2100,8,1,0 +19900116,2100,31,1,0 +19900116,2100,32,1,0 +19900116,2100,33,1,0 +19900116,2100,34,1,0 +19900116,2100,35,111,7 +19900116,2100,36,111,28 +19900116,2100,37,111,100 +19900116,2100,38,111,289 +19900116,2100,39,111,7 +19900116,2100,40,111,28 +19900116,2100,41,111,100 +19900116,2100,42,111,289 +19900116,2100,44,1,0 +19900116,2100,45,1,0 +19900116,2100,49,1,0 +19900116,2100,50,1,0 +19900116,2100,57,1,0 +19900116,2100,58,1,0 +19900116,2100,123,1,0 +19900116,2100,139,111,7 +19900116,2100,141,1,0 +19900116,2100,142,1,0 +19900116,2100,143,1,0 +19900116,2100,144,1,0 +19900116,2100,145,1,0 +19900116,2100,146,1,0 +19900116,2100,147,1,0 +19900116,2100,148,1,0 +19900116,2100,169,1,0 +19900116,2100,170,111,28 +19900116,2100,172,1,0 +19900116,2100,175,1,0 +19900116,2100,176,1,0 +19900116,2100,177,1,0 +19900116,2100,178,1,0 +19900116,2100,179,1,0 +19900116,2100,180,1,0 +19900116,2100,181,1,0 +19900116,2100,182,1,0 +19900116,2100,183,111,100 +19900116,2100,189,1,0 +19900116,2100,195,1,0 +19900116,2100,196,1,0 +19900116,2100,197,1,0 +19900116,2100,198,1,0 +19900116,2100,201,1,0 +19900116,2100,202,1,0 +19900116,2100,205,1,0 +19900116,2100,208,1,0 +19900116,2100,209,1,0 +19900116,2100,210,1,0 +19900116,2100,211,1,0 +19900116,2100,212,1,0 +19900116,2100,213,1,0 +19900116,2100,228,1,0 +19900116,2100,235,1,0 +19900116,2100,236,111,289 +19900116,2100,238,1,0 +19900116,2100,59,1,0 +19900116,2100,78,1,0 +19900116,2100,79,1,0 +19900116,2100,136,1,0 +19900116,2100,137,1,0 +19900116,2100,151,1,0 +19900116,2100,159,1,0 +19900116,2100,164,1,0 +19900116,2100,165,1,0 +19900116,2100,166,1,0 +19900116,2100,167,1,0 +19900116,2100,168,1,0 +19900116,2100,186,1,0 +19900116,2100,187,1,0 +19900116,2100,188,1,0 +19900116,2100,229,1,0 +19900116,2100,230,1,0 +19900116,2100,231,1,0 +19900116,2100,232,1,0 +19900116,2100,243,1,0 +19900116,2100,244,1,0 +19900116,2100,245,1,0 +19900116,2100,228246,1,0 +19900116,2100,228247,1,0 +19900117,0,133,100,1000 +19900117,0,133,100,975 +19900117,0,133,100,950 +19900117,0,133,100,925 +19900117,0,133,100,900 +19900117,0,133,100,875 +19900117,0,133,100,850 +19900117,0,133,100,825 +19900117,0,133,100,800 +19900117,0,133,100,775 +19900117,0,133,100,750 +19900117,0,133,100,740 +19900117,0,133,100,700 +19900117,0,133,100,650 +19900117,0,133,100,620 +19900117,0,133,100,600 +19900117,0,133,100,550 +19900117,0,133,100,500 +19900117,0,133,100,450 +19900117,0,133,100,400 +19900117,0,133,100,375 +19900117,0,133,100,350 +19900117,0,133,100,300 +19900117,0,133,100,250 +19900117,0,133,100,245 +19900117,0,133,100,225 +19900117,0,133,100,200 +19900117,0,133,100,175 +19900117,0,133,100,150 +19900117,0,133,100,125 +19900117,0,133,100,100 +19900117,0,133,100,70 +19900117,0,133,100,50 +19900117,0,133,100,30 +19900117,0,133,100,20 +19900117,0,133,100,10 +19900117,0,133,100,9 +19900117,0,133,100,7 +19900117,0,133,100,5 +19900117,0,133,100,3 +19900117,0,133,100,2 +19900117,0,133,100,1 +19900117,0,133,210,40 +19900117,0,3,117,2000 +19900117,0,133,109,1 +19900117,0,133,109,2 +19900117,0,133,109,3 +19900117,0,133,109,4 +19900117,0,133,109,5 +19900117,0,133,109,6 +19900117,0,133,109,7 +19900117,0,133,109,8 +19900117,0,133,109,9 +19900117,0,133,109,10 +19900117,0,246,109,1 +19900117,0,246,109,2 +19900117,0,246,109,3 +19900117,0,246,109,4 +19900117,0,246,109,5 +19900117,0,246,109,6 +19900117,0,246,109,7 +19900117,0,246,109,8 +19900117,0,246,109,9 +19900117,0,246,109,10 +19900117,0,247,109,1 +19900117,0,247,109,2 +19900117,0,247,109,3 +19900117,0,247,109,4 +19900117,0,247,109,5 +19900117,0,247,109,6 +19900117,0,247,109,7 +19900117,0,247,109,8 +19900117,0,247,109,9 +19900117,0,247,109,10 +19900117,0,248,109,1 +19900117,0,248,109,2 +19900117,0,248,109,3 +19900117,0,248,109,4 +19900117,0,248,109,5 +19900117,0,248,109,6 +19900117,0,248,109,7 +19900117,0,248,109,8 +19900117,0,248,109,9 +19900117,0,248,109,10 +19900117,0,8,1,0 +19900117,0,31,1,0 +19900117,0,32,1,0 +19900117,0,33,1,0 +19900117,0,34,1,0 +19900117,0,35,111,7 +19900117,0,36,111,28 +19900117,0,37,111,100 +19900117,0,38,111,289 +19900117,0,39,111,7 +19900117,0,40,111,28 +19900117,0,41,111,100 +19900117,0,42,111,289 +19900117,0,44,1,0 +19900117,0,45,1,0 +19900117,0,49,1,0 +19900117,0,50,1,0 +19900117,0,57,1,0 +19900117,0,58,1,0 +19900117,0,123,1,0 +19900117,0,139,111,7 +19900117,0,141,1,0 +19900117,0,142,1,0 +19900117,0,143,1,0 +19900117,0,144,1,0 +19900117,0,145,1,0 +19900117,0,146,1,0 +19900117,0,147,1,0 +19900117,0,148,1,0 +19900117,0,169,1,0 +19900117,0,170,111,28 +19900117,0,172,1,0 +19900117,0,175,1,0 +19900117,0,176,1,0 +19900117,0,177,1,0 +19900117,0,178,1,0 +19900117,0,179,1,0 +19900117,0,180,1,0 +19900117,0,181,1,0 +19900117,0,182,1,0 +19900117,0,183,111,100 +19900117,0,189,1,0 +19900117,0,195,1,0 +19900117,0,196,1,0 +19900117,0,197,1,0 +19900117,0,198,1,0 +19900117,0,201,1,0 +19900117,0,202,1,0 +19900117,0,205,1,0 +19900117,0,208,1,0 +19900117,0,209,1,0 +19900117,0,210,1,0 +19900117,0,211,1,0 +19900117,0,212,1,0 +19900117,0,213,1,0 +19900117,0,228,1,0 +19900117,0,235,1,0 +19900117,0,236,111,289 +19900117,0,238,1,0 +19900117,0,59,1,0 +19900117,0,78,1,0 +19900117,0,79,1,0 +19900117,0,136,1,0 +19900117,0,137,1,0 +19900117,0,151,1,0 +19900117,0,159,1,0 +19900117,0,164,1,0 +19900117,0,165,1,0 +19900117,0,166,1,0 +19900117,0,167,1,0 +19900117,0,168,1,0 +19900117,0,186,1,0 +19900117,0,187,1,0 +19900117,0,188,1,0 +19900117,0,229,1,0 +19900117,0,230,1,0 +19900117,0,231,1,0 +19900117,0,232,1,0 +19900117,0,243,1,0 +19900117,0,244,1,0 +19900117,0,245,1,0 +19900117,0,228246,1,0 +19900117,0,228247,1,0 +19900117,300,8,1,0 +19900117,300,31,1,0 +19900117,300,32,1,0 +19900117,300,33,1,0 +19900117,300,34,1,0 +19900117,300,35,111,7 +19900117,300,36,111,28 +19900117,300,37,111,100 +19900117,300,38,111,289 +19900117,300,39,111,7 +19900117,300,40,111,28 +19900117,300,41,111,100 +19900117,300,42,111,289 +19900117,300,44,1,0 +19900117,300,45,1,0 +19900117,300,49,1,0 +19900117,300,50,1,0 +19900117,300,57,1,0 +19900117,300,58,1,0 +19900117,300,123,1,0 +19900117,300,139,111,7 +19900117,300,141,1,0 +19900117,300,142,1,0 +19900117,300,143,1,0 +19900117,300,144,1,0 +19900117,300,145,1,0 +19900117,300,146,1,0 +19900117,300,147,1,0 +19900117,300,148,1,0 +19900117,300,169,1,0 +19900117,300,170,111,28 +19900117,300,172,1,0 +19900117,300,175,1,0 +19900117,300,176,1,0 +19900117,300,177,1,0 +19900117,300,178,1,0 +19900117,300,179,1,0 +19900117,300,180,1,0 +19900117,300,181,1,0 +19900117,300,182,1,0 +19900117,300,183,111,100 +19900117,300,189,1,0 +19900117,300,195,1,0 +19900117,300,196,1,0 +19900117,300,197,1,0 +19900117,300,198,1,0 +19900117,300,201,1,0 +19900117,300,202,1,0 +19900117,300,205,1,0 +19900117,300,208,1,0 +19900117,300,209,1,0 +19900117,300,210,1,0 +19900117,300,211,1,0 +19900117,300,212,1,0 +19900117,300,213,1,0 +19900117,300,228,1,0 +19900117,300,235,1,0 +19900117,300,236,111,289 +19900117,300,238,1,0 +19900117,300,59,1,0 +19900117,300,78,1,0 +19900117,300,79,1,0 +19900117,300,136,1,0 +19900117,300,137,1,0 +19900117,300,151,1,0 +19900117,300,159,1,0 +19900117,300,164,1,0 +19900117,300,165,1,0 +19900117,300,166,1,0 +19900117,300,167,1,0 +19900117,300,168,1,0 +19900117,300,186,1,0 +19900117,300,187,1,0 +19900117,300,188,1,0 +19900117,300,229,1,0 +19900117,300,230,1,0 +19900117,300,231,1,0 +19900117,300,232,1,0 +19900117,300,243,1,0 +19900117,300,244,1,0 +19900117,300,245,1,0 +19900117,300,228246,1,0 +19900117,300,228247,1,0 +19900117,600,133,100,1000 +19900117,600,133,100,975 +19900117,600,133,100,950 +19900117,600,133,100,925 +19900117,600,133,100,900 +19900117,600,133,100,875 +19900117,600,133,100,850 +19900117,600,133,100,825 +19900117,600,133,100,800 +19900117,600,133,100,775 +19900117,600,133,100,750 +19900117,600,133,100,740 +19900117,600,133,100,700 +19900117,600,133,100,650 +19900117,600,133,100,620 +19900117,600,133,100,600 +19900117,600,133,100,550 +19900117,600,133,100,500 +19900117,600,133,100,450 +19900117,600,133,100,400 +19900117,600,133,100,375 +19900117,600,133,100,350 +19900117,600,133,100,300 +19900117,600,133,100,250 +19900117,600,133,100,245 +19900117,600,133,100,225 +19900117,600,133,100,200 +19900117,600,133,100,175 +19900117,600,133,100,150 +19900117,600,133,100,125 +19900117,600,133,100,100 +19900117,600,133,100,70 +19900117,600,133,100,50 +19900117,600,133,100,30 +19900117,600,133,100,20 +19900117,600,133,100,10 +19900117,600,133,100,9 +19900117,600,133,100,7 +19900117,600,133,100,5 +19900117,600,133,100,3 +19900117,600,133,100,2 +19900117,600,133,100,1 +19900117,600,133,210,40 +19900117,600,3,117,2000 +19900117,600,133,109,1 +19900117,600,133,109,2 +19900117,600,133,109,3 +19900117,600,133,109,4 +19900117,600,133,109,5 +19900117,600,133,109,6 +19900117,600,133,109,7 +19900117,600,133,109,8 +19900117,600,133,109,9 +19900117,600,133,109,10 +19900117,600,246,109,1 +19900117,600,246,109,2 +19900117,600,246,109,3 +19900117,600,246,109,4 +19900117,600,246,109,5 +19900117,600,246,109,6 +19900117,600,246,109,7 +19900117,600,246,109,8 +19900117,600,246,109,9 +19900117,600,246,109,10 +19900117,600,247,109,1 +19900117,600,247,109,2 +19900117,600,247,109,3 +19900117,600,247,109,4 +19900117,600,247,109,5 +19900117,600,247,109,6 +19900117,600,247,109,7 +19900117,600,247,109,8 +19900117,600,247,109,9 +19900117,600,247,109,10 +19900117,600,248,109,1 +19900117,600,248,109,2 +19900117,600,248,109,3 +19900117,600,248,109,4 +19900117,600,248,109,5 +19900117,600,248,109,6 +19900117,600,248,109,7 +19900117,600,248,109,8 +19900117,600,248,109,9 +19900117,600,248,109,10 +19900117,600,8,1,0 +19900117,600,31,1,0 +19900117,600,32,1,0 +19900117,600,33,1,0 +19900117,600,34,1,0 +19900117,600,35,111,7 +19900117,600,36,111,28 +19900117,600,37,111,100 +19900117,600,38,111,289 +19900117,600,39,111,7 +19900117,600,40,111,28 +19900117,600,41,111,100 +19900117,600,42,111,289 +19900117,600,44,1,0 +19900117,600,45,1,0 +19900117,600,49,1,0 +19900117,600,50,1,0 +19900117,600,57,1,0 +19900117,600,58,1,0 +19900117,600,123,1,0 +19900117,600,139,111,7 +19900117,600,141,1,0 +19900117,600,142,1,0 +19900117,600,143,1,0 +19900117,600,144,1,0 +19900117,600,145,1,0 +19900117,600,146,1,0 +19900117,600,147,1,0 +19900117,600,148,1,0 +19900117,600,169,1,0 +19900117,600,170,111,28 +19900117,600,172,1,0 +19900117,600,175,1,0 +19900117,600,176,1,0 +19900117,600,177,1,0 +19900117,600,178,1,0 +19900117,600,179,1,0 +19900117,600,180,1,0 +19900117,600,181,1,0 +19900117,600,182,1,0 +19900117,600,183,111,100 +19900117,600,189,1,0 +19900117,600,195,1,0 +19900117,600,196,1,0 +19900117,600,197,1,0 +19900117,600,198,1,0 +19900117,600,201,1,0 +19900117,600,202,1,0 +19900117,600,205,1,0 +19900117,600,208,1,0 +19900117,600,209,1,0 +19900117,600,210,1,0 +19900117,600,211,1,0 +19900117,600,212,1,0 +19900117,600,213,1,0 +19900117,600,228,1,0 +19900117,600,235,1,0 +19900117,600,236,111,289 +19900117,600,238,1,0 +19900117,600,59,1,0 +19900117,600,78,1,0 +19900117,600,79,1,0 +19900117,600,136,1,0 +19900117,600,137,1,0 +19900117,600,151,1,0 +19900117,600,159,1,0 +19900117,600,164,1,0 +19900117,600,165,1,0 +19900117,600,166,1,0 +19900117,600,167,1,0 +19900117,600,168,1,0 +19900117,600,186,1,0 +19900117,600,187,1,0 +19900117,600,188,1,0 +19900117,600,229,1,0 +19900117,600,230,1,0 +19900117,600,231,1,0 +19900117,600,232,1,0 +19900117,600,243,1,0 +19900117,600,244,1,0 +19900117,600,245,1,0 +19900117,600,228246,1,0 +19900117,600,228247,1,0 +19900117,900,8,1,0 +19900117,900,31,1,0 +19900117,900,32,1,0 +19900117,900,33,1,0 +19900117,900,34,1,0 +19900117,900,35,111,7 +19900117,900,36,111,28 +19900117,900,37,111,100 +19900117,900,38,111,289 +19900117,900,39,111,7 +19900117,900,40,111,28 +19900117,900,41,111,100 +19900117,900,42,111,289 +19900117,900,44,1,0 +19900117,900,45,1,0 +19900117,900,49,1,0 +19900117,900,50,1,0 +19900117,900,57,1,0 +19900117,900,58,1,0 +19900117,900,123,1,0 +19900117,900,139,111,7 +19900117,900,141,1,0 +19900117,900,142,1,0 +19900117,900,143,1,0 +19900117,900,144,1,0 +19900117,900,145,1,0 +19900117,900,146,1,0 +19900117,900,147,1,0 +19900117,900,148,1,0 +19900117,900,169,1,0 +19900117,900,170,111,28 +19900117,900,172,1,0 +19900117,900,175,1,0 +19900117,900,176,1,0 +19900117,900,177,1,0 +19900117,900,178,1,0 +19900117,900,179,1,0 +19900117,900,180,1,0 +19900117,900,181,1,0 +19900117,900,182,1,0 +19900117,900,183,111,100 +19900117,900,189,1,0 +19900117,900,195,1,0 +19900117,900,196,1,0 +19900117,900,197,1,0 +19900117,900,198,1,0 +19900117,900,201,1,0 +19900117,900,202,1,0 +19900117,900,205,1,0 +19900117,900,208,1,0 +19900117,900,209,1,0 +19900117,900,210,1,0 +19900117,900,211,1,0 +19900117,900,212,1,0 +19900117,900,213,1,0 +19900117,900,228,1,0 +19900117,900,235,1,0 +19900117,900,236,111,289 +19900117,900,238,1,0 +19900117,900,59,1,0 +19900117,900,78,1,0 +19900117,900,79,1,0 +19900117,900,136,1,0 +19900117,900,137,1,0 +19900117,900,151,1,0 +19900117,900,159,1,0 +19900117,900,164,1,0 +19900117,900,165,1,0 +19900117,900,166,1,0 +19900117,900,167,1,0 +19900117,900,168,1,0 +19900117,900,186,1,0 +19900117,900,187,1,0 +19900117,900,188,1,0 +19900117,900,229,1,0 +19900117,900,230,1,0 +19900117,900,231,1,0 +19900117,900,232,1,0 +19900117,900,243,1,0 +19900117,900,244,1,0 +19900117,900,245,1,0 +19900117,900,228246,1,0 +19900117,900,228247,1,0 +19900117,1200,133,100,1000 +19900117,1200,133,100,975 +19900117,1200,133,100,950 +19900117,1200,133,100,925 +19900117,1200,133,100,900 +19900117,1200,133,100,875 +19900117,1200,133,100,850 +19900117,1200,133,100,825 +19900117,1200,133,100,800 +19900117,1200,133,100,775 +19900117,1200,133,100,750 +19900117,1200,133,100,740 +19900117,1200,133,100,700 +19900117,1200,133,100,650 +19900117,1200,133,100,620 +19900117,1200,133,100,600 +19900117,1200,133,100,550 +19900117,1200,133,100,500 +19900117,1200,133,100,450 +19900117,1200,133,100,400 +19900117,1200,133,100,375 +19900117,1200,133,100,350 +19900117,1200,133,100,300 +19900117,1200,133,100,250 +19900117,1200,133,100,245 +19900117,1200,133,100,225 +19900117,1200,133,100,200 +19900117,1200,133,100,175 +19900117,1200,133,100,150 +19900117,1200,133,100,125 +19900117,1200,133,100,100 +19900117,1200,133,100,70 +19900117,1200,133,100,50 +19900117,1200,133,100,30 +19900117,1200,133,100,20 +19900117,1200,133,100,10 +19900117,1200,133,100,9 +19900117,1200,133,100,7 +19900117,1200,133,100,5 +19900117,1200,133,100,3 +19900117,1200,133,100,2 +19900117,1200,133,100,1 +19900117,1200,133,210,40 +19900117,1200,3,117,2000 +19900117,1200,133,109,1 +19900117,1200,133,109,2 +19900117,1200,133,109,3 +19900117,1200,133,109,4 +19900117,1200,133,109,5 +19900117,1200,133,109,6 +19900117,1200,133,109,7 +19900117,1200,133,109,8 +19900117,1200,133,109,9 +19900117,1200,133,109,10 +19900117,1200,246,109,1 +19900117,1200,246,109,2 +19900117,1200,246,109,3 +19900117,1200,246,109,4 +19900117,1200,246,109,5 +19900117,1200,246,109,6 +19900117,1200,246,109,7 +19900117,1200,246,109,8 +19900117,1200,246,109,9 +19900117,1200,246,109,10 +19900117,1200,247,109,1 +19900117,1200,247,109,2 +19900117,1200,247,109,3 +19900117,1200,247,109,4 +19900117,1200,247,109,5 +19900117,1200,247,109,6 +19900117,1200,247,109,7 +19900117,1200,247,109,8 +19900117,1200,247,109,9 +19900117,1200,247,109,10 +19900117,1200,248,109,1 +19900117,1200,248,109,2 +19900117,1200,248,109,3 +19900117,1200,248,109,4 +19900117,1200,248,109,5 +19900117,1200,248,109,6 +19900117,1200,248,109,7 +19900117,1200,248,109,8 +19900117,1200,248,109,9 +19900117,1200,248,109,10 +19900117,1200,8,1,0 +19900117,1200,31,1,0 +19900117,1200,32,1,0 +19900117,1200,33,1,0 +19900117,1200,34,1,0 +19900117,1200,35,111,7 +19900117,1200,36,111,28 +19900117,1200,37,111,100 +19900117,1200,38,111,289 +19900117,1200,39,111,7 +19900117,1200,40,111,28 +19900117,1200,41,111,100 +19900117,1200,42,111,289 +19900117,1200,44,1,0 +19900117,1200,45,1,0 +19900117,1200,49,1,0 +19900117,1200,50,1,0 +19900117,1200,57,1,0 +19900117,1200,58,1,0 +19900117,1200,123,1,0 +19900117,1200,139,111,7 +19900117,1200,141,1,0 +19900117,1200,142,1,0 +19900117,1200,143,1,0 +19900117,1200,144,1,0 +19900117,1200,145,1,0 +19900117,1200,146,1,0 +19900117,1200,147,1,0 +19900117,1200,148,1,0 +19900117,1200,169,1,0 +19900117,1200,170,111,28 +19900117,1200,172,1,0 +19900117,1200,175,1,0 +19900117,1200,176,1,0 +19900117,1200,177,1,0 +19900117,1200,178,1,0 +19900117,1200,179,1,0 +19900117,1200,180,1,0 +19900117,1200,181,1,0 +19900117,1200,182,1,0 +19900117,1200,183,111,100 +19900117,1200,189,1,0 +19900117,1200,195,1,0 +19900117,1200,196,1,0 +19900117,1200,197,1,0 +19900117,1200,198,1,0 +19900117,1200,201,1,0 +19900117,1200,202,1,0 +19900117,1200,205,1,0 +19900117,1200,208,1,0 +19900117,1200,209,1,0 +19900117,1200,210,1,0 +19900117,1200,211,1,0 +19900117,1200,212,1,0 +19900117,1200,213,1,0 +19900117,1200,228,1,0 +19900117,1200,235,1,0 +19900117,1200,236,111,289 +19900117,1200,238,1,0 +19900117,1200,59,1,0 +19900117,1200,78,1,0 +19900117,1200,79,1,0 +19900117,1200,136,1,0 +19900117,1200,137,1,0 +19900117,1200,151,1,0 +19900117,1200,159,1,0 +19900117,1200,164,1,0 +19900117,1200,165,1,0 +19900117,1200,166,1,0 +19900117,1200,167,1,0 +19900117,1200,168,1,0 +19900117,1200,186,1,0 +19900117,1200,187,1,0 +19900117,1200,188,1,0 +19900117,1200,229,1,0 +19900117,1200,230,1,0 +19900117,1200,231,1,0 +19900117,1200,232,1,0 +19900117,1200,243,1,0 +19900117,1200,244,1,0 +19900117,1200,245,1,0 +19900117,1200,228246,1,0 +19900117,1200,228247,1,0 +19900117,1500,8,1,0 +19900117,1500,31,1,0 +19900117,1500,32,1,0 +19900117,1500,33,1,0 +19900117,1500,34,1,0 +19900117,1500,35,111,7 +19900117,1500,36,111,28 +19900117,1500,37,111,100 +19900117,1500,38,111,289 +19900117,1500,39,111,7 +19900117,1500,40,111,28 +19900117,1500,41,111,100 +19900117,1500,42,111,289 +19900117,1500,44,1,0 +19900117,1500,45,1,0 +19900117,1500,49,1,0 +19900117,1500,50,1,0 +19900117,1500,57,1,0 +19900117,1500,58,1,0 +19900117,1500,123,1,0 +19900117,1500,139,111,7 +19900117,1500,141,1,0 +19900117,1500,142,1,0 +19900117,1500,143,1,0 +19900117,1500,144,1,0 +19900117,1500,145,1,0 +19900117,1500,146,1,0 +19900117,1500,147,1,0 +19900117,1500,148,1,0 +19900117,1500,169,1,0 +19900117,1500,170,111,28 +19900117,1500,172,1,0 +19900117,1500,175,1,0 +19900117,1500,176,1,0 +19900117,1500,177,1,0 +19900117,1500,178,1,0 +19900117,1500,179,1,0 +19900117,1500,180,1,0 +19900117,1500,181,1,0 +19900117,1500,182,1,0 +19900117,1500,183,111,100 +19900117,1500,189,1,0 +19900117,1500,195,1,0 +19900117,1500,196,1,0 +19900117,1500,197,1,0 +19900117,1500,198,1,0 +19900117,1500,201,1,0 +19900117,1500,202,1,0 +19900117,1500,205,1,0 +19900117,1500,208,1,0 +19900117,1500,209,1,0 +19900117,1500,210,1,0 +19900117,1500,211,1,0 +19900117,1500,212,1,0 +19900117,1500,213,1,0 +19900117,1500,228,1,0 +19900117,1500,235,1,0 +19900117,1500,236,111,289 +19900117,1500,238,1,0 +19900117,1500,59,1,0 +19900117,1500,78,1,0 +19900117,1500,79,1,0 +19900117,1500,136,1,0 +19900117,1500,137,1,0 +19900117,1500,151,1,0 +19900117,1500,159,1,0 +19900117,1500,164,1,0 +19900117,1500,165,1,0 +19900117,1500,166,1,0 +19900117,1500,167,1,0 +19900117,1500,168,1,0 +19900117,1500,186,1,0 +19900117,1500,187,1,0 +19900117,1500,188,1,0 +19900117,1500,229,1,0 +19900117,1500,230,1,0 +19900117,1500,231,1,0 +19900117,1500,232,1,0 +19900117,1500,243,1,0 +19900117,1500,244,1,0 +19900117,1500,245,1,0 +19900117,1500,228246,1,0 +19900117,1500,228247,1,0 +19900117,1800,133,100,1000 +19900117,1800,133,100,975 +19900117,1800,133,100,950 +19900117,1800,133,100,925 +19900117,1800,133,100,900 +19900117,1800,133,100,875 +19900117,1800,133,100,850 +19900117,1800,133,100,825 +19900117,1800,133,100,800 +19900117,1800,133,100,775 +19900117,1800,133,100,750 +19900117,1800,133,100,740 +19900117,1800,133,100,700 +19900117,1800,133,100,650 +19900117,1800,133,100,620 +19900117,1800,133,100,600 +19900117,1800,133,100,550 +19900117,1800,133,100,500 +19900117,1800,133,100,450 +19900117,1800,133,100,400 +19900117,1800,133,100,375 +19900117,1800,133,100,350 +19900117,1800,133,100,300 +19900117,1800,133,100,250 +19900117,1800,133,100,245 +19900117,1800,133,100,225 +19900117,1800,133,100,200 +19900117,1800,133,100,175 +19900117,1800,133,100,150 +19900117,1800,133,100,125 +19900117,1800,133,100,100 +19900117,1800,133,100,70 +19900117,1800,133,100,50 +19900117,1800,133,100,30 +19900117,1800,133,100,20 +19900117,1800,133,100,10 +19900117,1800,133,100,9 +19900117,1800,133,100,7 +19900117,1800,133,100,5 +19900117,1800,133,100,3 +19900117,1800,133,100,2 +19900117,1800,133,100,1 +19900117,1800,133,210,40 +19900117,1800,3,117,2000 +19900117,1800,133,109,1 +19900117,1800,133,109,2 +19900117,1800,133,109,3 +19900117,1800,133,109,4 +19900117,1800,133,109,5 +19900117,1800,133,109,6 +19900117,1800,133,109,7 +19900117,1800,133,109,8 +19900117,1800,133,109,9 +19900117,1800,133,109,10 +19900117,1800,246,109,1 +19900117,1800,246,109,2 +19900117,1800,246,109,3 +19900117,1800,246,109,4 +19900117,1800,246,109,5 +19900117,1800,246,109,6 +19900117,1800,246,109,7 +19900117,1800,246,109,8 +19900117,1800,246,109,9 +19900117,1800,246,109,10 +19900117,1800,247,109,1 +19900117,1800,247,109,2 +19900117,1800,247,109,3 +19900117,1800,247,109,4 +19900117,1800,247,109,5 +19900117,1800,247,109,6 +19900117,1800,247,109,7 +19900117,1800,247,109,8 +19900117,1800,247,109,9 +19900117,1800,247,109,10 +19900117,1800,248,109,1 +19900117,1800,248,109,2 +19900117,1800,248,109,3 +19900117,1800,248,109,4 +19900117,1800,248,109,5 +19900117,1800,248,109,6 +19900117,1800,248,109,7 +19900117,1800,248,109,8 +19900117,1800,248,109,9 +19900117,1800,248,109,10 +19900117,1800,8,1,0 +19900117,1800,31,1,0 +19900117,1800,32,1,0 +19900117,1800,33,1,0 +19900117,1800,34,1,0 +19900117,1800,35,111,7 +19900117,1800,36,111,28 +19900117,1800,37,111,100 +19900117,1800,38,111,289 +19900117,1800,39,111,7 +19900117,1800,40,111,28 +19900117,1800,41,111,100 +19900117,1800,42,111,289 +19900117,1800,44,1,0 +19900117,1800,45,1,0 +19900117,1800,49,1,0 +19900117,1800,50,1,0 +19900117,1800,57,1,0 +19900117,1800,58,1,0 +19900117,1800,123,1,0 +19900117,1800,139,111,7 +19900117,1800,141,1,0 +19900117,1800,142,1,0 +19900117,1800,143,1,0 +19900117,1800,144,1,0 +19900117,1800,145,1,0 +19900117,1800,146,1,0 +19900117,1800,147,1,0 +19900117,1800,148,1,0 +19900117,1800,169,1,0 +19900117,1800,170,111,28 +19900117,1800,172,1,0 +19900117,1800,175,1,0 +19900117,1800,176,1,0 +19900117,1800,177,1,0 +19900117,1800,178,1,0 +19900117,1800,179,1,0 +19900117,1800,180,1,0 +19900117,1800,181,1,0 +19900117,1800,182,1,0 +19900117,1800,183,111,100 +19900117,1800,189,1,0 +19900117,1800,195,1,0 +19900117,1800,196,1,0 +19900117,1800,197,1,0 +19900117,1800,198,1,0 +19900117,1800,201,1,0 +19900117,1800,202,1,0 +19900117,1800,205,1,0 +19900117,1800,208,1,0 +19900117,1800,209,1,0 +19900117,1800,210,1,0 +19900117,1800,211,1,0 +19900117,1800,212,1,0 +19900117,1800,213,1,0 +19900117,1800,228,1,0 +19900117,1800,235,1,0 +19900117,1800,236,111,289 +19900117,1800,238,1,0 +19900117,1800,59,1,0 +19900117,1800,78,1,0 +19900117,1800,79,1,0 +19900117,1800,136,1,0 +19900117,1800,137,1,0 +19900117,1800,151,1,0 +19900117,1800,159,1,0 +19900117,1800,164,1,0 +19900117,1800,165,1,0 +19900117,1800,166,1,0 +19900117,1800,167,1,0 +19900117,1800,168,1,0 +19900117,1800,186,1,0 +19900117,1800,187,1,0 +19900117,1800,188,1,0 +19900117,1800,229,1,0 +19900117,1800,230,1,0 +19900117,1800,231,1,0 +19900117,1800,232,1,0 +19900117,1800,243,1,0 +19900117,1800,244,1,0 +19900117,1800,245,1,0 +19900117,1800,228246,1,0 +19900117,1800,228247,1,0 +19900117,2100,8,1,0 +19900117,2100,31,1,0 +19900117,2100,32,1,0 +19900117,2100,33,1,0 +19900117,2100,34,1,0 +19900117,2100,35,111,7 +19900117,2100,36,111,28 +19900117,2100,37,111,100 +19900117,2100,38,111,289 +19900117,2100,39,111,7 +19900117,2100,40,111,28 +19900117,2100,41,111,100 +19900117,2100,42,111,289 +19900117,2100,44,1,0 +19900117,2100,45,1,0 +19900117,2100,49,1,0 +19900117,2100,50,1,0 +19900117,2100,57,1,0 +19900117,2100,58,1,0 +19900117,2100,123,1,0 +19900117,2100,139,111,7 +19900117,2100,141,1,0 +19900117,2100,142,1,0 +19900117,2100,143,1,0 +19900117,2100,144,1,0 +19900117,2100,145,1,0 +19900117,2100,146,1,0 +19900117,2100,147,1,0 +19900117,2100,148,1,0 +19900117,2100,169,1,0 +19900117,2100,170,111,28 +19900117,2100,172,1,0 +19900117,2100,175,1,0 +19900117,2100,176,1,0 +19900117,2100,177,1,0 +19900117,2100,178,1,0 +19900117,2100,179,1,0 +19900117,2100,180,1,0 +19900117,2100,181,1,0 +19900117,2100,182,1,0 +19900117,2100,183,111,100 +19900117,2100,189,1,0 +19900117,2100,195,1,0 +19900117,2100,196,1,0 +19900117,2100,197,1,0 +19900117,2100,198,1,0 +19900117,2100,201,1,0 +19900117,2100,202,1,0 +19900117,2100,205,1,0 +19900117,2100,208,1,0 +19900117,2100,209,1,0 +19900117,2100,210,1,0 +19900117,2100,211,1,0 +19900117,2100,212,1,0 +19900117,2100,213,1,0 +19900117,2100,228,1,0 +19900117,2100,235,1,0 +19900117,2100,236,111,289 +19900117,2100,238,1,0 +19900117,2100,59,1,0 +19900117,2100,78,1,0 +19900117,2100,79,1,0 +19900117,2100,136,1,0 +19900117,2100,137,1,0 +19900117,2100,151,1,0 +19900117,2100,159,1,0 +19900117,2100,164,1,0 +19900117,2100,165,1,0 +19900117,2100,166,1,0 +19900117,2100,167,1,0 +19900117,2100,168,1,0 +19900117,2100,186,1,0 +19900117,2100,187,1,0 +19900117,2100,188,1,0 +19900117,2100,229,1,0 +19900117,2100,230,1,0 +19900117,2100,231,1,0 +19900117,2100,232,1,0 +19900117,2100,243,1,0 +19900117,2100,244,1,0 +19900117,2100,245,1,0 +19900117,2100,228246,1,0 +19900117,2100,228247,1,0 +19900118,0,133,100,1000 +19900118,0,133,100,975 +19900118,0,133,100,950 +19900118,0,133,100,925 +19900118,0,133,100,900 +19900118,0,133,100,875 +19900118,0,133,100,850 +19900118,0,133,100,825 +19900118,0,133,100,800 +19900118,0,133,100,775 +19900118,0,133,100,750 +19900118,0,133,100,740 +19900118,0,133,100,700 +19900118,0,133,100,650 +19900118,0,133,100,620 +19900118,0,133,100,600 +19900118,0,133,100,550 +19900118,0,133,100,500 +19900118,0,133,100,450 +19900118,0,133,100,400 +19900118,0,133,100,375 +19900118,0,133,100,350 +19900118,0,133,100,300 +19900118,0,133,100,250 +19900118,0,133,100,245 +19900118,0,133,100,225 +19900118,0,133,100,200 +19900118,0,133,100,175 +19900118,0,133,100,150 +19900118,0,133,100,125 +19900118,0,133,100,100 +19900118,0,133,100,70 +19900118,0,133,100,50 +19900118,0,133,100,30 +19900118,0,133,100,20 +19900118,0,133,100,10 +19900118,0,133,100,9 +19900118,0,133,100,7 +19900118,0,133,100,5 +19900118,0,133,100,3 +19900118,0,133,100,2 +19900118,0,133,100,1 +19900118,0,133,210,40 +19900118,0,3,117,2000 +19900118,0,133,109,1 +19900118,0,133,109,2 +19900118,0,133,109,3 +19900118,0,133,109,4 +19900118,0,133,109,5 +19900118,0,133,109,6 +19900118,0,133,109,7 +19900118,0,133,109,8 +19900118,0,133,109,9 +19900118,0,133,109,10 +19900118,0,246,109,1 +19900118,0,246,109,2 +19900118,0,246,109,3 +19900118,0,246,109,4 +19900118,0,246,109,5 +19900118,0,246,109,6 +19900118,0,246,109,7 +19900118,0,246,109,8 +19900118,0,246,109,9 +19900118,0,246,109,10 +19900118,0,247,109,1 +19900118,0,247,109,2 +19900118,0,247,109,3 +19900118,0,247,109,4 +19900118,0,247,109,5 +19900118,0,247,109,6 +19900118,0,247,109,7 +19900118,0,247,109,8 +19900118,0,247,109,9 +19900118,0,247,109,10 +19900118,0,248,109,1 +19900118,0,248,109,2 +19900118,0,248,109,3 +19900118,0,248,109,4 +19900118,0,248,109,5 +19900118,0,248,109,6 +19900118,0,248,109,7 +19900118,0,248,109,8 +19900118,0,248,109,9 +19900118,0,248,109,10 +19900118,0,8,1,0 +19900118,0,31,1,0 +19900118,0,32,1,0 +19900118,0,33,1,0 +19900118,0,34,1,0 +19900118,0,35,111,7 +19900118,0,36,111,28 +19900118,0,37,111,100 +19900118,0,38,111,289 +19900118,0,39,111,7 +19900118,0,40,111,28 +19900118,0,41,111,100 +19900118,0,42,111,289 +19900118,0,44,1,0 +19900118,0,45,1,0 +19900118,0,49,1,0 +19900118,0,50,1,0 +19900118,0,57,1,0 +19900118,0,58,1,0 +19900118,0,123,1,0 +19900118,0,139,111,7 +19900118,0,141,1,0 +19900118,0,142,1,0 +19900118,0,143,1,0 +19900118,0,144,1,0 +19900118,0,145,1,0 +19900118,0,146,1,0 +19900118,0,147,1,0 +19900118,0,148,1,0 +19900118,0,169,1,0 +19900118,0,170,111,28 +19900118,0,172,1,0 +19900118,0,175,1,0 +19900118,0,176,1,0 +19900118,0,177,1,0 +19900118,0,178,1,0 +19900118,0,179,1,0 +19900118,0,180,1,0 +19900118,0,181,1,0 +19900118,0,182,1,0 +19900118,0,183,111,100 +19900118,0,189,1,0 +19900118,0,195,1,0 +19900118,0,196,1,0 +19900118,0,197,1,0 +19900118,0,198,1,0 +19900118,0,201,1,0 +19900118,0,202,1,0 +19900118,0,205,1,0 +19900118,0,208,1,0 +19900118,0,209,1,0 +19900118,0,210,1,0 +19900118,0,211,1,0 +19900118,0,212,1,0 +19900118,0,213,1,0 +19900118,0,228,1,0 +19900118,0,235,1,0 +19900118,0,236,111,289 +19900118,0,238,1,0 +19900118,0,59,1,0 +19900118,0,78,1,0 +19900118,0,79,1,0 +19900118,0,136,1,0 +19900118,0,137,1,0 +19900118,0,151,1,0 +19900118,0,159,1,0 +19900118,0,164,1,0 +19900118,0,165,1,0 +19900118,0,166,1,0 +19900118,0,167,1,0 +19900118,0,168,1,0 +19900118,0,186,1,0 +19900118,0,187,1,0 +19900118,0,188,1,0 +19900118,0,229,1,0 +19900118,0,230,1,0 +19900118,0,231,1,0 +19900118,0,232,1,0 +19900118,0,243,1,0 +19900118,0,244,1,0 +19900118,0,245,1,0 +19900118,0,228246,1,0 +19900118,0,228247,1,0 +19900118,300,8,1,0 +19900118,300,31,1,0 +19900118,300,32,1,0 +19900118,300,33,1,0 +19900118,300,34,1,0 +19900118,300,35,111,7 +19900118,300,36,111,28 +19900118,300,37,111,100 +19900118,300,38,111,289 +19900118,300,39,111,7 +19900118,300,40,111,28 +19900118,300,41,111,100 +19900118,300,42,111,289 +19900118,300,44,1,0 +19900118,300,45,1,0 +19900118,300,49,1,0 +19900118,300,50,1,0 +19900118,300,57,1,0 +19900118,300,58,1,0 +19900118,300,123,1,0 +19900118,300,139,111,7 +19900118,300,141,1,0 +19900118,300,142,1,0 +19900118,300,143,1,0 +19900118,300,144,1,0 +19900118,300,145,1,0 +19900118,300,146,1,0 +19900118,300,147,1,0 +19900118,300,148,1,0 +19900118,300,169,1,0 +19900118,300,170,111,28 +19900118,300,172,1,0 +19900118,300,175,1,0 +19900118,300,176,1,0 +19900118,300,177,1,0 +19900118,300,178,1,0 +19900118,300,179,1,0 +19900118,300,180,1,0 +19900118,300,181,1,0 +19900118,300,182,1,0 +19900118,300,183,111,100 +19900118,300,189,1,0 +19900118,300,195,1,0 +19900118,300,196,1,0 +19900118,300,197,1,0 +19900118,300,198,1,0 +19900118,300,201,1,0 +19900118,300,202,1,0 +19900118,300,205,1,0 +19900118,300,208,1,0 +19900118,300,209,1,0 +19900118,300,210,1,0 +19900118,300,211,1,0 +19900118,300,212,1,0 +19900118,300,213,1,0 +19900118,300,228,1,0 +19900118,300,235,1,0 +19900118,300,236,111,289 +19900118,300,238,1,0 +19900118,300,59,1,0 +19900118,300,78,1,0 +19900118,300,79,1,0 +19900118,300,136,1,0 +19900118,300,137,1,0 +19900118,300,151,1,0 +19900118,300,159,1,0 +19900118,300,164,1,0 +19900118,300,165,1,0 +19900118,300,166,1,0 +19900118,300,167,1,0 +19900118,300,168,1,0 +19900118,300,186,1,0 +19900118,300,187,1,0 +19900118,300,188,1,0 +19900118,300,229,1,0 +19900118,300,230,1,0 +19900118,300,231,1,0 +19900118,300,232,1,0 +19900118,300,243,1,0 +19900118,300,244,1,0 +19900118,300,245,1,0 +19900118,300,228246,1,0 +19900118,300,228247,1,0 +19900118,600,133,100,1000 +19900118,600,133,100,975 +19900118,600,133,100,950 +19900118,600,133,100,925 +19900118,600,133,100,900 +19900118,600,133,100,875 +19900118,600,133,100,850 +19900118,600,133,100,825 +19900118,600,133,100,800 +19900118,600,133,100,775 +19900118,600,133,100,750 +19900118,600,133,100,740 +19900118,600,133,100,700 +19900118,600,133,100,650 +19900118,600,133,100,620 +19900118,600,133,100,600 +19900118,600,133,100,550 +19900118,600,133,100,500 +19900118,600,133,100,450 +19900118,600,133,100,400 +19900118,600,133,100,375 +19900118,600,133,100,350 +19900118,600,133,100,300 +19900118,600,133,100,250 +19900118,600,133,100,245 +19900118,600,133,100,225 +19900118,600,133,100,200 +19900118,600,133,100,175 +19900118,600,133,100,150 +19900118,600,133,100,125 +19900118,600,133,100,100 +19900118,600,133,100,70 +19900118,600,133,100,50 +19900118,600,133,100,30 +19900118,600,133,100,20 +19900118,600,133,100,10 +19900118,600,133,100,9 +19900118,600,133,100,7 +19900118,600,133,100,5 +19900118,600,133,100,3 +19900118,600,133,100,2 +19900118,600,133,100,1 +19900118,600,133,210,40 +19900118,600,3,117,2000 +19900118,600,133,109,1 +19900118,600,133,109,2 +19900118,600,133,109,3 +19900118,600,133,109,4 +19900118,600,133,109,5 +19900118,600,133,109,6 +19900118,600,133,109,7 +19900118,600,133,109,8 +19900118,600,133,109,9 +19900118,600,133,109,10 +19900118,600,246,109,1 +19900118,600,246,109,2 +19900118,600,246,109,3 +19900118,600,246,109,4 +19900118,600,246,109,5 +19900118,600,246,109,6 +19900118,600,246,109,7 +19900118,600,246,109,8 +19900118,600,246,109,9 +19900118,600,246,109,10 +19900118,600,247,109,1 +19900118,600,247,109,2 +19900118,600,247,109,3 +19900118,600,247,109,4 +19900118,600,247,109,5 +19900118,600,247,109,6 +19900118,600,247,109,7 +19900118,600,247,109,8 +19900118,600,247,109,9 +19900118,600,247,109,10 +19900118,600,248,109,1 +19900118,600,248,109,2 +19900118,600,248,109,3 +19900118,600,248,109,4 +19900118,600,248,109,5 +19900118,600,248,109,6 +19900118,600,248,109,7 +19900118,600,248,109,8 +19900118,600,248,109,9 +19900118,600,248,109,10 +19900118,600,8,1,0 +19900118,600,31,1,0 +19900118,600,32,1,0 +19900118,600,33,1,0 +19900118,600,34,1,0 +19900118,600,35,111,7 +19900118,600,36,111,28 +19900118,600,37,111,100 +19900118,600,38,111,289 +19900118,600,39,111,7 +19900118,600,40,111,28 +19900118,600,41,111,100 +19900118,600,42,111,289 +19900118,600,44,1,0 +19900118,600,45,1,0 +19900118,600,49,1,0 +19900118,600,50,1,0 +19900118,600,57,1,0 +19900118,600,58,1,0 +19900118,600,123,1,0 +19900118,600,139,111,7 +19900118,600,141,1,0 +19900118,600,142,1,0 +19900118,600,143,1,0 +19900118,600,144,1,0 +19900118,600,145,1,0 +19900118,600,146,1,0 +19900118,600,147,1,0 +19900118,600,148,1,0 +19900118,600,169,1,0 +19900118,600,170,111,28 +19900118,600,172,1,0 +19900118,600,175,1,0 +19900118,600,176,1,0 +19900118,600,177,1,0 +19900118,600,178,1,0 +19900118,600,179,1,0 +19900118,600,180,1,0 +19900118,600,181,1,0 +19900118,600,182,1,0 +19900118,600,183,111,100 +19900118,600,189,1,0 +19900118,600,195,1,0 +19900118,600,196,1,0 +19900118,600,197,1,0 +19900118,600,198,1,0 +19900118,600,201,1,0 +19900118,600,202,1,0 +19900118,600,205,1,0 +19900118,600,208,1,0 +19900118,600,209,1,0 +19900118,600,210,1,0 +19900118,600,211,1,0 +19900118,600,212,1,0 +19900118,600,213,1,0 +19900118,600,228,1,0 +19900118,600,235,1,0 +19900118,600,236,111,289 +19900118,600,238,1,0 +19900118,600,59,1,0 +19900118,600,78,1,0 +19900118,600,79,1,0 +19900118,600,136,1,0 +19900118,600,137,1,0 +19900118,600,151,1,0 +19900118,600,159,1,0 +19900118,600,164,1,0 +19900118,600,165,1,0 +19900118,600,166,1,0 +19900118,600,167,1,0 +19900118,600,168,1,0 +19900118,600,186,1,0 +19900118,600,187,1,0 +19900118,600,188,1,0 +19900118,600,229,1,0 +19900118,600,230,1,0 +19900118,600,231,1,0 +19900118,600,232,1,0 +19900118,600,243,1,0 +19900118,600,244,1,0 +19900118,600,245,1,0 +19900118,600,228246,1,0 +19900118,600,228247,1,0 +19900118,900,8,1,0 +19900118,900,31,1,0 +19900118,900,32,1,0 +19900118,900,33,1,0 +19900118,900,34,1,0 +19900118,900,35,111,7 +19900118,900,36,111,28 +19900118,900,37,111,100 +19900118,900,38,111,289 +19900118,900,39,111,7 +19900118,900,40,111,28 +19900118,900,41,111,100 +19900118,900,42,111,289 +19900118,900,44,1,0 +19900118,900,45,1,0 +19900118,900,49,1,0 +19900118,900,50,1,0 +19900118,900,57,1,0 +19900118,900,58,1,0 +19900118,900,123,1,0 +19900118,900,139,111,7 +19900118,900,141,1,0 +19900118,900,142,1,0 +19900118,900,143,1,0 +19900118,900,144,1,0 +19900118,900,145,1,0 +19900118,900,146,1,0 +19900118,900,147,1,0 +19900118,900,148,1,0 +19900118,900,169,1,0 +19900118,900,170,111,28 +19900118,900,172,1,0 +19900118,900,175,1,0 +19900118,900,176,1,0 +19900118,900,177,1,0 +19900118,900,178,1,0 +19900118,900,179,1,0 +19900118,900,180,1,0 +19900118,900,181,1,0 +19900118,900,182,1,0 +19900118,900,183,111,100 +19900118,900,189,1,0 +19900118,900,195,1,0 +19900118,900,196,1,0 +19900118,900,197,1,0 +19900118,900,198,1,0 +19900118,900,201,1,0 +19900118,900,202,1,0 +19900118,900,205,1,0 +19900118,900,208,1,0 +19900118,900,209,1,0 +19900118,900,210,1,0 +19900118,900,211,1,0 +19900118,900,212,1,0 +19900118,900,213,1,0 +19900118,900,228,1,0 +19900118,900,235,1,0 +19900118,900,236,111,289 +19900118,900,238,1,0 +19900118,900,59,1,0 +19900118,900,78,1,0 +19900118,900,79,1,0 +19900118,900,136,1,0 +19900118,900,137,1,0 +19900118,900,151,1,0 +19900118,900,159,1,0 +19900118,900,164,1,0 +19900118,900,165,1,0 +19900118,900,166,1,0 +19900118,900,167,1,0 +19900118,900,168,1,0 +19900118,900,186,1,0 +19900118,900,187,1,0 +19900118,900,188,1,0 +19900118,900,229,1,0 +19900118,900,230,1,0 +19900118,900,231,1,0 +19900118,900,232,1,0 +19900118,900,243,1,0 +19900118,900,244,1,0 +19900118,900,245,1,0 +19900118,900,228246,1,0 +19900118,900,228247,1,0 +19900118,1200,133,100,1000 +19900118,1200,133,100,975 +19900118,1200,133,100,950 +19900118,1200,133,100,925 +19900118,1200,133,100,900 +19900118,1200,133,100,875 +19900118,1200,133,100,850 +19900118,1200,133,100,825 +19900118,1200,133,100,800 +19900118,1200,133,100,775 +19900118,1200,133,100,750 +19900118,1200,133,100,740 +19900118,1200,133,100,700 +19900118,1200,133,100,650 +19900118,1200,133,100,620 +19900118,1200,133,100,600 +19900118,1200,133,100,550 +19900118,1200,133,100,500 +19900118,1200,133,100,450 +19900118,1200,133,100,400 +19900118,1200,133,100,375 +19900118,1200,133,100,350 +19900118,1200,133,100,300 +19900118,1200,133,100,250 +19900118,1200,133,100,245 +19900118,1200,133,100,225 +19900118,1200,133,100,200 +19900118,1200,133,100,175 +19900118,1200,133,100,150 +19900118,1200,133,100,125 +19900118,1200,133,100,100 +19900118,1200,133,100,70 +19900118,1200,133,100,50 +19900118,1200,133,100,30 +19900118,1200,133,100,20 +19900118,1200,133,100,10 +19900118,1200,133,100,9 +19900118,1200,133,100,7 +19900118,1200,133,100,5 +19900118,1200,133,100,3 +19900118,1200,133,100,2 +19900118,1200,133,100,1 +19900118,1200,133,210,40 +19900118,1200,3,117,2000 +19900118,1200,133,109,1 +19900118,1200,133,109,2 +19900118,1200,133,109,3 +19900118,1200,133,109,4 +19900118,1200,133,109,5 +19900118,1200,133,109,6 +19900118,1200,133,109,7 +19900118,1200,133,109,8 +19900118,1200,133,109,9 +19900118,1200,133,109,10 +19900118,1200,246,109,1 +19900118,1200,246,109,2 +19900118,1200,246,109,3 +19900118,1200,246,109,4 +19900118,1200,246,109,5 +19900118,1200,246,109,6 +19900118,1200,246,109,7 +19900118,1200,246,109,8 +19900118,1200,246,109,9 +19900118,1200,246,109,10 +19900118,1200,247,109,1 +19900118,1200,247,109,2 +19900118,1200,247,109,3 +19900118,1200,247,109,4 +19900118,1200,247,109,5 +19900118,1200,247,109,6 +19900118,1200,247,109,7 +19900118,1200,247,109,8 +19900118,1200,247,109,9 +19900118,1200,247,109,10 +19900118,1200,248,109,1 +19900118,1200,248,109,2 +19900118,1200,248,109,3 +19900118,1200,248,109,4 +19900118,1200,248,109,5 +19900118,1200,248,109,6 +19900118,1200,248,109,7 +19900118,1200,248,109,8 +19900118,1200,248,109,9 +19900118,1200,248,109,10 +19900118,1200,8,1,0 +19900118,1200,31,1,0 +19900118,1200,32,1,0 +19900118,1200,33,1,0 +19900118,1200,34,1,0 +19900118,1200,35,111,7 +19900118,1200,36,111,28 +19900118,1200,37,111,100 +19900118,1200,38,111,289 +19900118,1200,39,111,7 +19900118,1200,40,111,28 +19900118,1200,41,111,100 +19900118,1200,42,111,289 +19900118,1200,44,1,0 +19900118,1200,45,1,0 +19900118,1200,49,1,0 +19900118,1200,50,1,0 +19900118,1200,57,1,0 +19900118,1200,58,1,0 +19900118,1200,123,1,0 +19900118,1200,139,111,7 +19900118,1200,141,1,0 +19900118,1200,142,1,0 +19900118,1200,143,1,0 +19900118,1200,144,1,0 +19900118,1200,145,1,0 +19900118,1200,146,1,0 +19900118,1200,147,1,0 +19900118,1200,148,1,0 +19900118,1200,169,1,0 +19900118,1200,170,111,28 +19900118,1200,172,1,0 +19900118,1200,175,1,0 +19900118,1200,176,1,0 +19900118,1200,177,1,0 +19900118,1200,178,1,0 +19900118,1200,179,1,0 +19900118,1200,180,1,0 +19900118,1200,181,1,0 +19900118,1200,182,1,0 +19900118,1200,183,111,100 +19900118,1200,189,1,0 +19900118,1200,195,1,0 +19900118,1200,196,1,0 +19900118,1200,197,1,0 +19900118,1200,198,1,0 +19900118,1200,201,1,0 +19900118,1200,202,1,0 +19900118,1200,205,1,0 +19900118,1200,208,1,0 +19900118,1200,209,1,0 +19900118,1200,210,1,0 +19900118,1200,211,1,0 +19900118,1200,212,1,0 +19900118,1200,213,1,0 +19900118,1200,228,1,0 +19900118,1200,235,1,0 +19900118,1200,236,111,289 +19900118,1200,238,1,0 +19900118,1200,59,1,0 +19900118,1200,78,1,0 +19900118,1200,79,1,0 +19900118,1200,136,1,0 +19900118,1200,137,1,0 +19900118,1200,151,1,0 +19900118,1200,159,1,0 +19900118,1200,164,1,0 +19900118,1200,165,1,0 +19900118,1200,166,1,0 +19900118,1200,167,1,0 +19900118,1200,168,1,0 +19900118,1200,186,1,0 +19900118,1200,187,1,0 +19900118,1200,188,1,0 +19900118,1200,229,1,0 +19900118,1200,230,1,0 +19900118,1200,231,1,0 +19900118,1200,232,1,0 +19900118,1200,243,1,0 +19900118,1200,244,1,0 +19900118,1200,245,1,0 +19900118,1200,228246,1,0 +19900118,1200,228247,1,0 +19900118,1500,8,1,0 +19900118,1500,31,1,0 +19900118,1500,32,1,0 +19900118,1500,33,1,0 +19900118,1500,34,1,0 +19900118,1500,35,111,7 +19900118,1500,36,111,28 +19900118,1500,37,111,100 +19900118,1500,38,111,289 +19900118,1500,39,111,7 +19900118,1500,40,111,28 +19900118,1500,41,111,100 +19900118,1500,42,111,289 +19900118,1500,44,1,0 +19900118,1500,45,1,0 +19900118,1500,49,1,0 +19900118,1500,50,1,0 +19900118,1500,57,1,0 +19900118,1500,58,1,0 +19900118,1500,123,1,0 +19900118,1500,139,111,7 +19900118,1500,141,1,0 +19900118,1500,142,1,0 +19900118,1500,143,1,0 +19900118,1500,144,1,0 +19900118,1500,145,1,0 +19900118,1500,146,1,0 +19900118,1500,147,1,0 +19900118,1500,148,1,0 +19900118,1500,169,1,0 +19900118,1500,170,111,28 +19900118,1500,172,1,0 +19900118,1500,175,1,0 +19900118,1500,176,1,0 +19900118,1500,177,1,0 +19900118,1500,178,1,0 +19900118,1500,179,1,0 +19900118,1500,180,1,0 +19900118,1500,181,1,0 +19900118,1500,182,1,0 +19900118,1500,183,111,100 +19900118,1500,189,1,0 +19900118,1500,195,1,0 +19900118,1500,196,1,0 +19900118,1500,197,1,0 +19900118,1500,198,1,0 +19900118,1500,201,1,0 +19900118,1500,202,1,0 +19900118,1500,205,1,0 +19900118,1500,208,1,0 +19900118,1500,209,1,0 +19900118,1500,210,1,0 +19900118,1500,211,1,0 +19900118,1500,212,1,0 +19900118,1500,213,1,0 +19900118,1500,228,1,0 +19900118,1500,235,1,0 +19900118,1500,236,111,289 +19900118,1500,238,1,0 +19900118,1500,59,1,0 +19900118,1500,78,1,0 +19900118,1500,79,1,0 +19900118,1500,136,1,0 +19900118,1500,137,1,0 +19900118,1500,151,1,0 +19900118,1500,159,1,0 +19900118,1500,164,1,0 +19900118,1500,165,1,0 +19900118,1500,166,1,0 +19900118,1500,167,1,0 +19900118,1500,168,1,0 +19900118,1500,186,1,0 +19900118,1500,187,1,0 +19900118,1500,188,1,0 +19900118,1500,229,1,0 +19900118,1500,230,1,0 +19900118,1500,231,1,0 +19900118,1500,232,1,0 +19900118,1500,243,1,0 +19900118,1500,244,1,0 +19900118,1500,245,1,0 +19900118,1500,228246,1,0 +19900118,1500,228247,1,0 +19900118,1800,133,100,1000 +19900118,1800,133,100,975 +19900118,1800,133,100,950 +19900118,1800,133,100,925 +19900118,1800,133,100,900 +19900118,1800,133,100,875 +19900118,1800,133,100,850 +19900118,1800,133,100,825 +19900118,1800,133,100,800 +19900118,1800,133,100,775 +19900118,1800,133,100,750 +19900118,1800,133,100,740 +19900118,1800,133,100,700 +19900118,1800,133,100,650 +19900118,1800,133,100,620 +19900118,1800,133,100,600 +19900118,1800,133,100,550 +19900118,1800,133,100,500 +19900118,1800,133,100,450 +19900118,1800,133,100,400 +19900118,1800,133,100,375 +19900118,1800,133,100,350 +19900118,1800,133,100,300 +19900118,1800,133,100,250 +19900118,1800,133,100,245 +19900118,1800,133,100,225 +19900118,1800,133,100,200 +19900118,1800,133,100,175 +19900118,1800,133,100,150 +19900118,1800,133,100,125 +19900118,1800,133,100,100 +19900118,1800,133,100,70 +19900118,1800,133,100,50 +19900118,1800,133,100,30 +19900118,1800,133,100,20 +19900118,1800,133,100,10 +19900118,1800,133,100,9 +19900118,1800,133,100,7 +19900118,1800,133,100,5 +19900118,1800,133,100,3 +19900118,1800,133,100,2 +19900118,1800,133,100,1 +19900118,1800,133,210,40 +19900118,1800,3,117,2000 +19900118,1800,133,109,1 +19900118,1800,133,109,2 +19900118,1800,133,109,3 +19900118,1800,133,109,4 +19900118,1800,133,109,5 +19900118,1800,133,109,6 +19900118,1800,133,109,7 +19900118,1800,133,109,8 +19900118,1800,133,109,9 +19900118,1800,133,109,10 +19900118,1800,246,109,1 +19900118,1800,246,109,2 +19900118,1800,246,109,3 +19900118,1800,246,109,4 +19900118,1800,246,109,5 +19900118,1800,246,109,6 +19900118,1800,246,109,7 +19900118,1800,246,109,8 +19900118,1800,246,109,9 +19900118,1800,246,109,10 +19900118,1800,247,109,1 +19900118,1800,247,109,2 +19900118,1800,247,109,3 +19900118,1800,247,109,4 +19900118,1800,247,109,5 +19900118,1800,247,109,6 +19900118,1800,247,109,7 +19900118,1800,247,109,8 +19900118,1800,247,109,9 +19900118,1800,247,109,10 +19900118,1800,248,109,1 +19900118,1800,248,109,2 +19900118,1800,248,109,3 +19900118,1800,248,109,4 +19900118,1800,248,109,5 +19900118,1800,248,109,6 +19900118,1800,248,109,7 +19900118,1800,248,109,8 +19900118,1800,248,109,9 +19900118,1800,248,109,10 +19900118,1800,8,1,0 +19900118,1800,31,1,0 +19900118,1800,32,1,0 +19900118,1800,33,1,0 +19900118,1800,34,1,0 +19900118,1800,35,111,7 +19900118,1800,36,111,28 +19900118,1800,37,111,100 +19900118,1800,38,111,289 +19900118,1800,39,111,7 +19900118,1800,40,111,28 +19900118,1800,41,111,100 +19900118,1800,42,111,289 +19900118,1800,44,1,0 +19900118,1800,45,1,0 +19900118,1800,49,1,0 +19900118,1800,50,1,0 +19900118,1800,57,1,0 +19900118,1800,58,1,0 +19900118,1800,123,1,0 +19900118,1800,139,111,7 +19900118,1800,141,1,0 +19900118,1800,142,1,0 +19900118,1800,143,1,0 +19900118,1800,144,1,0 +19900118,1800,145,1,0 +19900118,1800,146,1,0 +19900118,1800,147,1,0 +19900118,1800,148,1,0 +19900118,1800,169,1,0 +19900118,1800,170,111,28 +19900118,1800,172,1,0 +19900118,1800,175,1,0 +19900118,1800,176,1,0 +19900118,1800,177,1,0 +19900118,1800,178,1,0 +19900118,1800,179,1,0 +19900118,1800,180,1,0 +19900118,1800,181,1,0 +19900118,1800,182,1,0 +19900118,1800,183,111,100 +19900118,1800,189,1,0 +19900118,1800,195,1,0 +19900118,1800,196,1,0 +19900118,1800,197,1,0 +19900118,1800,198,1,0 +19900118,1800,201,1,0 +19900118,1800,202,1,0 +19900118,1800,205,1,0 +19900118,1800,208,1,0 +19900118,1800,209,1,0 +19900118,1800,210,1,0 +19900118,1800,211,1,0 +19900118,1800,212,1,0 +19900118,1800,213,1,0 +19900118,1800,228,1,0 +19900118,1800,235,1,0 +19900118,1800,236,111,289 +19900118,1800,238,1,0 +19900118,1800,59,1,0 +19900118,1800,78,1,0 +19900118,1800,79,1,0 +19900118,1800,136,1,0 +19900118,1800,137,1,0 +19900118,1800,151,1,0 +19900118,1800,159,1,0 +19900118,1800,164,1,0 +19900118,1800,165,1,0 +19900118,1800,166,1,0 +19900118,1800,167,1,0 +19900118,1800,168,1,0 +19900118,1800,186,1,0 +19900118,1800,187,1,0 +19900118,1800,188,1,0 +19900118,1800,229,1,0 +19900118,1800,230,1,0 +19900118,1800,231,1,0 +19900118,1800,232,1,0 +19900118,1800,243,1,0 +19900118,1800,244,1,0 +19900118,1800,245,1,0 +19900118,1800,228246,1,0 +19900118,1800,228247,1,0 +19900118,2100,8,1,0 +19900118,2100,31,1,0 +19900118,2100,32,1,0 +19900118,2100,33,1,0 +19900118,2100,34,1,0 +19900118,2100,35,111,7 +19900118,2100,36,111,28 +19900118,2100,37,111,100 +19900118,2100,38,111,289 +19900118,2100,39,111,7 +19900118,2100,40,111,28 +19900118,2100,41,111,100 +19900118,2100,42,111,289 +19900118,2100,44,1,0 +19900118,2100,45,1,0 +19900118,2100,49,1,0 +19900118,2100,50,1,0 +19900118,2100,57,1,0 +19900118,2100,58,1,0 +19900118,2100,123,1,0 +19900118,2100,139,111,7 +19900118,2100,141,1,0 +19900118,2100,142,1,0 +19900118,2100,143,1,0 +19900118,2100,144,1,0 +19900118,2100,145,1,0 +19900118,2100,146,1,0 +19900118,2100,147,1,0 +19900118,2100,148,1,0 +19900118,2100,169,1,0 +19900118,2100,170,111,28 +19900118,2100,172,1,0 +19900118,2100,175,1,0 +19900118,2100,176,1,0 +19900118,2100,177,1,0 +19900118,2100,178,1,0 +19900118,2100,179,1,0 +19900118,2100,180,1,0 +19900118,2100,181,1,0 +19900118,2100,182,1,0 +19900118,2100,183,111,100 +19900118,2100,189,1,0 +19900118,2100,195,1,0 +19900118,2100,196,1,0 +19900118,2100,197,1,0 +19900118,2100,198,1,0 +19900118,2100,201,1,0 +19900118,2100,202,1,0 +19900118,2100,205,1,0 +19900118,2100,208,1,0 +19900118,2100,209,1,0 +19900118,2100,210,1,0 +19900118,2100,211,1,0 +19900118,2100,212,1,0 +19900118,2100,213,1,0 +19900118,2100,228,1,0 +19900118,2100,235,1,0 +19900118,2100,236,111,289 +19900118,2100,238,1,0 +19900118,2100,59,1,0 +19900118,2100,78,1,0 +19900118,2100,79,1,0 +19900118,2100,136,1,0 +19900118,2100,137,1,0 +19900118,2100,151,1,0 +19900118,2100,159,1,0 +19900118,2100,164,1,0 +19900118,2100,165,1,0 +19900118,2100,166,1,0 +19900118,2100,167,1,0 +19900118,2100,168,1,0 +19900118,2100,186,1,0 +19900118,2100,187,1,0 +19900118,2100,188,1,0 +19900118,2100,229,1,0 +19900118,2100,230,1,0 +19900118,2100,231,1,0 +19900118,2100,232,1,0 +19900118,2100,243,1,0 +19900118,2100,244,1,0 +19900118,2100,245,1,0 +19900118,2100,228246,1,0 +19900118,2100,228247,1,0 +19900119,0,133,100,1000 +19900119,0,133,100,975 +19900119,0,133,100,950 +19900119,0,133,100,925 +19900119,0,133,100,900 +19900119,0,133,100,875 +19900119,0,133,100,850 +19900119,0,133,100,825 +19900119,0,133,100,800 +19900119,0,133,100,775 +19900119,0,133,100,750 +19900119,0,133,100,740 +19900119,0,133,100,700 +19900119,0,133,100,650 +19900119,0,133,100,620 +19900119,0,133,100,600 +19900119,0,133,100,550 +19900119,0,133,100,500 +19900119,0,133,100,450 +19900119,0,133,100,400 +19900119,0,133,100,375 +19900119,0,133,100,350 +19900119,0,133,100,300 +19900119,0,133,100,250 +19900119,0,133,100,245 +19900119,0,133,100,225 +19900119,0,133,100,200 +19900119,0,133,100,175 +19900119,0,133,100,150 +19900119,0,133,100,125 +19900119,0,133,100,100 +19900119,0,133,100,70 +19900119,0,133,100,50 +19900119,0,133,100,30 +19900119,0,133,100,20 +19900119,0,133,100,10 +19900119,0,133,100,9 +19900119,0,133,100,7 +19900119,0,133,100,5 +19900119,0,133,100,3 +19900119,0,133,100,2 +19900119,0,133,100,1 +19900119,0,133,210,40 +19900119,0,3,117,2000 +19900119,0,133,109,1 +19900119,0,133,109,2 +19900119,0,133,109,3 +19900119,0,133,109,4 +19900119,0,133,109,5 +19900119,0,133,109,6 +19900119,0,133,109,7 +19900119,0,133,109,8 +19900119,0,133,109,9 +19900119,0,133,109,10 +19900119,0,246,109,1 +19900119,0,246,109,2 +19900119,0,246,109,3 +19900119,0,246,109,4 +19900119,0,246,109,5 +19900119,0,246,109,6 +19900119,0,246,109,7 +19900119,0,246,109,8 +19900119,0,246,109,9 +19900119,0,246,109,10 +19900119,0,247,109,1 +19900119,0,247,109,2 +19900119,0,247,109,3 +19900119,0,247,109,4 +19900119,0,247,109,5 +19900119,0,247,109,6 +19900119,0,247,109,7 +19900119,0,247,109,8 +19900119,0,247,109,9 +19900119,0,247,109,10 +19900119,0,248,109,1 +19900119,0,248,109,2 +19900119,0,248,109,3 +19900119,0,248,109,4 +19900119,0,248,109,5 +19900119,0,248,109,6 +19900119,0,248,109,7 +19900119,0,248,109,8 +19900119,0,248,109,9 +19900119,0,248,109,10 +19900119,0,8,1,0 +19900119,0,31,1,0 +19900119,0,32,1,0 +19900119,0,33,1,0 +19900119,0,34,1,0 +19900119,0,35,111,7 +19900119,0,36,111,28 +19900119,0,37,111,100 +19900119,0,38,111,289 +19900119,0,39,111,7 +19900119,0,40,111,28 +19900119,0,41,111,100 +19900119,0,42,111,289 +19900119,0,44,1,0 +19900119,0,45,1,0 +19900119,0,49,1,0 +19900119,0,50,1,0 +19900119,0,57,1,0 +19900119,0,58,1,0 +19900119,0,123,1,0 +19900119,0,139,111,7 +19900119,0,141,1,0 +19900119,0,142,1,0 +19900119,0,143,1,0 +19900119,0,144,1,0 +19900119,0,145,1,0 +19900119,0,146,1,0 +19900119,0,147,1,0 +19900119,0,148,1,0 +19900119,0,169,1,0 +19900119,0,170,111,28 +19900119,0,172,1,0 +19900119,0,175,1,0 +19900119,0,176,1,0 +19900119,0,177,1,0 +19900119,0,178,1,0 +19900119,0,179,1,0 +19900119,0,180,1,0 +19900119,0,181,1,0 +19900119,0,182,1,0 +19900119,0,183,111,100 +19900119,0,189,1,0 +19900119,0,195,1,0 +19900119,0,196,1,0 +19900119,0,197,1,0 +19900119,0,198,1,0 +19900119,0,201,1,0 +19900119,0,202,1,0 +19900119,0,205,1,0 +19900119,0,208,1,0 +19900119,0,209,1,0 +19900119,0,210,1,0 +19900119,0,211,1,0 +19900119,0,212,1,0 +19900119,0,213,1,0 +19900119,0,228,1,0 +19900119,0,235,1,0 +19900119,0,236,111,289 +19900119,0,238,1,0 +19900119,0,59,1,0 +19900119,0,78,1,0 +19900119,0,79,1,0 +19900119,0,136,1,0 +19900119,0,137,1,0 +19900119,0,151,1,0 +19900119,0,159,1,0 +19900119,0,164,1,0 +19900119,0,165,1,0 +19900119,0,166,1,0 +19900119,0,167,1,0 +19900119,0,168,1,0 +19900119,0,186,1,0 +19900119,0,187,1,0 +19900119,0,188,1,0 +19900119,0,229,1,0 +19900119,0,230,1,0 +19900119,0,231,1,0 +19900119,0,232,1,0 +19900119,0,243,1,0 +19900119,0,244,1,0 +19900119,0,245,1,0 +19900119,0,228246,1,0 +19900119,0,228247,1,0 +19900119,300,8,1,0 +19900119,300,31,1,0 +19900119,300,32,1,0 +19900119,300,33,1,0 +19900119,300,34,1,0 +19900119,300,35,111,7 +19900119,300,36,111,28 +19900119,300,37,111,100 +19900119,300,38,111,289 +19900119,300,39,111,7 +19900119,300,40,111,28 +19900119,300,41,111,100 +19900119,300,42,111,289 +19900119,300,44,1,0 +19900119,300,45,1,0 +19900119,300,49,1,0 +19900119,300,50,1,0 +19900119,300,57,1,0 +19900119,300,58,1,0 +19900119,300,123,1,0 +19900119,300,139,111,7 +19900119,300,141,1,0 +19900119,300,142,1,0 +19900119,300,143,1,0 +19900119,300,144,1,0 +19900119,300,145,1,0 +19900119,300,146,1,0 +19900119,300,147,1,0 +19900119,300,148,1,0 +19900119,300,169,1,0 +19900119,300,170,111,28 +19900119,300,172,1,0 +19900119,300,175,1,0 +19900119,300,176,1,0 +19900119,300,177,1,0 +19900119,300,178,1,0 +19900119,300,179,1,0 +19900119,300,180,1,0 +19900119,300,181,1,0 +19900119,300,182,1,0 +19900119,300,183,111,100 +19900119,300,189,1,0 +19900119,300,195,1,0 +19900119,300,196,1,0 +19900119,300,197,1,0 +19900119,300,198,1,0 +19900119,300,201,1,0 +19900119,300,202,1,0 +19900119,300,205,1,0 +19900119,300,208,1,0 +19900119,300,209,1,0 +19900119,300,210,1,0 +19900119,300,211,1,0 +19900119,300,212,1,0 +19900119,300,213,1,0 +19900119,300,228,1,0 +19900119,300,235,1,0 +19900119,300,236,111,289 +19900119,300,238,1,0 +19900119,300,59,1,0 +19900119,300,78,1,0 +19900119,300,79,1,0 +19900119,300,136,1,0 +19900119,300,137,1,0 +19900119,300,151,1,0 +19900119,300,159,1,0 +19900119,300,164,1,0 +19900119,300,165,1,0 +19900119,300,166,1,0 +19900119,300,167,1,0 +19900119,300,168,1,0 +19900119,300,186,1,0 +19900119,300,187,1,0 +19900119,300,188,1,0 +19900119,300,229,1,0 +19900119,300,230,1,0 +19900119,300,231,1,0 +19900119,300,232,1,0 +19900119,300,243,1,0 +19900119,300,244,1,0 +19900119,300,245,1,0 +19900119,300,228246,1,0 +19900119,300,228247,1,0 +19900119,600,133,100,1000 +19900119,600,133,100,975 +19900119,600,133,100,950 +19900119,600,133,100,925 +19900119,600,133,100,900 +19900119,600,133,100,875 +19900119,600,133,100,850 +19900119,600,133,100,825 +19900119,600,133,100,800 +19900119,600,133,100,775 +19900119,600,133,100,750 +19900119,600,133,100,740 +19900119,600,133,100,700 +19900119,600,133,100,650 +19900119,600,133,100,620 +19900119,600,133,100,600 +19900119,600,133,100,550 +19900119,600,133,100,500 +19900119,600,133,100,450 +19900119,600,133,100,400 +19900119,600,133,100,375 +19900119,600,133,100,350 +19900119,600,133,100,300 +19900119,600,133,100,250 +19900119,600,133,100,245 +19900119,600,133,100,225 +19900119,600,133,100,200 +19900119,600,133,100,175 +19900119,600,133,100,150 +19900119,600,133,100,125 +19900119,600,133,100,100 +19900119,600,133,100,70 +19900119,600,133,100,50 +19900119,600,133,100,30 +19900119,600,133,100,20 +19900119,600,133,100,10 +19900119,600,133,100,9 +19900119,600,133,100,7 +19900119,600,133,100,5 +19900119,600,133,100,3 +19900119,600,133,100,2 +19900119,600,133,100,1 +19900119,600,133,210,40 +19900119,600,3,117,2000 +19900119,600,133,109,1 +19900119,600,133,109,2 +19900119,600,133,109,3 +19900119,600,133,109,4 +19900119,600,133,109,5 +19900119,600,133,109,6 +19900119,600,133,109,7 +19900119,600,133,109,8 +19900119,600,133,109,9 +19900119,600,133,109,10 +19900119,600,246,109,1 +19900119,600,246,109,2 +19900119,600,246,109,3 +19900119,600,246,109,4 +19900119,600,246,109,5 +19900119,600,246,109,6 +19900119,600,246,109,7 +19900119,600,246,109,8 +19900119,600,246,109,9 +19900119,600,246,109,10 +19900119,600,247,109,1 +19900119,600,247,109,2 +19900119,600,247,109,3 +19900119,600,247,109,4 +19900119,600,247,109,5 +19900119,600,247,109,6 +19900119,600,247,109,7 +19900119,600,247,109,8 +19900119,600,247,109,9 +19900119,600,247,109,10 +19900119,600,248,109,1 +19900119,600,248,109,2 +19900119,600,248,109,3 +19900119,600,248,109,4 +19900119,600,248,109,5 +19900119,600,248,109,6 +19900119,600,248,109,7 +19900119,600,248,109,8 +19900119,600,248,109,9 +19900119,600,248,109,10 +19900119,600,8,1,0 +19900119,600,31,1,0 +19900119,600,32,1,0 +19900119,600,33,1,0 +19900119,600,34,1,0 +19900119,600,35,111,7 +19900119,600,36,111,28 +19900119,600,37,111,100 +19900119,600,38,111,289 +19900119,600,39,111,7 +19900119,600,40,111,28 +19900119,600,41,111,100 +19900119,600,42,111,289 +19900119,600,44,1,0 +19900119,600,45,1,0 +19900119,600,49,1,0 +19900119,600,50,1,0 +19900119,600,57,1,0 +19900119,600,58,1,0 +19900119,600,123,1,0 +19900119,600,139,111,7 +19900119,600,141,1,0 +19900119,600,142,1,0 +19900119,600,143,1,0 +19900119,600,144,1,0 +19900119,600,145,1,0 +19900119,600,146,1,0 +19900119,600,147,1,0 +19900119,600,148,1,0 +19900119,600,169,1,0 +19900119,600,170,111,28 +19900119,600,172,1,0 +19900119,600,175,1,0 +19900119,600,176,1,0 +19900119,600,177,1,0 +19900119,600,178,1,0 +19900119,600,179,1,0 +19900119,600,180,1,0 +19900119,600,181,1,0 +19900119,600,182,1,0 +19900119,600,183,111,100 +19900119,600,189,1,0 +19900119,600,195,1,0 +19900119,600,196,1,0 +19900119,600,197,1,0 +19900119,600,198,1,0 +19900119,600,201,1,0 +19900119,600,202,1,0 +19900119,600,205,1,0 +19900119,600,208,1,0 +19900119,600,209,1,0 +19900119,600,210,1,0 +19900119,600,211,1,0 +19900119,600,212,1,0 +19900119,600,213,1,0 +19900119,600,228,1,0 +19900119,600,235,1,0 +19900119,600,236,111,289 +19900119,600,238,1,0 +19900119,600,59,1,0 +19900119,600,78,1,0 +19900119,600,79,1,0 +19900119,600,136,1,0 +19900119,600,137,1,0 +19900119,600,151,1,0 +19900119,600,159,1,0 +19900119,600,164,1,0 +19900119,600,165,1,0 +19900119,600,166,1,0 +19900119,600,167,1,0 +19900119,600,168,1,0 +19900119,600,186,1,0 +19900119,600,187,1,0 +19900119,600,188,1,0 +19900119,600,229,1,0 +19900119,600,230,1,0 +19900119,600,231,1,0 +19900119,600,232,1,0 +19900119,600,243,1,0 +19900119,600,244,1,0 +19900119,600,245,1,0 +19900119,600,228246,1,0 +19900119,600,228247,1,0 +19900119,900,8,1,0 +19900119,900,31,1,0 +19900119,900,32,1,0 +19900119,900,33,1,0 +19900119,900,34,1,0 +19900119,900,35,111,7 +19900119,900,36,111,28 +19900119,900,37,111,100 +19900119,900,38,111,289 +19900119,900,39,111,7 +19900119,900,40,111,28 +19900119,900,41,111,100 +19900119,900,42,111,289 +19900119,900,44,1,0 +19900119,900,45,1,0 +19900119,900,49,1,0 +19900119,900,50,1,0 +19900119,900,57,1,0 +19900119,900,58,1,0 +19900119,900,123,1,0 +19900119,900,139,111,7 +19900119,900,141,1,0 +19900119,900,142,1,0 +19900119,900,143,1,0 +19900119,900,144,1,0 +19900119,900,145,1,0 +19900119,900,146,1,0 +19900119,900,147,1,0 +19900119,900,148,1,0 +19900119,900,169,1,0 +19900119,900,170,111,28 +19900119,900,172,1,0 +19900119,900,175,1,0 +19900119,900,176,1,0 +19900119,900,177,1,0 +19900119,900,178,1,0 +19900119,900,179,1,0 +19900119,900,180,1,0 +19900119,900,181,1,0 +19900119,900,182,1,0 +19900119,900,183,111,100 +19900119,900,189,1,0 +19900119,900,195,1,0 +19900119,900,196,1,0 +19900119,900,197,1,0 +19900119,900,198,1,0 +19900119,900,201,1,0 +19900119,900,202,1,0 +19900119,900,205,1,0 +19900119,900,208,1,0 +19900119,900,209,1,0 +19900119,900,210,1,0 +19900119,900,211,1,0 +19900119,900,212,1,0 +19900119,900,213,1,0 +19900119,900,228,1,0 +19900119,900,235,1,0 +19900119,900,236,111,289 +19900119,900,238,1,0 +19900119,900,59,1,0 +19900119,900,78,1,0 +19900119,900,79,1,0 +19900119,900,136,1,0 +19900119,900,137,1,0 +19900119,900,151,1,0 +19900119,900,159,1,0 +19900119,900,164,1,0 +19900119,900,165,1,0 +19900119,900,166,1,0 +19900119,900,167,1,0 +19900119,900,168,1,0 +19900119,900,186,1,0 +19900119,900,187,1,0 +19900119,900,188,1,0 +19900119,900,229,1,0 +19900119,900,230,1,0 +19900119,900,231,1,0 +19900119,900,232,1,0 +19900119,900,243,1,0 +19900119,900,244,1,0 +19900119,900,245,1,0 +19900119,900,228246,1,0 +19900119,900,228247,1,0 +19900119,1200,133,100,1000 +19900119,1200,133,100,975 +19900119,1200,133,100,950 +19900119,1200,133,100,925 +19900119,1200,133,100,900 +19900119,1200,133,100,875 +19900119,1200,133,100,850 +19900119,1200,133,100,825 +19900119,1200,133,100,800 +19900119,1200,133,100,775 +19900119,1200,133,100,750 +19900119,1200,133,100,740 +19900119,1200,133,100,700 +19900119,1200,133,100,650 +19900119,1200,133,100,620 +19900119,1200,133,100,600 +19900119,1200,133,100,550 +19900119,1200,133,100,500 +19900119,1200,133,100,450 +19900119,1200,133,100,400 +19900119,1200,133,100,375 +19900119,1200,133,100,350 +19900119,1200,133,100,300 +19900119,1200,133,100,250 +19900119,1200,133,100,245 +19900119,1200,133,100,225 +19900119,1200,133,100,200 +19900119,1200,133,100,175 +19900119,1200,133,100,150 +19900119,1200,133,100,125 +19900119,1200,133,100,100 +19900119,1200,133,100,70 +19900119,1200,133,100,50 +19900119,1200,133,100,30 +19900119,1200,133,100,20 +19900119,1200,133,100,10 +19900119,1200,133,100,9 +19900119,1200,133,100,7 +19900119,1200,133,100,5 +19900119,1200,133,100,3 +19900119,1200,133,100,2 +19900119,1200,133,100,1 +19900119,1200,133,210,40 +19900119,1200,3,117,2000 +19900119,1200,133,109,1 +19900119,1200,133,109,2 +19900119,1200,133,109,3 +19900119,1200,133,109,4 +19900119,1200,133,109,5 +19900119,1200,133,109,6 +19900119,1200,133,109,7 +19900119,1200,133,109,8 +19900119,1200,133,109,9 +19900119,1200,133,109,10 +19900119,1200,246,109,1 +19900119,1200,246,109,2 +19900119,1200,246,109,3 +19900119,1200,246,109,4 +19900119,1200,246,109,5 +19900119,1200,246,109,6 +19900119,1200,246,109,7 +19900119,1200,246,109,8 +19900119,1200,246,109,9 +19900119,1200,246,109,10 +19900119,1200,247,109,1 +19900119,1200,247,109,2 +19900119,1200,247,109,3 +19900119,1200,247,109,4 +19900119,1200,247,109,5 +19900119,1200,247,109,6 +19900119,1200,247,109,7 +19900119,1200,247,109,8 +19900119,1200,247,109,9 +19900119,1200,247,109,10 +19900119,1200,248,109,1 +19900119,1200,248,109,2 +19900119,1200,248,109,3 +19900119,1200,248,109,4 +19900119,1200,248,109,5 +19900119,1200,248,109,6 +19900119,1200,248,109,7 +19900119,1200,248,109,8 +19900119,1200,248,109,9 +19900119,1200,248,109,10 +19900119,1200,8,1,0 +19900119,1200,31,1,0 +19900119,1200,32,1,0 +19900119,1200,33,1,0 +19900119,1200,34,1,0 +19900119,1200,35,111,7 +19900119,1200,36,111,28 +19900119,1200,37,111,100 +19900119,1200,38,111,289 +19900119,1200,39,111,7 +19900119,1200,40,111,28 +19900119,1200,41,111,100 +19900119,1200,42,111,289 +19900119,1200,44,1,0 +19900119,1200,45,1,0 +19900119,1200,49,1,0 +19900119,1200,50,1,0 +19900119,1200,57,1,0 +19900119,1200,58,1,0 +19900119,1200,123,1,0 +19900119,1200,139,111,7 +19900119,1200,141,1,0 +19900119,1200,142,1,0 +19900119,1200,143,1,0 +19900119,1200,144,1,0 +19900119,1200,145,1,0 +19900119,1200,146,1,0 +19900119,1200,147,1,0 +19900119,1200,148,1,0 +19900119,1200,169,1,0 +19900119,1200,170,111,28 +19900119,1200,172,1,0 +19900119,1200,175,1,0 +19900119,1200,176,1,0 +19900119,1200,177,1,0 +19900119,1200,178,1,0 +19900119,1200,179,1,0 +19900119,1200,180,1,0 +19900119,1200,181,1,0 +19900119,1200,182,1,0 +19900119,1200,183,111,100 +19900119,1200,189,1,0 +19900119,1200,195,1,0 +19900119,1200,196,1,0 +19900119,1200,197,1,0 +19900119,1200,198,1,0 +19900119,1200,201,1,0 +19900119,1200,202,1,0 +19900119,1200,205,1,0 +19900119,1200,208,1,0 +19900119,1200,209,1,0 +19900119,1200,210,1,0 +19900119,1200,211,1,0 +19900119,1200,212,1,0 +19900119,1200,213,1,0 +19900119,1200,228,1,0 +19900119,1200,235,1,0 +19900119,1200,236,111,289 +19900119,1200,238,1,0 +19900119,1200,59,1,0 +19900119,1200,78,1,0 +19900119,1200,79,1,0 +19900119,1200,136,1,0 +19900119,1200,137,1,0 +19900119,1200,151,1,0 +19900119,1200,159,1,0 +19900119,1200,164,1,0 +19900119,1200,165,1,0 +19900119,1200,166,1,0 +19900119,1200,167,1,0 +19900119,1200,168,1,0 +19900119,1200,186,1,0 +19900119,1200,187,1,0 +19900119,1200,188,1,0 +19900119,1200,229,1,0 +19900119,1200,230,1,0 +19900119,1200,231,1,0 +19900119,1200,232,1,0 +19900119,1200,243,1,0 +19900119,1200,244,1,0 +19900119,1200,245,1,0 +19900119,1200,228246,1,0 +19900119,1200,228247,1,0 +19900119,1500,8,1,0 +19900119,1500,31,1,0 +19900119,1500,32,1,0 +19900119,1500,33,1,0 +19900119,1500,34,1,0 +19900119,1500,35,111,7 +19900119,1500,36,111,28 +19900119,1500,37,111,100 +19900119,1500,38,111,289 +19900119,1500,39,111,7 +19900119,1500,40,111,28 +19900119,1500,41,111,100 +19900119,1500,42,111,289 +19900119,1500,44,1,0 +19900119,1500,45,1,0 +19900119,1500,49,1,0 +19900119,1500,50,1,0 +19900119,1500,57,1,0 +19900119,1500,58,1,0 +19900119,1500,123,1,0 +19900119,1500,139,111,7 +19900119,1500,141,1,0 +19900119,1500,142,1,0 +19900119,1500,143,1,0 +19900119,1500,144,1,0 +19900119,1500,145,1,0 +19900119,1500,146,1,0 +19900119,1500,147,1,0 +19900119,1500,148,1,0 +19900119,1500,169,1,0 +19900119,1500,170,111,28 +19900119,1500,172,1,0 +19900119,1500,175,1,0 +19900119,1500,176,1,0 +19900119,1500,177,1,0 +19900119,1500,178,1,0 +19900119,1500,179,1,0 +19900119,1500,180,1,0 +19900119,1500,181,1,0 +19900119,1500,182,1,0 +19900119,1500,183,111,100 +19900119,1500,189,1,0 +19900119,1500,195,1,0 +19900119,1500,196,1,0 +19900119,1500,197,1,0 +19900119,1500,198,1,0 +19900119,1500,201,1,0 +19900119,1500,202,1,0 +19900119,1500,205,1,0 +19900119,1500,208,1,0 +19900119,1500,209,1,0 +19900119,1500,210,1,0 +19900119,1500,211,1,0 +19900119,1500,212,1,0 +19900119,1500,213,1,0 +19900119,1500,228,1,0 +19900119,1500,235,1,0 +19900119,1500,236,111,289 +19900119,1500,238,1,0 +19900119,1500,59,1,0 +19900119,1500,78,1,0 +19900119,1500,79,1,0 +19900119,1500,136,1,0 +19900119,1500,137,1,0 +19900119,1500,151,1,0 +19900119,1500,159,1,0 +19900119,1500,164,1,0 +19900119,1500,165,1,0 +19900119,1500,166,1,0 +19900119,1500,167,1,0 +19900119,1500,168,1,0 +19900119,1500,186,1,0 +19900119,1500,187,1,0 +19900119,1500,188,1,0 +19900119,1500,229,1,0 +19900119,1500,230,1,0 +19900119,1500,231,1,0 +19900119,1500,232,1,0 +19900119,1500,243,1,0 +19900119,1500,244,1,0 +19900119,1500,245,1,0 +19900119,1500,228246,1,0 +19900119,1500,228247,1,0 +19900119,1800,133,100,1000 +19900119,1800,133,100,975 +19900119,1800,133,100,950 +19900119,1800,133,100,925 +19900119,1800,133,100,900 +19900119,1800,133,100,875 +19900119,1800,133,100,850 +19900119,1800,133,100,825 +19900119,1800,133,100,800 +19900119,1800,133,100,775 +19900119,1800,133,100,750 +19900119,1800,133,100,740 +19900119,1800,133,100,700 +19900119,1800,133,100,650 +19900119,1800,133,100,620 +19900119,1800,133,100,600 +19900119,1800,133,100,550 +19900119,1800,133,100,500 +19900119,1800,133,100,450 +19900119,1800,133,100,400 +19900119,1800,133,100,375 +19900119,1800,133,100,350 +19900119,1800,133,100,300 +19900119,1800,133,100,250 +19900119,1800,133,100,245 +19900119,1800,133,100,225 +19900119,1800,133,100,200 +19900119,1800,133,100,175 +19900119,1800,133,100,150 +19900119,1800,133,100,125 +19900119,1800,133,100,100 +19900119,1800,133,100,70 +19900119,1800,133,100,50 +19900119,1800,133,100,30 +19900119,1800,133,100,20 +19900119,1800,133,100,10 +19900119,1800,133,100,9 +19900119,1800,133,100,7 +19900119,1800,133,100,5 +19900119,1800,133,100,3 +19900119,1800,133,100,2 +19900119,1800,133,100,1 +19900119,1800,133,210,40 +19900119,1800,3,117,2000 +19900119,1800,133,109,1 +19900119,1800,133,109,2 +19900119,1800,133,109,3 +19900119,1800,133,109,4 +19900119,1800,133,109,5 +19900119,1800,133,109,6 +19900119,1800,133,109,7 +19900119,1800,133,109,8 +19900119,1800,133,109,9 +19900119,1800,133,109,10 +19900119,1800,246,109,1 +19900119,1800,246,109,2 +19900119,1800,246,109,3 +19900119,1800,246,109,4 +19900119,1800,246,109,5 +19900119,1800,246,109,6 +19900119,1800,246,109,7 +19900119,1800,246,109,8 +19900119,1800,246,109,9 +19900119,1800,246,109,10 +19900119,1800,247,109,1 +19900119,1800,247,109,2 +19900119,1800,247,109,3 +19900119,1800,247,109,4 +19900119,1800,247,109,5 +19900119,1800,247,109,6 +19900119,1800,247,109,7 +19900119,1800,247,109,8 +19900119,1800,247,109,9 +19900119,1800,247,109,10 +19900119,1800,248,109,1 +19900119,1800,248,109,2 +19900119,1800,248,109,3 +19900119,1800,248,109,4 +19900119,1800,248,109,5 +19900119,1800,248,109,6 +19900119,1800,248,109,7 +19900119,1800,248,109,8 +19900119,1800,248,109,9 +19900119,1800,248,109,10 +19900119,1800,8,1,0 +19900119,1800,31,1,0 +19900119,1800,32,1,0 +19900119,1800,33,1,0 +19900119,1800,34,1,0 +19900119,1800,35,111,7 +19900119,1800,36,111,28 +19900119,1800,37,111,100 +19900119,1800,38,111,289 +19900119,1800,39,111,7 +19900119,1800,40,111,28 +19900119,1800,41,111,100 +19900119,1800,42,111,289 +19900119,1800,44,1,0 +19900119,1800,45,1,0 +19900119,1800,49,1,0 +19900119,1800,50,1,0 +19900119,1800,57,1,0 +19900119,1800,58,1,0 +19900119,1800,123,1,0 +19900119,1800,139,111,7 +19900119,1800,141,1,0 +19900119,1800,142,1,0 +19900119,1800,143,1,0 +19900119,1800,144,1,0 +19900119,1800,145,1,0 +19900119,1800,146,1,0 +19900119,1800,147,1,0 +19900119,1800,148,1,0 +19900119,1800,169,1,0 +19900119,1800,170,111,28 +19900119,1800,172,1,0 +19900119,1800,175,1,0 +19900119,1800,176,1,0 +19900119,1800,177,1,0 +19900119,1800,178,1,0 +19900119,1800,179,1,0 +19900119,1800,180,1,0 +19900119,1800,181,1,0 +19900119,1800,182,1,0 +19900119,1800,183,111,100 +19900119,1800,189,1,0 +19900119,1800,195,1,0 +19900119,1800,196,1,0 +19900119,1800,197,1,0 +19900119,1800,198,1,0 +19900119,1800,201,1,0 +19900119,1800,202,1,0 +19900119,1800,205,1,0 +19900119,1800,208,1,0 +19900119,1800,209,1,0 +19900119,1800,210,1,0 +19900119,1800,211,1,0 +19900119,1800,212,1,0 +19900119,1800,213,1,0 +19900119,1800,228,1,0 +19900119,1800,235,1,0 +19900119,1800,236,111,289 +19900119,1800,238,1,0 +19900119,1800,59,1,0 +19900119,1800,78,1,0 +19900119,1800,79,1,0 +19900119,1800,136,1,0 +19900119,1800,137,1,0 +19900119,1800,151,1,0 +19900119,1800,159,1,0 +19900119,1800,164,1,0 +19900119,1800,165,1,0 +19900119,1800,166,1,0 +19900119,1800,167,1,0 +19900119,1800,168,1,0 +19900119,1800,186,1,0 +19900119,1800,187,1,0 +19900119,1800,188,1,0 +19900119,1800,229,1,0 +19900119,1800,230,1,0 +19900119,1800,231,1,0 +19900119,1800,232,1,0 +19900119,1800,243,1,0 +19900119,1800,244,1,0 +19900119,1800,245,1,0 +19900119,1800,228246,1,0 +19900119,1800,228247,1,0 +19900119,2100,8,1,0 +19900119,2100,31,1,0 +19900119,2100,32,1,0 +19900119,2100,33,1,0 +19900119,2100,34,1,0 +19900119,2100,35,111,7 +19900119,2100,36,111,28 +19900119,2100,37,111,100 +19900119,2100,38,111,289 +19900119,2100,39,111,7 +19900119,2100,40,111,28 +19900119,2100,41,111,100 +19900119,2100,42,111,289 +19900119,2100,44,1,0 +19900119,2100,45,1,0 +19900119,2100,49,1,0 +19900119,2100,50,1,0 +19900119,2100,57,1,0 +19900119,2100,58,1,0 +19900119,2100,123,1,0 +19900119,2100,139,111,7 +19900119,2100,141,1,0 +19900119,2100,142,1,0 +19900119,2100,143,1,0 +19900119,2100,144,1,0 +19900119,2100,145,1,0 +19900119,2100,146,1,0 +19900119,2100,147,1,0 +19900119,2100,148,1,0 +19900119,2100,169,1,0 +19900119,2100,170,111,28 +19900119,2100,172,1,0 +19900119,2100,175,1,0 +19900119,2100,176,1,0 +19900119,2100,177,1,0 +19900119,2100,178,1,0 +19900119,2100,179,1,0 +19900119,2100,180,1,0 +19900119,2100,181,1,0 +19900119,2100,182,1,0 +19900119,2100,183,111,100 +19900119,2100,189,1,0 +19900119,2100,195,1,0 +19900119,2100,196,1,0 +19900119,2100,197,1,0 +19900119,2100,198,1,0 +19900119,2100,201,1,0 +19900119,2100,202,1,0 +19900119,2100,205,1,0 +19900119,2100,208,1,0 +19900119,2100,209,1,0 +19900119,2100,210,1,0 +19900119,2100,211,1,0 +19900119,2100,212,1,0 +19900119,2100,213,1,0 +19900119,2100,228,1,0 +19900119,2100,235,1,0 +19900119,2100,236,111,289 +19900119,2100,238,1,0 +19900119,2100,59,1,0 +19900119,2100,78,1,0 +19900119,2100,79,1,0 +19900119,2100,136,1,0 +19900119,2100,137,1,0 +19900119,2100,151,1,0 +19900119,2100,159,1,0 +19900119,2100,164,1,0 +19900119,2100,165,1,0 +19900119,2100,166,1,0 +19900119,2100,167,1,0 +19900119,2100,168,1,0 +19900119,2100,186,1,0 +19900119,2100,187,1,0 +19900119,2100,188,1,0 +19900119,2100,229,1,0 +19900119,2100,230,1,0 +19900119,2100,231,1,0 +19900119,2100,232,1,0 +19900119,2100,243,1,0 +19900119,2100,244,1,0 +19900119,2100,245,1,0 +19900119,2100,228246,1,0 +19900119,2100,228247,1,0 +19900120,0,133,100,1000 +19900120,0,133,100,975 +19900120,0,133,100,950 +19900120,0,133,100,925 +19900120,0,133,100,900 +19900120,0,133,100,875 +19900120,0,133,100,850 +19900120,0,133,100,825 +19900120,0,133,100,800 +19900120,0,133,100,775 +19900120,0,133,100,750 +19900120,0,133,100,740 +19900120,0,133,100,700 +19900120,0,133,100,650 +19900120,0,133,100,620 +19900120,0,133,100,600 +19900120,0,133,100,550 +19900120,0,133,100,500 +19900120,0,133,100,450 +19900120,0,133,100,400 +19900120,0,133,100,375 +19900120,0,133,100,350 +19900120,0,133,100,300 +19900120,0,133,100,250 +19900120,0,133,100,245 +19900120,0,133,100,225 +19900120,0,133,100,200 +19900120,0,133,100,175 +19900120,0,133,100,150 +19900120,0,133,100,125 +19900120,0,133,100,100 +19900120,0,133,100,70 +19900120,0,133,100,50 +19900120,0,133,100,30 +19900120,0,133,100,20 +19900120,0,133,100,10 +19900120,0,133,100,9 +19900120,0,133,100,7 +19900120,0,133,100,5 +19900120,0,133,100,3 +19900120,0,133,100,2 +19900120,0,133,100,1 +19900120,0,133,210,40 +19900120,0,3,117,2000 +19900120,0,133,109,1 +19900120,0,133,109,2 +19900120,0,133,109,3 +19900120,0,133,109,4 +19900120,0,133,109,5 +19900120,0,133,109,6 +19900120,0,133,109,7 +19900120,0,133,109,8 +19900120,0,133,109,9 +19900120,0,133,109,10 +19900120,0,246,109,1 +19900120,0,246,109,2 +19900120,0,246,109,3 +19900120,0,246,109,4 +19900120,0,246,109,5 +19900120,0,246,109,6 +19900120,0,246,109,7 +19900120,0,246,109,8 +19900120,0,246,109,9 +19900120,0,246,109,10 +19900120,0,247,109,1 +19900120,0,247,109,2 +19900120,0,247,109,3 +19900120,0,247,109,4 +19900120,0,247,109,5 +19900120,0,247,109,6 +19900120,0,247,109,7 +19900120,0,247,109,8 +19900120,0,247,109,9 +19900120,0,247,109,10 +19900120,0,248,109,1 +19900120,0,248,109,2 +19900120,0,248,109,3 +19900120,0,248,109,4 +19900120,0,248,109,5 +19900120,0,248,109,6 +19900120,0,248,109,7 +19900120,0,248,109,8 +19900120,0,248,109,9 +19900120,0,248,109,10 +19900120,0,8,1,0 +19900120,0,31,1,0 +19900120,0,32,1,0 +19900120,0,33,1,0 +19900120,0,34,1,0 +19900120,0,35,111,7 +19900120,0,36,111,28 +19900120,0,37,111,100 +19900120,0,38,111,289 +19900120,0,39,111,7 +19900120,0,40,111,28 +19900120,0,41,111,100 +19900120,0,42,111,289 +19900120,0,44,1,0 +19900120,0,45,1,0 +19900120,0,49,1,0 +19900120,0,50,1,0 +19900120,0,57,1,0 +19900120,0,58,1,0 +19900120,0,123,1,0 +19900120,0,139,111,7 +19900120,0,141,1,0 +19900120,0,142,1,0 +19900120,0,143,1,0 +19900120,0,144,1,0 +19900120,0,145,1,0 +19900120,0,146,1,0 +19900120,0,147,1,0 +19900120,0,148,1,0 +19900120,0,169,1,0 +19900120,0,170,111,28 +19900120,0,172,1,0 +19900120,0,175,1,0 +19900120,0,176,1,0 +19900120,0,177,1,0 +19900120,0,178,1,0 +19900120,0,179,1,0 +19900120,0,180,1,0 +19900120,0,181,1,0 +19900120,0,182,1,0 +19900120,0,183,111,100 +19900120,0,189,1,0 +19900120,0,195,1,0 +19900120,0,196,1,0 +19900120,0,197,1,0 +19900120,0,198,1,0 +19900120,0,201,1,0 +19900120,0,202,1,0 +19900120,0,205,1,0 +19900120,0,208,1,0 +19900120,0,209,1,0 +19900120,0,210,1,0 +19900120,0,211,1,0 +19900120,0,212,1,0 +19900120,0,213,1,0 +19900120,0,228,1,0 +19900120,0,235,1,0 +19900120,0,236,111,289 +19900120,0,238,1,0 +19900120,0,59,1,0 +19900120,0,78,1,0 +19900120,0,79,1,0 +19900120,0,136,1,0 +19900120,0,137,1,0 +19900120,0,151,1,0 +19900120,0,159,1,0 +19900120,0,164,1,0 +19900120,0,165,1,0 +19900120,0,166,1,0 +19900120,0,167,1,0 +19900120,0,168,1,0 +19900120,0,186,1,0 +19900120,0,187,1,0 +19900120,0,188,1,0 +19900120,0,229,1,0 +19900120,0,230,1,0 +19900120,0,231,1,0 +19900120,0,232,1,0 +19900120,0,243,1,0 +19900120,0,244,1,0 +19900120,0,245,1,0 +19900120,0,228246,1,0 +19900120,0,228247,1,0 +19900120,300,8,1,0 +19900120,300,31,1,0 +19900120,300,32,1,0 +19900120,300,33,1,0 +19900120,300,34,1,0 +19900120,300,35,111,7 +19900120,300,36,111,28 +19900120,300,37,111,100 +19900120,300,38,111,289 +19900120,300,39,111,7 +19900120,300,40,111,28 +19900120,300,41,111,100 +19900120,300,42,111,289 +19900120,300,44,1,0 +19900120,300,45,1,0 +19900120,300,49,1,0 +19900120,300,50,1,0 +19900120,300,57,1,0 +19900120,300,58,1,0 +19900120,300,123,1,0 +19900120,300,139,111,7 +19900120,300,141,1,0 +19900120,300,142,1,0 +19900120,300,143,1,0 +19900120,300,144,1,0 +19900120,300,145,1,0 +19900120,300,146,1,0 +19900120,300,147,1,0 +19900120,300,148,1,0 +19900120,300,169,1,0 +19900120,300,170,111,28 +19900120,300,172,1,0 +19900120,300,175,1,0 +19900120,300,176,1,0 +19900120,300,177,1,0 +19900120,300,178,1,0 +19900120,300,179,1,0 +19900120,300,180,1,0 +19900120,300,181,1,0 +19900120,300,182,1,0 +19900120,300,183,111,100 +19900120,300,189,1,0 +19900120,300,195,1,0 +19900120,300,196,1,0 +19900120,300,197,1,0 +19900120,300,198,1,0 +19900120,300,201,1,0 +19900120,300,202,1,0 +19900120,300,205,1,0 +19900120,300,208,1,0 +19900120,300,209,1,0 +19900120,300,210,1,0 +19900120,300,211,1,0 +19900120,300,212,1,0 +19900120,300,213,1,0 +19900120,300,228,1,0 +19900120,300,235,1,0 +19900120,300,236,111,289 +19900120,300,238,1,0 +19900120,300,59,1,0 +19900120,300,78,1,0 +19900120,300,79,1,0 +19900120,300,136,1,0 +19900120,300,137,1,0 +19900120,300,151,1,0 +19900120,300,159,1,0 +19900120,300,164,1,0 +19900120,300,165,1,0 +19900120,300,166,1,0 +19900120,300,167,1,0 +19900120,300,168,1,0 +19900120,300,186,1,0 +19900120,300,187,1,0 +19900120,300,188,1,0 +19900120,300,229,1,0 +19900120,300,230,1,0 +19900120,300,231,1,0 +19900120,300,232,1,0 +19900120,300,243,1,0 +19900120,300,244,1,0 +19900120,300,245,1,0 +19900120,300,228246,1,0 +19900120,300,228247,1,0 +19900120,600,133,100,1000 +19900120,600,133,100,975 +19900120,600,133,100,950 +19900120,600,133,100,925 +19900120,600,133,100,900 +19900120,600,133,100,875 +19900120,600,133,100,850 +19900120,600,133,100,825 +19900120,600,133,100,800 +19900120,600,133,100,775 +19900120,600,133,100,750 +19900120,600,133,100,740 +19900120,600,133,100,700 +19900120,600,133,100,650 +19900120,600,133,100,620 +19900120,600,133,100,600 +19900120,600,133,100,550 +19900120,600,133,100,500 +19900120,600,133,100,450 +19900120,600,133,100,400 +19900120,600,133,100,375 +19900120,600,133,100,350 +19900120,600,133,100,300 +19900120,600,133,100,250 +19900120,600,133,100,245 +19900120,600,133,100,225 +19900120,600,133,100,200 +19900120,600,133,100,175 +19900120,600,133,100,150 +19900120,600,133,100,125 +19900120,600,133,100,100 +19900120,600,133,100,70 +19900120,600,133,100,50 +19900120,600,133,100,30 +19900120,600,133,100,20 +19900120,600,133,100,10 +19900120,600,133,100,9 +19900120,600,133,100,7 +19900120,600,133,100,5 +19900120,600,133,100,3 +19900120,600,133,100,2 +19900120,600,133,100,1 +19900120,600,133,210,40 +19900120,600,3,117,2000 +19900120,600,133,109,1 +19900120,600,133,109,2 +19900120,600,133,109,3 +19900120,600,133,109,4 +19900120,600,133,109,5 +19900120,600,133,109,6 +19900120,600,133,109,7 +19900120,600,133,109,8 +19900120,600,133,109,9 +19900120,600,133,109,10 +19900120,600,246,109,1 +19900120,600,246,109,2 +19900120,600,246,109,3 +19900120,600,246,109,4 +19900120,600,246,109,5 +19900120,600,246,109,6 +19900120,600,246,109,7 +19900120,600,246,109,8 +19900120,600,246,109,9 +19900120,600,246,109,10 +19900120,600,247,109,1 +19900120,600,247,109,2 +19900120,600,247,109,3 +19900120,600,247,109,4 +19900120,600,247,109,5 +19900120,600,247,109,6 +19900120,600,247,109,7 +19900120,600,247,109,8 +19900120,600,247,109,9 +19900120,600,247,109,10 +19900120,600,248,109,1 +19900120,600,248,109,2 +19900120,600,248,109,3 +19900120,600,248,109,4 +19900120,600,248,109,5 +19900120,600,248,109,6 +19900120,600,248,109,7 +19900120,600,248,109,8 +19900120,600,248,109,9 +19900120,600,248,109,10 +19900120,600,8,1,0 +19900120,600,31,1,0 +19900120,600,32,1,0 +19900120,600,33,1,0 +19900120,600,34,1,0 +19900120,600,35,111,7 +19900120,600,36,111,28 +19900120,600,37,111,100 +19900120,600,38,111,289 +19900120,600,39,111,7 +19900120,600,40,111,28 +19900120,600,41,111,100 +19900120,600,42,111,289 +19900120,600,44,1,0 +19900120,600,45,1,0 +19900120,600,49,1,0 +19900120,600,50,1,0 +19900120,600,57,1,0 +19900120,600,58,1,0 +19900120,600,123,1,0 +19900120,600,139,111,7 +19900120,600,141,1,0 +19900120,600,142,1,0 +19900120,600,143,1,0 +19900120,600,144,1,0 +19900120,600,145,1,0 +19900120,600,146,1,0 +19900120,600,147,1,0 +19900120,600,148,1,0 +19900120,600,169,1,0 +19900120,600,170,111,28 +19900120,600,172,1,0 +19900120,600,175,1,0 +19900120,600,176,1,0 +19900120,600,177,1,0 +19900120,600,178,1,0 +19900120,600,179,1,0 +19900120,600,180,1,0 +19900120,600,181,1,0 +19900120,600,182,1,0 +19900120,600,183,111,100 +19900120,600,189,1,0 +19900120,600,195,1,0 +19900120,600,196,1,0 +19900120,600,197,1,0 +19900120,600,198,1,0 +19900120,600,201,1,0 +19900120,600,202,1,0 +19900120,600,205,1,0 +19900120,600,208,1,0 +19900120,600,209,1,0 +19900120,600,210,1,0 +19900120,600,211,1,0 +19900120,600,212,1,0 +19900120,600,213,1,0 +19900120,600,228,1,0 +19900120,600,235,1,0 +19900120,600,236,111,289 +19900120,600,238,1,0 +19900120,600,59,1,0 +19900120,600,78,1,0 +19900120,600,79,1,0 +19900120,600,136,1,0 +19900120,600,137,1,0 +19900120,600,151,1,0 +19900120,600,159,1,0 +19900120,600,164,1,0 +19900120,600,165,1,0 +19900120,600,166,1,0 +19900120,600,167,1,0 +19900120,600,168,1,0 +19900120,600,186,1,0 +19900120,600,187,1,0 +19900120,600,188,1,0 +19900120,600,229,1,0 +19900120,600,230,1,0 +19900120,600,231,1,0 +19900120,600,232,1,0 +19900120,600,243,1,0 +19900120,600,244,1,0 +19900120,600,245,1,0 +19900120,600,228246,1,0 +19900120,600,228247,1,0 +19900120,900,8,1,0 +19900120,900,31,1,0 +19900120,900,32,1,0 +19900120,900,33,1,0 +19900120,900,34,1,0 +19900120,900,35,111,7 +19900120,900,36,111,28 +19900120,900,37,111,100 +19900120,900,38,111,289 +19900120,900,39,111,7 +19900120,900,40,111,28 +19900120,900,41,111,100 +19900120,900,42,111,289 +19900120,900,44,1,0 +19900120,900,45,1,0 +19900120,900,49,1,0 +19900120,900,50,1,0 +19900120,900,57,1,0 +19900120,900,58,1,0 +19900120,900,123,1,0 +19900120,900,139,111,7 +19900120,900,141,1,0 +19900120,900,142,1,0 +19900120,900,143,1,0 +19900120,900,144,1,0 +19900120,900,145,1,0 +19900120,900,146,1,0 +19900120,900,147,1,0 +19900120,900,148,1,0 +19900120,900,169,1,0 +19900120,900,170,111,28 +19900120,900,172,1,0 +19900120,900,175,1,0 +19900120,900,176,1,0 +19900120,900,177,1,0 +19900120,900,178,1,0 +19900120,900,179,1,0 +19900120,900,180,1,0 +19900120,900,181,1,0 +19900120,900,182,1,0 +19900120,900,183,111,100 +19900120,900,189,1,0 +19900120,900,195,1,0 +19900120,900,196,1,0 +19900120,900,197,1,0 +19900120,900,198,1,0 +19900120,900,201,1,0 +19900120,900,202,1,0 +19900120,900,205,1,0 +19900120,900,208,1,0 +19900120,900,209,1,0 +19900120,900,210,1,0 +19900120,900,211,1,0 +19900120,900,212,1,0 +19900120,900,213,1,0 +19900120,900,228,1,0 +19900120,900,235,1,0 +19900120,900,236,111,289 +19900120,900,238,1,0 +19900120,900,59,1,0 +19900120,900,78,1,0 +19900120,900,79,1,0 +19900120,900,136,1,0 +19900120,900,137,1,0 +19900120,900,151,1,0 +19900120,900,159,1,0 +19900120,900,164,1,0 +19900120,900,165,1,0 +19900120,900,166,1,0 +19900120,900,167,1,0 +19900120,900,168,1,0 +19900120,900,186,1,0 +19900120,900,187,1,0 +19900120,900,188,1,0 +19900120,900,229,1,0 +19900120,900,230,1,0 +19900120,900,231,1,0 +19900120,900,232,1,0 +19900120,900,243,1,0 +19900120,900,244,1,0 +19900120,900,245,1,0 +19900120,900,228246,1,0 +19900120,900,228247,1,0 +19900120,1200,133,100,1000 +19900120,1200,133,100,975 +19900120,1200,133,100,950 +19900120,1200,133,100,925 +19900120,1200,133,100,900 +19900120,1200,133,100,875 +19900120,1200,133,100,850 +19900120,1200,133,100,825 +19900120,1200,133,100,800 +19900120,1200,133,100,775 +19900120,1200,133,100,750 +19900120,1200,133,100,740 +19900120,1200,133,100,700 +19900120,1200,133,100,650 +19900120,1200,133,100,620 +19900120,1200,133,100,600 +19900120,1200,133,100,550 +19900120,1200,133,100,500 +19900120,1200,133,100,450 +19900120,1200,133,100,400 +19900120,1200,133,100,375 +19900120,1200,133,100,350 +19900120,1200,133,100,300 +19900120,1200,133,100,250 +19900120,1200,133,100,245 +19900120,1200,133,100,225 +19900120,1200,133,100,200 +19900120,1200,133,100,175 +19900120,1200,133,100,150 +19900120,1200,133,100,125 +19900120,1200,133,100,100 +19900120,1200,133,100,70 +19900120,1200,133,100,50 +19900120,1200,133,100,30 +19900120,1200,133,100,20 +19900120,1200,133,100,10 +19900120,1200,133,100,9 +19900120,1200,133,100,7 +19900120,1200,133,100,5 +19900120,1200,133,100,3 +19900120,1200,133,100,2 +19900120,1200,133,100,1 +19900120,1200,133,210,40 +19900120,1200,3,117,2000 +19900120,1200,133,109,1 +19900120,1200,133,109,2 +19900120,1200,133,109,3 +19900120,1200,133,109,4 +19900120,1200,133,109,5 +19900120,1200,133,109,6 +19900120,1200,133,109,7 +19900120,1200,133,109,8 +19900120,1200,133,109,9 +19900120,1200,133,109,10 +19900120,1200,246,109,1 +19900120,1200,246,109,2 +19900120,1200,246,109,3 +19900120,1200,246,109,4 +19900120,1200,246,109,5 +19900120,1200,246,109,6 +19900120,1200,246,109,7 +19900120,1200,246,109,8 +19900120,1200,246,109,9 +19900120,1200,246,109,10 +19900120,1200,247,109,1 +19900120,1200,247,109,2 +19900120,1200,247,109,3 +19900120,1200,247,109,4 +19900120,1200,247,109,5 +19900120,1200,247,109,6 +19900120,1200,247,109,7 +19900120,1200,247,109,8 +19900120,1200,247,109,9 +19900120,1200,247,109,10 +19900120,1200,248,109,1 +19900120,1200,248,109,2 +19900120,1200,248,109,3 +19900120,1200,248,109,4 +19900120,1200,248,109,5 +19900120,1200,248,109,6 +19900120,1200,248,109,7 +19900120,1200,248,109,8 +19900120,1200,248,109,9 +19900120,1200,248,109,10 +19900120,1200,8,1,0 +19900120,1200,31,1,0 +19900120,1200,32,1,0 +19900120,1200,33,1,0 +19900120,1200,34,1,0 +19900120,1200,35,111,7 +19900120,1200,36,111,28 +19900120,1200,37,111,100 +19900120,1200,38,111,289 +19900120,1200,39,111,7 +19900120,1200,40,111,28 +19900120,1200,41,111,100 +19900120,1200,42,111,289 +19900120,1200,44,1,0 +19900120,1200,45,1,0 +19900120,1200,49,1,0 +19900120,1200,50,1,0 +19900120,1200,57,1,0 +19900120,1200,58,1,0 +19900120,1200,123,1,0 +19900120,1200,139,111,7 +19900120,1200,141,1,0 +19900120,1200,142,1,0 +19900120,1200,143,1,0 +19900120,1200,144,1,0 +19900120,1200,145,1,0 +19900120,1200,146,1,0 +19900120,1200,147,1,0 +19900120,1200,148,1,0 +19900120,1200,169,1,0 +19900120,1200,170,111,28 +19900120,1200,172,1,0 +19900120,1200,175,1,0 +19900120,1200,176,1,0 +19900120,1200,177,1,0 +19900120,1200,178,1,0 +19900120,1200,179,1,0 +19900120,1200,180,1,0 +19900120,1200,181,1,0 +19900120,1200,182,1,0 +19900120,1200,183,111,100 +19900120,1200,189,1,0 +19900120,1200,195,1,0 +19900120,1200,196,1,0 +19900120,1200,197,1,0 +19900120,1200,198,1,0 +19900120,1200,201,1,0 +19900120,1200,202,1,0 +19900120,1200,205,1,0 +19900120,1200,208,1,0 +19900120,1200,209,1,0 +19900120,1200,210,1,0 +19900120,1200,211,1,0 +19900120,1200,212,1,0 +19900120,1200,213,1,0 +19900120,1200,228,1,0 +19900120,1200,235,1,0 +19900120,1200,236,111,289 +19900120,1200,238,1,0 +19900120,1200,59,1,0 +19900120,1200,78,1,0 +19900120,1200,79,1,0 +19900120,1200,136,1,0 +19900120,1200,137,1,0 +19900120,1200,151,1,0 +19900120,1200,159,1,0 +19900120,1200,164,1,0 +19900120,1200,165,1,0 +19900120,1200,166,1,0 +19900120,1200,167,1,0 +19900120,1200,168,1,0 +19900120,1200,186,1,0 +19900120,1200,187,1,0 +19900120,1200,188,1,0 +19900120,1200,229,1,0 +19900120,1200,230,1,0 +19900120,1200,231,1,0 +19900120,1200,232,1,0 +19900120,1200,243,1,0 +19900120,1200,244,1,0 +19900120,1200,245,1,0 +19900120,1200,228246,1,0 +19900120,1200,228247,1,0 +19900120,1500,8,1,0 +19900120,1500,31,1,0 +19900120,1500,32,1,0 +19900120,1500,33,1,0 +19900120,1500,34,1,0 +19900120,1500,35,111,7 +19900120,1500,36,111,28 +19900120,1500,37,111,100 +19900120,1500,38,111,289 +19900120,1500,39,111,7 +19900120,1500,40,111,28 +19900120,1500,41,111,100 +19900120,1500,42,111,289 +19900120,1500,44,1,0 +19900120,1500,45,1,0 +19900120,1500,49,1,0 +19900120,1500,50,1,0 +19900120,1500,57,1,0 +19900120,1500,58,1,0 +19900120,1500,123,1,0 +19900120,1500,139,111,7 +19900120,1500,141,1,0 +19900120,1500,142,1,0 +19900120,1500,143,1,0 +19900120,1500,144,1,0 +19900120,1500,145,1,0 +19900120,1500,146,1,0 +19900120,1500,147,1,0 +19900120,1500,148,1,0 +19900120,1500,169,1,0 +19900120,1500,170,111,28 +19900120,1500,172,1,0 +19900120,1500,175,1,0 +19900120,1500,176,1,0 +19900120,1500,177,1,0 +19900120,1500,178,1,0 +19900120,1500,179,1,0 +19900120,1500,180,1,0 +19900120,1500,181,1,0 +19900120,1500,182,1,0 +19900120,1500,183,111,100 +19900120,1500,189,1,0 +19900120,1500,195,1,0 +19900120,1500,196,1,0 +19900120,1500,197,1,0 +19900120,1500,198,1,0 +19900120,1500,201,1,0 +19900120,1500,202,1,0 +19900120,1500,205,1,0 +19900120,1500,208,1,0 +19900120,1500,209,1,0 +19900120,1500,210,1,0 +19900120,1500,211,1,0 +19900120,1500,212,1,0 +19900120,1500,213,1,0 +19900120,1500,228,1,0 +19900120,1500,235,1,0 +19900120,1500,236,111,289 +19900120,1500,238,1,0 +19900120,1500,59,1,0 +19900120,1500,78,1,0 +19900120,1500,79,1,0 +19900120,1500,136,1,0 +19900120,1500,137,1,0 +19900120,1500,151,1,0 +19900120,1500,159,1,0 +19900120,1500,164,1,0 +19900120,1500,165,1,0 +19900120,1500,166,1,0 +19900120,1500,167,1,0 +19900120,1500,168,1,0 +19900120,1500,186,1,0 +19900120,1500,187,1,0 +19900120,1500,188,1,0 +19900120,1500,229,1,0 +19900120,1500,230,1,0 +19900120,1500,231,1,0 +19900120,1500,232,1,0 +19900120,1500,243,1,0 +19900120,1500,244,1,0 +19900120,1500,245,1,0 +19900120,1500,228246,1,0 +19900120,1500,228247,1,0 +19900120,1800,133,100,1000 +19900120,1800,133,100,975 +19900120,1800,133,100,950 +19900120,1800,133,100,925 +19900120,1800,133,100,900 +19900120,1800,133,100,875 +19900120,1800,133,100,850 +19900120,1800,133,100,825 +19900120,1800,133,100,800 +19900120,1800,133,100,775 +19900120,1800,133,100,750 +19900120,1800,133,100,740 +19900120,1800,133,100,700 +19900120,1800,133,100,650 +19900120,1800,133,100,620 +19900120,1800,133,100,600 +19900120,1800,133,100,550 +19900120,1800,133,100,500 +19900120,1800,133,100,450 +19900120,1800,133,100,400 +19900120,1800,133,100,375 +19900120,1800,133,100,350 +19900120,1800,133,100,300 +19900120,1800,133,100,250 +19900120,1800,133,100,245 +19900120,1800,133,100,225 +19900120,1800,133,100,200 +19900120,1800,133,100,175 +19900120,1800,133,100,150 +19900120,1800,133,100,125 +19900120,1800,133,100,100 +19900120,1800,133,100,70 +19900120,1800,133,100,50 +19900120,1800,133,100,30 +19900120,1800,133,100,20 +19900120,1800,133,100,10 +19900120,1800,133,100,9 +19900120,1800,133,100,7 +19900120,1800,133,100,5 +19900120,1800,133,100,3 +19900120,1800,133,100,2 +19900120,1800,133,100,1 +19900120,1800,133,210,40 +19900120,1800,3,117,2000 +19900120,1800,133,109,1 +19900120,1800,133,109,2 +19900120,1800,133,109,3 +19900120,1800,133,109,4 +19900120,1800,133,109,5 +19900120,1800,133,109,6 +19900120,1800,133,109,7 +19900120,1800,133,109,8 +19900120,1800,133,109,9 +19900120,1800,133,109,10 +19900120,1800,246,109,1 +19900120,1800,246,109,2 +19900120,1800,246,109,3 +19900120,1800,246,109,4 +19900120,1800,246,109,5 +19900120,1800,246,109,6 +19900120,1800,246,109,7 +19900120,1800,246,109,8 +19900120,1800,246,109,9 +19900120,1800,246,109,10 +19900120,1800,247,109,1 +19900120,1800,247,109,2 +19900120,1800,247,109,3 +19900120,1800,247,109,4 +19900120,1800,247,109,5 +19900120,1800,247,109,6 +19900120,1800,247,109,7 +19900120,1800,247,109,8 +19900120,1800,247,109,9 +19900120,1800,247,109,10 +19900120,1800,248,109,1 +19900120,1800,248,109,2 +19900120,1800,248,109,3 +19900120,1800,248,109,4 +19900120,1800,248,109,5 +19900120,1800,248,109,6 +19900120,1800,248,109,7 +19900120,1800,248,109,8 +19900120,1800,248,109,9 +19900120,1800,248,109,10 +19900120,1800,8,1,0 +19900120,1800,31,1,0 +19900120,1800,32,1,0 +19900120,1800,33,1,0 +19900120,1800,34,1,0 +19900120,1800,35,111,7 +19900120,1800,36,111,28 +19900120,1800,37,111,100 +19900120,1800,38,111,289 +19900120,1800,39,111,7 +19900120,1800,40,111,28 +19900120,1800,41,111,100 +19900120,1800,42,111,289 +19900120,1800,44,1,0 +19900120,1800,45,1,0 +19900120,1800,49,1,0 +19900120,1800,50,1,0 +19900120,1800,57,1,0 +19900120,1800,58,1,0 +19900120,1800,123,1,0 +19900120,1800,139,111,7 +19900120,1800,141,1,0 +19900120,1800,142,1,0 +19900120,1800,143,1,0 +19900120,1800,144,1,0 +19900120,1800,145,1,0 +19900120,1800,146,1,0 +19900120,1800,147,1,0 +19900120,1800,148,1,0 +19900120,1800,169,1,0 +19900120,1800,170,111,28 +19900120,1800,172,1,0 +19900120,1800,175,1,0 +19900120,1800,176,1,0 +19900120,1800,177,1,0 +19900120,1800,178,1,0 +19900120,1800,179,1,0 +19900120,1800,180,1,0 +19900120,1800,181,1,0 +19900120,1800,182,1,0 +19900120,1800,183,111,100 +19900120,1800,189,1,0 +19900120,1800,195,1,0 +19900120,1800,196,1,0 +19900120,1800,197,1,0 +19900120,1800,198,1,0 +19900120,1800,201,1,0 +19900120,1800,202,1,0 +19900120,1800,205,1,0 +19900120,1800,208,1,0 +19900120,1800,209,1,0 +19900120,1800,210,1,0 +19900120,1800,211,1,0 +19900120,1800,212,1,0 +19900120,1800,213,1,0 +19900120,1800,228,1,0 +19900120,1800,235,1,0 +19900120,1800,236,111,289 +19900120,1800,238,1,0 +19900120,1800,59,1,0 +19900120,1800,78,1,0 +19900120,1800,79,1,0 +19900120,1800,136,1,0 +19900120,1800,137,1,0 +19900120,1800,151,1,0 +19900120,1800,159,1,0 +19900120,1800,164,1,0 +19900120,1800,165,1,0 +19900120,1800,166,1,0 +19900120,1800,167,1,0 +19900120,1800,168,1,0 +19900120,1800,186,1,0 +19900120,1800,187,1,0 +19900120,1800,188,1,0 +19900120,1800,229,1,0 +19900120,1800,230,1,0 +19900120,1800,231,1,0 +19900120,1800,232,1,0 +19900120,1800,243,1,0 +19900120,1800,244,1,0 +19900120,1800,245,1,0 +19900120,1800,228246,1,0 +19900120,1800,228247,1,0 +19900120,2100,8,1,0 +19900120,2100,31,1,0 +19900120,2100,32,1,0 +19900120,2100,33,1,0 +19900120,2100,34,1,0 +19900120,2100,35,111,7 +19900120,2100,36,111,28 +19900120,2100,37,111,100 +19900120,2100,38,111,289 +19900120,2100,39,111,7 +19900120,2100,40,111,28 +19900120,2100,41,111,100 +19900120,2100,42,111,289 +19900120,2100,44,1,0 +19900120,2100,45,1,0 +19900120,2100,49,1,0 +19900120,2100,50,1,0 +19900120,2100,57,1,0 +19900120,2100,58,1,0 +19900120,2100,123,1,0 +19900120,2100,139,111,7 +19900120,2100,141,1,0 +19900120,2100,142,1,0 +19900120,2100,143,1,0 +19900120,2100,144,1,0 +19900120,2100,145,1,0 +19900120,2100,146,1,0 +19900120,2100,147,1,0 +19900120,2100,148,1,0 +19900120,2100,169,1,0 +19900120,2100,170,111,28 +19900120,2100,172,1,0 +19900120,2100,175,1,0 +19900120,2100,176,1,0 +19900120,2100,177,1,0 +19900120,2100,178,1,0 +19900120,2100,179,1,0 +19900120,2100,180,1,0 +19900120,2100,181,1,0 +19900120,2100,182,1,0 +19900120,2100,183,111,100 +19900120,2100,189,1,0 +19900120,2100,195,1,0 +19900120,2100,196,1,0 +19900120,2100,197,1,0 +19900120,2100,198,1,0 +19900120,2100,201,1,0 +19900120,2100,202,1,0 +19900120,2100,205,1,0 +19900120,2100,208,1,0 +19900120,2100,209,1,0 +19900120,2100,210,1,0 +19900120,2100,211,1,0 +19900120,2100,212,1,0 +19900120,2100,213,1,0 +19900120,2100,228,1,0 +19900120,2100,235,1,0 +19900120,2100,236,111,289 +19900120,2100,238,1,0 +19900120,2100,59,1,0 +19900120,2100,78,1,0 +19900120,2100,79,1,0 +19900120,2100,136,1,0 +19900120,2100,137,1,0 +19900120,2100,151,1,0 +19900120,2100,159,1,0 +19900120,2100,164,1,0 +19900120,2100,165,1,0 +19900120,2100,166,1,0 +19900120,2100,167,1,0 +19900120,2100,168,1,0 +19900120,2100,186,1,0 +19900120,2100,187,1,0 +19900120,2100,188,1,0 +19900120,2100,229,1,0 +19900120,2100,230,1,0 +19900120,2100,231,1,0 +19900120,2100,232,1,0 +19900120,2100,243,1,0 +19900120,2100,244,1,0 +19900120,2100,245,1,0 +19900120,2100,228246,1,0 +19900120,2100,228247,1,0 +19900121,0,133,100,1000 +19900121,0,133,100,975 +19900121,0,133,100,950 +19900121,0,133,100,925 +19900121,0,133,100,900 +19900121,0,133,100,875 +19900121,0,133,100,850 +19900121,0,133,100,825 +19900121,0,133,100,800 +19900121,0,133,100,775 +19900121,0,133,100,750 +19900121,0,133,100,740 +19900121,0,133,100,700 +19900121,0,133,100,650 +19900121,0,133,100,620 +19900121,0,133,100,600 +19900121,0,133,100,550 +19900121,0,133,100,500 +19900121,0,133,100,450 +19900121,0,133,100,400 +19900121,0,133,100,375 +19900121,0,133,100,350 +19900121,0,133,100,300 +19900121,0,133,100,250 +19900121,0,133,100,245 +19900121,0,133,100,225 +19900121,0,133,100,200 +19900121,0,133,100,175 +19900121,0,133,100,150 +19900121,0,133,100,125 +19900121,0,133,100,100 +19900121,0,133,100,70 +19900121,0,133,100,50 +19900121,0,133,100,30 +19900121,0,133,100,20 +19900121,0,133,100,10 +19900121,0,133,100,9 +19900121,0,133,100,7 +19900121,0,133,100,5 +19900121,0,133,100,3 +19900121,0,133,100,2 +19900121,0,133,100,1 +19900121,0,133,210,40 +19900121,0,3,117,2000 +19900121,0,133,109,1 +19900121,0,133,109,2 +19900121,0,133,109,3 +19900121,0,133,109,4 +19900121,0,133,109,5 +19900121,0,133,109,6 +19900121,0,133,109,7 +19900121,0,133,109,8 +19900121,0,133,109,9 +19900121,0,133,109,10 +19900121,0,246,109,1 +19900121,0,246,109,2 +19900121,0,246,109,3 +19900121,0,246,109,4 +19900121,0,246,109,5 +19900121,0,246,109,6 +19900121,0,246,109,7 +19900121,0,246,109,8 +19900121,0,246,109,9 +19900121,0,246,109,10 +19900121,0,247,109,1 +19900121,0,247,109,2 +19900121,0,247,109,3 +19900121,0,247,109,4 +19900121,0,247,109,5 +19900121,0,247,109,6 +19900121,0,247,109,7 +19900121,0,247,109,8 +19900121,0,247,109,9 +19900121,0,247,109,10 +19900121,0,248,109,1 +19900121,0,248,109,2 +19900121,0,248,109,3 +19900121,0,248,109,4 +19900121,0,248,109,5 +19900121,0,248,109,6 +19900121,0,248,109,7 +19900121,0,248,109,8 +19900121,0,248,109,9 +19900121,0,248,109,10 +19900121,0,8,1,0 +19900121,0,31,1,0 +19900121,0,32,1,0 +19900121,0,33,1,0 +19900121,0,34,1,0 +19900121,0,35,111,7 +19900121,0,36,111,28 +19900121,0,37,111,100 +19900121,0,38,111,289 +19900121,0,39,111,7 +19900121,0,40,111,28 +19900121,0,41,111,100 +19900121,0,42,111,289 +19900121,0,44,1,0 +19900121,0,45,1,0 +19900121,0,49,1,0 +19900121,0,50,1,0 +19900121,0,57,1,0 +19900121,0,58,1,0 +19900121,0,123,1,0 +19900121,0,139,111,7 +19900121,0,141,1,0 +19900121,0,142,1,0 +19900121,0,143,1,0 +19900121,0,144,1,0 +19900121,0,145,1,0 +19900121,0,146,1,0 +19900121,0,147,1,0 +19900121,0,148,1,0 +19900121,0,169,1,0 +19900121,0,170,111,28 +19900121,0,172,1,0 +19900121,0,175,1,0 +19900121,0,176,1,0 +19900121,0,177,1,0 +19900121,0,178,1,0 +19900121,0,179,1,0 +19900121,0,180,1,0 +19900121,0,181,1,0 +19900121,0,182,1,0 +19900121,0,183,111,100 +19900121,0,189,1,0 +19900121,0,195,1,0 +19900121,0,196,1,0 +19900121,0,197,1,0 +19900121,0,198,1,0 +19900121,0,201,1,0 +19900121,0,202,1,0 +19900121,0,205,1,0 +19900121,0,208,1,0 +19900121,0,209,1,0 +19900121,0,210,1,0 +19900121,0,211,1,0 +19900121,0,212,1,0 +19900121,0,213,1,0 +19900121,0,228,1,0 +19900121,0,235,1,0 +19900121,0,236,111,289 +19900121,0,238,1,0 +19900121,0,59,1,0 +19900121,0,78,1,0 +19900121,0,79,1,0 +19900121,0,136,1,0 +19900121,0,137,1,0 +19900121,0,151,1,0 +19900121,0,159,1,0 +19900121,0,164,1,0 +19900121,0,165,1,0 +19900121,0,166,1,0 +19900121,0,167,1,0 +19900121,0,168,1,0 +19900121,0,186,1,0 +19900121,0,187,1,0 +19900121,0,188,1,0 +19900121,0,229,1,0 +19900121,0,230,1,0 +19900121,0,231,1,0 +19900121,0,232,1,0 +19900121,0,243,1,0 +19900121,0,244,1,0 +19900121,0,245,1,0 +19900121,0,228246,1,0 +19900121,0,228247,1,0 +19900121,300,8,1,0 +19900121,300,31,1,0 +19900121,300,32,1,0 +19900121,300,33,1,0 +19900121,300,34,1,0 +19900121,300,35,111,7 +19900121,300,36,111,28 +19900121,300,37,111,100 +19900121,300,38,111,289 +19900121,300,39,111,7 +19900121,300,40,111,28 +19900121,300,41,111,100 +19900121,300,42,111,289 +19900121,300,44,1,0 +19900121,300,45,1,0 +19900121,300,49,1,0 +19900121,300,50,1,0 +19900121,300,57,1,0 +19900121,300,58,1,0 +19900121,300,123,1,0 +19900121,300,139,111,7 +19900121,300,141,1,0 +19900121,300,142,1,0 +19900121,300,143,1,0 +19900121,300,144,1,0 +19900121,300,145,1,0 +19900121,300,146,1,0 +19900121,300,147,1,0 +19900121,300,148,1,0 +19900121,300,169,1,0 +19900121,300,170,111,28 +19900121,300,172,1,0 +19900121,300,175,1,0 +19900121,300,176,1,0 +19900121,300,177,1,0 +19900121,300,178,1,0 +19900121,300,179,1,0 +19900121,300,180,1,0 +19900121,300,181,1,0 +19900121,300,182,1,0 +19900121,300,183,111,100 +19900121,300,189,1,0 +19900121,300,195,1,0 +19900121,300,196,1,0 +19900121,300,197,1,0 +19900121,300,198,1,0 +19900121,300,201,1,0 +19900121,300,202,1,0 +19900121,300,205,1,0 +19900121,300,208,1,0 +19900121,300,209,1,0 +19900121,300,210,1,0 +19900121,300,211,1,0 +19900121,300,212,1,0 +19900121,300,213,1,0 +19900121,300,228,1,0 +19900121,300,235,1,0 +19900121,300,236,111,289 +19900121,300,238,1,0 +19900121,300,59,1,0 +19900121,300,78,1,0 +19900121,300,79,1,0 +19900121,300,136,1,0 +19900121,300,137,1,0 +19900121,300,151,1,0 +19900121,300,159,1,0 +19900121,300,164,1,0 +19900121,300,165,1,0 +19900121,300,166,1,0 +19900121,300,167,1,0 +19900121,300,168,1,0 +19900121,300,186,1,0 +19900121,300,187,1,0 +19900121,300,188,1,0 +19900121,300,229,1,0 +19900121,300,230,1,0 +19900121,300,231,1,0 +19900121,300,232,1,0 +19900121,300,243,1,0 +19900121,300,244,1,0 +19900121,300,245,1,0 +19900121,300,228246,1,0 +19900121,300,228247,1,0 +19900121,600,133,100,1000 +19900121,600,133,100,975 +19900121,600,133,100,950 +19900121,600,133,100,925 +19900121,600,133,100,900 +19900121,600,133,100,875 +19900121,600,133,100,850 +19900121,600,133,100,825 +19900121,600,133,100,800 +19900121,600,133,100,775 +19900121,600,133,100,750 +19900121,600,133,100,740 +19900121,600,133,100,700 +19900121,600,133,100,650 +19900121,600,133,100,620 +19900121,600,133,100,600 +19900121,600,133,100,550 +19900121,600,133,100,500 +19900121,600,133,100,450 +19900121,600,133,100,400 +19900121,600,133,100,375 +19900121,600,133,100,350 +19900121,600,133,100,300 +19900121,600,133,100,250 +19900121,600,133,100,245 +19900121,600,133,100,225 +19900121,600,133,100,200 +19900121,600,133,100,175 +19900121,600,133,100,150 +19900121,600,133,100,125 +19900121,600,133,100,100 +19900121,600,133,100,70 +19900121,600,133,100,50 +19900121,600,133,100,30 +19900121,600,133,100,20 +19900121,600,133,100,10 +19900121,600,133,100,9 +19900121,600,133,100,7 +19900121,600,133,100,5 +19900121,600,133,100,3 +19900121,600,133,100,2 +19900121,600,133,100,1 +19900121,600,133,210,40 +19900121,600,3,117,2000 +19900121,600,133,109,1 +19900121,600,133,109,2 +19900121,600,133,109,3 +19900121,600,133,109,4 +19900121,600,133,109,5 +19900121,600,133,109,6 +19900121,600,133,109,7 +19900121,600,133,109,8 +19900121,600,133,109,9 +19900121,600,133,109,10 +19900121,600,246,109,1 +19900121,600,246,109,2 +19900121,600,246,109,3 +19900121,600,246,109,4 +19900121,600,246,109,5 +19900121,600,246,109,6 +19900121,600,246,109,7 +19900121,600,246,109,8 +19900121,600,246,109,9 +19900121,600,246,109,10 +19900121,600,247,109,1 +19900121,600,247,109,2 +19900121,600,247,109,3 +19900121,600,247,109,4 +19900121,600,247,109,5 +19900121,600,247,109,6 +19900121,600,247,109,7 +19900121,600,247,109,8 +19900121,600,247,109,9 +19900121,600,247,109,10 +19900121,600,248,109,1 +19900121,600,248,109,2 +19900121,600,248,109,3 +19900121,600,248,109,4 +19900121,600,248,109,5 +19900121,600,248,109,6 +19900121,600,248,109,7 +19900121,600,248,109,8 +19900121,600,248,109,9 +19900121,600,248,109,10 +19900121,600,8,1,0 +19900121,600,31,1,0 +19900121,600,32,1,0 +19900121,600,33,1,0 +19900121,600,34,1,0 +19900121,600,35,111,7 +19900121,600,36,111,28 +19900121,600,37,111,100 +19900121,600,38,111,289 +19900121,600,39,111,7 +19900121,600,40,111,28 +19900121,600,41,111,100 +19900121,600,42,111,289 +19900121,600,44,1,0 +19900121,600,45,1,0 +19900121,600,49,1,0 +19900121,600,50,1,0 +19900121,600,57,1,0 +19900121,600,58,1,0 +19900121,600,123,1,0 +19900121,600,139,111,7 +19900121,600,141,1,0 +19900121,600,142,1,0 +19900121,600,143,1,0 +19900121,600,144,1,0 +19900121,600,145,1,0 +19900121,600,146,1,0 +19900121,600,147,1,0 +19900121,600,148,1,0 +19900121,600,169,1,0 +19900121,600,170,111,28 +19900121,600,172,1,0 +19900121,600,175,1,0 +19900121,600,176,1,0 +19900121,600,177,1,0 +19900121,600,178,1,0 +19900121,600,179,1,0 +19900121,600,180,1,0 +19900121,600,181,1,0 +19900121,600,182,1,0 +19900121,600,183,111,100 +19900121,600,189,1,0 +19900121,600,195,1,0 +19900121,600,196,1,0 +19900121,600,197,1,0 +19900121,600,198,1,0 +19900121,600,201,1,0 +19900121,600,202,1,0 +19900121,600,205,1,0 +19900121,600,208,1,0 +19900121,600,209,1,0 +19900121,600,210,1,0 +19900121,600,211,1,0 +19900121,600,212,1,0 +19900121,600,213,1,0 +19900121,600,228,1,0 +19900121,600,235,1,0 +19900121,600,236,111,289 +19900121,600,238,1,0 +19900121,600,59,1,0 +19900121,600,78,1,0 +19900121,600,79,1,0 +19900121,600,136,1,0 +19900121,600,137,1,0 +19900121,600,151,1,0 +19900121,600,159,1,0 +19900121,600,164,1,0 +19900121,600,165,1,0 +19900121,600,166,1,0 +19900121,600,167,1,0 +19900121,600,168,1,0 +19900121,600,186,1,0 +19900121,600,187,1,0 +19900121,600,188,1,0 +19900121,600,229,1,0 +19900121,600,230,1,0 +19900121,600,231,1,0 +19900121,600,232,1,0 +19900121,600,243,1,0 +19900121,600,244,1,0 +19900121,600,245,1,0 +19900121,600,228246,1,0 +19900121,600,228247,1,0 +19900121,900,8,1,0 +19900121,900,31,1,0 +19900121,900,32,1,0 +19900121,900,33,1,0 +19900121,900,34,1,0 +19900121,900,35,111,7 +19900121,900,36,111,28 +19900121,900,37,111,100 +19900121,900,38,111,289 +19900121,900,39,111,7 +19900121,900,40,111,28 +19900121,900,41,111,100 +19900121,900,42,111,289 +19900121,900,44,1,0 +19900121,900,45,1,0 +19900121,900,49,1,0 +19900121,900,50,1,0 +19900121,900,57,1,0 +19900121,900,58,1,0 +19900121,900,123,1,0 +19900121,900,139,111,7 +19900121,900,141,1,0 +19900121,900,142,1,0 +19900121,900,143,1,0 +19900121,900,144,1,0 +19900121,900,145,1,0 +19900121,900,146,1,0 +19900121,900,147,1,0 +19900121,900,148,1,0 +19900121,900,169,1,0 +19900121,900,170,111,28 +19900121,900,172,1,0 +19900121,900,175,1,0 +19900121,900,176,1,0 +19900121,900,177,1,0 +19900121,900,178,1,0 +19900121,900,179,1,0 +19900121,900,180,1,0 +19900121,900,181,1,0 +19900121,900,182,1,0 +19900121,900,183,111,100 +19900121,900,189,1,0 +19900121,900,195,1,0 +19900121,900,196,1,0 +19900121,900,197,1,0 +19900121,900,198,1,0 +19900121,900,201,1,0 +19900121,900,202,1,0 +19900121,900,205,1,0 +19900121,900,208,1,0 +19900121,900,209,1,0 +19900121,900,210,1,0 +19900121,900,211,1,0 +19900121,900,212,1,0 +19900121,900,213,1,0 +19900121,900,228,1,0 +19900121,900,235,1,0 +19900121,900,236,111,289 +19900121,900,238,1,0 +19900121,900,59,1,0 +19900121,900,78,1,0 +19900121,900,79,1,0 +19900121,900,136,1,0 +19900121,900,137,1,0 +19900121,900,151,1,0 +19900121,900,159,1,0 +19900121,900,164,1,0 +19900121,900,165,1,0 +19900121,900,166,1,0 +19900121,900,167,1,0 +19900121,900,168,1,0 +19900121,900,186,1,0 +19900121,900,187,1,0 +19900121,900,188,1,0 +19900121,900,229,1,0 +19900121,900,230,1,0 +19900121,900,231,1,0 +19900121,900,232,1,0 +19900121,900,243,1,0 +19900121,900,244,1,0 +19900121,900,245,1,0 +19900121,900,228246,1,0 +19900121,900,228247,1,0 +19900121,1200,133,100,1000 +19900121,1200,133,100,975 +19900121,1200,133,100,950 +19900121,1200,133,100,925 +19900121,1200,133,100,900 +19900121,1200,133,100,875 +19900121,1200,133,100,850 +19900121,1200,133,100,825 +19900121,1200,133,100,800 +19900121,1200,133,100,775 +19900121,1200,133,100,750 +19900121,1200,133,100,740 +19900121,1200,133,100,700 +19900121,1200,133,100,650 +19900121,1200,133,100,620 +19900121,1200,133,100,600 +19900121,1200,133,100,550 +19900121,1200,133,100,500 +19900121,1200,133,100,450 +19900121,1200,133,100,400 +19900121,1200,133,100,375 +19900121,1200,133,100,350 +19900121,1200,133,100,300 +19900121,1200,133,100,250 +19900121,1200,133,100,245 +19900121,1200,133,100,225 +19900121,1200,133,100,200 +19900121,1200,133,100,175 +19900121,1200,133,100,150 +19900121,1200,133,100,125 +19900121,1200,133,100,100 +19900121,1200,133,100,70 +19900121,1200,133,100,50 +19900121,1200,133,100,30 +19900121,1200,133,100,20 +19900121,1200,133,100,10 +19900121,1200,133,100,9 +19900121,1200,133,100,7 +19900121,1200,133,100,5 +19900121,1200,133,100,3 +19900121,1200,133,100,2 +19900121,1200,133,100,1 +19900121,1200,133,210,40 +19900121,1200,3,117,2000 +19900121,1200,133,109,1 +19900121,1200,133,109,2 +19900121,1200,133,109,3 +19900121,1200,133,109,4 +19900121,1200,133,109,5 +19900121,1200,133,109,6 +19900121,1200,133,109,7 +19900121,1200,133,109,8 +19900121,1200,133,109,9 +19900121,1200,133,109,10 +19900121,1200,246,109,1 +19900121,1200,246,109,2 +19900121,1200,246,109,3 +19900121,1200,246,109,4 +19900121,1200,246,109,5 +19900121,1200,246,109,6 +19900121,1200,246,109,7 +19900121,1200,246,109,8 +19900121,1200,246,109,9 +19900121,1200,246,109,10 +19900121,1200,247,109,1 +19900121,1200,247,109,2 +19900121,1200,247,109,3 +19900121,1200,247,109,4 +19900121,1200,247,109,5 +19900121,1200,247,109,6 +19900121,1200,247,109,7 +19900121,1200,247,109,8 +19900121,1200,247,109,9 +19900121,1200,247,109,10 +19900121,1200,248,109,1 +19900121,1200,248,109,2 +19900121,1200,248,109,3 +19900121,1200,248,109,4 +19900121,1200,248,109,5 +19900121,1200,248,109,6 +19900121,1200,248,109,7 +19900121,1200,248,109,8 +19900121,1200,248,109,9 +19900121,1200,248,109,10 +19900121,1200,8,1,0 +19900121,1200,31,1,0 +19900121,1200,32,1,0 +19900121,1200,33,1,0 +19900121,1200,34,1,0 +19900121,1200,35,111,7 +19900121,1200,36,111,28 +19900121,1200,37,111,100 +19900121,1200,38,111,289 +19900121,1200,39,111,7 +19900121,1200,40,111,28 +19900121,1200,41,111,100 +19900121,1200,42,111,289 +19900121,1200,44,1,0 +19900121,1200,45,1,0 +19900121,1200,49,1,0 +19900121,1200,50,1,0 +19900121,1200,57,1,0 +19900121,1200,58,1,0 +19900121,1200,123,1,0 +19900121,1200,139,111,7 +19900121,1200,141,1,0 +19900121,1200,142,1,0 +19900121,1200,143,1,0 +19900121,1200,144,1,0 +19900121,1200,145,1,0 +19900121,1200,146,1,0 +19900121,1200,147,1,0 +19900121,1200,148,1,0 +19900121,1200,169,1,0 +19900121,1200,170,111,28 +19900121,1200,172,1,0 +19900121,1200,175,1,0 +19900121,1200,176,1,0 +19900121,1200,177,1,0 +19900121,1200,178,1,0 +19900121,1200,179,1,0 +19900121,1200,180,1,0 +19900121,1200,181,1,0 +19900121,1200,182,1,0 +19900121,1200,183,111,100 +19900121,1200,189,1,0 +19900121,1200,195,1,0 +19900121,1200,196,1,0 +19900121,1200,197,1,0 +19900121,1200,198,1,0 +19900121,1200,201,1,0 +19900121,1200,202,1,0 +19900121,1200,205,1,0 +19900121,1200,208,1,0 +19900121,1200,209,1,0 +19900121,1200,210,1,0 +19900121,1200,211,1,0 +19900121,1200,212,1,0 +19900121,1200,213,1,0 +19900121,1200,228,1,0 +19900121,1200,235,1,0 +19900121,1200,236,111,289 +19900121,1200,238,1,0 +19900121,1200,59,1,0 +19900121,1200,78,1,0 +19900121,1200,79,1,0 +19900121,1200,136,1,0 +19900121,1200,137,1,0 +19900121,1200,151,1,0 +19900121,1200,159,1,0 +19900121,1200,164,1,0 +19900121,1200,165,1,0 +19900121,1200,166,1,0 +19900121,1200,167,1,0 +19900121,1200,168,1,0 +19900121,1200,186,1,0 +19900121,1200,187,1,0 +19900121,1200,188,1,0 +19900121,1200,229,1,0 +19900121,1200,230,1,0 +19900121,1200,231,1,0 +19900121,1200,232,1,0 +19900121,1200,243,1,0 +19900121,1200,244,1,0 +19900121,1200,245,1,0 +19900121,1200,228246,1,0 +19900121,1200,228247,1,0 +19900121,1500,8,1,0 +19900121,1500,31,1,0 +19900121,1500,32,1,0 +19900121,1500,33,1,0 +19900121,1500,34,1,0 +19900121,1500,35,111,7 +19900121,1500,36,111,28 +19900121,1500,37,111,100 +19900121,1500,38,111,289 +19900121,1500,39,111,7 +19900121,1500,40,111,28 +19900121,1500,41,111,100 +19900121,1500,42,111,289 +19900121,1500,44,1,0 +19900121,1500,45,1,0 +19900121,1500,49,1,0 +19900121,1500,50,1,0 +19900121,1500,57,1,0 +19900121,1500,58,1,0 +19900121,1500,123,1,0 +19900121,1500,139,111,7 +19900121,1500,141,1,0 +19900121,1500,142,1,0 +19900121,1500,143,1,0 +19900121,1500,144,1,0 +19900121,1500,145,1,0 +19900121,1500,146,1,0 +19900121,1500,147,1,0 +19900121,1500,148,1,0 +19900121,1500,169,1,0 +19900121,1500,170,111,28 +19900121,1500,172,1,0 +19900121,1500,175,1,0 +19900121,1500,176,1,0 +19900121,1500,177,1,0 +19900121,1500,178,1,0 +19900121,1500,179,1,0 +19900121,1500,180,1,0 +19900121,1500,181,1,0 +19900121,1500,182,1,0 +19900121,1500,183,111,100 +19900121,1500,189,1,0 +19900121,1500,195,1,0 +19900121,1500,196,1,0 +19900121,1500,197,1,0 +19900121,1500,198,1,0 +19900121,1500,201,1,0 +19900121,1500,202,1,0 +19900121,1500,205,1,0 +19900121,1500,208,1,0 +19900121,1500,209,1,0 +19900121,1500,210,1,0 +19900121,1500,211,1,0 +19900121,1500,212,1,0 +19900121,1500,213,1,0 +19900121,1500,228,1,0 +19900121,1500,235,1,0 +19900121,1500,236,111,289 +19900121,1500,238,1,0 +19900121,1500,59,1,0 +19900121,1500,78,1,0 +19900121,1500,79,1,0 +19900121,1500,136,1,0 +19900121,1500,137,1,0 +19900121,1500,151,1,0 +19900121,1500,159,1,0 +19900121,1500,164,1,0 +19900121,1500,165,1,0 +19900121,1500,166,1,0 +19900121,1500,167,1,0 +19900121,1500,168,1,0 +19900121,1500,186,1,0 +19900121,1500,187,1,0 +19900121,1500,188,1,0 +19900121,1500,229,1,0 +19900121,1500,230,1,0 +19900121,1500,231,1,0 +19900121,1500,232,1,0 +19900121,1500,243,1,0 +19900121,1500,244,1,0 +19900121,1500,245,1,0 +19900121,1500,228246,1,0 +19900121,1500,228247,1,0 +19900121,1800,133,100,1000 +19900121,1800,133,100,975 +19900121,1800,133,100,950 +19900121,1800,133,100,925 +19900121,1800,133,100,900 +19900121,1800,133,100,875 +19900121,1800,133,100,850 +19900121,1800,133,100,825 +19900121,1800,133,100,800 +19900121,1800,133,100,775 +19900121,1800,133,100,750 +19900121,1800,133,100,740 +19900121,1800,133,100,700 +19900121,1800,133,100,650 +19900121,1800,133,100,620 +19900121,1800,133,100,600 +19900121,1800,133,100,550 +19900121,1800,133,100,500 +19900121,1800,133,100,450 +19900121,1800,133,100,400 +19900121,1800,133,100,375 +19900121,1800,133,100,350 +19900121,1800,133,100,300 +19900121,1800,133,100,250 +19900121,1800,133,100,245 +19900121,1800,133,100,225 +19900121,1800,133,100,200 +19900121,1800,133,100,175 +19900121,1800,133,100,150 +19900121,1800,133,100,125 +19900121,1800,133,100,100 +19900121,1800,133,100,70 +19900121,1800,133,100,50 +19900121,1800,133,100,30 +19900121,1800,133,100,20 +19900121,1800,133,100,10 +19900121,1800,133,100,9 +19900121,1800,133,100,7 +19900121,1800,133,100,5 +19900121,1800,133,100,3 +19900121,1800,133,100,2 +19900121,1800,133,100,1 +19900121,1800,133,210,40 +19900121,1800,3,117,2000 +19900121,1800,133,109,1 +19900121,1800,133,109,2 +19900121,1800,133,109,3 +19900121,1800,133,109,4 +19900121,1800,133,109,5 +19900121,1800,133,109,6 +19900121,1800,133,109,7 +19900121,1800,133,109,8 +19900121,1800,133,109,9 +19900121,1800,133,109,10 +19900121,1800,246,109,1 +19900121,1800,246,109,2 +19900121,1800,246,109,3 +19900121,1800,246,109,4 +19900121,1800,246,109,5 +19900121,1800,246,109,6 +19900121,1800,246,109,7 +19900121,1800,246,109,8 +19900121,1800,246,109,9 +19900121,1800,246,109,10 +19900121,1800,247,109,1 +19900121,1800,247,109,2 +19900121,1800,247,109,3 +19900121,1800,247,109,4 +19900121,1800,247,109,5 +19900121,1800,247,109,6 +19900121,1800,247,109,7 +19900121,1800,247,109,8 +19900121,1800,247,109,9 +19900121,1800,247,109,10 +19900121,1800,248,109,1 +19900121,1800,248,109,2 +19900121,1800,248,109,3 +19900121,1800,248,109,4 +19900121,1800,248,109,5 +19900121,1800,248,109,6 +19900121,1800,248,109,7 +19900121,1800,248,109,8 +19900121,1800,248,109,9 +19900121,1800,248,109,10 +19900121,1800,8,1,0 +19900121,1800,31,1,0 +19900121,1800,32,1,0 +19900121,1800,33,1,0 +19900121,1800,34,1,0 +19900121,1800,35,111,7 +19900121,1800,36,111,28 +19900121,1800,37,111,100 +19900121,1800,38,111,289 +19900121,1800,39,111,7 +19900121,1800,40,111,28 +19900121,1800,41,111,100 +19900121,1800,42,111,289 +19900121,1800,44,1,0 +19900121,1800,45,1,0 +19900121,1800,49,1,0 +19900121,1800,50,1,0 +19900121,1800,57,1,0 +19900121,1800,58,1,0 +19900121,1800,123,1,0 +19900121,1800,139,111,7 +19900121,1800,141,1,0 +19900121,1800,142,1,0 +19900121,1800,143,1,0 +19900121,1800,144,1,0 +19900121,1800,145,1,0 +19900121,1800,146,1,0 +19900121,1800,147,1,0 +19900121,1800,148,1,0 +19900121,1800,169,1,0 +19900121,1800,170,111,28 +19900121,1800,172,1,0 +19900121,1800,175,1,0 +19900121,1800,176,1,0 +19900121,1800,177,1,0 +19900121,1800,178,1,0 +19900121,1800,179,1,0 +19900121,1800,180,1,0 +19900121,1800,181,1,0 +19900121,1800,182,1,0 +19900121,1800,183,111,100 +19900121,1800,189,1,0 +19900121,1800,195,1,0 +19900121,1800,196,1,0 +19900121,1800,197,1,0 +19900121,1800,198,1,0 +19900121,1800,201,1,0 +19900121,1800,202,1,0 +19900121,1800,205,1,0 +19900121,1800,208,1,0 +19900121,1800,209,1,0 +19900121,1800,210,1,0 +19900121,1800,211,1,0 +19900121,1800,212,1,0 +19900121,1800,213,1,0 +19900121,1800,228,1,0 +19900121,1800,235,1,0 +19900121,1800,236,111,289 +19900121,1800,238,1,0 +19900121,1800,59,1,0 +19900121,1800,78,1,0 +19900121,1800,79,1,0 +19900121,1800,136,1,0 +19900121,1800,137,1,0 +19900121,1800,151,1,0 +19900121,1800,159,1,0 +19900121,1800,164,1,0 +19900121,1800,165,1,0 +19900121,1800,166,1,0 +19900121,1800,167,1,0 +19900121,1800,168,1,0 +19900121,1800,186,1,0 +19900121,1800,187,1,0 +19900121,1800,188,1,0 +19900121,1800,229,1,0 +19900121,1800,230,1,0 +19900121,1800,231,1,0 +19900121,1800,232,1,0 +19900121,1800,243,1,0 +19900121,1800,244,1,0 +19900121,1800,245,1,0 +19900121,1800,228246,1,0 +19900121,1800,228247,1,0 +19900121,2100,8,1,0 +19900121,2100,31,1,0 +19900121,2100,32,1,0 +19900121,2100,33,1,0 +19900121,2100,34,1,0 +19900121,2100,35,111,7 +19900121,2100,36,111,28 +19900121,2100,37,111,100 +19900121,2100,38,111,289 +19900121,2100,39,111,7 +19900121,2100,40,111,28 +19900121,2100,41,111,100 +19900121,2100,42,111,289 +19900121,2100,44,1,0 +19900121,2100,45,1,0 +19900121,2100,49,1,0 +19900121,2100,50,1,0 +19900121,2100,57,1,0 +19900121,2100,58,1,0 +19900121,2100,123,1,0 +19900121,2100,139,111,7 +19900121,2100,141,1,0 +19900121,2100,142,1,0 +19900121,2100,143,1,0 +19900121,2100,144,1,0 +19900121,2100,145,1,0 +19900121,2100,146,1,0 +19900121,2100,147,1,0 +19900121,2100,148,1,0 +19900121,2100,169,1,0 +19900121,2100,170,111,28 +19900121,2100,172,1,0 +19900121,2100,175,1,0 +19900121,2100,176,1,0 +19900121,2100,177,1,0 +19900121,2100,178,1,0 +19900121,2100,179,1,0 +19900121,2100,180,1,0 +19900121,2100,181,1,0 +19900121,2100,182,1,0 +19900121,2100,183,111,100 +19900121,2100,189,1,0 +19900121,2100,195,1,0 +19900121,2100,196,1,0 +19900121,2100,197,1,0 +19900121,2100,198,1,0 +19900121,2100,201,1,0 +19900121,2100,202,1,0 +19900121,2100,205,1,0 +19900121,2100,208,1,0 +19900121,2100,209,1,0 +19900121,2100,210,1,0 +19900121,2100,211,1,0 +19900121,2100,212,1,0 +19900121,2100,213,1,0 +19900121,2100,228,1,0 +19900121,2100,235,1,0 +19900121,2100,236,111,289 +19900121,2100,238,1,0 +19900121,2100,59,1,0 +19900121,2100,78,1,0 +19900121,2100,79,1,0 +19900121,2100,136,1,0 +19900121,2100,137,1,0 +19900121,2100,151,1,0 +19900121,2100,159,1,0 +19900121,2100,164,1,0 +19900121,2100,165,1,0 +19900121,2100,166,1,0 +19900121,2100,167,1,0 +19900121,2100,168,1,0 +19900121,2100,186,1,0 +19900121,2100,187,1,0 +19900121,2100,188,1,0 +19900121,2100,229,1,0 +19900121,2100,230,1,0 +19900121,2100,231,1,0 +19900121,2100,232,1,0 +19900121,2100,243,1,0 +19900121,2100,244,1,0 +19900121,2100,245,1,0 +19900121,2100,228246,1,0 +19900121,2100,228247,1,0 +19900122,0,133,100,1000 +19900122,0,133,100,975 +19900122,0,133,100,950 +19900122,0,133,100,925 +19900122,0,133,100,900 +19900122,0,133,100,875 +19900122,0,133,100,850 +19900122,0,133,100,825 +19900122,0,133,100,800 +19900122,0,133,100,775 +19900122,0,133,100,750 +19900122,0,133,100,740 +19900122,0,133,100,700 +19900122,0,133,100,650 +19900122,0,133,100,620 +19900122,0,133,100,600 +19900122,0,133,100,550 +19900122,0,133,100,500 +19900122,0,133,100,450 +19900122,0,133,100,400 +19900122,0,133,100,375 +19900122,0,133,100,350 +19900122,0,133,100,300 +19900122,0,133,100,250 +19900122,0,133,100,245 +19900122,0,133,100,225 +19900122,0,133,100,200 +19900122,0,133,100,175 +19900122,0,133,100,150 +19900122,0,133,100,125 +19900122,0,133,100,100 +19900122,0,133,100,70 +19900122,0,133,100,50 +19900122,0,133,100,30 +19900122,0,133,100,20 +19900122,0,133,100,10 +19900122,0,133,100,9 +19900122,0,133,100,7 +19900122,0,133,100,5 +19900122,0,133,100,3 +19900122,0,133,100,2 +19900122,0,133,100,1 +19900122,0,133,210,40 +19900122,0,3,117,2000 +19900122,0,133,109,1 +19900122,0,133,109,2 +19900122,0,133,109,3 +19900122,0,133,109,4 +19900122,0,133,109,5 +19900122,0,133,109,6 +19900122,0,133,109,7 +19900122,0,133,109,8 +19900122,0,133,109,9 +19900122,0,133,109,10 +19900122,0,246,109,1 +19900122,0,246,109,2 +19900122,0,246,109,3 +19900122,0,246,109,4 +19900122,0,246,109,5 +19900122,0,246,109,6 +19900122,0,246,109,7 +19900122,0,246,109,8 +19900122,0,246,109,9 +19900122,0,246,109,10 +19900122,0,247,109,1 +19900122,0,247,109,2 +19900122,0,247,109,3 +19900122,0,247,109,4 +19900122,0,247,109,5 +19900122,0,247,109,6 +19900122,0,247,109,7 +19900122,0,247,109,8 +19900122,0,247,109,9 +19900122,0,247,109,10 +19900122,0,248,109,1 +19900122,0,248,109,2 +19900122,0,248,109,3 +19900122,0,248,109,4 +19900122,0,248,109,5 +19900122,0,248,109,6 +19900122,0,248,109,7 +19900122,0,248,109,8 +19900122,0,248,109,9 +19900122,0,248,109,10 +19900122,0,8,1,0 +19900122,0,31,1,0 +19900122,0,32,1,0 +19900122,0,33,1,0 +19900122,0,34,1,0 +19900122,0,35,111,7 +19900122,0,36,111,28 +19900122,0,37,111,100 +19900122,0,38,111,289 +19900122,0,39,111,7 +19900122,0,40,111,28 +19900122,0,41,111,100 +19900122,0,42,111,289 +19900122,0,44,1,0 +19900122,0,45,1,0 +19900122,0,49,1,0 +19900122,0,50,1,0 +19900122,0,57,1,0 +19900122,0,58,1,0 +19900122,0,123,1,0 +19900122,0,139,111,7 +19900122,0,141,1,0 +19900122,0,142,1,0 +19900122,0,143,1,0 +19900122,0,144,1,0 +19900122,0,145,1,0 +19900122,0,146,1,0 +19900122,0,147,1,0 +19900122,0,148,1,0 +19900122,0,169,1,0 +19900122,0,170,111,28 +19900122,0,172,1,0 +19900122,0,175,1,0 +19900122,0,176,1,0 +19900122,0,177,1,0 +19900122,0,178,1,0 +19900122,0,179,1,0 +19900122,0,180,1,0 +19900122,0,181,1,0 +19900122,0,182,1,0 +19900122,0,183,111,100 +19900122,0,189,1,0 +19900122,0,195,1,0 +19900122,0,196,1,0 +19900122,0,197,1,0 +19900122,0,198,1,0 +19900122,0,201,1,0 +19900122,0,202,1,0 +19900122,0,205,1,0 +19900122,0,208,1,0 +19900122,0,209,1,0 +19900122,0,210,1,0 +19900122,0,211,1,0 +19900122,0,212,1,0 +19900122,0,213,1,0 +19900122,0,228,1,0 +19900122,0,235,1,0 +19900122,0,236,111,289 +19900122,0,238,1,0 +19900122,0,59,1,0 +19900122,0,78,1,0 +19900122,0,79,1,0 +19900122,0,136,1,0 +19900122,0,137,1,0 +19900122,0,151,1,0 +19900122,0,159,1,0 +19900122,0,164,1,0 +19900122,0,165,1,0 +19900122,0,166,1,0 +19900122,0,167,1,0 +19900122,0,168,1,0 +19900122,0,186,1,0 +19900122,0,187,1,0 +19900122,0,188,1,0 +19900122,0,229,1,0 +19900122,0,230,1,0 +19900122,0,231,1,0 +19900122,0,232,1,0 +19900122,0,243,1,0 +19900122,0,244,1,0 +19900122,0,245,1,0 +19900122,0,228246,1,0 +19900122,0,228247,1,0 +19900122,300,8,1,0 +19900122,300,31,1,0 +19900122,300,32,1,0 +19900122,300,33,1,0 +19900122,300,34,1,0 +19900122,300,35,111,7 +19900122,300,36,111,28 +19900122,300,37,111,100 +19900122,300,38,111,289 +19900122,300,39,111,7 +19900122,300,40,111,28 +19900122,300,41,111,100 +19900122,300,42,111,289 +19900122,300,44,1,0 +19900122,300,45,1,0 +19900122,300,49,1,0 +19900122,300,50,1,0 +19900122,300,57,1,0 +19900122,300,58,1,0 +19900122,300,123,1,0 +19900122,300,139,111,7 +19900122,300,141,1,0 +19900122,300,142,1,0 +19900122,300,143,1,0 +19900122,300,144,1,0 +19900122,300,145,1,0 +19900122,300,146,1,0 +19900122,300,147,1,0 +19900122,300,148,1,0 +19900122,300,169,1,0 +19900122,300,170,111,28 +19900122,300,172,1,0 +19900122,300,175,1,0 +19900122,300,176,1,0 +19900122,300,177,1,0 +19900122,300,178,1,0 +19900122,300,179,1,0 +19900122,300,180,1,0 +19900122,300,181,1,0 +19900122,300,182,1,0 +19900122,300,183,111,100 +19900122,300,189,1,0 +19900122,300,195,1,0 +19900122,300,196,1,0 +19900122,300,197,1,0 +19900122,300,198,1,0 +19900122,300,201,1,0 +19900122,300,202,1,0 +19900122,300,205,1,0 +19900122,300,208,1,0 +19900122,300,209,1,0 +19900122,300,210,1,0 +19900122,300,211,1,0 +19900122,300,212,1,0 +19900122,300,213,1,0 +19900122,300,228,1,0 +19900122,300,235,1,0 +19900122,300,236,111,289 +19900122,300,238,1,0 +19900122,300,59,1,0 +19900122,300,78,1,0 +19900122,300,79,1,0 +19900122,300,136,1,0 +19900122,300,137,1,0 +19900122,300,151,1,0 +19900122,300,159,1,0 +19900122,300,164,1,0 +19900122,300,165,1,0 +19900122,300,166,1,0 +19900122,300,167,1,0 +19900122,300,168,1,0 +19900122,300,186,1,0 +19900122,300,187,1,0 +19900122,300,188,1,0 +19900122,300,229,1,0 +19900122,300,230,1,0 +19900122,300,231,1,0 +19900122,300,232,1,0 +19900122,300,243,1,0 +19900122,300,244,1,0 +19900122,300,245,1,0 +19900122,300,228246,1,0 +19900122,300,228247,1,0 +19900122,600,133,100,1000 +19900122,600,133,100,975 +19900122,600,133,100,950 +19900122,600,133,100,925 +19900122,600,133,100,900 +19900122,600,133,100,875 +19900122,600,133,100,850 +19900122,600,133,100,825 +19900122,600,133,100,800 +19900122,600,133,100,775 +19900122,600,133,100,750 +19900122,600,133,100,740 +19900122,600,133,100,700 +19900122,600,133,100,650 +19900122,600,133,100,620 +19900122,600,133,100,600 +19900122,600,133,100,550 +19900122,600,133,100,500 +19900122,600,133,100,450 +19900122,600,133,100,400 +19900122,600,133,100,375 +19900122,600,133,100,350 +19900122,600,133,100,300 +19900122,600,133,100,250 +19900122,600,133,100,245 +19900122,600,133,100,225 +19900122,600,133,100,200 +19900122,600,133,100,175 +19900122,600,133,100,150 +19900122,600,133,100,125 +19900122,600,133,100,100 +19900122,600,133,100,70 +19900122,600,133,100,50 +19900122,600,133,100,30 +19900122,600,133,100,20 +19900122,600,133,100,10 +19900122,600,133,100,9 +19900122,600,133,100,7 +19900122,600,133,100,5 +19900122,600,133,100,3 +19900122,600,133,100,2 +19900122,600,133,100,1 +19900122,600,133,210,40 +19900122,600,3,117,2000 +19900122,600,133,109,1 +19900122,600,133,109,2 +19900122,600,133,109,3 +19900122,600,133,109,4 +19900122,600,133,109,5 +19900122,600,133,109,6 +19900122,600,133,109,7 +19900122,600,133,109,8 +19900122,600,133,109,9 +19900122,600,133,109,10 +19900122,600,246,109,1 +19900122,600,246,109,2 +19900122,600,246,109,3 +19900122,600,246,109,4 +19900122,600,246,109,5 +19900122,600,246,109,6 +19900122,600,246,109,7 +19900122,600,246,109,8 +19900122,600,246,109,9 +19900122,600,246,109,10 +19900122,600,247,109,1 +19900122,600,247,109,2 +19900122,600,247,109,3 +19900122,600,247,109,4 +19900122,600,247,109,5 +19900122,600,247,109,6 +19900122,600,247,109,7 +19900122,600,247,109,8 +19900122,600,247,109,9 +19900122,600,247,109,10 +19900122,600,248,109,1 +19900122,600,248,109,2 +19900122,600,248,109,3 +19900122,600,248,109,4 +19900122,600,248,109,5 +19900122,600,248,109,6 +19900122,600,248,109,7 +19900122,600,248,109,8 +19900122,600,248,109,9 +19900122,600,248,109,10 +19900122,600,8,1,0 +19900122,600,31,1,0 +19900122,600,32,1,0 +19900122,600,33,1,0 +19900122,600,34,1,0 +19900122,600,35,111,7 +19900122,600,36,111,28 +19900122,600,37,111,100 +19900122,600,38,111,289 +19900122,600,39,111,7 +19900122,600,40,111,28 +19900122,600,41,111,100 +19900122,600,42,111,289 +19900122,600,44,1,0 +19900122,600,45,1,0 +19900122,600,49,1,0 +19900122,600,50,1,0 +19900122,600,57,1,0 +19900122,600,58,1,0 +19900122,600,123,1,0 +19900122,600,139,111,7 +19900122,600,141,1,0 +19900122,600,142,1,0 +19900122,600,143,1,0 +19900122,600,144,1,0 +19900122,600,145,1,0 +19900122,600,146,1,0 +19900122,600,147,1,0 +19900122,600,148,1,0 +19900122,600,169,1,0 +19900122,600,170,111,28 +19900122,600,172,1,0 +19900122,600,175,1,0 +19900122,600,176,1,0 +19900122,600,177,1,0 +19900122,600,178,1,0 +19900122,600,179,1,0 +19900122,600,180,1,0 +19900122,600,181,1,0 +19900122,600,182,1,0 +19900122,600,183,111,100 +19900122,600,189,1,0 +19900122,600,195,1,0 +19900122,600,196,1,0 +19900122,600,197,1,0 +19900122,600,198,1,0 +19900122,600,201,1,0 +19900122,600,202,1,0 +19900122,600,205,1,0 +19900122,600,208,1,0 +19900122,600,209,1,0 +19900122,600,210,1,0 +19900122,600,211,1,0 +19900122,600,212,1,0 +19900122,600,213,1,0 +19900122,600,228,1,0 +19900122,600,235,1,0 +19900122,600,236,111,289 +19900122,600,238,1,0 +19900122,600,59,1,0 +19900122,600,78,1,0 +19900122,600,79,1,0 +19900122,600,136,1,0 +19900122,600,137,1,0 +19900122,600,151,1,0 +19900122,600,159,1,0 +19900122,600,164,1,0 +19900122,600,165,1,0 +19900122,600,166,1,0 +19900122,600,167,1,0 +19900122,600,168,1,0 +19900122,600,186,1,0 +19900122,600,187,1,0 +19900122,600,188,1,0 +19900122,600,229,1,0 +19900122,600,230,1,0 +19900122,600,231,1,0 +19900122,600,232,1,0 +19900122,600,243,1,0 +19900122,600,244,1,0 +19900122,600,245,1,0 +19900122,600,228246,1,0 +19900122,600,228247,1,0 +19900122,900,8,1,0 +19900122,900,31,1,0 +19900122,900,32,1,0 +19900122,900,33,1,0 +19900122,900,34,1,0 +19900122,900,35,111,7 +19900122,900,36,111,28 +19900122,900,37,111,100 +19900122,900,38,111,289 +19900122,900,39,111,7 +19900122,900,40,111,28 +19900122,900,41,111,100 +19900122,900,42,111,289 +19900122,900,44,1,0 +19900122,900,45,1,0 +19900122,900,49,1,0 +19900122,900,50,1,0 +19900122,900,57,1,0 +19900122,900,58,1,0 +19900122,900,123,1,0 +19900122,900,139,111,7 +19900122,900,141,1,0 +19900122,900,142,1,0 +19900122,900,143,1,0 +19900122,900,144,1,0 +19900122,900,145,1,0 +19900122,900,146,1,0 +19900122,900,147,1,0 +19900122,900,148,1,0 +19900122,900,169,1,0 +19900122,900,170,111,28 +19900122,900,172,1,0 +19900122,900,175,1,0 +19900122,900,176,1,0 +19900122,900,177,1,0 +19900122,900,178,1,0 +19900122,900,179,1,0 +19900122,900,180,1,0 +19900122,900,181,1,0 +19900122,900,182,1,0 +19900122,900,183,111,100 +19900122,900,189,1,0 +19900122,900,195,1,0 +19900122,900,196,1,0 +19900122,900,197,1,0 +19900122,900,198,1,0 +19900122,900,201,1,0 +19900122,900,202,1,0 +19900122,900,205,1,0 +19900122,900,208,1,0 +19900122,900,209,1,0 +19900122,900,210,1,0 +19900122,900,211,1,0 +19900122,900,212,1,0 +19900122,900,213,1,0 +19900122,900,228,1,0 +19900122,900,235,1,0 +19900122,900,236,111,289 +19900122,900,238,1,0 +19900122,900,59,1,0 +19900122,900,78,1,0 +19900122,900,79,1,0 +19900122,900,136,1,0 +19900122,900,137,1,0 +19900122,900,151,1,0 +19900122,900,159,1,0 +19900122,900,164,1,0 +19900122,900,165,1,0 +19900122,900,166,1,0 +19900122,900,167,1,0 +19900122,900,168,1,0 +19900122,900,186,1,0 +19900122,900,187,1,0 +19900122,900,188,1,0 +19900122,900,229,1,0 +19900122,900,230,1,0 +19900122,900,231,1,0 +19900122,900,232,1,0 +19900122,900,243,1,0 +19900122,900,244,1,0 +19900122,900,245,1,0 +19900122,900,228246,1,0 +19900122,900,228247,1,0 +19900122,1200,133,100,1000 +19900122,1200,133,100,975 +19900122,1200,133,100,950 +19900122,1200,133,100,925 +19900122,1200,133,100,900 +19900122,1200,133,100,875 +19900122,1200,133,100,850 +19900122,1200,133,100,825 +19900122,1200,133,100,800 +19900122,1200,133,100,775 +19900122,1200,133,100,750 +19900122,1200,133,100,740 +19900122,1200,133,100,700 +19900122,1200,133,100,650 +19900122,1200,133,100,620 +19900122,1200,133,100,600 +19900122,1200,133,100,550 +19900122,1200,133,100,500 +19900122,1200,133,100,450 +19900122,1200,133,100,400 +19900122,1200,133,100,375 +19900122,1200,133,100,350 +19900122,1200,133,100,300 +19900122,1200,133,100,250 +19900122,1200,133,100,245 +19900122,1200,133,100,225 +19900122,1200,133,100,200 +19900122,1200,133,100,175 +19900122,1200,133,100,150 +19900122,1200,133,100,125 +19900122,1200,133,100,100 +19900122,1200,133,100,70 +19900122,1200,133,100,50 +19900122,1200,133,100,30 +19900122,1200,133,100,20 +19900122,1200,133,100,10 +19900122,1200,133,100,9 +19900122,1200,133,100,7 +19900122,1200,133,100,5 +19900122,1200,133,100,3 +19900122,1200,133,100,2 +19900122,1200,133,100,1 +19900122,1200,133,210,40 +19900122,1200,3,117,2000 +19900122,1200,133,109,1 +19900122,1200,133,109,2 +19900122,1200,133,109,3 +19900122,1200,133,109,4 +19900122,1200,133,109,5 +19900122,1200,133,109,6 +19900122,1200,133,109,7 +19900122,1200,133,109,8 +19900122,1200,133,109,9 +19900122,1200,133,109,10 +19900122,1200,246,109,1 +19900122,1200,246,109,2 +19900122,1200,246,109,3 +19900122,1200,246,109,4 +19900122,1200,246,109,5 +19900122,1200,246,109,6 +19900122,1200,246,109,7 +19900122,1200,246,109,8 +19900122,1200,246,109,9 +19900122,1200,246,109,10 +19900122,1200,247,109,1 +19900122,1200,247,109,2 +19900122,1200,247,109,3 +19900122,1200,247,109,4 +19900122,1200,247,109,5 +19900122,1200,247,109,6 +19900122,1200,247,109,7 +19900122,1200,247,109,8 +19900122,1200,247,109,9 +19900122,1200,247,109,10 +19900122,1200,248,109,1 +19900122,1200,248,109,2 +19900122,1200,248,109,3 +19900122,1200,248,109,4 +19900122,1200,248,109,5 +19900122,1200,248,109,6 +19900122,1200,248,109,7 +19900122,1200,248,109,8 +19900122,1200,248,109,9 +19900122,1200,248,109,10 +19900122,1200,8,1,0 +19900122,1200,31,1,0 +19900122,1200,32,1,0 +19900122,1200,33,1,0 +19900122,1200,34,1,0 +19900122,1200,35,111,7 +19900122,1200,36,111,28 +19900122,1200,37,111,100 +19900122,1200,38,111,289 +19900122,1200,39,111,7 +19900122,1200,40,111,28 +19900122,1200,41,111,100 +19900122,1200,42,111,289 +19900122,1200,44,1,0 +19900122,1200,45,1,0 +19900122,1200,49,1,0 +19900122,1200,50,1,0 +19900122,1200,57,1,0 +19900122,1200,58,1,0 +19900122,1200,123,1,0 +19900122,1200,139,111,7 +19900122,1200,141,1,0 +19900122,1200,142,1,0 +19900122,1200,143,1,0 +19900122,1200,144,1,0 +19900122,1200,145,1,0 +19900122,1200,146,1,0 +19900122,1200,147,1,0 +19900122,1200,148,1,0 +19900122,1200,169,1,0 +19900122,1200,170,111,28 +19900122,1200,172,1,0 +19900122,1200,175,1,0 +19900122,1200,176,1,0 +19900122,1200,177,1,0 +19900122,1200,178,1,0 +19900122,1200,179,1,0 +19900122,1200,180,1,0 +19900122,1200,181,1,0 +19900122,1200,182,1,0 +19900122,1200,183,111,100 +19900122,1200,189,1,0 +19900122,1200,195,1,0 +19900122,1200,196,1,0 +19900122,1200,197,1,0 +19900122,1200,198,1,0 +19900122,1200,201,1,0 +19900122,1200,202,1,0 +19900122,1200,205,1,0 +19900122,1200,208,1,0 +19900122,1200,209,1,0 +19900122,1200,210,1,0 +19900122,1200,211,1,0 +19900122,1200,212,1,0 +19900122,1200,213,1,0 +19900122,1200,228,1,0 +19900122,1200,235,1,0 +19900122,1200,236,111,289 +19900122,1200,238,1,0 +19900122,1200,59,1,0 +19900122,1200,78,1,0 +19900122,1200,79,1,0 +19900122,1200,136,1,0 +19900122,1200,137,1,0 +19900122,1200,151,1,0 +19900122,1200,159,1,0 +19900122,1200,164,1,0 +19900122,1200,165,1,0 +19900122,1200,166,1,0 +19900122,1200,167,1,0 +19900122,1200,168,1,0 +19900122,1200,186,1,0 +19900122,1200,187,1,0 +19900122,1200,188,1,0 +19900122,1200,229,1,0 +19900122,1200,230,1,0 +19900122,1200,231,1,0 +19900122,1200,232,1,0 +19900122,1200,243,1,0 +19900122,1200,244,1,0 +19900122,1200,245,1,0 +19900122,1200,228246,1,0 +19900122,1200,228247,1,0 +19900122,1500,8,1,0 +19900122,1500,31,1,0 +19900122,1500,32,1,0 +19900122,1500,33,1,0 +19900122,1500,34,1,0 +19900122,1500,35,111,7 +19900122,1500,36,111,28 +19900122,1500,37,111,100 +19900122,1500,38,111,289 +19900122,1500,39,111,7 +19900122,1500,40,111,28 +19900122,1500,41,111,100 +19900122,1500,42,111,289 +19900122,1500,44,1,0 +19900122,1500,45,1,0 +19900122,1500,49,1,0 +19900122,1500,50,1,0 +19900122,1500,57,1,0 +19900122,1500,58,1,0 +19900122,1500,123,1,0 +19900122,1500,139,111,7 +19900122,1500,141,1,0 +19900122,1500,142,1,0 +19900122,1500,143,1,0 +19900122,1500,144,1,0 +19900122,1500,145,1,0 +19900122,1500,146,1,0 +19900122,1500,147,1,0 +19900122,1500,148,1,0 +19900122,1500,169,1,0 +19900122,1500,170,111,28 +19900122,1500,172,1,0 +19900122,1500,175,1,0 +19900122,1500,176,1,0 +19900122,1500,177,1,0 +19900122,1500,178,1,0 +19900122,1500,179,1,0 +19900122,1500,180,1,0 +19900122,1500,181,1,0 +19900122,1500,182,1,0 +19900122,1500,183,111,100 +19900122,1500,189,1,0 +19900122,1500,195,1,0 +19900122,1500,196,1,0 +19900122,1500,197,1,0 +19900122,1500,198,1,0 +19900122,1500,201,1,0 +19900122,1500,202,1,0 +19900122,1500,205,1,0 +19900122,1500,208,1,0 +19900122,1500,209,1,0 +19900122,1500,210,1,0 +19900122,1500,211,1,0 +19900122,1500,212,1,0 +19900122,1500,213,1,0 +19900122,1500,228,1,0 +19900122,1500,235,1,0 +19900122,1500,236,111,289 +19900122,1500,238,1,0 +19900122,1500,59,1,0 +19900122,1500,78,1,0 +19900122,1500,79,1,0 +19900122,1500,136,1,0 +19900122,1500,137,1,0 +19900122,1500,151,1,0 +19900122,1500,159,1,0 +19900122,1500,164,1,0 +19900122,1500,165,1,0 +19900122,1500,166,1,0 +19900122,1500,167,1,0 +19900122,1500,168,1,0 +19900122,1500,186,1,0 +19900122,1500,187,1,0 +19900122,1500,188,1,0 +19900122,1500,229,1,0 +19900122,1500,230,1,0 +19900122,1500,231,1,0 +19900122,1500,232,1,0 +19900122,1500,243,1,0 +19900122,1500,244,1,0 +19900122,1500,245,1,0 +19900122,1500,228246,1,0 +19900122,1500,228247,1,0 +19900122,1800,133,100,1000 +19900122,1800,133,100,975 +19900122,1800,133,100,950 +19900122,1800,133,100,925 +19900122,1800,133,100,900 +19900122,1800,133,100,875 +19900122,1800,133,100,850 +19900122,1800,133,100,825 +19900122,1800,133,100,800 +19900122,1800,133,100,775 +19900122,1800,133,100,750 +19900122,1800,133,100,740 +19900122,1800,133,100,700 +19900122,1800,133,100,650 +19900122,1800,133,100,620 +19900122,1800,133,100,600 +19900122,1800,133,100,550 +19900122,1800,133,100,500 +19900122,1800,133,100,450 +19900122,1800,133,100,400 +19900122,1800,133,100,375 +19900122,1800,133,100,350 +19900122,1800,133,100,300 +19900122,1800,133,100,250 +19900122,1800,133,100,245 +19900122,1800,133,100,225 +19900122,1800,133,100,200 +19900122,1800,133,100,175 +19900122,1800,133,100,150 +19900122,1800,133,100,125 +19900122,1800,133,100,100 +19900122,1800,133,100,70 +19900122,1800,133,100,50 +19900122,1800,133,100,30 +19900122,1800,133,100,20 +19900122,1800,133,100,10 +19900122,1800,133,100,9 +19900122,1800,133,100,7 +19900122,1800,133,100,5 +19900122,1800,133,100,3 +19900122,1800,133,100,2 +19900122,1800,133,100,1 +19900122,1800,133,210,40 +19900122,1800,3,117,2000 +19900122,1800,133,109,1 +19900122,1800,133,109,2 +19900122,1800,133,109,3 +19900122,1800,133,109,4 +19900122,1800,133,109,5 +19900122,1800,133,109,6 +19900122,1800,133,109,7 +19900122,1800,133,109,8 +19900122,1800,133,109,9 +19900122,1800,133,109,10 +19900122,1800,246,109,1 +19900122,1800,246,109,2 +19900122,1800,246,109,3 +19900122,1800,246,109,4 +19900122,1800,246,109,5 +19900122,1800,246,109,6 +19900122,1800,246,109,7 +19900122,1800,246,109,8 +19900122,1800,246,109,9 +19900122,1800,246,109,10 +19900122,1800,247,109,1 +19900122,1800,247,109,2 +19900122,1800,247,109,3 +19900122,1800,247,109,4 +19900122,1800,247,109,5 +19900122,1800,247,109,6 +19900122,1800,247,109,7 +19900122,1800,247,109,8 +19900122,1800,247,109,9 +19900122,1800,247,109,10 +19900122,1800,248,109,1 +19900122,1800,248,109,2 +19900122,1800,248,109,3 +19900122,1800,248,109,4 +19900122,1800,248,109,5 +19900122,1800,248,109,6 +19900122,1800,248,109,7 +19900122,1800,248,109,8 +19900122,1800,248,109,9 +19900122,1800,248,109,10 +19900122,1800,8,1,0 +19900122,1800,31,1,0 +19900122,1800,32,1,0 +19900122,1800,33,1,0 +19900122,1800,34,1,0 +19900122,1800,35,111,7 +19900122,1800,36,111,28 +19900122,1800,37,111,100 +19900122,1800,38,111,289 +19900122,1800,39,111,7 +19900122,1800,40,111,28 +19900122,1800,41,111,100 +19900122,1800,42,111,289 +19900122,1800,44,1,0 +19900122,1800,45,1,0 +19900122,1800,49,1,0 +19900122,1800,50,1,0 +19900122,1800,57,1,0 +19900122,1800,58,1,0 +19900122,1800,123,1,0 +19900122,1800,139,111,7 +19900122,1800,141,1,0 +19900122,1800,142,1,0 +19900122,1800,143,1,0 +19900122,1800,144,1,0 +19900122,1800,145,1,0 +19900122,1800,146,1,0 +19900122,1800,147,1,0 +19900122,1800,148,1,0 +19900122,1800,169,1,0 +19900122,1800,170,111,28 +19900122,1800,172,1,0 +19900122,1800,175,1,0 +19900122,1800,176,1,0 +19900122,1800,177,1,0 +19900122,1800,178,1,0 +19900122,1800,179,1,0 +19900122,1800,180,1,0 +19900122,1800,181,1,0 +19900122,1800,182,1,0 +19900122,1800,183,111,100 +19900122,1800,189,1,0 +19900122,1800,195,1,0 +19900122,1800,196,1,0 +19900122,1800,197,1,0 +19900122,1800,198,1,0 +19900122,1800,201,1,0 +19900122,1800,202,1,0 +19900122,1800,205,1,0 +19900122,1800,208,1,0 +19900122,1800,209,1,0 +19900122,1800,210,1,0 +19900122,1800,211,1,0 +19900122,1800,212,1,0 +19900122,1800,213,1,0 +19900122,1800,228,1,0 +19900122,1800,235,1,0 +19900122,1800,236,111,289 +19900122,1800,238,1,0 +19900122,1800,59,1,0 +19900122,1800,78,1,0 +19900122,1800,79,1,0 +19900122,1800,136,1,0 +19900122,1800,137,1,0 +19900122,1800,151,1,0 +19900122,1800,159,1,0 +19900122,1800,164,1,0 +19900122,1800,165,1,0 +19900122,1800,166,1,0 +19900122,1800,167,1,0 +19900122,1800,168,1,0 +19900122,1800,186,1,0 +19900122,1800,187,1,0 +19900122,1800,188,1,0 +19900122,1800,229,1,0 +19900122,1800,230,1,0 +19900122,1800,231,1,0 +19900122,1800,232,1,0 +19900122,1800,243,1,0 +19900122,1800,244,1,0 +19900122,1800,245,1,0 +19900122,1800,228246,1,0 +19900122,1800,228247,1,0 +19900122,2100,8,1,0 +19900122,2100,31,1,0 +19900122,2100,32,1,0 +19900122,2100,33,1,0 +19900122,2100,34,1,0 +19900122,2100,35,111,7 +19900122,2100,36,111,28 +19900122,2100,37,111,100 +19900122,2100,38,111,289 +19900122,2100,39,111,7 +19900122,2100,40,111,28 +19900122,2100,41,111,100 +19900122,2100,42,111,289 +19900122,2100,44,1,0 +19900122,2100,45,1,0 +19900122,2100,49,1,0 +19900122,2100,50,1,0 +19900122,2100,57,1,0 +19900122,2100,58,1,0 +19900122,2100,123,1,0 +19900122,2100,139,111,7 +19900122,2100,141,1,0 +19900122,2100,142,1,0 +19900122,2100,143,1,0 +19900122,2100,144,1,0 +19900122,2100,145,1,0 +19900122,2100,146,1,0 +19900122,2100,147,1,0 +19900122,2100,148,1,0 +19900122,2100,169,1,0 +19900122,2100,170,111,28 +19900122,2100,172,1,0 +19900122,2100,175,1,0 +19900122,2100,176,1,0 +19900122,2100,177,1,0 +19900122,2100,178,1,0 +19900122,2100,179,1,0 +19900122,2100,180,1,0 +19900122,2100,181,1,0 +19900122,2100,182,1,0 +19900122,2100,183,111,100 +19900122,2100,189,1,0 +19900122,2100,195,1,0 +19900122,2100,196,1,0 +19900122,2100,197,1,0 +19900122,2100,198,1,0 +19900122,2100,201,1,0 +19900122,2100,202,1,0 +19900122,2100,205,1,0 +19900122,2100,208,1,0 +19900122,2100,209,1,0 +19900122,2100,210,1,0 +19900122,2100,211,1,0 +19900122,2100,212,1,0 +19900122,2100,213,1,0 +19900122,2100,228,1,0 +19900122,2100,235,1,0 +19900122,2100,236,111,289 +19900122,2100,238,1,0 +19900122,2100,59,1,0 +19900122,2100,78,1,0 +19900122,2100,79,1,0 +19900122,2100,136,1,0 +19900122,2100,137,1,0 +19900122,2100,151,1,0 +19900122,2100,159,1,0 +19900122,2100,164,1,0 +19900122,2100,165,1,0 +19900122,2100,166,1,0 +19900122,2100,167,1,0 +19900122,2100,168,1,0 +19900122,2100,186,1,0 +19900122,2100,187,1,0 +19900122,2100,188,1,0 +19900122,2100,229,1,0 +19900122,2100,230,1,0 +19900122,2100,231,1,0 +19900122,2100,232,1,0 +19900122,2100,243,1,0 +19900122,2100,244,1,0 +19900122,2100,245,1,0 +19900122,2100,228246,1,0 +19900122,2100,228247,1,0 +19900123,0,133,100,1000 +19900123,0,133,100,975 +19900123,0,133,100,950 +19900123,0,133,100,925 +19900123,0,133,100,900 +19900123,0,133,100,875 +19900123,0,133,100,850 +19900123,0,133,100,825 +19900123,0,133,100,800 +19900123,0,133,100,775 +19900123,0,133,100,750 +19900123,0,133,100,740 +19900123,0,133,100,700 +19900123,0,133,100,650 +19900123,0,133,100,620 +19900123,0,133,100,600 +19900123,0,133,100,550 +19900123,0,133,100,500 +19900123,0,133,100,450 +19900123,0,133,100,400 +19900123,0,133,100,375 +19900123,0,133,100,350 +19900123,0,133,100,300 +19900123,0,133,100,250 +19900123,0,133,100,245 +19900123,0,133,100,225 +19900123,0,133,100,200 +19900123,0,133,100,175 +19900123,0,133,100,150 +19900123,0,133,100,125 +19900123,0,133,100,100 +19900123,0,133,100,70 +19900123,0,133,100,50 +19900123,0,133,100,30 +19900123,0,133,100,20 +19900123,0,133,100,10 +19900123,0,133,100,9 +19900123,0,133,100,7 +19900123,0,133,100,5 +19900123,0,133,100,3 +19900123,0,133,100,2 +19900123,0,133,100,1 +19900123,0,133,210,40 +19900123,0,3,117,2000 +19900123,0,133,109,1 +19900123,0,133,109,2 +19900123,0,133,109,3 +19900123,0,133,109,4 +19900123,0,133,109,5 +19900123,0,133,109,6 +19900123,0,133,109,7 +19900123,0,133,109,8 +19900123,0,133,109,9 +19900123,0,133,109,10 +19900123,0,246,109,1 +19900123,0,246,109,2 +19900123,0,246,109,3 +19900123,0,246,109,4 +19900123,0,246,109,5 +19900123,0,246,109,6 +19900123,0,246,109,7 +19900123,0,246,109,8 +19900123,0,246,109,9 +19900123,0,246,109,10 +19900123,0,247,109,1 +19900123,0,247,109,2 +19900123,0,247,109,3 +19900123,0,247,109,4 +19900123,0,247,109,5 +19900123,0,247,109,6 +19900123,0,247,109,7 +19900123,0,247,109,8 +19900123,0,247,109,9 +19900123,0,247,109,10 +19900123,0,248,109,1 +19900123,0,248,109,2 +19900123,0,248,109,3 +19900123,0,248,109,4 +19900123,0,248,109,5 +19900123,0,248,109,6 +19900123,0,248,109,7 +19900123,0,248,109,8 +19900123,0,248,109,9 +19900123,0,248,109,10 +19900123,0,8,1,0 +19900123,0,31,1,0 +19900123,0,32,1,0 +19900123,0,33,1,0 +19900123,0,34,1,0 +19900123,0,35,111,7 +19900123,0,36,111,28 +19900123,0,37,111,100 +19900123,0,38,111,289 +19900123,0,39,111,7 +19900123,0,40,111,28 +19900123,0,41,111,100 +19900123,0,42,111,289 +19900123,0,44,1,0 +19900123,0,45,1,0 +19900123,0,49,1,0 +19900123,0,50,1,0 +19900123,0,57,1,0 +19900123,0,58,1,0 +19900123,0,123,1,0 +19900123,0,139,111,7 +19900123,0,141,1,0 +19900123,0,142,1,0 +19900123,0,143,1,0 +19900123,0,144,1,0 +19900123,0,145,1,0 +19900123,0,146,1,0 +19900123,0,147,1,0 +19900123,0,148,1,0 +19900123,0,169,1,0 +19900123,0,170,111,28 +19900123,0,172,1,0 +19900123,0,175,1,0 +19900123,0,176,1,0 +19900123,0,177,1,0 +19900123,0,178,1,0 +19900123,0,179,1,0 +19900123,0,180,1,0 +19900123,0,181,1,0 +19900123,0,182,1,0 +19900123,0,183,111,100 +19900123,0,189,1,0 +19900123,0,195,1,0 +19900123,0,196,1,0 +19900123,0,197,1,0 +19900123,0,198,1,0 +19900123,0,201,1,0 +19900123,0,202,1,0 +19900123,0,205,1,0 +19900123,0,208,1,0 +19900123,0,209,1,0 +19900123,0,210,1,0 +19900123,0,211,1,0 +19900123,0,212,1,0 +19900123,0,213,1,0 +19900123,0,228,1,0 +19900123,0,235,1,0 +19900123,0,236,111,289 +19900123,0,238,1,0 +19900123,0,59,1,0 +19900123,0,78,1,0 +19900123,0,79,1,0 +19900123,0,136,1,0 +19900123,0,137,1,0 +19900123,0,151,1,0 +19900123,0,159,1,0 +19900123,0,164,1,0 +19900123,0,165,1,0 +19900123,0,166,1,0 +19900123,0,167,1,0 +19900123,0,168,1,0 +19900123,0,186,1,0 +19900123,0,187,1,0 +19900123,0,188,1,0 +19900123,0,229,1,0 +19900123,0,230,1,0 +19900123,0,231,1,0 +19900123,0,232,1,0 +19900123,0,243,1,0 +19900123,0,244,1,0 +19900123,0,245,1,0 +19900123,0,228246,1,0 +19900123,0,228247,1,0 +19900123,300,8,1,0 +19900123,300,31,1,0 +19900123,300,32,1,0 +19900123,300,33,1,0 +19900123,300,34,1,0 +19900123,300,35,111,7 +19900123,300,36,111,28 +19900123,300,37,111,100 +19900123,300,38,111,289 +19900123,300,39,111,7 +19900123,300,40,111,28 +19900123,300,41,111,100 +19900123,300,42,111,289 +19900123,300,44,1,0 +19900123,300,45,1,0 +19900123,300,49,1,0 +19900123,300,50,1,0 +19900123,300,57,1,0 +19900123,300,58,1,0 +19900123,300,123,1,0 +19900123,300,139,111,7 +19900123,300,141,1,0 +19900123,300,142,1,0 +19900123,300,143,1,0 +19900123,300,144,1,0 +19900123,300,145,1,0 +19900123,300,146,1,0 +19900123,300,147,1,0 +19900123,300,148,1,0 +19900123,300,169,1,0 +19900123,300,170,111,28 +19900123,300,172,1,0 +19900123,300,175,1,0 +19900123,300,176,1,0 +19900123,300,177,1,0 +19900123,300,178,1,0 +19900123,300,179,1,0 +19900123,300,180,1,0 +19900123,300,181,1,0 +19900123,300,182,1,0 +19900123,300,183,111,100 +19900123,300,189,1,0 +19900123,300,195,1,0 +19900123,300,196,1,0 +19900123,300,197,1,0 +19900123,300,198,1,0 +19900123,300,201,1,0 +19900123,300,202,1,0 +19900123,300,205,1,0 +19900123,300,208,1,0 +19900123,300,209,1,0 +19900123,300,210,1,0 +19900123,300,211,1,0 +19900123,300,212,1,0 +19900123,300,213,1,0 +19900123,300,228,1,0 +19900123,300,235,1,0 +19900123,300,236,111,289 +19900123,300,238,1,0 +19900123,300,59,1,0 +19900123,300,78,1,0 +19900123,300,79,1,0 +19900123,300,136,1,0 +19900123,300,137,1,0 +19900123,300,151,1,0 +19900123,300,159,1,0 +19900123,300,164,1,0 +19900123,300,165,1,0 +19900123,300,166,1,0 +19900123,300,167,1,0 +19900123,300,168,1,0 +19900123,300,186,1,0 +19900123,300,187,1,0 +19900123,300,188,1,0 +19900123,300,229,1,0 +19900123,300,230,1,0 +19900123,300,231,1,0 +19900123,300,232,1,0 +19900123,300,243,1,0 +19900123,300,244,1,0 +19900123,300,245,1,0 +19900123,300,228246,1,0 +19900123,300,228247,1,0 +19900123,600,133,100,1000 +19900123,600,133,100,975 +19900123,600,133,100,950 +19900123,600,133,100,925 +19900123,600,133,100,900 +19900123,600,133,100,875 +19900123,600,133,100,850 +19900123,600,133,100,825 +19900123,600,133,100,800 +19900123,600,133,100,775 +19900123,600,133,100,750 +19900123,600,133,100,740 +19900123,600,133,100,700 +19900123,600,133,100,650 +19900123,600,133,100,620 +19900123,600,133,100,600 +19900123,600,133,100,550 +19900123,600,133,100,500 +19900123,600,133,100,450 +19900123,600,133,100,400 +19900123,600,133,100,375 +19900123,600,133,100,350 +19900123,600,133,100,300 +19900123,600,133,100,250 +19900123,600,133,100,245 +19900123,600,133,100,225 +19900123,600,133,100,200 +19900123,600,133,100,175 +19900123,600,133,100,150 +19900123,600,133,100,125 +19900123,600,133,100,100 +19900123,600,133,100,70 +19900123,600,133,100,50 +19900123,600,133,100,30 +19900123,600,133,100,20 +19900123,600,133,100,10 +19900123,600,133,100,9 +19900123,600,133,100,7 +19900123,600,133,100,5 +19900123,600,133,100,3 +19900123,600,133,100,2 +19900123,600,133,100,1 +19900123,600,133,210,40 +19900123,600,3,117,2000 +19900123,600,133,109,1 +19900123,600,133,109,2 +19900123,600,133,109,3 +19900123,600,133,109,4 +19900123,600,133,109,5 +19900123,600,133,109,6 +19900123,600,133,109,7 +19900123,600,133,109,8 +19900123,600,133,109,9 +19900123,600,133,109,10 +19900123,600,246,109,1 +19900123,600,246,109,2 +19900123,600,246,109,3 +19900123,600,246,109,4 +19900123,600,246,109,5 +19900123,600,246,109,6 +19900123,600,246,109,7 +19900123,600,246,109,8 +19900123,600,246,109,9 +19900123,600,246,109,10 +19900123,600,247,109,1 +19900123,600,247,109,2 +19900123,600,247,109,3 +19900123,600,247,109,4 +19900123,600,247,109,5 +19900123,600,247,109,6 +19900123,600,247,109,7 +19900123,600,247,109,8 +19900123,600,247,109,9 +19900123,600,247,109,10 +19900123,600,248,109,1 +19900123,600,248,109,2 +19900123,600,248,109,3 +19900123,600,248,109,4 +19900123,600,248,109,5 +19900123,600,248,109,6 +19900123,600,248,109,7 +19900123,600,248,109,8 +19900123,600,248,109,9 +19900123,600,248,109,10 +19900123,600,8,1,0 +19900123,600,31,1,0 +19900123,600,32,1,0 +19900123,600,33,1,0 +19900123,600,34,1,0 +19900123,600,35,111,7 +19900123,600,36,111,28 +19900123,600,37,111,100 +19900123,600,38,111,289 +19900123,600,39,111,7 +19900123,600,40,111,28 +19900123,600,41,111,100 +19900123,600,42,111,289 +19900123,600,44,1,0 +19900123,600,45,1,0 +19900123,600,49,1,0 +19900123,600,50,1,0 +19900123,600,57,1,0 +19900123,600,58,1,0 +19900123,600,123,1,0 +19900123,600,139,111,7 +19900123,600,141,1,0 +19900123,600,142,1,0 +19900123,600,143,1,0 +19900123,600,144,1,0 +19900123,600,145,1,0 +19900123,600,146,1,0 +19900123,600,147,1,0 +19900123,600,148,1,0 +19900123,600,169,1,0 +19900123,600,170,111,28 +19900123,600,172,1,0 +19900123,600,175,1,0 +19900123,600,176,1,0 +19900123,600,177,1,0 +19900123,600,178,1,0 +19900123,600,179,1,0 +19900123,600,180,1,0 +19900123,600,181,1,0 +19900123,600,182,1,0 +19900123,600,183,111,100 +19900123,600,189,1,0 +19900123,600,195,1,0 +19900123,600,196,1,0 +19900123,600,197,1,0 +19900123,600,198,1,0 +19900123,600,201,1,0 +19900123,600,202,1,0 +19900123,600,205,1,0 +19900123,600,208,1,0 +19900123,600,209,1,0 +19900123,600,210,1,0 +19900123,600,211,1,0 +19900123,600,212,1,0 +19900123,600,213,1,0 +19900123,600,228,1,0 +19900123,600,235,1,0 +19900123,600,236,111,289 +19900123,600,238,1,0 +19900123,600,59,1,0 +19900123,600,78,1,0 +19900123,600,79,1,0 +19900123,600,136,1,0 +19900123,600,137,1,0 +19900123,600,151,1,0 +19900123,600,159,1,0 +19900123,600,164,1,0 +19900123,600,165,1,0 +19900123,600,166,1,0 +19900123,600,167,1,0 +19900123,600,168,1,0 +19900123,600,186,1,0 +19900123,600,187,1,0 +19900123,600,188,1,0 +19900123,600,229,1,0 +19900123,600,230,1,0 +19900123,600,231,1,0 +19900123,600,232,1,0 +19900123,600,243,1,0 +19900123,600,244,1,0 +19900123,600,245,1,0 +19900123,600,228246,1,0 +19900123,600,228247,1,0 +19900123,900,8,1,0 +19900123,900,31,1,0 +19900123,900,32,1,0 +19900123,900,33,1,0 +19900123,900,34,1,0 +19900123,900,35,111,7 +19900123,900,36,111,28 +19900123,900,37,111,100 +19900123,900,38,111,289 +19900123,900,39,111,7 +19900123,900,40,111,28 +19900123,900,41,111,100 +19900123,900,42,111,289 +19900123,900,44,1,0 +19900123,900,45,1,0 +19900123,900,49,1,0 +19900123,900,50,1,0 +19900123,900,57,1,0 +19900123,900,58,1,0 +19900123,900,123,1,0 +19900123,900,139,111,7 +19900123,900,141,1,0 +19900123,900,142,1,0 +19900123,900,143,1,0 +19900123,900,144,1,0 +19900123,900,145,1,0 +19900123,900,146,1,0 +19900123,900,147,1,0 +19900123,900,148,1,0 +19900123,900,169,1,0 +19900123,900,170,111,28 +19900123,900,172,1,0 +19900123,900,175,1,0 +19900123,900,176,1,0 +19900123,900,177,1,0 +19900123,900,178,1,0 +19900123,900,179,1,0 +19900123,900,180,1,0 +19900123,900,181,1,0 +19900123,900,182,1,0 +19900123,900,183,111,100 +19900123,900,189,1,0 +19900123,900,195,1,0 +19900123,900,196,1,0 +19900123,900,197,1,0 +19900123,900,198,1,0 +19900123,900,201,1,0 +19900123,900,202,1,0 +19900123,900,205,1,0 +19900123,900,208,1,0 +19900123,900,209,1,0 +19900123,900,210,1,0 +19900123,900,211,1,0 +19900123,900,212,1,0 +19900123,900,213,1,0 +19900123,900,228,1,0 +19900123,900,235,1,0 +19900123,900,236,111,289 +19900123,900,238,1,0 +19900123,900,59,1,0 +19900123,900,78,1,0 +19900123,900,79,1,0 +19900123,900,136,1,0 +19900123,900,137,1,0 +19900123,900,151,1,0 +19900123,900,159,1,0 +19900123,900,164,1,0 +19900123,900,165,1,0 +19900123,900,166,1,0 +19900123,900,167,1,0 +19900123,900,168,1,0 +19900123,900,186,1,0 +19900123,900,187,1,0 +19900123,900,188,1,0 +19900123,900,229,1,0 +19900123,900,230,1,0 +19900123,900,231,1,0 +19900123,900,232,1,0 +19900123,900,243,1,0 +19900123,900,244,1,0 +19900123,900,245,1,0 +19900123,900,228246,1,0 +19900123,900,228247,1,0 +19900123,1200,133,100,1000 +19900123,1200,133,100,975 +19900123,1200,133,100,950 +19900123,1200,133,100,925 +19900123,1200,133,100,900 +19900123,1200,133,100,875 +19900123,1200,133,100,850 +19900123,1200,133,100,825 +19900123,1200,133,100,800 +19900123,1200,133,100,775 +19900123,1200,133,100,750 +19900123,1200,133,100,740 +19900123,1200,133,100,700 +19900123,1200,133,100,650 +19900123,1200,133,100,620 +19900123,1200,133,100,600 +19900123,1200,133,100,550 +19900123,1200,133,100,500 +19900123,1200,133,100,450 +19900123,1200,133,100,400 +19900123,1200,133,100,375 +19900123,1200,133,100,350 +19900123,1200,133,100,300 +19900123,1200,133,100,250 +19900123,1200,133,100,245 +19900123,1200,133,100,225 +19900123,1200,133,100,200 +19900123,1200,133,100,175 +19900123,1200,133,100,150 +19900123,1200,133,100,125 +19900123,1200,133,100,100 +19900123,1200,133,100,70 +19900123,1200,133,100,50 +19900123,1200,133,100,30 +19900123,1200,133,100,20 +19900123,1200,133,100,10 +19900123,1200,133,100,9 +19900123,1200,133,100,7 +19900123,1200,133,100,5 +19900123,1200,133,100,3 +19900123,1200,133,100,2 +19900123,1200,133,100,1 +19900123,1200,133,210,40 +19900123,1200,3,117,2000 +19900123,1200,133,109,1 +19900123,1200,133,109,2 +19900123,1200,133,109,3 +19900123,1200,133,109,4 +19900123,1200,133,109,5 +19900123,1200,133,109,6 +19900123,1200,133,109,7 +19900123,1200,133,109,8 +19900123,1200,133,109,9 +19900123,1200,133,109,10 +19900123,1200,246,109,1 +19900123,1200,246,109,2 +19900123,1200,246,109,3 +19900123,1200,246,109,4 +19900123,1200,246,109,5 +19900123,1200,246,109,6 +19900123,1200,246,109,7 +19900123,1200,246,109,8 +19900123,1200,246,109,9 +19900123,1200,246,109,10 +19900123,1200,247,109,1 +19900123,1200,247,109,2 +19900123,1200,247,109,3 +19900123,1200,247,109,4 +19900123,1200,247,109,5 +19900123,1200,247,109,6 +19900123,1200,247,109,7 +19900123,1200,247,109,8 +19900123,1200,247,109,9 +19900123,1200,247,109,10 +19900123,1200,248,109,1 +19900123,1200,248,109,2 +19900123,1200,248,109,3 +19900123,1200,248,109,4 +19900123,1200,248,109,5 +19900123,1200,248,109,6 +19900123,1200,248,109,7 +19900123,1200,248,109,8 +19900123,1200,248,109,9 +19900123,1200,248,109,10 +19900123,1200,8,1,0 +19900123,1200,31,1,0 +19900123,1200,32,1,0 +19900123,1200,33,1,0 +19900123,1200,34,1,0 +19900123,1200,35,111,7 +19900123,1200,36,111,28 +19900123,1200,37,111,100 +19900123,1200,38,111,289 +19900123,1200,39,111,7 +19900123,1200,40,111,28 +19900123,1200,41,111,100 +19900123,1200,42,111,289 +19900123,1200,44,1,0 +19900123,1200,45,1,0 +19900123,1200,49,1,0 +19900123,1200,50,1,0 +19900123,1200,57,1,0 +19900123,1200,58,1,0 +19900123,1200,123,1,0 +19900123,1200,139,111,7 +19900123,1200,141,1,0 +19900123,1200,142,1,0 +19900123,1200,143,1,0 +19900123,1200,144,1,0 +19900123,1200,145,1,0 +19900123,1200,146,1,0 +19900123,1200,147,1,0 +19900123,1200,148,1,0 +19900123,1200,169,1,0 +19900123,1200,170,111,28 +19900123,1200,172,1,0 +19900123,1200,175,1,0 +19900123,1200,176,1,0 +19900123,1200,177,1,0 +19900123,1200,178,1,0 +19900123,1200,179,1,0 +19900123,1200,180,1,0 +19900123,1200,181,1,0 +19900123,1200,182,1,0 +19900123,1200,183,111,100 +19900123,1200,189,1,0 +19900123,1200,195,1,0 +19900123,1200,196,1,0 +19900123,1200,197,1,0 +19900123,1200,198,1,0 +19900123,1200,201,1,0 +19900123,1200,202,1,0 +19900123,1200,205,1,0 +19900123,1200,208,1,0 +19900123,1200,209,1,0 +19900123,1200,210,1,0 +19900123,1200,211,1,0 +19900123,1200,212,1,0 +19900123,1200,213,1,0 +19900123,1200,228,1,0 +19900123,1200,235,1,0 +19900123,1200,236,111,289 +19900123,1200,238,1,0 +19900123,1200,59,1,0 +19900123,1200,78,1,0 +19900123,1200,79,1,0 +19900123,1200,136,1,0 +19900123,1200,137,1,0 +19900123,1200,151,1,0 +19900123,1200,159,1,0 +19900123,1200,164,1,0 +19900123,1200,165,1,0 +19900123,1200,166,1,0 +19900123,1200,167,1,0 +19900123,1200,168,1,0 +19900123,1200,186,1,0 +19900123,1200,187,1,0 +19900123,1200,188,1,0 +19900123,1200,229,1,0 +19900123,1200,230,1,0 +19900123,1200,231,1,0 +19900123,1200,232,1,0 +19900123,1200,243,1,0 +19900123,1200,244,1,0 +19900123,1200,245,1,0 +19900123,1200,228246,1,0 +19900123,1200,228247,1,0 +19900123,1500,8,1,0 +19900123,1500,31,1,0 +19900123,1500,32,1,0 +19900123,1500,33,1,0 +19900123,1500,34,1,0 +19900123,1500,35,111,7 +19900123,1500,36,111,28 +19900123,1500,37,111,100 +19900123,1500,38,111,289 +19900123,1500,39,111,7 +19900123,1500,40,111,28 +19900123,1500,41,111,100 +19900123,1500,42,111,289 +19900123,1500,44,1,0 +19900123,1500,45,1,0 +19900123,1500,49,1,0 +19900123,1500,50,1,0 +19900123,1500,57,1,0 +19900123,1500,58,1,0 +19900123,1500,123,1,0 +19900123,1500,139,111,7 +19900123,1500,141,1,0 +19900123,1500,142,1,0 +19900123,1500,143,1,0 +19900123,1500,144,1,0 +19900123,1500,145,1,0 +19900123,1500,146,1,0 +19900123,1500,147,1,0 +19900123,1500,148,1,0 +19900123,1500,169,1,0 +19900123,1500,170,111,28 +19900123,1500,172,1,0 +19900123,1500,175,1,0 +19900123,1500,176,1,0 +19900123,1500,177,1,0 +19900123,1500,178,1,0 +19900123,1500,179,1,0 +19900123,1500,180,1,0 +19900123,1500,181,1,0 +19900123,1500,182,1,0 +19900123,1500,183,111,100 +19900123,1500,189,1,0 +19900123,1500,195,1,0 +19900123,1500,196,1,0 +19900123,1500,197,1,0 +19900123,1500,198,1,0 +19900123,1500,201,1,0 +19900123,1500,202,1,0 +19900123,1500,205,1,0 +19900123,1500,208,1,0 +19900123,1500,209,1,0 +19900123,1500,210,1,0 +19900123,1500,211,1,0 +19900123,1500,212,1,0 +19900123,1500,213,1,0 +19900123,1500,228,1,0 +19900123,1500,235,1,0 +19900123,1500,236,111,289 +19900123,1500,238,1,0 +19900123,1500,59,1,0 +19900123,1500,78,1,0 +19900123,1500,79,1,0 +19900123,1500,136,1,0 +19900123,1500,137,1,0 +19900123,1500,151,1,0 +19900123,1500,159,1,0 +19900123,1500,164,1,0 +19900123,1500,165,1,0 +19900123,1500,166,1,0 +19900123,1500,167,1,0 +19900123,1500,168,1,0 +19900123,1500,186,1,0 +19900123,1500,187,1,0 +19900123,1500,188,1,0 +19900123,1500,229,1,0 +19900123,1500,230,1,0 +19900123,1500,231,1,0 +19900123,1500,232,1,0 +19900123,1500,243,1,0 +19900123,1500,244,1,0 +19900123,1500,245,1,0 +19900123,1500,228246,1,0 +19900123,1500,228247,1,0 +19900123,1800,133,100,1000 +19900123,1800,133,100,975 +19900123,1800,133,100,950 +19900123,1800,133,100,925 +19900123,1800,133,100,900 +19900123,1800,133,100,875 +19900123,1800,133,100,850 +19900123,1800,133,100,825 +19900123,1800,133,100,800 +19900123,1800,133,100,775 +19900123,1800,133,100,750 +19900123,1800,133,100,740 +19900123,1800,133,100,700 +19900123,1800,133,100,650 +19900123,1800,133,100,620 +19900123,1800,133,100,600 +19900123,1800,133,100,550 +19900123,1800,133,100,500 +19900123,1800,133,100,450 +19900123,1800,133,100,400 +19900123,1800,133,100,375 +19900123,1800,133,100,350 +19900123,1800,133,100,300 +19900123,1800,133,100,250 +19900123,1800,133,100,245 +19900123,1800,133,100,225 +19900123,1800,133,100,200 +19900123,1800,133,100,175 +19900123,1800,133,100,150 +19900123,1800,133,100,125 +19900123,1800,133,100,100 +19900123,1800,133,100,70 +19900123,1800,133,100,50 +19900123,1800,133,100,30 +19900123,1800,133,100,20 +19900123,1800,133,100,10 +19900123,1800,133,100,9 +19900123,1800,133,100,7 +19900123,1800,133,100,5 +19900123,1800,133,100,3 +19900123,1800,133,100,2 +19900123,1800,133,100,1 +19900123,1800,133,210,40 +19900123,1800,3,117,2000 +19900123,1800,133,109,1 +19900123,1800,133,109,2 +19900123,1800,133,109,3 +19900123,1800,133,109,4 +19900123,1800,133,109,5 +19900123,1800,133,109,6 +19900123,1800,133,109,7 +19900123,1800,133,109,8 +19900123,1800,133,109,9 +19900123,1800,133,109,10 +19900123,1800,246,109,1 +19900123,1800,246,109,2 +19900123,1800,246,109,3 +19900123,1800,246,109,4 +19900123,1800,246,109,5 +19900123,1800,246,109,6 +19900123,1800,246,109,7 +19900123,1800,246,109,8 +19900123,1800,246,109,9 +19900123,1800,246,109,10 +19900123,1800,247,109,1 +19900123,1800,247,109,2 +19900123,1800,247,109,3 +19900123,1800,247,109,4 +19900123,1800,247,109,5 +19900123,1800,247,109,6 +19900123,1800,247,109,7 +19900123,1800,247,109,8 +19900123,1800,247,109,9 +19900123,1800,247,109,10 +19900123,1800,248,109,1 +19900123,1800,248,109,2 +19900123,1800,248,109,3 +19900123,1800,248,109,4 +19900123,1800,248,109,5 +19900123,1800,248,109,6 +19900123,1800,248,109,7 +19900123,1800,248,109,8 +19900123,1800,248,109,9 +19900123,1800,248,109,10 +19900123,1800,8,1,0 +19900123,1800,31,1,0 +19900123,1800,32,1,0 +19900123,1800,33,1,0 +19900123,1800,34,1,0 +19900123,1800,35,111,7 +19900123,1800,36,111,28 +19900123,1800,37,111,100 +19900123,1800,38,111,289 +19900123,1800,39,111,7 +19900123,1800,40,111,28 +19900123,1800,41,111,100 +19900123,1800,42,111,289 +19900123,1800,44,1,0 +19900123,1800,45,1,0 +19900123,1800,49,1,0 +19900123,1800,50,1,0 +19900123,1800,57,1,0 +19900123,1800,58,1,0 +19900123,1800,123,1,0 +19900123,1800,139,111,7 +19900123,1800,141,1,0 +19900123,1800,142,1,0 +19900123,1800,143,1,0 +19900123,1800,144,1,0 +19900123,1800,145,1,0 +19900123,1800,146,1,0 +19900123,1800,147,1,0 +19900123,1800,148,1,0 +19900123,1800,169,1,0 +19900123,1800,170,111,28 +19900123,1800,172,1,0 +19900123,1800,175,1,0 +19900123,1800,176,1,0 +19900123,1800,177,1,0 +19900123,1800,178,1,0 +19900123,1800,179,1,0 +19900123,1800,180,1,0 +19900123,1800,181,1,0 +19900123,1800,182,1,0 +19900123,1800,183,111,100 +19900123,1800,189,1,0 +19900123,1800,195,1,0 +19900123,1800,196,1,0 +19900123,1800,197,1,0 +19900123,1800,198,1,0 +19900123,1800,201,1,0 +19900123,1800,202,1,0 +19900123,1800,205,1,0 +19900123,1800,208,1,0 +19900123,1800,209,1,0 +19900123,1800,210,1,0 +19900123,1800,211,1,0 +19900123,1800,212,1,0 +19900123,1800,213,1,0 +19900123,1800,228,1,0 +19900123,1800,235,1,0 +19900123,1800,236,111,289 +19900123,1800,238,1,0 +19900123,1800,59,1,0 +19900123,1800,78,1,0 +19900123,1800,79,1,0 +19900123,1800,136,1,0 +19900123,1800,137,1,0 +19900123,1800,151,1,0 +19900123,1800,159,1,0 +19900123,1800,164,1,0 +19900123,1800,165,1,0 +19900123,1800,166,1,0 +19900123,1800,167,1,0 +19900123,1800,168,1,0 +19900123,1800,186,1,0 +19900123,1800,187,1,0 +19900123,1800,188,1,0 +19900123,1800,229,1,0 +19900123,1800,230,1,0 +19900123,1800,231,1,0 +19900123,1800,232,1,0 +19900123,1800,243,1,0 +19900123,1800,244,1,0 +19900123,1800,245,1,0 +19900123,1800,228246,1,0 +19900123,1800,228247,1,0 +19900123,2100,8,1,0 +19900123,2100,31,1,0 +19900123,2100,32,1,0 +19900123,2100,33,1,0 +19900123,2100,34,1,0 +19900123,2100,35,111,7 +19900123,2100,36,111,28 +19900123,2100,37,111,100 +19900123,2100,38,111,289 +19900123,2100,39,111,7 +19900123,2100,40,111,28 +19900123,2100,41,111,100 +19900123,2100,42,111,289 +19900123,2100,44,1,0 +19900123,2100,45,1,0 +19900123,2100,49,1,0 +19900123,2100,50,1,0 +19900123,2100,57,1,0 +19900123,2100,58,1,0 +19900123,2100,123,1,0 +19900123,2100,139,111,7 +19900123,2100,141,1,0 +19900123,2100,142,1,0 +19900123,2100,143,1,0 +19900123,2100,144,1,0 +19900123,2100,145,1,0 +19900123,2100,146,1,0 +19900123,2100,147,1,0 +19900123,2100,148,1,0 +19900123,2100,169,1,0 +19900123,2100,170,111,28 +19900123,2100,172,1,0 +19900123,2100,175,1,0 +19900123,2100,176,1,0 +19900123,2100,177,1,0 +19900123,2100,178,1,0 +19900123,2100,179,1,0 +19900123,2100,180,1,0 +19900123,2100,181,1,0 +19900123,2100,182,1,0 +19900123,2100,183,111,100 +19900123,2100,189,1,0 +19900123,2100,195,1,0 +19900123,2100,196,1,0 +19900123,2100,197,1,0 +19900123,2100,198,1,0 +19900123,2100,201,1,0 +19900123,2100,202,1,0 +19900123,2100,205,1,0 +19900123,2100,208,1,0 +19900123,2100,209,1,0 +19900123,2100,210,1,0 +19900123,2100,211,1,0 +19900123,2100,212,1,0 +19900123,2100,213,1,0 +19900123,2100,228,1,0 +19900123,2100,235,1,0 +19900123,2100,236,111,289 +19900123,2100,238,1,0 +19900123,2100,59,1,0 +19900123,2100,78,1,0 +19900123,2100,79,1,0 +19900123,2100,136,1,0 +19900123,2100,137,1,0 +19900123,2100,151,1,0 +19900123,2100,159,1,0 +19900123,2100,164,1,0 +19900123,2100,165,1,0 +19900123,2100,166,1,0 +19900123,2100,167,1,0 +19900123,2100,168,1,0 +19900123,2100,186,1,0 +19900123,2100,187,1,0 +19900123,2100,188,1,0 +19900123,2100,229,1,0 +19900123,2100,230,1,0 +19900123,2100,231,1,0 +19900123,2100,232,1,0 +19900123,2100,243,1,0 +19900123,2100,244,1,0 +19900123,2100,245,1,0 +19900123,2100,228246,1,0 +19900123,2100,228247,1,0 +19900124,0,133,100,1000 +19900124,0,133,100,975 +19900124,0,133,100,950 +19900124,0,133,100,925 +19900124,0,133,100,900 +19900124,0,133,100,875 +19900124,0,133,100,850 +19900124,0,133,100,825 +19900124,0,133,100,800 +19900124,0,133,100,775 +19900124,0,133,100,750 +19900124,0,133,100,740 +19900124,0,133,100,700 +19900124,0,133,100,650 +19900124,0,133,100,620 +19900124,0,133,100,600 +19900124,0,133,100,550 +19900124,0,133,100,500 +19900124,0,133,100,450 +19900124,0,133,100,400 +19900124,0,133,100,375 +19900124,0,133,100,350 +19900124,0,133,100,300 +19900124,0,133,100,250 +19900124,0,133,100,245 +19900124,0,133,100,225 +19900124,0,133,100,200 +19900124,0,133,100,175 +19900124,0,133,100,150 +19900124,0,133,100,125 +19900124,0,133,100,100 +19900124,0,133,100,70 +19900124,0,133,100,50 +19900124,0,133,100,30 +19900124,0,133,100,20 +19900124,0,133,100,10 +19900124,0,133,100,9 +19900124,0,133,100,7 +19900124,0,133,100,5 +19900124,0,133,100,3 +19900124,0,133,100,2 +19900124,0,133,100,1 +19900124,0,133,210,40 +19900124,0,3,117,2000 +19900124,0,133,109,1 +19900124,0,133,109,2 +19900124,0,133,109,3 +19900124,0,133,109,4 +19900124,0,133,109,5 +19900124,0,133,109,6 +19900124,0,133,109,7 +19900124,0,133,109,8 +19900124,0,133,109,9 +19900124,0,133,109,10 +19900124,0,246,109,1 +19900124,0,246,109,2 +19900124,0,246,109,3 +19900124,0,246,109,4 +19900124,0,246,109,5 +19900124,0,246,109,6 +19900124,0,246,109,7 +19900124,0,246,109,8 +19900124,0,246,109,9 +19900124,0,246,109,10 +19900124,0,247,109,1 +19900124,0,247,109,2 +19900124,0,247,109,3 +19900124,0,247,109,4 +19900124,0,247,109,5 +19900124,0,247,109,6 +19900124,0,247,109,7 +19900124,0,247,109,8 +19900124,0,247,109,9 +19900124,0,247,109,10 +19900124,0,248,109,1 +19900124,0,248,109,2 +19900124,0,248,109,3 +19900124,0,248,109,4 +19900124,0,248,109,5 +19900124,0,248,109,6 +19900124,0,248,109,7 +19900124,0,248,109,8 +19900124,0,248,109,9 +19900124,0,248,109,10 +19900124,0,8,1,0 +19900124,0,31,1,0 +19900124,0,32,1,0 +19900124,0,33,1,0 +19900124,0,34,1,0 +19900124,0,35,111,7 +19900124,0,36,111,28 +19900124,0,37,111,100 +19900124,0,38,111,289 +19900124,0,39,111,7 +19900124,0,40,111,28 +19900124,0,41,111,100 +19900124,0,42,111,289 +19900124,0,44,1,0 +19900124,0,45,1,0 +19900124,0,49,1,0 +19900124,0,50,1,0 +19900124,0,57,1,0 +19900124,0,58,1,0 +19900124,0,123,1,0 +19900124,0,139,111,7 +19900124,0,141,1,0 +19900124,0,142,1,0 +19900124,0,143,1,0 +19900124,0,144,1,0 +19900124,0,145,1,0 +19900124,0,146,1,0 +19900124,0,147,1,0 +19900124,0,148,1,0 +19900124,0,169,1,0 +19900124,0,170,111,28 +19900124,0,172,1,0 +19900124,0,175,1,0 +19900124,0,176,1,0 +19900124,0,177,1,0 +19900124,0,178,1,0 +19900124,0,179,1,0 +19900124,0,180,1,0 +19900124,0,181,1,0 +19900124,0,182,1,0 +19900124,0,183,111,100 +19900124,0,189,1,0 +19900124,0,195,1,0 +19900124,0,196,1,0 +19900124,0,197,1,0 +19900124,0,198,1,0 +19900124,0,201,1,0 +19900124,0,202,1,0 +19900124,0,205,1,0 +19900124,0,208,1,0 +19900124,0,209,1,0 +19900124,0,210,1,0 +19900124,0,211,1,0 +19900124,0,212,1,0 +19900124,0,213,1,0 +19900124,0,228,1,0 +19900124,0,235,1,0 +19900124,0,236,111,289 +19900124,0,238,1,0 +19900124,0,59,1,0 +19900124,0,78,1,0 +19900124,0,79,1,0 +19900124,0,136,1,0 +19900124,0,137,1,0 +19900124,0,151,1,0 +19900124,0,159,1,0 +19900124,0,164,1,0 +19900124,0,165,1,0 +19900124,0,166,1,0 +19900124,0,167,1,0 +19900124,0,168,1,0 +19900124,0,186,1,0 +19900124,0,187,1,0 +19900124,0,188,1,0 +19900124,0,229,1,0 +19900124,0,230,1,0 +19900124,0,231,1,0 +19900124,0,232,1,0 +19900124,0,243,1,0 +19900124,0,244,1,0 +19900124,0,245,1,0 +19900124,0,228246,1,0 +19900124,0,228247,1,0 +19900124,300,8,1,0 +19900124,300,31,1,0 +19900124,300,32,1,0 +19900124,300,33,1,0 +19900124,300,34,1,0 +19900124,300,35,111,7 +19900124,300,36,111,28 +19900124,300,37,111,100 +19900124,300,38,111,289 +19900124,300,39,111,7 +19900124,300,40,111,28 +19900124,300,41,111,100 +19900124,300,42,111,289 +19900124,300,44,1,0 +19900124,300,45,1,0 +19900124,300,49,1,0 +19900124,300,50,1,0 +19900124,300,57,1,0 +19900124,300,58,1,0 +19900124,300,123,1,0 +19900124,300,139,111,7 +19900124,300,141,1,0 +19900124,300,142,1,0 +19900124,300,143,1,0 +19900124,300,144,1,0 +19900124,300,145,1,0 +19900124,300,146,1,0 +19900124,300,147,1,0 +19900124,300,148,1,0 +19900124,300,169,1,0 +19900124,300,170,111,28 +19900124,300,172,1,0 +19900124,300,175,1,0 +19900124,300,176,1,0 +19900124,300,177,1,0 +19900124,300,178,1,0 +19900124,300,179,1,0 +19900124,300,180,1,0 +19900124,300,181,1,0 +19900124,300,182,1,0 +19900124,300,183,111,100 +19900124,300,189,1,0 +19900124,300,195,1,0 +19900124,300,196,1,0 +19900124,300,197,1,0 +19900124,300,198,1,0 +19900124,300,201,1,0 +19900124,300,202,1,0 +19900124,300,205,1,0 +19900124,300,208,1,0 +19900124,300,209,1,0 +19900124,300,210,1,0 +19900124,300,211,1,0 +19900124,300,212,1,0 +19900124,300,213,1,0 +19900124,300,228,1,0 +19900124,300,235,1,0 +19900124,300,236,111,289 +19900124,300,238,1,0 +19900124,300,59,1,0 +19900124,300,78,1,0 +19900124,300,79,1,0 +19900124,300,136,1,0 +19900124,300,137,1,0 +19900124,300,151,1,0 +19900124,300,159,1,0 +19900124,300,164,1,0 +19900124,300,165,1,0 +19900124,300,166,1,0 +19900124,300,167,1,0 +19900124,300,168,1,0 +19900124,300,186,1,0 +19900124,300,187,1,0 +19900124,300,188,1,0 +19900124,300,229,1,0 +19900124,300,230,1,0 +19900124,300,231,1,0 +19900124,300,232,1,0 +19900124,300,243,1,0 +19900124,300,244,1,0 +19900124,300,245,1,0 +19900124,300,228246,1,0 +19900124,300,228247,1,0 +19900124,600,133,100,1000 +19900124,600,133,100,975 +19900124,600,133,100,950 +19900124,600,133,100,925 +19900124,600,133,100,900 +19900124,600,133,100,875 +19900124,600,133,100,850 +19900124,600,133,100,825 +19900124,600,133,100,800 +19900124,600,133,100,775 +19900124,600,133,100,750 +19900124,600,133,100,740 +19900124,600,133,100,700 +19900124,600,133,100,650 +19900124,600,133,100,620 +19900124,600,133,100,600 +19900124,600,133,100,550 +19900124,600,133,100,500 +19900124,600,133,100,450 +19900124,600,133,100,400 +19900124,600,133,100,375 +19900124,600,133,100,350 +19900124,600,133,100,300 +19900124,600,133,100,250 +19900124,600,133,100,245 +19900124,600,133,100,225 +19900124,600,133,100,200 +19900124,600,133,100,175 +19900124,600,133,100,150 +19900124,600,133,100,125 +19900124,600,133,100,100 +19900124,600,133,100,70 +19900124,600,133,100,50 +19900124,600,133,100,30 +19900124,600,133,100,20 +19900124,600,133,100,10 +19900124,600,133,100,9 +19900124,600,133,100,7 +19900124,600,133,100,5 +19900124,600,133,100,3 +19900124,600,133,100,2 +19900124,600,133,100,1 +19900124,600,133,210,40 +19900124,600,3,117,2000 +19900124,600,133,109,1 +19900124,600,133,109,2 +19900124,600,133,109,3 +19900124,600,133,109,4 +19900124,600,133,109,5 +19900124,600,133,109,6 +19900124,600,133,109,7 +19900124,600,133,109,8 +19900124,600,133,109,9 +19900124,600,133,109,10 +19900124,600,246,109,1 +19900124,600,246,109,2 +19900124,600,246,109,3 +19900124,600,246,109,4 +19900124,600,246,109,5 +19900124,600,246,109,6 +19900124,600,246,109,7 +19900124,600,246,109,8 +19900124,600,246,109,9 +19900124,600,246,109,10 +19900124,600,247,109,1 +19900124,600,247,109,2 +19900124,600,247,109,3 +19900124,600,247,109,4 +19900124,600,247,109,5 +19900124,600,247,109,6 +19900124,600,247,109,7 +19900124,600,247,109,8 +19900124,600,247,109,9 +19900124,600,247,109,10 +19900124,600,248,109,1 +19900124,600,248,109,2 +19900124,600,248,109,3 +19900124,600,248,109,4 +19900124,600,248,109,5 +19900124,600,248,109,6 +19900124,600,248,109,7 +19900124,600,248,109,8 +19900124,600,248,109,9 +19900124,600,248,109,10 +19900124,600,8,1,0 +19900124,600,31,1,0 +19900124,600,32,1,0 +19900124,600,33,1,0 +19900124,600,34,1,0 +19900124,600,35,111,7 +19900124,600,36,111,28 +19900124,600,37,111,100 +19900124,600,38,111,289 +19900124,600,39,111,7 +19900124,600,40,111,28 +19900124,600,41,111,100 +19900124,600,42,111,289 +19900124,600,44,1,0 +19900124,600,45,1,0 +19900124,600,49,1,0 +19900124,600,50,1,0 +19900124,600,57,1,0 +19900124,600,58,1,0 +19900124,600,123,1,0 +19900124,600,139,111,7 +19900124,600,141,1,0 +19900124,600,142,1,0 +19900124,600,143,1,0 +19900124,600,144,1,0 +19900124,600,145,1,0 +19900124,600,146,1,0 +19900124,600,147,1,0 +19900124,600,148,1,0 +19900124,600,169,1,0 +19900124,600,170,111,28 +19900124,600,172,1,0 +19900124,600,175,1,0 +19900124,600,176,1,0 +19900124,600,177,1,0 +19900124,600,178,1,0 +19900124,600,179,1,0 +19900124,600,180,1,0 +19900124,600,181,1,0 +19900124,600,182,1,0 +19900124,600,183,111,100 +19900124,600,189,1,0 +19900124,600,195,1,0 +19900124,600,196,1,0 +19900124,600,197,1,0 +19900124,600,198,1,0 +19900124,600,201,1,0 +19900124,600,202,1,0 +19900124,600,205,1,0 +19900124,600,208,1,0 +19900124,600,209,1,0 +19900124,600,210,1,0 +19900124,600,211,1,0 +19900124,600,212,1,0 +19900124,600,213,1,0 +19900124,600,228,1,0 +19900124,600,235,1,0 +19900124,600,236,111,289 +19900124,600,238,1,0 +19900124,600,59,1,0 +19900124,600,78,1,0 +19900124,600,79,1,0 +19900124,600,136,1,0 +19900124,600,137,1,0 +19900124,600,151,1,0 +19900124,600,159,1,0 +19900124,600,164,1,0 +19900124,600,165,1,0 +19900124,600,166,1,0 +19900124,600,167,1,0 +19900124,600,168,1,0 +19900124,600,186,1,0 +19900124,600,187,1,0 +19900124,600,188,1,0 +19900124,600,229,1,0 +19900124,600,230,1,0 +19900124,600,231,1,0 +19900124,600,232,1,0 +19900124,600,243,1,0 +19900124,600,244,1,0 +19900124,600,245,1,0 +19900124,600,228246,1,0 +19900124,600,228247,1,0 +19900124,900,8,1,0 +19900124,900,31,1,0 +19900124,900,32,1,0 +19900124,900,33,1,0 +19900124,900,34,1,0 +19900124,900,35,111,7 +19900124,900,36,111,28 +19900124,900,37,111,100 +19900124,900,38,111,289 +19900124,900,39,111,7 +19900124,900,40,111,28 +19900124,900,41,111,100 +19900124,900,42,111,289 +19900124,900,44,1,0 +19900124,900,45,1,0 +19900124,900,49,1,0 +19900124,900,50,1,0 +19900124,900,57,1,0 +19900124,900,58,1,0 +19900124,900,123,1,0 +19900124,900,139,111,7 +19900124,900,141,1,0 +19900124,900,142,1,0 +19900124,900,143,1,0 +19900124,900,144,1,0 +19900124,900,145,1,0 +19900124,900,146,1,0 +19900124,900,147,1,0 +19900124,900,148,1,0 +19900124,900,169,1,0 +19900124,900,170,111,28 +19900124,900,172,1,0 +19900124,900,175,1,0 +19900124,900,176,1,0 +19900124,900,177,1,0 +19900124,900,178,1,0 +19900124,900,179,1,0 +19900124,900,180,1,0 +19900124,900,181,1,0 +19900124,900,182,1,0 +19900124,900,183,111,100 +19900124,900,189,1,0 +19900124,900,195,1,0 +19900124,900,196,1,0 +19900124,900,197,1,0 +19900124,900,198,1,0 +19900124,900,201,1,0 +19900124,900,202,1,0 +19900124,900,205,1,0 +19900124,900,208,1,0 +19900124,900,209,1,0 +19900124,900,210,1,0 +19900124,900,211,1,0 +19900124,900,212,1,0 +19900124,900,213,1,0 +19900124,900,228,1,0 +19900124,900,235,1,0 +19900124,900,236,111,289 +19900124,900,238,1,0 +19900124,900,59,1,0 +19900124,900,78,1,0 +19900124,900,79,1,0 +19900124,900,136,1,0 +19900124,900,137,1,0 +19900124,900,151,1,0 +19900124,900,159,1,0 +19900124,900,164,1,0 +19900124,900,165,1,0 +19900124,900,166,1,0 +19900124,900,167,1,0 +19900124,900,168,1,0 +19900124,900,186,1,0 +19900124,900,187,1,0 +19900124,900,188,1,0 +19900124,900,229,1,0 +19900124,900,230,1,0 +19900124,900,231,1,0 +19900124,900,232,1,0 +19900124,900,243,1,0 +19900124,900,244,1,0 +19900124,900,245,1,0 +19900124,900,228246,1,0 +19900124,900,228247,1,0 +19900124,1200,133,100,1000 +19900124,1200,133,100,975 +19900124,1200,133,100,950 +19900124,1200,133,100,925 +19900124,1200,133,100,900 +19900124,1200,133,100,875 +19900124,1200,133,100,850 +19900124,1200,133,100,825 +19900124,1200,133,100,800 +19900124,1200,133,100,775 +19900124,1200,133,100,750 +19900124,1200,133,100,740 +19900124,1200,133,100,700 +19900124,1200,133,100,650 +19900124,1200,133,100,620 +19900124,1200,133,100,600 +19900124,1200,133,100,550 +19900124,1200,133,100,500 +19900124,1200,133,100,450 +19900124,1200,133,100,400 +19900124,1200,133,100,375 +19900124,1200,133,100,350 +19900124,1200,133,100,300 +19900124,1200,133,100,250 +19900124,1200,133,100,245 +19900124,1200,133,100,225 +19900124,1200,133,100,200 +19900124,1200,133,100,175 +19900124,1200,133,100,150 +19900124,1200,133,100,125 +19900124,1200,133,100,100 +19900124,1200,133,100,70 +19900124,1200,133,100,50 +19900124,1200,133,100,30 +19900124,1200,133,100,20 +19900124,1200,133,100,10 +19900124,1200,133,100,9 +19900124,1200,133,100,7 +19900124,1200,133,100,5 +19900124,1200,133,100,3 +19900124,1200,133,100,2 +19900124,1200,133,100,1 +19900124,1200,133,210,40 +19900124,1200,3,117,2000 +19900124,1200,133,109,1 +19900124,1200,133,109,2 +19900124,1200,133,109,3 +19900124,1200,133,109,4 +19900124,1200,133,109,5 +19900124,1200,133,109,6 +19900124,1200,133,109,7 +19900124,1200,133,109,8 +19900124,1200,133,109,9 +19900124,1200,133,109,10 +19900124,1200,246,109,1 +19900124,1200,246,109,2 +19900124,1200,246,109,3 +19900124,1200,246,109,4 +19900124,1200,246,109,5 +19900124,1200,246,109,6 +19900124,1200,246,109,7 +19900124,1200,246,109,8 +19900124,1200,246,109,9 +19900124,1200,246,109,10 +19900124,1200,247,109,1 +19900124,1200,247,109,2 +19900124,1200,247,109,3 +19900124,1200,247,109,4 +19900124,1200,247,109,5 +19900124,1200,247,109,6 +19900124,1200,247,109,7 +19900124,1200,247,109,8 +19900124,1200,247,109,9 +19900124,1200,247,109,10 +19900124,1200,248,109,1 +19900124,1200,248,109,2 +19900124,1200,248,109,3 +19900124,1200,248,109,4 +19900124,1200,248,109,5 +19900124,1200,248,109,6 +19900124,1200,248,109,7 +19900124,1200,248,109,8 +19900124,1200,248,109,9 +19900124,1200,248,109,10 +19900124,1200,8,1,0 +19900124,1200,31,1,0 +19900124,1200,32,1,0 +19900124,1200,33,1,0 +19900124,1200,34,1,0 +19900124,1200,35,111,7 +19900124,1200,36,111,28 +19900124,1200,37,111,100 +19900124,1200,38,111,289 +19900124,1200,39,111,7 +19900124,1200,40,111,28 +19900124,1200,41,111,100 +19900124,1200,42,111,289 +19900124,1200,44,1,0 +19900124,1200,45,1,0 +19900124,1200,49,1,0 +19900124,1200,50,1,0 +19900124,1200,57,1,0 +19900124,1200,58,1,0 +19900124,1200,123,1,0 +19900124,1200,139,111,7 +19900124,1200,141,1,0 +19900124,1200,142,1,0 +19900124,1200,143,1,0 +19900124,1200,144,1,0 +19900124,1200,145,1,0 +19900124,1200,146,1,0 +19900124,1200,147,1,0 +19900124,1200,148,1,0 +19900124,1200,169,1,0 +19900124,1200,170,111,28 +19900124,1200,172,1,0 +19900124,1200,175,1,0 +19900124,1200,176,1,0 +19900124,1200,177,1,0 +19900124,1200,178,1,0 +19900124,1200,179,1,0 +19900124,1200,180,1,0 +19900124,1200,181,1,0 +19900124,1200,182,1,0 +19900124,1200,183,111,100 +19900124,1200,189,1,0 +19900124,1200,195,1,0 +19900124,1200,196,1,0 +19900124,1200,197,1,0 +19900124,1200,198,1,0 +19900124,1200,201,1,0 +19900124,1200,202,1,0 +19900124,1200,205,1,0 +19900124,1200,208,1,0 +19900124,1200,209,1,0 +19900124,1200,210,1,0 +19900124,1200,211,1,0 +19900124,1200,212,1,0 +19900124,1200,213,1,0 +19900124,1200,228,1,0 +19900124,1200,235,1,0 +19900124,1200,236,111,289 +19900124,1200,238,1,0 +19900124,1200,59,1,0 +19900124,1200,78,1,0 +19900124,1200,79,1,0 +19900124,1200,136,1,0 +19900124,1200,137,1,0 +19900124,1200,151,1,0 +19900124,1200,159,1,0 +19900124,1200,164,1,0 +19900124,1200,165,1,0 +19900124,1200,166,1,0 +19900124,1200,167,1,0 +19900124,1200,168,1,0 +19900124,1200,186,1,0 +19900124,1200,187,1,0 +19900124,1200,188,1,0 +19900124,1200,229,1,0 +19900124,1200,230,1,0 +19900124,1200,231,1,0 +19900124,1200,232,1,0 +19900124,1200,243,1,0 +19900124,1200,244,1,0 +19900124,1200,245,1,0 +19900124,1200,228246,1,0 +19900124,1200,228247,1,0 +19900124,1500,8,1,0 +19900124,1500,31,1,0 +19900124,1500,32,1,0 +19900124,1500,33,1,0 +19900124,1500,34,1,0 +19900124,1500,35,111,7 +19900124,1500,36,111,28 +19900124,1500,37,111,100 +19900124,1500,38,111,289 +19900124,1500,39,111,7 +19900124,1500,40,111,28 +19900124,1500,41,111,100 +19900124,1500,42,111,289 +19900124,1500,44,1,0 +19900124,1500,45,1,0 +19900124,1500,49,1,0 +19900124,1500,50,1,0 +19900124,1500,57,1,0 +19900124,1500,58,1,0 +19900124,1500,123,1,0 +19900124,1500,139,111,7 +19900124,1500,141,1,0 +19900124,1500,142,1,0 +19900124,1500,143,1,0 +19900124,1500,144,1,0 +19900124,1500,145,1,0 +19900124,1500,146,1,0 +19900124,1500,147,1,0 +19900124,1500,148,1,0 +19900124,1500,169,1,0 +19900124,1500,170,111,28 +19900124,1500,172,1,0 +19900124,1500,175,1,0 +19900124,1500,176,1,0 +19900124,1500,177,1,0 +19900124,1500,178,1,0 +19900124,1500,179,1,0 +19900124,1500,180,1,0 +19900124,1500,181,1,0 +19900124,1500,182,1,0 +19900124,1500,183,111,100 +19900124,1500,189,1,0 +19900124,1500,195,1,0 +19900124,1500,196,1,0 +19900124,1500,197,1,0 +19900124,1500,198,1,0 +19900124,1500,201,1,0 +19900124,1500,202,1,0 +19900124,1500,205,1,0 +19900124,1500,208,1,0 +19900124,1500,209,1,0 +19900124,1500,210,1,0 +19900124,1500,211,1,0 +19900124,1500,212,1,0 +19900124,1500,213,1,0 +19900124,1500,228,1,0 +19900124,1500,235,1,0 +19900124,1500,236,111,289 +19900124,1500,238,1,0 +19900124,1500,59,1,0 +19900124,1500,78,1,0 +19900124,1500,79,1,0 +19900124,1500,136,1,0 +19900124,1500,137,1,0 +19900124,1500,151,1,0 +19900124,1500,159,1,0 +19900124,1500,164,1,0 +19900124,1500,165,1,0 +19900124,1500,166,1,0 +19900124,1500,167,1,0 +19900124,1500,168,1,0 +19900124,1500,186,1,0 +19900124,1500,187,1,0 +19900124,1500,188,1,0 +19900124,1500,229,1,0 +19900124,1500,230,1,0 +19900124,1500,231,1,0 +19900124,1500,232,1,0 +19900124,1500,243,1,0 +19900124,1500,244,1,0 +19900124,1500,245,1,0 +19900124,1500,228246,1,0 +19900124,1500,228247,1,0 +19900124,1800,133,100,1000 +19900124,1800,133,100,975 +19900124,1800,133,100,950 +19900124,1800,133,100,925 +19900124,1800,133,100,900 +19900124,1800,133,100,875 +19900124,1800,133,100,850 +19900124,1800,133,100,825 +19900124,1800,133,100,800 +19900124,1800,133,100,775 +19900124,1800,133,100,750 +19900124,1800,133,100,740 +19900124,1800,133,100,700 +19900124,1800,133,100,650 +19900124,1800,133,100,620 +19900124,1800,133,100,600 +19900124,1800,133,100,550 +19900124,1800,133,100,500 +19900124,1800,133,100,450 +19900124,1800,133,100,400 +19900124,1800,133,100,375 +19900124,1800,133,100,350 +19900124,1800,133,100,300 +19900124,1800,133,100,250 +19900124,1800,133,100,245 +19900124,1800,133,100,225 +19900124,1800,133,100,200 +19900124,1800,133,100,175 +19900124,1800,133,100,150 +19900124,1800,133,100,125 +19900124,1800,133,100,100 +19900124,1800,133,100,70 +19900124,1800,133,100,50 +19900124,1800,133,100,30 +19900124,1800,133,100,20 +19900124,1800,133,100,10 +19900124,1800,133,100,9 +19900124,1800,133,100,7 +19900124,1800,133,100,5 +19900124,1800,133,100,3 +19900124,1800,133,100,2 +19900124,1800,133,100,1 +19900124,1800,133,210,40 +19900124,1800,3,117,2000 +19900124,1800,133,109,1 +19900124,1800,133,109,2 +19900124,1800,133,109,3 +19900124,1800,133,109,4 +19900124,1800,133,109,5 +19900124,1800,133,109,6 +19900124,1800,133,109,7 +19900124,1800,133,109,8 +19900124,1800,133,109,9 +19900124,1800,133,109,10 +19900124,1800,246,109,1 +19900124,1800,246,109,2 +19900124,1800,246,109,3 +19900124,1800,246,109,4 +19900124,1800,246,109,5 +19900124,1800,246,109,6 +19900124,1800,246,109,7 +19900124,1800,246,109,8 +19900124,1800,246,109,9 +19900124,1800,246,109,10 +19900124,1800,247,109,1 +19900124,1800,247,109,2 +19900124,1800,247,109,3 +19900124,1800,247,109,4 +19900124,1800,247,109,5 +19900124,1800,247,109,6 +19900124,1800,247,109,7 +19900124,1800,247,109,8 +19900124,1800,247,109,9 +19900124,1800,247,109,10 +19900124,1800,248,109,1 +19900124,1800,248,109,2 +19900124,1800,248,109,3 +19900124,1800,248,109,4 +19900124,1800,248,109,5 +19900124,1800,248,109,6 +19900124,1800,248,109,7 +19900124,1800,248,109,8 +19900124,1800,248,109,9 +19900124,1800,248,109,10 +19900124,1800,8,1,0 +19900124,1800,31,1,0 +19900124,1800,32,1,0 +19900124,1800,33,1,0 +19900124,1800,34,1,0 +19900124,1800,35,111,7 +19900124,1800,36,111,28 +19900124,1800,37,111,100 +19900124,1800,38,111,289 +19900124,1800,39,111,7 +19900124,1800,40,111,28 +19900124,1800,41,111,100 +19900124,1800,42,111,289 +19900124,1800,44,1,0 +19900124,1800,45,1,0 +19900124,1800,49,1,0 +19900124,1800,50,1,0 +19900124,1800,57,1,0 +19900124,1800,58,1,0 +19900124,1800,123,1,0 +19900124,1800,139,111,7 +19900124,1800,141,1,0 +19900124,1800,142,1,0 +19900124,1800,143,1,0 +19900124,1800,144,1,0 +19900124,1800,145,1,0 +19900124,1800,146,1,0 +19900124,1800,147,1,0 +19900124,1800,148,1,0 +19900124,1800,169,1,0 +19900124,1800,170,111,28 +19900124,1800,172,1,0 +19900124,1800,175,1,0 +19900124,1800,176,1,0 +19900124,1800,177,1,0 +19900124,1800,178,1,0 +19900124,1800,179,1,0 +19900124,1800,180,1,0 +19900124,1800,181,1,0 +19900124,1800,182,1,0 +19900124,1800,183,111,100 +19900124,1800,189,1,0 +19900124,1800,195,1,0 +19900124,1800,196,1,0 +19900124,1800,197,1,0 +19900124,1800,198,1,0 +19900124,1800,201,1,0 +19900124,1800,202,1,0 +19900124,1800,205,1,0 +19900124,1800,208,1,0 +19900124,1800,209,1,0 +19900124,1800,210,1,0 +19900124,1800,211,1,0 +19900124,1800,212,1,0 +19900124,1800,213,1,0 +19900124,1800,228,1,0 +19900124,1800,235,1,0 +19900124,1800,236,111,289 +19900124,1800,238,1,0 +19900124,1800,59,1,0 +19900124,1800,78,1,0 +19900124,1800,79,1,0 +19900124,1800,136,1,0 +19900124,1800,137,1,0 +19900124,1800,151,1,0 +19900124,1800,159,1,0 +19900124,1800,164,1,0 +19900124,1800,165,1,0 +19900124,1800,166,1,0 +19900124,1800,167,1,0 +19900124,1800,168,1,0 +19900124,1800,186,1,0 +19900124,1800,187,1,0 +19900124,1800,188,1,0 +19900124,1800,229,1,0 +19900124,1800,230,1,0 +19900124,1800,231,1,0 +19900124,1800,232,1,0 +19900124,1800,243,1,0 +19900124,1800,244,1,0 +19900124,1800,245,1,0 +19900124,1800,228246,1,0 +19900124,1800,228247,1,0 +19900124,2100,8,1,0 +19900124,2100,31,1,0 +19900124,2100,32,1,0 +19900124,2100,33,1,0 +19900124,2100,34,1,0 +19900124,2100,35,111,7 +19900124,2100,36,111,28 +19900124,2100,37,111,100 +19900124,2100,38,111,289 +19900124,2100,39,111,7 +19900124,2100,40,111,28 +19900124,2100,41,111,100 +19900124,2100,42,111,289 +19900124,2100,44,1,0 +19900124,2100,45,1,0 +19900124,2100,49,1,0 +19900124,2100,50,1,0 +19900124,2100,57,1,0 +19900124,2100,58,1,0 +19900124,2100,123,1,0 +19900124,2100,139,111,7 +19900124,2100,141,1,0 +19900124,2100,142,1,0 +19900124,2100,143,1,0 +19900124,2100,144,1,0 +19900124,2100,145,1,0 +19900124,2100,146,1,0 +19900124,2100,147,1,0 +19900124,2100,148,1,0 +19900124,2100,169,1,0 +19900124,2100,170,111,28 +19900124,2100,172,1,0 +19900124,2100,175,1,0 +19900124,2100,176,1,0 +19900124,2100,177,1,0 +19900124,2100,178,1,0 +19900124,2100,179,1,0 +19900124,2100,180,1,0 +19900124,2100,181,1,0 +19900124,2100,182,1,0 +19900124,2100,183,111,100 +19900124,2100,189,1,0 +19900124,2100,195,1,0 +19900124,2100,196,1,0 +19900124,2100,197,1,0 +19900124,2100,198,1,0 +19900124,2100,201,1,0 +19900124,2100,202,1,0 +19900124,2100,205,1,0 +19900124,2100,208,1,0 +19900124,2100,209,1,0 +19900124,2100,210,1,0 +19900124,2100,211,1,0 +19900124,2100,212,1,0 +19900124,2100,213,1,0 +19900124,2100,228,1,0 +19900124,2100,235,1,0 +19900124,2100,236,111,289 +19900124,2100,238,1,0 +19900124,2100,59,1,0 +19900124,2100,78,1,0 +19900124,2100,79,1,0 +19900124,2100,136,1,0 +19900124,2100,137,1,0 +19900124,2100,151,1,0 +19900124,2100,159,1,0 +19900124,2100,164,1,0 +19900124,2100,165,1,0 +19900124,2100,166,1,0 +19900124,2100,167,1,0 +19900124,2100,168,1,0 +19900124,2100,186,1,0 +19900124,2100,187,1,0 +19900124,2100,188,1,0 +19900124,2100,229,1,0 +19900124,2100,230,1,0 +19900124,2100,231,1,0 +19900124,2100,232,1,0 +19900124,2100,243,1,0 +19900124,2100,244,1,0 +19900124,2100,245,1,0 +19900124,2100,228246,1,0 +19900124,2100,228247,1,0 +19900125,0,133,100,1000 +19900125,0,133,100,975 +19900125,0,133,100,950 +19900125,0,133,100,925 +19900125,0,133,100,900 +19900125,0,133,100,875 +19900125,0,133,100,850 +19900125,0,133,100,825 +19900125,0,133,100,800 +19900125,0,133,100,775 +19900125,0,133,100,750 +19900125,0,133,100,740 +19900125,0,133,100,700 +19900125,0,133,100,650 +19900125,0,133,100,620 +19900125,0,133,100,600 +19900125,0,133,100,550 +19900125,0,133,100,500 +19900125,0,133,100,450 +19900125,0,133,100,400 +19900125,0,133,100,375 +19900125,0,133,100,350 +19900125,0,133,100,300 +19900125,0,133,100,250 +19900125,0,133,100,245 +19900125,0,133,100,225 +19900125,0,133,100,200 +19900125,0,133,100,175 +19900125,0,133,100,150 +19900125,0,133,100,125 +19900125,0,133,100,100 +19900125,0,133,100,70 +19900125,0,133,100,50 +19900125,0,133,100,30 +19900125,0,133,100,20 +19900125,0,133,100,10 +19900125,0,133,100,9 +19900125,0,133,100,7 +19900125,0,133,100,5 +19900125,0,133,100,3 +19900125,0,133,100,2 +19900125,0,133,100,1 +19900125,0,133,210,40 +19900125,0,3,117,2000 +19900125,0,133,109,1 +19900125,0,133,109,2 +19900125,0,133,109,3 +19900125,0,133,109,4 +19900125,0,133,109,5 +19900125,0,133,109,6 +19900125,0,133,109,7 +19900125,0,133,109,8 +19900125,0,133,109,9 +19900125,0,133,109,10 +19900125,0,246,109,1 +19900125,0,246,109,2 +19900125,0,246,109,3 +19900125,0,246,109,4 +19900125,0,246,109,5 +19900125,0,246,109,6 +19900125,0,246,109,7 +19900125,0,246,109,8 +19900125,0,246,109,9 +19900125,0,246,109,10 +19900125,0,247,109,1 +19900125,0,247,109,2 +19900125,0,247,109,3 +19900125,0,247,109,4 +19900125,0,247,109,5 +19900125,0,247,109,6 +19900125,0,247,109,7 +19900125,0,247,109,8 +19900125,0,247,109,9 +19900125,0,247,109,10 +19900125,0,248,109,1 +19900125,0,248,109,2 +19900125,0,248,109,3 +19900125,0,248,109,4 +19900125,0,248,109,5 +19900125,0,248,109,6 +19900125,0,248,109,7 +19900125,0,248,109,8 +19900125,0,248,109,9 +19900125,0,248,109,10 +19900125,0,8,1,0 +19900125,0,31,1,0 +19900125,0,32,1,0 +19900125,0,33,1,0 +19900125,0,34,1,0 +19900125,0,35,111,7 +19900125,0,36,111,28 +19900125,0,37,111,100 +19900125,0,38,111,289 +19900125,0,39,111,7 +19900125,0,40,111,28 +19900125,0,41,111,100 +19900125,0,42,111,289 +19900125,0,44,1,0 +19900125,0,45,1,0 +19900125,0,49,1,0 +19900125,0,50,1,0 +19900125,0,57,1,0 +19900125,0,58,1,0 +19900125,0,123,1,0 +19900125,0,139,111,7 +19900125,0,141,1,0 +19900125,0,142,1,0 +19900125,0,143,1,0 +19900125,0,144,1,0 +19900125,0,145,1,0 +19900125,0,146,1,0 +19900125,0,147,1,0 +19900125,0,148,1,0 +19900125,0,169,1,0 +19900125,0,170,111,28 +19900125,0,172,1,0 +19900125,0,175,1,0 +19900125,0,176,1,0 +19900125,0,177,1,0 +19900125,0,178,1,0 +19900125,0,179,1,0 +19900125,0,180,1,0 +19900125,0,181,1,0 +19900125,0,182,1,0 +19900125,0,183,111,100 +19900125,0,189,1,0 +19900125,0,195,1,0 +19900125,0,196,1,0 +19900125,0,197,1,0 +19900125,0,198,1,0 +19900125,0,201,1,0 +19900125,0,202,1,0 +19900125,0,205,1,0 +19900125,0,208,1,0 +19900125,0,209,1,0 +19900125,0,210,1,0 +19900125,0,211,1,0 +19900125,0,212,1,0 +19900125,0,213,1,0 +19900125,0,228,1,0 +19900125,0,235,1,0 +19900125,0,236,111,289 +19900125,0,238,1,0 +19900125,0,59,1,0 +19900125,0,78,1,0 +19900125,0,79,1,0 +19900125,0,136,1,0 +19900125,0,137,1,0 +19900125,0,151,1,0 +19900125,0,159,1,0 +19900125,0,164,1,0 +19900125,0,165,1,0 +19900125,0,166,1,0 +19900125,0,167,1,0 +19900125,0,168,1,0 +19900125,0,186,1,0 +19900125,0,187,1,0 +19900125,0,188,1,0 +19900125,0,229,1,0 +19900125,0,230,1,0 +19900125,0,231,1,0 +19900125,0,232,1,0 +19900125,0,243,1,0 +19900125,0,244,1,0 +19900125,0,245,1,0 +19900125,0,228246,1,0 +19900125,0,228247,1,0 +19900125,300,8,1,0 +19900125,300,31,1,0 +19900125,300,32,1,0 +19900125,300,33,1,0 +19900125,300,34,1,0 +19900125,300,35,111,7 +19900125,300,36,111,28 +19900125,300,37,111,100 +19900125,300,38,111,289 +19900125,300,39,111,7 +19900125,300,40,111,28 +19900125,300,41,111,100 +19900125,300,42,111,289 +19900125,300,44,1,0 +19900125,300,45,1,0 +19900125,300,49,1,0 +19900125,300,50,1,0 +19900125,300,57,1,0 +19900125,300,58,1,0 +19900125,300,123,1,0 +19900125,300,139,111,7 +19900125,300,141,1,0 +19900125,300,142,1,0 +19900125,300,143,1,0 +19900125,300,144,1,0 +19900125,300,145,1,0 +19900125,300,146,1,0 +19900125,300,147,1,0 +19900125,300,148,1,0 +19900125,300,169,1,0 +19900125,300,170,111,28 +19900125,300,172,1,0 +19900125,300,175,1,0 +19900125,300,176,1,0 +19900125,300,177,1,0 +19900125,300,178,1,0 +19900125,300,179,1,0 +19900125,300,180,1,0 +19900125,300,181,1,0 +19900125,300,182,1,0 +19900125,300,183,111,100 +19900125,300,189,1,0 +19900125,300,195,1,0 +19900125,300,196,1,0 +19900125,300,197,1,0 +19900125,300,198,1,0 +19900125,300,201,1,0 +19900125,300,202,1,0 +19900125,300,205,1,0 +19900125,300,208,1,0 +19900125,300,209,1,0 +19900125,300,210,1,0 +19900125,300,211,1,0 +19900125,300,212,1,0 +19900125,300,213,1,0 +19900125,300,228,1,0 +19900125,300,235,1,0 +19900125,300,236,111,289 +19900125,300,238,1,0 +19900125,300,59,1,0 +19900125,300,78,1,0 +19900125,300,79,1,0 +19900125,300,136,1,0 +19900125,300,137,1,0 +19900125,300,151,1,0 +19900125,300,159,1,0 +19900125,300,164,1,0 +19900125,300,165,1,0 +19900125,300,166,1,0 +19900125,300,167,1,0 +19900125,300,168,1,0 +19900125,300,186,1,0 +19900125,300,187,1,0 +19900125,300,188,1,0 +19900125,300,229,1,0 +19900125,300,230,1,0 +19900125,300,231,1,0 +19900125,300,232,1,0 +19900125,300,243,1,0 +19900125,300,244,1,0 +19900125,300,245,1,0 +19900125,300,228246,1,0 +19900125,300,228247,1,0 +19900125,600,133,100,1000 +19900125,600,133,100,975 +19900125,600,133,100,950 +19900125,600,133,100,925 +19900125,600,133,100,900 +19900125,600,133,100,875 +19900125,600,133,100,850 +19900125,600,133,100,825 +19900125,600,133,100,800 +19900125,600,133,100,775 +19900125,600,133,100,750 +19900125,600,133,100,740 +19900125,600,133,100,700 +19900125,600,133,100,650 +19900125,600,133,100,620 +19900125,600,133,100,600 +19900125,600,133,100,550 +19900125,600,133,100,500 +19900125,600,133,100,450 +19900125,600,133,100,400 +19900125,600,133,100,375 +19900125,600,133,100,350 +19900125,600,133,100,300 +19900125,600,133,100,250 +19900125,600,133,100,245 +19900125,600,133,100,225 +19900125,600,133,100,200 +19900125,600,133,100,175 +19900125,600,133,100,150 +19900125,600,133,100,125 +19900125,600,133,100,100 +19900125,600,133,100,70 +19900125,600,133,100,50 +19900125,600,133,100,30 +19900125,600,133,100,20 +19900125,600,133,100,10 +19900125,600,133,100,9 +19900125,600,133,100,7 +19900125,600,133,100,5 +19900125,600,133,100,3 +19900125,600,133,100,2 +19900125,600,133,100,1 +19900125,600,133,210,40 +19900125,600,3,117,2000 +19900125,600,133,109,1 +19900125,600,133,109,2 +19900125,600,133,109,3 +19900125,600,133,109,4 +19900125,600,133,109,5 +19900125,600,133,109,6 +19900125,600,133,109,7 +19900125,600,133,109,8 +19900125,600,133,109,9 +19900125,600,133,109,10 +19900125,600,246,109,1 +19900125,600,246,109,2 +19900125,600,246,109,3 +19900125,600,246,109,4 +19900125,600,246,109,5 +19900125,600,246,109,6 +19900125,600,246,109,7 +19900125,600,246,109,8 +19900125,600,246,109,9 +19900125,600,246,109,10 +19900125,600,247,109,1 +19900125,600,247,109,2 +19900125,600,247,109,3 +19900125,600,247,109,4 +19900125,600,247,109,5 +19900125,600,247,109,6 +19900125,600,247,109,7 +19900125,600,247,109,8 +19900125,600,247,109,9 +19900125,600,247,109,10 +19900125,600,248,109,1 +19900125,600,248,109,2 +19900125,600,248,109,3 +19900125,600,248,109,4 +19900125,600,248,109,5 +19900125,600,248,109,6 +19900125,600,248,109,7 +19900125,600,248,109,8 +19900125,600,248,109,9 +19900125,600,248,109,10 +19900125,600,8,1,0 +19900125,600,31,1,0 +19900125,600,32,1,0 +19900125,600,33,1,0 +19900125,600,34,1,0 +19900125,600,35,111,7 +19900125,600,36,111,28 +19900125,600,37,111,100 +19900125,600,38,111,289 +19900125,600,39,111,7 +19900125,600,40,111,28 +19900125,600,41,111,100 +19900125,600,42,111,289 +19900125,600,44,1,0 +19900125,600,45,1,0 +19900125,600,49,1,0 +19900125,600,50,1,0 +19900125,600,57,1,0 +19900125,600,58,1,0 +19900125,600,123,1,0 +19900125,600,139,111,7 +19900125,600,141,1,0 +19900125,600,142,1,0 +19900125,600,143,1,0 +19900125,600,144,1,0 +19900125,600,145,1,0 +19900125,600,146,1,0 +19900125,600,147,1,0 +19900125,600,148,1,0 +19900125,600,169,1,0 +19900125,600,170,111,28 +19900125,600,172,1,0 +19900125,600,175,1,0 +19900125,600,176,1,0 +19900125,600,177,1,0 +19900125,600,178,1,0 +19900125,600,179,1,0 +19900125,600,180,1,0 +19900125,600,181,1,0 +19900125,600,182,1,0 +19900125,600,183,111,100 +19900125,600,189,1,0 +19900125,600,195,1,0 +19900125,600,196,1,0 +19900125,600,197,1,0 +19900125,600,198,1,0 +19900125,600,201,1,0 +19900125,600,202,1,0 +19900125,600,205,1,0 +19900125,600,208,1,0 +19900125,600,209,1,0 +19900125,600,210,1,0 +19900125,600,211,1,0 +19900125,600,212,1,0 +19900125,600,213,1,0 +19900125,600,228,1,0 +19900125,600,235,1,0 +19900125,600,236,111,289 +19900125,600,238,1,0 +19900125,600,59,1,0 +19900125,600,78,1,0 +19900125,600,79,1,0 +19900125,600,136,1,0 +19900125,600,137,1,0 +19900125,600,151,1,0 +19900125,600,159,1,0 +19900125,600,164,1,0 +19900125,600,165,1,0 +19900125,600,166,1,0 +19900125,600,167,1,0 +19900125,600,168,1,0 +19900125,600,186,1,0 +19900125,600,187,1,0 +19900125,600,188,1,0 +19900125,600,229,1,0 +19900125,600,230,1,0 +19900125,600,231,1,0 +19900125,600,232,1,0 +19900125,600,243,1,0 +19900125,600,244,1,0 +19900125,600,245,1,0 +19900125,600,228246,1,0 +19900125,600,228247,1,0 +19900125,900,8,1,0 +19900125,900,31,1,0 +19900125,900,32,1,0 +19900125,900,33,1,0 +19900125,900,34,1,0 +19900125,900,35,111,7 +19900125,900,36,111,28 +19900125,900,37,111,100 +19900125,900,38,111,289 +19900125,900,39,111,7 +19900125,900,40,111,28 +19900125,900,41,111,100 +19900125,900,42,111,289 +19900125,900,44,1,0 +19900125,900,45,1,0 +19900125,900,49,1,0 +19900125,900,50,1,0 +19900125,900,57,1,0 +19900125,900,58,1,0 +19900125,900,123,1,0 +19900125,900,139,111,7 +19900125,900,141,1,0 +19900125,900,142,1,0 +19900125,900,143,1,0 +19900125,900,144,1,0 +19900125,900,145,1,0 +19900125,900,146,1,0 +19900125,900,147,1,0 +19900125,900,148,1,0 +19900125,900,169,1,0 +19900125,900,170,111,28 +19900125,900,172,1,0 +19900125,900,175,1,0 +19900125,900,176,1,0 +19900125,900,177,1,0 +19900125,900,178,1,0 +19900125,900,179,1,0 +19900125,900,180,1,0 +19900125,900,181,1,0 +19900125,900,182,1,0 +19900125,900,183,111,100 +19900125,900,189,1,0 +19900125,900,195,1,0 +19900125,900,196,1,0 +19900125,900,197,1,0 +19900125,900,198,1,0 +19900125,900,201,1,0 +19900125,900,202,1,0 +19900125,900,205,1,0 +19900125,900,208,1,0 +19900125,900,209,1,0 +19900125,900,210,1,0 +19900125,900,211,1,0 +19900125,900,212,1,0 +19900125,900,213,1,0 +19900125,900,228,1,0 +19900125,900,235,1,0 +19900125,900,236,111,289 +19900125,900,238,1,0 +19900125,900,59,1,0 +19900125,900,78,1,0 +19900125,900,79,1,0 +19900125,900,136,1,0 +19900125,900,137,1,0 +19900125,900,151,1,0 +19900125,900,159,1,0 +19900125,900,164,1,0 +19900125,900,165,1,0 +19900125,900,166,1,0 +19900125,900,167,1,0 +19900125,900,168,1,0 +19900125,900,186,1,0 +19900125,900,187,1,0 +19900125,900,188,1,0 +19900125,900,229,1,0 +19900125,900,230,1,0 +19900125,900,231,1,0 +19900125,900,232,1,0 +19900125,900,243,1,0 +19900125,900,244,1,0 +19900125,900,245,1,0 +19900125,900,228246,1,0 +19900125,900,228247,1,0 +19900125,1200,133,100,1000 +19900125,1200,133,100,975 +19900125,1200,133,100,950 +19900125,1200,133,100,925 +19900125,1200,133,100,900 +19900125,1200,133,100,875 +19900125,1200,133,100,850 +19900125,1200,133,100,825 +19900125,1200,133,100,800 +19900125,1200,133,100,775 +19900125,1200,133,100,750 +19900125,1200,133,100,740 +19900125,1200,133,100,700 +19900125,1200,133,100,650 +19900125,1200,133,100,620 +19900125,1200,133,100,600 +19900125,1200,133,100,550 +19900125,1200,133,100,500 +19900125,1200,133,100,450 +19900125,1200,133,100,400 +19900125,1200,133,100,375 +19900125,1200,133,100,350 +19900125,1200,133,100,300 +19900125,1200,133,100,250 +19900125,1200,133,100,245 +19900125,1200,133,100,225 +19900125,1200,133,100,200 +19900125,1200,133,100,175 +19900125,1200,133,100,150 +19900125,1200,133,100,125 +19900125,1200,133,100,100 +19900125,1200,133,100,70 +19900125,1200,133,100,50 +19900125,1200,133,100,30 +19900125,1200,133,100,20 +19900125,1200,133,100,10 +19900125,1200,133,100,9 +19900125,1200,133,100,7 +19900125,1200,133,100,5 +19900125,1200,133,100,3 +19900125,1200,133,100,2 +19900125,1200,133,100,1 +19900125,1200,133,210,40 +19900125,1200,3,117,2000 +19900125,1200,133,109,1 +19900125,1200,133,109,2 +19900125,1200,133,109,3 +19900125,1200,133,109,4 +19900125,1200,133,109,5 +19900125,1200,133,109,6 +19900125,1200,133,109,7 +19900125,1200,133,109,8 +19900125,1200,133,109,9 +19900125,1200,133,109,10 +19900125,1200,246,109,1 +19900125,1200,246,109,2 +19900125,1200,246,109,3 +19900125,1200,246,109,4 +19900125,1200,246,109,5 +19900125,1200,246,109,6 +19900125,1200,246,109,7 +19900125,1200,246,109,8 +19900125,1200,246,109,9 +19900125,1200,246,109,10 +19900125,1200,247,109,1 +19900125,1200,247,109,2 +19900125,1200,247,109,3 +19900125,1200,247,109,4 +19900125,1200,247,109,5 +19900125,1200,247,109,6 +19900125,1200,247,109,7 +19900125,1200,247,109,8 +19900125,1200,247,109,9 +19900125,1200,247,109,10 +19900125,1200,248,109,1 +19900125,1200,248,109,2 +19900125,1200,248,109,3 +19900125,1200,248,109,4 +19900125,1200,248,109,5 +19900125,1200,248,109,6 +19900125,1200,248,109,7 +19900125,1200,248,109,8 +19900125,1200,248,109,9 +19900125,1200,248,109,10 +19900125,1200,8,1,0 +19900125,1200,31,1,0 +19900125,1200,32,1,0 +19900125,1200,33,1,0 +19900125,1200,34,1,0 +19900125,1200,35,111,7 +19900125,1200,36,111,28 +19900125,1200,37,111,100 +19900125,1200,38,111,289 +19900125,1200,39,111,7 +19900125,1200,40,111,28 +19900125,1200,41,111,100 +19900125,1200,42,111,289 +19900125,1200,44,1,0 +19900125,1200,45,1,0 +19900125,1200,49,1,0 +19900125,1200,50,1,0 +19900125,1200,57,1,0 +19900125,1200,58,1,0 +19900125,1200,123,1,0 +19900125,1200,139,111,7 +19900125,1200,141,1,0 +19900125,1200,142,1,0 +19900125,1200,143,1,0 +19900125,1200,144,1,0 +19900125,1200,145,1,0 +19900125,1200,146,1,0 +19900125,1200,147,1,0 +19900125,1200,148,1,0 +19900125,1200,169,1,0 +19900125,1200,170,111,28 +19900125,1200,172,1,0 +19900125,1200,175,1,0 +19900125,1200,176,1,0 +19900125,1200,177,1,0 +19900125,1200,178,1,0 +19900125,1200,179,1,0 +19900125,1200,180,1,0 +19900125,1200,181,1,0 +19900125,1200,182,1,0 +19900125,1200,183,111,100 +19900125,1200,189,1,0 +19900125,1200,195,1,0 +19900125,1200,196,1,0 +19900125,1200,197,1,0 +19900125,1200,198,1,0 +19900125,1200,201,1,0 +19900125,1200,202,1,0 +19900125,1200,205,1,0 +19900125,1200,208,1,0 +19900125,1200,209,1,0 +19900125,1200,210,1,0 +19900125,1200,211,1,0 +19900125,1200,212,1,0 +19900125,1200,213,1,0 +19900125,1200,228,1,0 +19900125,1200,235,1,0 +19900125,1200,236,111,289 +19900125,1200,238,1,0 +19900125,1200,59,1,0 +19900125,1200,78,1,0 +19900125,1200,79,1,0 +19900125,1200,136,1,0 +19900125,1200,137,1,0 +19900125,1200,151,1,0 +19900125,1200,159,1,0 +19900125,1200,164,1,0 +19900125,1200,165,1,0 +19900125,1200,166,1,0 +19900125,1200,167,1,0 +19900125,1200,168,1,0 +19900125,1200,186,1,0 +19900125,1200,187,1,0 +19900125,1200,188,1,0 +19900125,1200,229,1,0 +19900125,1200,230,1,0 +19900125,1200,231,1,0 +19900125,1200,232,1,0 +19900125,1200,243,1,0 +19900125,1200,244,1,0 +19900125,1200,245,1,0 +19900125,1200,228246,1,0 +19900125,1200,228247,1,0 +19900125,1500,8,1,0 +19900125,1500,31,1,0 +19900125,1500,32,1,0 +19900125,1500,33,1,0 +19900125,1500,34,1,0 +19900125,1500,35,111,7 +19900125,1500,36,111,28 +19900125,1500,37,111,100 +19900125,1500,38,111,289 +19900125,1500,39,111,7 +19900125,1500,40,111,28 +19900125,1500,41,111,100 +19900125,1500,42,111,289 +19900125,1500,44,1,0 +19900125,1500,45,1,0 +19900125,1500,49,1,0 +19900125,1500,50,1,0 +19900125,1500,57,1,0 +19900125,1500,58,1,0 +19900125,1500,123,1,0 +19900125,1500,139,111,7 +19900125,1500,141,1,0 +19900125,1500,142,1,0 +19900125,1500,143,1,0 +19900125,1500,144,1,0 +19900125,1500,145,1,0 +19900125,1500,146,1,0 +19900125,1500,147,1,0 +19900125,1500,148,1,0 +19900125,1500,169,1,0 +19900125,1500,170,111,28 +19900125,1500,172,1,0 +19900125,1500,175,1,0 +19900125,1500,176,1,0 +19900125,1500,177,1,0 +19900125,1500,178,1,0 +19900125,1500,179,1,0 +19900125,1500,180,1,0 +19900125,1500,181,1,0 +19900125,1500,182,1,0 +19900125,1500,183,111,100 +19900125,1500,189,1,0 +19900125,1500,195,1,0 +19900125,1500,196,1,0 +19900125,1500,197,1,0 +19900125,1500,198,1,0 +19900125,1500,201,1,0 +19900125,1500,202,1,0 +19900125,1500,205,1,0 +19900125,1500,208,1,0 +19900125,1500,209,1,0 +19900125,1500,210,1,0 +19900125,1500,211,1,0 +19900125,1500,212,1,0 +19900125,1500,213,1,0 +19900125,1500,228,1,0 +19900125,1500,235,1,0 +19900125,1500,236,111,289 +19900125,1500,238,1,0 +19900125,1500,59,1,0 +19900125,1500,78,1,0 +19900125,1500,79,1,0 +19900125,1500,136,1,0 +19900125,1500,137,1,0 +19900125,1500,151,1,0 +19900125,1500,159,1,0 +19900125,1500,164,1,0 +19900125,1500,165,1,0 +19900125,1500,166,1,0 +19900125,1500,167,1,0 +19900125,1500,168,1,0 +19900125,1500,186,1,0 +19900125,1500,187,1,0 +19900125,1500,188,1,0 +19900125,1500,229,1,0 +19900125,1500,230,1,0 +19900125,1500,231,1,0 +19900125,1500,232,1,0 +19900125,1500,243,1,0 +19900125,1500,244,1,0 +19900125,1500,245,1,0 +19900125,1500,228246,1,0 +19900125,1500,228247,1,0 +19900125,1800,133,100,1000 +19900125,1800,133,100,975 +19900125,1800,133,100,950 +19900125,1800,133,100,925 +19900125,1800,133,100,900 +19900125,1800,133,100,875 +19900125,1800,133,100,850 +19900125,1800,133,100,825 +19900125,1800,133,100,800 +19900125,1800,133,100,775 +19900125,1800,133,100,750 +19900125,1800,133,100,740 +19900125,1800,133,100,700 +19900125,1800,133,100,650 +19900125,1800,133,100,620 +19900125,1800,133,100,600 +19900125,1800,133,100,550 +19900125,1800,133,100,500 +19900125,1800,133,100,450 +19900125,1800,133,100,400 +19900125,1800,133,100,375 +19900125,1800,133,100,350 +19900125,1800,133,100,300 +19900125,1800,133,100,250 +19900125,1800,133,100,245 +19900125,1800,133,100,225 +19900125,1800,133,100,200 +19900125,1800,133,100,175 +19900125,1800,133,100,150 +19900125,1800,133,100,125 +19900125,1800,133,100,100 +19900125,1800,133,100,70 +19900125,1800,133,100,50 +19900125,1800,133,100,30 +19900125,1800,133,100,20 +19900125,1800,133,100,10 +19900125,1800,133,100,9 +19900125,1800,133,100,7 +19900125,1800,133,100,5 +19900125,1800,133,100,3 +19900125,1800,133,100,2 +19900125,1800,133,100,1 +19900125,1800,133,210,40 +19900125,1800,3,117,2000 +19900125,1800,133,109,1 +19900125,1800,133,109,2 +19900125,1800,133,109,3 +19900125,1800,133,109,4 +19900125,1800,133,109,5 +19900125,1800,133,109,6 +19900125,1800,133,109,7 +19900125,1800,133,109,8 +19900125,1800,133,109,9 +19900125,1800,133,109,10 +19900125,1800,246,109,1 +19900125,1800,246,109,2 +19900125,1800,246,109,3 +19900125,1800,246,109,4 +19900125,1800,246,109,5 +19900125,1800,246,109,6 +19900125,1800,246,109,7 +19900125,1800,246,109,8 +19900125,1800,246,109,9 +19900125,1800,246,109,10 +19900125,1800,247,109,1 +19900125,1800,247,109,2 +19900125,1800,247,109,3 +19900125,1800,247,109,4 +19900125,1800,247,109,5 +19900125,1800,247,109,6 +19900125,1800,247,109,7 +19900125,1800,247,109,8 +19900125,1800,247,109,9 +19900125,1800,247,109,10 +19900125,1800,248,109,1 +19900125,1800,248,109,2 +19900125,1800,248,109,3 +19900125,1800,248,109,4 +19900125,1800,248,109,5 +19900125,1800,248,109,6 +19900125,1800,248,109,7 +19900125,1800,248,109,8 +19900125,1800,248,109,9 +19900125,1800,248,109,10 +19900125,1800,8,1,0 +19900125,1800,31,1,0 +19900125,1800,32,1,0 +19900125,1800,33,1,0 +19900125,1800,34,1,0 +19900125,1800,35,111,7 +19900125,1800,36,111,28 +19900125,1800,37,111,100 +19900125,1800,38,111,289 +19900125,1800,39,111,7 +19900125,1800,40,111,28 +19900125,1800,41,111,100 +19900125,1800,42,111,289 +19900125,1800,44,1,0 +19900125,1800,45,1,0 +19900125,1800,49,1,0 +19900125,1800,50,1,0 +19900125,1800,57,1,0 +19900125,1800,58,1,0 +19900125,1800,123,1,0 +19900125,1800,139,111,7 +19900125,1800,141,1,0 +19900125,1800,142,1,0 +19900125,1800,143,1,0 +19900125,1800,144,1,0 +19900125,1800,145,1,0 +19900125,1800,146,1,0 +19900125,1800,147,1,0 +19900125,1800,148,1,0 +19900125,1800,169,1,0 +19900125,1800,170,111,28 +19900125,1800,172,1,0 +19900125,1800,175,1,0 +19900125,1800,176,1,0 +19900125,1800,177,1,0 +19900125,1800,178,1,0 +19900125,1800,179,1,0 +19900125,1800,180,1,0 +19900125,1800,181,1,0 +19900125,1800,182,1,0 +19900125,1800,183,111,100 +19900125,1800,189,1,0 +19900125,1800,195,1,0 +19900125,1800,196,1,0 +19900125,1800,197,1,0 +19900125,1800,198,1,0 +19900125,1800,201,1,0 +19900125,1800,202,1,0 +19900125,1800,205,1,0 +19900125,1800,208,1,0 +19900125,1800,209,1,0 +19900125,1800,210,1,0 +19900125,1800,211,1,0 +19900125,1800,212,1,0 +19900125,1800,213,1,0 +19900125,1800,228,1,0 +19900125,1800,235,1,0 +19900125,1800,236,111,289 +19900125,1800,238,1,0 +19900125,1800,59,1,0 +19900125,1800,78,1,0 +19900125,1800,79,1,0 +19900125,1800,136,1,0 +19900125,1800,137,1,0 +19900125,1800,151,1,0 +19900125,1800,159,1,0 +19900125,1800,164,1,0 +19900125,1800,165,1,0 +19900125,1800,166,1,0 +19900125,1800,167,1,0 +19900125,1800,168,1,0 +19900125,1800,186,1,0 +19900125,1800,187,1,0 +19900125,1800,188,1,0 +19900125,1800,229,1,0 +19900125,1800,230,1,0 +19900125,1800,231,1,0 +19900125,1800,232,1,0 +19900125,1800,243,1,0 +19900125,1800,244,1,0 +19900125,1800,245,1,0 +19900125,1800,228246,1,0 +19900125,1800,228247,1,0 +19900125,2100,8,1,0 +19900125,2100,31,1,0 +19900125,2100,32,1,0 +19900125,2100,33,1,0 +19900125,2100,34,1,0 +19900125,2100,35,111,7 +19900125,2100,36,111,28 +19900125,2100,37,111,100 +19900125,2100,38,111,289 +19900125,2100,39,111,7 +19900125,2100,40,111,28 +19900125,2100,41,111,100 +19900125,2100,42,111,289 +19900125,2100,44,1,0 +19900125,2100,45,1,0 +19900125,2100,49,1,0 +19900125,2100,50,1,0 +19900125,2100,57,1,0 +19900125,2100,58,1,0 +19900125,2100,123,1,0 +19900125,2100,139,111,7 +19900125,2100,141,1,0 +19900125,2100,142,1,0 +19900125,2100,143,1,0 +19900125,2100,144,1,0 +19900125,2100,145,1,0 +19900125,2100,146,1,0 +19900125,2100,147,1,0 +19900125,2100,148,1,0 +19900125,2100,169,1,0 +19900125,2100,170,111,28 +19900125,2100,172,1,0 +19900125,2100,175,1,0 +19900125,2100,176,1,0 +19900125,2100,177,1,0 +19900125,2100,178,1,0 +19900125,2100,179,1,0 +19900125,2100,180,1,0 +19900125,2100,181,1,0 +19900125,2100,182,1,0 +19900125,2100,183,111,100 +19900125,2100,189,1,0 +19900125,2100,195,1,0 +19900125,2100,196,1,0 +19900125,2100,197,1,0 +19900125,2100,198,1,0 +19900125,2100,201,1,0 +19900125,2100,202,1,0 +19900125,2100,205,1,0 +19900125,2100,208,1,0 +19900125,2100,209,1,0 +19900125,2100,210,1,0 +19900125,2100,211,1,0 +19900125,2100,212,1,0 +19900125,2100,213,1,0 +19900125,2100,228,1,0 +19900125,2100,235,1,0 +19900125,2100,236,111,289 +19900125,2100,238,1,0 +19900125,2100,59,1,0 +19900125,2100,78,1,0 +19900125,2100,79,1,0 +19900125,2100,136,1,0 +19900125,2100,137,1,0 +19900125,2100,151,1,0 +19900125,2100,159,1,0 +19900125,2100,164,1,0 +19900125,2100,165,1,0 +19900125,2100,166,1,0 +19900125,2100,167,1,0 +19900125,2100,168,1,0 +19900125,2100,186,1,0 +19900125,2100,187,1,0 +19900125,2100,188,1,0 +19900125,2100,229,1,0 +19900125,2100,230,1,0 +19900125,2100,231,1,0 +19900125,2100,232,1,0 +19900125,2100,243,1,0 +19900125,2100,244,1,0 +19900125,2100,245,1,0 +19900125,2100,228246,1,0 +19900125,2100,228247,1,0 +19900126,0,133,100,1000 +19900126,0,133,100,975 +19900126,0,133,100,950 +19900126,0,133,100,925 +19900126,0,133,100,900 +19900126,0,133,100,875 +19900126,0,133,100,850 +19900126,0,133,100,825 +19900126,0,133,100,800 +19900126,0,133,100,775 +19900126,0,133,100,750 +19900126,0,133,100,740 +19900126,0,133,100,700 +19900126,0,133,100,650 +19900126,0,133,100,620 +19900126,0,133,100,600 +19900126,0,133,100,550 +19900126,0,133,100,500 +19900126,0,133,100,450 +19900126,0,133,100,400 +19900126,0,133,100,375 +19900126,0,133,100,350 +19900126,0,133,100,300 +19900126,0,133,100,250 +19900126,0,133,100,245 +19900126,0,133,100,225 +19900126,0,133,100,200 +19900126,0,133,100,175 +19900126,0,133,100,150 +19900126,0,133,100,125 +19900126,0,133,100,100 +19900126,0,133,100,70 +19900126,0,133,100,50 +19900126,0,133,100,30 +19900126,0,133,100,20 +19900126,0,133,100,10 +19900126,0,133,100,9 +19900126,0,133,100,7 +19900126,0,133,100,5 +19900126,0,133,100,3 +19900126,0,133,100,2 +19900126,0,133,100,1 +19900126,0,133,210,40 +19900126,0,3,117,2000 +19900126,0,133,109,1 +19900126,0,133,109,2 +19900126,0,133,109,3 +19900126,0,133,109,4 +19900126,0,133,109,5 +19900126,0,133,109,6 +19900126,0,133,109,7 +19900126,0,133,109,8 +19900126,0,133,109,9 +19900126,0,133,109,10 +19900126,0,246,109,1 +19900126,0,246,109,2 +19900126,0,246,109,3 +19900126,0,246,109,4 +19900126,0,246,109,5 +19900126,0,246,109,6 +19900126,0,246,109,7 +19900126,0,246,109,8 +19900126,0,246,109,9 +19900126,0,246,109,10 +19900126,0,247,109,1 +19900126,0,247,109,2 +19900126,0,247,109,3 +19900126,0,247,109,4 +19900126,0,247,109,5 +19900126,0,247,109,6 +19900126,0,247,109,7 +19900126,0,247,109,8 +19900126,0,247,109,9 +19900126,0,247,109,10 +19900126,0,248,109,1 +19900126,0,248,109,2 +19900126,0,248,109,3 +19900126,0,248,109,4 +19900126,0,248,109,5 +19900126,0,248,109,6 +19900126,0,248,109,7 +19900126,0,248,109,8 +19900126,0,248,109,9 +19900126,0,248,109,10 +19900126,0,8,1,0 +19900126,0,31,1,0 +19900126,0,32,1,0 +19900126,0,33,1,0 +19900126,0,34,1,0 +19900126,0,35,111,7 +19900126,0,36,111,28 +19900126,0,37,111,100 +19900126,0,38,111,289 +19900126,0,39,111,7 +19900126,0,40,111,28 +19900126,0,41,111,100 +19900126,0,42,111,289 +19900126,0,44,1,0 +19900126,0,45,1,0 +19900126,0,49,1,0 +19900126,0,50,1,0 +19900126,0,57,1,0 +19900126,0,58,1,0 +19900126,0,123,1,0 +19900126,0,139,111,7 +19900126,0,141,1,0 +19900126,0,142,1,0 +19900126,0,143,1,0 +19900126,0,144,1,0 +19900126,0,145,1,0 +19900126,0,146,1,0 +19900126,0,147,1,0 +19900126,0,148,1,0 +19900126,0,169,1,0 +19900126,0,170,111,28 +19900126,0,172,1,0 +19900126,0,175,1,0 +19900126,0,176,1,0 +19900126,0,177,1,0 +19900126,0,178,1,0 +19900126,0,179,1,0 +19900126,0,180,1,0 +19900126,0,181,1,0 +19900126,0,182,1,0 +19900126,0,183,111,100 +19900126,0,189,1,0 +19900126,0,195,1,0 +19900126,0,196,1,0 +19900126,0,197,1,0 +19900126,0,198,1,0 +19900126,0,201,1,0 +19900126,0,202,1,0 +19900126,0,205,1,0 +19900126,0,208,1,0 +19900126,0,209,1,0 +19900126,0,210,1,0 +19900126,0,211,1,0 +19900126,0,212,1,0 +19900126,0,213,1,0 +19900126,0,228,1,0 +19900126,0,235,1,0 +19900126,0,236,111,289 +19900126,0,238,1,0 +19900126,0,59,1,0 +19900126,0,78,1,0 +19900126,0,79,1,0 +19900126,0,136,1,0 +19900126,0,137,1,0 +19900126,0,151,1,0 +19900126,0,159,1,0 +19900126,0,164,1,0 +19900126,0,165,1,0 +19900126,0,166,1,0 +19900126,0,167,1,0 +19900126,0,168,1,0 +19900126,0,186,1,0 +19900126,0,187,1,0 +19900126,0,188,1,0 +19900126,0,229,1,0 +19900126,0,230,1,0 +19900126,0,231,1,0 +19900126,0,232,1,0 +19900126,0,243,1,0 +19900126,0,244,1,0 +19900126,0,245,1,0 +19900126,0,228246,1,0 +19900126,0,228247,1,0 +19900126,300,8,1,0 +19900126,300,31,1,0 +19900126,300,32,1,0 +19900126,300,33,1,0 +19900126,300,34,1,0 +19900126,300,35,111,7 +19900126,300,36,111,28 +19900126,300,37,111,100 +19900126,300,38,111,289 +19900126,300,39,111,7 +19900126,300,40,111,28 +19900126,300,41,111,100 +19900126,300,42,111,289 +19900126,300,44,1,0 +19900126,300,45,1,0 +19900126,300,49,1,0 +19900126,300,50,1,0 +19900126,300,57,1,0 +19900126,300,58,1,0 +19900126,300,123,1,0 +19900126,300,139,111,7 +19900126,300,141,1,0 +19900126,300,142,1,0 +19900126,300,143,1,0 +19900126,300,144,1,0 +19900126,300,145,1,0 +19900126,300,146,1,0 +19900126,300,147,1,0 +19900126,300,148,1,0 +19900126,300,169,1,0 +19900126,300,170,111,28 +19900126,300,172,1,0 +19900126,300,175,1,0 +19900126,300,176,1,0 +19900126,300,177,1,0 +19900126,300,178,1,0 +19900126,300,179,1,0 +19900126,300,180,1,0 +19900126,300,181,1,0 +19900126,300,182,1,0 +19900126,300,183,111,100 +19900126,300,189,1,0 +19900126,300,195,1,0 +19900126,300,196,1,0 +19900126,300,197,1,0 +19900126,300,198,1,0 +19900126,300,201,1,0 +19900126,300,202,1,0 +19900126,300,205,1,0 +19900126,300,208,1,0 +19900126,300,209,1,0 +19900126,300,210,1,0 +19900126,300,211,1,0 +19900126,300,212,1,0 +19900126,300,213,1,0 +19900126,300,228,1,0 +19900126,300,235,1,0 +19900126,300,236,111,289 +19900126,300,238,1,0 +19900126,300,59,1,0 +19900126,300,78,1,0 +19900126,300,79,1,0 +19900126,300,136,1,0 +19900126,300,137,1,0 +19900126,300,151,1,0 +19900126,300,159,1,0 +19900126,300,164,1,0 +19900126,300,165,1,0 +19900126,300,166,1,0 +19900126,300,167,1,0 +19900126,300,168,1,0 +19900126,300,186,1,0 +19900126,300,187,1,0 +19900126,300,188,1,0 +19900126,300,229,1,0 +19900126,300,230,1,0 +19900126,300,231,1,0 +19900126,300,232,1,0 +19900126,300,243,1,0 +19900126,300,244,1,0 +19900126,300,245,1,0 +19900126,300,228246,1,0 +19900126,300,228247,1,0 +19900126,600,133,100,1000 +19900126,600,133,100,975 +19900126,600,133,100,950 +19900126,600,133,100,925 +19900126,600,133,100,900 +19900126,600,133,100,875 +19900126,600,133,100,850 +19900126,600,133,100,825 +19900126,600,133,100,800 +19900126,600,133,100,775 +19900126,600,133,100,750 +19900126,600,133,100,740 +19900126,600,133,100,700 +19900126,600,133,100,650 +19900126,600,133,100,620 +19900126,600,133,100,600 +19900126,600,133,100,550 +19900126,600,133,100,500 +19900126,600,133,100,450 +19900126,600,133,100,400 +19900126,600,133,100,375 +19900126,600,133,100,350 +19900126,600,133,100,300 +19900126,600,133,100,250 +19900126,600,133,100,245 +19900126,600,133,100,225 +19900126,600,133,100,200 +19900126,600,133,100,175 +19900126,600,133,100,150 +19900126,600,133,100,125 +19900126,600,133,100,100 +19900126,600,133,100,70 +19900126,600,133,100,50 +19900126,600,133,100,30 +19900126,600,133,100,20 +19900126,600,133,100,10 +19900126,600,133,100,9 +19900126,600,133,100,7 +19900126,600,133,100,5 +19900126,600,133,100,3 +19900126,600,133,100,2 +19900126,600,133,100,1 +19900126,600,133,210,40 +19900126,600,3,117,2000 +19900126,600,133,109,1 +19900126,600,133,109,2 +19900126,600,133,109,3 +19900126,600,133,109,4 +19900126,600,133,109,5 +19900126,600,133,109,6 +19900126,600,133,109,7 +19900126,600,133,109,8 +19900126,600,133,109,9 +19900126,600,133,109,10 +19900126,600,246,109,1 +19900126,600,246,109,2 +19900126,600,246,109,3 +19900126,600,246,109,4 +19900126,600,246,109,5 +19900126,600,246,109,6 +19900126,600,246,109,7 +19900126,600,246,109,8 +19900126,600,246,109,9 +19900126,600,246,109,10 +19900126,600,247,109,1 +19900126,600,247,109,2 +19900126,600,247,109,3 +19900126,600,247,109,4 +19900126,600,247,109,5 +19900126,600,247,109,6 +19900126,600,247,109,7 +19900126,600,247,109,8 +19900126,600,247,109,9 +19900126,600,247,109,10 +19900126,600,248,109,1 +19900126,600,248,109,2 +19900126,600,248,109,3 +19900126,600,248,109,4 +19900126,600,248,109,5 +19900126,600,248,109,6 +19900126,600,248,109,7 +19900126,600,248,109,8 +19900126,600,248,109,9 +19900126,600,248,109,10 +19900126,600,8,1,0 +19900126,600,31,1,0 +19900126,600,32,1,0 +19900126,600,33,1,0 +19900126,600,34,1,0 +19900126,600,35,111,7 +19900126,600,36,111,28 +19900126,600,37,111,100 +19900126,600,38,111,289 +19900126,600,39,111,7 +19900126,600,40,111,28 +19900126,600,41,111,100 +19900126,600,42,111,289 +19900126,600,44,1,0 +19900126,600,45,1,0 +19900126,600,49,1,0 +19900126,600,50,1,0 +19900126,600,57,1,0 +19900126,600,58,1,0 +19900126,600,123,1,0 +19900126,600,139,111,7 +19900126,600,141,1,0 +19900126,600,142,1,0 +19900126,600,143,1,0 +19900126,600,144,1,0 +19900126,600,145,1,0 +19900126,600,146,1,0 +19900126,600,147,1,0 +19900126,600,148,1,0 +19900126,600,169,1,0 +19900126,600,170,111,28 +19900126,600,172,1,0 +19900126,600,175,1,0 +19900126,600,176,1,0 +19900126,600,177,1,0 +19900126,600,178,1,0 +19900126,600,179,1,0 +19900126,600,180,1,0 +19900126,600,181,1,0 +19900126,600,182,1,0 +19900126,600,183,111,100 +19900126,600,189,1,0 +19900126,600,195,1,0 +19900126,600,196,1,0 +19900126,600,197,1,0 +19900126,600,198,1,0 +19900126,600,201,1,0 +19900126,600,202,1,0 +19900126,600,205,1,0 +19900126,600,208,1,0 +19900126,600,209,1,0 +19900126,600,210,1,0 +19900126,600,211,1,0 +19900126,600,212,1,0 +19900126,600,213,1,0 +19900126,600,228,1,0 +19900126,600,235,1,0 +19900126,600,236,111,289 +19900126,600,238,1,0 +19900126,600,59,1,0 +19900126,600,78,1,0 +19900126,600,79,1,0 +19900126,600,136,1,0 +19900126,600,137,1,0 +19900126,600,151,1,0 +19900126,600,159,1,0 +19900126,600,164,1,0 +19900126,600,165,1,0 +19900126,600,166,1,0 +19900126,600,167,1,0 +19900126,600,168,1,0 +19900126,600,186,1,0 +19900126,600,187,1,0 +19900126,600,188,1,0 +19900126,600,229,1,0 +19900126,600,230,1,0 +19900126,600,231,1,0 +19900126,600,232,1,0 +19900126,600,243,1,0 +19900126,600,244,1,0 +19900126,600,245,1,0 +19900126,600,228246,1,0 +19900126,600,228247,1,0 +19900126,900,8,1,0 +19900126,900,31,1,0 +19900126,900,32,1,0 +19900126,900,33,1,0 +19900126,900,34,1,0 +19900126,900,35,111,7 +19900126,900,36,111,28 +19900126,900,37,111,100 +19900126,900,38,111,289 +19900126,900,39,111,7 +19900126,900,40,111,28 +19900126,900,41,111,100 +19900126,900,42,111,289 +19900126,900,44,1,0 +19900126,900,45,1,0 +19900126,900,49,1,0 +19900126,900,50,1,0 +19900126,900,57,1,0 +19900126,900,58,1,0 +19900126,900,123,1,0 +19900126,900,139,111,7 +19900126,900,141,1,0 +19900126,900,142,1,0 +19900126,900,143,1,0 +19900126,900,144,1,0 +19900126,900,145,1,0 +19900126,900,146,1,0 +19900126,900,147,1,0 +19900126,900,148,1,0 +19900126,900,169,1,0 +19900126,900,170,111,28 +19900126,900,172,1,0 +19900126,900,175,1,0 +19900126,900,176,1,0 +19900126,900,177,1,0 +19900126,900,178,1,0 +19900126,900,179,1,0 +19900126,900,180,1,0 +19900126,900,181,1,0 +19900126,900,182,1,0 +19900126,900,183,111,100 +19900126,900,189,1,0 +19900126,900,195,1,0 +19900126,900,196,1,0 +19900126,900,197,1,0 +19900126,900,198,1,0 +19900126,900,201,1,0 +19900126,900,202,1,0 +19900126,900,205,1,0 +19900126,900,208,1,0 +19900126,900,209,1,0 +19900126,900,210,1,0 +19900126,900,211,1,0 +19900126,900,212,1,0 +19900126,900,213,1,0 +19900126,900,228,1,0 +19900126,900,235,1,0 +19900126,900,236,111,289 +19900126,900,238,1,0 +19900126,900,59,1,0 +19900126,900,78,1,0 +19900126,900,79,1,0 +19900126,900,136,1,0 +19900126,900,137,1,0 +19900126,900,151,1,0 +19900126,900,159,1,0 +19900126,900,164,1,0 +19900126,900,165,1,0 +19900126,900,166,1,0 +19900126,900,167,1,0 +19900126,900,168,1,0 +19900126,900,186,1,0 +19900126,900,187,1,0 +19900126,900,188,1,0 +19900126,900,229,1,0 +19900126,900,230,1,0 +19900126,900,231,1,0 +19900126,900,232,1,0 +19900126,900,243,1,0 +19900126,900,244,1,0 +19900126,900,245,1,0 +19900126,900,228246,1,0 +19900126,900,228247,1,0 +19900126,1200,133,100,1000 +19900126,1200,133,100,975 +19900126,1200,133,100,950 +19900126,1200,133,100,925 +19900126,1200,133,100,900 +19900126,1200,133,100,875 +19900126,1200,133,100,850 +19900126,1200,133,100,825 +19900126,1200,133,100,800 +19900126,1200,133,100,775 +19900126,1200,133,100,750 +19900126,1200,133,100,740 +19900126,1200,133,100,700 +19900126,1200,133,100,650 +19900126,1200,133,100,620 +19900126,1200,133,100,600 +19900126,1200,133,100,550 +19900126,1200,133,100,500 +19900126,1200,133,100,450 +19900126,1200,133,100,400 +19900126,1200,133,100,375 +19900126,1200,133,100,350 +19900126,1200,133,100,300 +19900126,1200,133,100,250 +19900126,1200,133,100,245 +19900126,1200,133,100,225 +19900126,1200,133,100,200 +19900126,1200,133,100,175 +19900126,1200,133,100,150 +19900126,1200,133,100,125 +19900126,1200,133,100,100 +19900126,1200,133,100,70 +19900126,1200,133,100,50 +19900126,1200,133,100,30 +19900126,1200,133,100,20 +19900126,1200,133,100,10 +19900126,1200,133,100,9 +19900126,1200,133,100,7 +19900126,1200,133,100,5 +19900126,1200,133,100,3 +19900126,1200,133,100,2 +19900126,1200,133,100,1 +19900126,1200,133,210,40 +19900126,1200,3,117,2000 +19900126,1200,133,109,1 +19900126,1200,133,109,2 +19900126,1200,133,109,3 +19900126,1200,133,109,4 +19900126,1200,133,109,5 +19900126,1200,133,109,6 +19900126,1200,133,109,7 +19900126,1200,133,109,8 +19900126,1200,133,109,9 +19900126,1200,133,109,10 +19900126,1200,246,109,1 +19900126,1200,246,109,2 +19900126,1200,246,109,3 +19900126,1200,246,109,4 +19900126,1200,246,109,5 +19900126,1200,246,109,6 +19900126,1200,246,109,7 +19900126,1200,246,109,8 +19900126,1200,246,109,9 +19900126,1200,246,109,10 +19900126,1200,247,109,1 +19900126,1200,247,109,2 +19900126,1200,247,109,3 +19900126,1200,247,109,4 +19900126,1200,247,109,5 +19900126,1200,247,109,6 +19900126,1200,247,109,7 +19900126,1200,247,109,8 +19900126,1200,247,109,9 +19900126,1200,247,109,10 +19900126,1200,248,109,1 +19900126,1200,248,109,2 +19900126,1200,248,109,3 +19900126,1200,248,109,4 +19900126,1200,248,109,5 +19900126,1200,248,109,6 +19900126,1200,248,109,7 +19900126,1200,248,109,8 +19900126,1200,248,109,9 +19900126,1200,248,109,10 +19900126,1200,8,1,0 +19900126,1200,31,1,0 +19900126,1200,32,1,0 +19900126,1200,33,1,0 +19900126,1200,34,1,0 +19900126,1200,35,111,7 +19900126,1200,36,111,28 +19900126,1200,37,111,100 +19900126,1200,38,111,289 +19900126,1200,39,111,7 +19900126,1200,40,111,28 +19900126,1200,41,111,100 +19900126,1200,42,111,289 +19900126,1200,44,1,0 +19900126,1200,45,1,0 +19900126,1200,49,1,0 +19900126,1200,50,1,0 +19900126,1200,57,1,0 +19900126,1200,58,1,0 +19900126,1200,123,1,0 +19900126,1200,139,111,7 +19900126,1200,141,1,0 +19900126,1200,142,1,0 +19900126,1200,143,1,0 +19900126,1200,144,1,0 +19900126,1200,145,1,0 +19900126,1200,146,1,0 +19900126,1200,147,1,0 +19900126,1200,148,1,0 +19900126,1200,169,1,0 +19900126,1200,170,111,28 +19900126,1200,172,1,0 +19900126,1200,175,1,0 +19900126,1200,176,1,0 +19900126,1200,177,1,0 +19900126,1200,178,1,0 +19900126,1200,179,1,0 +19900126,1200,180,1,0 +19900126,1200,181,1,0 +19900126,1200,182,1,0 +19900126,1200,183,111,100 +19900126,1200,189,1,0 +19900126,1200,195,1,0 +19900126,1200,196,1,0 +19900126,1200,197,1,0 +19900126,1200,198,1,0 +19900126,1200,201,1,0 +19900126,1200,202,1,0 +19900126,1200,205,1,0 +19900126,1200,208,1,0 +19900126,1200,209,1,0 +19900126,1200,210,1,0 +19900126,1200,211,1,0 +19900126,1200,212,1,0 +19900126,1200,213,1,0 +19900126,1200,228,1,0 +19900126,1200,235,1,0 +19900126,1200,236,111,289 +19900126,1200,238,1,0 +19900126,1200,59,1,0 +19900126,1200,78,1,0 +19900126,1200,79,1,0 +19900126,1200,136,1,0 +19900126,1200,137,1,0 +19900126,1200,151,1,0 +19900126,1200,159,1,0 +19900126,1200,164,1,0 +19900126,1200,165,1,0 +19900126,1200,166,1,0 +19900126,1200,167,1,0 +19900126,1200,168,1,0 +19900126,1200,186,1,0 +19900126,1200,187,1,0 +19900126,1200,188,1,0 +19900126,1200,229,1,0 +19900126,1200,230,1,0 +19900126,1200,231,1,0 +19900126,1200,232,1,0 +19900126,1200,243,1,0 +19900126,1200,244,1,0 +19900126,1200,245,1,0 +19900126,1200,228246,1,0 +19900126,1200,228247,1,0 +19900126,1500,8,1,0 +19900126,1500,31,1,0 +19900126,1500,32,1,0 +19900126,1500,33,1,0 +19900126,1500,34,1,0 +19900126,1500,35,111,7 +19900126,1500,36,111,28 +19900126,1500,37,111,100 +19900126,1500,38,111,289 +19900126,1500,39,111,7 +19900126,1500,40,111,28 +19900126,1500,41,111,100 +19900126,1500,42,111,289 +19900126,1500,44,1,0 +19900126,1500,45,1,0 +19900126,1500,49,1,0 +19900126,1500,50,1,0 +19900126,1500,57,1,0 +19900126,1500,58,1,0 +19900126,1500,123,1,0 +19900126,1500,139,111,7 +19900126,1500,141,1,0 +19900126,1500,142,1,0 +19900126,1500,143,1,0 +19900126,1500,144,1,0 +19900126,1500,145,1,0 +19900126,1500,146,1,0 +19900126,1500,147,1,0 +19900126,1500,148,1,0 +19900126,1500,169,1,0 +19900126,1500,170,111,28 +19900126,1500,172,1,0 +19900126,1500,175,1,0 +19900126,1500,176,1,0 +19900126,1500,177,1,0 +19900126,1500,178,1,0 +19900126,1500,179,1,0 +19900126,1500,180,1,0 +19900126,1500,181,1,0 +19900126,1500,182,1,0 +19900126,1500,183,111,100 +19900126,1500,189,1,0 +19900126,1500,195,1,0 +19900126,1500,196,1,0 +19900126,1500,197,1,0 +19900126,1500,198,1,0 +19900126,1500,201,1,0 +19900126,1500,202,1,0 +19900126,1500,205,1,0 +19900126,1500,208,1,0 +19900126,1500,209,1,0 +19900126,1500,210,1,0 +19900126,1500,211,1,0 +19900126,1500,212,1,0 +19900126,1500,213,1,0 +19900126,1500,228,1,0 +19900126,1500,235,1,0 +19900126,1500,236,111,289 +19900126,1500,238,1,0 +19900126,1500,59,1,0 +19900126,1500,78,1,0 +19900126,1500,79,1,0 +19900126,1500,136,1,0 +19900126,1500,137,1,0 +19900126,1500,151,1,0 +19900126,1500,159,1,0 +19900126,1500,164,1,0 +19900126,1500,165,1,0 +19900126,1500,166,1,0 +19900126,1500,167,1,0 +19900126,1500,168,1,0 +19900126,1500,186,1,0 +19900126,1500,187,1,0 +19900126,1500,188,1,0 +19900126,1500,229,1,0 +19900126,1500,230,1,0 +19900126,1500,231,1,0 +19900126,1500,232,1,0 +19900126,1500,243,1,0 +19900126,1500,244,1,0 +19900126,1500,245,1,0 +19900126,1500,228246,1,0 +19900126,1500,228247,1,0 +19900126,1800,133,100,1000 +19900126,1800,133,100,975 +19900126,1800,133,100,950 +19900126,1800,133,100,925 +19900126,1800,133,100,900 +19900126,1800,133,100,875 +19900126,1800,133,100,850 +19900126,1800,133,100,825 +19900126,1800,133,100,800 +19900126,1800,133,100,775 +19900126,1800,133,100,750 +19900126,1800,133,100,740 +19900126,1800,133,100,700 +19900126,1800,133,100,650 +19900126,1800,133,100,620 +19900126,1800,133,100,600 +19900126,1800,133,100,550 +19900126,1800,133,100,500 +19900126,1800,133,100,450 +19900126,1800,133,100,400 +19900126,1800,133,100,375 +19900126,1800,133,100,350 +19900126,1800,133,100,300 +19900126,1800,133,100,250 +19900126,1800,133,100,245 +19900126,1800,133,100,225 +19900126,1800,133,100,200 +19900126,1800,133,100,175 +19900126,1800,133,100,150 +19900126,1800,133,100,125 +19900126,1800,133,100,100 +19900126,1800,133,100,70 +19900126,1800,133,100,50 +19900126,1800,133,100,30 +19900126,1800,133,100,20 +19900126,1800,133,100,10 +19900126,1800,133,100,9 +19900126,1800,133,100,7 +19900126,1800,133,100,5 +19900126,1800,133,100,3 +19900126,1800,133,100,2 +19900126,1800,133,100,1 +19900126,1800,133,210,40 +19900126,1800,3,117,2000 +19900126,1800,133,109,1 +19900126,1800,133,109,2 +19900126,1800,133,109,3 +19900126,1800,133,109,4 +19900126,1800,133,109,5 +19900126,1800,133,109,6 +19900126,1800,133,109,7 +19900126,1800,133,109,8 +19900126,1800,133,109,9 +19900126,1800,133,109,10 +19900126,1800,246,109,1 +19900126,1800,246,109,2 +19900126,1800,246,109,3 +19900126,1800,246,109,4 +19900126,1800,246,109,5 +19900126,1800,246,109,6 +19900126,1800,246,109,7 +19900126,1800,246,109,8 +19900126,1800,246,109,9 +19900126,1800,246,109,10 +19900126,1800,247,109,1 +19900126,1800,247,109,2 +19900126,1800,247,109,3 +19900126,1800,247,109,4 +19900126,1800,247,109,5 +19900126,1800,247,109,6 +19900126,1800,247,109,7 +19900126,1800,247,109,8 +19900126,1800,247,109,9 +19900126,1800,247,109,10 +19900126,1800,248,109,1 +19900126,1800,248,109,2 +19900126,1800,248,109,3 +19900126,1800,248,109,4 +19900126,1800,248,109,5 +19900126,1800,248,109,6 +19900126,1800,248,109,7 +19900126,1800,248,109,8 +19900126,1800,248,109,9 +19900126,1800,248,109,10 +19900126,1800,8,1,0 +19900126,1800,31,1,0 +19900126,1800,32,1,0 +19900126,1800,33,1,0 +19900126,1800,34,1,0 +19900126,1800,35,111,7 +19900126,1800,36,111,28 +19900126,1800,37,111,100 +19900126,1800,38,111,289 +19900126,1800,39,111,7 +19900126,1800,40,111,28 +19900126,1800,41,111,100 +19900126,1800,42,111,289 +19900126,1800,44,1,0 +19900126,1800,45,1,0 +19900126,1800,49,1,0 +19900126,1800,50,1,0 +19900126,1800,57,1,0 +19900126,1800,58,1,0 +19900126,1800,123,1,0 +19900126,1800,139,111,7 +19900126,1800,141,1,0 +19900126,1800,142,1,0 +19900126,1800,143,1,0 +19900126,1800,144,1,0 +19900126,1800,145,1,0 +19900126,1800,146,1,0 +19900126,1800,147,1,0 +19900126,1800,148,1,0 +19900126,1800,169,1,0 +19900126,1800,170,111,28 +19900126,1800,172,1,0 +19900126,1800,175,1,0 +19900126,1800,176,1,0 +19900126,1800,177,1,0 +19900126,1800,178,1,0 +19900126,1800,179,1,0 +19900126,1800,180,1,0 +19900126,1800,181,1,0 +19900126,1800,182,1,0 +19900126,1800,183,111,100 +19900126,1800,189,1,0 +19900126,1800,195,1,0 +19900126,1800,196,1,0 +19900126,1800,197,1,0 +19900126,1800,198,1,0 +19900126,1800,201,1,0 +19900126,1800,202,1,0 +19900126,1800,205,1,0 +19900126,1800,208,1,0 +19900126,1800,209,1,0 +19900126,1800,210,1,0 +19900126,1800,211,1,0 +19900126,1800,212,1,0 +19900126,1800,213,1,0 +19900126,1800,228,1,0 +19900126,1800,235,1,0 +19900126,1800,236,111,289 +19900126,1800,238,1,0 +19900126,1800,59,1,0 +19900126,1800,78,1,0 +19900126,1800,79,1,0 +19900126,1800,136,1,0 +19900126,1800,137,1,0 +19900126,1800,151,1,0 +19900126,1800,159,1,0 +19900126,1800,164,1,0 +19900126,1800,165,1,0 +19900126,1800,166,1,0 +19900126,1800,167,1,0 +19900126,1800,168,1,0 +19900126,1800,186,1,0 +19900126,1800,187,1,0 +19900126,1800,188,1,0 +19900126,1800,229,1,0 +19900126,1800,230,1,0 +19900126,1800,231,1,0 +19900126,1800,232,1,0 +19900126,1800,243,1,0 +19900126,1800,244,1,0 +19900126,1800,245,1,0 +19900126,1800,228246,1,0 +19900126,1800,228247,1,0 +19900126,2100,8,1,0 +19900126,2100,31,1,0 +19900126,2100,32,1,0 +19900126,2100,33,1,0 +19900126,2100,34,1,0 +19900126,2100,35,111,7 +19900126,2100,36,111,28 +19900126,2100,37,111,100 +19900126,2100,38,111,289 +19900126,2100,39,111,7 +19900126,2100,40,111,28 +19900126,2100,41,111,100 +19900126,2100,42,111,289 +19900126,2100,44,1,0 +19900126,2100,45,1,0 +19900126,2100,49,1,0 +19900126,2100,50,1,0 +19900126,2100,57,1,0 +19900126,2100,58,1,0 +19900126,2100,123,1,0 +19900126,2100,139,111,7 +19900126,2100,141,1,0 +19900126,2100,142,1,0 +19900126,2100,143,1,0 +19900126,2100,144,1,0 +19900126,2100,145,1,0 +19900126,2100,146,1,0 +19900126,2100,147,1,0 +19900126,2100,148,1,0 +19900126,2100,169,1,0 +19900126,2100,170,111,28 +19900126,2100,172,1,0 +19900126,2100,175,1,0 +19900126,2100,176,1,0 +19900126,2100,177,1,0 +19900126,2100,178,1,0 +19900126,2100,179,1,0 +19900126,2100,180,1,0 +19900126,2100,181,1,0 +19900126,2100,182,1,0 +19900126,2100,183,111,100 +19900126,2100,189,1,0 +19900126,2100,195,1,0 +19900126,2100,196,1,0 +19900126,2100,197,1,0 +19900126,2100,198,1,0 +19900126,2100,201,1,0 +19900126,2100,202,1,0 +19900126,2100,205,1,0 +19900126,2100,208,1,0 +19900126,2100,209,1,0 +19900126,2100,210,1,0 +19900126,2100,211,1,0 +19900126,2100,212,1,0 +19900126,2100,213,1,0 +19900126,2100,228,1,0 +19900126,2100,235,1,0 +19900126,2100,236,111,289 +19900126,2100,238,1,0 +19900126,2100,59,1,0 +19900126,2100,78,1,0 +19900126,2100,79,1,0 +19900126,2100,136,1,0 +19900126,2100,137,1,0 +19900126,2100,151,1,0 +19900126,2100,159,1,0 +19900126,2100,164,1,0 +19900126,2100,165,1,0 +19900126,2100,166,1,0 +19900126,2100,167,1,0 +19900126,2100,168,1,0 +19900126,2100,186,1,0 +19900126,2100,187,1,0 +19900126,2100,188,1,0 +19900126,2100,229,1,0 +19900126,2100,230,1,0 +19900126,2100,231,1,0 +19900126,2100,232,1,0 +19900126,2100,243,1,0 +19900126,2100,244,1,0 +19900126,2100,245,1,0 +19900126,2100,228246,1,0 +19900126,2100,228247,1,0 +19900127,0,133,100,1000 +19900127,0,133,100,975 +19900127,0,133,100,950 +19900127,0,133,100,925 +19900127,0,133,100,900 +19900127,0,133,100,875 +19900127,0,133,100,850 +19900127,0,133,100,825 +19900127,0,133,100,800 +19900127,0,133,100,775 +19900127,0,133,100,750 +19900127,0,133,100,740 +19900127,0,133,100,700 +19900127,0,133,100,650 +19900127,0,133,100,620 +19900127,0,133,100,600 +19900127,0,133,100,550 +19900127,0,133,100,500 +19900127,0,133,100,450 +19900127,0,133,100,400 +19900127,0,133,100,375 +19900127,0,133,100,350 +19900127,0,133,100,300 +19900127,0,133,100,250 +19900127,0,133,100,245 +19900127,0,133,100,225 +19900127,0,133,100,200 +19900127,0,133,100,175 +19900127,0,133,100,150 +19900127,0,133,100,125 +19900127,0,133,100,100 +19900127,0,133,100,70 +19900127,0,133,100,50 +19900127,0,133,100,30 +19900127,0,133,100,20 +19900127,0,133,100,10 +19900127,0,133,100,9 +19900127,0,133,100,7 +19900127,0,133,100,5 +19900127,0,133,100,3 +19900127,0,133,100,2 +19900127,0,133,100,1 +19900127,0,133,210,40 +19900127,0,3,117,2000 +19900127,0,133,109,1 +19900127,0,133,109,2 +19900127,0,133,109,3 +19900127,0,133,109,4 +19900127,0,133,109,5 +19900127,0,133,109,6 +19900127,0,133,109,7 +19900127,0,133,109,8 +19900127,0,133,109,9 +19900127,0,133,109,10 +19900127,0,246,109,1 +19900127,0,246,109,2 +19900127,0,246,109,3 +19900127,0,246,109,4 +19900127,0,246,109,5 +19900127,0,246,109,6 +19900127,0,246,109,7 +19900127,0,246,109,8 +19900127,0,246,109,9 +19900127,0,246,109,10 +19900127,0,247,109,1 +19900127,0,247,109,2 +19900127,0,247,109,3 +19900127,0,247,109,4 +19900127,0,247,109,5 +19900127,0,247,109,6 +19900127,0,247,109,7 +19900127,0,247,109,8 +19900127,0,247,109,9 +19900127,0,247,109,10 +19900127,0,248,109,1 +19900127,0,248,109,2 +19900127,0,248,109,3 +19900127,0,248,109,4 +19900127,0,248,109,5 +19900127,0,248,109,6 +19900127,0,248,109,7 +19900127,0,248,109,8 +19900127,0,248,109,9 +19900127,0,248,109,10 +19900127,0,8,1,0 +19900127,0,31,1,0 +19900127,0,32,1,0 +19900127,0,33,1,0 +19900127,0,34,1,0 +19900127,0,35,111,7 +19900127,0,36,111,28 +19900127,0,37,111,100 +19900127,0,38,111,289 +19900127,0,39,111,7 +19900127,0,40,111,28 +19900127,0,41,111,100 +19900127,0,42,111,289 +19900127,0,44,1,0 +19900127,0,45,1,0 +19900127,0,49,1,0 +19900127,0,50,1,0 +19900127,0,57,1,0 +19900127,0,58,1,0 +19900127,0,123,1,0 +19900127,0,139,111,7 +19900127,0,141,1,0 +19900127,0,142,1,0 +19900127,0,143,1,0 +19900127,0,144,1,0 +19900127,0,145,1,0 +19900127,0,146,1,0 +19900127,0,147,1,0 +19900127,0,148,1,0 +19900127,0,169,1,0 +19900127,0,170,111,28 +19900127,0,172,1,0 +19900127,0,175,1,0 +19900127,0,176,1,0 +19900127,0,177,1,0 +19900127,0,178,1,0 +19900127,0,179,1,0 +19900127,0,180,1,0 +19900127,0,181,1,0 +19900127,0,182,1,0 +19900127,0,183,111,100 +19900127,0,189,1,0 +19900127,0,195,1,0 +19900127,0,196,1,0 +19900127,0,197,1,0 +19900127,0,198,1,0 +19900127,0,201,1,0 +19900127,0,202,1,0 +19900127,0,205,1,0 +19900127,0,208,1,0 +19900127,0,209,1,0 +19900127,0,210,1,0 +19900127,0,211,1,0 +19900127,0,212,1,0 +19900127,0,213,1,0 +19900127,0,228,1,0 +19900127,0,235,1,0 +19900127,0,236,111,289 +19900127,0,238,1,0 +19900127,0,59,1,0 +19900127,0,78,1,0 +19900127,0,79,1,0 +19900127,0,136,1,0 +19900127,0,137,1,0 +19900127,0,151,1,0 +19900127,0,159,1,0 +19900127,0,164,1,0 +19900127,0,165,1,0 +19900127,0,166,1,0 +19900127,0,167,1,0 +19900127,0,168,1,0 +19900127,0,186,1,0 +19900127,0,187,1,0 +19900127,0,188,1,0 +19900127,0,229,1,0 +19900127,0,230,1,0 +19900127,0,231,1,0 +19900127,0,232,1,0 +19900127,0,243,1,0 +19900127,0,244,1,0 +19900127,0,245,1,0 +19900127,0,228246,1,0 +19900127,0,228247,1,0 +19900127,300,8,1,0 +19900127,300,31,1,0 +19900127,300,32,1,0 +19900127,300,33,1,0 +19900127,300,34,1,0 +19900127,300,35,111,7 +19900127,300,36,111,28 +19900127,300,37,111,100 +19900127,300,38,111,289 +19900127,300,39,111,7 +19900127,300,40,111,28 +19900127,300,41,111,100 +19900127,300,42,111,289 +19900127,300,44,1,0 +19900127,300,45,1,0 +19900127,300,49,1,0 +19900127,300,50,1,0 +19900127,300,57,1,0 +19900127,300,58,1,0 +19900127,300,123,1,0 +19900127,300,139,111,7 +19900127,300,141,1,0 +19900127,300,142,1,0 +19900127,300,143,1,0 +19900127,300,144,1,0 +19900127,300,145,1,0 +19900127,300,146,1,0 +19900127,300,147,1,0 +19900127,300,148,1,0 +19900127,300,169,1,0 +19900127,300,170,111,28 +19900127,300,172,1,0 +19900127,300,175,1,0 +19900127,300,176,1,0 +19900127,300,177,1,0 +19900127,300,178,1,0 +19900127,300,179,1,0 +19900127,300,180,1,0 +19900127,300,181,1,0 +19900127,300,182,1,0 +19900127,300,183,111,100 +19900127,300,189,1,0 +19900127,300,195,1,0 +19900127,300,196,1,0 +19900127,300,197,1,0 +19900127,300,198,1,0 +19900127,300,201,1,0 +19900127,300,202,1,0 +19900127,300,205,1,0 +19900127,300,208,1,0 +19900127,300,209,1,0 +19900127,300,210,1,0 +19900127,300,211,1,0 +19900127,300,212,1,0 +19900127,300,213,1,0 +19900127,300,228,1,0 +19900127,300,235,1,0 +19900127,300,236,111,289 +19900127,300,238,1,0 +19900127,300,59,1,0 +19900127,300,78,1,0 +19900127,300,79,1,0 +19900127,300,136,1,0 +19900127,300,137,1,0 +19900127,300,151,1,0 +19900127,300,159,1,0 +19900127,300,164,1,0 +19900127,300,165,1,0 +19900127,300,166,1,0 +19900127,300,167,1,0 +19900127,300,168,1,0 +19900127,300,186,1,0 +19900127,300,187,1,0 +19900127,300,188,1,0 +19900127,300,229,1,0 +19900127,300,230,1,0 +19900127,300,231,1,0 +19900127,300,232,1,0 +19900127,300,243,1,0 +19900127,300,244,1,0 +19900127,300,245,1,0 +19900127,300,228246,1,0 +19900127,300,228247,1,0 +19900127,600,133,100,1000 +19900127,600,133,100,975 +19900127,600,133,100,950 +19900127,600,133,100,925 +19900127,600,133,100,900 +19900127,600,133,100,875 +19900127,600,133,100,850 +19900127,600,133,100,825 +19900127,600,133,100,800 +19900127,600,133,100,775 +19900127,600,133,100,750 +19900127,600,133,100,740 +19900127,600,133,100,700 +19900127,600,133,100,650 +19900127,600,133,100,620 +19900127,600,133,100,600 +19900127,600,133,100,550 +19900127,600,133,100,500 +19900127,600,133,100,450 +19900127,600,133,100,400 +19900127,600,133,100,375 +19900127,600,133,100,350 +19900127,600,133,100,300 +19900127,600,133,100,250 +19900127,600,133,100,245 +19900127,600,133,100,225 +19900127,600,133,100,200 +19900127,600,133,100,175 +19900127,600,133,100,150 +19900127,600,133,100,125 +19900127,600,133,100,100 +19900127,600,133,100,70 +19900127,600,133,100,50 +19900127,600,133,100,30 +19900127,600,133,100,20 +19900127,600,133,100,10 +19900127,600,133,100,9 +19900127,600,133,100,7 +19900127,600,133,100,5 +19900127,600,133,100,3 +19900127,600,133,100,2 +19900127,600,133,100,1 +19900127,600,133,210,40 +19900127,600,3,117,2000 +19900127,600,133,109,1 +19900127,600,133,109,2 +19900127,600,133,109,3 +19900127,600,133,109,4 +19900127,600,133,109,5 +19900127,600,133,109,6 +19900127,600,133,109,7 +19900127,600,133,109,8 +19900127,600,133,109,9 +19900127,600,133,109,10 +19900127,600,246,109,1 +19900127,600,246,109,2 +19900127,600,246,109,3 +19900127,600,246,109,4 +19900127,600,246,109,5 +19900127,600,246,109,6 +19900127,600,246,109,7 +19900127,600,246,109,8 +19900127,600,246,109,9 +19900127,600,246,109,10 +19900127,600,247,109,1 +19900127,600,247,109,2 +19900127,600,247,109,3 +19900127,600,247,109,4 +19900127,600,247,109,5 +19900127,600,247,109,6 +19900127,600,247,109,7 +19900127,600,247,109,8 +19900127,600,247,109,9 +19900127,600,247,109,10 +19900127,600,248,109,1 +19900127,600,248,109,2 +19900127,600,248,109,3 +19900127,600,248,109,4 +19900127,600,248,109,5 +19900127,600,248,109,6 +19900127,600,248,109,7 +19900127,600,248,109,8 +19900127,600,248,109,9 +19900127,600,248,109,10 +19900127,600,8,1,0 +19900127,600,31,1,0 +19900127,600,32,1,0 +19900127,600,33,1,0 +19900127,600,34,1,0 +19900127,600,35,111,7 +19900127,600,36,111,28 +19900127,600,37,111,100 +19900127,600,38,111,289 +19900127,600,39,111,7 +19900127,600,40,111,28 +19900127,600,41,111,100 +19900127,600,42,111,289 +19900127,600,44,1,0 +19900127,600,45,1,0 +19900127,600,49,1,0 +19900127,600,50,1,0 +19900127,600,57,1,0 +19900127,600,58,1,0 +19900127,600,123,1,0 +19900127,600,139,111,7 +19900127,600,141,1,0 +19900127,600,142,1,0 +19900127,600,143,1,0 +19900127,600,144,1,0 +19900127,600,145,1,0 +19900127,600,146,1,0 +19900127,600,147,1,0 +19900127,600,148,1,0 +19900127,600,169,1,0 +19900127,600,170,111,28 +19900127,600,172,1,0 +19900127,600,175,1,0 +19900127,600,176,1,0 +19900127,600,177,1,0 +19900127,600,178,1,0 +19900127,600,179,1,0 +19900127,600,180,1,0 +19900127,600,181,1,0 +19900127,600,182,1,0 +19900127,600,183,111,100 +19900127,600,189,1,0 +19900127,600,195,1,0 +19900127,600,196,1,0 +19900127,600,197,1,0 +19900127,600,198,1,0 +19900127,600,201,1,0 +19900127,600,202,1,0 +19900127,600,205,1,0 +19900127,600,208,1,0 +19900127,600,209,1,0 +19900127,600,210,1,0 +19900127,600,211,1,0 +19900127,600,212,1,0 +19900127,600,213,1,0 +19900127,600,228,1,0 +19900127,600,235,1,0 +19900127,600,236,111,289 +19900127,600,238,1,0 +19900127,600,59,1,0 +19900127,600,78,1,0 +19900127,600,79,1,0 +19900127,600,136,1,0 +19900127,600,137,1,0 +19900127,600,151,1,0 +19900127,600,159,1,0 +19900127,600,164,1,0 +19900127,600,165,1,0 +19900127,600,166,1,0 +19900127,600,167,1,0 +19900127,600,168,1,0 +19900127,600,186,1,0 +19900127,600,187,1,0 +19900127,600,188,1,0 +19900127,600,229,1,0 +19900127,600,230,1,0 +19900127,600,231,1,0 +19900127,600,232,1,0 +19900127,600,243,1,0 +19900127,600,244,1,0 +19900127,600,245,1,0 +19900127,600,228246,1,0 +19900127,600,228247,1,0 +19900127,900,8,1,0 +19900127,900,31,1,0 +19900127,900,32,1,0 +19900127,900,33,1,0 +19900127,900,34,1,0 +19900127,900,35,111,7 +19900127,900,36,111,28 +19900127,900,37,111,100 +19900127,900,38,111,289 +19900127,900,39,111,7 +19900127,900,40,111,28 +19900127,900,41,111,100 +19900127,900,42,111,289 +19900127,900,44,1,0 +19900127,900,45,1,0 +19900127,900,49,1,0 +19900127,900,50,1,0 +19900127,900,57,1,0 +19900127,900,58,1,0 +19900127,900,123,1,0 +19900127,900,139,111,7 +19900127,900,141,1,0 +19900127,900,142,1,0 +19900127,900,143,1,0 +19900127,900,144,1,0 +19900127,900,145,1,0 +19900127,900,146,1,0 +19900127,900,147,1,0 +19900127,900,148,1,0 +19900127,900,169,1,0 +19900127,900,170,111,28 +19900127,900,172,1,0 +19900127,900,175,1,0 +19900127,900,176,1,0 +19900127,900,177,1,0 +19900127,900,178,1,0 +19900127,900,179,1,0 +19900127,900,180,1,0 +19900127,900,181,1,0 +19900127,900,182,1,0 +19900127,900,183,111,100 +19900127,900,189,1,0 +19900127,900,195,1,0 +19900127,900,196,1,0 +19900127,900,197,1,0 +19900127,900,198,1,0 +19900127,900,201,1,0 +19900127,900,202,1,0 +19900127,900,205,1,0 +19900127,900,208,1,0 +19900127,900,209,1,0 +19900127,900,210,1,0 +19900127,900,211,1,0 +19900127,900,212,1,0 +19900127,900,213,1,0 +19900127,900,228,1,0 +19900127,900,235,1,0 +19900127,900,236,111,289 +19900127,900,238,1,0 +19900127,900,59,1,0 +19900127,900,78,1,0 +19900127,900,79,1,0 +19900127,900,136,1,0 +19900127,900,137,1,0 +19900127,900,151,1,0 +19900127,900,159,1,0 +19900127,900,164,1,0 +19900127,900,165,1,0 +19900127,900,166,1,0 +19900127,900,167,1,0 +19900127,900,168,1,0 +19900127,900,186,1,0 +19900127,900,187,1,0 +19900127,900,188,1,0 +19900127,900,229,1,0 +19900127,900,230,1,0 +19900127,900,231,1,0 +19900127,900,232,1,0 +19900127,900,243,1,0 +19900127,900,244,1,0 +19900127,900,245,1,0 +19900127,900,228246,1,0 +19900127,900,228247,1,0 +19900127,1200,133,100,1000 +19900127,1200,133,100,975 +19900127,1200,133,100,950 +19900127,1200,133,100,925 +19900127,1200,133,100,900 +19900127,1200,133,100,875 +19900127,1200,133,100,850 +19900127,1200,133,100,825 +19900127,1200,133,100,800 +19900127,1200,133,100,775 +19900127,1200,133,100,750 +19900127,1200,133,100,740 +19900127,1200,133,100,700 +19900127,1200,133,100,650 +19900127,1200,133,100,620 +19900127,1200,133,100,600 +19900127,1200,133,100,550 +19900127,1200,133,100,500 +19900127,1200,133,100,450 +19900127,1200,133,100,400 +19900127,1200,133,100,375 +19900127,1200,133,100,350 +19900127,1200,133,100,300 +19900127,1200,133,100,250 +19900127,1200,133,100,245 +19900127,1200,133,100,225 +19900127,1200,133,100,200 +19900127,1200,133,100,175 +19900127,1200,133,100,150 +19900127,1200,133,100,125 +19900127,1200,133,100,100 +19900127,1200,133,100,70 +19900127,1200,133,100,50 +19900127,1200,133,100,30 +19900127,1200,133,100,20 +19900127,1200,133,100,10 +19900127,1200,133,100,9 +19900127,1200,133,100,7 +19900127,1200,133,100,5 +19900127,1200,133,100,3 +19900127,1200,133,100,2 +19900127,1200,133,100,1 +19900127,1200,133,210,40 +19900127,1200,3,117,2000 +19900127,1200,133,109,1 +19900127,1200,133,109,2 +19900127,1200,133,109,3 +19900127,1200,133,109,4 +19900127,1200,133,109,5 +19900127,1200,133,109,6 +19900127,1200,133,109,7 +19900127,1200,133,109,8 +19900127,1200,133,109,9 +19900127,1200,133,109,10 +19900127,1200,246,109,1 +19900127,1200,246,109,2 +19900127,1200,246,109,3 +19900127,1200,246,109,4 +19900127,1200,246,109,5 +19900127,1200,246,109,6 +19900127,1200,246,109,7 +19900127,1200,246,109,8 +19900127,1200,246,109,9 +19900127,1200,246,109,10 +19900127,1200,247,109,1 +19900127,1200,247,109,2 +19900127,1200,247,109,3 +19900127,1200,247,109,4 +19900127,1200,247,109,5 +19900127,1200,247,109,6 +19900127,1200,247,109,7 +19900127,1200,247,109,8 +19900127,1200,247,109,9 +19900127,1200,247,109,10 +19900127,1200,248,109,1 +19900127,1200,248,109,2 +19900127,1200,248,109,3 +19900127,1200,248,109,4 +19900127,1200,248,109,5 +19900127,1200,248,109,6 +19900127,1200,248,109,7 +19900127,1200,248,109,8 +19900127,1200,248,109,9 +19900127,1200,248,109,10 +19900127,1200,8,1,0 +19900127,1200,31,1,0 +19900127,1200,32,1,0 +19900127,1200,33,1,0 +19900127,1200,34,1,0 +19900127,1200,35,111,7 +19900127,1200,36,111,28 +19900127,1200,37,111,100 +19900127,1200,38,111,289 +19900127,1200,39,111,7 +19900127,1200,40,111,28 +19900127,1200,41,111,100 +19900127,1200,42,111,289 +19900127,1200,44,1,0 +19900127,1200,45,1,0 +19900127,1200,49,1,0 +19900127,1200,50,1,0 +19900127,1200,57,1,0 +19900127,1200,58,1,0 +19900127,1200,123,1,0 +19900127,1200,139,111,7 +19900127,1200,141,1,0 +19900127,1200,142,1,0 +19900127,1200,143,1,0 +19900127,1200,144,1,0 +19900127,1200,145,1,0 +19900127,1200,146,1,0 +19900127,1200,147,1,0 +19900127,1200,148,1,0 +19900127,1200,169,1,0 +19900127,1200,170,111,28 +19900127,1200,172,1,0 +19900127,1200,175,1,0 +19900127,1200,176,1,0 +19900127,1200,177,1,0 +19900127,1200,178,1,0 +19900127,1200,179,1,0 +19900127,1200,180,1,0 +19900127,1200,181,1,0 +19900127,1200,182,1,0 +19900127,1200,183,111,100 +19900127,1200,189,1,0 +19900127,1200,195,1,0 +19900127,1200,196,1,0 +19900127,1200,197,1,0 +19900127,1200,198,1,0 +19900127,1200,201,1,0 +19900127,1200,202,1,0 +19900127,1200,205,1,0 +19900127,1200,208,1,0 +19900127,1200,209,1,0 +19900127,1200,210,1,0 +19900127,1200,211,1,0 +19900127,1200,212,1,0 +19900127,1200,213,1,0 +19900127,1200,228,1,0 +19900127,1200,235,1,0 +19900127,1200,236,111,289 +19900127,1200,238,1,0 +19900127,1200,59,1,0 +19900127,1200,78,1,0 +19900127,1200,79,1,0 +19900127,1200,136,1,0 +19900127,1200,137,1,0 +19900127,1200,151,1,0 +19900127,1200,159,1,0 +19900127,1200,164,1,0 +19900127,1200,165,1,0 +19900127,1200,166,1,0 +19900127,1200,167,1,0 +19900127,1200,168,1,0 +19900127,1200,186,1,0 +19900127,1200,187,1,0 +19900127,1200,188,1,0 +19900127,1200,229,1,0 +19900127,1200,230,1,0 +19900127,1200,231,1,0 +19900127,1200,232,1,0 +19900127,1200,243,1,0 +19900127,1200,244,1,0 +19900127,1200,245,1,0 +19900127,1200,228246,1,0 +19900127,1200,228247,1,0 +19900127,1500,8,1,0 +19900127,1500,31,1,0 +19900127,1500,32,1,0 +19900127,1500,33,1,0 +19900127,1500,34,1,0 +19900127,1500,35,111,7 +19900127,1500,36,111,28 +19900127,1500,37,111,100 +19900127,1500,38,111,289 +19900127,1500,39,111,7 +19900127,1500,40,111,28 +19900127,1500,41,111,100 +19900127,1500,42,111,289 +19900127,1500,44,1,0 +19900127,1500,45,1,0 +19900127,1500,49,1,0 +19900127,1500,50,1,0 +19900127,1500,57,1,0 +19900127,1500,58,1,0 +19900127,1500,123,1,0 +19900127,1500,139,111,7 +19900127,1500,141,1,0 +19900127,1500,142,1,0 +19900127,1500,143,1,0 +19900127,1500,144,1,0 +19900127,1500,145,1,0 +19900127,1500,146,1,0 +19900127,1500,147,1,0 +19900127,1500,148,1,0 +19900127,1500,169,1,0 +19900127,1500,170,111,28 +19900127,1500,172,1,0 +19900127,1500,175,1,0 +19900127,1500,176,1,0 +19900127,1500,177,1,0 +19900127,1500,178,1,0 +19900127,1500,179,1,0 +19900127,1500,180,1,0 +19900127,1500,181,1,0 +19900127,1500,182,1,0 +19900127,1500,183,111,100 +19900127,1500,189,1,0 +19900127,1500,195,1,0 +19900127,1500,196,1,0 +19900127,1500,197,1,0 +19900127,1500,198,1,0 +19900127,1500,201,1,0 +19900127,1500,202,1,0 +19900127,1500,205,1,0 +19900127,1500,208,1,0 +19900127,1500,209,1,0 +19900127,1500,210,1,0 +19900127,1500,211,1,0 +19900127,1500,212,1,0 +19900127,1500,213,1,0 +19900127,1500,228,1,0 +19900127,1500,235,1,0 +19900127,1500,236,111,289 +19900127,1500,238,1,0 +19900127,1500,59,1,0 +19900127,1500,78,1,0 +19900127,1500,79,1,0 +19900127,1500,136,1,0 +19900127,1500,137,1,0 +19900127,1500,151,1,0 +19900127,1500,159,1,0 +19900127,1500,164,1,0 +19900127,1500,165,1,0 +19900127,1500,166,1,0 +19900127,1500,167,1,0 +19900127,1500,168,1,0 +19900127,1500,186,1,0 +19900127,1500,187,1,0 +19900127,1500,188,1,0 +19900127,1500,229,1,0 +19900127,1500,230,1,0 +19900127,1500,231,1,0 +19900127,1500,232,1,0 +19900127,1500,243,1,0 +19900127,1500,244,1,0 +19900127,1500,245,1,0 +19900127,1500,228246,1,0 +19900127,1500,228247,1,0 +19900127,1800,133,100,1000 +19900127,1800,133,100,975 +19900127,1800,133,100,950 +19900127,1800,133,100,925 +19900127,1800,133,100,900 +19900127,1800,133,100,875 +19900127,1800,133,100,850 +19900127,1800,133,100,825 +19900127,1800,133,100,800 +19900127,1800,133,100,775 +19900127,1800,133,100,750 +19900127,1800,133,100,740 +19900127,1800,133,100,700 +19900127,1800,133,100,650 +19900127,1800,133,100,620 +19900127,1800,133,100,600 +19900127,1800,133,100,550 +19900127,1800,133,100,500 +19900127,1800,133,100,450 +19900127,1800,133,100,400 +19900127,1800,133,100,375 +19900127,1800,133,100,350 +19900127,1800,133,100,300 +19900127,1800,133,100,250 +19900127,1800,133,100,245 +19900127,1800,133,100,225 +19900127,1800,133,100,200 +19900127,1800,133,100,175 +19900127,1800,133,100,150 +19900127,1800,133,100,125 +19900127,1800,133,100,100 +19900127,1800,133,100,70 +19900127,1800,133,100,50 +19900127,1800,133,100,30 +19900127,1800,133,100,20 +19900127,1800,133,100,10 +19900127,1800,133,100,9 +19900127,1800,133,100,7 +19900127,1800,133,100,5 +19900127,1800,133,100,3 +19900127,1800,133,100,2 +19900127,1800,133,100,1 +19900127,1800,133,210,40 +19900127,1800,3,117,2000 +19900127,1800,133,109,1 +19900127,1800,133,109,2 +19900127,1800,133,109,3 +19900127,1800,133,109,4 +19900127,1800,133,109,5 +19900127,1800,133,109,6 +19900127,1800,133,109,7 +19900127,1800,133,109,8 +19900127,1800,133,109,9 +19900127,1800,133,109,10 +19900127,1800,246,109,1 +19900127,1800,246,109,2 +19900127,1800,246,109,3 +19900127,1800,246,109,4 +19900127,1800,246,109,5 +19900127,1800,246,109,6 +19900127,1800,246,109,7 +19900127,1800,246,109,8 +19900127,1800,246,109,9 +19900127,1800,246,109,10 +19900127,1800,247,109,1 +19900127,1800,247,109,2 +19900127,1800,247,109,3 +19900127,1800,247,109,4 +19900127,1800,247,109,5 +19900127,1800,247,109,6 +19900127,1800,247,109,7 +19900127,1800,247,109,8 +19900127,1800,247,109,9 +19900127,1800,247,109,10 +19900127,1800,248,109,1 +19900127,1800,248,109,2 +19900127,1800,248,109,3 +19900127,1800,248,109,4 +19900127,1800,248,109,5 +19900127,1800,248,109,6 +19900127,1800,248,109,7 +19900127,1800,248,109,8 +19900127,1800,248,109,9 +19900127,1800,248,109,10 +19900127,1800,8,1,0 +19900127,1800,31,1,0 +19900127,1800,32,1,0 +19900127,1800,33,1,0 +19900127,1800,34,1,0 +19900127,1800,35,111,7 +19900127,1800,36,111,28 +19900127,1800,37,111,100 +19900127,1800,38,111,289 +19900127,1800,39,111,7 +19900127,1800,40,111,28 +19900127,1800,41,111,100 +19900127,1800,42,111,289 +19900127,1800,44,1,0 +19900127,1800,45,1,0 +19900127,1800,49,1,0 +19900127,1800,50,1,0 +19900127,1800,57,1,0 +19900127,1800,58,1,0 +19900127,1800,123,1,0 +19900127,1800,139,111,7 +19900127,1800,141,1,0 +19900127,1800,142,1,0 +19900127,1800,143,1,0 +19900127,1800,144,1,0 +19900127,1800,145,1,0 +19900127,1800,146,1,0 +19900127,1800,147,1,0 +19900127,1800,148,1,0 +19900127,1800,169,1,0 +19900127,1800,170,111,28 +19900127,1800,172,1,0 +19900127,1800,175,1,0 +19900127,1800,176,1,0 +19900127,1800,177,1,0 +19900127,1800,178,1,0 +19900127,1800,179,1,0 +19900127,1800,180,1,0 +19900127,1800,181,1,0 +19900127,1800,182,1,0 +19900127,1800,183,111,100 +19900127,1800,189,1,0 +19900127,1800,195,1,0 +19900127,1800,196,1,0 +19900127,1800,197,1,0 +19900127,1800,198,1,0 +19900127,1800,201,1,0 +19900127,1800,202,1,0 +19900127,1800,205,1,0 +19900127,1800,208,1,0 +19900127,1800,209,1,0 +19900127,1800,210,1,0 +19900127,1800,211,1,0 +19900127,1800,212,1,0 +19900127,1800,213,1,0 +19900127,1800,228,1,0 +19900127,1800,235,1,0 +19900127,1800,236,111,289 +19900127,1800,238,1,0 +19900127,1800,59,1,0 +19900127,1800,78,1,0 +19900127,1800,79,1,0 +19900127,1800,136,1,0 +19900127,1800,137,1,0 +19900127,1800,151,1,0 +19900127,1800,159,1,0 +19900127,1800,164,1,0 +19900127,1800,165,1,0 +19900127,1800,166,1,0 +19900127,1800,167,1,0 +19900127,1800,168,1,0 +19900127,1800,186,1,0 +19900127,1800,187,1,0 +19900127,1800,188,1,0 +19900127,1800,229,1,0 +19900127,1800,230,1,0 +19900127,1800,231,1,0 +19900127,1800,232,1,0 +19900127,1800,243,1,0 +19900127,1800,244,1,0 +19900127,1800,245,1,0 +19900127,1800,228246,1,0 +19900127,1800,228247,1,0 +19900127,2100,8,1,0 +19900127,2100,31,1,0 +19900127,2100,32,1,0 +19900127,2100,33,1,0 +19900127,2100,34,1,0 +19900127,2100,35,111,7 +19900127,2100,36,111,28 +19900127,2100,37,111,100 +19900127,2100,38,111,289 +19900127,2100,39,111,7 +19900127,2100,40,111,28 +19900127,2100,41,111,100 +19900127,2100,42,111,289 +19900127,2100,44,1,0 +19900127,2100,45,1,0 +19900127,2100,49,1,0 +19900127,2100,50,1,0 +19900127,2100,57,1,0 +19900127,2100,58,1,0 +19900127,2100,123,1,0 +19900127,2100,139,111,7 +19900127,2100,141,1,0 +19900127,2100,142,1,0 +19900127,2100,143,1,0 +19900127,2100,144,1,0 +19900127,2100,145,1,0 +19900127,2100,146,1,0 +19900127,2100,147,1,0 +19900127,2100,148,1,0 +19900127,2100,169,1,0 +19900127,2100,170,111,28 +19900127,2100,172,1,0 +19900127,2100,175,1,0 +19900127,2100,176,1,0 +19900127,2100,177,1,0 +19900127,2100,178,1,0 +19900127,2100,179,1,0 +19900127,2100,180,1,0 +19900127,2100,181,1,0 +19900127,2100,182,1,0 +19900127,2100,183,111,100 +19900127,2100,189,1,0 +19900127,2100,195,1,0 +19900127,2100,196,1,0 +19900127,2100,197,1,0 +19900127,2100,198,1,0 +19900127,2100,201,1,0 +19900127,2100,202,1,0 +19900127,2100,205,1,0 +19900127,2100,208,1,0 +19900127,2100,209,1,0 +19900127,2100,210,1,0 +19900127,2100,211,1,0 +19900127,2100,212,1,0 +19900127,2100,213,1,0 +19900127,2100,228,1,0 +19900127,2100,235,1,0 +19900127,2100,236,111,289 +19900127,2100,238,1,0 +19900127,2100,59,1,0 +19900127,2100,78,1,0 +19900127,2100,79,1,0 +19900127,2100,136,1,0 +19900127,2100,137,1,0 +19900127,2100,151,1,0 +19900127,2100,159,1,0 +19900127,2100,164,1,0 +19900127,2100,165,1,0 +19900127,2100,166,1,0 +19900127,2100,167,1,0 +19900127,2100,168,1,0 +19900127,2100,186,1,0 +19900127,2100,187,1,0 +19900127,2100,188,1,0 +19900127,2100,229,1,0 +19900127,2100,230,1,0 +19900127,2100,231,1,0 +19900127,2100,232,1,0 +19900127,2100,243,1,0 +19900127,2100,244,1,0 +19900127,2100,245,1,0 +19900127,2100,228246,1,0 +19900127,2100,228247,1,0 +19900128,0,133,100,1000 +19900128,0,133,100,975 +19900128,0,133,100,950 +19900128,0,133,100,925 +19900128,0,133,100,900 +19900128,0,133,100,875 +19900128,0,133,100,850 +19900128,0,133,100,825 +19900128,0,133,100,800 +19900128,0,133,100,775 +19900128,0,133,100,750 +19900128,0,133,100,740 +19900128,0,133,100,700 +19900128,0,133,100,650 +19900128,0,133,100,620 +19900128,0,133,100,600 +19900128,0,133,100,550 +19900128,0,133,100,500 +19900128,0,133,100,450 +19900128,0,133,100,400 +19900128,0,133,100,375 +19900128,0,133,100,350 +19900128,0,133,100,300 +19900128,0,133,100,250 +19900128,0,133,100,245 +19900128,0,133,100,225 +19900128,0,133,100,200 +19900128,0,133,100,175 +19900128,0,133,100,150 +19900128,0,133,100,125 +19900128,0,133,100,100 +19900128,0,133,100,70 +19900128,0,133,100,50 +19900128,0,133,100,30 +19900128,0,133,100,20 +19900128,0,133,100,10 +19900128,0,133,100,9 +19900128,0,133,100,7 +19900128,0,133,100,5 +19900128,0,133,100,3 +19900128,0,133,100,2 +19900128,0,133,100,1 +19900128,0,133,210,40 +19900128,0,3,117,2000 +19900128,0,133,109,1 +19900128,0,133,109,2 +19900128,0,133,109,3 +19900128,0,133,109,4 +19900128,0,133,109,5 +19900128,0,133,109,6 +19900128,0,133,109,7 +19900128,0,133,109,8 +19900128,0,133,109,9 +19900128,0,133,109,10 +19900128,0,246,109,1 +19900128,0,246,109,2 +19900128,0,246,109,3 +19900128,0,246,109,4 +19900128,0,246,109,5 +19900128,0,246,109,6 +19900128,0,246,109,7 +19900128,0,246,109,8 +19900128,0,246,109,9 +19900128,0,246,109,10 +19900128,0,247,109,1 +19900128,0,247,109,2 +19900128,0,247,109,3 +19900128,0,247,109,4 +19900128,0,247,109,5 +19900128,0,247,109,6 +19900128,0,247,109,7 +19900128,0,247,109,8 +19900128,0,247,109,9 +19900128,0,247,109,10 +19900128,0,248,109,1 +19900128,0,248,109,2 +19900128,0,248,109,3 +19900128,0,248,109,4 +19900128,0,248,109,5 +19900128,0,248,109,6 +19900128,0,248,109,7 +19900128,0,248,109,8 +19900128,0,248,109,9 +19900128,0,248,109,10 +19900128,0,8,1,0 +19900128,0,31,1,0 +19900128,0,32,1,0 +19900128,0,33,1,0 +19900128,0,34,1,0 +19900128,0,35,111,7 +19900128,0,36,111,28 +19900128,0,37,111,100 +19900128,0,38,111,289 +19900128,0,39,111,7 +19900128,0,40,111,28 +19900128,0,41,111,100 +19900128,0,42,111,289 +19900128,0,44,1,0 +19900128,0,45,1,0 +19900128,0,49,1,0 +19900128,0,50,1,0 +19900128,0,57,1,0 +19900128,0,58,1,0 +19900128,0,123,1,0 +19900128,0,139,111,7 +19900128,0,141,1,0 +19900128,0,142,1,0 +19900128,0,143,1,0 +19900128,0,144,1,0 +19900128,0,145,1,0 +19900128,0,146,1,0 +19900128,0,147,1,0 +19900128,0,148,1,0 +19900128,0,169,1,0 +19900128,0,170,111,28 +19900128,0,172,1,0 +19900128,0,175,1,0 +19900128,0,176,1,0 +19900128,0,177,1,0 +19900128,0,178,1,0 +19900128,0,179,1,0 +19900128,0,180,1,0 +19900128,0,181,1,0 +19900128,0,182,1,0 +19900128,0,183,111,100 +19900128,0,189,1,0 +19900128,0,195,1,0 +19900128,0,196,1,0 +19900128,0,197,1,0 +19900128,0,198,1,0 +19900128,0,201,1,0 +19900128,0,202,1,0 +19900128,0,205,1,0 +19900128,0,208,1,0 +19900128,0,209,1,0 +19900128,0,210,1,0 +19900128,0,211,1,0 +19900128,0,212,1,0 +19900128,0,213,1,0 +19900128,0,228,1,0 +19900128,0,235,1,0 +19900128,0,236,111,289 +19900128,0,238,1,0 +19900128,0,59,1,0 +19900128,0,78,1,0 +19900128,0,79,1,0 +19900128,0,136,1,0 +19900128,0,137,1,0 +19900128,0,151,1,0 +19900128,0,159,1,0 +19900128,0,164,1,0 +19900128,0,165,1,0 +19900128,0,166,1,0 +19900128,0,167,1,0 +19900128,0,168,1,0 +19900128,0,186,1,0 +19900128,0,187,1,0 +19900128,0,188,1,0 +19900128,0,229,1,0 +19900128,0,230,1,0 +19900128,0,231,1,0 +19900128,0,232,1,0 +19900128,0,243,1,0 +19900128,0,244,1,0 +19900128,0,245,1,0 +19900128,0,228246,1,0 +19900128,0,228247,1,0 +19900128,300,8,1,0 +19900128,300,31,1,0 +19900128,300,32,1,0 +19900128,300,33,1,0 +19900128,300,34,1,0 +19900128,300,35,111,7 +19900128,300,36,111,28 +19900128,300,37,111,100 +19900128,300,38,111,289 +19900128,300,39,111,7 +19900128,300,40,111,28 +19900128,300,41,111,100 +19900128,300,42,111,289 +19900128,300,44,1,0 +19900128,300,45,1,0 +19900128,300,49,1,0 +19900128,300,50,1,0 +19900128,300,57,1,0 +19900128,300,58,1,0 +19900128,300,123,1,0 +19900128,300,139,111,7 +19900128,300,141,1,0 +19900128,300,142,1,0 +19900128,300,143,1,0 +19900128,300,144,1,0 +19900128,300,145,1,0 +19900128,300,146,1,0 +19900128,300,147,1,0 +19900128,300,148,1,0 +19900128,300,169,1,0 +19900128,300,170,111,28 +19900128,300,172,1,0 +19900128,300,175,1,0 +19900128,300,176,1,0 +19900128,300,177,1,0 +19900128,300,178,1,0 +19900128,300,179,1,0 +19900128,300,180,1,0 +19900128,300,181,1,0 +19900128,300,182,1,0 +19900128,300,183,111,100 +19900128,300,189,1,0 +19900128,300,195,1,0 +19900128,300,196,1,0 +19900128,300,197,1,0 +19900128,300,198,1,0 +19900128,300,201,1,0 +19900128,300,202,1,0 +19900128,300,205,1,0 +19900128,300,208,1,0 +19900128,300,209,1,0 +19900128,300,210,1,0 +19900128,300,211,1,0 +19900128,300,212,1,0 +19900128,300,213,1,0 +19900128,300,228,1,0 +19900128,300,235,1,0 +19900128,300,236,111,289 +19900128,300,238,1,0 +19900128,300,59,1,0 +19900128,300,78,1,0 +19900128,300,79,1,0 +19900128,300,136,1,0 +19900128,300,137,1,0 +19900128,300,151,1,0 +19900128,300,159,1,0 +19900128,300,164,1,0 +19900128,300,165,1,0 +19900128,300,166,1,0 +19900128,300,167,1,0 +19900128,300,168,1,0 +19900128,300,186,1,0 +19900128,300,187,1,0 +19900128,300,188,1,0 +19900128,300,229,1,0 +19900128,300,230,1,0 +19900128,300,231,1,0 +19900128,300,232,1,0 +19900128,300,243,1,0 +19900128,300,244,1,0 +19900128,300,245,1,0 +19900128,300,228246,1,0 +19900128,300,228247,1,0 +19900128,600,133,100,1000 +19900128,600,133,100,975 +19900128,600,133,100,950 +19900128,600,133,100,925 +19900128,600,133,100,900 +19900128,600,133,100,875 +19900128,600,133,100,850 +19900128,600,133,100,825 +19900128,600,133,100,800 +19900128,600,133,100,775 +19900128,600,133,100,750 +19900128,600,133,100,740 +19900128,600,133,100,700 +19900128,600,133,100,650 +19900128,600,133,100,620 +19900128,600,133,100,600 +19900128,600,133,100,550 +19900128,600,133,100,500 +19900128,600,133,100,450 +19900128,600,133,100,400 +19900128,600,133,100,375 +19900128,600,133,100,350 +19900128,600,133,100,300 +19900128,600,133,100,250 +19900128,600,133,100,245 +19900128,600,133,100,225 +19900128,600,133,100,200 +19900128,600,133,100,175 +19900128,600,133,100,150 +19900128,600,133,100,125 +19900128,600,133,100,100 +19900128,600,133,100,70 +19900128,600,133,100,50 +19900128,600,133,100,30 +19900128,600,133,100,20 +19900128,600,133,100,10 +19900128,600,133,100,9 +19900128,600,133,100,7 +19900128,600,133,100,5 +19900128,600,133,100,3 +19900128,600,133,100,2 +19900128,600,133,100,1 +19900128,600,133,210,40 +19900128,600,3,117,2000 +19900128,600,133,109,1 +19900128,600,133,109,2 +19900128,600,133,109,3 +19900128,600,133,109,4 +19900128,600,133,109,5 +19900128,600,133,109,6 +19900128,600,133,109,7 +19900128,600,133,109,8 +19900128,600,133,109,9 +19900128,600,133,109,10 +19900128,600,246,109,1 +19900128,600,246,109,2 +19900128,600,246,109,3 +19900128,600,246,109,4 +19900128,600,246,109,5 +19900128,600,246,109,6 +19900128,600,246,109,7 +19900128,600,246,109,8 +19900128,600,246,109,9 +19900128,600,246,109,10 +19900128,600,247,109,1 +19900128,600,247,109,2 +19900128,600,247,109,3 +19900128,600,247,109,4 +19900128,600,247,109,5 +19900128,600,247,109,6 +19900128,600,247,109,7 +19900128,600,247,109,8 +19900128,600,247,109,9 +19900128,600,247,109,10 +19900128,600,248,109,1 +19900128,600,248,109,2 +19900128,600,248,109,3 +19900128,600,248,109,4 +19900128,600,248,109,5 +19900128,600,248,109,6 +19900128,600,248,109,7 +19900128,600,248,109,8 +19900128,600,248,109,9 +19900128,600,248,109,10 +19900128,600,8,1,0 +19900128,600,31,1,0 +19900128,600,32,1,0 +19900128,600,33,1,0 +19900128,600,34,1,0 +19900128,600,35,111,7 +19900128,600,36,111,28 +19900128,600,37,111,100 +19900128,600,38,111,289 +19900128,600,39,111,7 +19900128,600,40,111,28 +19900128,600,41,111,100 +19900128,600,42,111,289 +19900128,600,44,1,0 +19900128,600,45,1,0 +19900128,600,49,1,0 +19900128,600,50,1,0 +19900128,600,57,1,0 +19900128,600,58,1,0 +19900128,600,123,1,0 +19900128,600,139,111,7 +19900128,600,141,1,0 +19900128,600,142,1,0 +19900128,600,143,1,0 +19900128,600,144,1,0 +19900128,600,145,1,0 +19900128,600,146,1,0 +19900128,600,147,1,0 +19900128,600,148,1,0 +19900128,600,169,1,0 +19900128,600,170,111,28 +19900128,600,172,1,0 +19900128,600,175,1,0 +19900128,600,176,1,0 +19900128,600,177,1,0 +19900128,600,178,1,0 +19900128,600,179,1,0 +19900128,600,180,1,0 +19900128,600,181,1,0 +19900128,600,182,1,0 +19900128,600,183,111,100 +19900128,600,189,1,0 +19900128,600,195,1,0 +19900128,600,196,1,0 +19900128,600,197,1,0 +19900128,600,198,1,0 +19900128,600,201,1,0 +19900128,600,202,1,0 +19900128,600,205,1,0 +19900128,600,208,1,0 +19900128,600,209,1,0 +19900128,600,210,1,0 +19900128,600,211,1,0 +19900128,600,212,1,0 +19900128,600,213,1,0 +19900128,600,228,1,0 +19900128,600,235,1,0 +19900128,600,236,111,289 +19900128,600,238,1,0 +19900128,600,59,1,0 +19900128,600,78,1,0 +19900128,600,79,1,0 +19900128,600,136,1,0 +19900128,600,137,1,0 +19900128,600,151,1,0 +19900128,600,159,1,0 +19900128,600,164,1,0 +19900128,600,165,1,0 +19900128,600,166,1,0 +19900128,600,167,1,0 +19900128,600,168,1,0 +19900128,600,186,1,0 +19900128,600,187,1,0 +19900128,600,188,1,0 +19900128,600,229,1,0 +19900128,600,230,1,0 +19900128,600,231,1,0 +19900128,600,232,1,0 +19900128,600,243,1,0 +19900128,600,244,1,0 +19900128,600,245,1,0 +19900128,600,228246,1,0 +19900128,600,228247,1,0 +19900128,900,8,1,0 +19900128,900,31,1,0 +19900128,900,32,1,0 +19900128,900,33,1,0 +19900128,900,34,1,0 +19900128,900,35,111,7 +19900128,900,36,111,28 +19900128,900,37,111,100 +19900128,900,38,111,289 +19900128,900,39,111,7 +19900128,900,40,111,28 +19900128,900,41,111,100 +19900128,900,42,111,289 +19900128,900,44,1,0 +19900128,900,45,1,0 +19900128,900,49,1,0 +19900128,900,50,1,0 +19900128,900,57,1,0 +19900128,900,58,1,0 +19900128,900,123,1,0 +19900128,900,139,111,7 +19900128,900,141,1,0 +19900128,900,142,1,0 +19900128,900,143,1,0 +19900128,900,144,1,0 +19900128,900,145,1,0 +19900128,900,146,1,0 +19900128,900,147,1,0 +19900128,900,148,1,0 +19900128,900,169,1,0 +19900128,900,170,111,28 +19900128,900,172,1,0 +19900128,900,175,1,0 +19900128,900,176,1,0 +19900128,900,177,1,0 +19900128,900,178,1,0 +19900128,900,179,1,0 +19900128,900,180,1,0 +19900128,900,181,1,0 +19900128,900,182,1,0 +19900128,900,183,111,100 +19900128,900,189,1,0 +19900128,900,195,1,0 +19900128,900,196,1,0 +19900128,900,197,1,0 +19900128,900,198,1,0 +19900128,900,201,1,0 +19900128,900,202,1,0 +19900128,900,205,1,0 +19900128,900,208,1,0 +19900128,900,209,1,0 +19900128,900,210,1,0 +19900128,900,211,1,0 +19900128,900,212,1,0 +19900128,900,213,1,0 +19900128,900,228,1,0 +19900128,900,235,1,0 +19900128,900,236,111,289 +19900128,900,238,1,0 +19900128,900,59,1,0 +19900128,900,78,1,0 +19900128,900,79,1,0 +19900128,900,136,1,0 +19900128,900,137,1,0 +19900128,900,151,1,0 +19900128,900,159,1,0 +19900128,900,164,1,0 +19900128,900,165,1,0 +19900128,900,166,1,0 +19900128,900,167,1,0 +19900128,900,168,1,0 +19900128,900,186,1,0 +19900128,900,187,1,0 +19900128,900,188,1,0 +19900128,900,229,1,0 +19900128,900,230,1,0 +19900128,900,231,1,0 +19900128,900,232,1,0 +19900128,900,243,1,0 +19900128,900,244,1,0 +19900128,900,245,1,0 +19900128,900,228246,1,0 +19900128,900,228247,1,0 +19900128,1200,133,100,1000 +19900128,1200,133,100,975 +19900128,1200,133,100,950 +19900128,1200,133,100,925 +19900128,1200,133,100,900 +19900128,1200,133,100,875 +19900128,1200,133,100,850 +19900128,1200,133,100,825 +19900128,1200,133,100,800 +19900128,1200,133,100,775 +19900128,1200,133,100,750 +19900128,1200,133,100,740 +19900128,1200,133,100,700 +19900128,1200,133,100,650 +19900128,1200,133,100,620 +19900128,1200,133,100,600 +19900128,1200,133,100,550 +19900128,1200,133,100,500 +19900128,1200,133,100,450 +19900128,1200,133,100,400 +19900128,1200,133,100,375 +19900128,1200,133,100,350 +19900128,1200,133,100,300 +19900128,1200,133,100,250 +19900128,1200,133,100,245 +19900128,1200,133,100,225 +19900128,1200,133,100,200 +19900128,1200,133,100,175 +19900128,1200,133,100,150 +19900128,1200,133,100,125 +19900128,1200,133,100,100 +19900128,1200,133,100,70 +19900128,1200,133,100,50 +19900128,1200,133,100,30 +19900128,1200,133,100,20 +19900128,1200,133,100,10 +19900128,1200,133,100,9 +19900128,1200,133,100,7 +19900128,1200,133,100,5 +19900128,1200,133,100,3 +19900128,1200,133,100,2 +19900128,1200,133,100,1 +19900128,1200,133,210,40 +19900128,1200,3,117,2000 +19900128,1200,133,109,1 +19900128,1200,133,109,2 +19900128,1200,133,109,3 +19900128,1200,133,109,4 +19900128,1200,133,109,5 +19900128,1200,133,109,6 +19900128,1200,133,109,7 +19900128,1200,133,109,8 +19900128,1200,133,109,9 +19900128,1200,133,109,10 +19900128,1200,246,109,1 +19900128,1200,246,109,2 +19900128,1200,246,109,3 +19900128,1200,246,109,4 +19900128,1200,246,109,5 +19900128,1200,246,109,6 +19900128,1200,246,109,7 +19900128,1200,246,109,8 +19900128,1200,246,109,9 +19900128,1200,246,109,10 +19900128,1200,247,109,1 +19900128,1200,247,109,2 +19900128,1200,247,109,3 +19900128,1200,247,109,4 +19900128,1200,247,109,5 +19900128,1200,247,109,6 +19900128,1200,247,109,7 +19900128,1200,247,109,8 +19900128,1200,247,109,9 +19900128,1200,247,109,10 +19900128,1200,248,109,1 +19900128,1200,248,109,2 +19900128,1200,248,109,3 +19900128,1200,248,109,4 +19900128,1200,248,109,5 +19900128,1200,248,109,6 +19900128,1200,248,109,7 +19900128,1200,248,109,8 +19900128,1200,248,109,9 +19900128,1200,248,109,10 +19900128,1200,8,1,0 +19900128,1200,31,1,0 +19900128,1200,32,1,0 +19900128,1200,33,1,0 +19900128,1200,34,1,0 +19900128,1200,35,111,7 +19900128,1200,36,111,28 +19900128,1200,37,111,100 +19900128,1200,38,111,289 +19900128,1200,39,111,7 +19900128,1200,40,111,28 +19900128,1200,41,111,100 +19900128,1200,42,111,289 +19900128,1200,44,1,0 +19900128,1200,45,1,0 +19900128,1200,49,1,0 +19900128,1200,50,1,0 +19900128,1200,57,1,0 +19900128,1200,58,1,0 +19900128,1200,123,1,0 +19900128,1200,139,111,7 +19900128,1200,141,1,0 +19900128,1200,142,1,0 +19900128,1200,143,1,0 +19900128,1200,144,1,0 +19900128,1200,145,1,0 +19900128,1200,146,1,0 +19900128,1200,147,1,0 +19900128,1200,148,1,0 +19900128,1200,169,1,0 +19900128,1200,170,111,28 +19900128,1200,172,1,0 +19900128,1200,175,1,0 +19900128,1200,176,1,0 +19900128,1200,177,1,0 +19900128,1200,178,1,0 +19900128,1200,179,1,0 +19900128,1200,180,1,0 +19900128,1200,181,1,0 +19900128,1200,182,1,0 +19900128,1200,183,111,100 +19900128,1200,189,1,0 +19900128,1200,195,1,0 +19900128,1200,196,1,0 +19900128,1200,197,1,0 +19900128,1200,198,1,0 +19900128,1200,201,1,0 +19900128,1200,202,1,0 +19900128,1200,205,1,0 +19900128,1200,208,1,0 +19900128,1200,209,1,0 +19900128,1200,210,1,0 +19900128,1200,211,1,0 +19900128,1200,212,1,0 +19900128,1200,213,1,0 +19900128,1200,228,1,0 +19900128,1200,235,1,0 +19900128,1200,236,111,289 +19900128,1200,238,1,0 +19900128,1200,59,1,0 +19900128,1200,78,1,0 +19900128,1200,79,1,0 +19900128,1200,136,1,0 +19900128,1200,137,1,0 +19900128,1200,151,1,0 +19900128,1200,159,1,0 +19900128,1200,164,1,0 +19900128,1200,165,1,0 +19900128,1200,166,1,0 +19900128,1200,167,1,0 +19900128,1200,168,1,0 +19900128,1200,186,1,0 +19900128,1200,187,1,0 +19900128,1200,188,1,0 +19900128,1200,229,1,0 +19900128,1200,230,1,0 +19900128,1200,231,1,0 +19900128,1200,232,1,0 +19900128,1200,243,1,0 +19900128,1200,244,1,0 +19900128,1200,245,1,0 +19900128,1200,228246,1,0 +19900128,1200,228247,1,0 +19900128,1500,8,1,0 +19900128,1500,31,1,0 +19900128,1500,32,1,0 +19900128,1500,33,1,0 +19900128,1500,34,1,0 +19900128,1500,35,111,7 +19900128,1500,36,111,28 +19900128,1500,37,111,100 +19900128,1500,38,111,289 +19900128,1500,39,111,7 +19900128,1500,40,111,28 +19900128,1500,41,111,100 +19900128,1500,42,111,289 +19900128,1500,44,1,0 +19900128,1500,45,1,0 +19900128,1500,49,1,0 +19900128,1500,50,1,0 +19900128,1500,57,1,0 +19900128,1500,58,1,0 +19900128,1500,123,1,0 +19900128,1500,139,111,7 +19900128,1500,141,1,0 +19900128,1500,142,1,0 +19900128,1500,143,1,0 +19900128,1500,144,1,0 +19900128,1500,145,1,0 +19900128,1500,146,1,0 +19900128,1500,147,1,0 +19900128,1500,148,1,0 +19900128,1500,169,1,0 +19900128,1500,170,111,28 +19900128,1500,172,1,0 +19900128,1500,175,1,0 +19900128,1500,176,1,0 +19900128,1500,177,1,0 +19900128,1500,178,1,0 +19900128,1500,179,1,0 +19900128,1500,180,1,0 +19900128,1500,181,1,0 +19900128,1500,182,1,0 +19900128,1500,183,111,100 +19900128,1500,189,1,0 +19900128,1500,195,1,0 +19900128,1500,196,1,0 +19900128,1500,197,1,0 +19900128,1500,198,1,0 +19900128,1500,201,1,0 +19900128,1500,202,1,0 +19900128,1500,205,1,0 +19900128,1500,208,1,0 +19900128,1500,209,1,0 +19900128,1500,210,1,0 +19900128,1500,211,1,0 +19900128,1500,212,1,0 +19900128,1500,213,1,0 +19900128,1500,228,1,0 +19900128,1500,235,1,0 +19900128,1500,236,111,289 +19900128,1500,238,1,0 +19900128,1500,59,1,0 +19900128,1500,78,1,0 +19900128,1500,79,1,0 +19900128,1500,136,1,0 +19900128,1500,137,1,0 +19900128,1500,151,1,0 +19900128,1500,159,1,0 +19900128,1500,164,1,0 +19900128,1500,165,1,0 +19900128,1500,166,1,0 +19900128,1500,167,1,0 +19900128,1500,168,1,0 +19900128,1500,186,1,0 +19900128,1500,187,1,0 +19900128,1500,188,1,0 +19900128,1500,229,1,0 +19900128,1500,230,1,0 +19900128,1500,231,1,0 +19900128,1500,232,1,0 +19900128,1500,243,1,0 +19900128,1500,244,1,0 +19900128,1500,245,1,0 +19900128,1500,228246,1,0 +19900128,1500,228247,1,0 +19900128,1800,133,100,1000 +19900128,1800,133,100,975 +19900128,1800,133,100,950 +19900128,1800,133,100,925 +19900128,1800,133,100,900 +19900128,1800,133,100,875 +19900128,1800,133,100,850 +19900128,1800,133,100,825 +19900128,1800,133,100,800 +19900128,1800,133,100,775 +19900128,1800,133,100,750 +19900128,1800,133,100,740 +19900128,1800,133,100,700 +19900128,1800,133,100,650 +19900128,1800,133,100,620 +19900128,1800,133,100,600 +19900128,1800,133,100,550 +19900128,1800,133,100,500 +19900128,1800,133,100,450 +19900128,1800,133,100,400 +19900128,1800,133,100,375 +19900128,1800,133,100,350 +19900128,1800,133,100,300 +19900128,1800,133,100,250 +19900128,1800,133,100,245 +19900128,1800,133,100,225 +19900128,1800,133,100,200 +19900128,1800,133,100,175 +19900128,1800,133,100,150 +19900128,1800,133,100,125 +19900128,1800,133,100,100 +19900128,1800,133,100,70 +19900128,1800,133,100,50 +19900128,1800,133,100,30 +19900128,1800,133,100,20 +19900128,1800,133,100,10 +19900128,1800,133,100,9 +19900128,1800,133,100,7 +19900128,1800,133,100,5 +19900128,1800,133,100,3 +19900128,1800,133,100,2 +19900128,1800,133,100,1 +19900128,1800,133,210,40 +19900128,1800,3,117,2000 +19900128,1800,133,109,1 +19900128,1800,133,109,2 +19900128,1800,133,109,3 +19900128,1800,133,109,4 +19900128,1800,133,109,5 +19900128,1800,133,109,6 +19900128,1800,133,109,7 +19900128,1800,133,109,8 +19900128,1800,133,109,9 +19900128,1800,133,109,10 +19900128,1800,246,109,1 +19900128,1800,246,109,2 +19900128,1800,246,109,3 +19900128,1800,246,109,4 +19900128,1800,246,109,5 +19900128,1800,246,109,6 +19900128,1800,246,109,7 +19900128,1800,246,109,8 +19900128,1800,246,109,9 +19900128,1800,246,109,10 +19900128,1800,247,109,1 +19900128,1800,247,109,2 +19900128,1800,247,109,3 +19900128,1800,247,109,4 +19900128,1800,247,109,5 +19900128,1800,247,109,6 +19900128,1800,247,109,7 +19900128,1800,247,109,8 +19900128,1800,247,109,9 +19900128,1800,247,109,10 +19900128,1800,248,109,1 +19900128,1800,248,109,2 +19900128,1800,248,109,3 +19900128,1800,248,109,4 +19900128,1800,248,109,5 +19900128,1800,248,109,6 +19900128,1800,248,109,7 +19900128,1800,248,109,8 +19900128,1800,248,109,9 +19900128,1800,248,109,10 +19900128,1800,8,1,0 +19900128,1800,31,1,0 +19900128,1800,32,1,0 +19900128,1800,33,1,0 +19900128,1800,34,1,0 +19900128,1800,35,111,7 +19900128,1800,36,111,28 +19900128,1800,37,111,100 +19900128,1800,38,111,289 +19900128,1800,39,111,7 +19900128,1800,40,111,28 +19900128,1800,41,111,100 +19900128,1800,42,111,289 +19900128,1800,44,1,0 +19900128,1800,45,1,0 +19900128,1800,49,1,0 +19900128,1800,50,1,0 +19900128,1800,57,1,0 +19900128,1800,58,1,0 +19900128,1800,123,1,0 +19900128,1800,139,111,7 +19900128,1800,141,1,0 +19900128,1800,142,1,0 +19900128,1800,143,1,0 +19900128,1800,144,1,0 +19900128,1800,145,1,0 +19900128,1800,146,1,0 +19900128,1800,147,1,0 +19900128,1800,148,1,0 +19900128,1800,169,1,0 +19900128,1800,170,111,28 +19900128,1800,172,1,0 +19900128,1800,175,1,0 +19900128,1800,176,1,0 +19900128,1800,177,1,0 +19900128,1800,178,1,0 +19900128,1800,179,1,0 +19900128,1800,180,1,0 +19900128,1800,181,1,0 +19900128,1800,182,1,0 +19900128,1800,183,111,100 +19900128,1800,189,1,0 +19900128,1800,195,1,0 +19900128,1800,196,1,0 +19900128,1800,197,1,0 +19900128,1800,198,1,0 +19900128,1800,201,1,0 +19900128,1800,202,1,0 +19900128,1800,205,1,0 +19900128,1800,208,1,0 +19900128,1800,209,1,0 +19900128,1800,210,1,0 +19900128,1800,211,1,0 +19900128,1800,212,1,0 +19900128,1800,213,1,0 +19900128,1800,228,1,0 +19900128,1800,235,1,0 +19900128,1800,236,111,289 +19900128,1800,238,1,0 +19900128,1800,59,1,0 +19900128,1800,78,1,0 +19900128,1800,79,1,0 +19900128,1800,136,1,0 +19900128,1800,137,1,0 +19900128,1800,151,1,0 +19900128,1800,159,1,0 +19900128,1800,164,1,0 +19900128,1800,165,1,0 +19900128,1800,166,1,0 +19900128,1800,167,1,0 +19900128,1800,168,1,0 +19900128,1800,186,1,0 +19900128,1800,187,1,0 +19900128,1800,188,1,0 +19900128,1800,229,1,0 +19900128,1800,230,1,0 +19900128,1800,231,1,0 +19900128,1800,232,1,0 +19900128,1800,243,1,0 +19900128,1800,244,1,0 +19900128,1800,245,1,0 +19900128,1800,228246,1,0 +19900128,1800,228247,1,0 +19900128,2100,8,1,0 +19900128,2100,31,1,0 +19900128,2100,32,1,0 +19900128,2100,33,1,0 +19900128,2100,34,1,0 +19900128,2100,35,111,7 +19900128,2100,36,111,28 +19900128,2100,37,111,100 +19900128,2100,38,111,289 +19900128,2100,39,111,7 +19900128,2100,40,111,28 +19900128,2100,41,111,100 +19900128,2100,42,111,289 +19900128,2100,44,1,0 +19900128,2100,45,1,0 +19900128,2100,49,1,0 +19900128,2100,50,1,0 +19900128,2100,57,1,0 +19900128,2100,58,1,0 +19900128,2100,123,1,0 +19900128,2100,139,111,7 +19900128,2100,141,1,0 +19900128,2100,142,1,0 +19900128,2100,143,1,0 +19900128,2100,144,1,0 +19900128,2100,145,1,0 +19900128,2100,146,1,0 +19900128,2100,147,1,0 +19900128,2100,148,1,0 +19900128,2100,169,1,0 +19900128,2100,170,111,28 +19900128,2100,172,1,0 +19900128,2100,175,1,0 +19900128,2100,176,1,0 +19900128,2100,177,1,0 +19900128,2100,178,1,0 +19900128,2100,179,1,0 +19900128,2100,180,1,0 +19900128,2100,181,1,0 +19900128,2100,182,1,0 +19900128,2100,183,111,100 +19900128,2100,189,1,0 +19900128,2100,195,1,0 +19900128,2100,196,1,0 +19900128,2100,197,1,0 +19900128,2100,198,1,0 +19900128,2100,201,1,0 +19900128,2100,202,1,0 +19900128,2100,205,1,0 +19900128,2100,208,1,0 +19900128,2100,209,1,0 +19900128,2100,210,1,0 +19900128,2100,211,1,0 +19900128,2100,212,1,0 +19900128,2100,213,1,0 +19900128,2100,228,1,0 +19900128,2100,235,1,0 +19900128,2100,236,111,289 +19900128,2100,238,1,0 +19900128,2100,59,1,0 +19900128,2100,78,1,0 +19900128,2100,79,1,0 +19900128,2100,136,1,0 +19900128,2100,137,1,0 +19900128,2100,151,1,0 +19900128,2100,159,1,0 +19900128,2100,164,1,0 +19900128,2100,165,1,0 +19900128,2100,166,1,0 +19900128,2100,167,1,0 +19900128,2100,168,1,0 +19900128,2100,186,1,0 +19900128,2100,187,1,0 +19900128,2100,188,1,0 +19900128,2100,229,1,0 +19900128,2100,230,1,0 +19900128,2100,231,1,0 +19900128,2100,232,1,0 +19900128,2100,243,1,0 +19900128,2100,244,1,0 +19900128,2100,245,1,0 +19900128,2100,228246,1,0 +19900128,2100,228247,1,0 +19900129,0,133,100,1000 +19900129,0,133,100,975 +19900129,0,133,100,950 +19900129,0,133,100,925 +19900129,0,133,100,900 +19900129,0,133,100,875 +19900129,0,133,100,850 +19900129,0,133,100,825 +19900129,0,133,100,800 +19900129,0,133,100,775 +19900129,0,133,100,750 +19900129,0,133,100,740 +19900129,0,133,100,700 +19900129,0,133,100,650 +19900129,0,133,100,620 +19900129,0,133,100,600 +19900129,0,133,100,550 +19900129,0,133,100,500 +19900129,0,133,100,450 +19900129,0,133,100,400 +19900129,0,133,100,375 +19900129,0,133,100,350 +19900129,0,133,100,300 +19900129,0,133,100,250 +19900129,0,133,100,245 +19900129,0,133,100,225 +19900129,0,133,100,200 +19900129,0,133,100,175 +19900129,0,133,100,150 +19900129,0,133,100,125 +19900129,0,133,100,100 +19900129,0,133,100,70 +19900129,0,133,100,50 +19900129,0,133,100,30 +19900129,0,133,100,20 +19900129,0,133,100,10 +19900129,0,133,100,9 +19900129,0,133,100,7 +19900129,0,133,100,5 +19900129,0,133,100,3 +19900129,0,133,100,2 +19900129,0,133,100,1 +19900129,0,133,210,40 +19900129,0,3,117,2000 +19900129,0,133,109,1 +19900129,0,133,109,2 +19900129,0,133,109,3 +19900129,0,133,109,4 +19900129,0,133,109,5 +19900129,0,133,109,6 +19900129,0,133,109,7 +19900129,0,133,109,8 +19900129,0,133,109,9 +19900129,0,133,109,10 +19900129,0,246,109,1 +19900129,0,246,109,2 +19900129,0,246,109,3 +19900129,0,246,109,4 +19900129,0,246,109,5 +19900129,0,246,109,6 +19900129,0,246,109,7 +19900129,0,246,109,8 +19900129,0,246,109,9 +19900129,0,246,109,10 +19900129,0,247,109,1 +19900129,0,247,109,2 +19900129,0,247,109,3 +19900129,0,247,109,4 +19900129,0,247,109,5 +19900129,0,247,109,6 +19900129,0,247,109,7 +19900129,0,247,109,8 +19900129,0,247,109,9 +19900129,0,247,109,10 +19900129,0,248,109,1 +19900129,0,248,109,2 +19900129,0,248,109,3 +19900129,0,248,109,4 +19900129,0,248,109,5 +19900129,0,248,109,6 +19900129,0,248,109,7 +19900129,0,248,109,8 +19900129,0,248,109,9 +19900129,0,248,109,10 +19900129,0,8,1,0 +19900129,0,31,1,0 +19900129,0,32,1,0 +19900129,0,33,1,0 +19900129,0,34,1,0 +19900129,0,35,111,7 +19900129,0,36,111,28 +19900129,0,37,111,100 +19900129,0,38,111,289 +19900129,0,39,111,7 +19900129,0,40,111,28 +19900129,0,41,111,100 +19900129,0,42,111,289 +19900129,0,44,1,0 +19900129,0,45,1,0 +19900129,0,49,1,0 +19900129,0,50,1,0 +19900129,0,57,1,0 +19900129,0,58,1,0 +19900129,0,123,1,0 +19900129,0,139,111,7 +19900129,0,141,1,0 +19900129,0,142,1,0 +19900129,0,143,1,0 +19900129,0,144,1,0 +19900129,0,145,1,0 +19900129,0,146,1,0 +19900129,0,147,1,0 +19900129,0,148,1,0 +19900129,0,169,1,0 +19900129,0,170,111,28 +19900129,0,172,1,0 +19900129,0,175,1,0 +19900129,0,176,1,0 +19900129,0,177,1,0 +19900129,0,178,1,0 +19900129,0,179,1,0 +19900129,0,180,1,0 +19900129,0,181,1,0 +19900129,0,182,1,0 +19900129,0,183,111,100 +19900129,0,189,1,0 +19900129,0,195,1,0 +19900129,0,196,1,0 +19900129,0,197,1,0 +19900129,0,198,1,0 +19900129,0,201,1,0 +19900129,0,202,1,0 +19900129,0,205,1,0 +19900129,0,208,1,0 +19900129,0,209,1,0 +19900129,0,210,1,0 +19900129,0,211,1,0 +19900129,0,212,1,0 +19900129,0,213,1,0 +19900129,0,228,1,0 +19900129,0,235,1,0 +19900129,0,236,111,289 +19900129,0,238,1,0 +19900129,0,59,1,0 +19900129,0,78,1,0 +19900129,0,79,1,0 +19900129,0,136,1,0 +19900129,0,137,1,0 +19900129,0,151,1,0 +19900129,0,159,1,0 +19900129,0,164,1,0 +19900129,0,165,1,0 +19900129,0,166,1,0 +19900129,0,167,1,0 +19900129,0,168,1,0 +19900129,0,186,1,0 +19900129,0,187,1,0 +19900129,0,188,1,0 +19900129,0,229,1,0 +19900129,0,230,1,0 +19900129,0,231,1,0 +19900129,0,232,1,0 +19900129,0,243,1,0 +19900129,0,244,1,0 +19900129,0,245,1,0 +19900129,0,228246,1,0 +19900129,0,228247,1,0 +19900129,300,8,1,0 +19900129,300,31,1,0 +19900129,300,32,1,0 +19900129,300,33,1,0 +19900129,300,34,1,0 +19900129,300,35,111,7 +19900129,300,36,111,28 +19900129,300,37,111,100 +19900129,300,38,111,289 +19900129,300,39,111,7 +19900129,300,40,111,28 +19900129,300,41,111,100 +19900129,300,42,111,289 +19900129,300,44,1,0 +19900129,300,45,1,0 +19900129,300,49,1,0 +19900129,300,50,1,0 +19900129,300,57,1,0 +19900129,300,58,1,0 +19900129,300,123,1,0 +19900129,300,139,111,7 +19900129,300,141,1,0 +19900129,300,142,1,0 +19900129,300,143,1,0 +19900129,300,144,1,0 +19900129,300,145,1,0 +19900129,300,146,1,0 +19900129,300,147,1,0 +19900129,300,148,1,0 +19900129,300,169,1,0 +19900129,300,170,111,28 +19900129,300,172,1,0 +19900129,300,175,1,0 +19900129,300,176,1,0 +19900129,300,177,1,0 +19900129,300,178,1,0 +19900129,300,179,1,0 +19900129,300,180,1,0 +19900129,300,181,1,0 +19900129,300,182,1,0 +19900129,300,183,111,100 +19900129,300,189,1,0 +19900129,300,195,1,0 +19900129,300,196,1,0 +19900129,300,197,1,0 +19900129,300,198,1,0 +19900129,300,201,1,0 +19900129,300,202,1,0 +19900129,300,205,1,0 +19900129,300,208,1,0 +19900129,300,209,1,0 +19900129,300,210,1,0 +19900129,300,211,1,0 +19900129,300,212,1,0 +19900129,300,213,1,0 +19900129,300,228,1,0 +19900129,300,235,1,0 +19900129,300,236,111,289 +19900129,300,238,1,0 +19900129,300,59,1,0 +19900129,300,78,1,0 +19900129,300,79,1,0 +19900129,300,136,1,0 +19900129,300,137,1,0 +19900129,300,151,1,0 +19900129,300,159,1,0 +19900129,300,164,1,0 +19900129,300,165,1,0 +19900129,300,166,1,0 +19900129,300,167,1,0 +19900129,300,168,1,0 +19900129,300,186,1,0 +19900129,300,187,1,0 +19900129,300,188,1,0 +19900129,300,229,1,0 +19900129,300,230,1,0 +19900129,300,231,1,0 +19900129,300,232,1,0 +19900129,300,243,1,0 +19900129,300,244,1,0 +19900129,300,245,1,0 +19900129,300,228246,1,0 +19900129,300,228247,1,0 +19900129,600,133,100,1000 +19900129,600,133,100,975 +19900129,600,133,100,950 +19900129,600,133,100,925 +19900129,600,133,100,900 +19900129,600,133,100,875 +19900129,600,133,100,850 +19900129,600,133,100,825 +19900129,600,133,100,800 +19900129,600,133,100,775 +19900129,600,133,100,750 +19900129,600,133,100,740 +19900129,600,133,100,700 +19900129,600,133,100,650 +19900129,600,133,100,620 +19900129,600,133,100,600 +19900129,600,133,100,550 +19900129,600,133,100,500 +19900129,600,133,100,450 +19900129,600,133,100,400 +19900129,600,133,100,375 +19900129,600,133,100,350 +19900129,600,133,100,300 +19900129,600,133,100,250 +19900129,600,133,100,245 +19900129,600,133,100,225 +19900129,600,133,100,200 +19900129,600,133,100,175 +19900129,600,133,100,150 +19900129,600,133,100,125 +19900129,600,133,100,100 +19900129,600,133,100,70 +19900129,600,133,100,50 +19900129,600,133,100,30 +19900129,600,133,100,20 +19900129,600,133,100,10 +19900129,600,133,100,9 +19900129,600,133,100,7 +19900129,600,133,100,5 +19900129,600,133,100,3 +19900129,600,133,100,2 +19900129,600,133,100,1 +19900129,600,133,210,40 +19900129,600,3,117,2000 +19900129,600,133,109,1 +19900129,600,133,109,2 +19900129,600,133,109,3 +19900129,600,133,109,4 +19900129,600,133,109,5 +19900129,600,133,109,6 +19900129,600,133,109,7 +19900129,600,133,109,8 +19900129,600,133,109,9 +19900129,600,133,109,10 +19900129,600,246,109,1 +19900129,600,246,109,2 +19900129,600,246,109,3 +19900129,600,246,109,4 +19900129,600,246,109,5 +19900129,600,246,109,6 +19900129,600,246,109,7 +19900129,600,246,109,8 +19900129,600,246,109,9 +19900129,600,246,109,10 +19900129,600,247,109,1 +19900129,600,247,109,2 +19900129,600,247,109,3 +19900129,600,247,109,4 +19900129,600,247,109,5 +19900129,600,247,109,6 +19900129,600,247,109,7 +19900129,600,247,109,8 +19900129,600,247,109,9 +19900129,600,247,109,10 +19900129,600,248,109,1 +19900129,600,248,109,2 +19900129,600,248,109,3 +19900129,600,248,109,4 +19900129,600,248,109,5 +19900129,600,248,109,6 +19900129,600,248,109,7 +19900129,600,248,109,8 +19900129,600,248,109,9 +19900129,600,248,109,10 +19900129,600,8,1,0 +19900129,600,31,1,0 +19900129,600,32,1,0 +19900129,600,33,1,0 +19900129,600,34,1,0 +19900129,600,35,111,7 +19900129,600,36,111,28 +19900129,600,37,111,100 +19900129,600,38,111,289 +19900129,600,39,111,7 +19900129,600,40,111,28 +19900129,600,41,111,100 +19900129,600,42,111,289 +19900129,600,44,1,0 +19900129,600,45,1,0 +19900129,600,49,1,0 +19900129,600,50,1,0 +19900129,600,57,1,0 +19900129,600,58,1,0 +19900129,600,123,1,0 +19900129,600,139,111,7 +19900129,600,141,1,0 +19900129,600,142,1,0 +19900129,600,143,1,0 +19900129,600,144,1,0 +19900129,600,145,1,0 +19900129,600,146,1,0 +19900129,600,147,1,0 +19900129,600,148,1,0 +19900129,600,169,1,0 +19900129,600,170,111,28 +19900129,600,172,1,0 +19900129,600,175,1,0 +19900129,600,176,1,0 +19900129,600,177,1,0 +19900129,600,178,1,0 +19900129,600,179,1,0 +19900129,600,180,1,0 +19900129,600,181,1,0 +19900129,600,182,1,0 +19900129,600,183,111,100 +19900129,600,189,1,0 +19900129,600,195,1,0 +19900129,600,196,1,0 +19900129,600,197,1,0 +19900129,600,198,1,0 +19900129,600,201,1,0 +19900129,600,202,1,0 +19900129,600,205,1,0 +19900129,600,208,1,0 +19900129,600,209,1,0 +19900129,600,210,1,0 +19900129,600,211,1,0 +19900129,600,212,1,0 +19900129,600,213,1,0 +19900129,600,228,1,0 +19900129,600,235,1,0 +19900129,600,236,111,289 +19900129,600,238,1,0 +19900129,600,59,1,0 +19900129,600,78,1,0 +19900129,600,79,1,0 +19900129,600,136,1,0 +19900129,600,137,1,0 +19900129,600,151,1,0 +19900129,600,159,1,0 +19900129,600,164,1,0 +19900129,600,165,1,0 +19900129,600,166,1,0 +19900129,600,167,1,0 +19900129,600,168,1,0 +19900129,600,186,1,0 +19900129,600,187,1,0 +19900129,600,188,1,0 +19900129,600,229,1,0 +19900129,600,230,1,0 +19900129,600,231,1,0 +19900129,600,232,1,0 +19900129,600,243,1,0 +19900129,600,244,1,0 +19900129,600,245,1,0 +19900129,600,228246,1,0 +19900129,600,228247,1,0 +19900129,900,8,1,0 +19900129,900,31,1,0 +19900129,900,32,1,0 +19900129,900,33,1,0 +19900129,900,34,1,0 +19900129,900,35,111,7 +19900129,900,36,111,28 +19900129,900,37,111,100 +19900129,900,38,111,289 +19900129,900,39,111,7 +19900129,900,40,111,28 +19900129,900,41,111,100 +19900129,900,42,111,289 +19900129,900,44,1,0 +19900129,900,45,1,0 +19900129,900,49,1,0 +19900129,900,50,1,0 +19900129,900,57,1,0 +19900129,900,58,1,0 +19900129,900,123,1,0 +19900129,900,139,111,7 +19900129,900,141,1,0 +19900129,900,142,1,0 +19900129,900,143,1,0 +19900129,900,144,1,0 +19900129,900,145,1,0 +19900129,900,146,1,0 +19900129,900,147,1,0 +19900129,900,148,1,0 +19900129,900,169,1,0 +19900129,900,170,111,28 +19900129,900,172,1,0 +19900129,900,175,1,0 +19900129,900,176,1,0 +19900129,900,177,1,0 +19900129,900,178,1,0 +19900129,900,179,1,0 +19900129,900,180,1,0 +19900129,900,181,1,0 +19900129,900,182,1,0 +19900129,900,183,111,100 +19900129,900,189,1,0 +19900129,900,195,1,0 +19900129,900,196,1,0 +19900129,900,197,1,0 +19900129,900,198,1,0 +19900129,900,201,1,0 +19900129,900,202,1,0 +19900129,900,205,1,0 +19900129,900,208,1,0 +19900129,900,209,1,0 +19900129,900,210,1,0 +19900129,900,211,1,0 +19900129,900,212,1,0 +19900129,900,213,1,0 +19900129,900,228,1,0 +19900129,900,235,1,0 +19900129,900,236,111,289 +19900129,900,238,1,0 +19900129,900,59,1,0 +19900129,900,78,1,0 +19900129,900,79,1,0 +19900129,900,136,1,0 +19900129,900,137,1,0 +19900129,900,151,1,0 +19900129,900,159,1,0 +19900129,900,164,1,0 +19900129,900,165,1,0 +19900129,900,166,1,0 +19900129,900,167,1,0 +19900129,900,168,1,0 +19900129,900,186,1,0 +19900129,900,187,1,0 +19900129,900,188,1,0 +19900129,900,229,1,0 +19900129,900,230,1,0 +19900129,900,231,1,0 +19900129,900,232,1,0 +19900129,900,243,1,0 +19900129,900,244,1,0 +19900129,900,245,1,0 +19900129,900,228246,1,0 +19900129,900,228247,1,0 +19900129,1200,133,100,1000 +19900129,1200,133,100,975 +19900129,1200,133,100,950 +19900129,1200,133,100,925 +19900129,1200,133,100,900 +19900129,1200,133,100,875 +19900129,1200,133,100,850 +19900129,1200,133,100,825 +19900129,1200,133,100,800 +19900129,1200,133,100,775 +19900129,1200,133,100,750 +19900129,1200,133,100,740 +19900129,1200,133,100,700 +19900129,1200,133,100,650 +19900129,1200,133,100,620 +19900129,1200,133,100,600 +19900129,1200,133,100,550 +19900129,1200,133,100,500 +19900129,1200,133,100,450 +19900129,1200,133,100,400 +19900129,1200,133,100,375 +19900129,1200,133,100,350 +19900129,1200,133,100,300 +19900129,1200,133,100,250 +19900129,1200,133,100,245 +19900129,1200,133,100,225 +19900129,1200,133,100,200 +19900129,1200,133,100,175 +19900129,1200,133,100,150 +19900129,1200,133,100,125 +19900129,1200,133,100,100 +19900129,1200,133,100,70 +19900129,1200,133,100,50 +19900129,1200,133,100,30 +19900129,1200,133,100,20 +19900129,1200,133,100,10 +19900129,1200,133,100,9 +19900129,1200,133,100,7 +19900129,1200,133,100,5 +19900129,1200,133,100,3 +19900129,1200,133,100,2 +19900129,1200,133,100,1 +19900129,1200,133,210,40 +19900129,1200,3,117,2000 +19900129,1200,133,109,1 +19900129,1200,133,109,2 +19900129,1200,133,109,3 +19900129,1200,133,109,4 +19900129,1200,133,109,5 +19900129,1200,133,109,6 +19900129,1200,133,109,7 +19900129,1200,133,109,8 +19900129,1200,133,109,9 +19900129,1200,133,109,10 +19900129,1200,246,109,1 +19900129,1200,246,109,2 +19900129,1200,246,109,3 +19900129,1200,246,109,4 +19900129,1200,246,109,5 +19900129,1200,246,109,6 +19900129,1200,246,109,7 +19900129,1200,246,109,8 +19900129,1200,246,109,9 +19900129,1200,246,109,10 +19900129,1200,247,109,1 +19900129,1200,247,109,2 +19900129,1200,247,109,3 +19900129,1200,247,109,4 +19900129,1200,247,109,5 +19900129,1200,247,109,6 +19900129,1200,247,109,7 +19900129,1200,247,109,8 +19900129,1200,247,109,9 +19900129,1200,247,109,10 +19900129,1200,248,109,1 +19900129,1200,248,109,2 +19900129,1200,248,109,3 +19900129,1200,248,109,4 +19900129,1200,248,109,5 +19900129,1200,248,109,6 +19900129,1200,248,109,7 +19900129,1200,248,109,8 +19900129,1200,248,109,9 +19900129,1200,248,109,10 +19900129,1200,8,1,0 +19900129,1200,31,1,0 +19900129,1200,32,1,0 +19900129,1200,33,1,0 +19900129,1200,34,1,0 +19900129,1200,35,111,7 +19900129,1200,36,111,28 +19900129,1200,37,111,100 +19900129,1200,38,111,289 +19900129,1200,39,111,7 +19900129,1200,40,111,28 +19900129,1200,41,111,100 +19900129,1200,42,111,289 +19900129,1200,44,1,0 +19900129,1200,45,1,0 +19900129,1200,49,1,0 +19900129,1200,50,1,0 +19900129,1200,57,1,0 +19900129,1200,58,1,0 +19900129,1200,123,1,0 +19900129,1200,139,111,7 +19900129,1200,141,1,0 +19900129,1200,142,1,0 +19900129,1200,143,1,0 +19900129,1200,144,1,0 +19900129,1200,145,1,0 +19900129,1200,146,1,0 +19900129,1200,147,1,0 +19900129,1200,148,1,0 +19900129,1200,169,1,0 +19900129,1200,170,111,28 +19900129,1200,172,1,0 +19900129,1200,175,1,0 +19900129,1200,176,1,0 +19900129,1200,177,1,0 +19900129,1200,178,1,0 +19900129,1200,179,1,0 +19900129,1200,180,1,0 +19900129,1200,181,1,0 +19900129,1200,182,1,0 +19900129,1200,183,111,100 +19900129,1200,189,1,0 +19900129,1200,195,1,0 +19900129,1200,196,1,0 +19900129,1200,197,1,0 +19900129,1200,198,1,0 +19900129,1200,201,1,0 +19900129,1200,202,1,0 +19900129,1200,205,1,0 +19900129,1200,208,1,0 +19900129,1200,209,1,0 +19900129,1200,210,1,0 +19900129,1200,211,1,0 +19900129,1200,212,1,0 +19900129,1200,213,1,0 +19900129,1200,228,1,0 +19900129,1200,235,1,0 +19900129,1200,236,111,289 +19900129,1200,238,1,0 +19900129,1200,59,1,0 +19900129,1200,78,1,0 +19900129,1200,79,1,0 +19900129,1200,136,1,0 +19900129,1200,137,1,0 +19900129,1200,151,1,0 +19900129,1200,159,1,0 +19900129,1200,164,1,0 +19900129,1200,165,1,0 +19900129,1200,166,1,0 +19900129,1200,167,1,0 +19900129,1200,168,1,0 +19900129,1200,186,1,0 +19900129,1200,187,1,0 +19900129,1200,188,1,0 +19900129,1200,229,1,0 +19900129,1200,230,1,0 +19900129,1200,231,1,0 +19900129,1200,232,1,0 +19900129,1200,243,1,0 +19900129,1200,244,1,0 +19900129,1200,245,1,0 +19900129,1200,228246,1,0 +19900129,1200,228247,1,0 +19900129,1500,8,1,0 +19900129,1500,31,1,0 +19900129,1500,32,1,0 +19900129,1500,33,1,0 +19900129,1500,34,1,0 +19900129,1500,35,111,7 +19900129,1500,36,111,28 +19900129,1500,37,111,100 +19900129,1500,38,111,289 +19900129,1500,39,111,7 +19900129,1500,40,111,28 +19900129,1500,41,111,100 +19900129,1500,42,111,289 +19900129,1500,44,1,0 +19900129,1500,45,1,0 +19900129,1500,49,1,0 +19900129,1500,50,1,0 +19900129,1500,57,1,0 +19900129,1500,58,1,0 +19900129,1500,123,1,0 +19900129,1500,139,111,7 +19900129,1500,141,1,0 +19900129,1500,142,1,0 +19900129,1500,143,1,0 +19900129,1500,144,1,0 +19900129,1500,145,1,0 +19900129,1500,146,1,0 +19900129,1500,147,1,0 +19900129,1500,148,1,0 +19900129,1500,169,1,0 +19900129,1500,170,111,28 +19900129,1500,172,1,0 +19900129,1500,175,1,0 +19900129,1500,176,1,0 +19900129,1500,177,1,0 +19900129,1500,178,1,0 +19900129,1500,179,1,0 +19900129,1500,180,1,0 +19900129,1500,181,1,0 +19900129,1500,182,1,0 +19900129,1500,183,111,100 +19900129,1500,189,1,0 +19900129,1500,195,1,0 +19900129,1500,196,1,0 +19900129,1500,197,1,0 +19900129,1500,198,1,0 +19900129,1500,201,1,0 +19900129,1500,202,1,0 +19900129,1500,205,1,0 +19900129,1500,208,1,0 +19900129,1500,209,1,0 +19900129,1500,210,1,0 +19900129,1500,211,1,0 +19900129,1500,212,1,0 +19900129,1500,213,1,0 +19900129,1500,228,1,0 +19900129,1500,235,1,0 +19900129,1500,236,111,289 +19900129,1500,238,1,0 +19900129,1500,59,1,0 +19900129,1500,78,1,0 +19900129,1500,79,1,0 +19900129,1500,136,1,0 +19900129,1500,137,1,0 +19900129,1500,151,1,0 +19900129,1500,159,1,0 +19900129,1500,164,1,0 +19900129,1500,165,1,0 +19900129,1500,166,1,0 +19900129,1500,167,1,0 +19900129,1500,168,1,0 +19900129,1500,186,1,0 +19900129,1500,187,1,0 +19900129,1500,188,1,0 +19900129,1500,229,1,0 +19900129,1500,230,1,0 +19900129,1500,231,1,0 +19900129,1500,232,1,0 +19900129,1500,243,1,0 +19900129,1500,244,1,0 +19900129,1500,245,1,0 +19900129,1500,228246,1,0 +19900129,1500,228247,1,0 +19900129,1800,133,100,1000 +19900129,1800,133,100,975 +19900129,1800,133,100,950 +19900129,1800,133,100,925 +19900129,1800,133,100,900 +19900129,1800,133,100,875 +19900129,1800,133,100,850 +19900129,1800,133,100,825 +19900129,1800,133,100,800 +19900129,1800,133,100,775 +19900129,1800,133,100,750 +19900129,1800,133,100,740 +19900129,1800,133,100,700 +19900129,1800,133,100,650 +19900129,1800,133,100,620 +19900129,1800,133,100,600 +19900129,1800,133,100,550 +19900129,1800,133,100,500 +19900129,1800,133,100,450 +19900129,1800,133,100,400 +19900129,1800,133,100,375 +19900129,1800,133,100,350 +19900129,1800,133,100,300 +19900129,1800,133,100,250 +19900129,1800,133,100,245 +19900129,1800,133,100,225 +19900129,1800,133,100,200 +19900129,1800,133,100,175 +19900129,1800,133,100,150 +19900129,1800,133,100,125 +19900129,1800,133,100,100 +19900129,1800,133,100,70 +19900129,1800,133,100,50 +19900129,1800,133,100,30 +19900129,1800,133,100,20 +19900129,1800,133,100,10 +19900129,1800,133,100,9 +19900129,1800,133,100,7 +19900129,1800,133,100,5 +19900129,1800,133,100,3 +19900129,1800,133,100,2 +19900129,1800,133,100,1 +19900129,1800,133,210,40 +19900129,1800,3,117,2000 +19900129,1800,133,109,1 +19900129,1800,133,109,2 +19900129,1800,133,109,3 +19900129,1800,133,109,4 +19900129,1800,133,109,5 +19900129,1800,133,109,6 +19900129,1800,133,109,7 +19900129,1800,133,109,8 +19900129,1800,133,109,9 +19900129,1800,133,109,10 +19900129,1800,246,109,1 +19900129,1800,246,109,2 +19900129,1800,246,109,3 +19900129,1800,246,109,4 +19900129,1800,246,109,5 +19900129,1800,246,109,6 +19900129,1800,246,109,7 +19900129,1800,246,109,8 +19900129,1800,246,109,9 +19900129,1800,246,109,10 +19900129,1800,247,109,1 +19900129,1800,247,109,2 +19900129,1800,247,109,3 +19900129,1800,247,109,4 +19900129,1800,247,109,5 +19900129,1800,247,109,6 +19900129,1800,247,109,7 +19900129,1800,247,109,8 +19900129,1800,247,109,9 +19900129,1800,247,109,10 +19900129,1800,248,109,1 +19900129,1800,248,109,2 +19900129,1800,248,109,3 +19900129,1800,248,109,4 +19900129,1800,248,109,5 +19900129,1800,248,109,6 +19900129,1800,248,109,7 +19900129,1800,248,109,8 +19900129,1800,248,109,9 +19900129,1800,248,109,10 +19900129,1800,8,1,0 +19900129,1800,31,1,0 +19900129,1800,32,1,0 +19900129,1800,33,1,0 +19900129,1800,34,1,0 +19900129,1800,35,111,7 +19900129,1800,36,111,28 +19900129,1800,37,111,100 +19900129,1800,38,111,289 +19900129,1800,39,111,7 +19900129,1800,40,111,28 +19900129,1800,41,111,100 +19900129,1800,42,111,289 +19900129,1800,44,1,0 +19900129,1800,45,1,0 +19900129,1800,49,1,0 +19900129,1800,50,1,0 +19900129,1800,57,1,0 +19900129,1800,58,1,0 +19900129,1800,123,1,0 +19900129,1800,139,111,7 +19900129,1800,141,1,0 +19900129,1800,142,1,0 +19900129,1800,143,1,0 +19900129,1800,144,1,0 +19900129,1800,145,1,0 +19900129,1800,146,1,0 +19900129,1800,147,1,0 +19900129,1800,148,1,0 +19900129,1800,169,1,0 +19900129,1800,170,111,28 +19900129,1800,172,1,0 +19900129,1800,175,1,0 +19900129,1800,176,1,0 +19900129,1800,177,1,0 +19900129,1800,178,1,0 +19900129,1800,179,1,0 +19900129,1800,180,1,0 +19900129,1800,181,1,0 +19900129,1800,182,1,0 +19900129,1800,183,111,100 +19900129,1800,189,1,0 +19900129,1800,195,1,0 +19900129,1800,196,1,0 +19900129,1800,197,1,0 +19900129,1800,198,1,0 +19900129,1800,201,1,0 +19900129,1800,202,1,0 +19900129,1800,205,1,0 +19900129,1800,208,1,0 +19900129,1800,209,1,0 +19900129,1800,210,1,0 +19900129,1800,211,1,0 +19900129,1800,212,1,0 +19900129,1800,213,1,0 +19900129,1800,228,1,0 +19900129,1800,235,1,0 +19900129,1800,236,111,289 +19900129,1800,238,1,0 +19900129,1800,59,1,0 +19900129,1800,78,1,0 +19900129,1800,79,1,0 +19900129,1800,136,1,0 +19900129,1800,137,1,0 +19900129,1800,151,1,0 +19900129,1800,159,1,0 +19900129,1800,164,1,0 +19900129,1800,165,1,0 +19900129,1800,166,1,0 +19900129,1800,167,1,0 +19900129,1800,168,1,0 +19900129,1800,186,1,0 +19900129,1800,187,1,0 +19900129,1800,188,1,0 +19900129,1800,229,1,0 +19900129,1800,230,1,0 +19900129,1800,231,1,0 +19900129,1800,232,1,0 +19900129,1800,243,1,0 +19900129,1800,244,1,0 +19900129,1800,245,1,0 +19900129,1800,228246,1,0 +19900129,1800,228247,1,0 +19900129,2100,8,1,0 +19900129,2100,31,1,0 +19900129,2100,32,1,0 +19900129,2100,33,1,0 +19900129,2100,34,1,0 +19900129,2100,35,111,7 +19900129,2100,36,111,28 +19900129,2100,37,111,100 +19900129,2100,38,111,289 +19900129,2100,39,111,7 +19900129,2100,40,111,28 +19900129,2100,41,111,100 +19900129,2100,42,111,289 +19900129,2100,44,1,0 +19900129,2100,45,1,0 +19900129,2100,49,1,0 +19900129,2100,50,1,0 +19900129,2100,57,1,0 +19900129,2100,58,1,0 +19900129,2100,123,1,0 +19900129,2100,139,111,7 +19900129,2100,141,1,0 +19900129,2100,142,1,0 +19900129,2100,143,1,0 +19900129,2100,144,1,0 +19900129,2100,145,1,0 +19900129,2100,146,1,0 +19900129,2100,147,1,0 +19900129,2100,148,1,0 +19900129,2100,169,1,0 +19900129,2100,170,111,28 +19900129,2100,172,1,0 +19900129,2100,175,1,0 +19900129,2100,176,1,0 +19900129,2100,177,1,0 +19900129,2100,178,1,0 +19900129,2100,179,1,0 +19900129,2100,180,1,0 +19900129,2100,181,1,0 +19900129,2100,182,1,0 +19900129,2100,183,111,100 +19900129,2100,189,1,0 +19900129,2100,195,1,0 +19900129,2100,196,1,0 +19900129,2100,197,1,0 +19900129,2100,198,1,0 +19900129,2100,201,1,0 +19900129,2100,202,1,0 +19900129,2100,205,1,0 +19900129,2100,208,1,0 +19900129,2100,209,1,0 +19900129,2100,210,1,0 +19900129,2100,211,1,0 +19900129,2100,212,1,0 +19900129,2100,213,1,0 +19900129,2100,228,1,0 +19900129,2100,235,1,0 +19900129,2100,236,111,289 +19900129,2100,238,1,0 +19900129,2100,59,1,0 +19900129,2100,78,1,0 +19900129,2100,79,1,0 +19900129,2100,136,1,0 +19900129,2100,137,1,0 +19900129,2100,151,1,0 +19900129,2100,159,1,0 +19900129,2100,164,1,0 +19900129,2100,165,1,0 +19900129,2100,166,1,0 +19900129,2100,167,1,0 +19900129,2100,168,1,0 +19900129,2100,186,1,0 +19900129,2100,187,1,0 +19900129,2100,188,1,0 +19900129,2100,229,1,0 +19900129,2100,230,1,0 +19900129,2100,231,1,0 +19900129,2100,232,1,0 +19900129,2100,243,1,0 +19900129,2100,244,1,0 +19900129,2100,245,1,0 +19900129,2100,228246,1,0 +19900129,2100,228247,1,0 +19900130,0,133,100,1000 +19900130,0,133,100,975 +19900130,0,133,100,950 +19900130,0,133,100,925 +19900130,0,133,100,900 +19900130,0,133,100,875 +19900130,0,133,100,850 +19900130,0,133,100,825 +19900130,0,133,100,800 +19900130,0,133,100,775 +19900130,0,133,100,750 +19900130,0,133,100,740 +19900130,0,133,100,700 +19900130,0,133,100,650 +19900130,0,133,100,620 +19900130,0,133,100,600 +19900130,0,133,100,550 +19900130,0,133,100,500 +19900130,0,133,100,450 +19900130,0,133,100,400 +19900130,0,133,100,375 +19900130,0,133,100,350 +19900130,0,133,100,300 +19900130,0,133,100,250 +19900130,0,133,100,245 +19900130,0,133,100,225 +19900130,0,133,100,200 +19900130,0,133,100,175 +19900130,0,133,100,150 +19900130,0,133,100,125 +19900130,0,133,100,100 +19900130,0,133,100,70 +19900130,0,133,100,50 +19900130,0,133,100,30 +19900130,0,133,100,20 +19900130,0,133,100,10 +19900130,0,133,100,9 +19900130,0,133,100,7 +19900130,0,133,100,5 +19900130,0,133,100,3 +19900130,0,133,100,2 +19900130,0,133,100,1 +19900130,0,133,210,40 +19900130,0,3,117,2000 +19900130,0,133,109,1 +19900130,0,133,109,2 +19900130,0,133,109,3 +19900130,0,133,109,4 +19900130,0,133,109,5 +19900130,0,133,109,6 +19900130,0,133,109,7 +19900130,0,133,109,8 +19900130,0,133,109,9 +19900130,0,133,109,10 +19900130,0,246,109,1 +19900130,0,246,109,2 +19900130,0,246,109,3 +19900130,0,246,109,4 +19900130,0,246,109,5 +19900130,0,246,109,6 +19900130,0,246,109,7 +19900130,0,246,109,8 +19900130,0,246,109,9 +19900130,0,246,109,10 +19900130,0,247,109,1 +19900130,0,247,109,2 +19900130,0,247,109,3 +19900130,0,247,109,4 +19900130,0,247,109,5 +19900130,0,247,109,6 +19900130,0,247,109,7 +19900130,0,247,109,8 +19900130,0,247,109,9 +19900130,0,247,109,10 +19900130,0,248,109,1 +19900130,0,248,109,2 +19900130,0,248,109,3 +19900130,0,248,109,4 +19900130,0,248,109,5 +19900130,0,248,109,6 +19900130,0,248,109,7 +19900130,0,248,109,8 +19900130,0,248,109,9 +19900130,0,248,109,10 +19900130,0,8,1,0 +19900130,0,31,1,0 +19900130,0,32,1,0 +19900130,0,33,1,0 +19900130,0,34,1,0 +19900130,0,35,111,7 +19900130,0,36,111,28 +19900130,0,37,111,100 +19900130,0,38,111,289 +19900130,0,39,111,7 +19900130,0,40,111,28 +19900130,0,41,111,100 +19900130,0,42,111,289 +19900130,0,44,1,0 +19900130,0,45,1,0 +19900130,0,49,1,0 +19900130,0,50,1,0 +19900130,0,57,1,0 +19900130,0,58,1,0 +19900130,0,123,1,0 +19900130,0,139,111,7 +19900130,0,141,1,0 +19900130,0,142,1,0 +19900130,0,143,1,0 +19900130,0,144,1,0 +19900130,0,145,1,0 +19900130,0,146,1,0 +19900130,0,147,1,0 +19900130,0,148,1,0 +19900130,0,169,1,0 +19900130,0,170,111,28 +19900130,0,172,1,0 +19900130,0,175,1,0 +19900130,0,176,1,0 +19900130,0,177,1,0 +19900130,0,178,1,0 +19900130,0,179,1,0 +19900130,0,180,1,0 +19900130,0,181,1,0 +19900130,0,182,1,0 +19900130,0,183,111,100 +19900130,0,189,1,0 +19900130,0,195,1,0 +19900130,0,196,1,0 +19900130,0,197,1,0 +19900130,0,198,1,0 +19900130,0,201,1,0 +19900130,0,202,1,0 +19900130,0,205,1,0 +19900130,0,208,1,0 +19900130,0,209,1,0 +19900130,0,210,1,0 +19900130,0,211,1,0 +19900130,0,212,1,0 +19900130,0,213,1,0 +19900130,0,228,1,0 +19900130,0,235,1,0 +19900130,0,236,111,289 +19900130,0,238,1,0 +19900130,0,59,1,0 +19900130,0,78,1,0 +19900130,0,79,1,0 +19900130,0,136,1,0 +19900130,0,137,1,0 +19900130,0,151,1,0 +19900130,0,159,1,0 +19900130,0,164,1,0 +19900130,0,165,1,0 +19900130,0,166,1,0 +19900130,0,167,1,0 +19900130,0,168,1,0 +19900130,0,186,1,0 +19900130,0,187,1,0 +19900130,0,188,1,0 +19900130,0,229,1,0 +19900130,0,230,1,0 +19900130,0,231,1,0 +19900130,0,232,1,0 +19900130,0,243,1,0 +19900130,0,244,1,0 +19900130,0,245,1,0 +19900130,0,228246,1,0 +19900130,0,228247,1,0 +19900130,300,8,1,0 +19900130,300,31,1,0 +19900130,300,32,1,0 +19900130,300,33,1,0 +19900130,300,34,1,0 +19900130,300,35,111,7 +19900130,300,36,111,28 +19900130,300,37,111,100 +19900130,300,38,111,289 +19900130,300,39,111,7 +19900130,300,40,111,28 +19900130,300,41,111,100 +19900130,300,42,111,289 +19900130,300,44,1,0 +19900130,300,45,1,0 +19900130,300,49,1,0 +19900130,300,50,1,0 +19900130,300,57,1,0 +19900130,300,58,1,0 +19900130,300,123,1,0 +19900130,300,139,111,7 +19900130,300,141,1,0 +19900130,300,142,1,0 +19900130,300,143,1,0 +19900130,300,144,1,0 +19900130,300,145,1,0 +19900130,300,146,1,0 +19900130,300,147,1,0 +19900130,300,148,1,0 +19900130,300,169,1,0 +19900130,300,170,111,28 +19900130,300,172,1,0 +19900130,300,175,1,0 +19900130,300,176,1,0 +19900130,300,177,1,0 +19900130,300,178,1,0 +19900130,300,179,1,0 +19900130,300,180,1,0 +19900130,300,181,1,0 +19900130,300,182,1,0 +19900130,300,183,111,100 +19900130,300,189,1,0 +19900130,300,195,1,0 +19900130,300,196,1,0 +19900130,300,197,1,0 +19900130,300,198,1,0 +19900130,300,201,1,0 +19900130,300,202,1,0 +19900130,300,205,1,0 +19900130,300,208,1,0 +19900130,300,209,1,0 +19900130,300,210,1,0 +19900130,300,211,1,0 +19900130,300,212,1,0 +19900130,300,213,1,0 +19900130,300,228,1,0 +19900130,300,235,1,0 +19900130,300,236,111,289 +19900130,300,238,1,0 +19900130,300,59,1,0 +19900130,300,78,1,0 +19900130,300,79,1,0 +19900130,300,136,1,0 +19900130,300,137,1,0 +19900130,300,151,1,0 +19900130,300,159,1,0 +19900130,300,164,1,0 +19900130,300,165,1,0 +19900130,300,166,1,0 +19900130,300,167,1,0 +19900130,300,168,1,0 +19900130,300,186,1,0 +19900130,300,187,1,0 +19900130,300,188,1,0 +19900130,300,229,1,0 +19900130,300,230,1,0 +19900130,300,231,1,0 +19900130,300,232,1,0 +19900130,300,243,1,0 +19900130,300,244,1,0 +19900130,300,245,1,0 +19900130,300,228246,1,0 +19900130,300,228247,1,0 +19900130,600,133,100,1000 +19900130,600,133,100,975 +19900130,600,133,100,950 +19900130,600,133,100,925 +19900130,600,133,100,900 +19900130,600,133,100,875 +19900130,600,133,100,850 +19900130,600,133,100,825 +19900130,600,133,100,800 +19900130,600,133,100,775 +19900130,600,133,100,750 +19900130,600,133,100,740 +19900130,600,133,100,700 +19900130,600,133,100,650 +19900130,600,133,100,620 +19900130,600,133,100,600 +19900130,600,133,100,550 +19900130,600,133,100,500 +19900130,600,133,100,450 +19900130,600,133,100,400 +19900130,600,133,100,375 +19900130,600,133,100,350 +19900130,600,133,100,300 +19900130,600,133,100,250 +19900130,600,133,100,245 +19900130,600,133,100,225 +19900130,600,133,100,200 +19900130,600,133,100,175 +19900130,600,133,100,150 +19900130,600,133,100,125 +19900130,600,133,100,100 +19900130,600,133,100,70 +19900130,600,133,100,50 +19900130,600,133,100,30 +19900130,600,133,100,20 +19900130,600,133,100,10 +19900130,600,133,100,9 +19900130,600,133,100,7 +19900130,600,133,100,5 +19900130,600,133,100,3 +19900130,600,133,100,2 +19900130,600,133,100,1 +19900130,600,133,210,40 +19900130,600,3,117,2000 +19900130,600,133,109,1 +19900130,600,133,109,2 +19900130,600,133,109,3 +19900130,600,133,109,4 +19900130,600,133,109,5 +19900130,600,133,109,6 +19900130,600,133,109,7 +19900130,600,133,109,8 +19900130,600,133,109,9 +19900130,600,133,109,10 +19900130,600,246,109,1 +19900130,600,246,109,2 +19900130,600,246,109,3 +19900130,600,246,109,4 +19900130,600,246,109,5 +19900130,600,246,109,6 +19900130,600,246,109,7 +19900130,600,246,109,8 +19900130,600,246,109,9 +19900130,600,246,109,10 +19900130,600,247,109,1 +19900130,600,247,109,2 +19900130,600,247,109,3 +19900130,600,247,109,4 +19900130,600,247,109,5 +19900130,600,247,109,6 +19900130,600,247,109,7 +19900130,600,247,109,8 +19900130,600,247,109,9 +19900130,600,247,109,10 +19900130,600,248,109,1 +19900130,600,248,109,2 +19900130,600,248,109,3 +19900130,600,248,109,4 +19900130,600,248,109,5 +19900130,600,248,109,6 +19900130,600,248,109,7 +19900130,600,248,109,8 +19900130,600,248,109,9 +19900130,600,248,109,10 +19900130,600,8,1,0 +19900130,600,31,1,0 +19900130,600,32,1,0 +19900130,600,33,1,0 +19900130,600,34,1,0 +19900130,600,35,111,7 +19900130,600,36,111,28 +19900130,600,37,111,100 +19900130,600,38,111,289 +19900130,600,39,111,7 +19900130,600,40,111,28 +19900130,600,41,111,100 +19900130,600,42,111,289 +19900130,600,44,1,0 +19900130,600,45,1,0 +19900130,600,49,1,0 +19900130,600,50,1,0 +19900130,600,57,1,0 +19900130,600,58,1,0 +19900130,600,123,1,0 +19900130,600,139,111,7 +19900130,600,141,1,0 +19900130,600,142,1,0 +19900130,600,143,1,0 +19900130,600,144,1,0 +19900130,600,145,1,0 +19900130,600,146,1,0 +19900130,600,147,1,0 +19900130,600,148,1,0 +19900130,600,169,1,0 +19900130,600,170,111,28 +19900130,600,172,1,0 +19900130,600,175,1,0 +19900130,600,176,1,0 +19900130,600,177,1,0 +19900130,600,178,1,0 +19900130,600,179,1,0 +19900130,600,180,1,0 +19900130,600,181,1,0 +19900130,600,182,1,0 +19900130,600,183,111,100 +19900130,600,189,1,0 +19900130,600,195,1,0 +19900130,600,196,1,0 +19900130,600,197,1,0 +19900130,600,198,1,0 +19900130,600,201,1,0 +19900130,600,202,1,0 +19900130,600,205,1,0 +19900130,600,208,1,0 +19900130,600,209,1,0 +19900130,600,210,1,0 +19900130,600,211,1,0 +19900130,600,212,1,0 +19900130,600,213,1,0 +19900130,600,228,1,0 +19900130,600,235,1,0 +19900130,600,236,111,289 +19900130,600,238,1,0 +19900130,600,59,1,0 +19900130,600,78,1,0 +19900130,600,79,1,0 +19900130,600,136,1,0 +19900130,600,137,1,0 +19900130,600,151,1,0 +19900130,600,159,1,0 +19900130,600,164,1,0 +19900130,600,165,1,0 +19900130,600,166,1,0 +19900130,600,167,1,0 +19900130,600,168,1,0 +19900130,600,186,1,0 +19900130,600,187,1,0 +19900130,600,188,1,0 +19900130,600,229,1,0 +19900130,600,230,1,0 +19900130,600,231,1,0 +19900130,600,232,1,0 +19900130,600,243,1,0 +19900130,600,244,1,0 +19900130,600,245,1,0 +19900130,600,228246,1,0 +19900130,600,228247,1,0 +19900130,900,8,1,0 +19900130,900,31,1,0 +19900130,900,32,1,0 +19900130,900,33,1,0 +19900130,900,34,1,0 +19900130,900,35,111,7 +19900130,900,36,111,28 +19900130,900,37,111,100 +19900130,900,38,111,289 +19900130,900,39,111,7 +19900130,900,40,111,28 +19900130,900,41,111,100 +19900130,900,42,111,289 +19900130,900,44,1,0 +19900130,900,45,1,0 +19900130,900,49,1,0 +19900130,900,50,1,0 +19900130,900,57,1,0 +19900130,900,58,1,0 +19900130,900,123,1,0 +19900130,900,139,111,7 +19900130,900,141,1,0 +19900130,900,142,1,0 +19900130,900,143,1,0 +19900130,900,144,1,0 +19900130,900,145,1,0 +19900130,900,146,1,0 +19900130,900,147,1,0 +19900130,900,148,1,0 +19900130,900,169,1,0 +19900130,900,170,111,28 +19900130,900,172,1,0 +19900130,900,175,1,0 +19900130,900,176,1,0 +19900130,900,177,1,0 +19900130,900,178,1,0 +19900130,900,179,1,0 +19900130,900,180,1,0 +19900130,900,181,1,0 +19900130,900,182,1,0 +19900130,900,183,111,100 +19900130,900,189,1,0 +19900130,900,195,1,0 +19900130,900,196,1,0 +19900130,900,197,1,0 +19900130,900,198,1,0 +19900130,900,201,1,0 +19900130,900,202,1,0 +19900130,900,205,1,0 +19900130,900,208,1,0 +19900130,900,209,1,0 +19900130,900,210,1,0 +19900130,900,211,1,0 +19900130,900,212,1,0 +19900130,900,213,1,0 +19900130,900,228,1,0 +19900130,900,235,1,0 +19900130,900,236,111,289 +19900130,900,238,1,0 +19900130,900,59,1,0 +19900130,900,78,1,0 +19900130,900,79,1,0 +19900130,900,136,1,0 +19900130,900,137,1,0 +19900130,900,151,1,0 +19900130,900,159,1,0 +19900130,900,164,1,0 +19900130,900,165,1,0 +19900130,900,166,1,0 +19900130,900,167,1,0 +19900130,900,168,1,0 +19900130,900,186,1,0 +19900130,900,187,1,0 +19900130,900,188,1,0 +19900130,900,229,1,0 +19900130,900,230,1,0 +19900130,900,231,1,0 +19900130,900,232,1,0 +19900130,900,243,1,0 +19900130,900,244,1,0 +19900130,900,245,1,0 +19900130,900,228246,1,0 +19900130,900,228247,1,0 +19900130,1200,133,100,1000 +19900130,1200,133,100,975 +19900130,1200,133,100,950 +19900130,1200,133,100,925 +19900130,1200,133,100,900 +19900130,1200,133,100,875 +19900130,1200,133,100,850 +19900130,1200,133,100,825 +19900130,1200,133,100,800 +19900130,1200,133,100,775 +19900130,1200,133,100,750 +19900130,1200,133,100,740 +19900130,1200,133,100,700 +19900130,1200,133,100,650 +19900130,1200,133,100,620 +19900130,1200,133,100,600 +19900130,1200,133,100,550 +19900130,1200,133,100,500 +19900130,1200,133,100,450 +19900130,1200,133,100,400 +19900130,1200,133,100,375 +19900130,1200,133,100,350 +19900130,1200,133,100,300 +19900130,1200,133,100,250 +19900130,1200,133,100,245 +19900130,1200,133,100,225 +19900130,1200,133,100,200 +19900130,1200,133,100,175 +19900130,1200,133,100,150 +19900130,1200,133,100,125 +19900130,1200,133,100,100 +19900130,1200,133,100,70 +19900130,1200,133,100,50 +19900130,1200,133,100,30 +19900130,1200,133,100,20 +19900130,1200,133,100,10 +19900130,1200,133,100,9 +19900130,1200,133,100,7 +19900130,1200,133,100,5 +19900130,1200,133,100,3 +19900130,1200,133,100,2 +19900130,1200,133,100,1 +19900130,1200,133,210,40 +19900130,1200,3,117,2000 +19900130,1200,133,109,1 +19900130,1200,133,109,2 +19900130,1200,133,109,3 +19900130,1200,133,109,4 +19900130,1200,133,109,5 +19900130,1200,133,109,6 +19900130,1200,133,109,7 +19900130,1200,133,109,8 +19900130,1200,133,109,9 +19900130,1200,133,109,10 +19900130,1200,246,109,1 +19900130,1200,246,109,2 +19900130,1200,246,109,3 +19900130,1200,246,109,4 +19900130,1200,246,109,5 +19900130,1200,246,109,6 +19900130,1200,246,109,7 +19900130,1200,246,109,8 +19900130,1200,246,109,9 +19900130,1200,246,109,10 +19900130,1200,247,109,1 +19900130,1200,247,109,2 +19900130,1200,247,109,3 +19900130,1200,247,109,4 +19900130,1200,247,109,5 +19900130,1200,247,109,6 +19900130,1200,247,109,7 +19900130,1200,247,109,8 +19900130,1200,247,109,9 +19900130,1200,247,109,10 +19900130,1200,248,109,1 +19900130,1200,248,109,2 +19900130,1200,248,109,3 +19900130,1200,248,109,4 +19900130,1200,248,109,5 +19900130,1200,248,109,6 +19900130,1200,248,109,7 +19900130,1200,248,109,8 +19900130,1200,248,109,9 +19900130,1200,248,109,10 +19900130,1200,8,1,0 +19900130,1200,31,1,0 +19900130,1200,32,1,0 +19900130,1200,33,1,0 +19900130,1200,34,1,0 +19900130,1200,35,111,7 +19900130,1200,36,111,28 +19900130,1200,37,111,100 +19900130,1200,38,111,289 +19900130,1200,39,111,7 +19900130,1200,40,111,28 +19900130,1200,41,111,100 +19900130,1200,42,111,289 +19900130,1200,44,1,0 +19900130,1200,45,1,0 +19900130,1200,49,1,0 +19900130,1200,50,1,0 +19900130,1200,57,1,0 +19900130,1200,58,1,0 +19900130,1200,123,1,0 +19900130,1200,139,111,7 +19900130,1200,141,1,0 +19900130,1200,142,1,0 +19900130,1200,143,1,0 +19900130,1200,144,1,0 +19900130,1200,145,1,0 +19900130,1200,146,1,0 +19900130,1200,147,1,0 +19900130,1200,148,1,0 +19900130,1200,169,1,0 +19900130,1200,170,111,28 +19900130,1200,172,1,0 +19900130,1200,175,1,0 +19900130,1200,176,1,0 +19900130,1200,177,1,0 +19900130,1200,178,1,0 +19900130,1200,179,1,0 +19900130,1200,180,1,0 +19900130,1200,181,1,0 +19900130,1200,182,1,0 +19900130,1200,183,111,100 +19900130,1200,189,1,0 +19900130,1200,195,1,0 +19900130,1200,196,1,0 +19900130,1200,197,1,0 +19900130,1200,198,1,0 +19900130,1200,201,1,0 +19900130,1200,202,1,0 +19900130,1200,205,1,0 +19900130,1200,208,1,0 +19900130,1200,209,1,0 +19900130,1200,210,1,0 +19900130,1200,211,1,0 +19900130,1200,212,1,0 +19900130,1200,213,1,0 +19900130,1200,228,1,0 +19900130,1200,235,1,0 +19900130,1200,236,111,289 +19900130,1200,238,1,0 +19900130,1200,59,1,0 +19900130,1200,78,1,0 +19900130,1200,79,1,0 +19900130,1200,136,1,0 +19900130,1200,137,1,0 +19900130,1200,151,1,0 +19900130,1200,159,1,0 +19900130,1200,164,1,0 +19900130,1200,165,1,0 +19900130,1200,166,1,0 +19900130,1200,167,1,0 +19900130,1200,168,1,0 +19900130,1200,186,1,0 +19900130,1200,187,1,0 +19900130,1200,188,1,0 +19900130,1200,229,1,0 +19900130,1200,230,1,0 +19900130,1200,231,1,0 +19900130,1200,232,1,0 +19900130,1200,243,1,0 +19900130,1200,244,1,0 +19900130,1200,245,1,0 +19900130,1200,228246,1,0 +19900130,1200,228247,1,0 +19900130,1500,8,1,0 +19900130,1500,31,1,0 +19900130,1500,32,1,0 +19900130,1500,33,1,0 +19900130,1500,34,1,0 +19900130,1500,35,111,7 +19900130,1500,36,111,28 +19900130,1500,37,111,100 +19900130,1500,38,111,289 +19900130,1500,39,111,7 +19900130,1500,40,111,28 +19900130,1500,41,111,100 +19900130,1500,42,111,289 +19900130,1500,44,1,0 +19900130,1500,45,1,0 +19900130,1500,49,1,0 +19900130,1500,50,1,0 +19900130,1500,57,1,0 +19900130,1500,58,1,0 +19900130,1500,123,1,0 +19900130,1500,139,111,7 +19900130,1500,141,1,0 +19900130,1500,142,1,0 +19900130,1500,143,1,0 +19900130,1500,144,1,0 +19900130,1500,145,1,0 +19900130,1500,146,1,0 +19900130,1500,147,1,0 +19900130,1500,148,1,0 +19900130,1500,169,1,0 +19900130,1500,170,111,28 +19900130,1500,172,1,0 +19900130,1500,175,1,0 +19900130,1500,176,1,0 +19900130,1500,177,1,0 +19900130,1500,178,1,0 +19900130,1500,179,1,0 +19900130,1500,180,1,0 +19900130,1500,181,1,0 +19900130,1500,182,1,0 +19900130,1500,183,111,100 +19900130,1500,189,1,0 +19900130,1500,195,1,0 +19900130,1500,196,1,0 +19900130,1500,197,1,0 +19900130,1500,198,1,0 +19900130,1500,201,1,0 +19900130,1500,202,1,0 +19900130,1500,205,1,0 +19900130,1500,208,1,0 +19900130,1500,209,1,0 +19900130,1500,210,1,0 +19900130,1500,211,1,0 +19900130,1500,212,1,0 +19900130,1500,213,1,0 +19900130,1500,228,1,0 +19900130,1500,235,1,0 +19900130,1500,236,111,289 +19900130,1500,238,1,0 +19900130,1500,59,1,0 +19900130,1500,78,1,0 +19900130,1500,79,1,0 +19900130,1500,136,1,0 +19900130,1500,137,1,0 +19900130,1500,151,1,0 +19900130,1500,159,1,0 +19900130,1500,164,1,0 +19900130,1500,165,1,0 +19900130,1500,166,1,0 +19900130,1500,167,1,0 +19900130,1500,168,1,0 +19900130,1500,186,1,0 +19900130,1500,187,1,0 +19900130,1500,188,1,0 +19900130,1500,229,1,0 +19900130,1500,230,1,0 +19900130,1500,231,1,0 +19900130,1500,232,1,0 +19900130,1500,243,1,0 +19900130,1500,244,1,0 +19900130,1500,245,1,0 +19900130,1500,228246,1,0 +19900130,1500,228247,1,0 +19900130,1800,133,100,1000 +19900130,1800,133,100,975 +19900130,1800,133,100,950 +19900130,1800,133,100,925 +19900130,1800,133,100,900 +19900130,1800,133,100,875 +19900130,1800,133,100,850 +19900130,1800,133,100,825 +19900130,1800,133,100,800 +19900130,1800,133,100,775 +19900130,1800,133,100,750 +19900130,1800,133,100,740 +19900130,1800,133,100,700 +19900130,1800,133,100,650 +19900130,1800,133,100,620 +19900130,1800,133,100,600 +19900130,1800,133,100,550 +19900130,1800,133,100,500 +19900130,1800,133,100,450 +19900130,1800,133,100,400 +19900130,1800,133,100,375 +19900130,1800,133,100,350 +19900130,1800,133,100,300 +19900130,1800,133,100,250 +19900130,1800,133,100,245 +19900130,1800,133,100,225 +19900130,1800,133,100,200 +19900130,1800,133,100,175 +19900130,1800,133,100,150 +19900130,1800,133,100,125 +19900130,1800,133,100,100 +19900130,1800,133,100,70 +19900130,1800,133,100,50 +19900130,1800,133,100,30 +19900130,1800,133,100,20 +19900130,1800,133,100,10 +19900130,1800,133,100,9 +19900130,1800,133,100,7 +19900130,1800,133,100,5 +19900130,1800,133,100,3 +19900130,1800,133,100,2 +19900130,1800,133,100,1 +19900130,1800,133,210,40 +19900130,1800,3,117,2000 +19900130,1800,133,109,1 +19900130,1800,133,109,2 +19900130,1800,133,109,3 +19900130,1800,133,109,4 +19900130,1800,133,109,5 +19900130,1800,133,109,6 +19900130,1800,133,109,7 +19900130,1800,133,109,8 +19900130,1800,133,109,9 +19900130,1800,133,109,10 +19900130,1800,246,109,1 +19900130,1800,246,109,2 +19900130,1800,246,109,3 +19900130,1800,246,109,4 +19900130,1800,246,109,5 +19900130,1800,246,109,6 +19900130,1800,246,109,7 +19900130,1800,246,109,8 +19900130,1800,246,109,9 +19900130,1800,246,109,10 +19900130,1800,247,109,1 +19900130,1800,247,109,2 +19900130,1800,247,109,3 +19900130,1800,247,109,4 +19900130,1800,247,109,5 +19900130,1800,247,109,6 +19900130,1800,247,109,7 +19900130,1800,247,109,8 +19900130,1800,247,109,9 +19900130,1800,247,109,10 +19900130,1800,248,109,1 +19900130,1800,248,109,2 +19900130,1800,248,109,3 +19900130,1800,248,109,4 +19900130,1800,248,109,5 +19900130,1800,248,109,6 +19900130,1800,248,109,7 +19900130,1800,248,109,8 +19900130,1800,248,109,9 +19900130,1800,248,109,10 +19900130,1800,8,1,0 +19900130,1800,31,1,0 +19900130,1800,32,1,0 +19900130,1800,33,1,0 +19900130,1800,34,1,0 +19900130,1800,35,111,7 +19900130,1800,36,111,28 +19900130,1800,37,111,100 +19900130,1800,38,111,289 +19900130,1800,39,111,7 +19900130,1800,40,111,28 +19900130,1800,41,111,100 +19900130,1800,42,111,289 +19900130,1800,44,1,0 +19900130,1800,45,1,0 +19900130,1800,49,1,0 +19900130,1800,50,1,0 +19900130,1800,57,1,0 +19900130,1800,58,1,0 +19900130,1800,123,1,0 +19900130,1800,139,111,7 +19900130,1800,141,1,0 +19900130,1800,142,1,0 +19900130,1800,143,1,0 +19900130,1800,144,1,0 +19900130,1800,145,1,0 +19900130,1800,146,1,0 +19900130,1800,147,1,0 +19900130,1800,148,1,0 +19900130,1800,169,1,0 +19900130,1800,170,111,28 +19900130,1800,172,1,0 +19900130,1800,175,1,0 +19900130,1800,176,1,0 +19900130,1800,177,1,0 +19900130,1800,178,1,0 +19900130,1800,179,1,0 +19900130,1800,180,1,0 +19900130,1800,181,1,0 +19900130,1800,182,1,0 +19900130,1800,183,111,100 +19900130,1800,189,1,0 +19900130,1800,195,1,0 +19900130,1800,196,1,0 +19900130,1800,197,1,0 +19900130,1800,198,1,0 +19900130,1800,201,1,0 +19900130,1800,202,1,0 +19900130,1800,205,1,0 +19900130,1800,208,1,0 +19900130,1800,209,1,0 +19900130,1800,210,1,0 +19900130,1800,211,1,0 +19900130,1800,212,1,0 +19900130,1800,213,1,0 +19900130,1800,228,1,0 +19900130,1800,235,1,0 +19900130,1800,236,111,289 +19900130,1800,238,1,0 +19900130,1800,59,1,0 +19900130,1800,78,1,0 +19900130,1800,79,1,0 +19900130,1800,136,1,0 +19900130,1800,137,1,0 +19900130,1800,151,1,0 +19900130,1800,159,1,0 +19900130,1800,164,1,0 +19900130,1800,165,1,0 +19900130,1800,166,1,0 +19900130,1800,167,1,0 +19900130,1800,168,1,0 +19900130,1800,186,1,0 +19900130,1800,187,1,0 +19900130,1800,188,1,0 +19900130,1800,229,1,0 +19900130,1800,230,1,0 +19900130,1800,231,1,0 +19900130,1800,232,1,0 +19900130,1800,243,1,0 +19900130,1800,244,1,0 +19900130,1800,245,1,0 +19900130,1800,228246,1,0 +19900130,1800,228247,1,0 +19900130,2100,8,1,0 +19900130,2100,31,1,0 +19900130,2100,32,1,0 +19900130,2100,33,1,0 +19900130,2100,34,1,0 +19900130,2100,35,111,7 +19900130,2100,36,111,28 +19900130,2100,37,111,100 +19900130,2100,38,111,289 +19900130,2100,39,111,7 +19900130,2100,40,111,28 +19900130,2100,41,111,100 +19900130,2100,42,111,289 +19900130,2100,44,1,0 +19900130,2100,45,1,0 +19900130,2100,49,1,0 +19900130,2100,50,1,0 +19900130,2100,57,1,0 +19900130,2100,58,1,0 +19900130,2100,123,1,0 +19900130,2100,139,111,7 +19900130,2100,141,1,0 +19900130,2100,142,1,0 +19900130,2100,143,1,0 +19900130,2100,144,1,0 +19900130,2100,145,1,0 +19900130,2100,146,1,0 +19900130,2100,147,1,0 +19900130,2100,148,1,0 +19900130,2100,169,1,0 +19900130,2100,170,111,28 +19900130,2100,172,1,0 +19900130,2100,175,1,0 +19900130,2100,176,1,0 +19900130,2100,177,1,0 +19900130,2100,178,1,0 +19900130,2100,179,1,0 +19900130,2100,180,1,0 +19900130,2100,181,1,0 +19900130,2100,182,1,0 +19900130,2100,183,111,100 +19900130,2100,189,1,0 +19900130,2100,195,1,0 +19900130,2100,196,1,0 +19900130,2100,197,1,0 +19900130,2100,198,1,0 +19900130,2100,201,1,0 +19900130,2100,202,1,0 +19900130,2100,205,1,0 +19900130,2100,208,1,0 +19900130,2100,209,1,0 +19900130,2100,210,1,0 +19900130,2100,211,1,0 +19900130,2100,212,1,0 +19900130,2100,213,1,0 +19900130,2100,228,1,0 +19900130,2100,235,1,0 +19900130,2100,236,111,289 +19900130,2100,238,1,0 +19900130,2100,59,1,0 +19900130,2100,78,1,0 +19900130,2100,79,1,0 +19900130,2100,136,1,0 +19900130,2100,137,1,0 +19900130,2100,151,1,0 +19900130,2100,159,1,0 +19900130,2100,164,1,0 +19900130,2100,165,1,0 +19900130,2100,166,1,0 +19900130,2100,167,1,0 +19900130,2100,168,1,0 +19900130,2100,186,1,0 +19900130,2100,187,1,0 +19900130,2100,188,1,0 +19900130,2100,229,1,0 +19900130,2100,230,1,0 +19900130,2100,231,1,0 +19900130,2100,232,1,0 +19900130,2100,243,1,0 +19900130,2100,244,1,0 +19900130,2100,245,1,0 +19900130,2100,228246,1,0 +19900130,2100,228247,1,0 +19900131,0,133,100,1000 +19900131,0,133,100,975 +19900131,0,133,100,950 +19900131,0,133,100,925 +19900131,0,133,100,900 +19900131,0,133,100,875 +19900131,0,133,100,850 +19900131,0,133,100,825 +19900131,0,133,100,800 +19900131,0,133,100,775 +19900131,0,133,100,750 +19900131,0,133,100,740 +19900131,0,133,100,700 +19900131,0,133,100,650 +19900131,0,133,100,620 +19900131,0,133,100,600 +19900131,0,133,100,550 +19900131,0,133,100,500 +19900131,0,133,100,450 +19900131,0,133,100,400 +19900131,0,133,100,375 +19900131,0,133,100,350 +19900131,0,133,100,300 +19900131,0,133,100,250 +19900131,0,133,100,245 +19900131,0,133,100,225 +19900131,0,133,100,200 +19900131,0,133,100,175 +19900131,0,133,100,150 +19900131,0,133,100,125 +19900131,0,133,100,100 +19900131,0,133,100,70 +19900131,0,133,100,50 +19900131,0,133,100,30 +19900131,0,133,100,20 +19900131,0,133,100,10 +19900131,0,133,100,9 +19900131,0,133,100,7 +19900131,0,133,100,5 +19900131,0,133,100,3 +19900131,0,133,100,2 +19900131,0,133,100,1 +19900131,0,133,210,40 +19900131,0,3,117,2000 +19900131,0,133,109,1 +19900131,0,133,109,2 +19900131,0,133,109,3 +19900131,0,133,109,4 +19900131,0,133,109,5 +19900131,0,133,109,6 +19900131,0,133,109,7 +19900131,0,133,109,8 +19900131,0,133,109,9 +19900131,0,133,109,10 +19900131,0,246,109,1 +19900131,0,246,109,2 +19900131,0,246,109,3 +19900131,0,246,109,4 +19900131,0,246,109,5 +19900131,0,246,109,6 +19900131,0,246,109,7 +19900131,0,246,109,8 +19900131,0,246,109,9 +19900131,0,246,109,10 +19900131,0,247,109,1 +19900131,0,247,109,2 +19900131,0,247,109,3 +19900131,0,247,109,4 +19900131,0,247,109,5 +19900131,0,247,109,6 +19900131,0,247,109,7 +19900131,0,247,109,8 +19900131,0,247,109,9 +19900131,0,247,109,10 +19900131,0,248,109,1 +19900131,0,248,109,2 +19900131,0,248,109,3 +19900131,0,248,109,4 +19900131,0,248,109,5 +19900131,0,248,109,6 +19900131,0,248,109,7 +19900131,0,248,109,8 +19900131,0,248,109,9 +19900131,0,248,109,10 +19900131,0,8,1,0 +19900131,0,31,1,0 +19900131,0,32,1,0 +19900131,0,33,1,0 +19900131,0,34,1,0 +19900131,0,35,111,7 +19900131,0,36,111,28 +19900131,0,37,111,100 +19900131,0,38,111,289 +19900131,0,39,111,7 +19900131,0,40,111,28 +19900131,0,41,111,100 +19900131,0,42,111,289 +19900131,0,44,1,0 +19900131,0,45,1,0 +19900131,0,49,1,0 +19900131,0,50,1,0 +19900131,0,57,1,0 +19900131,0,58,1,0 +19900131,0,123,1,0 +19900131,0,139,111,7 +19900131,0,141,1,0 +19900131,0,142,1,0 +19900131,0,143,1,0 +19900131,0,144,1,0 +19900131,0,145,1,0 +19900131,0,146,1,0 +19900131,0,147,1,0 +19900131,0,148,1,0 +19900131,0,169,1,0 +19900131,0,170,111,28 +19900131,0,172,1,0 +19900131,0,175,1,0 +19900131,0,176,1,0 +19900131,0,177,1,0 +19900131,0,178,1,0 +19900131,0,179,1,0 +19900131,0,180,1,0 +19900131,0,181,1,0 +19900131,0,182,1,0 +19900131,0,183,111,100 +19900131,0,189,1,0 +19900131,0,195,1,0 +19900131,0,196,1,0 +19900131,0,197,1,0 +19900131,0,198,1,0 +19900131,0,201,1,0 +19900131,0,202,1,0 +19900131,0,205,1,0 +19900131,0,208,1,0 +19900131,0,209,1,0 +19900131,0,210,1,0 +19900131,0,211,1,0 +19900131,0,212,1,0 +19900131,0,213,1,0 +19900131,0,228,1,0 +19900131,0,235,1,0 +19900131,0,236,111,289 +19900131,0,238,1,0 +19900131,0,59,1,0 +19900131,0,78,1,0 +19900131,0,79,1,0 +19900131,0,136,1,0 +19900131,0,137,1,0 +19900131,0,151,1,0 +19900131,0,159,1,0 +19900131,0,164,1,0 +19900131,0,165,1,0 +19900131,0,166,1,0 +19900131,0,167,1,0 +19900131,0,168,1,0 +19900131,0,186,1,0 +19900131,0,187,1,0 +19900131,0,188,1,0 +19900131,0,229,1,0 +19900131,0,230,1,0 +19900131,0,231,1,0 +19900131,0,232,1,0 +19900131,0,243,1,0 +19900131,0,244,1,0 +19900131,0,245,1,0 +19900131,0,228246,1,0 +19900131,0,228247,1,0 +19900131,300,8,1,0 +19900131,300,31,1,0 +19900131,300,32,1,0 +19900131,300,33,1,0 +19900131,300,34,1,0 +19900131,300,35,111,7 +19900131,300,36,111,28 +19900131,300,37,111,100 +19900131,300,38,111,289 +19900131,300,39,111,7 +19900131,300,40,111,28 +19900131,300,41,111,100 +19900131,300,42,111,289 +19900131,300,44,1,0 +19900131,300,45,1,0 +19900131,300,49,1,0 +19900131,300,50,1,0 +19900131,300,57,1,0 +19900131,300,58,1,0 +19900131,300,123,1,0 +19900131,300,139,111,7 +19900131,300,141,1,0 +19900131,300,142,1,0 +19900131,300,143,1,0 +19900131,300,144,1,0 +19900131,300,145,1,0 +19900131,300,146,1,0 +19900131,300,147,1,0 +19900131,300,148,1,0 +19900131,300,169,1,0 +19900131,300,170,111,28 +19900131,300,172,1,0 +19900131,300,175,1,0 +19900131,300,176,1,0 +19900131,300,177,1,0 +19900131,300,178,1,0 +19900131,300,179,1,0 +19900131,300,180,1,0 +19900131,300,181,1,0 +19900131,300,182,1,0 +19900131,300,183,111,100 +19900131,300,189,1,0 +19900131,300,195,1,0 +19900131,300,196,1,0 +19900131,300,197,1,0 +19900131,300,198,1,0 +19900131,300,201,1,0 +19900131,300,202,1,0 +19900131,300,205,1,0 +19900131,300,208,1,0 +19900131,300,209,1,0 +19900131,300,210,1,0 +19900131,300,211,1,0 +19900131,300,212,1,0 +19900131,300,213,1,0 +19900131,300,228,1,0 +19900131,300,235,1,0 +19900131,300,236,111,289 +19900131,300,238,1,0 +19900131,300,59,1,0 +19900131,300,78,1,0 +19900131,300,79,1,0 +19900131,300,136,1,0 +19900131,300,137,1,0 +19900131,300,151,1,0 +19900131,300,159,1,0 +19900131,300,164,1,0 +19900131,300,165,1,0 +19900131,300,166,1,0 +19900131,300,167,1,0 +19900131,300,168,1,0 +19900131,300,186,1,0 +19900131,300,187,1,0 +19900131,300,188,1,0 +19900131,300,229,1,0 +19900131,300,230,1,0 +19900131,300,231,1,0 +19900131,300,232,1,0 +19900131,300,243,1,0 +19900131,300,244,1,0 +19900131,300,245,1,0 +19900131,300,228246,1,0 +19900131,300,228247,1,0 +19900131,600,133,100,1000 +19900131,600,133,100,975 +19900131,600,133,100,950 +19900131,600,133,100,925 +19900131,600,133,100,900 +19900131,600,133,100,875 +19900131,600,133,100,850 +19900131,600,133,100,825 +19900131,600,133,100,800 +19900131,600,133,100,775 +19900131,600,133,100,750 +19900131,600,133,100,740 +19900131,600,133,100,700 +19900131,600,133,100,650 +19900131,600,133,100,620 +19900131,600,133,100,600 +19900131,600,133,100,550 +19900131,600,133,100,500 +19900131,600,133,100,450 +19900131,600,133,100,400 +19900131,600,133,100,375 +19900131,600,133,100,350 +19900131,600,133,100,300 +19900131,600,133,100,250 +19900131,600,133,100,245 +19900131,600,133,100,225 +19900131,600,133,100,200 +19900131,600,133,100,175 +19900131,600,133,100,150 +19900131,600,133,100,125 +19900131,600,133,100,100 +19900131,600,133,100,70 +19900131,600,133,100,50 +19900131,600,133,100,30 +19900131,600,133,100,20 +19900131,600,133,100,10 +19900131,600,133,100,9 +19900131,600,133,100,7 +19900131,600,133,100,5 +19900131,600,133,100,3 +19900131,600,133,100,2 +19900131,600,133,100,1 +19900131,600,133,210,40 +19900131,600,3,117,2000 +19900131,600,133,109,1 +19900131,600,133,109,2 +19900131,600,133,109,3 +19900131,600,133,109,4 +19900131,600,133,109,5 +19900131,600,133,109,6 +19900131,600,133,109,7 +19900131,600,133,109,8 +19900131,600,133,109,9 +19900131,600,133,109,10 +19900131,600,246,109,1 +19900131,600,246,109,2 +19900131,600,246,109,3 +19900131,600,246,109,4 +19900131,600,246,109,5 +19900131,600,246,109,6 +19900131,600,246,109,7 +19900131,600,246,109,8 +19900131,600,246,109,9 +19900131,600,246,109,10 +19900131,600,247,109,1 +19900131,600,247,109,2 +19900131,600,247,109,3 +19900131,600,247,109,4 +19900131,600,247,109,5 +19900131,600,247,109,6 +19900131,600,247,109,7 +19900131,600,247,109,8 +19900131,600,247,109,9 +19900131,600,247,109,10 +19900131,600,248,109,1 +19900131,600,248,109,2 +19900131,600,248,109,3 +19900131,600,248,109,4 +19900131,600,248,109,5 +19900131,600,248,109,6 +19900131,600,248,109,7 +19900131,600,248,109,8 +19900131,600,248,109,9 +19900131,600,248,109,10 +19900131,600,8,1,0 +19900131,600,31,1,0 +19900131,600,32,1,0 +19900131,600,33,1,0 +19900131,600,34,1,0 +19900131,600,35,111,7 +19900131,600,36,111,28 +19900131,600,37,111,100 +19900131,600,38,111,289 +19900131,600,39,111,7 +19900131,600,40,111,28 +19900131,600,41,111,100 +19900131,600,42,111,289 +19900131,600,44,1,0 +19900131,600,45,1,0 +19900131,600,49,1,0 +19900131,600,50,1,0 +19900131,600,57,1,0 +19900131,600,58,1,0 +19900131,600,123,1,0 +19900131,600,139,111,7 +19900131,600,141,1,0 +19900131,600,142,1,0 +19900131,600,143,1,0 +19900131,600,144,1,0 +19900131,600,145,1,0 +19900131,600,146,1,0 +19900131,600,147,1,0 +19900131,600,148,1,0 +19900131,600,169,1,0 +19900131,600,170,111,28 +19900131,600,172,1,0 +19900131,600,175,1,0 +19900131,600,176,1,0 +19900131,600,177,1,0 +19900131,600,178,1,0 +19900131,600,179,1,0 +19900131,600,180,1,0 +19900131,600,181,1,0 +19900131,600,182,1,0 +19900131,600,183,111,100 +19900131,600,189,1,0 +19900131,600,195,1,0 +19900131,600,196,1,0 +19900131,600,197,1,0 +19900131,600,198,1,0 +19900131,600,201,1,0 +19900131,600,202,1,0 +19900131,600,205,1,0 +19900131,600,208,1,0 +19900131,600,209,1,0 +19900131,600,210,1,0 +19900131,600,211,1,0 +19900131,600,212,1,0 +19900131,600,213,1,0 +19900131,600,228,1,0 +19900131,600,235,1,0 +19900131,600,236,111,289 +19900131,600,238,1,0 +19900131,600,59,1,0 +19900131,600,78,1,0 +19900131,600,79,1,0 +19900131,600,136,1,0 +19900131,600,137,1,0 +19900131,600,151,1,0 +19900131,600,159,1,0 +19900131,600,164,1,0 +19900131,600,165,1,0 +19900131,600,166,1,0 +19900131,600,167,1,0 +19900131,600,168,1,0 +19900131,600,186,1,0 +19900131,600,187,1,0 +19900131,600,188,1,0 +19900131,600,229,1,0 +19900131,600,230,1,0 +19900131,600,231,1,0 +19900131,600,232,1,0 +19900131,600,243,1,0 +19900131,600,244,1,0 +19900131,600,245,1,0 +19900131,600,228246,1,0 +19900131,600,228247,1,0 +19900131,900,8,1,0 +19900131,900,31,1,0 +19900131,900,32,1,0 +19900131,900,33,1,0 +19900131,900,34,1,0 +19900131,900,35,111,7 +19900131,900,36,111,28 +19900131,900,37,111,100 +19900131,900,38,111,289 +19900131,900,39,111,7 +19900131,900,40,111,28 +19900131,900,41,111,100 +19900131,900,42,111,289 +19900131,900,44,1,0 +19900131,900,45,1,0 +19900131,900,49,1,0 +19900131,900,50,1,0 +19900131,900,57,1,0 +19900131,900,58,1,0 +19900131,900,123,1,0 +19900131,900,139,111,7 +19900131,900,141,1,0 +19900131,900,142,1,0 +19900131,900,143,1,0 +19900131,900,144,1,0 +19900131,900,145,1,0 +19900131,900,146,1,0 +19900131,900,147,1,0 +19900131,900,148,1,0 +19900131,900,169,1,0 +19900131,900,170,111,28 +19900131,900,172,1,0 +19900131,900,175,1,0 +19900131,900,176,1,0 +19900131,900,177,1,0 +19900131,900,178,1,0 +19900131,900,179,1,0 +19900131,900,180,1,0 +19900131,900,181,1,0 +19900131,900,182,1,0 +19900131,900,183,111,100 +19900131,900,189,1,0 +19900131,900,195,1,0 +19900131,900,196,1,0 +19900131,900,197,1,0 +19900131,900,198,1,0 +19900131,900,201,1,0 +19900131,900,202,1,0 +19900131,900,205,1,0 +19900131,900,208,1,0 +19900131,900,209,1,0 +19900131,900,210,1,0 +19900131,900,211,1,0 +19900131,900,212,1,0 +19900131,900,213,1,0 +19900131,900,228,1,0 +19900131,900,235,1,0 +19900131,900,236,111,289 +19900131,900,238,1,0 +19900131,900,59,1,0 +19900131,900,78,1,0 +19900131,900,79,1,0 +19900131,900,136,1,0 +19900131,900,137,1,0 +19900131,900,151,1,0 +19900131,900,159,1,0 +19900131,900,164,1,0 +19900131,900,165,1,0 +19900131,900,166,1,0 +19900131,900,167,1,0 +19900131,900,168,1,0 +19900131,900,186,1,0 +19900131,900,187,1,0 +19900131,900,188,1,0 +19900131,900,229,1,0 +19900131,900,230,1,0 +19900131,900,231,1,0 +19900131,900,232,1,0 +19900131,900,243,1,0 +19900131,900,244,1,0 +19900131,900,245,1,0 +19900131,900,228246,1,0 +19900131,900,228247,1,0 +19900131,1200,133,100,1000 +19900131,1200,133,100,975 +19900131,1200,133,100,950 +19900131,1200,133,100,925 +19900131,1200,133,100,900 +19900131,1200,133,100,875 +19900131,1200,133,100,850 +19900131,1200,133,100,825 +19900131,1200,133,100,800 +19900131,1200,133,100,775 +19900131,1200,133,100,750 +19900131,1200,133,100,740 +19900131,1200,133,100,700 +19900131,1200,133,100,650 +19900131,1200,133,100,620 +19900131,1200,133,100,600 +19900131,1200,133,100,550 +19900131,1200,133,100,500 +19900131,1200,133,100,450 +19900131,1200,133,100,400 +19900131,1200,133,100,375 +19900131,1200,133,100,350 +19900131,1200,133,100,300 +19900131,1200,133,100,250 +19900131,1200,133,100,245 +19900131,1200,133,100,225 +19900131,1200,133,100,200 +19900131,1200,133,100,175 +19900131,1200,133,100,150 +19900131,1200,133,100,125 +19900131,1200,133,100,100 +19900131,1200,133,100,70 +19900131,1200,133,100,50 +19900131,1200,133,100,30 +19900131,1200,133,100,20 +19900131,1200,133,100,10 +19900131,1200,133,100,9 +19900131,1200,133,100,7 +19900131,1200,133,100,5 +19900131,1200,133,100,3 +19900131,1200,133,100,2 +19900131,1200,133,100,1 +19900131,1200,133,210,40 +19900131,1200,3,117,2000 +19900131,1200,133,109,1 +19900131,1200,133,109,2 +19900131,1200,133,109,3 +19900131,1200,133,109,4 +19900131,1200,133,109,5 +19900131,1200,133,109,6 +19900131,1200,133,109,7 +19900131,1200,133,109,8 +19900131,1200,133,109,9 +19900131,1200,133,109,10 +19900131,1200,246,109,1 +19900131,1200,246,109,2 +19900131,1200,246,109,3 +19900131,1200,246,109,4 +19900131,1200,246,109,5 +19900131,1200,246,109,6 +19900131,1200,246,109,7 +19900131,1200,246,109,8 +19900131,1200,246,109,9 +19900131,1200,246,109,10 +19900131,1200,247,109,1 +19900131,1200,247,109,2 +19900131,1200,247,109,3 +19900131,1200,247,109,4 +19900131,1200,247,109,5 +19900131,1200,247,109,6 +19900131,1200,247,109,7 +19900131,1200,247,109,8 +19900131,1200,247,109,9 +19900131,1200,247,109,10 +19900131,1200,248,109,1 +19900131,1200,248,109,2 +19900131,1200,248,109,3 +19900131,1200,248,109,4 +19900131,1200,248,109,5 +19900131,1200,248,109,6 +19900131,1200,248,109,7 +19900131,1200,248,109,8 +19900131,1200,248,109,9 +19900131,1200,248,109,10 +19900131,1200,8,1,0 +19900131,1200,31,1,0 +19900131,1200,32,1,0 +19900131,1200,33,1,0 +19900131,1200,34,1,0 +19900131,1200,35,111,7 +19900131,1200,36,111,28 +19900131,1200,37,111,100 +19900131,1200,38,111,289 +19900131,1200,39,111,7 +19900131,1200,40,111,28 +19900131,1200,41,111,100 +19900131,1200,42,111,289 +19900131,1200,44,1,0 +19900131,1200,45,1,0 +19900131,1200,49,1,0 +19900131,1200,50,1,0 +19900131,1200,57,1,0 +19900131,1200,58,1,0 +19900131,1200,123,1,0 +19900131,1200,139,111,7 +19900131,1200,141,1,0 +19900131,1200,142,1,0 +19900131,1200,143,1,0 +19900131,1200,144,1,0 +19900131,1200,145,1,0 +19900131,1200,146,1,0 +19900131,1200,147,1,0 +19900131,1200,148,1,0 +19900131,1200,169,1,0 +19900131,1200,170,111,28 +19900131,1200,172,1,0 +19900131,1200,175,1,0 +19900131,1200,176,1,0 +19900131,1200,177,1,0 +19900131,1200,178,1,0 +19900131,1200,179,1,0 +19900131,1200,180,1,0 +19900131,1200,181,1,0 +19900131,1200,182,1,0 +19900131,1200,183,111,100 +19900131,1200,189,1,0 +19900131,1200,195,1,0 +19900131,1200,196,1,0 +19900131,1200,197,1,0 +19900131,1200,198,1,0 +19900131,1200,201,1,0 +19900131,1200,202,1,0 +19900131,1200,205,1,0 +19900131,1200,208,1,0 +19900131,1200,209,1,0 +19900131,1200,210,1,0 +19900131,1200,211,1,0 +19900131,1200,212,1,0 +19900131,1200,213,1,0 +19900131,1200,228,1,0 +19900131,1200,235,1,0 +19900131,1200,236,111,289 +19900131,1200,238,1,0 +19900131,1200,59,1,0 +19900131,1200,78,1,0 +19900131,1200,79,1,0 +19900131,1200,136,1,0 +19900131,1200,137,1,0 +19900131,1200,151,1,0 +19900131,1200,159,1,0 +19900131,1200,164,1,0 +19900131,1200,165,1,0 +19900131,1200,166,1,0 +19900131,1200,167,1,0 +19900131,1200,168,1,0 +19900131,1200,186,1,0 +19900131,1200,187,1,0 +19900131,1200,188,1,0 +19900131,1200,229,1,0 +19900131,1200,230,1,0 +19900131,1200,231,1,0 +19900131,1200,232,1,0 +19900131,1200,243,1,0 +19900131,1200,244,1,0 +19900131,1200,245,1,0 +19900131,1200,228246,1,0 +19900131,1200,228247,1,0 +19900131,1500,8,1,0 +19900131,1500,31,1,0 +19900131,1500,32,1,0 +19900131,1500,33,1,0 +19900131,1500,34,1,0 +19900131,1500,35,111,7 +19900131,1500,36,111,28 +19900131,1500,37,111,100 +19900131,1500,38,111,289 +19900131,1500,39,111,7 +19900131,1500,40,111,28 +19900131,1500,41,111,100 +19900131,1500,42,111,289 +19900131,1500,44,1,0 +19900131,1500,45,1,0 +19900131,1500,49,1,0 +19900131,1500,50,1,0 +19900131,1500,57,1,0 +19900131,1500,58,1,0 +19900131,1500,123,1,0 +19900131,1500,139,111,7 +19900131,1500,141,1,0 +19900131,1500,142,1,0 +19900131,1500,143,1,0 +19900131,1500,144,1,0 +19900131,1500,145,1,0 +19900131,1500,146,1,0 +19900131,1500,147,1,0 +19900131,1500,148,1,0 +19900131,1500,169,1,0 +19900131,1500,170,111,28 +19900131,1500,172,1,0 +19900131,1500,175,1,0 +19900131,1500,176,1,0 +19900131,1500,177,1,0 +19900131,1500,178,1,0 +19900131,1500,179,1,0 +19900131,1500,180,1,0 +19900131,1500,181,1,0 +19900131,1500,182,1,0 +19900131,1500,183,111,100 +19900131,1500,189,1,0 +19900131,1500,195,1,0 +19900131,1500,196,1,0 +19900131,1500,197,1,0 +19900131,1500,198,1,0 +19900131,1500,201,1,0 +19900131,1500,202,1,0 +19900131,1500,205,1,0 +19900131,1500,208,1,0 +19900131,1500,209,1,0 +19900131,1500,210,1,0 +19900131,1500,211,1,0 +19900131,1500,212,1,0 +19900131,1500,213,1,0 +19900131,1500,228,1,0 +19900131,1500,235,1,0 +19900131,1500,236,111,289 +19900131,1500,238,1,0 +19900131,1500,59,1,0 +19900131,1500,78,1,0 +19900131,1500,79,1,0 +19900131,1500,136,1,0 +19900131,1500,137,1,0 +19900131,1500,151,1,0 +19900131,1500,159,1,0 +19900131,1500,164,1,0 +19900131,1500,165,1,0 +19900131,1500,166,1,0 +19900131,1500,167,1,0 +19900131,1500,168,1,0 +19900131,1500,186,1,0 +19900131,1500,187,1,0 +19900131,1500,188,1,0 +19900131,1500,229,1,0 +19900131,1500,230,1,0 +19900131,1500,231,1,0 +19900131,1500,232,1,0 +19900131,1500,243,1,0 +19900131,1500,244,1,0 +19900131,1500,245,1,0 +19900131,1500,228246,1,0 +19900131,1500,228247,1,0 +19900131,1800,133,100,1000 +19900131,1800,133,100,975 +19900131,1800,133,100,950 +19900131,1800,133,100,925 +19900131,1800,133,100,900 +19900131,1800,133,100,875 +19900131,1800,133,100,850 +19900131,1800,133,100,825 +19900131,1800,133,100,800 +19900131,1800,133,100,775 +19900131,1800,133,100,750 +19900131,1800,133,100,740 +19900131,1800,133,100,700 +19900131,1800,133,100,650 +19900131,1800,133,100,620 +19900131,1800,133,100,600 +19900131,1800,133,100,550 +19900131,1800,133,100,500 +19900131,1800,133,100,450 +19900131,1800,133,100,400 +19900131,1800,133,100,375 +19900131,1800,133,100,350 +19900131,1800,133,100,300 +19900131,1800,133,100,250 +19900131,1800,133,100,245 +19900131,1800,133,100,225 +19900131,1800,133,100,200 +19900131,1800,133,100,175 +19900131,1800,133,100,150 +19900131,1800,133,100,125 +19900131,1800,133,100,100 +19900131,1800,133,100,70 +19900131,1800,133,100,50 +19900131,1800,133,100,30 +19900131,1800,133,100,20 +19900131,1800,133,100,10 +19900131,1800,133,100,9 +19900131,1800,133,100,7 +19900131,1800,133,100,5 +19900131,1800,133,100,3 +19900131,1800,133,100,2 +19900131,1800,133,100,1 +19900131,1800,133,210,40 +19900131,1800,3,117,2000 +19900131,1800,133,109,1 +19900131,1800,133,109,2 +19900131,1800,133,109,3 +19900131,1800,133,109,4 +19900131,1800,133,109,5 +19900131,1800,133,109,6 +19900131,1800,133,109,7 +19900131,1800,133,109,8 +19900131,1800,133,109,9 +19900131,1800,133,109,10 +19900131,1800,246,109,1 +19900131,1800,246,109,2 +19900131,1800,246,109,3 +19900131,1800,246,109,4 +19900131,1800,246,109,5 +19900131,1800,246,109,6 +19900131,1800,246,109,7 +19900131,1800,246,109,8 +19900131,1800,246,109,9 +19900131,1800,246,109,10 +19900131,1800,247,109,1 +19900131,1800,247,109,2 +19900131,1800,247,109,3 +19900131,1800,247,109,4 +19900131,1800,247,109,5 +19900131,1800,247,109,6 +19900131,1800,247,109,7 +19900131,1800,247,109,8 +19900131,1800,247,109,9 +19900131,1800,247,109,10 +19900131,1800,248,109,1 +19900131,1800,248,109,2 +19900131,1800,248,109,3 +19900131,1800,248,109,4 +19900131,1800,248,109,5 +19900131,1800,248,109,6 +19900131,1800,248,109,7 +19900131,1800,248,109,8 +19900131,1800,248,109,9 +19900131,1800,248,109,10 +19900131,1800,8,1,0 +19900131,1800,31,1,0 +19900131,1800,32,1,0 +19900131,1800,33,1,0 +19900131,1800,34,1,0 +19900131,1800,35,111,7 +19900131,1800,36,111,28 +19900131,1800,37,111,100 +19900131,1800,38,111,289 +19900131,1800,39,111,7 +19900131,1800,40,111,28 +19900131,1800,41,111,100 +19900131,1800,42,111,289 +19900131,1800,44,1,0 +19900131,1800,45,1,0 +19900131,1800,49,1,0 +19900131,1800,50,1,0 +19900131,1800,57,1,0 +19900131,1800,58,1,0 +19900131,1800,123,1,0 +19900131,1800,139,111,7 +19900131,1800,141,1,0 +19900131,1800,142,1,0 +19900131,1800,143,1,0 +19900131,1800,144,1,0 +19900131,1800,145,1,0 +19900131,1800,146,1,0 +19900131,1800,147,1,0 +19900131,1800,148,1,0 +19900131,1800,169,1,0 +19900131,1800,170,111,28 +19900131,1800,172,1,0 +19900131,1800,175,1,0 +19900131,1800,176,1,0 +19900131,1800,177,1,0 +19900131,1800,178,1,0 +19900131,1800,179,1,0 +19900131,1800,180,1,0 +19900131,1800,181,1,0 +19900131,1800,182,1,0 +19900131,1800,183,111,100 +19900131,1800,189,1,0 +19900131,1800,195,1,0 +19900131,1800,196,1,0 +19900131,1800,197,1,0 +19900131,1800,198,1,0 +19900131,1800,201,1,0 +19900131,1800,202,1,0 +19900131,1800,205,1,0 +19900131,1800,208,1,0 +19900131,1800,209,1,0 +19900131,1800,210,1,0 +19900131,1800,211,1,0 +19900131,1800,212,1,0 +19900131,1800,213,1,0 +19900131,1800,228,1,0 +19900131,1800,235,1,0 +19900131,1800,236,111,289 +19900131,1800,238,1,0 +19900131,1800,59,1,0 +19900131,1800,78,1,0 +19900131,1800,79,1,0 +19900131,1800,136,1,0 +19900131,1800,137,1,0 +19900131,1800,151,1,0 +19900131,1800,159,1,0 +19900131,1800,164,1,0 +19900131,1800,165,1,0 +19900131,1800,166,1,0 +19900131,1800,167,1,0 +19900131,1800,168,1,0 +19900131,1800,186,1,0 +19900131,1800,187,1,0 +19900131,1800,188,1,0 +19900131,1800,229,1,0 +19900131,1800,230,1,0 +19900131,1800,231,1,0 +19900131,1800,232,1,0 +19900131,1800,243,1,0 +19900131,1800,244,1,0 +19900131,1800,245,1,0 +19900131,1800,228246,1,0 +19900131,1800,228247,1,0 +19900131,2100,8,1,0 +19900131,2100,31,1,0 +19900131,2100,32,1,0 +19900131,2100,33,1,0 +19900131,2100,34,1,0 +19900131,2100,35,111,7 +19900131,2100,36,111,28 +19900131,2100,37,111,100 +19900131,2100,38,111,289 +19900131,2100,39,111,7 +19900131,2100,40,111,28 +19900131,2100,41,111,100 +19900131,2100,42,111,289 +19900131,2100,44,1,0 +19900131,2100,45,1,0 +19900131,2100,49,1,0 +19900131,2100,50,1,0 +19900131,2100,57,1,0 +19900131,2100,58,1,0 +19900131,2100,123,1,0 +19900131,2100,139,111,7 +19900131,2100,141,1,0 +19900131,2100,142,1,0 +19900131,2100,143,1,0 +19900131,2100,144,1,0 +19900131,2100,145,1,0 +19900131,2100,146,1,0 +19900131,2100,147,1,0 +19900131,2100,148,1,0 +19900131,2100,169,1,0 +19900131,2100,170,111,28 +19900131,2100,172,1,0 +19900131,2100,175,1,0 +19900131,2100,176,1,0 +19900131,2100,177,1,0 +19900131,2100,178,1,0 +19900131,2100,179,1,0 +19900131,2100,180,1,0 +19900131,2100,181,1,0 +19900131,2100,182,1,0 +19900131,2100,183,111,100 +19900131,2100,189,1,0 +19900131,2100,195,1,0 +19900131,2100,196,1,0 +19900131,2100,197,1,0 +19900131,2100,198,1,0 +19900131,2100,201,1,0 +19900131,2100,202,1,0 +19900131,2100,205,1,0 +19900131,2100,208,1,0 +19900131,2100,209,1,0 +19900131,2100,210,1,0 +19900131,2100,211,1,0 +19900131,2100,212,1,0 +19900131,2100,213,1,0 +19900131,2100,228,1,0 +19900131,2100,235,1,0 +19900131,2100,236,111,289 +19900131,2100,238,1,0 +19900131,2100,59,1,0 +19900131,2100,78,1,0 +19900131,2100,79,1,0 +19900131,2100,136,1,0 +19900131,2100,137,1,0 +19900131,2100,151,1,0 +19900131,2100,159,1,0 +19900131,2100,164,1,0 +19900131,2100,165,1,0 +19900131,2100,166,1,0 +19900131,2100,167,1,0 +19900131,2100,168,1,0 +19900131,2100,186,1,0 +19900131,2100,187,1,0 +19900131,2100,188,1,0 +19900131,2100,229,1,0 +19900131,2100,230,1,0 +19900131,2100,231,1,0 +19900131,2100,232,1,0 +19900131,2100,243,1,0 +19900131,2100,244,1,0 +19900131,2100,245,1,0 +19900131,2100,228246,1,0 +19900131,2100,228247,1,0 +19900201,0,133,100,1000 +19900201,0,133,100,975 +19900201,0,133,100,950 +19900201,0,133,100,925 +19900201,0,133,100,900 +19900201,0,133,100,875 +19900201,0,133,100,850 +19900201,0,133,100,825 +19900201,0,133,100,800 +19900201,0,133,100,775 +19900201,0,133,100,750 +19900201,0,133,100,740 +19900201,0,133,100,700 +19900201,0,133,100,650 +19900201,0,133,100,620 +19900201,0,133,100,600 +19900201,0,133,100,550 +19900201,0,133,100,500 +19900201,0,133,100,450 +19900201,0,133,100,400 +19900201,0,133,100,375 +19900201,0,133,100,350 +19900201,0,133,100,300 +19900201,0,133,100,250 +19900201,0,133,100,245 +19900201,0,133,100,225 +19900201,0,133,100,200 +19900201,0,133,100,175 +19900201,0,133,100,150 +19900201,0,133,100,125 +19900201,0,133,100,100 +19900201,0,133,100,70 +19900201,0,133,100,50 +19900201,0,133,100,30 +19900201,0,133,100,20 +19900201,0,133,100,10 +19900201,0,133,100,9 +19900201,0,133,100,7 +19900201,0,133,100,5 +19900201,0,133,100,3 +19900201,0,133,100,2 +19900201,0,133,100,1 +19900201,0,133,210,40 +19900201,0,3,117,2000 +19900201,0,133,109,1 +19900201,0,133,109,2 +19900201,0,133,109,3 +19900201,0,133,109,4 +19900201,0,133,109,5 +19900201,0,133,109,6 +19900201,0,133,109,7 +19900201,0,133,109,8 +19900201,0,133,109,9 +19900201,0,133,109,10 +19900201,0,246,109,1 +19900201,0,246,109,2 +19900201,0,246,109,3 +19900201,0,246,109,4 +19900201,0,246,109,5 +19900201,0,246,109,6 +19900201,0,246,109,7 +19900201,0,246,109,8 +19900201,0,246,109,9 +19900201,0,246,109,10 +19900201,0,247,109,1 +19900201,0,247,109,2 +19900201,0,247,109,3 +19900201,0,247,109,4 +19900201,0,247,109,5 +19900201,0,247,109,6 +19900201,0,247,109,7 +19900201,0,247,109,8 +19900201,0,247,109,9 +19900201,0,247,109,10 +19900201,0,248,109,1 +19900201,0,248,109,2 +19900201,0,248,109,3 +19900201,0,248,109,4 +19900201,0,248,109,5 +19900201,0,248,109,6 +19900201,0,248,109,7 +19900201,0,248,109,8 +19900201,0,248,109,9 +19900201,0,248,109,10 +19900201,0,8,1,0 +19900201,0,31,1,0 +19900201,0,32,1,0 +19900201,0,33,1,0 +19900201,0,34,1,0 +19900201,0,35,111,7 +19900201,0,36,111,28 +19900201,0,37,111,100 +19900201,0,38,111,289 +19900201,0,39,111,7 +19900201,0,40,111,28 +19900201,0,41,111,100 +19900201,0,42,111,289 +19900201,0,44,1,0 +19900201,0,45,1,0 +19900201,0,49,1,0 +19900201,0,50,1,0 +19900201,0,57,1,0 +19900201,0,58,1,0 +19900201,0,123,1,0 +19900201,0,139,111,7 +19900201,0,141,1,0 +19900201,0,142,1,0 +19900201,0,143,1,0 +19900201,0,144,1,0 +19900201,0,145,1,0 +19900201,0,146,1,0 +19900201,0,147,1,0 +19900201,0,148,1,0 +19900201,0,169,1,0 +19900201,0,170,111,28 +19900201,0,172,1,0 +19900201,0,175,1,0 +19900201,0,176,1,0 +19900201,0,177,1,0 +19900201,0,178,1,0 +19900201,0,179,1,0 +19900201,0,180,1,0 +19900201,0,181,1,0 +19900201,0,182,1,0 +19900201,0,183,111,100 +19900201,0,189,1,0 +19900201,0,195,1,0 +19900201,0,196,1,0 +19900201,0,197,1,0 +19900201,0,198,1,0 +19900201,0,201,1,0 +19900201,0,202,1,0 +19900201,0,205,1,0 +19900201,0,208,1,0 +19900201,0,209,1,0 +19900201,0,210,1,0 +19900201,0,211,1,0 +19900201,0,212,1,0 +19900201,0,213,1,0 +19900201,0,228,1,0 +19900201,0,235,1,0 +19900201,0,236,111,289 +19900201,0,238,1,0 +19900201,0,59,1,0 +19900201,0,78,1,0 +19900201,0,79,1,0 +19900201,0,136,1,0 +19900201,0,137,1,0 +19900201,0,151,1,0 +19900201,0,159,1,0 +19900201,0,164,1,0 +19900201,0,165,1,0 +19900201,0,166,1,0 +19900201,0,167,1,0 +19900201,0,168,1,0 +19900201,0,186,1,0 +19900201,0,187,1,0 +19900201,0,188,1,0 +19900201,0,229,1,0 +19900201,0,230,1,0 +19900201,0,231,1,0 +19900201,0,232,1,0 +19900201,0,243,1,0 +19900201,0,244,1,0 +19900201,0,245,1,0 +19900201,0,228246,1,0 +19900201,0,228247,1,0 diff --git a/ece2cmor/test/test_data/ifs/001/ICMSHECE3+199001.csv b/ece2cmor/test/test_data/ifs/001/ICMSHECE3+199001.csv new file mode 100644 index 0000000000000000000000000000000000000000..947805ec976508eafaa1dbc1f4c1f169958407e5 --- /dev/null +++ b/ece2cmor/test/test_data/ifs/001/ICMSHECE3+199001.csv @@ -0,0 +1,45756 @@ +19900101,300,131,100,850 +19900101,300,132,100,850 +19900101,300,134,100,1000 +19900101,300,152,100,1000 +19900101,600,131,100,1000 +19900101,600,131,100,975 +19900101,600,131,100,950 +19900101,600,131,100,925 +19900101,600,131,100,900 +19900101,600,131,100,875 +19900101,600,131,100,825 +19900101,600,131,100,800 +19900101,600,131,100,775 +19900101,600,131,100,750 +19900101,600,131,100,740 +19900101,600,131,100,700 +19900101,600,131,100,650 +19900101,600,131,100,620 +19900101,600,131,100,600 +19900101,600,131,100,550 +19900101,600,131,100,500 +19900101,600,131,100,450 +19900101,600,131,100,400 +19900101,600,131,100,375 +19900101,600,131,100,350 +19900101,600,131,100,300 +19900101,600,131,100,250 +19900101,600,131,100,245 +19900101,600,131,100,225 +19900101,600,131,100,200 +19900101,600,131,100,175 +19900101,600,131,100,150 +19900101,600,131,100,125 +19900101,600,131,100,100 +19900101,600,131,100,70 +19900101,600,131,100,50 +19900101,600,131,100,30 +19900101,600,131,100,20 +19900101,600,131,100,10 +19900101,600,131,100,9 +19900101,600,131,100,7 +19900101,600,131,100,5 +19900101,600,131,100,3 +19900101,600,131,100,2 +19900101,600,131,100,1 +19900101,600,131,210,40 +19900101,600,132,100,1000 +19900101,600,132,100,975 +19900101,600,132,100,950 +19900101,600,132,100,925 +19900101,600,132,100,900 +19900101,600,132,100,875 +19900101,600,132,100,825 +19900101,600,132,100,800 +19900101,600,132,100,775 +19900101,600,132,100,750 +19900101,600,132,100,740 +19900101,600,132,100,700 +19900101,600,132,100,650 +19900101,600,132,100,620 +19900101,600,132,100,600 +19900101,600,132,100,550 +19900101,600,132,100,500 +19900101,600,132,100,450 +19900101,600,132,100,400 +19900101,600,132,100,375 +19900101,600,132,100,350 +19900101,600,132,100,300 +19900101,600,132,100,250 +19900101,600,132,100,245 +19900101,600,132,100,225 +19900101,600,132,100,200 +19900101,600,132,100,175 +19900101,600,132,100,150 +19900101,600,132,100,125 +19900101,600,132,100,100 +19900101,600,132,100,70 +19900101,600,132,100,50 +19900101,600,132,100,30 +19900101,600,132,100,20 +19900101,600,132,100,10 +19900101,600,132,100,9 +19900101,600,132,100,7 +19900101,600,132,100,5 +19900101,600,132,100,3 +19900101,600,132,100,2 +19900101,600,132,100,1 +19900101,600,132,210,40 +19900101,600,130,100,1000 +19900101,600,130,100,975 +19900101,600,130,100,950 +19900101,600,130,100,925 +19900101,600,130,100,900 +19900101,600,130,100,875 +19900101,600,130,100,850 +19900101,600,130,100,825 +19900101,600,130,100,800 +19900101,600,130,100,775 +19900101,600,130,100,750 +19900101,600,130,100,740 +19900101,600,130,100,700 +19900101,600,130,100,650 +19900101,600,130,100,620 +19900101,600,130,100,600 +19900101,600,130,100,550 +19900101,600,130,100,500 +19900101,600,130,100,450 +19900101,600,130,100,400 +19900101,600,130,100,375 +19900101,600,130,100,350 +19900101,600,130,100,300 +19900101,600,130,100,250 +19900101,600,130,100,245 +19900101,600,130,100,225 +19900101,600,130,100,200 +19900101,600,130,100,175 +19900101,600,130,100,150 +19900101,600,130,100,125 +19900101,600,130,100,100 +19900101,600,130,100,70 +19900101,600,130,100,50 +19900101,600,130,100,30 +19900101,600,130,100,20 +19900101,600,130,100,10 +19900101,600,130,100,9 +19900101,600,130,100,7 +19900101,600,130,100,5 +19900101,600,130,100,3 +19900101,600,130,100,2 +19900101,600,130,100,1 +19900101,600,130,210,40 +19900101,600,129,100,1000 +19900101,600,129,100,975 +19900101,600,129,100,950 +19900101,600,129,100,925 +19900101,600,129,100,900 +19900101,600,129,100,875 +19900101,600,129,100,850 +19900101,600,129,100,825 +19900101,600,129,100,800 +19900101,600,129,100,775 +19900101,600,129,100,750 +19900101,600,129,100,740 +19900101,600,129,100,700 +19900101,600,129,100,650 +19900101,600,129,100,620 +19900101,600,129,100,600 +19900101,600,129,100,550 +19900101,600,129,100,500 +19900101,600,129,100,450 +19900101,600,129,100,400 +19900101,600,129,100,375 +19900101,600,129,100,350 +19900101,600,129,100,300 +19900101,600,129,100,250 +19900101,600,129,100,245 +19900101,600,129,100,225 +19900101,600,129,100,200 +19900101,600,129,100,175 +19900101,600,129,100,150 +19900101,600,129,100,125 +19900101,600,129,100,100 +19900101,600,129,100,70 +19900101,600,129,100,50 +19900101,600,129,100,30 +19900101,600,129,100,20 +19900101,600,129,100,10 +19900101,600,129,100,9 +19900101,600,129,100,7 +19900101,600,129,100,5 +19900101,600,129,100,3 +19900101,600,129,100,2 +19900101,600,129,100,1 +19900101,600,129,210,40 +19900101,600,157,100,1000 +19900101,600,157,100,975 +19900101,600,157,100,950 +19900101,600,157,100,925 +19900101,600,157,100,900 +19900101,600,157,100,875 +19900101,600,157,100,850 +19900101,600,157,100,825 +19900101,600,157,100,800 +19900101,600,157,100,775 +19900101,600,157,100,750 +19900101,600,157,100,740 +19900101,600,157,100,700 +19900101,600,157,100,650 +19900101,600,157,100,620 +19900101,600,157,100,600 +19900101,600,157,100,550 +19900101,600,157,100,500 +19900101,600,157,100,450 +19900101,600,157,100,400 +19900101,600,157,100,375 +19900101,600,157,100,350 +19900101,600,157,100,300 +19900101,600,157,100,250 +19900101,600,157,100,245 +19900101,600,157,100,225 +19900101,600,157,100,200 +19900101,600,157,100,175 +19900101,600,157,100,150 +19900101,600,157,100,125 +19900101,600,157,100,100 +19900101,600,157,100,70 +19900101,600,157,100,50 +19900101,600,157,100,30 +19900101,600,157,100,20 +19900101,600,157,100,10 +19900101,600,157,100,9 +19900101,600,157,100,7 +19900101,600,157,100,5 +19900101,600,157,100,3 +19900101,600,157,100,2 +19900101,600,157,100,1 +19900101,600,157,210,40 +19900101,600,135,100,1000 +19900101,600,135,100,975 +19900101,600,135,100,950 +19900101,600,135,100,925 +19900101,600,135,100,900 +19900101,600,135,100,875 +19900101,600,135,100,850 +19900101,600,135,100,825 +19900101,600,135,100,800 +19900101,600,135,100,775 +19900101,600,135,100,750 +19900101,600,135,100,740 +19900101,600,135,100,700 +19900101,600,135,100,650 +19900101,600,135,100,620 +19900101,600,135,100,600 +19900101,600,135,100,550 +19900101,600,135,100,500 +19900101,600,135,100,450 +19900101,600,135,100,400 +19900101,600,135,100,375 +19900101,600,135,100,350 +19900101,600,135,100,300 +19900101,600,135,100,250 +19900101,600,135,100,245 +19900101,600,135,100,225 +19900101,600,135,100,200 +19900101,600,135,100,175 +19900101,600,135,100,150 +19900101,600,135,100,125 +19900101,600,135,100,100 +19900101,600,135,100,70 +19900101,600,135,100,50 +19900101,600,135,100,30 +19900101,600,135,100,20 +19900101,600,135,100,10 +19900101,600,135,100,9 +19900101,600,135,100,7 +19900101,600,135,100,5 +19900101,600,135,100,3 +19900101,600,135,100,2 +19900101,600,135,100,1 +19900101,600,135,210,40 +19900101,600,138,100,1000 +19900101,600,138,100,975 +19900101,600,138,100,950 +19900101,600,138,100,925 +19900101,600,138,100,900 +19900101,600,138,100,875 +19900101,600,138,100,850 +19900101,600,138,100,825 +19900101,600,138,100,800 +19900101,600,138,100,775 +19900101,600,138,100,750 +19900101,600,138,100,740 +19900101,600,138,100,700 +19900101,600,138,100,650 +19900101,600,138,100,620 +19900101,600,138,100,600 +19900101,600,138,100,550 +19900101,600,138,100,500 +19900101,600,138,100,450 +19900101,600,138,100,400 +19900101,600,138,100,375 +19900101,600,138,100,350 +19900101,600,138,100,300 +19900101,600,138,100,250 +19900101,600,138,100,245 +19900101,600,138,100,225 +19900101,600,138,100,200 +19900101,600,138,100,175 +19900101,600,138,100,150 +19900101,600,138,100,125 +19900101,600,138,100,100 +19900101,600,138,100,70 +19900101,600,138,100,50 +19900101,600,138,100,30 +19900101,600,138,100,20 +19900101,600,138,100,10 +19900101,600,138,100,9 +19900101,600,138,100,7 +19900101,600,138,100,5 +19900101,600,138,100,3 +19900101,600,138,100,2 +19900101,600,138,100,1 +19900101,600,138,210,40 +19900101,600,131,109,1 +19900101,600,131,109,2 +19900101,600,131,109,3 +19900101,600,131,109,4 +19900101,600,131,109,5 +19900101,600,131,109,6 +19900101,600,131,109,7 +19900101,600,131,109,8 +19900101,600,131,109,9 +19900101,600,131,109,10 +19900101,600,132,109,1 +19900101,600,132,109,2 +19900101,600,132,109,3 +19900101,600,132,109,4 +19900101,600,132,109,5 +19900101,600,132,109,6 +19900101,600,132,109,7 +19900101,600,132,109,8 +19900101,600,132,109,9 +19900101,600,132,109,10 +19900101,600,130,109,1 +19900101,600,130,109,2 +19900101,600,130,109,3 +19900101,600,130,109,4 +19900101,600,130,109,5 +19900101,600,130,109,6 +19900101,600,130,109,7 +19900101,600,130,109,8 +19900101,600,130,109,9 +19900101,600,130,109,10 +19900101,600,157,109,1 +19900101,600,157,109,2 +19900101,600,157,109,3 +19900101,600,157,109,4 +19900101,600,157,109,5 +19900101,600,157,109,6 +19900101,600,157,109,7 +19900101,600,157,109,8 +19900101,600,157,109,9 +19900101,600,157,109,10 +19900101,600,54,109,1 +19900101,600,54,109,2 +19900101,600,54,109,3 +19900101,600,54,109,4 +19900101,600,54,109,5 +19900101,600,54,109,6 +19900101,600,54,109,7 +19900101,600,54,109,8 +19900101,600,54,109,9 +19900101,600,54,109,10 +19900101,600,135,109,1 +19900101,600,135,109,2 +19900101,600,135,109,3 +19900101,600,135,109,4 +19900101,600,135,109,5 +19900101,600,135,109,6 +19900101,600,135,109,7 +19900101,600,135,109,8 +19900101,600,135,109,9 +19900101,600,135,109,10 +19900101,600,134,109,1 +19900101,600,152,109,1 +19900101,600,131,100,850 +19900101,600,132,100,850 +19900101,600,134,100,1000 +19900101,600,152,100,1000 +19900101,900,131,100,850 +19900101,900,132,100,850 +19900101,900,134,100,1000 +19900101,900,152,100,1000 +19900101,1200,131,100,1000 +19900101,1200,131,100,975 +19900101,1200,131,100,950 +19900101,1200,131,100,925 +19900101,1200,131,100,900 +19900101,1200,131,100,875 +19900101,1200,131,100,825 +19900101,1200,131,100,800 +19900101,1200,131,100,775 +19900101,1200,131,100,750 +19900101,1200,131,100,740 +19900101,1200,131,100,700 +19900101,1200,131,100,650 +19900101,1200,131,100,620 +19900101,1200,131,100,600 +19900101,1200,131,100,550 +19900101,1200,131,100,500 +19900101,1200,131,100,450 +19900101,1200,131,100,400 +19900101,1200,131,100,375 +19900101,1200,131,100,350 +19900101,1200,131,100,300 +19900101,1200,131,100,250 +19900101,1200,131,100,245 +19900101,1200,131,100,225 +19900101,1200,131,100,200 +19900101,1200,131,100,175 +19900101,1200,131,100,150 +19900101,1200,131,100,125 +19900101,1200,131,100,100 +19900101,1200,131,100,70 +19900101,1200,131,100,50 +19900101,1200,131,100,30 +19900101,1200,131,100,20 +19900101,1200,131,100,10 +19900101,1200,131,100,9 +19900101,1200,131,100,7 +19900101,1200,131,100,5 +19900101,1200,131,100,3 +19900101,1200,131,100,2 +19900101,1200,131,100,1 +19900101,1200,131,210,40 +19900101,1200,132,100,1000 +19900101,1200,132,100,975 +19900101,1200,132,100,950 +19900101,1200,132,100,925 +19900101,1200,132,100,900 +19900101,1200,132,100,875 +19900101,1200,132,100,825 +19900101,1200,132,100,800 +19900101,1200,132,100,775 +19900101,1200,132,100,750 +19900101,1200,132,100,740 +19900101,1200,132,100,700 +19900101,1200,132,100,650 +19900101,1200,132,100,620 +19900101,1200,132,100,600 +19900101,1200,132,100,550 +19900101,1200,132,100,500 +19900101,1200,132,100,450 +19900101,1200,132,100,400 +19900101,1200,132,100,375 +19900101,1200,132,100,350 +19900101,1200,132,100,300 +19900101,1200,132,100,250 +19900101,1200,132,100,245 +19900101,1200,132,100,225 +19900101,1200,132,100,200 +19900101,1200,132,100,175 +19900101,1200,132,100,150 +19900101,1200,132,100,125 +19900101,1200,132,100,100 +19900101,1200,132,100,70 +19900101,1200,132,100,50 +19900101,1200,132,100,30 +19900101,1200,132,100,20 +19900101,1200,132,100,10 +19900101,1200,132,100,9 +19900101,1200,132,100,7 +19900101,1200,132,100,5 +19900101,1200,132,100,3 +19900101,1200,132,100,2 +19900101,1200,132,100,1 +19900101,1200,132,210,40 +19900101,1200,130,100,1000 +19900101,1200,130,100,975 +19900101,1200,130,100,950 +19900101,1200,130,100,925 +19900101,1200,130,100,900 +19900101,1200,130,100,875 +19900101,1200,130,100,850 +19900101,1200,130,100,825 +19900101,1200,130,100,800 +19900101,1200,130,100,775 +19900101,1200,130,100,750 +19900101,1200,130,100,740 +19900101,1200,130,100,700 +19900101,1200,130,100,650 +19900101,1200,130,100,620 +19900101,1200,130,100,600 +19900101,1200,130,100,550 +19900101,1200,130,100,500 +19900101,1200,130,100,450 +19900101,1200,130,100,400 +19900101,1200,130,100,375 +19900101,1200,130,100,350 +19900101,1200,130,100,300 +19900101,1200,130,100,250 +19900101,1200,130,100,245 +19900101,1200,130,100,225 +19900101,1200,130,100,200 +19900101,1200,130,100,175 +19900101,1200,130,100,150 +19900101,1200,130,100,125 +19900101,1200,130,100,100 +19900101,1200,130,100,70 +19900101,1200,130,100,50 +19900101,1200,130,100,30 +19900101,1200,130,100,20 +19900101,1200,130,100,10 +19900101,1200,130,100,9 +19900101,1200,130,100,7 +19900101,1200,130,100,5 +19900101,1200,130,100,3 +19900101,1200,130,100,2 +19900101,1200,130,100,1 +19900101,1200,130,210,40 +19900101,1200,129,100,1000 +19900101,1200,129,100,975 +19900101,1200,129,100,950 +19900101,1200,129,100,925 +19900101,1200,129,100,900 +19900101,1200,129,100,875 +19900101,1200,129,100,850 +19900101,1200,129,100,825 +19900101,1200,129,100,800 +19900101,1200,129,100,775 +19900101,1200,129,100,750 +19900101,1200,129,100,740 +19900101,1200,129,100,700 +19900101,1200,129,100,650 +19900101,1200,129,100,620 +19900101,1200,129,100,600 +19900101,1200,129,100,550 +19900101,1200,129,100,500 +19900101,1200,129,100,450 +19900101,1200,129,100,400 +19900101,1200,129,100,375 +19900101,1200,129,100,350 +19900101,1200,129,100,300 +19900101,1200,129,100,250 +19900101,1200,129,100,245 +19900101,1200,129,100,225 +19900101,1200,129,100,200 +19900101,1200,129,100,175 +19900101,1200,129,100,150 +19900101,1200,129,100,125 +19900101,1200,129,100,100 +19900101,1200,129,100,70 +19900101,1200,129,100,50 +19900101,1200,129,100,30 +19900101,1200,129,100,20 +19900101,1200,129,100,10 +19900101,1200,129,100,9 +19900101,1200,129,100,7 +19900101,1200,129,100,5 +19900101,1200,129,100,3 +19900101,1200,129,100,2 +19900101,1200,129,100,1 +19900101,1200,129,210,40 +19900101,1200,157,100,1000 +19900101,1200,157,100,975 +19900101,1200,157,100,950 +19900101,1200,157,100,925 +19900101,1200,157,100,900 +19900101,1200,157,100,875 +19900101,1200,157,100,850 +19900101,1200,157,100,825 +19900101,1200,157,100,800 +19900101,1200,157,100,775 +19900101,1200,157,100,750 +19900101,1200,157,100,740 +19900101,1200,157,100,700 +19900101,1200,157,100,650 +19900101,1200,157,100,620 +19900101,1200,157,100,600 +19900101,1200,157,100,550 +19900101,1200,157,100,500 +19900101,1200,157,100,450 +19900101,1200,157,100,400 +19900101,1200,157,100,375 +19900101,1200,157,100,350 +19900101,1200,157,100,300 +19900101,1200,157,100,250 +19900101,1200,157,100,245 +19900101,1200,157,100,225 +19900101,1200,157,100,200 +19900101,1200,157,100,175 +19900101,1200,157,100,150 +19900101,1200,157,100,125 +19900101,1200,157,100,100 +19900101,1200,157,100,70 +19900101,1200,157,100,50 +19900101,1200,157,100,30 +19900101,1200,157,100,20 +19900101,1200,157,100,10 +19900101,1200,157,100,9 +19900101,1200,157,100,7 +19900101,1200,157,100,5 +19900101,1200,157,100,3 +19900101,1200,157,100,2 +19900101,1200,157,100,1 +19900101,1200,157,210,40 +19900101,1200,135,100,1000 +19900101,1200,135,100,975 +19900101,1200,135,100,950 +19900101,1200,135,100,925 +19900101,1200,135,100,900 +19900101,1200,135,100,875 +19900101,1200,135,100,850 +19900101,1200,135,100,825 +19900101,1200,135,100,800 +19900101,1200,135,100,775 +19900101,1200,135,100,750 +19900101,1200,135,100,740 +19900101,1200,135,100,700 +19900101,1200,135,100,650 +19900101,1200,135,100,620 +19900101,1200,135,100,600 +19900101,1200,135,100,550 +19900101,1200,135,100,500 +19900101,1200,135,100,450 +19900101,1200,135,100,400 +19900101,1200,135,100,375 +19900101,1200,135,100,350 +19900101,1200,135,100,300 +19900101,1200,135,100,250 +19900101,1200,135,100,245 +19900101,1200,135,100,225 +19900101,1200,135,100,200 +19900101,1200,135,100,175 +19900101,1200,135,100,150 +19900101,1200,135,100,125 +19900101,1200,135,100,100 +19900101,1200,135,100,70 +19900101,1200,135,100,50 +19900101,1200,135,100,30 +19900101,1200,135,100,20 +19900101,1200,135,100,10 +19900101,1200,135,100,9 +19900101,1200,135,100,7 +19900101,1200,135,100,5 +19900101,1200,135,100,3 +19900101,1200,135,100,2 +19900101,1200,135,100,1 +19900101,1200,135,210,40 +19900101,1200,138,100,1000 +19900101,1200,138,100,975 +19900101,1200,138,100,950 +19900101,1200,138,100,925 +19900101,1200,138,100,900 +19900101,1200,138,100,875 +19900101,1200,138,100,850 +19900101,1200,138,100,825 +19900101,1200,138,100,800 +19900101,1200,138,100,775 +19900101,1200,138,100,750 +19900101,1200,138,100,740 +19900101,1200,138,100,700 +19900101,1200,138,100,650 +19900101,1200,138,100,620 +19900101,1200,138,100,600 +19900101,1200,138,100,550 +19900101,1200,138,100,500 +19900101,1200,138,100,450 +19900101,1200,138,100,400 +19900101,1200,138,100,375 +19900101,1200,138,100,350 +19900101,1200,138,100,300 +19900101,1200,138,100,250 +19900101,1200,138,100,245 +19900101,1200,138,100,225 +19900101,1200,138,100,200 +19900101,1200,138,100,175 +19900101,1200,138,100,150 +19900101,1200,138,100,125 +19900101,1200,138,100,100 +19900101,1200,138,100,70 +19900101,1200,138,100,50 +19900101,1200,138,100,30 +19900101,1200,138,100,20 +19900101,1200,138,100,10 +19900101,1200,138,100,9 +19900101,1200,138,100,7 +19900101,1200,138,100,5 +19900101,1200,138,100,3 +19900101,1200,138,100,2 +19900101,1200,138,100,1 +19900101,1200,138,210,40 +19900101,1200,131,109,1 +19900101,1200,131,109,2 +19900101,1200,131,109,3 +19900101,1200,131,109,4 +19900101,1200,131,109,5 +19900101,1200,131,109,6 +19900101,1200,131,109,7 +19900101,1200,131,109,8 +19900101,1200,131,109,9 +19900101,1200,131,109,10 +19900101,1200,132,109,1 +19900101,1200,132,109,2 +19900101,1200,132,109,3 +19900101,1200,132,109,4 +19900101,1200,132,109,5 +19900101,1200,132,109,6 +19900101,1200,132,109,7 +19900101,1200,132,109,8 +19900101,1200,132,109,9 +19900101,1200,132,109,10 +19900101,1200,130,109,1 +19900101,1200,130,109,2 +19900101,1200,130,109,3 +19900101,1200,130,109,4 +19900101,1200,130,109,5 +19900101,1200,130,109,6 +19900101,1200,130,109,7 +19900101,1200,130,109,8 +19900101,1200,130,109,9 +19900101,1200,130,109,10 +19900101,1200,157,109,1 +19900101,1200,157,109,2 +19900101,1200,157,109,3 +19900101,1200,157,109,4 +19900101,1200,157,109,5 +19900101,1200,157,109,6 +19900101,1200,157,109,7 +19900101,1200,157,109,8 +19900101,1200,157,109,9 +19900101,1200,157,109,10 +19900101,1200,54,109,1 +19900101,1200,54,109,2 +19900101,1200,54,109,3 +19900101,1200,54,109,4 +19900101,1200,54,109,5 +19900101,1200,54,109,6 +19900101,1200,54,109,7 +19900101,1200,54,109,8 +19900101,1200,54,109,9 +19900101,1200,54,109,10 +19900101,1200,135,109,1 +19900101,1200,135,109,2 +19900101,1200,135,109,3 +19900101,1200,135,109,4 +19900101,1200,135,109,5 +19900101,1200,135,109,6 +19900101,1200,135,109,7 +19900101,1200,135,109,8 +19900101,1200,135,109,9 +19900101,1200,135,109,10 +19900101,1200,134,109,1 +19900101,1200,152,109,1 +19900101,1200,131,100,850 +19900101,1200,132,100,850 +19900101,1200,134,100,1000 +19900101,1200,152,100,1000 +19900101,1500,131,100,850 +19900101,1500,132,100,850 +19900101,1500,134,100,1000 +19900101,1500,152,100,1000 +19900101,1800,131,100,1000 +19900101,1800,131,100,975 +19900101,1800,131,100,950 +19900101,1800,131,100,925 +19900101,1800,131,100,900 +19900101,1800,131,100,875 +19900101,1800,131,100,825 +19900101,1800,131,100,800 +19900101,1800,131,100,775 +19900101,1800,131,100,750 +19900101,1800,131,100,740 +19900101,1800,131,100,700 +19900101,1800,131,100,650 +19900101,1800,131,100,620 +19900101,1800,131,100,600 +19900101,1800,131,100,550 +19900101,1800,131,100,500 +19900101,1800,131,100,450 +19900101,1800,131,100,400 +19900101,1800,131,100,375 +19900101,1800,131,100,350 +19900101,1800,131,100,300 +19900101,1800,131,100,250 +19900101,1800,131,100,245 +19900101,1800,131,100,225 +19900101,1800,131,100,200 +19900101,1800,131,100,175 +19900101,1800,131,100,150 +19900101,1800,131,100,125 +19900101,1800,131,100,100 +19900101,1800,131,100,70 +19900101,1800,131,100,50 +19900101,1800,131,100,30 +19900101,1800,131,100,20 +19900101,1800,131,100,10 +19900101,1800,131,100,9 +19900101,1800,131,100,7 +19900101,1800,131,100,5 +19900101,1800,131,100,3 +19900101,1800,131,100,2 +19900101,1800,131,100,1 +19900101,1800,131,210,40 +19900101,1800,132,100,1000 +19900101,1800,132,100,975 +19900101,1800,132,100,950 +19900101,1800,132,100,925 +19900101,1800,132,100,900 +19900101,1800,132,100,875 +19900101,1800,132,100,825 +19900101,1800,132,100,800 +19900101,1800,132,100,775 +19900101,1800,132,100,750 +19900101,1800,132,100,740 +19900101,1800,132,100,700 +19900101,1800,132,100,650 +19900101,1800,132,100,620 +19900101,1800,132,100,600 +19900101,1800,132,100,550 +19900101,1800,132,100,500 +19900101,1800,132,100,450 +19900101,1800,132,100,400 +19900101,1800,132,100,375 +19900101,1800,132,100,350 +19900101,1800,132,100,300 +19900101,1800,132,100,250 +19900101,1800,132,100,245 +19900101,1800,132,100,225 +19900101,1800,132,100,200 +19900101,1800,132,100,175 +19900101,1800,132,100,150 +19900101,1800,132,100,125 +19900101,1800,132,100,100 +19900101,1800,132,100,70 +19900101,1800,132,100,50 +19900101,1800,132,100,30 +19900101,1800,132,100,20 +19900101,1800,132,100,10 +19900101,1800,132,100,9 +19900101,1800,132,100,7 +19900101,1800,132,100,5 +19900101,1800,132,100,3 +19900101,1800,132,100,2 +19900101,1800,132,100,1 +19900101,1800,132,210,40 +19900101,1800,130,100,1000 +19900101,1800,130,100,975 +19900101,1800,130,100,950 +19900101,1800,130,100,925 +19900101,1800,130,100,900 +19900101,1800,130,100,875 +19900101,1800,130,100,850 +19900101,1800,130,100,825 +19900101,1800,130,100,800 +19900101,1800,130,100,775 +19900101,1800,130,100,750 +19900101,1800,130,100,740 +19900101,1800,130,100,700 +19900101,1800,130,100,650 +19900101,1800,130,100,620 +19900101,1800,130,100,600 +19900101,1800,130,100,550 +19900101,1800,130,100,500 +19900101,1800,130,100,450 +19900101,1800,130,100,400 +19900101,1800,130,100,375 +19900101,1800,130,100,350 +19900101,1800,130,100,300 +19900101,1800,130,100,250 +19900101,1800,130,100,245 +19900101,1800,130,100,225 +19900101,1800,130,100,200 +19900101,1800,130,100,175 +19900101,1800,130,100,150 +19900101,1800,130,100,125 +19900101,1800,130,100,100 +19900101,1800,130,100,70 +19900101,1800,130,100,50 +19900101,1800,130,100,30 +19900101,1800,130,100,20 +19900101,1800,130,100,10 +19900101,1800,130,100,9 +19900101,1800,130,100,7 +19900101,1800,130,100,5 +19900101,1800,130,100,3 +19900101,1800,130,100,2 +19900101,1800,130,100,1 +19900101,1800,130,210,40 +19900101,1800,129,100,1000 +19900101,1800,129,100,975 +19900101,1800,129,100,950 +19900101,1800,129,100,925 +19900101,1800,129,100,900 +19900101,1800,129,100,875 +19900101,1800,129,100,850 +19900101,1800,129,100,825 +19900101,1800,129,100,800 +19900101,1800,129,100,775 +19900101,1800,129,100,750 +19900101,1800,129,100,740 +19900101,1800,129,100,700 +19900101,1800,129,100,650 +19900101,1800,129,100,620 +19900101,1800,129,100,600 +19900101,1800,129,100,550 +19900101,1800,129,100,500 +19900101,1800,129,100,450 +19900101,1800,129,100,400 +19900101,1800,129,100,375 +19900101,1800,129,100,350 +19900101,1800,129,100,300 +19900101,1800,129,100,250 +19900101,1800,129,100,245 +19900101,1800,129,100,225 +19900101,1800,129,100,200 +19900101,1800,129,100,175 +19900101,1800,129,100,150 +19900101,1800,129,100,125 +19900101,1800,129,100,100 +19900101,1800,129,100,70 +19900101,1800,129,100,50 +19900101,1800,129,100,30 +19900101,1800,129,100,20 +19900101,1800,129,100,10 +19900101,1800,129,100,9 +19900101,1800,129,100,7 +19900101,1800,129,100,5 +19900101,1800,129,100,3 +19900101,1800,129,100,2 +19900101,1800,129,100,1 +19900101,1800,129,210,40 +19900101,1800,157,100,1000 +19900101,1800,157,100,975 +19900101,1800,157,100,950 +19900101,1800,157,100,925 +19900101,1800,157,100,900 +19900101,1800,157,100,875 +19900101,1800,157,100,850 +19900101,1800,157,100,825 +19900101,1800,157,100,800 +19900101,1800,157,100,775 +19900101,1800,157,100,750 +19900101,1800,157,100,740 +19900101,1800,157,100,700 +19900101,1800,157,100,650 +19900101,1800,157,100,620 +19900101,1800,157,100,600 +19900101,1800,157,100,550 +19900101,1800,157,100,500 +19900101,1800,157,100,450 +19900101,1800,157,100,400 +19900101,1800,157,100,375 +19900101,1800,157,100,350 +19900101,1800,157,100,300 +19900101,1800,157,100,250 +19900101,1800,157,100,245 +19900101,1800,157,100,225 +19900101,1800,157,100,200 +19900101,1800,157,100,175 +19900101,1800,157,100,150 +19900101,1800,157,100,125 +19900101,1800,157,100,100 +19900101,1800,157,100,70 +19900101,1800,157,100,50 +19900101,1800,157,100,30 +19900101,1800,157,100,20 +19900101,1800,157,100,10 +19900101,1800,157,100,9 +19900101,1800,157,100,7 +19900101,1800,157,100,5 +19900101,1800,157,100,3 +19900101,1800,157,100,2 +19900101,1800,157,100,1 +19900101,1800,157,210,40 +19900101,1800,135,100,1000 +19900101,1800,135,100,975 +19900101,1800,135,100,950 +19900101,1800,135,100,925 +19900101,1800,135,100,900 +19900101,1800,135,100,875 +19900101,1800,135,100,850 +19900101,1800,135,100,825 +19900101,1800,135,100,800 +19900101,1800,135,100,775 +19900101,1800,135,100,750 +19900101,1800,135,100,740 +19900101,1800,135,100,700 +19900101,1800,135,100,650 +19900101,1800,135,100,620 +19900101,1800,135,100,600 +19900101,1800,135,100,550 +19900101,1800,135,100,500 +19900101,1800,135,100,450 +19900101,1800,135,100,400 +19900101,1800,135,100,375 +19900101,1800,135,100,350 +19900101,1800,135,100,300 +19900101,1800,135,100,250 +19900101,1800,135,100,245 +19900101,1800,135,100,225 +19900101,1800,135,100,200 +19900101,1800,135,100,175 +19900101,1800,135,100,150 +19900101,1800,135,100,125 +19900101,1800,135,100,100 +19900101,1800,135,100,70 +19900101,1800,135,100,50 +19900101,1800,135,100,30 +19900101,1800,135,100,20 +19900101,1800,135,100,10 +19900101,1800,135,100,9 +19900101,1800,135,100,7 +19900101,1800,135,100,5 +19900101,1800,135,100,3 +19900101,1800,135,100,2 +19900101,1800,135,100,1 +19900101,1800,135,210,40 +19900101,1800,138,100,1000 +19900101,1800,138,100,975 +19900101,1800,138,100,950 +19900101,1800,138,100,925 +19900101,1800,138,100,900 +19900101,1800,138,100,875 +19900101,1800,138,100,850 +19900101,1800,138,100,825 +19900101,1800,138,100,800 +19900101,1800,138,100,775 +19900101,1800,138,100,750 +19900101,1800,138,100,740 +19900101,1800,138,100,700 +19900101,1800,138,100,650 +19900101,1800,138,100,620 +19900101,1800,138,100,600 +19900101,1800,138,100,550 +19900101,1800,138,100,500 +19900101,1800,138,100,450 +19900101,1800,138,100,400 +19900101,1800,138,100,375 +19900101,1800,138,100,350 +19900101,1800,138,100,300 +19900101,1800,138,100,250 +19900101,1800,138,100,245 +19900101,1800,138,100,225 +19900101,1800,138,100,200 +19900101,1800,138,100,175 +19900101,1800,138,100,150 +19900101,1800,138,100,125 +19900101,1800,138,100,100 +19900101,1800,138,100,70 +19900101,1800,138,100,50 +19900101,1800,138,100,30 +19900101,1800,138,100,20 +19900101,1800,138,100,10 +19900101,1800,138,100,9 +19900101,1800,138,100,7 +19900101,1800,138,100,5 +19900101,1800,138,100,3 +19900101,1800,138,100,2 +19900101,1800,138,100,1 +19900101,1800,138,210,40 +19900101,1800,131,109,1 +19900101,1800,131,109,2 +19900101,1800,131,109,3 +19900101,1800,131,109,4 +19900101,1800,131,109,5 +19900101,1800,131,109,6 +19900101,1800,131,109,7 +19900101,1800,131,109,8 +19900101,1800,131,109,9 +19900101,1800,131,109,10 +19900101,1800,132,109,1 +19900101,1800,132,109,2 +19900101,1800,132,109,3 +19900101,1800,132,109,4 +19900101,1800,132,109,5 +19900101,1800,132,109,6 +19900101,1800,132,109,7 +19900101,1800,132,109,8 +19900101,1800,132,109,9 +19900101,1800,132,109,10 +19900101,1800,130,109,1 +19900101,1800,130,109,2 +19900101,1800,130,109,3 +19900101,1800,130,109,4 +19900101,1800,130,109,5 +19900101,1800,130,109,6 +19900101,1800,130,109,7 +19900101,1800,130,109,8 +19900101,1800,130,109,9 +19900101,1800,130,109,10 +19900101,1800,157,109,1 +19900101,1800,157,109,2 +19900101,1800,157,109,3 +19900101,1800,157,109,4 +19900101,1800,157,109,5 +19900101,1800,157,109,6 +19900101,1800,157,109,7 +19900101,1800,157,109,8 +19900101,1800,157,109,9 +19900101,1800,157,109,10 +19900101,1800,54,109,1 +19900101,1800,54,109,2 +19900101,1800,54,109,3 +19900101,1800,54,109,4 +19900101,1800,54,109,5 +19900101,1800,54,109,6 +19900101,1800,54,109,7 +19900101,1800,54,109,8 +19900101,1800,54,109,9 +19900101,1800,54,109,10 +19900101,1800,135,109,1 +19900101,1800,135,109,2 +19900101,1800,135,109,3 +19900101,1800,135,109,4 +19900101,1800,135,109,5 +19900101,1800,135,109,6 +19900101,1800,135,109,7 +19900101,1800,135,109,8 +19900101,1800,135,109,9 +19900101,1800,135,109,10 +19900101,1800,134,109,1 +19900101,1800,152,109,1 +19900101,1800,131,100,850 +19900101,1800,132,100,850 +19900101,1800,134,100,1000 +19900101,1800,152,100,1000 +19900101,2100,131,100,850 +19900101,2100,132,100,850 +19900101,2100,134,100,1000 +19900101,2100,152,100,1000 +19900102,0,131,100,1000 +19900102,0,131,100,975 +19900102,0,131,100,950 +19900102,0,131,100,925 +19900102,0,131,100,900 +19900102,0,131,100,875 +19900102,0,131,100,825 +19900102,0,131,100,800 +19900102,0,131,100,775 +19900102,0,131,100,750 +19900102,0,131,100,740 +19900102,0,131,100,700 +19900102,0,131,100,650 +19900102,0,131,100,620 +19900102,0,131,100,600 +19900102,0,131,100,550 +19900102,0,131,100,500 +19900102,0,131,100,450 +19900102,0,131,100,400 +19900102,0,131,100,375 +19900102,0,131,100,350 +19900102,0,131,100,300 +19900102,0,131,100,250 +19900102,0,131,100,245 +19900102,0,131,100,225 +19900102,0,131,100,200 +19900102,0,131,100,175 +19900102,0,131,100,150 +19900102,0,131,100,125 +19900102,0,131,100,100 +19900102,0,131,100,70 +19900102,0,131,100,50 +19900102,0,131,100,30 +19900102,0,131,100,20 +19900102,0,131,100,10 +19900102,0,131,100,9 +19900102,0,131,100,7 +19900102,0,131,100,5 +19900102,0,131,100,3 +19900102,0,131,100,2 +19900102,0,131,100,1 +19900102,0,131,210,40 +19900102,0,132,100,1000 +19900102,0,132,100,975 +19900102,0,132,100,950 +19900102,0,132,100,925 +19900102,0,132,100,900 +19900102,0,132,100,875 +19900102,0,132,100,825 +19900102,0,132,100,800 +19900102,0,132,100,775 +19900102,0,132,100,750 +19900102,0,132,100,740 +19900102,0,132,100,700 +19900102,0,132,100,650 +19900102,0,132,100,620 +19900102,0,132,100,600 +19900102,0,132,100,550 +19900102,0,132,100,500 +19900102,0,132,100,450 +19900102,0,132,100,400 +19900102,0,132,100,375 +19900102,0,132,100,350 +19900102,0,132,100,300 +19900102,0,132,100,250 +19900102,0,132,100,245 +19900102,0,132,100,225 +19900102,0,132,100,200 +19900102,0,132,100,175 +19900102,0,132,100,150 +19900102,0,132,100,125 +19900102,0,132,100,100 +19900102,0,132,100,70 +19900102,0,132,100,50 +19900102,0,132,100,30 +19900102,0,132,100,20 +19900102,0,132,100,10 +19900102,0,132,100,9 +19900102,0,132,100,7 +19900102,0,132,100,5 +19900102,0,132,100,3 +19900102,0,132,100,2 +19900102,0,132,100,1 +19900102,0,132,210,40 +19900102,0,130,100,1000 +19900102,0,130,100,975 +19900102,0,130,100,950 +19900102,0,130,100,925 +19900102,0,130,100,900 +19900102,0,130,100,875 +19900102,0,130,100,850 +19900102,0,130,100,825 +19900102,0,130,100,800 +19900102,0,130,100,775 +19900102,0,130,100,750 +19900102,0,130,100,740 +19900102,0,130,100,700 +19900102,0,130,100,650 +19900102,0,130,100,620 +19900102,0,130,100,600 +19900102,0,130,100,550 +19900102,0,130,100,500 +19900102,0,130,100,450 +19900102,0,130,100,400 +19900102,0,130,100,375 +19900102,0,130,100,350 +19900102,0,130,100,300 +19900102,0,130,100,250 +19900102,0,130,100,245 +19900102,0,130,100,225 +19900102,0,130,100,200 +19900102,0,130,100,175 +19900102,0,130,100,150 +19900102,0,130,100,125 +19900102,0,130,100,100 +19900102,0,130,100,70 +19900102,0,130,100,50 +19900102,0,130,100,30 +19900102,0,130,100,20 +19900102,0,130,100,10 +19900102,0,130,100,9 +19900102,0,130,100,7 +19900102,0,130,100,5 +19900102,0,130,100,3 +19900102,0,130,100,2 +19900102,0,130,100,1 +19900102,0,130,210,40 +19900102,0,129,100,1000 +19900102,0,129,100,975 +19900102,0,129,100,950 +19900102,0,129,100,925 +19900102,0,129,100,900 +19900102,0,129,100,875 +19900102,0,129,100,850 +19900102,0,129,100,825 +19900102,0,129,100,800 +19900102,0,129,100,775 +19900102,0,129,100,750 +19900102,0,129,100,740 +19900102,0,129,100,700 +19900102,0,129,100,650 +19900102,0,129,100,620 +19900102,0,129,100,600 +19900102,0,129,100,550 +19900102,0,129,100,500 +19900102,0,129,100,450 +19900102,0,129,100,400 +19900102,0,129,100,375 +19900102,0,129,100,350 +19900102,0,129,100,300 +19900102,0,129,100,250 +19900102,0,129,100,245 +19900102,0,129,100,225 +19900102,0,129,100,200 +19900102,0,129,100,175 +19900102,0,129,100,150 +19900102,0,129,100,125 +19900102,0,129,100,100 +19900102,0,129,100,70 +19900102,0,129,100,50 +19900102,0,129,100,30 +19900102,0,129,100,20 +19900102,0,129,100,10 +19900102,0,129,100,9 +19900102,0,129,100,7 +19900102,0,129,100,5 +19900102,0,129,100,3 +19900102,0,129,100,2 +19900102,0,129,100,1 +19900102,0,129,210,40 +19900102,0,157,100,1000 +19900102,0,157,100,975 +19900102,0,157,100,950 +19900102,0,157,100,925 +19900102,0,157,100,900 +19900102,0,157,100,875 +19900102,0,157,100,850 +19900102,0,157,100,825 +19900102,0,157,100,800 +19900102,0,157,100,775 +19900102,0,157,100,750 +19900102,0,157,100,740 +19900102,0,157,100,700 +19900102,0,157,100,650 +19900102,0,157,100,620 +19900102,0,157,100,600 +19900102,0,157,100,550 +19900102,0,157,100,500 +19900102,0,157,100,450 +19900102,0,157,100,400 +19900102,0,157,100,375 +19900102,0,157,100,350 +19900102,0,157,100,300 +19900102,0,157,100,250 +19900102,0,157,100,245 +19900102,0,157,100,225 +19900102,0,157,100,200 +19900102,0,157,100,175 +19900102,0,157,100,150 +19900102,0,157,100,125 +19900102,0,157,100,100 +19900102,0,157,100,70 +19900102,0,157,100,50 +19900102,0,157,100,30 +19900102,0,157,100,20 +19900102,0,157,100,10 +19900102,0,157,100,9 +19900102,0,157,100,7 +19900102,0,157,100,5 +19900102,0,157,100,3 +19900102,0,157,100,2 +19900102,0,157,100,1 +19900102,0,157,210,40 +19900102,0,135,100,1000 +19900102,0,135,100,975 +19900102,0,135,100,950 +19900102,0,135,100,925 +19900102,0,135,100,900 +19900102,0,135,100,875 +19900102,0,135,100,850 +19900102,0,135,100,825 +19900102,0,135,100,800 +19900102,0,135,100,775 +19900102,0,135,100,750 +19900102,0,135,100,740 +19900102,0,135,100,700 +19900102,0,135,100,650 +19900102,0,135,100,620 +19900102,0,135,100,600 +19900102,0,135,100,550 +19900102,0,135,100,500 +19900102,0,135,100,450 +19900102,0,135,100,400 +19900102,0,135,100,375 +19900102,0,135,100,350 +19900102,0,135,100,300 +19900102,0,135,100,250 +19900102,0,135,100,245 +19900102,0,135,100,225 +19900102,0,135,100,200 +19900102,0,135,100,175 +19900102,0,135,100,150 +19900102,0,135,100,125 +19900102,0,135,100,100 +19900102,0,135,100,70 +19900102,0,135,100,50 +19900102,0,135,100,30 +19900102,0,135,100,20 +19900102,0,135,100,10 +19900102,0,135,100,9 +19900102,0,135,100,7 +19900102,0,135,100,5 +19900102,0,135,100,3 +19900102,0,135,100,2 +19900102,0,135,100,1 +19900102,0,135,210,40 +19900102,0,138,100,1000 +19900102,0,138,100,975 +19900102,0,138,100,950 +19900102,0,138,100,925 +19900102,0,138,100,900 +19900102,0,138,100,875 +19900102,0,138,100,850 +19900102,0,138,100,825 +19900102,0,138,100,800 +19900102,0,138,100,775 +19900102,0,138,100,750 +19900102,0,138,100,740 +19900102,0,138,100,700 +19900102,0,138,100,650 +19900102,0,138,100,620 +19900102,0,138,100,600 +19900102,0,138,100,550 +19900102,0,138,100,500 +19900102,0,138,100,450 +19900102,0,138,100,400 +19900102,0,138,100,375 +19900102,0,138,100,350 +19900102,0,138,100,300 +19900102,0,138,100,250 +19900102,0,138,100,245 +19900102,0,138,100,225 +19900102,0,138,100,200 +19900102,0,138,100,175 +19900102,0,138,100,150 +19900102,0,138,100,125 +19900102,0,138,100,100 +19900102,0,138,100,70 +19900102,0,138,100,50 +19900102,0,138,100,30 +19900102,0,138,100,20 +19900102,0,138,100,10 +19900102,0,138,100,9 +19900102,0,138,100,7 +19900102,0,138,100,5 +19900102,0,138,100,3 +19900102,0,138,100,2 +19900102,0,138,100,1 +19900102,0,138,210,40 +19900102,0,131,109,1 +19900102,0,131,109,2 +19900102,0,131,109,3 +19900102,0,131,109,4 +19900102,0,131,109,5 +19900102,0,131,109,6 +19900102,0,131,109,7 +19900102,0,131,109,8 +19900102,0,131,109,9 +19900102,0,131,109,10 +19900102,0,132,109,1 +19900102,0,132,109,2 +19900102,0,132,109,3 +19900102,0,132,109,4 +19900102,0,132,109,5 +19900102,0,132,109,6 +19900102,0,132,109,7 +19900102,0,132,109,8 +19900102,0,132,109,9 +19900102,0,132,109,10 +19900102,0,130,109,1 +19900102,0,130,109,2 +19900102,0,130,109,3 +19900102,0,130,109,4 +19900102,0,130,109,5 +19900102,0,130,109,6 +19900102,0,130,109,7 +19900102,0,130,109,8 +19900102,0,130,109,9 +19900102,0,130,109,10 +19900102,0,157,109,1 +19900102,0,157,109,2 +19900102,0,157,109,3 +19900102,0,157,109,4 +19900102,0,157,109,5 +19900102,0,157,109,6 +19900102,0,157,109,7 +19900102,0,157,109,8 +19900102,0,157,109,9 +19900102,0,157,109,10 +19900102,0,54,109,1 +19900102,0,54,109,2 +19900102,0,54,109,3 +19900102,0,54,109,4 +19900102,0,54,109,5 +19900102,0,54,109,6 +19900102,0,54,109,7 +19900102,0,54,109,8 +19900102,0,54,109,9 +19900102,0,54,109,10 +19900102,0,135,109,1 +19900102,0,135,109,2 +19900102,0,135,109,3 +19900102,0,135,109,4 +19900102,0,135,109,5 +19900102,0,135,109,6 +19900102,0,135,109,7 +19900102,0,135,109,8 +19900102,0,135,109,9 +19900102,0,135,109,10 +19900102,0,134,109,1 +19900102,0,152,109,1 +19900102,0,131,100,850 +19900102,0,132,100,850 +19900102,0,134,100,1000 +19900102,0,152,100,1000 +19900102,300,131,100,850 +19900102,300,132,100,850 +19900102,300,134,100,1000 +19900102,300,152,100,1000 +19900102,600,131,100,1000 +19900102,600,131,100,975 +19900102,600,131,100,950 +19900102,600,131,100,925 +19900102,600,131,100,900 +19900102,600,131,100,875 +19900102,600,131,100,825 +19900102,600,131,100,800 +19900102,600,131,100,775 +19900102,600,131,100,750 +19900102,600,131,100,740 +19900102,600,131,100,700 +19900102,600,131,100,650 +19900102,600,131,100,620 +19900102,600,131,100,600 +19900102,600,131,100,550 +19900102,600,131,100,500 +19900102,600,131,100,450 +19900102,600,131,100,400 +19900102,600,131,100,375 +19900102,600,131,100,350 +19900102,600,131,100,300 +19900102,600,131,100,250 +19900102,600,131,100,245 +19900102,600,131,100,225 +19900102,600,131,100,200 +19900102,600,131,100,175 +19900102,600,131,100,150 +19900102,600,131,100,125 +19900102,600,131,100,100 +19900102,600,131,100,70 +19900102,600,131,100,50 +19900102,600,131,100,30 +19900102,600,131,100,20 +19900102,600,131,100,10 +19900102,600,131,100,9 +19900102,600,131,100,7 +19900102,600,131,100,5 +19900102,600,131,100,3 +19900102,600,131,100,2 +19900102,600,131,100,1 +19900102,600,131,210,40 +19900102,600,132,100,1000 +19900102,600,132,100,975 +19900102,600,132,100,950 +19900102,600,132,100,925 +19900102,600,132,100,900 +19900102,600,132,100,875 +19900102,600,132,100,825 +19900102,600,132,100,800 +19900102,600,132,100,775 +19900102,600,132,100,750 +19900102,600,132,100,740 +19900102,600,132,100,700 +19900102,600,132,100,650 +19900102,600,132,100,620 +19900102,600,132,100,600 +19900102,600,132,100,550 +19900102,600,132,100,500 +19900102,600,132,100,450 +19900102,600,132,100,400 +19900102,600,132,100,375 +19900102,600,132,100,350 +19900102,600,132,100,300 +19900102,600,132,100,250 +19900102,600,132,100,245 +19900102,600,132,100,225 +19900102,600,132,100,200 +19900102,600,132,100,175 +19900102,600,132,100,150 +19900102,600,132,100,125 +19900102,600,132,100,100 +19900102,600,132,100,70 +19900102,600,132,100,50 +19900102,600,132,100,30 +19900102,600,132,100,20 +19900102,600,132,100,10 +19900102,600,132,100,9 +19900102,600,132,100,7 +19900102,600,132,100,5 +19900102,600,132,100,3 +19900102,600,132,100,2 +19900102,600,132,100,1 +19900102,600,132,210,40 +19900102,600,130,100,1000 +19900102,600,130,100,975 +19900102,600,130,100,950 +19900102,600,130,100,925 +19900102,600,130,100,900 +19900102,600,130,100,875 +19900102,600,130,100,850 +19900102,600,130,100,825 +19900102,600,130,100,800 +19900102,600,130,100,775 +19900102,600,130,100,750 +19900102,600,130,100,740 +19900102,600,130,100,700 +19900102,600,130,100,650 +19900102,600,130,100,620 +19900102,600,130,100,600 +19900102,600,130,100,550 +19900102,600,130,100,500 +19900102,600,130,100,450 +19900102,600,130,100,400 +19900102,600,130,100,375 +19900102,600,130,100,350 +19900102,600,130,100,300 +19900102,600,130,100,250 +19900102,600,130,100,245 +19900102,600,130,100,225 +19900102,600,130,100,200 +19900102,600,130,100,175 +19900102,600,130,100,150 +19900102,600,130,100,125 +19900102,600,130,100,100 +19900102,600,130,100,70 +19900102,600,130,100,50 +19900102,600,130,100,30 +19900102,600,130,100,20 +19900102,600,130,100,10 +19900102,600,130,100,9 +19900102,600,130,100,7 +19900102,600,130,100,5 +19900102,600,130,100,3 +19900102,600,130,100,2 +19900102,600,130,100,1 +19900102,600,130,210,40 +19900102,600,129,100,1000 +19900102,600,129,100,975 +19900102,600,129,100,950 +19900102,600,129,100,925 +19900102,600,129,100,900 +19900102,600,129,100,875 +19900102,600,129,100,850 +19900102,600,129,100,825 +19900102,600,129,100,800 +19900102,600,129,100,775 +19900102,600,129,100,750 +19900102,600,129,100,740 +19900102,600,129,100,700 +19900102,600,129,100,650 +19900102,600,129,100,620 +19900102,600,129,100,600 +19900102,600,129,100,550 +19900102,600,129,100,500 +19900102,600,129,100,450 +19900102,600,129,100,400 +19900102,600,129,100,375 +19900102,600,129,100,350 +19900102,600,129,100,300 +19900102,600,129,100,250 +19900102,600,129,100,245 +19900102,600,129,100,225 +19900102,600,129,100,200 +19900102,600,129,100,175 +19900102,600,129,100,150 +19900102,600,129,100,125 +19900102,600,129,100,100 +19900102,600,129,100,70 +19900102,600,129,100,50 +19900102,600,129,100,30 +19900102,600,129,100,20 +19900102,600,129,100,10 +19900102,600,129,100,9 +19900102,600,129,100,7 +19900102,600,129,100,5 +19900102,600,129,100,3 +19900102,600,129,100,2 +19900102,600,129,100,1 +19900102,600,129,210,40 +19900102,600,157,100,1000 +19900102,600,157,100,975 +19900102,600,157,100,950 +19900102,600,157,100,925 +19900102,600,157,100,900 +19900102,600,157,100,875 +19900102,600,157,100,850 +19900102,600,157,100,825 +19900102,600,157,100,800 +19900102,600,157,100,775 +19900102,600,157,100,750 +19900102,600,157,100,740 +19900102,600,157,100,700 +19900102,600,157,100,650 +19900102,600,157,100,620 +19900102,600,157,100,600 +19900102,600,157,100,550 +19900102,600,157,100,500 +19900102,600,157,100,450 +19900102,600,157,100,400 +19900102,600,157,100,375 +19900102,600,157,100,350 +19900102,600,157,100,300 +19900102,600,157,100,250 +19900102,600,157,100,245 +19900102,600,157,100,225 +19900102,600,157,100,200 +19900102,600,157,100,175 +19900102,600,157,100,150 +19900102,600,157,100,125 +19900102,600,157,100,100 +19900102,600,157,100,70 +19900102,600,157,100,50 +19900102,600,157,100,30 +19900102,600,157,100,20 +19900102,600,157,100,10 +19900102,600,157,100,9 +19900102,600,157,100,7 +19900102,600,157,100,5 +19900102,600,157,100,3 +19900102,600,157,100,2 +19900102,600,157,100,1 +19900102,600,157,210,40 +19900102,600,135,100,1000 +19900102,600,135,100,975 +19900102,600,135,100,950 +19900102,600,135,100,925 +19900102,600,135,100,900 +19900102,600,135,100,875 +19900102,600,135,100,850 +19900102,600,135,100,825 +19900102,600,135,100,800 +19900102,600,135,100,775 +19900102,600,135,100,750 +19900102,600,135,100,740 +19900102,600,135,100,700 +19900102,600,135,100,650 +19900102,600,135,100,620 +19900102,600,135,100,600 +19900102,600,135,100,550 +19900102,600,135,100,500 +19900102,600,135,100,450 +19900102,600,135,100,400 +19900102,600,135,100,375 +19900102,600,135,100,350 +19900102,600,135,100,300 +19900102,600,135,100,250 +19900102,600,135,100,245 +19900102,600,135,100,225 +19900102,600,135,100,200 +19900102,600,135,100,175 +19900102,600,135,100,150 +19900102,600,135,100,125 +19900102,600,135,100,100 +19900102,600,135,100,70 +19900102,600,135,100,50 +19900102,600,135,100,30 +19900102,600,135,100,20 +19900102,600,135,100,10 +19900102,600,135,100,9 +19900102,600,135,100,7 +19900102,600,135,100,5 +19900102,600,135,100,3 +19900102,600,135,100,2 +19900102,600,135,100,1 +19900102,600,135,210,40 +19900102,600,138,100,1000 +19900102,600,138,100,975 +19900102,600,138,100,950 +19900102,600,138,100,925 +19900102,600,138,100,900 +19900102,600,138,100,875 +19900102,600,138,100,850 +19900102,600,138,100,825 +19900102,600,138,100,800 +19900102,600,138,100,775 +19900102,600,138,100,750 +19900102,600,138,100,740 +19900102,600,138,100,700 +19900102,600,138,100,650 +19900102,600,138,100,620 +19900102,600,138,100,600 +19900102,600,138,100,550 +19900102,600,138,100,500 +19900102,600,138,100,450 +19900102,600,138,100,400 +19900102,600,138,100,375 +19900102,600,138,100,350 +19900102,600,138,100,300 +19900102,600,138,100,250 +19900102,600,138,100,245 +19900102,600,138,100,225 +19900102,600,138,100,200 +19900102,600,138,100,175 +19900102,600,138,100,150 +19900102,600,138,100,125 +19900102,600,138,100,100 +19900102,600,138,100,70 +19900102,600,138,100,50 +19900102,600,138,100,30 +19900102,600,138,100,20 +19900102,600,138,100,10 +19900102,600,138,100,9 +19900102,600,138,100,7 +19900102,600,138,100,5 +19900102,600,138,100,3 +19900102,600,138,100,2 +19900102,600,138,100,1 +19900102,600,138,210,40 +19900102,600,131,109,1 +19900102,600,131,109,2 +19900102,600,131,109,3 +19900102,600,131,109,4 +19900102,600,131,109,5 +19900102,600,131,109,6 +19900102,600,131,109,7 +19900102,600,131,109,8 +19900102,600,131,109,9 +19900102,600,131,109,10 +19900102,600,132,109,1 +19900102,600,132,109,2 +19900102,600,132,109,3 +19900102,600,132,109,4 +19900102,600,132,109,5 +19900102,600,132,109,6 +19900102,600,132,109,7 +19900102,600,132,109,8 +19900102,600,132,109,9 +19900102,600,132,109,10 +19900102,600,130,109,1 +19900102,600,130,109,2 +19900102,600,130,109,3 +19900102,600,130,109,4 +19900102,600,130,109,5 +19900102,600,130,109,6 +19900102,600,130,109,7 +19900102,600,130,109,8 +19900102,600,130,109,9 +19900102,600,130,109,10 +19900102,600,157,109,1 +19900102,600,157,109,2 +19900102,600,157,109,3 +19900102,600,157,109,4 +19900102,600,157,109,5 +19900102,600,157,109,6 +19900102,600,157,109,7 +19900102,600,157,109,8 +19900102,600,157,109,9 +19900102,600,157,109,10 +19900102,600,54,109,1 +19900102,600,54,109,2 +19900102,600,54,109,3 +19900102,600,54,109,4 +19900102,600,54,109,5 +19900102,600,54,109,6 +19900102,600,54,109,7 +19900102,600,54,109,8 +19900102,600,54,109,9 +19900102,600,54,109,10 +19900102,600,135,109,1 +19900102,600,135,109,2 +19900102,600,135,109,3 +19900102,600,135,109,4 +19900102,600,135,109,5 +19900102,600,135,109,6 +19900102,600,135,109,7 +19900102,600,135,109,8 +19900102,600,135,109,9 +19900102,600,135,109,10 +19900102,600,134,109,1 +19900102,600,152,109,1 +19900102,600,131,100,850 +19900102,600,132,100,850 +19900102,600,134,100,1000 +19900102,600,152,100,1000 +19900102,900,131,100,850 +19900102,900,132,100,850 +19900102,900,134,100,1000 +19900102,900,152,100,1000 +19900102,1200,131,100,1000 +19900102,1200,131,100,975 +19900102,1200,131,100,950 +19900102,1200,131,100,925 +19900102,1200,131,100,900 +19900102,1200,131,100,875 +19900102,1200,131,100,825 +19900102,1200,131,100,800 +19900102,1200,131,100,775 +19900102,1200,131,100,750 +19900102,1200,131,100,740 +19900102,1200,131,100,700 +19900102,1200,131,100,650 +19900102,1200,131,100,620 +19900102,1200,131,100,600 +19900102,1200,131,100,550 +19900102,1200,131,100,500 +19900102,1200,131,100,450 +19900102,1200,131,100,400 +19900102,1200,131,100,375 +19900102,1200,131,100,350 +19900102,1200,131,100,300 +19900102,1200,131,100,250 +19900102,1200,131,100,245 +19900102,1200,131,100,225 +19900102,1200,131,100,200 +19900102,1200,131,100,175 +19900102,1200,131,100,150 +19900102,1200,131,100,125 +19900102,1200,131,100,100 +19900102,1200,131,100,70 +19900102,1200,131,100,50 +19900102,1200,131,100,30 +19900102,1200,131,100,20 +19900102,1200,131,100,10 +19900102,1200,131,100,9 +19900102,1200,131,100,7 +19900102,1200,131,100,5 +19900102,1200,131,100,3 +19900102,1200,131,100,2 +19900102,1200,131,100,1 +19900102,1200,131,210,40 +19900102,1200,132,100,1000 +19900102,1200,132,100,975 +19900102,1200,132,100,950 +19900102,1200,132,100,925 +19900102,1200,132,100,900 +19900102,1200,132,100,875 +19900102,1200,132,100,825 +19900102,1200,132,100,800 +19900102,1200,132,100,775 +19900102,1200,132,100,750 +19900102,1200,132,100,740 +19900102,1200,132,100,700 +19900102,1200,132,100,650 +19900102,1200,132,100,620 +19900102,1200,132,100,600 +19900102,1200,132,100,550 +19900102,1200,132,100,500 +19900102,1200,132,100,450 +19900102,1200,132,100,400 +19900102,1200,132,100,375 +19900102,1200,132,100,350 +19900102,1200,132,100,300 +19900102,1200,132,100,250 +19900102,1200,132,100,245 +19900102,1200,132,100,225 +19900102,1200,132,100,200 +19900102,1200,132,100,175 +19900102,1200,132,100,150 +19900102,1200,132,100,125 +19900102,1200,132,100,100 +19900102,1200,132,100,70 +19900102,1200,132,100,50 +19900102,1200,132,100,30 +19900102,1200,132,100,20 +19900102,1200,132,100,10 +19900102,1200,132,100,9 +19900102,1200,132,100,7 +19900102,1200,132,100,5 +19900102,1200,132,100,3 +19900102,1200,132,100,2 +19900102,1200,132,100,1 +19900102,1200,132,210,40 +19900102,1200,130,100,1000 +19900102,1200,130,100,975 +19900102,1200,130,100,950 +19900102,1200,130,100,925 +19900102,1200,130,100,900 +19900102,1200,130,100,875 +19900102,1200,130,100,850 +19900102,1200,130,100,825 +19900102,1200,130,100,800 +19900102,1200,130,100,775 +19900102,1200,130,100,750 +19900102,1200,130,100,740 +19900102,1200,130,100,700 +19900102,1200,130,100,650 +19900102,1200,130,100,620 +19900102,1200,130,100,600 +19900102,1200,130,100,550 +19900102,1200,130,100,500 +19900102,1200,130,100,450 +19900102,1200,130,100,400 +19900102,1200,130,100,375 +19900102,1200,130,100,350 +19900102,1200,130,100,300 +19900102,1200,130,100,250 +19900102,1200,130,100,245 +19900102,1200,130,100,225 +19900102,1200,130,100,200 +19900102,1200,130,100,175 +19900102,1200,130,100,150 +19900102,1200,130,100,125 +19900102,1200,130,100,100 +19900102,1200,130,100,70 +19900102,1200,130,100,50 +19900102,1200,130,100,30 +19900102,1200,130,100,20 +19900102,1200,130,100,10 +19900102,1200,130,100,9 +19900102,1200,130,100,7 +19900102,1200,130,100,5 +19900102,1200,130,100,3 +19900102,1200,130,100,2 +19900102,1200,130,100,1 +19900102,1200,130,210,40 +19900102,1200,129,100,1000 +19900102,1200,129,100,975 +19900102,1200,129,100,950 +19900102,1200,129,100,925 +19900102,1200,129,100,900 +19900102,1200,129,100,875 +19900102,1200,129,100,850 +19900102,1200,129,100,825 +19900102,1200,129,100,800 +19900102,1200,129,100,775 +19900102,1200,129,100,750 +19900102,1200,129,100,740 +19900102,1200,129,100,700 +19900102,1200,129,100,650 +19900102,1200,129,100,620 +19900102,1200,129,100,600 +19900102,1200,129,100,550 +19900102,1200,129,100,500 +19900102,1200,129,100,450 +19900102,1200,129,100,400 +19900102,1200,129,100,375 +19900102,1200,129,100,350 +19900102,1200,129,100,300 +19900102,1200,129,100,250 +19900102,1200,129,100,245 +19900102,1200,129,100,225 +19900102,1200,129,100,200 +19900102,1200,129,100,175 +19900102,1200,129,100,150 +19900102,1200,129,100,125 +19900102,1200,129,100,100 +19900102,1200,129,100,70 +19900102,1200,129,100,50 +19900102,1200,129,100,30 +19900102,1200,129,100,20 +19900102,1200,129,100,10 +19900102,1200,129,100,9 +19900102,1200,129,100,7 +19900102,1200,129,100,5 +19900102,1200,129,100,3 +19900102,1200,129,100,2 +19900102,1200,129,100,1 +19900102,1200,129,210,40 +19900102,1200,157,100,1000 +19900102,1200,157,100,975 +19900102,1200,157,100,950 +19900102,1200,157,100,925 +19900102,1200,157,100,900 +19900102,1200,157,100,875 +19900102,1200,157,100,850 +19900102,1200,157,100,825 +19900102,1200,157,100,800 +19900102,1200,157,100,775 +19900102,1200,157,100,750 +19900102,1200,157,100,740 +19900102,1200,157,100,700 +19900102,1200,157,100,650 +19900102,1200,157,100,620 +19900102,1200,157,100,600 +19900102,1200,157,100,550 +19900102,1200,157,100,500 +19900102,1200,157,100,450 +19900102,1200,157,100,400 +19900102,1200,157,100,375 +19900102,1200,157,100,350 +19900102,1200,157,100,300 +19900102,1200,157,100,250 +19900102,1200,157,100,245 +19900102,1200,157,100,225 +19900102,1200,157,100,200 +19900102,1200,157,100,175 +19900102,1200,157,100,150 +19900102,1200,157,100,125 +19900102,1200,157,100,100 +19900102,1200,157,100,70 +19900102,1200,157,100,50 +19900102,1200,157,100,30 +19900102,1200,157,100,20 +19900102,1200,157,100,10 +19900102,1200,157,100,9 +19900102,1200,157,100,7 +19900102,1200,157,100,5 +19900102,1200,157,100,3 +19900102,1200,157,100,2 +19900102,1200,157,100,1 +19900102,1200,157,210,40 +19900102,1200,135,100,1000 +19900102,1200,135,100,975 +19900102,1200,135,100,950 +19900102,1200,135,100,925 +19900102,1200,135,100,900 +19900102,1200,135,100,875 +19900102,1200,135,100,850 +19900102,1200,135,100,825 +19900102,1200,135,100,800 +19900102,1200,135,100,775 +19900102,1200,135,100,750 +19900102,1200,135,100,740 +19900102,1200,135,100,700 +19900102,1200,135,100,650 +19900102,1200,135,100,620 +19900102,1200,135,100,600 +19900102,1200,135,100,550 +19900102,1200,135,100,500 +19900102,1200,135,100,450 +19900102,1200,135,100,400 +19900102,1200,135,100,375 +19900102,1200,135,100,350 +19900102,1200,135,100,300 +19900102,1200,135,100,250 +19900102,1200,135,100,245 +19900102,1200,135,100,225 +19900102,1200,135,100,200 +19900102,1200,135,100,175 +19900102,1200,135,100,150 +19900102,1200,135,100,125 +19900102,1200,135,100,100 +19900102,1200,135,100,70 +19900102,1200,135,100,50 +19900102,1200,135,100,30 +19900102,1200,135,100,20 +19900102,1200,135,100,10 +19900102,1200,135,100,9 +19900102,1200,135,100,7 +19900102,1200,135,100,5 +19900102,1200,135,100,3 +19900102,1200,135,100,2 +19900102,1200,135,100,1 +19900102,1200,135,210,40 +19900102,1200,138,100,1000 +19900102,1200,138,100,975 +19900102,1200,138,100,950 +19900102,1200,138,100,925 +19900102,1200,138,100,900 +19900102,1200,138,100,875 +19900102,1200,138,100,850 +19900102,1200,138,100,825 +19900102,1200,138,100,800 +19900102,1200,138,100,775 +19900102,1200,138,100,750 +19900102,1200,138,100,740 +19900102,1200,138,100,700 +19900102,1200,138,100,650 +19900102,1200,138,100,620 +19900102,1200,138,100,600 +19900102,1200,138,100,550 +19900102,1200,138,100,500 +19900102,1200,138,100,450 +19900102,1200,138,100,400 +19900102,1200,138,100,375 +19900102,1200,138,100,350 +19900102,1200,138,100,300 +19900102,1200,138,100,250 +19900102,1200,138,100,245 +19900102,1200,138,100,225 +19900102,1200,138,100,200 +19900102,1200,138,100,175 +19900102,1200,138,100,150 +19900102,1200,138,100,125 +19900102,1200,138,100,100 +19900102,1200,138,100,70 +19900102,1200,138,100,50 +19900102,1200,138,100,30 +19900102,1200,138,100,20 +19900102,1200,138,100,10 +19900102,1200,138,100,9 +19900102,1200,138,100,7 +19900102,1200,138,100,5 +19900102,1200,138,100,3 +19900102,1200,138,100,2 +19900102,1200,138,100,1 +19900102,1200,138,210,40 +19900102,1200,131,109,1 +19900102,1200,131,109,2 +19900102,1200,131,109,3 +19900102,1200,131,109,4 +19900102,1200,131,109,5 +19900102,1200,131,109,6 +19900102,1200,131,109,7 +19900102,1200,131,109,8 +19900102,1200,131,109,9 +19900102,1200,131,109,10 +19900102,1200,132,109,1 +19900102,1200,132,109,2 +19900102,1200,132,109,3 +19900102,1200,132,109,4 +19900102,1200,132,109,5 +19900102,1200,132,109,6 +19900102,1200,132,109,7 +19900102,1200,132,109,8 +19900102,1200,132,109,9 +19900102,1200,132,109,10 +19900102,1200,130,109,1 +19900102,1200,130,109,2 +19900102,1200,130,109,3 +19900102,1200,130,109,4 +19900102,1200,130,109,5 +19900102,1200,130,109,6 +19900102,1200,130,109,7 +19900102,1200,130,109,8 +19900102,1200,130,109,9 +19900102,1200,130,109,10 +19900102,1200,157,109,1 +19900102,1200,157,109,2 +19900102,1200,157,109,3 +19900102,1200,157,109,4 +19900102,1200,157,109,5 +19900102,1200,157,109,6 +19900102,1200,157,109,7 +19900102,1200,157,109,8 +19900102,1200,157,109,9 +19900102,1200,157,109,10 +19900102,1200,54,109,1 +19900102,1200,54,109,2 +19900102,1200,54,109,3 +19900102,1200,54,109,4 +19900102,1200,54,109,5 +19900102,1200,54,109,6 +19900102,1200,54,109,7 +19900102,1200,54,109,8 +19900102,1200,54,109,9 +19900102,1200,54,109,10 +19900102,1200,135,109,1 +19900102,1200,135,109,2 +19900102,1200,135,109,3 +19900102,1200,135,109,4 +19900102,1200,135,109,5 +19900102,1200,135,109,6 +19900102,1200,135,109,7 +19900102,1200,135,109,8 +19900102,1200,135,109,9 +19900102,1200,135,109,10 +19900102,1200,134,109,1 +19900102,1200,152,109,1 +19900102,1200,131,100,850 +19900102,1200,132,100,850 +19900102,1200,134,100,1000 +19900102,1200,152,100,1000 +19900102,1500,131,100,850 +19900102,1500,132,100,850 +19900102,1500,134,100,1000 +19900102,1500,152,100,1000 +19900102,1800,131,100,1000 +19900102,1800,131,100,975 +19900102,1800,131,100,950 +19900102,1800,131,100,925 +19900102,1800,131,100,900 +19900102,1800,131,100,875 +19900102,1800,131,100,825 +19900102,1800,131,100,800 +19900102,1800,131,100,775 +19900102,1800,131,100,750 +19900102,1800,131,100,740 +19900102,1800,131,100,700 +19900102,1800,131,100,650 +19900102,1800,131,100,620 +19900102,1800,131,100,600 +19900102,1800,131,100,550 +19900102,1800,131,100,500 +19900102,1800,131,100,450 +19900102,1800,131,100,400 +19900102,1800,131,100,375 +19900102,1800,131,100,350 +19900102,1800,131,100,300 +19900102,1800,131,100,250 +19900102,1800,131,100,245 +19900102,1800,131,100,225 +19900102,1800,131,100,200 +19900102,1800,131,100,175 +19900102,1800,131,100,150 +19900102,1800,131,100,125 +19900102,1800,131,100,100 +19900102,1800,131,100,70 +19900102,1800,131,100,50 +19900102,1800,131,100,30 +19900102,1800,131,100,20 +19900102,1800,131,100,10 +19900102,1800,131,100,9 +19900102,1800,131,100,7 +19900102,1800,131,100,5 +19900102,1800,131,100,3 +19900102,1800,131,100,2 +19900102,1800,131,100,1 +19900102,1800,131,210,40 +19900102,1800,132,100,1000 +19900102,1800,132,100,975 +19900102,1800,132,100,950 +19900102,1800,132,100,925 +19900102,1800,132,100,900 +19900102,1800,132,100,875 +19900102,1800,132,100,825 +19900102,1800,132,100,800 +19900102,1800,132,100,775 +19900102,1800,132,100,750 +19900102,1800,132,100,740 +19900102,1800,132,100,700 +19900102,1800,132,100,650 +19900102,1800,132,100,620 +19900102,1800,132,100,600 +19900102,1800,132,100,550 +19900102,1800,132,100,500 +19900102,1800,132,100,450 +19900102,1800,132,100,400 +19900102,1800,132,100,375 +19900102,1800,132,100,350 +19900102,1800,132,100,300 +19900102,1800,132,100,250 +19900102,1800,132,100,245 +19900102,1800,132,100,225 +19900102,1800,132,100,200 +19900102,1800,132,100,175 +19900102,1800,132,100,150 +19900102,1800,132,100,125 +19900102,1800,132,100,100 +19900102,1800,132,100,70 +19900102,1800,132,100,50 +19900102,1800,132,100,30 +19900102,1800,132,100,20 +19900102,1800,132,100,10 +19900102,1800,132,100,9 +19900102,1800,132,100,7 +19900102,1800,132,100,5 +19900102,1800,132,100,3 +19900102,1800,132,100,2 +19900102,1800,132,100,1 +19900102,1800,132,210,40 +19900102,1800,130,100,1000 +19900102,1800,130,100,975 +19900102,1800,130,100,950 +19900102,1800,130,100,925 +19900102,1800,130,100,900 +19900102,1800,130,100,875 +19900102,1800,130,100,850 +19900102,1800,130,100,825 +19900102,1800,130,100,800 +19900102,1800,130,100,775 +19900102,1800,130,100,750 +19900102,1800,130,100,740 +19900102,1800,130,100,700 +19900102,1800,130,100,650 +19900102,1800,130,100,620 +19900102,1800,130,100,600 +19900102,1800,130,100,550 +19900102,1800,130,100,500 +19900102,1800,130,100,450 +19900102,1800,130,100,400 +19900102,1800,130,100,375 +19900102,1800,130,100,350 +19900102,1800,130,100,300 +19900102,1800,130,100,250 +19900102,1800,130,100,245 +19900102,1800,130,100,225 +19900102,1800,130,100,200 +19900102,1800,130,100,175 +19900102,1800,130,100,150 +19900102,1800,130,100,125 +19900102,1800,130,100,100 +19900102,1800,130,100,70 +19900102,1800,130,100,50 +19900102,1800,130,100,30 +19900102,1800,130,100,20 +19900102,1800,130,100,10 +19900102,1800,130,100,9 +19900102,1800,130,100,7 +19900102,1800,130,100,5 +19900102,1800,130,100,3 +19900102,1800,130,100,2 +19900102,1800,130,100,1 +19900102,1800,130,210,40 +19900102,1800,129,100,1000 +19900102,1800,129,100,975 +19900102,1800,129,100,950 +19900102,1800,129,100,925 +19900102,1800,129,100,900 +19900102,1800,129,100,875 +19900102,1800,129,100,850 +19900102,1800,129,100,825 +19900102,1800,129,100,800 +19900102,1800,129,100,775 +19900102,1800,129,100,750 +19900102,1800,129,100,740 +19900102,1800,129,100,700 +19900102,1800,129,100,650 +19900102,1800,129,100,620 +19900102,1800,129,100,600 +19900102,1800,129,100,550 +19900102,1800,129,100,500 +19900102,1800,129,100,450 +19900102,1800,129,100,400 +19900102,1800,129,100,375 +19900102,1800,129,100,350 +19900102,1800,129,100,300 +19900102,1800,129,100,250 +19900102,1800,129,100,245 +19900102,1800,129,100,225 +19900102,1800,129,100,200 +19900102,1800,129,100,175 +19900102,1800,129,100,150 +19900102,1800,129,100,125 +19900102,1800,129,100,100 +19900102,1800,129,100,70 +19900102,1800,129,100,50 +19900102,1800,129,100,30 +19900102,1800,129,100,20 +19900102,1800,129,100,10 +19900102,1800,129,100,9 +19900102,1800,129,100,7 +19900102,1800,129,100,5 +19900102,1800,129,100,3 +19900102,1800,129,100,2 +19900102,1800,129,100,1 +19900102,1800,129,210,40 +19900102,1800,157,100,1000 +19900102,1800,157,100,975 +19900102,1800,157,100,950 +19900102,1800,157,100,925 +19900102,1800,157,100,900 +19900102,1800,157,100,875 +19900102,1800,157,100,850 +19900102,1800,157,100,825 +19900102,1800,157,100,800 +19900102,1800,157,100,775 +19900102,1800,157,100,750 +19900102,1800,157,100,740 +19900102,1800,157,100,700 +19900102,1800,157,100,650 +19900102,1800,157,100,620 +19900102,1800,157,100,600 +19900102,1800,157,100,550 +19900102,1800,157,100,500 +19900102,1800,157,100,450 +19900102,1800,157,100,400 +19900102,1800,157,100,375 +19900102,1800,157,100,350 +19900102,1800,157,100,300 +19900102,1800,157,100,250 +19900102,1800,157,100,245 +19900102,1800,157,100,225 +19900102,1800,157,100,200 +19900102,1800,157,100,175 +19900102,1800,157,100,150 +19900102,1800,157,100,125 +19900102,1800,157,100,100 +19900102,1800,157,100,70 +19900102,1800,157,100,50 +19900102,1800,157,100,30 +19900102,1800,157,100,20 +19900102,1800,157,100,10 +19900102,1800,157,100,9 +19900102,1800,157,100,7 +19900102,1800,157,100,5 +19900102,1800,157,100,3 +19900102,1800,157,100,2 +19900102,1800,157,100,1 +19900102,1800,157,210,40 +19900102,1800,135,100,1000 +19900102,1800,135,100,975 +19900102,1800,135,100,950 +19900102,1800,135,100,925 +19900102,1800,135,100,900 +19900102,1800,135,100,875 +19900102,1800,135,100,850 +19900102,1800,135,100,825 +19900102,1800,135,100,800 +19900102,1800,135,100,775 +19900102,1800,135,100,750 +19900102,1800,135,100,740 +19900102,1800,135,100,700 +19900102,1800,135,100,650 +19900102,1800,135,100,620 +19900102,1800,135,100,600 +19900102,1800,135,100,550 +19900102,1800,135,100,500 +19900102,1800,135,100,450 +19900102,1800,135,100,400 +19900102,1800,135,100,375 +19900102,1800,135,100,350 +19900102,1800,135,100,300 +19900102,1800,135,100,250 +19900102,1800,135,100,245 +19900102,1800,135,100,225 +19900102,1800,135,100,200 +19900102,1800,135,100,175 +19900102,1800,135,100,150 +19900102,1800,135,100,125 +19900102,1800,135,100,100 +19900102,1800,135,100,70 +19900102,1800,135,100,50 +19900102,1800,135,100,30 +19900102,1800,135,100,20 +19900102,1800,135,100,10 +19900102,1800,135,100,9 +19900102,1800,135,100,7 +19900102,1800,135,100,5 +19900102,1800,135,100,3 +19900102,1800,135,100,2 +19900102,1800,135,100,1 +19900102,1800,135,210,40 +19900102,1800,138,100,1000 +19900102,1800,138,100,975 +19900102,1800,138,100,950 +19900102,1800,138,100,925 +19900102,1800,138,100,900 +19900102,1800,138,100,875 +19900102,1800,138,100,850 +19900102,1800,138,100,825 +19900102,1800,138,100,800 +19900102,1800,138,100,775 +19900102,1800,138,100,750 +19900102,1800,138,100,740 +19900102,1800,138,100,700 +19900102,1800,138,100,650 +19900102,1800,138,100,620 +19900102,1800,138,100,600 +19900102,1800,138,100,550 +19900102,1800,138,100,500 +19900102,1800,138,100,450 +19900102,1800,138,100,400 +19900102,1800,138,100,375 +19900102,1800,138,100,350 +19900102,1800,138,100,300 +19900102,1800,138,100,250 +19900102,1800,138,100,245 +19900102,1800,138,100,225 +19900102,1800,138,100,200 +19900102,1800,138,100,175 +19900102,1800,138,100,150 +19900102,1800,138,100,125 +19900102,1800,138,100,100 +19900102,1800,138,100,70 +19900102,1800,138,100,50 +19900102,1800,138,100,30 +19900102,1800,138,100,20 +19900102,1800,138,100,10 +19900102,1800,138,100,9 +19900102,1800,138,100,7 +19900102,1800,138,100,5 +19900102,1800,138,100,3 +19900102,1800,138,100,2 +19900102,1800,138,100,1 +19900102,1800,138,210,40 +19900102,1800,131,109,1 +19900102,1800,131,109,2 +19900102,1800,131,109,3 +19900102,1800,131,109,4 +19900102,1800,131,109,5 +19900102,1800,131,109,6 +19900102,1800,131,109,7 +19900102,1800,131,109,8 +19900102,1800,131,109,9 +19900102,1800,131,109,10 +19900102,1800,132,109,1 +19900102,1800,132,109,2 +19900102,1800,132,109,3 +19900102,1800,132,109,4 +19900102,1800,132,109,5 +19900102,1800,132,109,6 +19900102,1800,132,109,7 +19900102,1800,132,109,8 +19900102,1800,132,109,9 +19900102,1800,132,109,10 +19900102,1800,130,109,1 +19900102,1800,130,109,2 +19900102,1800,130,109,3 +19900102,1800,130,109,4 +19900102,1800,130,109,5 +19900102,1800,130,109,6 +19900102,1800,130,109,7 +19900102,1800,130,109,8 +19900102,1800,130,109,9 +19900102,1800,130,109,10 +19900102,1800,157,109,1 +19900102,1800,157,109,2 +19900102,1800,157,109,3 +19900102,1800,157,109,4 +19900102,1800,157,109,5 +19900102,1800,157,109,6 +19900102,1800,157,109,7 +19900102,1800,157,109,8 +19900102,1800,157,109,9 +19900102,1800,157,109,10 +19900102,1800,54,109,1 +19900102,1800,54,109,2 +19900102,1800,54,109,3 +19900102,1800,54,109,4 +19900102,1800,54,109,5 +19900102,1800,54,109,6 +19900102,1800,54,109,7 +19900102,1800,54,109,8 +19900102,1800,54,109,9 +19900102,1800,54,109,10 +19900102,1800,135,109,1 +19900102,1800,135,109,2 +19900102,1800,135,109,3 +19900102,1800,135,109,4 +19900102,1800,135,109,5 +19900102,1800,135,109,6 +19900102,1800,135,109,7 +19900102,1800,135,109,8 +19900102,1800,135,109,9 +19900102,1800,135,109,10 +19900102,1800,134,109,1 +19900102,1800,152,109,1 +19900102,1800,131,100,850 +19900102,1800,132,100,850 +19900102,1800,134,100,1000 +19900102,1800,152,100,1000 +19900102,2100,131,100,850 +19900102,2100,132,100,850 +19900102,2100,134,100,1000 +19900102,2100,152,100,1000 +19900103,0,131,100,1000 +19900103,0,131,100,975 +19900103,0,131,100,950 +19900103,0,131,100,925 +19900103,0,131,100,900 +19900103,0,131,100,875 +19900103,0,131,100,825 +19900103,0,131,100,800 +19900103,0,131,100,775 +19900103,0,131,100,750 +19900103,0,131,100,740 +19900103,0,131,100,700 +19900103,0,131,100,650 +19900103,0,131,100,620 +19900103,0,131,100,600 +19900103,0,131,100,550 +19900103,0,131,100,500 +19900103,0,131,100,450 +19900103,0,131,100,400 +19900103,0,131,100,375 +19900103,0,131,100,350 +19900103,0,131,100,300 +19900103,0,131,100,250 +19900103,0,131,100,245 +19900103,0,131,100,225 +19900103,0,131,100,200 +19900103,0,131,100,175 +19900103,0,131,100,150 +19900103,0,131,100,125 +19900103,0,131,100,100 +19900103,0,131,100,70 +19900103,0,131,100,50 +19900103,0,131,100,30 +19900103,0,131,100,20 +19900103,0,131,100,10 +19900103,0,131,100,9 +19900103,0,131,100,7 +19900103,0,131,100,5 +19900103,0,131,100,3 +19900103,0,131,100,2 +19900103,0,131,100,1 +19900103,0,131,210,40 +19900103,0,132,100,1000 +19900103,0,132,100,975 +19900103,0,132,100,950 +19900103,0,132,100,925 +19900103,0,132,100,900 +19900103,0,132,100,875 +19900103,0,132,100,825 +19900103,0,132,100,800 +19900103,0,132,100,775 +19900103,0,132,100,750 +19900103,0,132,100,740 +19900103,0,132,100,700 +19900103,0,132,100,650 +19900103,0,132,100,620 +19900103,0,132,100,600 +19900103,0,132,100,550 +19900103,0,132,100,500 +19900103,0,132,100,450 +19900103,0,132,100,400 +19900103,0,132,100,375 +19900103,0,132,100,350 +19900103,0,132,100,300 +19900103,0,132,100,250 +19900103,0,132,100,245 +19900103,0,132,100,225 +19900103,0,132,100,200 +19900103,0,132,100,175 +19900103,0,132,100,150 +19900103,0,132,100,125 +19900103,0,132,100,100 +19900103,0,132,100,70 +19900103,0,132,100,50 +19900103,0,132,100,30 +19900103,0,132,100,20 +19900103,0,132,100,10 +19900103,0,132,100,9 +19900103,0,132,100,7 +19900103,0,132,100,5 +19900103,0,132,100,3 +19900103,0,132,100,2 +19900103,0,132,100,1 +19900103,0,132,210,40 +19900103,0,130,100,1000 +19900103,0,130,100,975 +19900103,0,130,100,950 +19900103,0,130,100,925 +19900103,0,130,100,900 +19900103,0,130,100,875 +19900103,0,130,100,850 +19900103,0,130,100,825 +19900103,0,130,100,800 +19900103,0,130,100,775 +19900103,0,130,100,750 +19900103,0,130,100,740 +19900103,0,130,100,700 +19900103,0,130,100,650 +19900103,0,130,100,620 +19900103,0,130,100,600 +19900103,0,130,100,550 +19900103,0,130,100,500 +19900103,0,130,100,450 +19900103,0,130,100,400 +19900103,0,130,100,375 +19900103,0,130,100,350 +19900103,0,130,100,300 +19900103,0,130,100,250 +19900103,0,130,100,245 +19900103,0,130,100,225 +19900103,0,130,100,200 +19900103,0,130,100,175 +19900103,0,130,100,150 +19900103,0,130,100,125 +19900103,0,130,100,100 +19900103,0,130,100,70 +19900103,0,130,100,50 +19900103,0,130,100,30 +19900103,0,130,100,20 +19900103,0,130,100,10 +19900103,0,130,100,9 +19900103,0,130,100,7 +19900103,0,130,100,5 +19900103,0,130,100,3 +19900103,0,130,100,2 +19900103,0,130,100,1 +19900103,0,130,210,40 +19900103,0,129,100,1000 +19900103,0,129,100,975 +19900103,0,129,100,950 +19900103,0,129,100,925 +19900103,0,129,100,900 +19900103,0,129,100,875 +19900103,0,129,100,850 +19900103,0,129,100,825 +19900103,0,129,100,800 +19900103,0,129,100,775 +19900103,0,129,100,750 +19900103,0,129,100,740 +19900103,0,129,100,700 +19900103,0,129,100,650 +19900103,0,129,100,620 +19900103,0,129,100,600 +19900103,0,129,100,550 +19900103,0,129,100,500 +19900103,0,129,100,450 +19900103,0,129,100,400 +19900103,0,129,100,375 +19900103,0,129,100,350 +19900103,0,129,100,300 +19900103,0,129,100,250 +19900103,0,129,100,245 +19900103,0,129,100,225 +19900103,0,129,100,200 +19900103,0,129,100,175 +19900103,0,129,100,150 +19900103,0,129,100,125 +19900103,0,129,100,100 +19900103,0,129,100,70 +19900103,0,129,100,50 +19900103,0,129,100,30 +19900103,0,129,100,20 +19900103,0,129,100,10 +19900103,0,129,100,9 +19900103,0,129,100,7 +19900103,0,129,100,5 +19900103,0,129,100,3 +19900103,0,129,100,2 +19900103,0,129,100,1 +19900103,0,129,210,40 +19900103,0,157,100,1000 +19900103,0,157,100,975 +19900103,0,157,100,950 +19900103,0,157,100,925 +19900103,0,157,100,900 +19900103,0,157,100,875 +19900103,0,157,100,850 +19900103,0,157,100,825 +19900103,0,157,100,800 +19900103,0,157,100,775 +19900103,0,157,100,750 +19900103,0,157,100,740 +19900103,0,157,100,700 +19900103,0,157,100,650 +19900103,0,157,100,620 +19900103,0,157,100,600 +19900103,0,157,100,550 +19900103,0,157,100,500 +19900103,0,157,100,450 +19900103,0,157,100,400 +19900103,0,157,100,375 +19900103,0,157,100,350 +19900103,0,157,100,300 +19900103,0,157,100,250 +19900103,0,157,100,245 +19900103,0,157,100,225 +19900103,0,157,100,200 +19900103,0,157,100,175 +19900103,0,157,100,150 +19900103,0,157,100,125 +19900103,0,157,100,100 +19900103,0,157,100,70 +19900103,0,157,100,50 +19900103,0,157,100,30 +19900103,0,157,100,20 +19900103,0,157,100,10 +19900103,0,157,100,9 +19900103,0,157,100,7 +19900103,0,157,100,5 +19900103,0,157,100,3 +19900103,0,157,100,2 +19900103,0,157,100,1 +19900103,0,157,210,40 +19900103,0,135,100,1000 +19900103,0,135,100,975 +19900103,0,135,100,950 +19900103,0,135,100,925 +19900103,0,135,100,900 +19900103,0,135,100,875 +19900103,0,135,100,850 +19900103,0,135,100,825 +19900103,0,135,100,800 +19900103,0,135,100,775 +19900103,0,135,100,750 +19900103,0,135,100,740 +19900103,0,135,100,700 +19900103,0,135,100,650 +19900103,0,135,100,620 +19900103,0,135,100,600 +19900103,0,135,100,550 +19900103,0,135,100,500 +19900103,0,135,100,450 +19900103,0,135,100,400 +19900103,0,135,100,375 +19900103,0,135,100,350 +19900103,0,135,100,300 +19900103,0,135,100,250 +19900103,0,135,100,245 +19900103,0,135,100,225 +19900103,0,135,100,200 +19900103,0,135,100,175 +19900103,0,135,100,150 +19900103,0,135,100,125 +19900103,0,135,100,100 +19900103,0,135,100,70 +19900103,0,135,100,50 +19900103,0,135,100,30 +19900103,0,135,100,20 +19900103,0,135,100,10 +19900103,0,135,100,9 +19900103,0,135,100,7 +19900103,0,135,100,5 +19900103,0,135,100,3 +19900103,0,135,100,2 +19900103,0,135,100,1 +19900103,0,135,210,40 +19900103,0,138,100,1000 +19900103,0,138,100,975 +19900103,0,138,100,950 +19900103,0,138,100,925 +19900103,0,138,100,900 +19900103,0,138,100,875 +19900103,0,138,100,850 +19900103,0,138,100,825 +19900103,0,138,100,800 +19900103,0,138,100,775 +19900103,0,138,100,750 +19900103,0,138,100,740 +19900103,0,138,100,700 +19900103,0,138,100,650 +19900103,0,138,100,620 +19900103,0,138,100,600 +19900103,0,138,100,550 +19900103,0,138,100,500 +19900103,0,138,100,450 +19900103,0,138,100,400 +19900103,0,138,100,375 +19900103,0,138,100,350 +19900103,0,138,100,300 +19900103,0,138,100,250 +19900103,0,138,100,245 +19900103,0,138,100,225 +19900103,0,138,100,200 +19900103,0,138,100,175 +19900103,0,138,100,150 +19900103,0,138,100,125 +19900103,0,138,100,100 +19900103,0,138,100,70 +19900103,0,138,100,50 +19900103,0,138,100,30 +19900103,0,138,100,20 +19900103,0,138,100,10 +19900103,0,138,100,9 +19900103,0,138,100,7 +19900103,0,138,100,5 +19900103,0,138,100,3 +19900103,0,138,100,2 +19900103,0,138,100,1 +19900103,0,138,210,40 +19900103,0,131,109,1 +19900103,0,131,109,2 +19900103,0,131,109,3 +19900103,0,131,109,4 +19900103,0,131,109,5 +19900103,0,131,109,6 +19900103,0,131,109,7 +19900103,0,131,109,8 +19900103,0,131,109,9 +19900103,0,131,109,10 +19900103,0,132,109,1 +19900103,0,132,109,2 +19900103,0,132,109,3 +19900103,0,132,109,4 +19900103,0,132,109,5 +19900103,0,132,109,6 +19900103,0,132,109,7 +19900103,0,132,109,8 +19900103,0,132,109,9 +19900103,0,132,109,10 +19900103,0,130,109,1 +19900103,0,130,109,2 +19900103,0,130,109,3 +19900103,0,130,109,4 +19900103,0,130,109,5 +19900103,0,130,109,6 +19900103,0,130,109,7 +19900103,0,130,109,8 +19900103,0,130,109,9 +19900103,0,130,109,10 +19900103,0,157,109,1 +19900103,0,157,109,2 +19900103,0,157,109,3 +19900103,0,157,109,4 +19900103,0,157,109,5 +19900103,0,157,109,6 +19900103,0,157,109,7 +19900103,0,157,109,8 +19900103,0,157,109,9 +19900103,0,157,109,10 +19900103,0,54,109,1 +19900103,0,54,109,2 +19900103,0,54,109,3 +19900103,0,54,109,4 +19900103,0,54,109,5 +19900103,0,54,109,6 +19900103,0,54,109,7 +19900103,0,54,109,8 +19900103,0,54,109,9 +19900103,0,54,109,10 +19900103,0,135,109,1 +19900103,0,135,109,2 +19900103,0,135,109,3 +19900103,0,135,109,4 +19900103,0,135,109,5 +19900103,0,135,109,6 +19900103,0,135,109,7 +19900103,0,135,109,8 +19900103,0,135,109,9 +19900103,0,135,109,10 +19900103,0,134,109,1 +19900103,0,152,109,1 +19900103,0,131,100,850 +19900103,0,132,100,850 +19900103,0,134,100,1000 +19900103,0,152,100,1000 +19900103,300,131,100,850 +19900103,300,132,100,850 +19900103,300,134,100,1000 +19900103,300,152,100,1000 +19900103,600,131,100,1000 +19900103,600,131,100,975 +19900103,600,131,100,950 +19900103,600,131,100,925 +19900103,600,131,100,900 +19900103,600,131,100,875 +19900103,600,131,100,825 +19900103,600,131,100,800 +19900103,600,131,100,775 +19900103,600,131,100,750 +19900103,600,131,100,740 +19900103,600,131,100,700 +19900103,600,131,100,650 +19900103,600,131,100,620 +19900103,600,131,100,600 +19900103,600,131,100,550 +19900103,600,131,100,500 +19900103,600,131,100,450 +19900103,600,131,100,400 +19900103,600,131,100,375 +19900103,600,131,100,350 +19900103,600,131,100,300 +19900103,600,131,100,250 +19900103,600,131,100,245 +19900103,600,131,100,225 +19900103,600,131,100,200 +19900103,600,131,100,175 +19900103,600,131,100,150 +19900103,600,131,100,125 +19900103,600,131,100,100 +19900103,600,131,100,70 +19900103,600,131,100,50 +19900103,600,131,100,30 +19900103,600,131,100,20 +19900103,600,131,100,10 +19900103,600,131,100,9 +19900103,600,131,100,7 +19900103,600,131,100,5 +19900103,600,131,100,3 +19900103,600,131,100,2 +19900103,600,131,100,1 +19900103,600,131,210,40 +19900103,600,132,100,1000 +19900103,600,132,100,975 +19900103,600,132,100,950 +19900103,600,132,100,925 +19900103,600,132,100,900 +19900103,600,132,100,875 +19900103,600,132,100,825 +19900103,600,132,100,800 +19900103,600,132,100,775 +19900103,600,132,100,750 +19900103,600,132,100,740 +19900103,600,132,100,700 +19900103,600,132,100,650 +19900103,600,132,100,620 +19900103,600,132,100,600 +19900103,600,132,100,550 +19900103,600,132,100,500 +19900103,600,132,100,450 +19900103,600,132,100,400 +19900103,600,132,100,375 +19900103,600,132,100,350 +19900103,600,132,100,300 +19900103,600,132,100,250 +19900103,600,132,100,245 +19900103,600,132,100,225 +19900103,600,132,100,200 +19900103,600,132,100,175 +19900103,600,132,100,150 +19900103,600,132,100,125 +19900103,600,132,100,100 +19900103,600,132,100,70 +19900103,600,132,100,50 +19900103,600,132,100,30 +19900103,600,132,100,20 +19900103,600,132,100,10 +19900103,600,132,100,9 +19900103,600,132,100,7 +19900103,600,132,100,5 +19900103,600,132,100,3 +19900103,600,132,100,2 +19900103,600,132,100,1 +19900103,600,132,210,40 +19900103,600,130,100,1000 +19900103,600,130,100,975 +19900103,600,130,100,950 +19900103,600,130,100,925 +19900103,600,130,100,900 +19900103,600,130,100,875 +19900103,600,130,100,850 +19900103,600,130,100,825 +19900103,600,130,100,800 +19900103,600,130,100,775 +19900103,600,130,100,750 +19900103,600,130,100,740 +19900103,600,130,100,700 +19900103,600,130,100,650 +19900103,600,130,100,620 +19900103,600,130,100,600 +19900103,600,130,100,550 +19900103,600,130,100,500 +19900103,600,130,100,450 +19900103,600,130,100,400 +19900103,600,130,100,375 +19900103,600,130,100,350 +19900103,600,130,100,300 +19900103,600,130,100,250 +19900103,600,130,100,245 +19900103,600,130,100,225 +19900103,600,130,100,200 +19900103,600,130,100,175 +19900103,600,130,100,150 +19900103,600,130,100,125 +19900103,600,130,100,100 +19900103,600,130,100,70 +19900103,600,130,100,50 +19900103,600,130,100,30 +19900103,600,130,100,20 +19900103,600,130,100,10 +19900103,600,130,100,9 +19900103,600,130,100,7 +19900103,600,130,100,5 +19900103,600,130,100,3 +19900103,600,130,100,2 +19900103,600,130,100,1 +19900103,600,130,210,40 +19900103,600,129,100,1000 +19900103,600,129,100,975 +19900103,600,129,100,950 +19900103,600,129,100,925 +19900103,600,129,100,900 +19900103,600,129,100,875 +19900103,600,129,100,850 +19900103,600,129,100,825 +19900103,600,129,100,800 +19900103,600,129,100,775 +19900103,600,129,100,750 +19900103,600,129,100,740 +19900103,600,129,100,700 +19900103,600,129,100,650 +19900103,600,129,100,620 +19900103,600,129,100,600 +19900103,600,129,100,550 +19900103,600,129,100,500 +19900103,600,129,100,450 +19900103,600,129,100,400 +19900103,600,129,100,375 +19900103,600,129,100,350 +19900103,600,129,100,300 +19900103,600,129,100,250 +19900103,600,129,100,245 +19900103,600,129,100,225 +19900103,600,129,100,200 +19900103,600,129,100,175 +19900103,600,129,100,150 +19900103,600,129,100,125 +19900103,600,129,100,100 +19900103,600,129,100,70 +19900103,600,129,100,50 +19900103,600,129,100,30 +19900103,600,129,100,20 +19900103,600,129,100,10 +19900103,600,129,100,9 +19900103,600,129,100,7 +19900103,600,129,100,5 +19900103,600,129,100,3 +19900103,600,129,100,2 +19900103,600,129,100,1 +19900103,600,129,210,40 +19900103,600,157,100,1000 +19900103,600,157,100,975 +19900103,600,157,100,950 +19900103,600,157,100,925 +19900103,600,157,100,900 +19900103,600,157,100,875 +19900103,600,157,100,850 +19900103,600,157,100,825 +19900103,600,157,100,800 +19900103,600,157,100,775 +19900103,600,157,100,750 +19900103,600,157,100,740 +19900103,600,157,100,700 +19900103,600,157,100,650 +19900103,600,157,100,620 +19900103,600,157,100,600 +19900103,600,157,100,550 +19900103,600,157,100,500 +19900103,600,157,100,450 +19900103,600,157,100,400 +19900103,600,157,100,375 +19900103,600,157,100,350 +19900103,600,157,100,300 +19900103,600,157,100,250 +19900103,600,157,100,245 +19900103,600,157,100,225 +19900103,600,157,100,200 +19900103,600,157,100,175 +19900103,600,157,100,150 +19900103,600,157,100,125 +19900103,600,157,100,100 +19900103,600,157,100,70 +19900103,600,157,100,50 +19900103,600,157,100,30 +19900103,600,157,100,20 +19900103,600,157,100,10 +19900103,600,157,100,9 +19900103,600,157,100,7 +19900103,600,157,100,5 +19900103,600,157,100,3 +19900103,600,157,100,2 +19900103,600,157,100,1 +19900103,600,157,210,40 +19900103,600,135,100,1000 +19900103,600,135,100,975 +19900103,600,135,100,950 +19900103,600,135,100,925 +19900103,600,135,100,900 +19900103,600,135,100,875 +19900103,600,135,100,850 +19900103,600,135,100,825 +19900103,600,135,100,800 +19900103,600,135,100,775 +19900103,600,135,100,750 +19900103,600,135,100,740 +19900103,600,135,100,700 +19900103,600,135,100,650 +19900103,600,135,100,620 +19900103,600,135,100,600 +19900103,600,135,100,550 +19900103,600,135,100,500 +19900103,600,135,100,450 +19900103,600,135,100,400 +19900103,600,135,100,375 +19900103,600,135,100,350 +19900103,600,135,100,300 +19900103,600,135,100,250 +19900103,600,135,100,245 +19900103,600,135,100,225 +19900103,600,135,100,200 +19900103,600,135,100,175 +19900103,600,135,100,150 +19900103,600,135,100,125 +19900103,600,135,100,100 +19900103,600,135,100,70 +19900103,600,135,100,50 +19900103,600,135,100,30 +19900103,600,135,100,20 +19900103,600,135,100,10 +19900103,600,135,100,9 +19900103,600,135,100,7 +19900103,600,135,100,5 +19900103,600,135,100,3 +19900103,600,135,100,2 +19900103,600,135,100,1 +19900103,600,135,210,40 +19900103,600,138,100,1000 +19900103,600,138,100,975 +19900103,600,138,100,950 +19900103,600,138,100,925 +19900103,600,138,100,900 +19900103,600,138,100,875 +19900103,600,138,100,850 +19900103,600,138,100,825 +19900103,600,138,100,800 +19900103,600,138,100,775 +19900103,600,138,100,750 +19900103,600,138,100,740 +19900103,600,138,100,700 +19900103,600,138,100,650 +19900103,600,138,100,620 +19900103,600,138,100,600 +19900103,600,138,100,550 +19900103,600,138,100,500 +19900103,600,138,100,450 +19900103,600,138,100,400 +19900103,600,138,100,375 +19900103,600,138,100,350 +19900103,600,138,100,300 +19900103,600,138,100,250 +19900103,600,138,100,245 +19900103,600,138,100,225 +19900103,600,138,100,200 +19900103,600,138,100,175 +19900103,600,138,100,150 +19900103,600,138,100,125 +19900103,600,138,100,100 +19900103,600,138,100,70 +19900103,600,138,100,50 +19900103,600,138,100,30 +19900103,600,138,100,20 +19900103,600,138,100,10 +19900103,600,138,100,9 +19900103,600,138,100,7 +19900103,600,138,100,5 +19900103,600,138,100,3 +19900103,600,138,100,2 +19900103,600,138,100,1 +19900103,600,138,210,40 +19900103,600,131,109,1 +19900103,600,131,109,2 +19900103,600,131,109,3 +19900103,600,131,109,4 +19900103,600,131,109,5 +19900103,600,131,109,6 +19900103,600,131,109,7 +19900103,600,131,109,8 +19900103,600,131,109,9 +19900103,600,131,109,10 +19900103,600,132,109,1 +19900103,600,132,109,2 +19900103,600,132,109,3 +19900103,600,132,109,4 +19900103,600,132,109,5 +19900103,600,132,109,6 +19900103,600,132,109,7 +19900103,600,132,109,8 +19900103,600,132,109,9 +19900103,600,132,109,10 +19900103,600,130,109,1 +19900103,600,130,109,2 +19900103,600,130,109,3 +19900103,600,130,109,4 +19900103,600,130,109,5 +19900103,600,130,109,6 +19900103,600,130,109,7 +19900103,600,130,109,8 +19900103,600,130,109,9 +19900103,600,130,109,10 +19900103,600,157,109,1 +19900103,600,157,109,2 +19900103,600,157,109,3 +19900103,600,157,109,4 +19900103,600,157,109,5 +19900103,600,157,109,6 +19900103,600,157,109,7 +19900103,600,157,109,8 +19900103,600,157,109,9 +19900103,600,157,109,10 +19900103,600,54,109,1 +19900103,600,54,109,2 +19900103,600,54,109,3 +19900103,600,54,109,4 +19900103,600,54,109,5 +19900103,600,54,109,6 +19900103,600,54,109,7 +19900103,600,54,109,8 +19900103,600,54,109,9 +19900103,600,54,109,10 +19900103,600,135,109,1 +19900103,600,135,109,2 +19900103,600,135,109,3 +19900103,600,135,109,4 +19900103,600,135,109,5 +19900103,600,135,109,6 +19900103,600,135,109,7 +19900103,600,135,109,8 +19900103,600,135,109,9 +19900103,600,135,109,10 +19900103,600,134,109,1 +19900103,600,152,109,1 +19900103,600,131,100,850 +19900103,600,132,100,850 +19900103,600,134,100,1000 +19900103,600,152,100,1000 +19900103,900,131,100,850 +19900103,900,132,100,850 +19900103,900,134,100,1000 +19900103,900,152,100,1000 +19900103,1200,131,100,1000 +19900103,1200,131,100,975 +19900103,1200,131,100,950 +19900103,1200,131,100,925 +19900103,1200,131,100,900 +19900103,1200,131,100,875 +19900103,1200,131,100,825 +19900103,1200,131,100,800 +19900103,1200,131,100,775 +19900103,1200,131,100,750 +19900103,1200,131,100,740 +19900103,1200,131,100,700 +19900103,1200,131,100,650 +19900103,1200,131,100,620 +19900103,1200,131,100,600 +19900103,1200,131,100,550 +19900103,1200,131,100,500 +19900103,1200,131,100,450 +19900103,1200,131,100,400 +19900103,1200,131,100,375 +19900103,1200,131,100,350 +19900103,1200,131,100,300 +19900103,1200,131,100,250 +19900103,1200,131,100,245 +19900103,1200,131,100,225 +19900103,1200,131,100,200 +19900103,1200,131,100,175 +19900103,1200,131,100,150 +19900103,1200,131,100,125 +19900103,1200,131,100,100 +19900103,1200,131,100,70 +19900103,1200,131,100,50 +19900103,1200,131,100,30 +19900103,1200,131,100,20 +19900103,1200,131,100,10 +19900103,1200,131,100,9 +19900103,1200,131,100,7 +19900103,1200,131,100,5 +19900103,1200,131,100,3 +19900103,1200,131,100,2 +19900103,1200,131,100,1 +19900103,1200,131,210,40 +19900103,1200,132,100,1000 +19900103,1200,132,100,975 +19900103,1200,132,100,950 +19900103,1200,132,100,925 +19900103,1200,132,100,900 +19900103,1200,132,100,875 +19900103,1200,132,100,825 +19900103,1200,132,100,800 +19900103,1200,132,100,775 +19900103,1200,132,100,750 +19900103,1200,132,100,740 +19900103,1200,132,100,700 +19900103,1200,132,100,650 +19900103,1200,132,100,620 +19900103,1200,132,100,600 +19900103,1200,132,100,550 +19900103,1200,132,100,500 +19900103,1200,132,100,450 +19900103,1200,132,100,400 +19900103,1200,132,100,375 +19900103,1200,132,100,350 +19900103,1200,132,100,300 +19900103,1200,132,100,250 +19900103,1200,132,100,245 +19900103,1200,132,100,225 +19900103,1200,132,100,200 +19900103,1200,132,100,175 +19900103,1200,132,100,150 +19900103,1200,132,100,125 +19900103,1200,132,100,100 +19900103,1200,132,100,70 +19900103,1200,132,100,50 +19900103,1200,132,100,30 +19900103,1200,132,100,20 +19900103,1200,132,100,10 +19900103,1200,132,100,9 +19900103,1200,132,100,7 +19900103,1200,132,100,5 +19900103,1200,132,100,3 +19900103,1200,132,100,2 +19900103,1200,132,100,1 +19900103,1200,132,210,40 +19900103,1200,130,100,1000 +19900103,1200,130,100,975 +19900103,1200,130,100,950 +19900103,1200,130,100,925 +19900103,1200,130,100,900 +19900103,1200,130,100,875 +19900103,1200,130,100,850 +19900103,1200,130,100,825 +19900103,1200,130,100,800 +19900103,1200,130,100,775 +19900103,1200,130,100,750 +19900103,1200,130,100,740 +19900103,1200,130,100,700 +19900103,1200,130,100,650 +19900103,1200,130,100,620 +19900103,1200,130,100,600 +19900103,1200,130,100,550 +19900103,1200,130,100,500 +19900103,1200,130,100,450 +19900103,1200,130,100,400 +19900103,1200,130,100,375 +19900103,1200,130,100,350 +19900103,1200,130,100,300 +19900103,1200,130,100,250 +19900103,1200,130,100,245 +19900103,1200,130,100,225 +19900103,1200,130,100,200 +19900103,1200,130,100,175 +19900103,1200,130,100,150 +19900103,1200,130,100,125 +19900103,1200,130,100,100 +19900103,1200,130,100,70 +19900103,1200,130,100,50 +19900103,1200,130,100,30 +19900103,1200,130,100,20 +19900103,1200,130,100,10 +19900103,1200,130,100,9 +19900103,1200,130,100,7 +19900103,1200,130,100,5 +19900103,1200,130,100,3 +19900103,1200,130,100,2 +19900103,1200,130,100,1 +19900103,1200,130,210,40 +19900103,1200,129,100,1000 +19900103,1200,129,100,975 +19900103,1200,129,100,950 +19900103,1200,129,100,925 +19900103,1200,129,100,900 +19900103,1200,129,100,875 +19900103,1200,129,100,850 +19900103,1200,129,100,825 +19900103,1200,129,100,800 +19900103,1200,129,100,775 +19900103,1200,129,100,750 +19900103,1200,129,100,740 +19900103,1200,129,100,700 +19900103,1200,129,100,650 +19900103,1200,129,100,620 +19900103,1200,129,100,600 +19900103,1200,129,100,550 +19900103,1200,129,100,500 +19900103,1200,129,100,450 +19900103,1200,129,100,400 +19900103,1200,129,100,375 +19900103,1200,129,100,350 +19900103,1200,129,100,300 +19900103,1200,129,100,250 +19900103,1200,129,100,245 +19900103,1200,129,100,225 +19900103,1200,129,100,200 +19900103,1200,129,100,175 +19900103,1200,129,100,150 +19900103,1200,129,100,125 +19900103,1200,129,100,100 +19900103,1200,129,100,70 +19900103,1200,129,100,50 +19900103,1200,129,100,30 +19900103,1200,129,100,20 +19900103,1200,129,100,10 +19900103,1200,129,100,9 +19900103,1200,129,100,7 +19900103,1200,129,100,5 +19900103,1200,129,100,3 +19900103,1200,129,100,2 +19900103,1200,129,100,1 +19900103,1200,129,210,40 +19900103,1200,157,100,1000 +19900103,1200,157,100,975 +19900103,1200,157,100,950 +19900103,1200,157,100,925 +19900103,1200,157,100,900 +19900103,1200,157,100,875 +19900103,1200,157,100,850 +19900103,1200,157,100,825 +19900103,1200,157,100,800 +19900103,1200,157,100,775 +19900103,1200,157,100,750 +19900103,1200,157,100,740 +19900103,1200,157,100,700 +19900103,1200,157,100,650 +19900103,1200,157,100,620 +19900103,1200,157,100,600 +19900103,1200,157,100,550 +19900103,1200,157,100,500 +19900103,1200,157,100,450 +19900103,1200,157,100,400 +19900103,1200,157,100,375 +19900103,1200,157,100,350 +19900103,1200,157,100,300 +19900103,1200,157,100,250 +19900103,1200,157,100,245 +19900103,1200,157,100,225 +19900103,1200,157,100,200 +19900103,1200,157,100,175 +19900103,1200,157,100,150 +19900103,1200,157,100,125 +19900103,1200,157,100,100 +19900103,1200,157,100,70 +19900103,1200,157,100,50 +19900103,1200,157,100,30 +19900103,1200,157,100,20 +19900103,1200,157,100,10 +19900103,1200,157,100,9 +19900103,1200,157,100,7 +19900103,1200,157,100,5 +19900103,1200,157,100,3 +19900103,1200,157,100,2 +19900103,1200,157,100,1 +19900103,1200,157,210,40 +19900103,1200,135,100,1000 +19900103,1200,135,100,975 +19900103,1200,135,100,950 +19900103,1200,135,100,925 +19900103,1200,135,100,900 +19900103,1200,135,100,875 +19900103,1200,135,100,850 +19900103,1200,135,100,825 +19900103,1200,135,100,800 +19900103,1200,135,100,775 +19900103,1200,135,100,750 +19900103,1200,135,100,740 +19900103,1200,135,100,700 +19900103,1200,135,100,650 +19900103,1200,135,100,620 +19900103,1200,135,100,600 +19900103,1200,135,100,550 +19900103,1200,135,100,500 +19900103,1200,135,100,450 +19900103,1200,135,100,400 +19900103,1200,135,100,375 +19900103,1200,135,100,350 +19900103,1200,135,100,300 +19900103,1200,135,100,250 +19900103,1200,135,100,245 +19900103,1200,135,100,225 +19900103,1200,135,100,200 +19900103,1200,135,100,175 +19900103,1200,135,100,150 +19900103,1200,135,100,125 +19900103,1200,135,100,100 +19900103,1200,135,100,70 +19900103,1200,135,100,50 +19900103,1200,135,100,30 +19900103,1200,135,100,20 +19900103,1200,135,100,10 +19900103,1200,135,100,9 +19900103,1200,135,100,7 +19900103,1200,135,100,5 +19900103,1200,135,100,3 +19900103,1200,135,100,2 +19900103,1200,135,100,1 +19900103,1200,135,210,40 +19900103,1200,138,100,1000 +19900103,1200,138,100,975 +19900103,1200,138,100,950 +19900103,1200,138,100,925 +19900103,1200,138,100,900 +19900103,1200,138,100,875 +19900103,1200,138,100,850 +19900103,1200,138,100,825 +19900103,1200,138,100,800 +19900103,1200,138,100,775 +19900103,1200,138,100,750 +19900103,1200,138,100,740 +19900103,1200,138,100,700 +19900103,1200,138,100,650 +19900103,1200,138,100,620 +19900103,1200,138,100,600 +19900103,1200,138,100,550 +19900103,1200,138,100,500 +19900103,1200,138,100,450 +19900103,1200,138,100,400 +19900103,1200,138,100,375 +19900103,1200,138,100,350 +19900103,1200,138,100,300 +19900103,1200,138,100,250 +19900103,1200,138,100,245 +19900103,1200,138,100,225 +19900103,1200,138,100,200 +19900103,1200,138,100,175 +19900103,1200,138,100,150 +19900103,1200,138,100,125 +19900103,1200,138,100,100 +19900103,1200,138,100,70 +19900103,1200,138,100,50 +19900103,1200,138,100,30 +19900103,1200,138,100,20 +19900103,1200,138,100,10 +19900103,1200,138,100,9 +19900103,1200,138,100,7 +19900103,1200,138,100,5 +19900103,1200,138,100,3 +19900103,1200,138,100,2 +19900103,1200,138,100,1 +19900103,1200,138,210,40 +19900103,1200,131,109,1 +19900103,1200,131,109,2 +19900103,1200,131,109,3 +19900103,1200,131,109,4 +19900103,1200,131,109,5 +19900103,1200,131,109,6 +19900103,1200,131,109,7 +19900103,1200,131,109,8 +19900103,1200,131,109,9 +19900103,1200,131,109,10 +19900103,1200,132,109,1 +19900103,1200,132,109,2 +19900103,1200,132,109,3 +19900103,1200,132,109,4 +19900103,1200,132,109,5 +19900103,1200,132,109,6 +19900103,1200,132,109,7 +19900103,1200,132,109,8 +19900103,1200,132,109,9 +19900103,1200,132,109,10 +19900103,1200,130,109,1 +19900103,1200,130,109,2 +19900103,1200,130,109,3 +19900103,1200,130,109,4 +19900103,1200,130,109,5 +19900103,1200,130,109,6 +19900103,1200,130,109,7 +19900103,1200,130,109,8 +19900103,1200,130,109,9 +19900103,1200,130,109,10 +19900103,1200,157,109,1 +19900103,1200,157,109,2 +19900103,1200,157,109,3 +19900103,1200,157,109,4 +19900103,1200,157,109,5 +19900103,1200,157,109,6 +19900103,1200,157,109,7 +19900103,1200,157,109,8 +19900103,1200,157,109,9 +19900103,1200,157,109,10 +19900103,1200,54,109,1 +19900103,1200,54,109,2 +19900103,1200,54,109,3 +19900103,1200,54,109,4 +19900103,1200,54,109,5 +19900103,1200,54,109,6 +19900103,1200,54,109,7 +19900103,1200,54,109,8 +19900103,1200,54,109,9 +19900103,1200,54,109,10 +19900103,1200,135,109,1 +19900103,1200,135,109,2 +19900103,1200,135,109,3 +19900103,1200,135,109,4 +19900103,1200,135,109,5 +19900103,1200,135,109,6 +19900103,1200,135,109,7 +19900103,1200,135,109,8 +19900103,1200,135,109,9 +19900103,1200,135,109,10 +19900103,1200,134,109,1 +19900103,1200,152,109,1 +19900103,1200,131,100,850 +19900103,1200,132,100,850 +19900103,1200,134,100,1000 +19900103,1200,152,100,1000 +19900103,1500,131,100,850 +19900103,1500,132,100,850 +19900103,1500,134,100,1000 +19900103,1500,152,100,1000 +19900103,1800,131,100,1000 +19900103,1800,131,100,975 +19900103,1800,131,100,950 +19900103,1800,131,100,925 +19900103,1800,131,100,900 +19900103,1800,131,100,875 +19900103,1800,131,100,825 +19900103,1800,131,100,800 +19900103,1800,131,100,775 +19900103,1800,131,100,750 +19900103,1800,131,100,740 +19900103,1800,131,100,700 +19900103,1800,131,100,650 +19900103,1800,131,100,620 +19900103,1800,131,100,600 +19900103,1800,131,100,550 +19900103,1800,131,100,500 +19900103,1800,131,100,450 +19900103,1800,131,100,400 +19900103,1800,131,100,375 +19900103,1800,131,100,350 +19900103,1800,131,100,300 +19900103,1800,131,100,250 +19900103,1800,131,100,245 +19900103,1800,131,100,225 +19900103,1800,131,100,200 +19900103,1800,131,100,175 +19900103,1800,131,100,150 +19900103,1800,131,100,125 +19900103,1800,131,100,100 +19900103,1800,131,100,70 +19900103,1800,131,100,50 +19900103,1800,131,100,30 +19900103,1800,131,100,20 +19900103,1800,131,100,10 +19900103,1800,131,100,9 +19900103,1800,131,100,7 +19900103,1800,131,100,5 +19900103,1800,131,100,3 +19900103,1800,131,100,2 +19900103,1800,131,100,1 +19900103,1800,131,210,40 +19900103,1800,132,100,1000 +19900103,1800,132,100,975 +19900103,1800,132,100,950 +19900103,1800,132,100,925 +19900103,1800,132,100,900 +19900103,1800,132,100,875 +19900103,1800,132,100,825 +19900103,1800,132,100,800 +19900103,1800,132,100,775 +19900103,1800,132,100,750 +19900103,1800,132,100,740 +19900103,1800,132,100,700 +19900103,1800,132,100,650 +19900103,1800,132,100,620 +19900103,1800,132,100,600 +19900103,1800,132,100,550 +19900103,1800,132,100,500 +19900103,1800,132,100,450 +19900103,1800,132,100,400 +19900103,1800,132,100,375 +19900103,1800,132,100,350 +19900103,1800,132,100,300 +19900103,1800,132,100,250 +19900103,1800,132,100,245 +19900103,1800,132,100,225 +19900103,1800,132,100,200 +19900103,1800,132,100,175 +19900103,1800,132,100,150 +19900103,1800,132,100,125 +19900103,1800,132,100,100 +19900103,1800,132,100,70 +19900103,1800,132,100,50 +19900103,1800,132,100,30 +19900103,1800,132,100,20 +19900103,1800,132,100,10 +19900103,1800,132,100,9 +19900103,1800,132,100,7 +19900103,1800,132,100,5 +19900103,1800,132,100,3 +19900103,1800,132,100,2 +19900103,1800,132,100,1 +19900103,1800,132,210,40 +19900103,1800,130,100,1000 +19900103,1800,130,100,975 +19900103,1800,130,100,950 +19900103,1800,130,100,925 +19900103,1800,130,100,900 +19900103,1800,130,100,875 +19900103,1800,130,100,850 +19900103,1800,130,100,825 +19900103,1800,130,100,800 +19900103,1800,130,100,775 +19900103,1800,130,100,750 +19900103,1800,130,100,740 +19900103,1800,130,100,700 +19900103,1800,130,100,650 +19900103,1800,130,100,620 +19900103,1800,130,100,600 +19900103,1800,130,100,550 +19900103,1800,130,100,500 +19900103,1800,130,100,450 +19900103,1800,130,100,400 +19900103,1800,130,100,375 +19900103,1800,130,100,350 +19900103,1800,130,100,300 +19900103,1800,130,100,250 +19900103,1800,130,100,245 +19900103,1800,130,100,225 +19900103,1800,130,100,200 +19900103,1800,130,100,175 +19900103,1800,130,100,150 +19900103,1800,130,100,125 +19900103,1800,130,100,100 +19900103,1800,130,100,70 +19900103,1800,130,100,50 +19900103,1800,130,100,30 +19900103,1800,130,100,20 +19900103,1800,130,100,10 +19900103,1800,130,100,9 +19900103,1800,130,100,7 +19900103,1800,130,100,5 +19900103,1800,130,100,3 +19900103,1800,130,100,2 +19900103,1800,130,100,1 +19900103,1800,130,210,40 +19900103,1800,129,100,1000 +19900103,1800,129,100,975 +19900103,1800,129,100,950 +19900103,1800,129,100,925 +19900103,1800,129,100,900 +19900103,1800,129,100,875 +19900103,1800,129,100,850 +19900103,1800,129,100,825 +19900103,1800,129,100,800 +19900103,1800,129,100,775 +19900103,1800,129,100,750 +19900103,1800,129,100,740 +19900103,1800,129,100,700 +19900103,1800,129,100,650 +19900103,1800,129,100,620 +19900103,1800,129,100,600 +19900103,1800,129,100,550 +19900103,1800,129,100,500 +19900103,1800,129,100,450 +19900103,1800,129,100,400 +19900103,1800,129,100,375 +19900103,1800,129,100,350 +19900103,1800,129,100,300 +19900103,1800,129,100,250 +19900103,1800,129,100,245 +19900103,1800,129,100,225 +19900103,1800,129,100,200 +19900103,1800,129,100,175 +19900103,1800,129,100,150 +19900103,1800,129,100,125 +19900103,1800,129,100,100 +19900103,1800,129,100,70 +19900103,1800,129,100,50 +19900103,1800,129,100,30 +19900103,1800,129,100,20 +19900103,1800,129,100,10 +19900103,1800,129,100,9 +19900103,1800,129,100,7 +19900103,1800,129,100,5 +19900103,1800,129,100,3 +19900103,1800,129,100,2 +19900103,1800,129,100,1 +19900103,1800,129,210,40 +19900103,1800,157,100,1000 +19900103,1800,157,100,975 +19900103,1800,157,100,950 +19900103,1800,157,100,925 +19900103,1800,157,100,900 +19900103,1800,157,100,875 +19900103,1800,157,100,850 +19900103,1800,157,100,825 +19900103,1800,157,100,800 +19900103,1800,157,100,775 +19900103,1800,157,100,750 +19900103,1800,157,100,740 +19900103,1800,157,100,700 +19900103,1800,157,100,650 +19900103,1800,157,100,620 +19900103,1800,157,100,600 +19900103,1800,157,100,550 +19900103,1800,157,100,500 +19900103,1800,157,100,450 +19900103,1800,157,100,400 +19900103,1800,157,100,375 +19900103,1800,157,100,350 +19900103,1800,157,100,300 +19900103,1800,157,100,250 +19900103,1800,157,100,245 +19900103,1800,157,100,225 +19900103,1800,157,100,200 +19900103,1800,157,100,175 +19900103,1800,157,100,150 +19900103,1800,157,100,125 +19900103,1800,157,100,100 +19900103,1800,157,100,70 +19900103,1800,157,100,50 +19900103,1800,157,100,30 +19900103,1800,157,100,20 +19900103,1800,157,100,10 +19900103,1800,157,100,9 +19900103,1800,157,100,7 +19900103,1800,157,100,5 +19900103,1800,157,100,3 +19900103,1800,157,100,2 +19900103,1800,157,100,1 +19900103,1800,157,210,40 +19900103,1800,135,100,1000 +19900103,1800,135,100,975 +19900103,1800,135,100,950 +19900103,1800,135,100,925 +19900103,1800,135,100,900 +19900103,1800,135,100,875 +19900103,1800,135,100,850 +19900103,1800,135,100,825 +19900103,1800,135,100,800 +19900103,1800,135,100,775 +19900103,1800,135,100,750 +19900103,1800,135,100,740 +19900103,1800,135,100,700 +19900103,1800,135,100,650 +19900103,1800,135,100,620 +19900103,1800,135,100,600 +19900103,1800,135,100,550 +19900103,1800,135,100,500 +19900103,1800,135,100,450 +19900103,1800,135,100,400 +19900103,1800,135,100,375 +19900103,1800,135,100,350 +19900103,1800,135,100,300 +19900103,1800,135,100,250 +19900103,1800,135,100,245 +19900103,1800,135,100,225 +19900103,1800,135,100,200 +19900103,1800,135,100,175 +19900103,1800,135,100,150 +19900103,1800,135,100,125 +19900103,1800,135,100,100 +19900103,1800,135,100,70 +19900103,1800,135,100,50 +19900103,1800,135,100,30 +19900103,1800,135,100,20 +19900103,1800,135,100,10 +19900103,1800,135,100,9 +19900103,1800,135,100,7 +19900103,1800,135,100,5 +19900103,1800,135,100,3 +19900103,1800,135,100,2 +19900103,1800,135,100,1 +19900103,1800,135,210,40 +19900103,1800,138,100,1000 +19900103,1800,138,100,975 +19900103,1800,138,100,950 +19900103,1800,138,100,925 +19900103,1800,138,100,900 +19900103,1800,138,100,875 +19900103,1800,138,100,850 +19900103,1800,138,100,825 +19900103,1800,138,100,800 +19900103,1800,138,100,775 +19900103,1800,138,100,750 +19900103,1800,138,100,740 +19900103,1800,138,100,700 +19900103,1800,138,100,650 +19900103,1800,138,100,620 +19900103,1800,138,100,600 +19900103,1800,138,100,550 +19900103,1800,138,100,500 +19900103,1800,138,100,450 +19900103,1800,138,100,400 +19900103,1800,138,100,375 +19900103,1800,138,100,350 +19900103,1800,138,100,300 +19900103,1800,138,100,250 +19900103,1800,138,100,245 +19900103,1800,138,100,225 +19900103,1800,138,100,200 +19900103,1800,138,100,175 +19900103,1800,138,100,150 +19900103,1800,138,100,125 +19900103,1800,138,100,100 +19900103,1800,138,100,70 +19900103,1800,138,100,50 +19900103,1800,138,100,30 +19900103,1800,138,100,20 +19900103,1800,138,100,10 +19900103,1800,138,100,9 +19900103,1800,138,100,7 +19900103,1800,138,100,5 +19900103,1800,138,100,3 +19900103,1800,138,100,2 +19900103,1800,138,100,1 +19900103,1800,138,210,40 +19900103,1800,131,109,1 +19900103,1800,131,109,2 +19900103,1800,131,109,3 +19900103,1800,131,109,4 +19900103,1800,131,109,5 +19900103,1800,131,109,6 +19900103,1800,131,109,7 +19900103,1800,131,109,8 +19900103,1800,131,109,9 +19900103,1800,131,109,10 +19900103,1800,132,109,1 +19900103,1800,132,109,2 +19900103,1800,132,109,3 +19900103,1800,132,109,4 +19900103,1800,132,109,5 +19900103,1800,132,109,6 +19900103,1800,132,109,7 +19900103,1800,132,109,8 +19900103,1800,132,109,9 +19900103,1800,132,109,10 +19900103,1800,130,109,1 +19900103,1800,130,109,2 +19900103,1800,130,109,3 +19900103,1800,130,109,4 +19900103,1800,130,109,5 +19900103,1800,130,109,6 +19900103,1800,130,109,7 +19900103,1800,130,109,8 +19900103,1800,130,109,9 +19900103,1800,130,109,10 +19900103,1800,157,109,1 +19900103,1800,157,109,2 +19900103,1800,157,109,3 +19900103,1800,157,109,4 +19900103,1800,157,109,5 +19900103,1800,157,109,6 +19900103,1800,157,109,7 +19900103,1800,157,109,8 +19900103,1800,157,109,9 +19900103,1800,157,109,10 +19900103,1800,54,109,1 +19900103,1800,54,109,2 +19900103,1800,54,109,3 +19900103,1800,54,109,4 +19900103,1800,54,109,5 +19900103,1800,54,109,6 +19900103,1800,54,109,7 +19900103,1800,54,109,8 +19900103,1800,54,109,9 +19900103,1800,54,109,10 +19900103,1800,135,109,1 +19900103,1800,135,109,2 +19900103,1800,135,109,3 +19900103,1800,135,109,4 +19900103,1800,135,109,5 +19900103,1800,135,109,6 +19900103,1800,135,109,7 +19900103,1800,135,109,8 +19900103,1800,135,109,9 +19900103,1800,135,109,10 +19900103,1800,134,109,1 +19900103,1800,152,109,1 +19900103,1800,131,100,850 +19900103,1800,132,100,850 +19900103,1800,134,100,1000 +19900103,1800,152,100,1000 +19900103,2100,131,100,850 +19900103,2100,132,100,850 +19900103,2100,134,100,1000 +19900103,2100,152,100,1000 +19900104,0,131,100,1000 +19900104,0,131,100,975 +19900104,0,131,100,950 +19900104,0,131,100,925 +19900104,0,131,100,900 +19900104,0,131,100,875 +19900104,0,131,100,825 +19900104,0,131,100,800 +19900104,0,131,100,775 +19900104,0,131,100,750 +19900104,0,131,100,740 +19900104,0,131,100,700 +19900104,0,131,100,650 +19900104,0,131,100,620 +19900104,0,131,100,600 +19900104,0,131,100,550 +19900104,0,131,100,500 +19900104,0,131,100,450 +19900104,0,131,100,400 +19900104,0,131,100,375 +19900104,0,131,100,350 +19900104,0,131,100,300 +19900104,0,131,100,250 +19900104,0,131,100,245 +19900104,0,131,100,225 +19900104,0,131,100,200 +19900104,0,131,100,175 +19900104,0,131,100,150 +19900104,0,131,100,125 +19900104,0,131,100,100 +19900104,0,131,100,70 +19900104,0,131,100,50 +19900104,0,131,100,30 +19900104,0,131,100,20 +19900104,0,131,100,10 +19900104,0,131,100,9 +19900104,0,131,100,7 +19900104,0,131,100,5 +19900104,0,131,100,3 +19900104,0,131,100,2 +19900104,0,131,100,1 +19900104,0,131,210,40 +19900104,0,132,100,1000 +19900104,0,132,100,975 +19900104,0,132,100,950 +19900104,0,132,100,925 +19900104,0,132,100,900 +19900104,0,132,100,875 +19900104,0,132,100,825 +19900104,0,132,100,800 +19900104,0,132,100,775 +19900104,0,132,100,750 +19900104,0,132,100,740 +19900104,0,132,100,700 +19900104,0,132,100,650 +19900104,0,132,100,620 +19900104,0,132,100,600 +19900104,0,132,100,550 +19900104,0,132,100,500 +19900104,0,132,100,450 +19900104,0,132,100,400 +19900104,0,132,100,375 +19900104,0,132,100,350 +19900104,0,132,100,300 +19900104,0,132,100,250 +19900104,0,132,100,245 +19900104,0,132,100,225 +19900104,0,132,100,200 +19900104,0,132,100,175 +19900104,0,132,100,150 +19900104,0,132,100,125 +19900104,0,132,100,100 +19900104,0,132,100,70 +19900104,0,132,100,50 +19900104,0,132,100,30 +19900104,0,132,100,20 +19900104,0,132,100,10 +19900104,0,132,100,9 +19900104,0,132,100,7 +19900104,0,132,100,5 +19900104,0,132,100,3 +19900104,0,132,100,2 +19900104,0,132,100,1 +19900104,0,132,210,40 +19900104,0,130,100,1000 +19900104,0,130,100,975 +19900104,0,130,100,950 +19900104,0,130,100,925 +19900104,0,130,100,900 +19900104,0,130,100,875 +19900104,0,130,100,850 +19900104,0,130,100,825 +19900104,0,130,100,800 +19900104,0,130,100,775 +19900104,0,130,100,750 +19900104,0,130,100,740 +19900104,0,130,100,700 +19900104,0,130,100,650 +19900104,0,130,100,620 +19900104,0,130,100,600 +19900104,0,130,100,550 +19900104,0,130,100,500 +19900104,0,130,100,450 +19900104,0,130,100,400 +19900104,0,130,100,375 +19900104,0,130,100,350 +19900104,0,130,100,300 +19900104,0,130,100,250 +19900104,0,130,100,245 +19900104,0,130,100,225 +19900104,0,130,100,200 +19900104,0,130,100,175 +19900104,0,130,100,150 +19900104,0,130,100,125 +19900104,0,130,100,100 +19900104,0,130,100,70 +19900104,0,130,100,50 +19900104,0,130,100,30 +19900104,0,130,100,20 +19900104,0,130,100,10 +19900104,0,130,100,9 +19900104,0,130,100,7 +19900104,0,130,100,5 +19900104,0,130,100,3 +19900104,0,130,100,2 +19900104,0,130,100,1 +19900104,0,130,210,40 +19900104,0,129,100,1000 +19900104,0,129,100,975 +19900104,0,129,100,950 +19900104,0,129,100,925 +19900104,0,129,100,900 +19900104,0,129,100,875 +19900104,0,129,100,850 +19900104,0,129,100,825 +19900104,0,129,100,800 +19900104,0,129,100,775 +19900104,0,129,100,750 +19900104,0,129,100,740 +19900104,0,129,100,700 +19900104,0,129,100,650 +19900104,0,129,100,620 +19900104,0,129,100,600 +19900104,0,129,100,550 +19900104,0,129,100,500 +19900104,0,129,100,450 +19900104,0,129,100,400 +19900104,0,129,100,375 +19900104,0,129,100,350 +19900104,0,129,100,300 +19900104,0,129,100,250 +19900104,0,129,100,245 +19900104,0,129,100,225 +19900104,0,129,100,200 +19900104,0,129,100,175 +19900104,0,129,100,150 +19900104,0,129,100,125 +19900104,0,129,100,100 +19900104,0,129,100,70 +19900104,0,129,100,50 +19900104,0,129,100,30 +19900104,0,129,100,20 +19900104,0,129,100,10 +19900104,0,129,100,9 +19900104,0,129,100,7 +19900104,0,129,100,5 +19900104,0,129,100,3 +19900104,0,129,100,2 +19900104,0,129,100,1 +19900104,0,129,210,40 +19900104,0,157,100,1000 +19900104,0,157,100,975 +19900104,0,157,100,950 +19900104,0,157,100,925 +19900104,0,157,100,900 +19900104,0,157,100,875 +19900104,0,157,100,850 +19900104,0,157,100,825 +19900104,0,157,100,800 +19900104,0,157,100,775 +19900104,0,157,100,750 +19900104,0,157,100,740 +19900104,0,157,100,700 +19900104,0,157,100,650 +19900104,0,157,100,620 +19900104,0,157,100,600 +19900104,0,157,100,550 +19900104,0,157,100,500 +19900104,0,157,100,450 +19900104,0,157,100,400 +19900104,0,157,100,375 +19900104,0,157,100,350 +19900104,0,157,100,300 +19900104,0,157,100,250 +19900104,0,157,100,245 +19900104,0,157,100,225 +19900104,0,157,100,200 +19900104,0,157,100,175 +19900104,0,157,100,150 +19900104,0,157,100,125 +19900104,0,157,100,100 +19900104,0,157,100,70 +19900104,0,157,100,50 +19900104,0,157,100,30 +19900104,0,157,100,20 +19900104,0,157,100,10 +19900104,0,157,100,9 +19900104,0,157,100,7 +19900104,0,157,100,5 +19900104,0,157,100,3 +19900104,0,157,100,2 +19900104,0,157,100,1 +19900104,0,157,210,40 +19900104,0,135,100,1000 +19900104,0,135,100,975 +19900104,0,135,100,950 +19900104,0,135,100,925 +19900104,0,135,100,900 +19900104,0,135,100,875 +19900104,0,135,100,850 +19900104,0,135,100,825 +19900104,0,135,100,800 +19900104,0,135,100,775 +19900104,0,135,100,750 +19900104,0,135,100,740 +19900104,0,135,100,700 +19900104,0,135,100,650 +19900104,0,135,100,620 +19900104,0,135,100,600 +19900104,0,135,100,550 +19900104,0,135,100,500 +19900104,0,135,100,450 +19900104,0,135,100,400 +19900104,0,135,100,375 +19900104,0,135,100,350 +19900104,0,135,100,300 +19900104,0,135,100,250 +19900104,0,135,100,245 +19900104,0,135,100,225 +19900104,0,135,100,200 +19900104,0,135,100,175 +19900104,0,135,100,150 +19900104,0,135,100,125 +19900104,0,135,100,100 +19900104,0,135,100,70 +19900104,0,135,100,50 +19900104,0,135,100,30 +19900104,0,135,100,20 +19900104,0,135,100,10 +19900104,0,135,100,9 +19900104,0,135,100,7 +19900104,0,135,100,5 +19900104,0,135,100,3 +19900104,0,135,100,2 +19900104,0,135,100,1 +19900104,0,135,210,40 +19900104,0,138,100,1000 +19900104,0,138,100,975 +19900104,0,138,100,950 +19900104,0,138,100,925 +19900104,0,138,100,900 +19900104,0,138,100,875 +19900104,0,138,100,850 +19900104,0,138,100,825 +19900104,0,138,100,800 +19900104,0,138,100,775 +19900104,0,138,100,750 +19900104,0,138,100,740 +19900104,0,138,100,700 +19900104,0,138,100,650 +19900104,0,138,100,620 +19900104,0,138,100,600 +19900104,0,138,100,550 +19900104,0,138,100,500 +19900104,0,138,100,450 +19900104,0,138,100,400 +19900104,0,138,100,375 +19900104,0,138,100,350 +19900104,0,138,100,300 +19900104,0,138,100,250 +19900104,0,138,100,245 +19900104,0,138,100,225 +19900104,0,138,100,200 +19900104,0,138,100,175 +19900104,0,138,100,150 +19900104,0,138,100,125 +19900104,0,138,100,100 +19900104,0,138,100,70 +19900104,0,138,100,50 +19900104,0,138,100,30 +19900104,0,138,100,20 +19900104,0,138,100,10 +19900104,0,138,100,9 +19900104,0,138,100,7 +19900104,0,138,100,5 +19900104,0,138,100,3 +19900104,0,138,100,2 +19900104,0,138,100,1 +19900104,0,138,210,40 +19900104,0,131,109,1 +19900104,0,131,109,2 +19900104,0,131,109,3 +19900104,0,131,109,4 +19900104,0,131,109,5 +19900104,0,131,109,6 +19900104,0,131,109,7 +19900104,0,131,109,8 +19900104,0,131,109,9 +19900104,0,131,109,10 +19900104,0,132,109,1 +19900104,0,132,109,2 +19900104,0,132,109,3 +19900104,0,132,109,4 +19900104,0,132,109,5 +19900104,0,132,109,6 +19900104,0,132,109,7 +19900104,0,132,109,8 +19900104,0,132,109,9 +19900104,0,132,109,10 +19900104,0,130,109,1 +19900104,0,130,109,2 +19900104,0,130,109,3 +19900104,0,130,109,4 +19900104,0,130,109,5 +19900104,0,130,109,6 +19900104,0,130,109,7 +19900104,0,130,109,8 +19900104,0,130,109,9 +19900104,0,130,109,10 +19900104,0,157,109,1 +19900104,0,157,109,2 +19900104,0,157,109,3 +19900104,0,157,109,4 +19900104,0,157,109,5 +19900104,0,157,109,6 +19900104,0,157,109,7 +19900104,0,157,109,8 +19900104,0,157,109,9 +19900104,0,157,109,10 +19900104,0,54,109,1 +19900104,0,54,109,2 +19900104,0,54,109,3 +19900104,0,54,109,4 +19900104,0,54,109,5 +19900104,0,54,109,6 +19900104,0,54,109,7 +19900104,0,54,109,8 +19900104,0,54,109,9 +19900104,0,54,109,10 +19900104,0,135,109,1 +19900104,0,135,109,2 +19900104,0,135,109,3 +19900104,0,135,109,4 +19900104,0,135,109,5 +19900104,0,135,109,6 +19900104,0,135,109,7 +19900104,0,135,109,8 +19900104,0,135,109,9 +19900104,0,135,109,10 +19900104,0,134,109,1 +19900104,0,152,109,1 +19900104,0,131,100,850 +19900104,0,132,100,850 +19900104,0,134,100,1000 +19900104,0,152,100,1000 +19900104,300,131,100,850 +19900104,300,132,100,850 +19900104,300,134,100,1000 +19900104,300,152,100,1000 +19900104,600,131,100,1000 +19900104,600,131,100,975 +19900104,600,131,100,950 +19900104,600,131,100,925 +19900104,600,131,100,900 +19900104,600,131,100,875 +19900104,600,131,100,825 +19900104,600,131,100,800 +19900104,600,131,100,775 +19900104,600,131,100,750 +19900104,600,131,100,740 +19900104,600,131,100,700 +19900104,600,131,100,650 +19900104,600,131,100,620 +19900104,600,131,100,600 +19900104,600,131,100,550 +19900104,600,131,100,500 +19900104,600,131,100,450 +19900104,600,131,100,400 +19900104,600,131,100,375 +19900104,600,131,100,350 +19900104,600,131,100,300 +19900104,600,131,100,250 +19900104,600,131,100,245 +19900104,600,131,100,225 +19900104,600,131,100,200 +19900104,600,131,100,175 +19900104,600,131,100,150 +19900104,600,131,100,125 +19900104,600,131,100,100 +19900104,600,131,100,70 +19900104,600,131,100,50 +19900104,600,131,100,30 +19900104,600,131,100,20 +19900104,600,131,100,10 +19900104,600,131,100,9 +19900104,600,131,100,7 +19900104,600,131,100,5 +19900104,600,131,100,3 +19900104,600,131,100,2 +19900104,600,131,100,1 +19900104,600,131,210,40 +19900104,600,132,100,1000 +19900104,600,132,100,975 +19900104,600,132,100,950 +19900104,600,132,100,925 +19900104,600,132,100,900 +19900104,600,132,100,875 +19900104,600,132,100,825 +19900104,600,132,100,800 +19900104,600,132,100,775 +19900104,600,132,100,750 +19900104,600,132,100,740 +19900104,600,132,100,700 +19900104,600,132,100,650 +19900104,600,132,100,620 +19900104,600,132,100,600 +19900104,600,132,100,550 +19900104,600,132,100,500 +19900104,600,132,100,450 +19900104,600,132,100,400 +19900104,600,132,100,375 +19900104,600,132,100,350 +19900104,600,132,100,300 +19900104,600,132,100,250 +19900104,600,132,100,245 +19900104,600,132,100,225 +19900104,600,132,100,200 +19900104,600,132,100,175 +19900104,600,132,100,150 +19900104,600,132,100,125 +19900104,600,132,100,100 +19900104,600,132,100,70 +19900104,600,132,100,50 +19900104,600,132,100,30 +19900104,600,132,100,20 +19900104,600,132,100,10 +19900104,600,132,100,9 +19900104,600,132,100,7 +19900104,600,132,100,5 +19900104,600,132,100,3 +19900104,600,132,100,2 +19900104,600,132,100,1 +19900104,600,132,210,40 +19900104,600,130,100,1000 +19900104,600,130,100,975 +19900104,600,130,100,950 +19900104,600,130,100,925 +19900104,600,130,100,900 +19900104,600,130,100,875 +19900104,600,130,100,850 +19900104,600,130,100,825 +19900104,600,130,100,800 +19900104,600,130,100,775 +19900104,600,130,100,750 +19900104,600,130,100,740 +19900104,600,130,100,700 +19900104,600,130,100,650 +19900104,600,130,100,620 +19900104,600,130,100,600 +19900104,600,130,100,550 +19900104,600,130,100,500 +19900104,600,130,100,450 +19900104,600,130,100,400 +19900104,600,130,100,375 +19900104,600,130,100,350 +19900104,600,130,100,300 +19900104,600,130,100,250 +19900104,600,130,100,245 +19900104,600,130,100,225 +19900104,600,130,100,200 +19900104,600,130,100,175 +19900104,600,130,100,150 +19900104,600,130,100,125 +19900104,600,130,100,100 +19900104,600,130,100,70 +19900104,600,130,100,50 +19900104,600,130,100,30 +19900104,600,130,100,20 +19900104,600,130,100,10 +19900104,600,130,100,9 +19900104,600,130,100,7 +19900104,600,130,100,5 +19900104,600,130,100,3 +19900104,600,130,100,2 +19900104,600,130,100,1 +19900104,600,130,210,40 +19900104,600,129,100,1000 +19900104,600,129,100,975 +19900104,600,129,100,950 +19900104,600,129,100,925 +19900104,600,129,100,900 +19900104,600,129,100,875 +19900104,600,129,100,850 +19900104,600,129,100,825 +19900104,600,129,100,800 +19900104,600,129,100,775 +19900104,600,129,100,750 +19900104,600,129,100,740 +19900104,600,129,100,700 +19900104,600,129,100,650 +19900104,600,129,100,620 +19900104,600,129,100,600 +19900104,600,129,100,550 +19900104,600,129,100,500 +19900104,600,129,100,450 +19900104,600,129,100,400 +19900104,600,129,100,375 +19900104,600,129,100,350 +19900104,600,129,100,300 +19900104,600,129,100,250 +19900104,600,129,100,245 +19900104,600,129,100,225 +19900104,600,129,100,200 +19900104,600,129,100,175 +19900104,600,129,100,150 +19900104,600,129,100,125 +19900104,600,129,100,100 +19900104,600,129,100,70 +19900104,600,129,100,50 +19900104,600,129,100,30 +19900104,600,129,100,20 +19900104,600,129,100,10 +19900104,600,129,100,9 +19900104,600,129,100,7 +19900104,600,129,100,5 +19900104,600,129,100,3 +19900104,600,129,100,2 +19900104,600,129,100,1 +19900104,600,129,210,40 +19900104,600,157,100,1000 +19900104,600,157,100,975 +19900104,600,157,100,950 +19900104,600,157,100,925 +19900104,600,157,100,900 +19900104,600,157,100,875 +19900104,600,157,100,850 +19900104,600,157,100,825 +19900104,600,157,100,800 +19900104,600,157,100,775 +19900104,600,157,100,750 +19900104,600,157,100,740 +19900104,600,157,100,700 +19900104,600,157,100,650 +19900104,600,157,100,620 +19900104,600,157,100,600 +19900104,600,157,100,550 +19900104,600,157,100,500 +19900104,600,157,100,450 +19900104,600,157,100,400 +19900104,600,157,100,375 +19900104,600,157,100,350 +19900104,600,157,100,300 +19900104,600,157,100,250 +19900104,600,157,100,245 +19900104,600,157,100,225 +19900104,600,157,100,200 +19900104,600,157,100,175 +19900104,600,157,100,150 +19900104,600,157,100,125 +19900104,600,157,100,100 +19900104,600,157,100,70 +19900104,600,157,100,50 +19900104,600,157,100,30 +19900104,600,157,100,20 +19900104,600,157,100,10 +19900104,600,157,100,9 +19900104,600,157,100,7 +19900104,600,157,100,5 +19900104,600,157,100,3 +19900104,600,157,100,2 +19900104,600,157,100,1 +19900104,600,157,210,40 +19900104,600,135,100,1000 +19900104,600,135,100,975 +19900104,600,135,100,950 +19900104,600,135,100,925 +19900104,600,135,100,900 +19900104,600,135,100,875 +19900104,600,135,100,850 +19900104,600,135,100,825 +19900104,600,135,100,800 +19900104,600,135,100,775 +19900104,600,135,100,750 +19900104,600,135,100,740 +19900104,600,135,100,700 +19900104,600,135,100,650 +19900104,600,135,100,620 +19900104,600,135,100,600 +19900104,600,135,100,550 +19900104,600,135,100,500 +19900104,600,135,100,450 +19900104,600,135,100,400 +19900104,600,135,100,375 +19900104,600,135,100,350 +19900104,600,135,100,300 +19900104,600,135,100,250 +19900104,600,135,100,245 +19900104,600,135,100,225 +19900104,600,135,100,200 +19900104,600,135,100,175 +19900104,600,135,100,150 +19900104,600,135,100,125 +19900104,600,135,100,100 +19900104,600,135,100,70 +19900104,600,135,100,50 +19900104,600,135,100,30 +19900104,600,135,100,20 +19900104,600,135,100,10 +19900104,600,135,100,9 +19900104,600,135,100,7 +19900104,600,135,100,5 +19900104,600,135,100,3 +19900104,600,135,100,2 +19900104,600,135,100,1 +19900104,600,135,210,40 +19900104,600,138,100,1000 +19900104,600,138,100,975 +19900104,600,138,100,950 +19900104,600,138,100,925 +19900104,600,138,100,900 +19900104,600,138,100,875 +19900104,600,138,100,850 +19900104,600,138,100,825 +19900104,600,138,100,800 +19900104,600,138,100,775 +19900104,600,138,100,750 +19900104,600,138,100,740 +19900104,600,138,100,700 +19900104,600,138,100,650 +19900104,600,138,100,620 +19900104,600,138,100,600 +19900104,600,138,100,550 +19900104,600,138,100,500 +19900104,600,138,100,450 +19900104,600,138,100,400 +19900104,600,138,100,375 +19900104,600,138,100,350 +19900104,600,138,100,300 +19900104,600,138,100,250 +19900104,600,138,100,245 +19900104,600,138,100,225 +19900104,600,138,100,200 +19900104,600,138,100,175 +19900104,600,138,100,150 +19900104,600,138,100,125 +19900104,600,138,100,100 +19900104,600,138,100,70 +19900104,600,138,100,50 +19900104,600,138,100,30 +19900104,600,138,100,20 +19900104,600,138,100,10 +19900104,600,138,100,9 +19900104,600,138,100,7 +19900104,600,138,100,5 +19900104,600,138,100,3 +19900104,600,138,100,2 +19900104,600,138,100,1 +19900104,600,138,210,40 +19900104,600,131,109,1 +19900104,600,131,109,2 +19900104,600,131,109,3 +19900104,600,131,109,4 +19900104,600,131,109,5 +19900104,600,131,109,6 +19900104,600,131,109,7 +19900104,600,131,109,8 +19900104,600,131,109,9 +19900104,600,131,109,10 +19900104,600,132,109,1 +19900104,600,132,109,2 +19900104,600,132,109,3 +19900104,600,132,109,4 +19900104,600,132,109,5 +19900104,600,132,109,6 +19900104,600,132,109,7 +19900104,600,132,109,8 +19900104,600,132,109,9 +19900104,600,132,109,10 +19900104,600,130,109,1 +19900104,600,130,109,2 +19900104,600,130,109,3 +19900104,600,130,109,4 +19900104,600,130,109,5 +19900104,600,130,109,6 +19900104,600,130,109,7 +19900104,600,130,109,8 +19900104,600,130,109,9 +19900104,600,130,109,10 +19900104,600,157,109,1 +19900104,600,157,109,2 +19900104,600,157,109,3 +19900104,600,157,109,4 +19900104,600,157,109,5 +19900104,600,157,109,6 +19900104,600,157,109,7 +19900104,600,157,109,8 +19900104,600,157,109,9 +19900104,600,157,109,10 +19900104,600,54,109,1 +19900104,600,54,109,2 +19900104,600,54,109,3 +19900104,600,54,109,4 +19900104,600,54,109,5 +19900104,600,54,109,6 +19900104,600,54,109,7 +19900104,600,54,109,8 +19900104,600,54,109,9 +19900104,600,54,109,10 +19900104,600,135,109,1 +19900104,600,135,109,2 +19900104,600,135,109,3 +19900104,600,135,109,4 +19900104,600,135,109,5 +19900104,600,135,109,6 +19900104,600,135,109,7 +19900104,600,135,109,8 +19900104,600,135,109,9 +19900104,600,135,109,10 +19900104,600,134,109,1 +19900104,600,152,109,1 +19900104,600,131,100,850 +19900104,600,132,100,850 +19900104,600,134,100,1000 +19900104,600,152,100,1000 +19900104,900,131,100,850 +19900104,900,132,100,850 +19900104,900,134,100,1000 +19900104,900,152,100,1000 +19900104,1200,131,100,1000 +19900104,1200,131,100,975 +19900104,1200,131,100,950 +19900104,1200,131,100,925 +19900104,1200,131,100,900 +19900104,1200,131,100,875 +19900104,1200,131,100,825 +19900104,1200,131,100,800 +19900104,1200,131,100,775 +19900104,1200,131,100,750 +19900104,1200,131,100,740 +19900104,1200,131,100,700 +19900104,1200,131,100,650 +19900104,1200,131,100,620 +19900104,1200,131,100,600 +19900104,1200,131,100,550 +19900104,1200,131,100,500 +19900104,1200,131,100,450 +19900104,1200,131,100,400 +19900104,1200,131,100,375 +19900104,1200,131,100,350 +19900104,1200,131,100,300 +19900104,1200,131,100,250 +19900104,1200,131,100,245 +19900104,1200,131,100,225 +19900104,1200,131,100,200 +19900104,1200,131,100,175 +19900104,1200,131,100,150 +19900104,1200,131,100,125 +19900104,1200,131,100,100 +19900104,1200,131,100,70 +19900104,1200,131,100,50 +19900104,1200,131,100,30 +19900104,1200,131,100,20 +19900104,1200,131,100,10 +19900104,1200,131,100,9 +19900104,1200,131,100,7 +19900104,1200,131,100,5 +19900104,1200,131,100,3 +19900104,1200,131,100,2 +19900104,1200,131,100,1 +19900104,1200,131,210,40 +19900104,1200,132,100,1000 +19900104,1200,132,100,975 +19900104,1200,132,100,950 +19900104,1200,132,100,925 +19900104,1200,132,100,900 +19900104,1200,132,100,875 +19900104,1200,132,100,825 +19900104,1200,132,100,800 +19900104,1200,132,100,775 +19900104,1200,132,100,750 +19900104,1200,132,100,740 +19900104,1200,132,100,700 +19900104,1200,132,100,650 +19900104,1200,132,100,620 +19900104,1200,132,100,600 +19900104,1200,132,100,550 +19900104,1200,132,100,500 +19900104,1200,132,100,450 +19900104,1200,132,100,400 +19900104,1200,132,100,375 +19900104,1200,132,100,350 +19900104,1200,132,100,300 +19900104,1200,132,100,250 +19900104,1200,132,100,245 +19900104,1200,132,100,225 +19900104,1200,132,100,200 +19900104,1200,132,100,175 +19900104,1200,132,100,150 +19900104,1200,132,100,125 +19900104,1200,132,100,100 +19900104,1200,132,100,70 +19900104,1200,132,100,50 +19900104,1200,132,100,30 +19900104,1200,132,100,20 +19900104,1200,132,100,10 +19900104,1200,132,100,9 +19900104,1200,132,100,7 +19900104,1200,132,100,5 +19900104,1200,132,100,3 +19900104,1200,132,100,2 +19900104,1200,132,100,1 +19900104,1200,132,210,40 +19900104,1200,130,100,1000 +19900104,1200,130,100,975 +19900104,1200,130,100,950 +19900104,1200,130,100,925 +19900104,1200,130,100,900 +19900104,1200,130,100,875 +19900104,1200,130,100,850 +19900104,1200,130,100,825 +19900104,1200,130,100,800 +19900104,1200,130,100,775 +19900104,1200,130,100,750 +19900104,1200,130,100,740 +19900104,1200,130,100,700 +19900104,1200,130,100,650 +19900104,1200,130,100,620 +19900104,1200,130,100,600 +19900104,1200,130,100,550 +19900104,1200,130,100,500 +19900104,1200,130,100,450 +19900104,1200,130,100,400 +19900104,1200,130,100,375 +19900104,1200,130,100,350 +19900104,1200,130,100,300 +19900104,1200,130,100,250 +19900104,1200,130,100,245 +19900104,1200,130,100,225 +19900104,1200,130,100,200 +19900104,1200,130,100,175 +19900104,1200,130,100,150 +19900104,1200,130,100,125 +19900104,1200,130,100,100 +19900104,1200,130,100,70 +19900104,1200,130,100,50 +19900104,1200,130,100,30 +19900104,1200,130,100,20 +19900104,1200,130,100,10 +19900104,1200,130,100,9 +19900104,1200,130,100,7 +19900104,1200,130,100,5 +19900104,1200,130,100,3 +19900104,1200,130,100,2 +19900104,1200,130,100,1 +19900104,1200,130,210,40 +19900104,1200,129,100,1000 +19900104,1200,129,100,975 +19900104,1200,129,100,950 +19900104,1200,129,100,925 +19900104,1200,129,100,900 +19900104,1200,129,100,875 +19900104,1200,129,100,850 +19900104,1200,129,100,825 +19900104,1200,129,100,800 +19900104,1200,129,100,775 +19900104,1200,129,100,750 +19900104,1200,129,100,740 +19900104,1200,129,100,700 +19900104,1200,129,100,650 +19900104,1200,129,100,620 +19900104,1200,129,100,600 +19900104,1200,129,100,550 +19900104,1200,129,100,500 +19900104,1200,129,100,450 +19900104,1200,129,100,400 +19900104,1200,129,100,375 +19900104,1200,129,100,350 +19900104,1200,129,100,300 +19900104,1200,129,100,250 +19900104,1200,129,100,245 +19900104,1200,129,100,225 +19900104,1200,129,100,200 +19900104,1200,129,100,175 +19900104,1200,129,100,150 +19900104,1200,129,100,125 +19900104,1200,129,100,100 +19900104,1200,129,100,70 +19900104,1200,129,100,50 +19900104,1200,129,100,30 +19900104,1200,129,100,20 +19900104,1200,129,100,10 +19900104,1200,129,100,9 +19900104,1200,129,100,7 +19900104,1200,129,100,5 +19900104,1200,129,100,3 +19900104,1200,129,100,2 +19900104,1200,129,100,1 +19900104,1200,129,210,40 +19900104,1200,157,100,1000 +19900104,1200,157,100,975 +19900104,1200,157,100,950 +19900104,1200,157,100,925 +19900104,1200,157,100,900 +19900104,1200,157,100,875 +19900104,1200,157,100,850 +19900104,1200,157,100,825 +19900104,1200,157,100,800 +19900104,1200,157,100,775 +19900104,1200,157,100,750 +19900104,1200,157,100,740 +19900104,1200,157,100,700 +19900104,1200,157,100,650 +19900104,1200,157,100,620 +19900104,1200,157,100,600 +19900104,1200,157,100,550 +19900104,1200,157,100,500 +19900104,1200,157,100,450 +19900104,1200,157,100,400 +19900104,1200,157,100,375 +19900104,1200,157,100,350 +19900104,1200,157,100,300 +19900104,1200,157,100,250 +19900104,1200,157,100,245 +19900104,1200,157,100,225 +19900104,1200,157,100,200 +19900104,1200,157,100,175 +19900104,1200,157,100,150 +19900104,1200,157,100,125 +19900104,1200,157,100,100 +19900104,1200,157,100,70 +19900104,1200,157,100,50 +19900104,1200,157,100,30 +19900104,1200,157,100,20 +19900104,1200,157,100,10 +19900104,1200,157,100,9 +19900104,1200,157,100,7 +19900104,1200,157,100,5 +19900104,1200,157,100,3 +19900104,1200,157,100,2 +19900104,1200,157,100,1 +19900104,1200,157,210,40 +19900104,1200,135,100,1000 +19900104,1200,135,100,975 +19900104,1200,135,100,950 +19900104,1200,135,100,925 +19900104,1200,135,100,900 +19900104,1200,135,100,875 +19900104,1200,135,100,850 +19900104,1200,135,100,825 +19900104,1200,135,100,800 +19900104,1200,135,100,775 +19900104,1200,135,100,750 +19900104,1200,135,100,740 +19900104,1200,135,100,700 +19900104,1200,135,100,650 +19900104,1200,135,100,620 +19900104,1200,135,100,600 +19900104,1200,135,100,550 +19900104,1200,135,100,500 +19900104,1200,135,100,450 +19900104,1200,135,100,400 +19900104,1200,135,100,375 +19900104,1200,135,100,350 +19900104,1200,135,100,300 +19900104,1200,135,100,250 +19900104,1200,135,100,245 +19900104,1200,135,100,225 +19900104,1200,135,100,200 +19900104,1200,135,100,175 +19900104,1200,135,100,150 +19900104,1200,135,100,125 +19900104,1200,135,100,100 +19900104,1200,135,100,70 +19900104,1200,135,100,50 +19900104,1200,135,100,30 +19900104,1200,135,100,20 +19900104,1200,135,100,10 +19900104,1200,135,100,9 +19900104,1200,135,100,7 +19900104,1200,135,100,5 +19900104,1200,135,100,3 +19900104,1200,135,100,2 +19900104,1200,135,100,1 +19900104,1200,135,210,40 +19900104,1200,138,100,1000 +19900104,1200,138,100,975 +19900104,1200,138,100,950 +19900104,1200,138,100,925 +19900104,1200,138,100,900 +19900104,1200,138,100,875 +19900104,1200,138,100,850 +19900104,1200,138,100,825 +19900104,1200,138,100,800 +19900104,1200,138,100,775 +19900104,1200,138,100,750 +19900104,1200,138,100,740 +19900104,1200,138,100,700 +19900104,1200,138,100,650 +19900104,1200,138,100,620 +19900104,1200,138,100,600 +19900104,1200,138,100,550 +19900104,1200,138,100,500 +19900104,1200,138,100,450 +19900104,1200,138,100,400 +19900104,1200,138,100,375 +19900104,1200,138,100,350 +19900104,1200,138,100,300 +19900104,1200,138,100,250 +19900104,1200,138,100,245 +19900104,1200,138,100,225 +19900104,1200,138,100,200 +19900104,1200,138,100,175 +19900104,1200,138,100,150 +19900104,1200,138,100,125 +19900104,1200,138,100,100 +19900104,1200,138,100,70 +19900104,1200,138,100,50 +19900104,1200,138,100,30 +19900104,1200,138,100,20 +19900104,1200,138,100,10 +19900104,1200,138,100,9 +19900104,1200,138,100,7 +19900104,1200,138,100,5 +19900104,1200,138,100,3 +19900104,1200,138,100,2 +19900104,1200,138,100,1 +19900104,1200,138,210,40 +19900104,1200,131,109,1 +19900104,1200,131,109,2 +19900104,1200,131,109,3 +19900104,1200,131,109,4 +19900104,1200,131,109,5 +19900104,1200,131,109,6 +19900104,1200,131,109,7 +19900104,1200,131,109,8 +19900104,1200,131,109,9 +19900104,1200,131,109,10 +19900104,1200,132,109,1 +19900104,1200,132,109,2 +19900104,1200,132,109,3 +19900104,1200,132,109,4 +19900104,1200,132,109,5 +19900104,1200,132,109,6 +19900104,1200,132,109,7 +19900104,1200,132,109,8 +19900104,1200,132,109,9 +19900104,1200,132,109,10 +19900104,1200,130,109,1 +19900104,1200,130,109,2 +19900104,1200,130,109,3 +19900104,1200,130,109,4 +19900104,1200,130,109,5 +19900104,1200,130,109,6 +19900104,1200,130,109,7 +19900104,1200,130,109,8 +19900104,1200,130,109,9 +19900104,1200,130,109,10 +19900104,1200,157,109,1 +19900104,1200,157,109,2 +19900104,1200,157,109,3 +19900104,1200,157,109,4 +19900104,1200,157,109,5 +19900104,1200,157,109,6 +19900104,1200,157,109,7 +19900104,1200,157,109,8 +19900104,1200,157,109,9 +19900104,1200,157,109,10 +19900104,1200,54,109,1 +19900104,1200,54,109,2 +19900104,1200,54,109,3 +19900104,1200,54,109,4 +19900104,1200,54,109,5 +19900104,1200,54,109,6 +19900104,1200,54,109,7 +19900104,1200,54,109,8 +19900104,1200,54,109,9 +19900104,1200,54,109,10 +19900104,1200,135,109,1 +19900104,1200,135,109,2 +19900104,1200,135,109,3 +19900104,1200,135,109,4 +19900104,1200,135,109,5 +19900104,1200,135,109,6 +19900104,1200,135,109,7 +19900104,1200,135,109,8 +19900104,1200,135,109,9 +19900104,1200,135,109,10 +19900104,1200,134,109,1 +19900104,1200,152,109,1 +19900104,1200,131,100,850 +19900104,1200,132,100,850 +19900104,1200,134,100,1000 +19900104,1200,152,100,1000 +19900104,1500,131,100,850 +19900104,1500,132,100,850 +19900104,1500,134,100,1000 +19900104,1500,152,100,1000 +19900104,1800,131,100,1000 +19900104,1800,131,100,975 +19900104,1800,131,100,950 +19900104,1800,131,100,925 +19900104,1800,131,100,900 +19900104,1800,131,100,875 +19900104,1800,131,100,825 +19900104,1800,131,100,800 +19900104,1800,131,100,775 +19900104,1800,131,100,750 +19900104,1800,131,100,740 +19900104,1800,131,100,700 +19900104,1800,131,100,650 +19900104,1800,131,100,620 +19900104,1800,131,100,600 +19900104,1800,131,100,550 +19900104,1800,131,100,500 +19900104,1800,131,100,450 +19900104,1800,131,100,400 +19900104,1800,131,100,375 +19900104,1800,131,100,350 +19900104,1800,131,100,300 +19900104,1800,131,100,250 +19900104,1800,131,100,245 +19900104,1800,131,100,225 +19900104,1800,131,100,200 +19900104,1800,131,100,175 +19900104,1800,131,100,150 +19900104,1800,131,100,125 +19900104,1800,131,100,100 +19900104,1800,131,100,70 +19900104,1800,131,100,50 +19900104,1800,131,100,30 +19900104,1800,131,100,20 +19900104,1800,131,100,10 +19900104,1800,131,100,9 +19900104,1800,131,100,7 +19900104,1800,131,100,5 +19900104,1800,131,100,3 +19900104,1800,131,100,2 +19900104,1800,131,100,1 +19900104,1800,131,210,40 +19900104,1800,132,100,1000 +19900104,1800,132,100,975 +19900104,1800,132,100,950 +19900104,1800,132,100,925 +19900104,1800,132,100,900 +19900104,1800,132,100,875 +19900104,1800,132,100,825 +19900104,1800,132,100,800 +19900104,1800,132,100,775 +19900104,1800,132,100,750 +19900104,1800,132,100,740 +19900104,1800,132,100,700 +19900104,1800,132,100,650 +19900104,1800,132,100,620 +19900104,1800,132,100,600 +19900104,1800,132,100,550 +19900104,1800,132,100,500 +19900104,1800,132,100,450 +19900104,1800,132,100,400 +19900104,1800,132,100,375 +19900104,1800,132,100,350 +19900104,1800,132,100,300 +19900104,1800,132,100,250 +19900104,1800,132,100,245 +19900104,1800,132,100,225 +19900104,1800,132,100,200 +19900104,1800,132,100,175 +19900104,1800,132,100,150 +19900104,1800,132,100,125 +19900104,1800,132,100,100 +19900104,1800,132,100,70 +19900104,1800,132,100,50 +19900104,1800,132,100,30 +19900104,1800,132,100,20 +19900104,1800,132,100,10 +19900104,1800,132,100,9 +19900104,1800,132,100,7 +19900104,1800,132,100,5 +19900104,1800,132,100,3 +19900104,1800,132,100,2 +19900104,1800,132,100,1 +19900104,1800,132,210,40 +19900104,1800,130,100,1000 +19900104,1800,130,100,975 +19900104,1800,130,100,950 +19900104,1800,130,100,925 +19900104,1800,130,100,900 +19900104,1800,130,100,875 +19900104,1800,130,100,850 +19900104,1800,130,100,825 +19900104,1800,130,100,800 +19900104,1800,130,100,775 +19900104,1800,130,100,750 +19900104,1800,130,100,740 +19900104,1800,130,100,700 +19900104,1800,130,100,650 +19900104,1800,130,100,620 +19900104,1800,130,100,600 +19900104,1800,130,100,550 +19900104,1800,130,100,500 +19900104,1800,130,100,450 +19900104,1800,130,100,400 +19900104,1800,130,100,375 +19900104,1800,130,100,350 +19900104,1800,130,100,300 +19900104,1800,130,100,250 +19900104,1800,130,100,245 +19900104,1800,130,100,225 +19900104,1800,130,100,200 +19900104,1800,130,100,175 +19900104,1800,130,100,150 +19900104,1800,130,100,125 +19900104,1800,130,100,100 +19900104,1800,130,100,70 +19900104,1800,130,100,50 +19900104,1800,130,100,30 +19900104,1800,130,100,20 +19900104,1800,130,100,10 +19900104,1800,130,100,9 +19900104,1800,130,100,7 +19900104,1800,130,100,5 +19900104,1800,130,100,3 +19900104,1800,130,100,2 +19900104,1800,130,100,1 +19900104,1800,130,210,40 +19900104,1800,129,100,1000 +19900104,1800,129,100,975 +19900104,1800,129,100,950 +19900104,1800,129,100,925 +19900104,1800,129,100,900 +19900104,1800,129,100,875 +19900104,1800,129,100,850 +19900104,1800,129,100,825 +19900104,1800,129,100,800 +19900104,1800,129,100,775 +19900104,1800,129,100,750 +19900104,1800,129,100,740 +19900104,1800,129,100,700 +19900104,1800,129,100,650 +19900104,1800,129,100,620 +19900104,1800,129,100,600 +19900104,1800,129,100,550 +19900104,1800,129,100,500 +19900104,1800,129,100,450 +19900104,1800,129,100,400 +19900104,1800,129,100,375 +19900104,1800,129,100,350 +19900104,1800,129,100,300 +19900104,1800,129,100,250 +19900104,1800,129,100,245 +19900104,1800,129,100,225 +19900104,1800,129,100,200 +19900104,1800,129,100,175 +19900104,1800,129,100,150 +19900104,1800,129,100,125 +19900104,1800,129,100,100 +19900104,1800,129,100,70 +19900104,1800,129,100,50 +19900104,1800,129,100,30 +19900104,1800,129,100,20 +19900104,1800,129,100,10 +19900104,1800,129,100,9 +19900104,1800,129,100,7 +19900104,1800,129,100,5 +19900104,1800,129,100,3 +19900104,1800,129,100,2 +19900104,1800,129,100,1 +19900104,1800,129,210,40 +19900104,1800,157,100,1000 +19900104,1800,157,100,975 +19900104,1800,157,100,950 +19900104,1800,157,100,925 +19900104,1800,157,100,900 +19900104,1800,157,100,875 +19900104,1800,157,100,850 +19900104,1800,157,100,825 +19900104,1800,157,100,800 +19900104,1800,157,100,775 +19900104,1800,157,100,750 +19900104,1800,157,100,740 +19900104,1800,157,100,700 +19900104,1800,157,100,650 +19900104,1800,157,100,620 +19900104,1800,157,100,600 +19900104,1800,157,100,550 +19900104,1800,157,100,500 +19900104,1800,157,100,450 +19900104,1800,157,100,400 +19900104,1800,157,100,375 +19900104,1800,157,100,350 +19900104,1800,157,100,300 +19900104,1800,157,100,250 +19900104,1800,157,100,245 +19900104,1800,157,100,225 +19900104,1800,157,100,200 +19900104,1800,157,100,175 +19900104,1800,157,100,150 +19900104,1800,157,100,125 +19900104,1800,157,100,100 +19900104,1800,157,100,70 +19900104,1800,157,100,50 +19900104,1800,157,100,30 +19900104,1800,157,100,20 +19900104,1800,157,100,10 +19900104,1800,157,100,9 +19900104,1800,157,100,7 +19900104,1800,157,100,5 +19900104,1800,157,100,3 +19900104,1800,157,100,2 +19900104,1800,157,100,1 +19900104,1800,157,210,40 +19900104,1800,135,100,1000 +19900104,1800,135,100,975 +19900104,1800,135,100,950 +19900104,1800,135,100,925 +19900104,1800,135,100,900 +19900104,1800,135,100,875 +19900104,1800,135,100,850 +19900104,1800,135,100,825 +19900104,1800,135,100,800 +19900104,1800,135,100,775 +19900104,1800,135,100,750 +19900104,1800,135,100,740 +19900104,1800,135,100,700 +19900104,1800,135,100,650 +19900104,1800,135,100,620 +19900104,1800,135,100,600 +19900104,1800,135,100,550 +19900104,1800,135,100,500 +19900104,1800,135,100,450 +19900104,1800,135,100,400 +19900104,1800,135,100,375 +19900104,1800,135,100,350 +19900104,1800,135,100,300 +19900104,1800,135,100,250 +19900104,1800,135,100,245 +19900104,1800,135,100,225 +19900104,1800,135,100,200 +19900104,1800,135,100,175 +19900104,1800,135,100,150 +19900104,1800,135,100,125 +19900104,1800,135,100,100 +19900104,1800,135,100,70 +19900104,1800,135,100,50 +19900104,1800,135,100,30 +19900104,1800,135,100,20 +19900104,1800,135,100,10 +19900104,1800,135,100,9 +19900104,1800,135,100,7 +19900104,1800,135,100,5 +19900104,1800,135,100,3 +19900104,1800,135,100,2 +19900104,1800,135,100,1 +19900104,1800,135,210,40 +19900104,1800,138,100,1000 +19900104,1800,138,100,975 +19900104,1800,138,100,950 +19900104,1800,138,100,925 +19900104,1800,138,100,900 +19900104,1800,138,100,875 +19900104,1800,138,100,850 +19900104,1800,138,100,825 +19900104,1800,138,100,800 +19900104,1800,138,100,775 +19900104,1800,138,100,750 +19900104,1800,138,100,740 +19900104,1800,138,100,700 +19900104,1800,138,100,650 +19900104,1800,138,100,620 +19900104,1800,138,100,600 +19900104,1800,138,100,550 +19900104,1800,138,100,500 +19900104,1800,138,100,450 +19900104,1800,138,100,400 +19900104,1800,138,100,375 +19900104,1800,138,100,350 +19900104,1800,138,100,300 +19900104,1800,138,100,250 +19900104,1800,138,100,245 +19900104,1800,138,100,225 +19900104,1800,138,100,200 +19900104,1800,138,100,175 +19900104,1800,138,100,150 +19900104,1800,138,100,125 +19900104,1800,138,100,100 +19900104,1800,138,100,70 +19900104,1800,138,100,50 +19900104,1800,138,100,30 +19900104,1800,138,100,20 +19900104,1800,138,100,10 +19900104,1800,138,100,9 +19900104,1800,138,100,7 +19900104,1800,138,100,5 +19900104,1800,138,100,3 +19900104,1800,138,100,2 +19900104,1800,138,100,1 +19900104,1800,138,210,40 +19900104,1800,131,109,1 +19900104,1800,131,109,2 +19900104,1800,131,109,3 +19900104,1800,131,109,4 +19900104,1800,131,109,5 +19900104,1800,131,109,6 +19900104,1800,131,109,7 +19900104,1800,131,109,8 +19900104,1800,131,109,9 +19900104,1800,131,109,10 +19900104,1800,132,109,1 +19900104,1800,132,109,2 +19900104,1800,132,109,3 +19900104,1800,132,109,4 +19900104,1800,132,109,5 +19900104,1800,132,109,6 +19900104,1800,132,109,7 +19900104,1800,132,109,8 +19900104,1800,132,109,9 +19900104,1800,132,109,10 +19900104,1800,130,109,1 +19900104,1800,130,109,2 +19900104,1800,130,109,3 +19900104,1800,130,109,4 +19900104,1800,130,109,5 +19900104,1800,130,109,6 +19900104,1800,130,109,7 +19900104,1800,130,109,8 +19900104,1800,130,109,9 +19900104,1800,130,109,10 +19900104,1800,157,109,1 +19900104,1800,157,109,2 +19900104,1800,157,109,3 +19900104,1800,157,109,4 +19900104,1800,157,109,5 +19900104,1800,157,109,6 +19900104,1800,157,109,7 +19900104,1800,157,109,8 +19900104,1800,157,109,9 +19900104,1800,157,109,10 +19900104,1800,54,109,1 +19900104,1800,54,109,2 +19900104,1800,54,109,3 +19900104,1800,54,109,4 +19900104,1800,54,109,5 +19900104,1800,54,109,6 +19900104,1800,54,109,7 +19900104,1800,54,109,8 +19900104,1800,54,109,9 +19900104,1800,54,109,10 +19900104,1800,135,109,1 +19900104,1800,135,109,2 +19900104,1800,135,109,3 +19900104,1800,135,109,4 +19900104,1800,135,109,5 +19900104,1800,135,109,6 +19900104,1800,135,109,7 +19900104,1800,135,109,8 +19900104,1800,135,109,9 +19900104,1800,135,109,10 +19900104,1800,134,109,1 +19900104,1800,152,109,1 +19900104,1800,131,100,850 +19900104,1800,132,100,850 +19900104,1800,134,100,1000 +19900104,1800,152,100,1000 +19900104,2100,131,100,850 +19900104,2100,132,100,850 +19900104,2100,134,100,1000 +19900104,2100,152,100,1000 +19900105,0,131,100,1000 +19900105,0,131,100,975 +19900105,0,131,100,950 +19900105,0,131,100,925 +19900105,0,131,100,900 +19900105,0,131,100,875 +19900105,0,131,100,825 +19900105,0,131,100,800 +19900105,0,131,100,775 +19900105,0,131,100,750 +19900105,0,131,100,740 +19900105,0,131,100,700 +19900105,0,131,100,650 +19900105,0,131,100,620 +19900105,0,131,100,600 +19900105,0,131,100,550 +19900105,0,131,100,500 +19900105,0,131,100,450 +19900105,0,131,100,400 +19900105,0,131,100,375 +19900105,0,131,100,350 +19900105,0,131,100,300 +19900105,0,131,100,250 +19900105,0,131,100,245 +19900105,0,131,100,225 +19900105,0,131,100,200 +19900105,0,131,100,175 +19900105,0,131,100,150 +19900105,0,131,100,125 +19900105,0,131,100,100 +19900105,0,131,100,70 +19900105,0,131,100,50 +19900105,0,131,100,30 +19900105,0,131,100,20 +19900105,0,131,100,10 +19900105,0,131,100,9 +19900105,0,131,100,7 +19900105,0,131,100,5 +19900105,0,131,100,3 +19900105,0,131,100,2 +19900105,0,131,100,1 +19900105,0,131,210,40 +19900105,0,132,100,1000 +19900105,0,132,100,975 +19900105,0,132,100,950 +19900105,0,132,100,925 +19900105,0,132,100,900 +19900105,0,132,100,875 +19900105,0,132,100,825 +19900105,0,132,100,800 +19900105,0,132,100,775 +19900105,0,132,100,750 +19900105,0,132,100,740 +19900105,0,132,100,700 +19900105,0,132,100,650 +19900105,0,132,100,620 +19900105,0,132,100,600 +19900105,0,132,100,550 +19900105,0,132,100,500 +19900105,0,132,100,450 +19900105,0,132,100,400 +19900105,0,132,100,375 +19900105,0,132,100,350 +19900105,0,132,100,300 +19900105,0,132,100,250 +19900105,0,132,100,245 +19900105,0,132,100,225 +19900105,0,132,100,200 +19900105,0,132,100,175 +19900105,0,132,100,150 +19900105,0,132,100,125 +19900105,0,132,100,100 +19900105,0,132,100,70 +19900105,0,132,100,50 +19900105,0,132,100,30 +19900105,0,132,100,20 +19900105,0,132,100,10 +19900105,0,132,100,9 +19900105,0,132,100,7 +19900105,0,132,100,5 +19900105,0,132,100,3 +19900105,0,132,100,2 +19900105,0,132,100,1 +19900105,0,132,210,40 +19900105,0,130,100,1000 +19900105,0,130,100,975 +19900105,0,130,100,950 +19900105,0,130,100,925 +19900105,0,130,100,900 +19900105,0,130,100,875 +19900105,0,130,100,850 +19900105,0,130,100,825 +19900105,0,130,100,800 +19900105,0,130,100,775 +19900105,0,130,100,750 +19900105,0,130,100,740 +19900105,0,130,100,700 +19900105,0,130,100,650 +19900105,0,130,100,620 +19900105,0,130,100,600 +19900105,0,130,100,550 +19900105,0,130,100,500 +19900105,0,130,100,450 +19900105,0,130,100,400 +19900105,0,130,100,375 +19900105,0,130,100,350 +19900105,0,130,100,300 +19900105,0,130,100,250 +19900105,0,130,100,245 +19900105,0,130,100,225 +19900105,0,130,100,200 +19900105,0,130,100,175 +19900105,0,130,100,150 +19900105,0,130,100,125 +19900105,0,130,100,100 +19900105,0,130,100,70 +19900105,0,130,100,50 +19900105,0,130,100,30 +19900105,0,130,100,20 +19900105,0,130,100,10 +19900105,0,130,100,9 +19900105,0,130,100,7 +19900105,0,130,100,5 +19900105,0,130,100,3 +19900105,0,130,100,2 +19900105,0,130,100,1 +19900105,0,130,210,40 +19900105,0,129,100,1000 +19900105,0,129,100,975 +19900105,0,129,100,950 +19900105,0,129,100,925 +19900105,0,129,100,900 +19900105,0,129,100,875 +19900105,0,129,100,850 +19900105,0,129,100,825 +19900105,0,129,100,800 +19900105,0,129,100,775 +19900105,0,129,100,750 +19900105,0,129,100,740 +19900105,0,129,100,700 +19900105,0,129,100,650 +19900105,0,129,100,620 +19900105,0,129,100,600 +19900105,0,129,100,550 +19900105,0,129,100,500 +19900105,0,129,100,450 +19900105,0,129,100,400 +19900105,0,129,100,375 +19900105,0,129,100,350 +19900105,0,129,100,300 +19900105,0,129,100,250 +19900105,0,129,100,245 +19900105,0,129,100,225 +19900105,0,129,100,200 +19900105,0,129,100,175 +19900105,0,129,100,150 +19900105,0,129,100,125 +19900105,0,129,100,100 +19900105,0,129,100,70 +19900105,0,129,100,50 +19900105,0,129,100,30 +19900105,0,129,100,20 +19900105,0,129,100,10 +19900105,0,129,100,9 +19900105,0,129,100,7 +19900105,0,129,100,5 +19900105,0,129,100,3 +19900105,0,129,100,2 +19900105,0,129,100,1 +19900105,0,129,210,40 +19900105,0,157,100,1000 +19900105,0,157,100,975 +19900105,0,157,100,950 +19900105,0,157,100,925 +19900105,0,157,100,900 +19900105,0,157,100,875 +19900105,0,157,100,850 +19900105,0,157,100,825 +19900105,0,157,100,800 +19900105,0,157,100,775 +19900105,0,157,100,750 +19900105,0,157,100,740 +19900105,0,157,100,700 +19900105,0,157,100,650 +19900105,0,157,100,620 +19900105,0,157,100,600 +19900105,0,157,100,550 +19900105,0,157,100,500 +19900105,0,157,100,450 +19900105,0,157,100,400 +19900105,0,157,100,375 +19900105,0,157,100,350 +19900105,0,157,100,300 +19900105,0,157,100,250 +19900105,0,157,100,245 +19900105,0,157,100,225 +19900105,0,157,100,200 +19900105,0,157,100,175 +19900105,0,157,100,150 +19900105,0,157,100,125 +19900105,0,157,100,100 +19900105,0,157,100,70 +19900105,0,157,100,50 +19900105,0,157,100,30 +19900105,0,157,100,20 +19900105,0,157,100,10 +19900105,0,157,100,9 +19900105,0,157,100,7 +19900105,0,157,100,5 +19900105,0,157,100,3 +19900105,0,157,100,2 +19900105,0,157,100,1 +19900105,0,157,210,40 +19900105,0,135,100,1000 +19900105,0,135,100,975 +19900105,0,135,100,950 +19900105,0,135,100,925 +19900105,0,135,100,900 +19900105,0,135,100,875 +19900105,0,135,100,850 +19900105,0,135,100,825 +19900105,0,135,100,800 +19900105,0,135,100,775 +19900105,0,135,100,750 +19900105,0,135,100,740 +19900105,0,135,100,700 +19900105,0,135,100,650 +19900105,0,135,100,620 +19900105,0,135,100,600 +19900105,0,135,100,550 +19900105,0,135,100,500 +19900105,0,135,100,450 +19900105,0,135,100,400 +19900105,0,135,100,375 +19900105,0,135,100,350 +19900105,0,135,100,300 +19900105,0,135,100,250 +19900105,0,135,100,245 +19900105,0,135,100,225 +19900105,0,135,100,200 +19900105,0,135,100,175 +19900105,0,135,100,150 +19900105,0,135,100,125 +19900105,0,135,100,100 +19900105,0,135,100,70 +19900105,0,135,100,50 +19900105,0,135,100,30 +19900105,0,135,100,20 +19900105,0,135,100,10 +19900105,0,135,100,9 +19900105,0,135,100,7 +19900105,0,135,100,5 +19900105,0,135,100,3 +19900105,0,135,100,2 +19900105,0,135,100,1 +19900105,0,135,210,40 +19900105,0,138,100,1000 +19900105,0,138,100,975 +19900105,0,138,100,950 +19900105,0,138,100,925 +19900105,0,138,100,900 +19900105,0,138,100,875 +19900105,0,138,100,850 +19900105,0,138,100,825 +19900105,0,138,100,800 +19900105,0,138,100,775 +19900105,0,138,100,750 +19900105,0,138,100,740 +19900105,0,138,100,700 +19900105,0,138,100,650 +19900105,0,138,100,620 +19900105,0,138,100,600 +19900105,0,138,100,550 +19900105,0,138,100,500 +19900105,0,138,100,450 +19900105,0,138,100,400 +19900105,0,138,100,375 +19900105,0,138,100,350 +19900105,0,138,100,300 +19900105,0,138,100,250 +19900105,0,138,100,245 +19900105,0,138,100,225 +19900105,0,138,100,200 +19900105,0,138,100,175 +19900105,0,138,100,150 +19900105,0,138,100,125 +19900105,0,138,100,100 +19900105,0,138,100,70 +19900105,0,138,100,50 +19900105,0,138,100,30 +19900105,0,138,100,20 +19900105,0,138,100,10 +19900105,0,138,100,9 +19900105,0,138,100,7 +19900105,0,138,100,5 +19900105,0,138,100,3 +19900105,0,138,100,2 +19900105,0,138,100,1 +19900105,0,138,210,40 +19900105,0,131,109,1 +19900105,0,131,109,2 +19900105,0,131,109,3 +19900105,0,131,109,4 +19900105,0,131,109,5 +19900105,0,131,109,6 +19900105,0,131,109,7 +19900105,0,131,109,8 +19900105,0,131,109,9 +19900105,0,131,109,10 +19900105,0,132,109,1 +19900105,0,132,109,2 +19900105,0,132,109,3 +19900105,0,132,109,4 +19900105,0,132,109,5 +19900105,0,132,109,6 +19900105,0,132,109,7 +19900105,0,132,109,8 +19900105,0,132,109,9 +19900105,0,132,109,10 +19900105,0,130,109,1 +19900105,0,130,109,2 +19900105,0,130,109,3 +19900105,0,130,109,4 +19900105,0,130,109,5 +19900105,0,130,109,6 +19900105,0,130,109,7 +19900105,0,130,109,8 +19900105,0,130,109,9 +19900105,0,130,109,10 +19900105,0,157,109,1 +19900105,0,157,109,2 +19900105,0,157,109,3 +19900105,0,157,109,4 +19900105,0,157,109,5 +19900105,0,157,109,6 +19900105,0,157,109,7 +19900105,0,157,109,8 +19900105,0,157,109,9 +19900105,0,157,109,10 +19900105,0,54,109,1 +19900105,0,54,109,2 +19900105,0,54,109,3 +19900105,0,54,109,4 +19900105,0,54,109,5 +19900105,0,54,109,6 +19900105,0,54,109,7 +19900105,0,54,109,8 +19900105,0,54,109,9 +19900105,0,54,109,10 +19900105,0,135,109,1 +19900105,0,135,109,2 +19900105,0,135,109,3 +19900105,0,135,109,4 +19900105,0,135,109,5 +19900105,0,135,109,6 +19900105,0,135,109,7 +19900105,0,135,109,8 +19900105,0,135,109,9 +19900105,0,135,109,10 +19900105,0,134,109,1 +19900105,0,152,109,1 +19900105,0,131,100,850 +19900105,0,132,100,850 +19900105,0,134,100,1000 +19900105,0,152,100,1000 +19900105,300,131,100,850 +19900105,300,132,100,850 +19900105,300,134,100,1000 +19900105,300,152,100,1000 +19900105,600,131,100,1000 +19900105,600,131,100,975 +19900105,600,131,100,950 +19900105,600,131,100,925 +19900105,600,131,100,900 +19900105,600,131,100,875 +19900105,600,131,100,825 +19900105,600,131,100,800 +19900105,600,131,100,775 +19900105,600,131,100,750 +19900105,600,131,100,740 +19900105,600,131,100,700 +19900105,600,131,100,650 +19900105,600,131,100,620 +19900105,600,131,100,600 +19900105,600,131,100,550 +19900105,600,131,100,500 +19900105,600,131,100,450 +19900105,600,131,100,400 +19900105,600,131,100,375 +19900105,600,131,100,350 +19900105,600,131,100,300 +19900105,600,131,100,250 +19900105,600,131,100,245 +19900105,600,131,100,225 +19900105,600,131,100,200 +19900105,600,131,100,175 +19900105,600,131,100,150 +19900105,600,131,100,125 +19900105,600,131,100,100 +19900105,600,131,100,70 +19900105,600,131,100,50 +19900105,600,131,100,30 +19900105,600,131,100,20 +19900105,600,131,100,10 +19900105,600,131,100,9 +19900105,600,131,100,7 +19900105,600,131,100,5 +19900105,600,131,100,3 +19900105,600,131,100,2 +19900105,600,131,100,1 +19900105,600,131,210,40 +19900105,600,132,100,1000 +19900105,600,132,100,975 +19900105,600,132,100,950 +19900105,600,132,100,925 +19900105,600,132,100,900 +19900105,600,132,100,875 +19900105,600,132,100,825 +19900105,600,132,100,800 +19900105,600,132,100,775 +19900105,600,132,100,750 +19900105,600,132,100,740 +19900105,600,132,100,700 +19900105,600,132,100,650 +19900105,600,132,100,620 +19900105,600,132,100,600 +19900105,600,132,100,550 +19900105,600,132,100,500 +19900105,600,132,100,450 +19900105,600,132,100,400 +19900105,600,132,100,375 +19900105,600,132,100,350 +19900105,600,132,100,300 +19900105,600,132,100,250 +19900105,600,132,100,245 +19900105,600,132,100,225 +19900105,600,132,100,200 +19900105,600,132,100,175 +19900105,600,132,100,150 +19900105,600,132,100,125 +19900105,600,132,100,100 +19900105,600,132,100,70 +19900105,600,132,100,50 +19900105,600,132,100,30 +19900105,600,132,100,20 +19900105,600,132,100,10 +19900105,600,132,100,9 +19900105,600,132,100,7 +19900105,600,132,100,5 +19900105,600,132,100,3 +19900105,600,132,100,2 +19900105,600,132,100,1 +19900105,600,132,210,40 +19900105,600,130,100,1000 +19900105,600,130,100,975 +19900105,600,130,100,950 +19900105,600,130,100,925 +19900105,600,130,100,900 +19900105,600,130,100,875 +19900105,600,130,100,850 +19900105,600,130,100,825 +19900105,600,130,100,800 +19900105,600,130,100,775 +19900105,600,130,100,750 +19900105,600,130,100,740 +19900105,600,130,100,700 +19900105,600,130,100,650 +19900105,600,130,100,620 +19900105,600,130,100,600 +19900105,600,130,100,550 +19900105,600,130,100,500 +19900105,600,130,100,450 +19900105,600,130,100,400 +19900105,600,130,100,375 +19900105,600,130,100,350 +19900105,600,130,100,300 +19900105,600,130,100,250 +19900105,600,130,100,245 +19900105,600,130,100,225 +19900105,600,130,100,200 +19900105,600,130,100,175 +19900105,600,130,100,150 +19900105,600,130,100,125 +19900105,600,130,100,100 +19900105,600,130,100,70 +19900105,600,130,100,50 +19900105,600,130,100,30 +19900105,600,130,100,20 +19900105,600,130,100,10 +19900105,600,130,100,9 +19900105,600,130,100,7 +19900105,600,130,100,5 +19900105,600,130,100,3 +19900105,600,130,100,2 +19900105,600,130,100,1 +19900105,600,130,210,40 +19900105,600,129,100,1000 +19900105,600,129,100,975 +19900105,600,129,100,950 +19900105,600,129,100,925 +19900105,600,129,100,900 +19900105,600,129,100,875 +19900105,600,129,100,850 +19900105,600,129,100,825 +19900105,600,129,100,800 +19900105,600,129,100,775 +19900105,600,129,100,750 +19900105,600,129,100,740 +19900105,600,129,100,700 +19900105,600,129,100,650 +19900105,600,129,100,620 +19900105,600,129,100,600 +19900105,600,129,100,550 +19900105,600,129,100,500 +19900105,600,129,100,450 +19900105,600,129,100,400 +19900105,600,129,100,375 +19900105,600,129,100,350 +19900105,600,129,100,300 +19900105,600,129,100,250 +19900105,600,129,100,245 +19900105,600,129,100,225 +19900105,600,129,100,200 +19900105,600,129,100,175 +19900105,600,129,100,150 +19900105,600,129,100,125 +19900105,600,129,100,100 +19900105,600,129,100,70 +19900105,600,129,100,50 +19900105,600,129,100,30 +19900105,600,129,100,20 +19900105,600,129,100,10 +19900105,600,129,100,9 +19900105,600,129,100,7 +19900105,600,129,100,5 +19900105,600,129,100,3 +19900105,600,129,100,2 +19900105,600,129,100,1 +19900105,600,129,210,40 +19900105,600,157,100,1000 +19900105,600,157,100,975 +19900105,600,157,100,950 +19900105,600,157,100,925 +19900105,600,157,100,900 +19900105,600,157,100,875 +19900105,600,157,100,850 +19900105,600,157,100,825 +19900105,600,157,100,800 +19900105,600,157,100,775 +19900105,600,157,100,750 +19900105,600,157,100,740 +19900105,600,157,100,700 +19900105,600,157,100,650 +19900105,600,157,100,620 +19900105,600,157,100,600 +19900105,600,157,100,550 +19900105,600,157,100,500 +19900105,600,157,100,450 +19900105,600,157,100,400 +19900105,600,157,100,375 +19900105,600,157,100,350 +19900105,600,157,100,300 +19900105,600,157,100,250 +19900105,600,157,100,245 +19900105,600,157,100,225 +19900105,600,157,100,200 +19900105,600,157,100,175 +19900105,600,157,100,150 +19900105,600,157,100,125 +19900105,600,157,100,100 +19900105,600,157,100,70 +19900105,600,157,100,50 +19900105,600,157,100,30 +19900105,600,157,100,20 +19900105,600,157,100,10 +19900105,600,157,100,9 +19900105,600,157,100,7 +19900105,600,157,100,5 +19900105,600,157,100,3 +19900105,600,157,100,2 +19900105,600,157,100,1 +19900105,600,157,210,40 +19900105,600,135,100,1000 +19900105,600,135,100,975 +19900105,600,135,100,950 +19900105,600,135,100,925 +19900105,600,135,100,900 +19900105,600,135,100,875 +19900105,600,135,100,850 +19900105,600,135,100,825 +19900105,600,135,100,800 +19900105,600,135,100,775 +19900105,600,135,100,750 +19900105,600,135,100,740 +19900105,600,135,100,700 +19900105,600,135,100,650 +19900105,600,135,100,620 +19900105,600,135,100,600 +19900105,600,135,100,550 +19900105,600,135,100,500 +19900105,600,135,100,450 +19900105,600,135,100,400 +19900105,600,135,100,375 +19900105,600,135,100,350 +19900105,600,135,100,300 +19900105,600,135,100,250 +19900105,600,135,100,245 +19900105,600,135,100,225 +19900105,600,135,100,200 +19900105,600,135,100,175 +19900105,600,135,100,150 +19900105,600,135,100,125 +19900105,600,135,100,100 +19900105,600,135,100,70 +19900105,600,135,100,50 +19900105,600,135,100,30 +19900105,600,135,100,20 +19900105,600,135,100,10 +19900105,600,135,100,9 +19900105,600,135,100,7 +19900105,600,135,100,5 +19900105,600,135,100,3 +19900105,600,135,100,2 +19900105,600,135,100,1 +19900105,600,135,210,40 +19900105,600,138,100,1000 +19900105,600,138,100,975 +19900105,600,138,100,950 +19900105,600,138,100,925 +19900105,600,138,100,900 +19900105,600,138,100,875 +19900105,600,138,100,850 +19900105,600,138,100,825 +19900105,600,138,100,800 +19900105,600,138,100,775 +19900105,600,138,100,750 +19900105,600,138,100,740 +19900105,600,138,100,700 +19900105,600,138,100,650 +19900105,600,138,100,620 +19900105,600,138,100,600 +19900105,600,138,100,550 +19900105,600,138,100,500 +19900105,600,138,100,450 +19900105,600,138,100,400 +19900105,600,138,100,375 +19900105,600,138,100,350 +19900105,600,138,100,300 +19900105,600,138,100,250 +19900105,600,138,100,245 +19900105,600,138,100,225 +19900105,600,138,100,200 +19900105,600,138,100,175 +19900105,600,138,100,150 +19900105,600,138,100,125 +19900105,600,138,100,100 +19900105,600,138,100,70 +19900105,600,138,100,50 +19900105,600,138,100,30 +19900105,600,138,100,20 +19900105,600,138,100,10 +19900105,600,138,100,9 +19900105,600,138,100,7 +19900105,600,138,100,5 +19900105,600,138,100,3 +19900105,600,138,100,2 +19900105,600,138,100,1 +19900105,600,138,210,40 +19900105,600,131,109,1 +19900105,600,131,109,2 +19900105,600,131,109,3 +19900105,600,131,109,4 +19900105,600,131,109,5 +19900105,600,131,109,6 +19900105,600,131,109,7 +19900105,600,131,109,8 +19900105,600,131,109,9 +19900105,600,131,109,10 +19900105,600,132,109,1 +19900105,600,132,109,2 +19900105,600,132,109,3 +19900105,600,132,109,4 +19900105,600,132,109,5 +19900105,600,132,109,6 +19900105,600,132,109,7 +19900105,600,132,109,8 +19900105,600,132,109,9 +19900105,600,132,109,10 +19900105,600,130,109,1 +19900105,600,130,109,2 +19900105,600,130,109,3 +19900105,600,130,109,4 +19900105,600,130,109,5 +19900105,600,130,109,6 +19900105,600,130,109,7 +19900105,600,130,109,8 +19900105,600,130,109,9 +19900105,600,130,109,10 +19900105,600,157,109,1 +19900105,600,157,109,2 +19900105,600,157,109,3 +19900105,600,157,109,4 +19900105,600,157,109,5 +19900105,600,157,109,6 +19900105,600,157,109,7 +19900105,600,157,109,8 +19900105,600,157,109,9 +19900105,600,157,109,10 +19900105,600,54,109,1 +19900105,600,54,109,2 +19900105,600,54,109,3 +19900105,600,54,109,4 +19900105,600,54,109,5 +19900105,600,54,109,6 +19900105,600,54,109,7 +19900105,600,54,109,8 +19900105,600,54,109,9 +19900105,600,54,109,10 +19900105,600,135,109,1 +19900105,600,135,109,2 +19900105,600,135,109,3 +19900105,600,135,109,4 +19900105,600,135,109,5 +19900105,600,135,109,6 +19900105,600,135,109,7 +19900105,600,135,109,8 +19900105,600,135,109,9 +19900105,600,135,109,10 +19900105,600,134,109,1 +19900105,600,152,109,1 +19900105,600,131,100,850 +19900105,600,132,100,850 +19900105,600,134,100,1000 +19900105,600,152,100,1000 +19900105,900,131,100,850 +19900105,900,132,100,850 +19900105,900,134,100,1000 +19900105,900,152,100,1000 +19900105,1200,131,100,1000 +19900105,1200,131,100,975 +19900105,1200,131,100,950 +19900105,1200,131,100,925 +19900105,1200,131,100,900 +19900105,1200,131,100,875 +19900105,1200,131,100,825 +19900105,1200,131,100,800 +19900105,1200,131,100,775 +19900105,1200,131,100,750 +19900105,1200,131,100,740 +19900105,1200,131,100,700 +19900105,1200,131,100,650 +19900105,1200,131,100,620 +19900105,1200,131,100,600 +19900105,1200,131,100,550 +19900105,1200,131,100,500 +19900105,1200,131,100,450 +19900105,1200,131,100,400 +19900105,1200,131,100,375 +19900105,1200,131,100,350 +19900105,1200,131,100,300 +19900105,1200,131,100,250 +19900105,1200,131,100,245 +19900105,1200,131,100,225 +19900105,1200,131,100,200 +19900105,1200,131,100,175 +19900105,1200,131,100,150 +19900105,1200,131,100,125 +19900105,1200,131,100,100 +19900105,1200,131,100,70 +19900105,1200,131,100,50 +19900105,1200,131,100,30 +19900105,1200,131,100,20 +19900105,1200,131,100,10 +19900105,1200,131,100,9 +19900105,1200,131,100,7 +19900105,1200,131,100,5 +19900105,1200,131,100,3 +19900105,1200,131,100,2 +19900105,1200,131,100,1 +19900105,1200,131,210,40 +19900105,1200,132,100,1000 +19900105,1200,132,100,975 +19900105,1200,132,100,950 +19900105,1200,132,100,925 +19900105,1200,132,100,900 +19900105,1200,132,100,875 +19900105,1200,132,100,825 +19900105,1200,132,100,800 +19900105,1200,132,100,775 +19900105,1200,132,100,750 +19900105,1200,132,100,740 +19900105,1200,132,100,700 +19900105,1200,132,100,650 +19900105,1200,132,100,620 +19900105,1200,132,100,600 +19900105,1200,132,100,550 +19900105,1200,132,100,500 +19900105,1200,132,100,450 +19900105,1200,132,100,400 +19900105,1200,132,100,375 +19900105,1200,132,100,350 +19900105,1200,132,100,300 +19900105,1200,132,100,250 +19900105,1200,132,100,245 +19900105,1200,132,100,225 +19900105,1200,132,100,200 +19900105,1200,132,100,175 +19900105,1200,132,100,150 +19900105,1200,132,100,125 +19900105,1200,132,100,100 +19900105,1200,132,100,70 +19900105,1200,132,100,50 +19900105,1200,132,100,30 +19900105,1200,132,100,20 +19900105,1200,132,100,10 +19900105,1200,132,100,9 +19900105,1200,132,100,7 +19900105,1200,132,100,5 +19900105,1200,132,100,3 +19900105,1200,132,100,2 +19900105,1200,132,100,1 +19900105,1200,132,210,40 +19900105,1200,130,100,1000 +19900105,1200,130,100,975 +19900105,1200,130,100,950 +19900105,1200,130,100,925 +19900105,1200,130,100,900 +19900105,1200,130,100,875 +19900105,1200,130,100,850 +19900105,1200,130,100,825 +19900105,1200,130,100,800 +19900105,1200,130,100,775 +19900105,1200,130,100,750 +19900105,1200,130,100,740 +19900105,1200,130,100,700 +19900105,1200,130,100,650 +19900105,1200,130,100,620 +19900105,1200,130,100,600 +19900105,1200,130,100,550 +19900105,1200,130,100,500 +19900105,1200,130,100,450 +19900105,1200,130,100,400 +19900105,1200,130,100,375 +19900105,1200,130,100,350 +19900105,1200,130,100,300 +19900105,1200,130,100,250 +19900105,1200,130,100,245 +19900105,1200,130,100,225 +19900105,1200,130,100,200 +19900105,1200,130,100,175 +19900105,1200,130,100,150 +19900105,1200,130,100,125 +19900105,1200,130,100,100 +19900105,1200,130,100,70 +19900105,1200,130,100,50 +19900105,1200,130,100,30 +19900105,1200,130,100,20 +19900105,1200,130,100,10 +19900105,1200,130,100,9 +19900105,1200,130,100,7 +19900105,1200,130,100,5 +19900105,1200,130,100,3 +19900105,1200,130,100,2 +19900105,1200,130,100,1 +19900105,1200,130,210,40 +19900105,1200,129,100,1000 +19900105,1200,129,100,975 +19900105,1200,129,100,950 +19900105,1200,129,100,925 +19900105,1200,129,100,900 +19900105,1200,129,100,875 +19900105,1200,129,100,850 +19900105,1200,129,100,825 +19900105,1200,129,100,800 +19900105,1200,129,100,775 +19900105,1200,129,100,750 +19900105,1200,129,100,740 +19900105,1200,129,100,700 +19900105,1200,129,100,650 +19900105,1200,129,100,620 +19900105,1200,129,100,600 +19900105,1200,129,100,550 +19900105,1200,129,100,500 +19900105,1200,129,100,450 +19900105,1200,129,100,400 +19900105,1200,129,100,375 +19900105,1200,129,100,350 +19900105,1200,129,100,300 +19900105,1200,129,100,250 +19900105,1200,129,100,245 +19900105,1200,129,100,225 +19900105,1200,129,100,200 +19900105,1200,129,100,175 +19900105,1200,129,100,150 +19900105,1200,129,100,125 +19900105,1200,129,100,100 +19900105,1200,129,100,70 +19900105,1200,129,100,50 +19900105,1200,129,100,30 +19900105,1200,129,100,20 +19900105,1200,129,100,10 +19900105,1200,129,100,9 +19900105,1200,129,100,7 +19900105,1200,129,100,5 +19900105,1200,129,100,3 +19900105,1200,129,100,2 +19900105,1200,129,100,1 +19900105,1200,129,210,40 +19900105,1200,157,100,1000 +19900105,1200,157,100,975 +19900105,1200,157,100,950 +19900105,1200,157,100,925 +19900105,1200,157,100,900 +19900105,1200,157,100,875 +19900105,1200,157,100,850 +19900105,1200,157,100,825 +19900105,1200,157,100,800 +19900105,1200,157,100,775 +19900105,1200,157,100,750 +19900105,1200,157,100,740 +19900105,1200,157,100,700 +19900105,1200,157,100,650 +19900105,1200,157,100,620 +19900105,1200,157,100,600 +19900105,1200,157,100,550 +19900105,1200,157,100,500 +19900105,1200,157,100,450 +19900105,1200,157,100,400 +19900105,1200,157,100,375 +19900105,1200,157,100,350 +19900105,1200,157,100,300 +19900105,1200,157,100,250 +19900105,1200,157,100,245 +19900105,1200,157,100,225 +19900105,1200,157,100,200 +19900105,1200,157,100,175 +19900105,1200,157,100,150 +19900105,1200,157,100,125 +19900105,1200,157,100,100 +19900105,1200,157,100,70 +19900105,1200,157,100,50 +19900105,1200,157,100,30 +19900105,1200,157,100,20 +19900105,1200,157,100,10 +19900105,1200,157,100,9 +19900105,1200,157,100,7 +19900105,1200,157,100,5 +19900105,1200,157,100,3 +19900105,1200,157,100,2 +19900105,1200,157,100,1 +19900105,1200,157,210,40 +19900105,1200,135,100,1000 +19900105,1200,135,100,975 +19900105,1200,135,100,950 +19900105,1200,135,100,925 +19900105,1200,135,100,900 +19900105,1200,135,100,875 +19900105,1200,135,100,850 +19900105,1200,135,100,825 +19900105,1200,135,100,800 +19900105,1200,135,100,775 +19900105,1200,135,100,750 +19900105,1200,135,100,740 +19900105,1200,135,100,700 +19900105,1200,135,100,650 +19900105,1200,135,100,620 +19900105,1200,135,100,600 +19900105,1200,135,100,550 +19900105,1200,135,100,500 +19900105,1200,135,100,450 +19900105,1200,135,100,400 +19900105,1200,135,100,375 +19900105,1200,135,100,350 +19900105,1200,135,100,300 +19900105,1200,135,100,250 +19900105,1200,135,100,245 +19900105,1200,135,100,225 +19900105,1200,135,100,200 +19900105,1200,135,100,175 +19900105,1200,135,100,150 +19900105,1200,135,100,125 +19900105,1200,135,100,100 +19900105,1200,135,100,70 +19900105,1200,135,100,50 +19900105,1200,135,100,30 +19900105,1200,135,100,20 +19900105,1200,135,100,10 +19900105,1200,135,100,9 +19900105,1200,135,100,7 +19900105,1200,135,100,5 +19900105,1200,135,100,3 +19900105,1200,135,100,2 +19900105,1200,135,100,1 +19900105,1200,135,210,40 +19900105,1200,138,100,1000 +19900105,1200,138,100,975 +19900105,1200,138,100,950 +19900105,1200,138,100,925 +19900105,1200,138,100,900 +19900105,1200,138,100,875 +19900105,1200,138,100,850 +19900105,1200,138,100,825 +19900105,1200,138,100,800 +19900105,1200,138,100,775 +19900105,1200,138,100,750 +19900105,1200,138,100,740 +19900105,1200,138,100,700 +19900105,1200,138,100,650 +19900105,1200,138,100,620 +19900105,1200,138,100,600 +19900105,1200,138,100,550 +19900105,1200,138,100,500 +19900105,1200,138,100,450 +19900105,1200,138,100,400 +19900105,1200,138,100,375 +19900105,1200,138,100,350 +19900105,1200,138,100,300 +19900105,1200,138,100,250 +19900105,1200,138,100,245 +19900105,1200,138,100,225 +19900105,1200,138,100,200 +19900105,1200,138,100,175 +19900105,1200,138,100,150 +19900105,1200,138,100,125 +19900105,1200,138,100,100 +19900105,1200,138,100,70 +19900105,1200,138,100,50 +19900105,1200,138,100,30 +19900105,1200,138,100,20 +19900105,1200,138,100,10 +19900105,1200,138,100,9 +19900105,1200,138,100,7 +19900105,1200,138,100,5 +19900105,1200,138,100,3 +19900105,1200,138,100,2 +19900105,1200,138,100,1 +19900105,1200,138,210,40 +19900105,1200,131,109,1 +19900105,1200,131,109,2 +19900105,1200,131,109,3 +19900105,1200,131,109,4 +19900105,1200,131,109,5 +19900105,1200,131,109,6 +19900105,1200,131,109,7 +19900105,1200,131,109,8 +19900105,1200,131,109,9 +19900105,1200,131,109,10 +19900105,1200,132,109,1 +19900105,1200,132,109,2 +19900105,1200,132,109,3 +19900105,1200,132,109,4 +19900105,1200,132,109,5 +19900105,1200,132,109,6 +19900105,1200,132,109,7 +19900105,1200,132,109,8 +19900105,1200,132,109,9 +19900105,1200,132,109,10 +19900105,1200,130,109,1 +19900105,1200,130,109,2 +19900105,1200,130,109,3 +19900105,1200,130,109,4 +19900105,1200,130,109,5 +19900105,1200,130,109,6 +19900105,1200,130,109,7 +19900105,1200,130,109,8 +19900105,1200,130,109,9 +19900105,1200,130,109,10 +19900105,1200,157,109,1 +19900105,1200,157,109,2 +19900105,1200,157,109,3 +19900105,1200,157,109,4 +19900105,1200,157,109,5 +19900105,1200,157,109,6 +19900105,1200,157,109,7 +19900105,1200,157,109,8 +19900105,1200,157,109,9 +19900105,1200,157,109,10 +19900105,1200,54,109,1 +19900105,1200,54,109,2 +19900105,1200,54,109,3 +19900105,1200,54,109,4 +19900105,1200,54,109,5 +19900105,1200,54,109,6 +19900105,1200,54,109,7 +19900105,1200,54,109,8 +19900105,1200,54,109,9 +19900105,1200,54,109,10 +19900105,1200,135,109,1 +19900105,1200,135,109,2 +19900105,1200,135,109,3 +19900105,1200,135,109,4 +19900105,1200,135,109,5 +19900105,1200,135,109,6 +19900105,1200,135,109,7 +19900105,1200,135,109,8 +19900105,1200,135,109,9 +19900105,1200,135,109,10 +19900105,1200,134,109,1 +19900105,1200,152,109,1 +19900105,1200,131,100,850 +19900105,1200,132,100,850 +19900105,1200,134,100,1000 +19900105,1200,152,100,1000 +19900105,1500,131,100,850 +19900105,1500,132,100,850 +19900105,1500,134,100,1000 +19900105,1500,152,100,1000 +19900105,1800,131,100,1000 +19900105,1800,131,100,975 +19900105,1800,131,100,950 +19900105,1800,131,100,925 +19900105,1800,131,100,900 +19900105,1800,131,100,875 +19900105,1800,131,100,825 +19900105,1800,131,100,800 +19900105,1800,131,100,775 +19900105,1800,131,100,750 +19900105,1800,131,100,740 +19900105,1800,131,100,700 +19900105,1800,131,100,650 +19900105,1800,131,100,620 +19900105,1800,131,100,600 +19900105,1800,131,100,550 +19900105,1800,131,100,500 +19900105,1800,131,100,450 +19900105,1800,131,100,400 +19900105,1800,131,100,375 +19900105,1800,131,100,350 +19900105,1800,131,100,300 +19900105,1800,131,100,250 +19900105,1800,131,100,245 +19900105,1800,131,100,225 +19900105,1800,131,100,200 +19900105,1800,131,100,175 +19900105,1800,131,100,150 +19900105,1800,131,100,125 +19900105,1800,131,100,100 +19900105,1800,131,100,70 +19900105,1800,131,100,50 +19900105,1800,131,100,30 +19900105,1800,131,100,20 +19900105,1800,131,100,10 +19900105,1800,131,100,9 +19900105,1800,131,100,7 +19900105,1800,131,100,5 +19900105,1800,131,100,3 +19900105,1800,131,100,2 +19900105,1800,131,100,1 +19900105,1800,131,210,40 +19900105,1800,132,100,1000 +19900105,1800,132,100,975 +19900105,1800,132,100,950 +19900105,1800,132,100,925 +19900105,1800,132,100,900 +19900105,1800,132,100,875 +19900105,1800,132,100,825 +19900105,1800,132,100,800 +19900105,1800,132,100,775 +19900105,1800,132,100,750 +19900105,1800,132,100,740 +19900105,1800,132,100,700 +19900105,1800,132,100,650 +19900105,1800,132,100,620 +19900105,1800,132,100,600 +19900105,1800,132,100,550 +19900105,1800,132,100,500 +19900105,1800,132,100,450 +19900105,1800,132,100,400 +19900105,1800,132,100,375 +19900105,1800,132,100,350 +19900105,1800,132,100,300 +19900105,1800,132,100,250 +19900105,1800,132,100,245 +19900105,1800,132,100,225 +19900105,1800,132,100,200 +19900105,1800,132,100,175 +19900105,1800,132,100,150 +19900105,1800,132,100,125 +19900105,1800,132,100,100 +19900105,1800,132,100,70 +19900105,1800,132,100,50 +19900105,1800,132,100,30 +19900105,1800,132,100,20 +19900105,1800,132,100,10 +19900105,1800,132,100,9 +19900105,1800,132,100,7 +19900105,1800,132,100,5 +19900105,1800,132,100,3 +19900105,1800,132,100,2 +19900105,1800,132,100,1 +19900105,1800,132,210,40 +19900105,1800,130,100,1000 +19900105,1800,130,100,975 +19900105,1800,130,100,950 +19900105,1800,130,100,925 +19900105,1800,130,100,900 +19900105,1800,130,100,875 +19900105,1800,130,100,850 +19900105,1800,130,100,825 +19900105,1800,130,100,800 +19900105,1800,130,100,775 +19900105,1800,130,100,750 +19900105,1800,130,100,740 +19900105,1800,130,100,700 +19900105,1800,130,100,650 +19900105,1800,130,100,620 +19900105,1800,130,100,600 +19900105,1800,130,100,550 +19900105,1800,130,100,500 +19900105,1800,130,100,450 +19900105,1800,130,100,400 +19900105,1800,130,100,375 +19900105,1800,130,100,350 +19900105,1800,130,100,300 +19900105,1800,130,100,250 +19900105,1800,130,100,245 +19900105,1800,130,100,225 +19900105,1800,130,100,200 +19900105,1800,130,100,175 +19900105,1800,130,100,150 +19900105,1800,130,100,125 +19900105,1800,130,100,100 +19900105,1800,130,100,70 +19900105,1800,130,100,50 +19900105,1800,130,100,30 +19900105,1800,130,100,20 +19900105,1800,130,100,10 +19900105,1800,130,100,9 +19900105,1800,130,100,7 +19900105,1800,130,100,5 +19900105,1800,130,100,3 +19900105,1800,130,100,2 +19900105,1800,130,100,1 +19900105,1800,130,210,40 +19900105,1800,129,100,1000 +19900105,1800,129,100,975 +19900105,1800,129,100,950 +19900105,1800,129,100,925 +19900105,1800,129,100,900 +19900105,1800,129,100,875 +19900105,1800,129,100,850 +19900105,1800,129,100,825 +19900105,1800,129,100,800 +19900105,1800,129,100,775 +19900105,1800,129,100,750 +19900105,1800,129,100,740 +19900105,1800,129,100,700 +19900105,1800,129,100,650 +19900105,1800,129,100,620 +19900105,1800,129,100,600 +19900105,1800,129,100,550 +19900105,1800,129,100,500 +19900105,1800,129,100,450 +19900105,1800,129,100,400 +19900105,1800,129,100,375 +19900105,1800,129,100,350 +19900105,1800,129,100,300 +19900105,1800,129,100,250 +19900105,1800,129,100,245 +19900105,1800,129,100,225 +19900105,1800,129,100,200 +19900105,1800,129,100,175 +19900105,1800,129,100,150 +19900105,1800,129,100,125 +19900105,1800,129,100,100 +19900105,1800,129,100,70 +19900105,1800,129,100,50 +19900105,1800,129,100,30 +19900105,1800,129,100,20 +19900105,1800,129,100,10 +19900105,1800,129,100,9 +19900105,1800,129,100,7 +19900105,1800,129,100,5 +19900105,1800,129,100,3 +19900105,1800,129,100,2 +19900105,1800,129,100,1 +19900105,1800,129,210,40 +19900105,1800,157,100,1000 +19900105,1800,157,100,975 +19900105,1800,157,100,950 +19900105,1800,157,100,925 +19900105,1800,157,100,900 +19900105,1800,157,100,875 +19900105,1800,157,100,850 +19900105,1800,157,100,825 +19900105,1800,157,100,800 +19900105,1800,157,100,775 +19900105,1800,157,100,750 +19900105,1800,157,100,740 +19900105,1800,157,100,700 +19900105,1800,157,100,650 +19900105,1800,157,100,620 +19900105,1800,157,100,600 +19900105,1800,157,100,550 +19900105,1800,157,100,500 +19900105,1800,157,100,450 +19900105,1800,157,100,400 +19900105,1800,157,100,375 +19900105,1800,157,100,350 +19900105,1800,157,100,300 +19900105,1800,157,100,250 +19900105,1800,157,100,245 +19900105,1800,157,100,225 +19900105,1800,157,100,200 +19900105,1800,157,100,175 +19900105,1800,157,100,150 +19900105,1800,157,100,125 +19900105,1800,157,100,100 +19900105,1800,157,100,70 +19900105,1800,157,100,50 +19900105,1800,157,100,30 +19900105,1800,157,100,20 +19900105,1800,157,100,10 +19900105,1800,157,100,9 +19900105,1800,157,100,7 +19900105,1800,157,100,5 +19900105,1800,157,100,3 +19900105,1800,157,100,2 +19900105,1800,157,100,1 +19900105,1800,157,210,40 +19900105,1800,135,100,1000 +19900105,1800,135,100,975 +19900105,1800,135,100,950 +19900105,1800,135,100,925 +19900105,1800,135,100,900 +19900105,1800,135,100,875 +19900105,1800,135,100,850 +19900105,1800,135,100,825 +19900105,1800,135,100,800 +19900105,1800,135,100,775 +19900105,1800,135,100,750 +19900105,1800,135,100,740 +19900105,1800,135,100,700 +19900105,1800,135,100,650 +19900105,1800,135,100,620 +19900105,1800,135,100,600 +19900105,1800,135,100,550 +19900105,1800,135,100,500 +19900105,1800,135,100,450 +19900105,1800,135,100,400 +19900105,1800,135,100,375 +19900105,1800,135,100,350 +19900105,1800,135,100,300 +19900105,1800,135,100,250 +19900105,1800,135,100,245 +19900105,1800,135,100,225 +19900105,1800,135,100,200 +19900105,1800,135,100,175 +19900105,1800,135,100,150 +19900105,1800,135,100,125 +19900105,1800,135,100,100 +19900105,1800,135,100,70 +19900105,1800,135,100,50 +19900105,1800,135,100,30 +19900105,1800,135,100,20 +19900105,1800,135,100,10 +19900105,1800,135,100,9 +19900105,1800,135,100,7 +19900105,1800,135,100,5 +19900105,1800,135,100,3 +19900105,1800,135,100,2 +19900105,1800,135,100,1 +19900105,1800,135,210,40 +19900105,1800,138,100,1000 +19900105,1800,138,100,975 +19900105,1800,138,100,950 +19900105,1800,138,100,925 +19900105,1800,138,100,900 +19900105,1800,138,100,875 +19900105,1800,138,100,850 +19900105,1800,138,100,825 +19900105,1800,138,100,800 +19900105,1800,138,100,775 +19900105,1800,138,100,750 +19900105,1800,138,100,740 +19900105,1800,138,100,700 +19900105,1800,138,100,650 +19900105,1800,138,100,620 +19900105,1800,138,100,600 +19900105,1800,138,100,550 +19900105,1800,138,100,500 +19900105,1800,138,100,450 +19900105,1800,138,100,400 +19900105,1800,138,100,375 +19900105,1800,138,100,350 +19900105,1800,138,100,300 +19900105,1800,138,100,250 +19900105,1800,138,100,245 +19900105,1800,138,100,225 +19900105,1800,138,100,200 +19900105,1800,138,100,175 +19900105,1800,138,100,150 +19900105,1800,138,100,125 +19900105,1800,138,100,100 +19900105,1800,138,100,70 +19900105,1800,138,100,50 +19900105,1800,138,100,30 +19900105,1800,138,100,20 +19900105,1800,138,100,10 +19900105,1800,138,100,9 +19900105,1800,138,100,7 +19900105,1800,138,100,5 +19900105,1800,138,100,3 +19900105,1800,138,100,2 +19900105,1800,138,100,1 +19900105,1800,138,210,40 +19900105,1800,131,109,1 +19900105,1800,131,109,2 +19900105,1800,131,109,3 +19900105,1800,131,109,4 +19900105,1800,131,109,5 +19900105,1800,131,109,6 +19900105,1800,131,109,7 +19900105,1800,131,109,8 +19900105,1800,131,109,9 +19900105,1800,131,109,10 +19900105,1800,132,109,1 +19900105,1800,132,109,2 +19900105,1800,132,109,3 +19900105,1800,132,109,4 +19900105,1800,132,109,5 +19900105,1800,132,109,6 +19900105,1800,132,109,7 +19900105,1800,132,109,8 +19900105,1800,132,109,9 +19900105,1800,132,109,10 +19900105,1800,130,109,1 +19900105,1800,130,109,2 +19900105,1800,130,109,3 +19900105,1800,130,109,4 +19900105,1800,130,109,5 +19900105,1800,130,109,6 +19900105,1800,130,109,7 +19900105,1800,130,109,8 +19900105,1800,130,109,9 +19900105,1800,130,109,10 +19900105,1800,157,109,1 +19900105,1800,157,109,2 +19900105,1800,157,109,3 +19900105,1800,157,109,4 +19900105,1800,157,109,5 +19900105,1800,157,109,6 +19900105,1800,157,109,7 +19900105,1800,157,109,8 +19900105,1800,157,109,9 +19900105,1800,157,109,10 +19900105,1800,54,109,1 +19900105,1800,54,109,2 +19900105,1800,54,109,3 +19900105,1800,54,109,4 +19900105,1800,54,109,5 +19900105,1800,54,109,6 +19900105,1800,54,109,7 +19900105,1800,54,109,8 +19900105,1800,54,109,9 +19900105,1800,54,109,10 +19900105,1800,135,109,1 +19900105,1800,135,109,2 +19900105,1800,135,109,3 +19900105,1800,135,109,4 +19900105,1800,135,109,5 +19900105,1800,135,109,6 +19900105,1800,135,109,7 +19900105,1800,135,109,8 +19900105,1800,135,109,9 +19900105,1800,135,109,10 +19900105,1800,134,109,1 +19900105,1800,152,109,1 +19900105,1800,131,100,850 +19900105,1800,132,100,850 +19900105,1800,134,100,1000 +19900105,1800,152,100,1000 +19900105,2100,131,100,850 +19900105,2100,132,100,850 +19900105,2100,134,100,1000 +19900105,2100,152,100,1000 +19900106,0,131,100,1000 +19900106,0,131,100,975 +19900106,0,131,100,950 +19900106,0,131,100,925 +19900106,0,131,100,900 +19900106,0,131,100,875 +19900106,0,131,100,825 +19900106,0,131,100,800 +19900106,0,131,100,775 +19900106,0,131,100,750 +19900106,0,131,100,740 +19900106,0,131,100,700 +19900106,0,131,100,650 +19900106,0,131,100,620 +19900106,0,131,100,600 +19900106,0,131,100,550 +19900106,0,131,100,500 +19900106,0,131,100,450 +19900106,0,131,100,400 +19900106,0,131,100,375 +19900106,0,131,100,350 +19900106,0,131,100,300 +19900106,0,131,100,250 +19900106,0,131,100,245 +19900106,0,131,100,225 +19900106,0,131,100,200 +19900106,0,131,100,175 +19900106,0,131,100,150 +19900106,0,131,100,125 +19900106,0,131,100,100 +19900106,0,131,100,70 +19900106,0,131,100,50 +19900106,0,131,100,30 +19900106,0,131,100,20 +19900106,0,131,100,10 +19900106,0,131,100,9 +19900106,0,131,100,7 +19900106,0,131,100,5 +19900106,0,131,100,3 +19900106,0,131,100,2 +19900106,0,131,100,1 +19900106,0,131,210,40 +19900106,0,132,100,1000 +19900106,0,132,100,975 +19900106,0,132,100,950 +19900106,0,132,100,925 +19900106,0,132,100,900 +19900106,0,132,100,875 +19900106,0,132,100,825 +19900106,0,132,100,800 +19900106,0,132,100,775 +19900106,0,132,100,750 +19900106,0,132,100,740 +19900106,0,132,100,700 +19900106,0,132,100,650 +19900106,0,132,100,620 +19900106,0,132,100,600 +19900106,0,132,100,550 +19900106,0,132,100,500 +19900106,0,132,100,450 +19900106,0,132,100,400 +19900106,0,132,100,375 +19900106,0,132,100,350 +19900106,0,132,100,300 +19900106,0,132,100,250 +19900106,0,132,100,245 +19900106,0,132,100,225 +19900106,0,132,100,200 +19900106,0,132,100,175 +19900106,0,132,100,150 +19900106,0,132,100,125 +19900106,0,132,100,100 +19900106,0,132,100,70 +19900106,0,132,100,50 +19900106,0,132,100,30 +19900106,0,132,100,20 +19900106,0,132,100,10 +19900106,0,132,100,9 +19900106,0,132,100,7 +19900106,0,132,100,5 +19900106,0,132,100,3 +19900106,0,132,100,2 +19900106,0,132,100,1 +19900106,0,132,210,40 +19900106,0,130,100,1000 +19900106,0,130,100,975 +19900106,0,130,100,950 +19900106,0,130,100,925 +19900106,0,130,100,900 +19900106,0,130,100,875 +19900106,0,130,100,850 +19900106,0,130,100,825 +19900106,0,130,100,800 +19900106,0,130,100,775 +19900106,0,130,100,750 +19900106,0,130,100,740 +19900106,0,130,100,700 +19900106,0,130,100,650 +19900106,0,130,100,620 +19900106,0,130,100,600 +19900106,0,130,100,550 +19900106,0,130,100,500 +19900106,0,130,100,450 +19900106,0,130,100,400 +19900106,0,130,100,375 +19900106,0,130,100,350 +19900106,0,130,100,300 +19900106,0,130,100,250 +19900106,0,130,100,245 +19900106,0,130,100,225 +19900106,0,130,100,200 +19900106,0,130,100,175 +19900106,0,130,100,150 +19900106,0,130,100,125 +19900106,0,130,100,100 +19900106,0,130,100,70 +19900106,0,130,100,50 +19900106,0,130,100,30 +19900106,0,130,100,20 +19900106,0,130,100,10 +19900106,0,130,100,9 +19900106,0,130,100,7 +19900106,0,130,100,5 +19900106,0,130,100,3 +19900106,0,130,100,2 +19900106,0,130,100,1 +19900106,0,130,210,40 +19900106,0,129,100,1000 +19900106,0,129,100,975 +19900106,0,129,100,950 +19900106,0,129,100,925 +19900106,0,129,100,900 +19900106,0,129,100,875 +19900106,0,129,100,850 +19900106,0,129,100,825 +19900106,0,129,100,800 +19900106,0,129,100,775 +19900106,0,129,100,750 +19900106,0,129,100,740 +19900106,0,129,100,700 +19900106,0,129,100,650 +19900106,0,129,100,620 +19900106,0,129,100,600 +19900106,0,129,100,550 +19900106,0,129,100,500 +19900106,0,129,100,450 +19900106,0,129,100,400 +19900106,0,129,100,375 +19900106,0,129,100,350 +19900106,0,129,100,300 +19900106,0,129,100,250 +19900106,0,129,100,245 +19900106,0,129,100,225 +19900106,0,129,100,200 +19900106,0,129,100,175 +19900106,0,129,100,150 +19900106,0,129,100,125 +19900106,0,129,100,100 +19900106,0,129,100,70 +19900106,0,129,100,50 +19900106,0,129,100,30 +19900106,0,129,100,20 +19900106,0,129,100,10 +19900106,0,129,100,9 +19900106,0,129,100,7 +19900106,0,129,100,5 +19900106,0,129,100,3 +19900106,0,129,100,2 +19900106,0,129,100,1 +19900106,0,129,210,40 +19900106,0,157,100,1000 +19900106,0,157,100,975 +19900106,0,157,100,950 +19900106,0,157,100,925 +19900106,0,157,100,900 +19900106,0,157,100,875 +19900106,0,157,100,850 +19900106,0,157,100,825 +19900106,0,157,100,800 +19900106,0,157,100,775 +19900106,0,157,100,750 +19900106,0,157,100,740 +19900106,0,157,100,700 +19900106,0,157,100,650 +19900106,0,157,100,620 +19900106,0,157,100,600 +19900106,0,157,100,550 +19900106,0,157,100,500 +19900106,0,157,100,450 +19900106,0,157,100,400 +19900106,0,157,100,375 +19900106,0,157,100,350 +19900106,0,157,100,300 +19900106,0,157,100,250 +19900106,0,157,100,245 +19900106,0,157,100,225 +19900106,0,157,100,200 +19900106,0,157,100,175 +19900106,0,157,100,150 +19900106,0,157,100,125 +19900106,0,157,100,100 +19900106,0,157,100,70 +19900106,0,157,100,50 +19900106,0,157,100,30 +19900106,0,157,100,20 +19900106,0,157,100,10 +19900106,0,157,100,9 +19900106,0,157,100,7 +19900106,0,157,100,5 +19900106,0,157,100,3 +19900106,0,157,100,2 +19900106,0,157,100,1 +19900106,0,157,210,40 +19900106,0,135,100,1000 +19900106,0,135,100,975 +19900106,0,135,100,950 +19900106,0,135,100,925 +19900106,0,135,100,900 +19900106,0,135,100,875 +19900106,0,135,100,850 +19900106,0,135,100,825 +19900106,0,135,100,800 +19900106,0,135,100,775 +19900106,0,135,100,750 +19900106,0,135,100,740 +19900106,0,135,100,700 +19900106,0,135,100,650 +19900106,0,135,100,620 +19900106,0,135,100,600 +19900106,0,135,100,550 +19900106,0,135,100,500 +19900106,0,135,100,450 +19900106,0,135,100,400 +19900106,0,135,100,375 +19900106,0,135,100,350 +19900106,0,135,100,300 +19900106,0,135,100,250 +19900106,0,135,100,245 +19900106,0,135,100,225 +19900106,0,135,100,200 +19900106,0,135,100,175 +19900106,0,135,100,150 +19900106,0,135,100,125 +19900106,0,135,100,100 +19900106,0,135,100,70 +19900106,0,135,100,50 +19900106,0,135,100,30 +19900106,0,135,100,20 +19900106,0,135,100,10 +19900106,0,135,100,9 +19900106,0,135,100,7 +19900106,0,135,100,5 +19900106,0,135,100,3 +19900106,0,135,100,2 +19900106,0,135,100,1 +19900106,0,135,210,40 +19900106,0,138,100,1000 +19900106,0,138,100,975 +19900106,0,138,100,950 +19900106,0,138,100,925 +19900106,0,138,100,900 +19900106,0,138,100,875 +19900106,0,138,100,850 +19900106,0,138,100,825 +19900106,0,138,100,800 +19900106,0,138,100,775 +19900106,0,138,100,750 +19900106,0,138,100,740 +19900106,0,138,100,700 +19900106,0,138,100,650 +19900106,0,138,100,620 +19900106,0,138,100,600 +19900106,0,138,100,550 +19900106,0,138,100,500 +19900106,0,138,100,450 +19900106,0,138,100,400 +19900106,0,138,100,375 +19900106,0,138,100,350 +19900106,0,138,100,300 +19900106,0,138,100,250 +19900106,0,138,100,245 +19900106,0,138,100,225 +19900106,0,138,100,200 +19900106,0,138,100,175 +19900106,0,138,100,150 +19900106,0,138,100,125 +19900106,0,138,100,100 +19900106,0,138,100,70 +19900106,0,138,100,50 +19900106,0,138,100,30 +19900106,0,138,100,20 +19900106,0,138,100,10 +19900106,0,138,100,9 +19900106,0,138,100,7 +19900106,0,138,100,5 +19900106,0,138,100,3 +19900106,0,138,100,2 +19900106,0,138,100,1 +19900106,0,138,210,40 +19900106,0,131,109,1 +19900106,0,131,109,2 +19900106,0,131,109,3 +19900106,0,131,109,4 +19900106,0,131,109,5 +19900106,0,131,109,6 +19900106,0,131,109,7 +19900106,0,131,109,8 +19900106,0,131,109,9 +19900106,0,131,109,10 +19900106,0,132,109,1 +19900106,0,132,109,2 +19900106,0,132,109,3 +19900106,0,132,109,4 +19900106,0,132,109,5 +19900106,0,132,109,6 +19900106,0,132,109,7 +19900106,0,132,109,8 +19900106,0,132,109,9 +19900106,0,132,109,10 +19900106,0,130,109,1 +19900106,0,130,109,2 +19900106,0,130,109,3 +19900106,0,130,109,4 +19900106,0,130,109,5 +19900106,0,130,109,6 +19900106,0,130,109,7 +19900106,0,130,109,8 +19900106,0,130,109,9 +19900106,0,130,109,10 +19900106,0,157,109,1 +19900106,0,157,109,2 +19900106,0,157,109,3 +19900106,0,157,109,4 +19900106,0,157,109,5 +19900106,0,157,109,6 +19900106,0,157,109,7 +19900106,0,157,109,8 +19900106,0,157,109,9 +19900106,0,157,109,10 +19900106,0,54,109,1 +19900106,0,54,109,2 +19900106,0,54,109,3 +19900106,0,54,109,4 +19900106,0,54,109,5 +19900106,0,54,109,6 +19900106,0,54,109,7 +19900106,0,54,109,8 +19900106,0,54,109,9 +19900106,0,54,109,10 +19900106,0,135,109,1 +19900106,0,135,109,2 +19900106,0,135,109,3 +19900106,0,135,109,4 +19900106,0,135,109,5 +19900106,0,135,109,6 +19900106,0,135,109,7 +19900106,0,135,109,8 +19900106,0,135,109,9 +19900106,0,135,109,10 +19900106,0,134,109,1 +19900106,0,152,109,1 +19900106,0,131,100,850 +19900106,0,132,100,850 +19900106,0,134,100,1000 +19900106,0,152,100,1000 +19900106,300,131,100,850 +19900106,300,132,100,850 +19900106,300,134,100,1000 +19900106,300,152,100,1000 +19900106,600,131,100,1000 +19900106,600,131,100,975 +19900106,600,131,100,950 +19900106,600,131,100,925 +19900106,600,131,100,900 +19900106,600,131,100,875 +19900106,600,131,100,825 +19900106,600,131,100,800 +19900106,600,131,100,775 +19900106,600,131,100,750 +19900106,600,131,100,740 +19900106,600,131,100,700 +19900106,600,131,100,650 +19900106,600,131,100,620 +19900106,600,131,100,600 +19900106,600,131,100,550 +19900106,600,131,100,500 +19900106,600,131,100,450 +19900106,600,131,100,400 +19900106,600,131,100,375 +19900106,600,131,100,350 +19900106,600,131,100,300 +19900106,600,131,100,250 +19900106,600,131,100,245 +19900106,600,131,100,225 +19900106,600,131,100,200 +19900106,600,131,100,175 +19900106,600,131,100,150 +19900106,600,131,100,125 +19900106,600,131,100,100 +19900106,600,131,100,70 +19900106,600,131,100,50 +19900106,600,131,100,30 +19900106,600,131,100,20 +19900106,600,131,100,10 +19900106,600,131,100,9 +19900106,600,131,100,7 +19900106,600,131,100,5 +19900106,600,131,100,3 +19900106,600,131,100,2 +19900106,600,131,100,1 +19900106,600,131,210,40 +19900106,600,132,100,1000 +19900106,600,132,100,975 +19900106,600,132,100,950 +19900106,600,132,100,925 +19900106,600,132,100,900 +19900106,600,132,100,875 +19900106,600,132,100,825 +19900106,600,132,100,800 +19900106,600,132,100,775 +19900106,600,132,100,750 +19900106,600,132,100,740 +19900106,600,132,100,700 +19900106,600,132,100,650 +19900106,600,132,100,620 +19900106,600,132,100,600 +19900106,600,132,100,550 +19900106,600,132,100,500 +19900106,600,132,100,450 +19900106,600,132,100,400 +19900106,600,132,100,375 +19900106,600,132,100,350 +19900106,600,132,100,300 +19900106,600,132,100,250 +19900106,600,132,100,245 +19900106,600,132,100,225 +19900106,600,132,100,200 +19900106,600,132,100,175 +19900106,600,132,100,150 +19900106,600,132,100,125 +19900106,600,132,100,100 +19900106,600,132,100,70 +19900106,600,132,100,50 +19900106,600,132,100,30 +19900106,600,132,100,20 +19900106,600,132,100,10 +19900106,600,132,100,9 +19900106,600,132,100,7 +19900106,600,132,100,5 +19900106,600,132,100,3 +19900106,600,132,100,2 +19900106,600,132,100,1 +19900106,600,132,210,40 +19900106,600,130,100,1000 +19900106,600,130,100,975 +19900106,600,130,100,950 +19900106,600,130,100,925 +19900106,600,130,100,900 +19900106,600,130,100,875 +19900106,600,130,100,850 +19900106,600,130,100,825 +19900106,600,130,100,800 +19900106,600,130,100,775 +19900106,600,130,100,750 +19900106,600,130,100,740 +19900106,600,130,100,700 +19900106,600,130,100,650 +19900106,600,130,100,620 +19900106,600,130,100,600 +19900106,600,130,100,550 +19900106,600,130,100,500 +19900106,600,130,100,450 +19900106,600,130,100,400 +19900106,600,130,100,375 +19900106,600,130,100,350 +19900106,600,130,100,300 +19900106,600,130,100,250 +19900106,600,130,100,245 +19900106,600,130,100,225 +19900106,600,130,100,200 +19900106,600,130,100,175 +19900106,600,130,100,150 +19900106,600,130,100,125 +19900106,600,130,100,100 +19900106,600,130,100,70 +19900106,600,130,100,50 +19900106,600,130,100,30 +19900106,600,130,100,20 +19900106,600,130,100,10 +19900106,600,130,100,9 +19900106,600,130,100,7 +19900106,600,130,100,5 +19900106,600,130,100,3 +19900106,600,130,100,2 +19900106,600,130,100,1 +19900106,600,130,210,40 +19900106,600,129,100,1000 +19900106,600,129,100,975 +19900106,600,129,100,950 +19900106,600,129,100,925 +19900106,600,129,100,900 +19900106,600,129,100,875 +19900106,600,129,100,850 +19900106,600,129,100,825 +19900106,600,129,100,800 +19900106,600,129,100,775 +19900106,600,129,100,750 +19900106,600,129,100,740 +19900106,600,129,100,700 +19900106,600,129,100,650 +19900106,600,129,100,620 +19900106,600,129,100,600 +19900106,600,129,100,550 +19900106,600,129,100,500 +19900106,600,129,100,450 +19900106,600,129,100,400 +19900106,600,129,100,375 +19900106,600,129,100,350 +19900106,600,129,100,300 +19900106,600,129,100,250 +19900106,600,129,100,245 +19900106,600,129,100,225 +19900106,600,129,100,200 +19900106,600,129,100,175 +19900106,600,129,100,150 +19900106,600,129,100,125 +19900106,600,129,100,100 +19900106,600,129,100,70 +19900106,600,129,100,50 +19900106,600,129,100,30 +19900106,600,129,100,20 +19900106,600,129,100,10 +19900106,600,129,100,9 +19900106,600,129,100,7 +19900106,600,129,100,5 +19900106,600,129,100,3 +19900106,600,129,100,2 +19900106,600,129,100,1 +19900106,600,129,210,40 +19900106,600,157,100,1000 +19900106,600,157,100,975 +19900106,600,157,100,950 +19900106,600,157,100,925 +19900106,600,157,100,900 +19900106,600,157,100,875 +19900106,600,157,100,850 +19900106,600,157,100,825 +19900106,600,157,100,800 +19900106,600,157,100,775 +19900106,600,157,100,750 +19900106,600,157,100,740 +19900106,600,157,100,700 +19900106,600,157,100,650 +19900106,600,157,100,620 +19900106,600,157,100,600 +19900106,600,157,100,550 +19900106,600,157,100,500 +19900106,600,157,100,450 +19900106,600,157,100,400 +19900106,600,157,100,375 +19900106,600,157,100,350 +19900106,600,157,100,300 +19900106,600,157,100,250 +19900106,600,157,100,245 +19900106,600,157,100,225 +19900106,600,157,100,200 +19900106,600,157,100,175 +19900106,600,157,100,150 +19900106,600,157,100,125 +19900106,600,157,100,100 +19900106,600,157,100,70 +19900106,600,157,100,50 +19900106,600,157,100,30 +19900106,600,157,100,20 +19900106,600,157,100,10 +19900106,600,157,100,9 +19900106,600,157,100,7 +19900106,600,157,100,5 +19900106,600,157,100,3 +19900106,600,157,100,2 +19900106,600,157,100,1 +19900106,600,157,210,40 +19900106,600,135,100,1000 +19900106,600,135,100,975 +19900106,600,135,100,950 +19900106,600,135,100,925 +19900106,600,135,100,900 +19900106,600,135,100,875 +19900106,600,135,100,850 +19900106,600,135,100,825 +19900106,600,135,100,800 +19900106,600,135,100,775 +19900106,600,135,100,750 +19900106,600,135,100,740 +19900106,600,135,100,700 +19900106,600,135,100,650 +19900106,600,135,100,620 +19900106,600,135,100,600 +19900106,600,135,100,550 +19900106,600,135,100,500 +19900106,600,135,100,450 +19900106,600,135,100,400 +19900106,600,135,100,375 +19900106,600,135,100,350 +19900106,600,135,100,300 +19900106,600,135,100,250 +19900106,600,135,100,245 +19900106,600,135,100,225 +19900106,600,135,100,200 +19900106,600,135,100,175 +19900106,600,135,100,150 +19900106,600,135,100,125 +19900106,600,135,100,100 +19900106,600,135,100,70 +19900106,600,135,100,50 +19900106,600,135,100,30 +19900106,600,135,100,20 +19900106,600,135,100,10 +19900106,600,135,100,9 +19900106,600,135,100,7 +19900106,600,135,100,5 +19900106,600,135,100,3 +19900106,600,135,100,2 +19900106,600,135,100,1 +19900106,600,135,210,40 +19900106,600,138,100,1000 +19900106,600,138,100,975 +19900106,600,138,100,950 +19900106,600,138,100,925 +19900106,600,138,100,900 +19900106,600,138,100,875 +19900106,600,138,100,850 +19900106,600,138,100,825 +19900106,600,138,100,800 +19900106,600,138,100,775 +19900106,600,138,100,750 +19900106,600,138,100,740 +19900106,600,138,100,700 +19900106,600,138,100,650 +19900106,600,138,100,620 +19900106,600,138,100,600 +19900106,600,138,100,550 +19900106,600,138,100,500 +19900106,600,138,100,450 +19900106,600,138,100,400 +19900106,600,138,100,375 +19900106,600,138,100,350 +19900106,600,138,100,300 +19900106,600,138,100,250 +19900106,600,138,100,245 +19900106,600,138,100,225 +19900106,600,138,100,200 +19900106,600,138,100,175 +19900106,600,138,100,150 +19900106,600,138,100,125 +19900106,600,138,100,100 +19900106,600,138,100,70 +19900106,600,138,100,50 +19900106,600,138,100,30 +19900106,600,138,100,20 +19900106,600,138,100,10 +19900106,600,138,100,9 +19900106,600,138,100,7 +19900106,600,138,100,5 +19900106,600,138,100,3 +19900106,600,138,100,2 +19900106,600,138,100,1 +19900106,600,138,210,40 +19900106,600,131,109,1 +19900106,600,131,109,2 +19900106,600,131,109,3 +19900106,600,131,109,4 +19900106,600,131,109,5 +19900106,600,131,109,6 +19900106,600,131,109,7 +19900106,600,131,109,8 +19900106,600,131,109,9 +19900106,600,131,109,10 +19900106,600,132,109,1 +19900106,600,132,109,2 +19900106,600,132,109,3 +19900106,600,132,109,4 +19900106,600,132,109,5 +19900106,600,132,109,6 +19900106,600,132,109,7 +19900106,600,132,109,8 +19900106,600,132,109,9 +19900106,600,132,109,10 +19900106,600,130,109,1 +19900106,600,130,109,2 +19900106,600,130,109,3 +19900106,600,130,109,4 +19900106,600,130,109,5 +19900106,600,130,109,6 +19900106,600,130,109,7 +19900106,600,130,109,8 +19900106,600,130,109,9 +19900106,600,130,109,10 +19900106,600,157,109,1 +19900106,600,157,109,2 +19900106,600,157,109,3 +19900106,600,157,109,4 +19900106,600,157,109,5 +19900106,600,157,109,6 +19900106,600,157,109,7 +19900106,600,157,109,8 +19900106,600,157,109,9 +19900106,600,157,109,10 +19900106,600,54,109,1 +19900106,600,54,109,2 +19900106,600,54,109,3 +19900106,600,54,109,4 +19900106,600,54,109,5 +19900106,600,54,109,6 +19900106,600,54,109,7 +19900106,600,54,109,8 +19900106,600,54,109,9 +19900106,600,54,109,10 +19900106,600,135,109,1 +19900106,600,135,109,2 +19900106,600,135,109,3 +19900106,600,135,109,4 +19900106,600,135,109,5 +19900106,600,135,109,6 +19900106,600,135,109,7 +19900106,600,135,109,8 +19900106,600,135,109,9 +19900106,600,135,109,10 +19900106,600,134,109,1 +19900106,600,152,109,1 +19900106,600,131,100,850 +19900106,600,132,100,850 +19900106,600,134,100,1000 +19900106,600,152,100,1000 +19900106,900,131,100,850 +19900106,900,132,100,850 +19900106,900,134,100,1000 +19900106,900,152,100,1000 +19900106,1200,131,100,1000 +19900106,1200,131,100,975 +19900106,1200,131,100,950 +19900106,1200,131,100,925 +19900106,1200,131,100,900 +19900106,1200,131,100,875 +19900106,1200,131,100,825 +19900106,1200,131,100,800 +19900106,1200,131,100,775 +19900106,1200,131,100,750 +19900106,1200,131,100,740 +19900106,1200,131,100,700 +19900106,1200,131,100,650 +19900106,1200,131,100,620 +19900106,1200,131,100,600 +19900106,1200,131,100,550 +19900106,1200,131,100,500 +19900106,1200,131,100,450 +19900106,1200,131,100,400 +19900106,1200,131,100,375 +19900106,1200,131,100,350 +19900106,1200,131,100,300 +19900106,1200,131,100,250 +19900106,1200,131,100,245 +19900106,1200,131,100,225 +19900106,1200,131,100,200 +19900106,1200,131,100,175 +19900106,1200,131,100,150 +19900106,1200,131,100,125 +19900106,1200,131,100,100 +19900106,1200,131,100,70 +19900106,1200,131,100,50 +19900106,1200,131,100,30 +19900106,1200,131,100,20 +19900106,1200,131,100,10 +19900106,1200,131,100,9 +19900106,1200,131,100,7 +19900106,1200,131,100,5 +19900106,1200,131,100,3 +19900106,1200,131,100,2 +19900106,1200,131,100,1 +19900106,1200,131,210,40 +19900106,1200,132,100,1000 +19900106,1200,132,100,975 +19900106,1200,132,100,950 +19900106,1200,132,100,925 +19900106,1200,132,100,900 +19900106,1200,132,100,875 +19900106,1200,132,100,825 +19900106,1200,132,100,800 +19900106,1200,132,100,775 +19900106,1200,132,100,750 +19900106,1200,132,100,740 +19900106,1200,132,100,700 +19900106,1200,132,100,650 +19900106,1200,132,100,620 +19900106,1200,132,100,600 +19900106,1200,132,100,550 +19900106,1200,132,100,500 +19900106,1200,132,100,450 +19900106,1200,132,100,400 +19900106,1200,132,100,375 +19900106,1200,132,100,350 +19900106,1200,132,100,300 +19900106,1200,132,100,250 +19900106,1200,132,100,245 +19900106,1200,132,100,225 +19900106,1200,132,100,200 +19900106,1200,132,100,175 +19900106,1200,132,100,150 +19900106,1200,132,100,125 +19900106,1200,132,100,100 +19900106,1200,132,100,70 +19900106,1200,132,100,50 +19900106,1200,132,100,30 +19900106,1200,132,100,20 +19900106,1200,132,100,10 +19900106,1200,132,100,9 +19900106,1200,132,100,7 +19900106,1200,132,100,5 +19900106,1200,132,100,3 +19900106,1200,132,100,2 +19900106,1200,132,100,1 +19900106,1200,132,210,40 +19900106,1200,130,100,1000 +19900106,1200,130,100,975 +19900106,1200,130,100,950 +19900106,1200,130,100,925 +19900106,1200,130,100,900 +19900106,1200,130,100,875 +19900106,1200,130,100,850 +19900106,1200,130,100,825 +19900106,1200,130,100,800 +19900106,1200,130,100,775 +19900106,1200,130,100,750 +19900106,1200,130,100,740 +19900106,1200,130,100,700 +19900106,1200,130,100,650 +19900106,1200,130,100,620 +19900106,1200,130,100,600 +19900106,1200,130,100,550 +19900106,1200,130,100,500 +19900106,1200,130,100,450 +19900106,1200,130,100,400 +19900106,1200,130,100,375 +19900106,1200,130,100,350 +19900106,1200,130,100,300 +19900106,1200,130,100,250 +19900106,1200,130,100,245 +19900106,1200,130,100,225 +19900106,1200,130,100,200 +19900106,1200,130,100,175 +19900106,1200,130,100,150 +19900106,1200,130,100,125 +19900106,1200,130,100,100 +19900106,1200,130,100,70 +19900106,1200,130,100,50 +19900106,1200,130,100,30 +19900106,1200,130,100,20 +19900106,1200,130,100,10 +19900106,1200,130,100,9 +19900106,1200,130,100,7 +19900106,1200,130,100,5 +19900106,1200,130,100,3 +19900106,1200,130,100,2 +19900106,1200,130,100,1 +19900106,1200,130,210,40 +19900106,1200,129,100,1000 +19900106,1200,129,100,975 +19900106,1200,129,100,950 +19900106,1200,129,100,925 +19900106,1200,129,100,900 +19900106,1200,129,100,875 +19900106,1200,129,100,850 +19900106,1200,129,100,825 +19900106,1200,129,100,800 +19900106,1200,129,100,775 +19900106,1200,129,100,750 +19900106,1200,129,100,740 +19900106,1200,129,100,700 +19900106,1200,129,100,650 +19900106,1200,129,100,620 +19900106,1200,129,100,600 +19900106,1200,129,100,550 +19900106,1200,129,100,500 +19900106,1200,129,100,450 +19900106,1200,129,100,400 +19900106,1200,129,100,375 +19900106,1200,129,100,350 +19900106,1200,129,100,300 +19900106,1200,129,100,250 +19900106,1200,129,100,245 +19900106,1200,129,100,225 +19900106,1200,129,100,200 +19900106,1200,129,100,175 +19900106,1200,129,100,150 +19900106,1200,129,100,125 +19900106,1200,129,100,100 +19900106,1200,129,100,70 +19900106,1200,129,100,50 +19900106,1200,129,100,30 +19900106,1200,129,100,20 +19900106,1200,129,100,10 +19900106,1200,129,100,9 +19900106,1200,129,100,7 +19900106,1200,129,100,5 +19900106,1200,129,100,3 +19900106,1200,129,100,2 +19900106,1200,129,100,1 +19900106,1200,129,210,40 +19900106,1200,157,100,1000 +19900106,1200,157,100,975 +19900106,1200,157,100,950 +19900106,1200,157,100,925 +19900106,1200,157,100,900 +19900106,1200,157,100,875 +19900106,1200,157,100,850 +19900106,1200,157,100,825 +19900106,1200,157,100,800 +19900106,1200,157,100,775 +19900106,1200,157,100,750 +19900106,1200,157,100,740 +19900106,1200,157,100,700 +19900106,1200,157,100,650 +19900106,1200,157,100,620 +19900106,1200,157,100,600 +19900106,1200,157,100,550 +19900106,1200,157,100,500 +19900106,1200,157,100,450 +19900106,1200,157,100,400 +19900106,1200,157,100,375 +19900106,1200,157,100,350 +19900106,1200,157,100,300 +19900106,1200,157,100,250 +19900106,1200,157,100,245 +19900106,1200,157,100,225 +19900106,1200,157,100,200 +19900106,1200,157,100,175 +19900106,1200,157,100,150 +19900106,1200,157,100,125 +19900106,1200,157,100,100 +19900106,1200,157,100,70 +19900106,1200,157,100,50 +19900106,1200,157,100,30 +19900106,1200,157,100,20 +19900106,1200,157,100,10 +19900106,1200,157,100,9 +19900106,1200,157,100,7 +19900106,1200,157,100,5 +19900106,1200,157,100,3 +19900106,1200,157,100,2 +19900106,1200,157,100,1 +19900106,1200,157,210,40 +19900106,1200,135,100,1000 +19900106,1200,135,100,975 +19900106,1200,135,100,950 +19900106,1200,135,100,925 +19900106,1200,135,100,900 +19900106,1200,135,100,875 +19900106,1200,135,100,850 +19900106,1200,135,100,825 +19900106,1200,135,100,800 +19900106,1200,135,100,775 +19900106,1200,135,100,750 +19900106,1200,135,100,740 +19900106,1200,135,100,700 +19900106,1200,135,100,650 +19900106,1200,135,100,620 +19900106,1200,135,100,600 +19900106,1200,135,100,550 +19900106,1200,135,100,500 +19900106,1200,135,100,450 +19900106,1200,135,100,400 +19900106,1200,135,100,375 +19900106,1200,135,100,350 +19900106,1200,135,100,300 +19900106,1200,135,100,250 +19900106,1200,135,100,245 +19900106,1200,135,100,225 +19900106,1200,135,100,200 +19900106,1200,135,100,175 +19900106,1200,135,100,150 +19900106,1200,135,100,125 +19900106,1200,135,100,100 +19900106,1200,135,100,70 +19900106,1200,135,100,50 +19900106,1200,135,100,30 +19900106,1200,135,100,20 +19900106,1200,135,100,10 +19900106,1200,135,100,9 +19900106,1200,135,100,7 +19900106,1200,135,100,5 +19900106,1200,135,100,3 +19900106,1200,135,100,2 +19900106,1200,135,100,1 +19900106,1200,135,210,40 +19900106,1200,138,100,1000 +19900106,1200,138,100,975 +19900106,1200,138,100,950 +19900106,1200,138,100,925 +19900106,1200,138,100,900 +19900106,1200,138,100,875 +19900106,1200,138,100,850 +19900106,1200,138,100,825 +19900106,1200,138,100,800 +19900106,1200,138,100,775 +19900106,1200,138,100,750 +19900106,1200,138,100,740 +19900106,1200,138,100,700 +19900106,1200,138,100,650 +19900106,1200,138,100,620 +19900106,1200,138,100,600 +19900106,1200,138,100,550 +19900106,1200,138,100,500 +19900106,1200,138,100,450 +19900106,1200,138,100,400 +19900106,1200,138,100,375 +19900106,1200,138,100,350 +19900106,1200,138,100,300 +19900106,1200,138,100,250 +19900106,1200,138,100,245 +19900106,1200,138,100,225 +19900106,1200,138,100,200 +19900106,1200,138,100,175 +19900106,1200,138,100,150 +19900106,1200,138,100,125 +19900106,1200,138,100,100 +19900106,1200,138,100,70 +19900106,1200,138,100,50 +19900106,1200,138,100,30 +19900106,1200,138,100,20 +19900106,1200,138,100,10 +19900106,1200,138,100,9 +19900106,1200,138,100,7 +19900106,1200,138,100,5 +19900106,1200,138,100,3 +19900106,1200,138,100,2 +19900106,1200,138,100,1 +19900106,1200,138,210,40 +19900106,1200,131,109,1 +19900106,1200,131,109,2 +19900106,1200,131,109,3 +19900106,1200,131,109,4 +19900106,1200,131,109,5 +19900106,1200,131,109,6 +19900106,1200,131,109,7 +19900106,1200,131,109,8 +19900106,1200,131,109,9 +19900106,1200,131,109,10 +19900106,1200,132,109,1 +19900106,1200,132,109,2 +19900106,1200,132,109,3 +19900106,1200,132,109,4 +19900106,1200,132,109,5 +19900106,1200,132,109,6 +19900106,1200,132,109,7 +19900106,1200,132,109,8 +19900106,1200,132,109,9 +19900106,1200,132,109,10 +19900106,1200,130,109,1 +19900106,1200,130,109,2 +19900106,1200,130,109,3 +19900106,1200,130,109,4 +19900106,1200,130,109,5 +19900106,1200,130,109,6 +19900106,1200,130,109,7 +19900106,1200,130,109,8 +19900106,1200,130,109,9 +19900106,1200,130,109,10 +19900106,1200,157,109,1 +19900106,1200,157,109,2 +19900106,1200,157,109,3 +19900106,1200,157,109,4 +19900106,1200,157,109,5 +19900106,1200,157,109,6 +19900106,1200,157,109,7 +19900106,1200,157,109,8 +19900106,1200,157,109,9 +19900106,1200,157,109,10 +19900106,1200,54,109,1 +19900106,1200,54,109,2 +19900106,1200,54,109,3 +19900106,1200,54,109,4 +19900106,1200,54,109,5 +19900106,1200,54,109,6 +19900106,1200,54,109,7 +19900106,1200,54,109,8 +19900106,1200,54,109,9 +19900106,1200,54,109,10 +19900106,1200,135,109,1 +19900106,1200,135,109,2 +19900106,1200,135,109,3 +19900106,1200,135,109,4 +19900106,1200,135,109,5 +19900106,1200,135,109,6 +19900106,1200,135,109,7 +19900106,1200,135,109,8 +19900106,1200,135,109,9 +19900106,1200,135,109,10 +19900106,1200,134,109,1 +19900106,1200,152,109,1 +19900106,1200,131,100,850 +19900106,1200,132,100,850 +19900106,1200,134,100,1000 +19900106,1200,152,100,1000 +19900106,1500,131,100,850 +19900106,1500,132,100,850 +19900106,1500,134,100,1000 +19900106,1500,152,100,1000 +19900106,1800,131,100,1000 +19900106,1800,131,100,975 +19900106,1800,131,100,950 +19900106,1800,131,100,925 +19900106,1800,131,100,900 +19900106,1800,131,100,875 +19900106,1800,131,100,825 +19900106,1800,131,100,800 +19900106,1800,131,100,775 +19900106,1800,131,100,750 +19900106,1800,131,100,740 +19900106,1800,131,100,700 +19900106,1800,131,100,650 +19900106,1800,131,100,620 +19900106,1800,131,100,600 +19900106,1800,131,100,550 +19900106,1800,131,100,500 +19900106,1800,131,100,450 +19900106,1800,131,100,400 +19900106,1800,131,100,375 +19900106,1800,131,100,350 +19900106,1800,131,100,300 +19900106,1800,131,100,250 +19900106,1800,131,100,245 +19900106,1800,131,100,225 +19900106,1800,131,100,200 +19900106,1800,131,100,175 +19900106,1800,131,100,150 +19900106,1800,131,100,125 +19900106,1800,131,100,100 +19900106,1800,131,100,70 +19900106,1800,131,100,50 +19900106,1800,131,100,30 +19900106,1800,131,100,20 +19900106,1800,131,100,10 +19900106,1800,131,100,9 +19900106,1800,131,100,7 +19900106,1800,131,100,5 +19900106,1800,131,100,3 +19900106,1800,131,100,2 +19900106,1800,131,100,1 +19900106,1800,131,210,40 +19900106,1800,132,100,1000 +19900106,1800,132,100,975 +19900106,1800,132,100,950 +19900106,1800,132,100,925 +19900106,1800,132,100,900 +19900106,1800,132,100,875 +19900106,1800,132,100,825 +19900106,1800,132,100,800 +19900106,1800,132,100,775 +19900106,1800,132,100,750 +19900106,1800,132,100,740 +19900106,1800,132,100,700 +19900106,1800,132,100,650 +19900106,1800,132,100,620 +19900106,1800,132,100,600 +19900106,1800,132,100,550 +19900106,1800,132,100,500 +19900106,1800,132,100,450 +19900106,1800,132,100,400 +19900106,1800,132,100,375 +19900106,1800,132,100,350 +19900106,1800,132,100,300 +19900106,1800,132,100,250 +19900106,1800,132,100,245 +19900106,1800,132,100,225 +19900106,1800,132,100,200 +19900106,1800,132,100,175 +19900106,1800,132,100,150 +19900106,1800,132,100,125 +19900106,1800,132,100,100 +19900106,1800,132,100,70 +19900106,1800,132,100,50 +19900106,1800,132,100,30 +19900106,1800,132,100,20 +19900106,1800,132,100,10 +19900106,1800,132,100,9 +19900106,1800,132,100,7 +19900106,1800,132,100,5 +19900106,1800,132,100,3 +19900106,1800,132,100,2 +19900106,1800,132,100,1 +19900106,1800,132,210,40 +19900106,1800,130,100,1000 +19900106,1800,130,100,975 +19900106,1800,130,100,950 +19900106,1800,130,100,925 +19900106,1800,130,100,900 +19900106,1800,130,100,875 +19900106,1800,130,100,850 +19900106,1800,130,100,825 +19900106,1800,130,100,800 +19900106,1800,130,100,775 +19900106,1800,130,100,750 +19900106,1800,130,100,740 +19900106,1800,130,100,700 +19900106,1800,130,100,650 +19900106,1800,130,100,620 +19900106,1800,130,100,600 +19900106,1800,130,100,550 +19900106,1800,130,100,500 +19900106,1800,130,100,450 +19900106,1800,130,100,400 +19900106,1800,130,100,375 +19900106,1800,130,100,350 +19900106,1800,130,100,300 +19900106,1800,130,100,250 +19900106,1800,130,100,245 +19900106,1800,130,100,225 +19900106,1800,130,100,200 +19900106,1800,130,100,175 +19900106,1800,130,100,150 +19900106,1800,130,100,125 +19900106,1800,130,100,100 +19900106,1800,130,100,70 +19900106,1800,130,100,50 +19900106,1800,130,100,30 +19900106,1800,130,100,20 +19900106,1800,130,100,10 +19900106,1800,130,100,9 +19900106,1800,130,100,7 +19900106,1800,130,100,5 +19900106,1800,130,100,3 +19900106,1800,130,100,2 +19900106,1800,130,100,1 +19900106,1800,130,210,40 +19900106,1800,129,100,1000 +19900106,1800,129,100,975 +19900106,1800,129,100,950 +19900106,1800,129,100,925 +19900106,1800,129,100,900 +19900106,1800,129,100,875 +19900106,1800,129,100,850 +19900106,1800,129,100,825 +19900106,1800,129,100,800 +19900106,1800,129,100,775 +19900106,1800,129,100,750 +19900106,1800,129,100,740 +19900106,1800,129,100,700 +19900106,1800,129,100,650 +19900106,1800,129,100,620 +19900106,1800,129,100,600 +19900106,1800,129,100,550 +19900106,1800,129,100,500 +19900106,1800,129,100,450 +19900106,1800,129,100,400 +19900106,1800,129,100,375 +19900106,1800,129,100,350 +19900106,1800,129,100,300 +19900106,1800,129,100,250 +19900106,1800,129,100,245 +19900106,1800,129,100,225 +19900106,1800,129,100,200 +19900106,1800,129,100,175 +19900106,1800,129,100,150 +19900106,1800,129,100,125 +19900106,1800,129,100,100 +19900106,1800,129,100,70 +19900106,1800,129,100,50 +19900106,1800,129,100,30 +19900106,1800,129,100,20 +19900106,1800,129,100,10 +19900106,1800,129,100,9 +19900106,1800,129,100,7 +19900106,1800,129,100,5 +19900106,1800,129,100,3 +19900106,1800,129,100,2 +19900106,1800,129,100,1 +19900106,1800,129,210,40 +19900106,1800,157,100,1000 +19900106,1800,157,100,975 +19900106,1800,157,100,950 +19900106,1800,157,100,925 +19900106,1800,157,100,900 +19900106,1800,157,100,875 +19900106,1800,157,100,850 +19900106,1800,157,100,825 +19900106,1800,157,100,800 +19900106,1800,157,100,775 +19900106,1800,157,100,750 +19900106,1800,157,100,740 +19900106,1800,157,100,700 +19900106,1800,157,100,650 +19900106,1800,157,100,620 +19900106,1800,157,100,600 +19900106,1800,157,100,550 +19900106,1800,157,100,500 +19900106,1800,157,100,450 +19900106,1800,157,100,400 +19900106,1800,157,100,375 +19900106,1800,157,100,350 +19900106,1800,157,100,300 +19900106,1800,157,100,250 +19900106,1800,157,100,245 +19900106,1800,157,100,225 +19900106,1800,157,100,200 +19900106,1800,157,100,175 +19900106,1800,157,100,150 +19900106,1800,157,100,125 +19900106,1800,157,100,100 +19900106,1800,157,100,70 +19900106,1800,157,100,50 +19900106,1800,157,100,30 +19900106,1800,157,100,20 +19900106,1800,157,100,10 +19900106,1800,157,100,9 +19900106,1800,157,100,7 +19900106,1800,157,100,5 +19900106,1800,157,100,3 +19900106,1800,157,100,2 +19900106,1800,157,100,1 +19900106,1800,157,210,40 +19900106,1800,135,100,1000 +19900106,1800,135,100,975 +19900106,1800,135,100,950 +19900106,1800,135,100,925 +19900106,1800,135,100,900 +19900106,1800,135,100,875 +19900106,1800,135,100,850 +19900106,1800,135,100,825 +19900106,1800,135,100,800 +19900106,1800,135,100,775 +19900106,1800,135,100,750 +19900106,1800,135,100,740 +19900106,1800,135,100,700 +19900106,1800,135,100,650 +19900106,1800,135,100,620 +19900106,1800,135,100,600 +19900106,1800,135,100,550 +19900106,1800,135,100,500 +19900106,1800,135,100,450 +19900106,1800,135,100,400 +19900106,1800,135,100,375 +19900106,1800,135,100,350 +19900106,1800,135,100,300 +19900106,1800,135,100,250 +19900106,1800,135,100,245 +19900106,1800,135,100,225 +19900106,1800,135,100,200 +19900106,1800,135,100,175 +19900106,1800,135,100,150 +19900106,1800,135,100,125 +19900106,1800,135,100,100 +19900106,1800,135,100,70 +19900106,1800,135,100,50 +19900106,1800,135,100,30 +19900106,1800,135,100,20 +19900106,1800,135,100,10 +19900106,1800,135,100,9 +19900106,1800,135,100,7 +19900106,1800,135,100,5 +19900106,1800,135,100,3 +19900106,1800,135,100,2 +19900106,1800,135,100,1 +19900106,1800,135,210,40 +19900106,1800,138,100,1000 +19900106,1800,138,100,975 +19900106,1800,138,100,950 +19900106,1800,138,100,925 +19900106,1800,138,100,900 +19900106,1800,138,100,875 +19900106,1800,138,100,850 +19900106,1800,138,100,825 +19900106,1800,138,100,800 +19900106,1800,138,100,775 +19900106,1800,138,100,750 +19900106,1800,138,100,740 +19900106,1800,138,100,700 +19900106,1800,138,100,650 +19900106,1800,138,100,620 +19900106,1800,138,100,600 +19900106,1800,138,100,550 +19900106,1800,138,100,500 +19900106,1800,138,100,450 +19900106,1800,138,100,400 +19900106,1800,138,100,375 +19900106,1800,138,100,350 +19900106,1800,138,100,300 +19900106,1800,138,100,250 +19900106,1800,138,100,245 +19900106,1800,138,100,225 +19900106,1800,138,100,200 +19900106,1800,138,100,175 +19900106,1800,138,100,150 +19900106,1800,138,100,125 +19900106,1800,138,100,100 +19900106,1800,138,100,70 +19900106,1800,138,100,50 +19900106,1800,138,100,30 +19900106,1800,138,100,20 +19900106,1800,138,100,10 +19900106,1800,138,100,9 +19900106,1800,138,100,7 +19900106,1800,138,100,5 +19900106,1800,138,100,3 +19900106,1800,138,100,2 +19900106,1800,138,100,1 +19900106,1800,138,210,40 +19900106,1800,131,109,1 +19900106,1800,131,109,2 +19900106,1800,131,109,3 +19900106,1800,131,109,4 +19900106,1800,131,109,5 +19900106,1800,131,109,6 +19900106,1800,131,109,7 +19900106,1800,131,109,8 +19900106,1800,131,109,9 +19900106,1800,131,109,10 +19900106,1800,132,109,1 +19900106,1800,132,109,2 +19900106,1800,132,109,3 +19900106,1800,132,109,4 +19900106,1800,132,109,5 +19900106,1800,132,109,6 +19900106,1800,132,109,7 +19900106,1800,132,109,8 +19900106,1800,132,109,9 +19900106,1800,132,109,10 +19900106,1800,130,109,1 +19900106,1800,130,109,2 +19900106,1800,130,109,3 +19900106,1800,130,109,4 +19900106,1800,130,109,5 +19900106,1800,130,109,6 +19900106,1800,130,109,7 +19900106,1800,130,109,8 +19900106,1800,130,109,9 +19900106,1800,130,109,10 +19900106,1800,157,109,1 +19900106,1800,157,109,2 +19900106,1800,157,109,3 +19900106,1800,157,109,4 +19900106,1800,157,109,5 +19900106,1800,157,109,6 +19900106,1800,157,109,7 +19900106,1800,157,109,8 +19900106,1800,157,109,9 +19900106,1800,157,109,10 +19900106,1800,54,109,1 +19900106,1800,54,109,2 +19900106,1800,54,109,3 +19900106,1800,54,109,4 +19900106,1800,54,109,5 +19900106,1800,54,109,6 +19900106,1800,54,109,7 +19900106,1800,54,109,8 +19900106,1800,54,109,9 +19900106,1800,54,109,10 +19900106,1800,135,109,1 +19900106,1800,135,109,2 +19900106,1800,135,109,3 +19900106,1800,135,109,4 +19900106,1800,135,109,5 +19900106,1800,135,109,6 +19900106,1800,135,109,7 +19900106,1800,135,109,8 +19900106,1800,135,109,9 +19900106,1800,135,109,10 +19900106,1800,134,109,1 +19900106,1800,152,109,1 +19900106,1800,131,100,850 +19900106,1800,132,100,850 +19900106,1800,134,100,1000 +19900106,1800,152,100,1000 +19900106,2100,131,100,850 +19900106,2100,132,100,850 +19900106,2100,134,100,1000 +19900106,2100,152,100,1000 +19900107,0,131,100,1000 +19900107,0,131,100,975 +19900107,0,131,100,950 +19900107,0,131,100,925 +19900107,0,131,100,900 +19900107,0,131,100,875 +19900107,0,131,100,825 +19900107,0,131,100,800 +19900107,0,131,100,775 +19900107,0,131,100,750 +19900107,0,131,100,740 +19900107,0,131,100,700 +19900107,0,131,100,650 +19900107,0,131,100,620 +19900107,0,131,100,600 +19900107,0,131,100,550 +19900107,0,131,100,500 +19900107,0,131,100,450 +19900107,0,131,100,400 +19900107,0,131,100,375 +19900107,0,131,100,350 +19900107,0,131,100,300 +19900107,0,131,100,250 +19900107,0,131,100,245 +19900107,0,131,100,225 +19900107,0,131,100,200 +19900107,0,131,100,175 +19900107,0,131,100,150 +19900107,0,131,100,125 +19900107,0,131,100,100 +19900107,0,131,100,70 +19900107,0,131,100,50 +19900107,0,131,100,30 +19900107,0,131,100,20 +19900107,0,131,100,10 +19900107,0,131,100,9 +19900107,0,131,100,7 +19900107,0,131,100,5 +19900107,0,131,100,3 +19900107,0,131,100,2 +19900107,0,131,100,1 +19900107,0,131,210,40 +19900107,0,132,100,1000 +19900107,0,132,100,975 +19900107,0,132,100,950 +19900107,0,132,100,925 +19900107,0,132,100,900 +19900107,0,132,100,875 +19900107,0,132,100,825 +19900107,0,132,100,800 +19900107,0,132,100,775 +19900107,0,132,100,750 +19900107,0,132,100,740 +19900107,0,132,100,700 +19900107,0,132,100,650 +19900107,0,132,100,620 +19900107,0,132,100,600 +19900107,0,132,100,550 +19900107,0,132,100,500 +19900107,0,132,100,450 +19900107,0,132,100,400 +19900107,0,132,100,375 +19900107,0,132,100,350 +19900107,0,132,100,300 +19900107,0,132,100,250 +19900107,0,132,100,245 +19900107,0,132,100,225 +19900107,0,132,100,200 +19900107,0,132,100,175 +19900107,0,132,100,150 +19900107,0,132,100,125 +19900107,0,132,100,100 +19900107,0,132,100,70 +19900107,0,132,100,50 +19900107,0,132,100,30 +19900107,0,132,100,20 +19900107,0,132,100,10 +19900107,0,132,100,9 +19900107,0,132,100,7 +19900107,0,132,100,5 +19900107,0,132,100,3 +19900107,0,132,100,2 +19900107,0,132,100,1 +19900107,0,132,210,40 +19900107,0,130,100,1000 +19900107,0,130,100,975 +19900107,0,130,100,950 +19900107,0,130,100,925 +19900107,0,130,100,900 +19900107,0,130,100,875 +19900107,0,130,100,850 +19900107,0,130,100,825 +19900107,0,130,100,800 +19900107,0,130,100,775 +19900107,0,130,100,750 +19900107,0,130,100,740 +19900107,0,130,100,700 +19900107,0,130,100,650 +19900107,0,130,100,620 +19900107,0,130,100,600 +19900107,0,130,100,550 +19900107,0,130,100,500 +19900107,0,130,100,450 +19900107,0,130,100,400 +19900107,0,130,100,375 +19900107,0,130,100,350 +19900107,0,130,100,300 +19900107,0,130,100,250 +19900107,0,130,100,245 +19900107,0,130,100,225 +19900107,0,130,100,200 +19900107,0,130,100,175 +19900107,0,130,100,150 +19900107,0,130,100,125 +19900107,0,130,100,100 +19900107,0,130,100,70 +19900107,0,130,100,50 +19900107,0,130,100,30 +19900107,0,130,100,20 +19900107,0,130,100,10 +19900107,0,130,100,9 +19900107,0,130,100,7 +19900107,0,130,100,5 +19900107,0,130,100,3 +19900107,0,130,100,2 +19900107,0,130,100,1 +19900107,0,130,210,40 +19900107,0,129,100,1000 +19900107,0,129,100,975 +19900107,0,129,100,950 +19900107,0,129,100,925 +19900107,0,129,100,900 +19900107,0,129,100,875 +19900107,0,129,100,850 +19900107,0,129,100,825 +19900107,0,129,100,800 +19900107,0,129,100,775 +19900107,0,129,100,750 +19900107,0,129,100,740 +19900107,0,129,100,700 +19900107,0,129,100,650 +19900107,0,129,100,620 +19900107,0,129,100,600 +19900107,0,129,100,550 +19900107,0,129,100,500 +19900107,0,129,100,450 +19900107,0,129,100,400 +19900107,0,129,100,375 +19900107,0,129,100,350 +19900107,0,129,100,300 +19900107,0,129,100,250 +19900107,0,129,100,245 +19900107,0,129,100,225 +19900107,0,129,100,200 +19900107,0,129,100,175 +19900107,0,129,100,150 +19900107,0,129,100,125 +19900107,0,129,100,100 +19900107,0,129,100,70 +19900107,0,129,100,50 +19900107,0,129,100,30 +19900107,0,129,100,20 +19900107,0,129,100,10 +19900107,0,129,100,9 +19900107,0,129,100,7 +19900107,0,129,100,5 +19900107,0,129,100,3 +19900107,0,129,100,2 +19900107,0,129,100,1 +19900107,0,129,210,40 +19900107,0,157,100,1000 +19900107,0,157,100,975 +19900107,0,157,100,950 +19900107,0,157,100,925 +19900107,0,157,100,900 +19900107,0,157,100,875 +19900107,0,157,100,850 +19900107,0,157,100,825 +19900107,0,157,100,800 +19900107,0,157,100,775 +19900107,0,157,100,750 +19900107,0,157,100,740 +19900107,0,157,100,700 +19900107,0,157,100,650 +19900107,0,157,100,620 +19900107,0,157,100,600 +19900107,0,157,100,550 +19900107,0,157,100,500 +19900107,0,157,100,450 +19900107,0,157,100,400 +19900107,0,157,100,375 +19900107,0,157,100,350 +19900107,0,157,100,300 +19900107,0,157,100,250 +19900107,0,157,100,245 +19900107,0,157,100,225 +19900107,0,157,100,200 +19900107,0,157,100,175 +19900107,0,157,100,150 +19900107,0,157,100,125 +19900107,0,157,100,100 +19900107,0,157,100,70 +19900107,0,157,100,50 +19900107,0,157,100,30 +19900107,0,157,100,20 +19900107,0,157,100,10 +19900107,0,157,100,9 +19900107,0,157,100,7 +19900107,0,157,100,5 +19900107,0,157,100,3 +19900107,0,157,100,2 +19900107,0,157,100,1 +19900107,0,157,210,40 +19900107,0,135,100,1000 +19900107,0,135,100,975 +19900107,0,135,100,950 +19900107,0,135,100,925 +19900107,0,135,100,900 +19900107,0,135,100,875 +19900107,0,135,100,850 +19900107,0,135,100,825 +19900107,0,135,100,800 +19900107,0,135,100,775 +19900107,0,135,100,750 +19900107,0,135,100,740 +19900107,0,135,100,700 +19900107,0,135,100,650 +19900107,0,135,100,620 +19900107,0,135,100,600 +19900107,0,135,100,550 +19900107,0,135,100,500 +19900107,0,135,100,450 +19900107,0,135,100,400 +19900107,0,135,100,375 +19900107,0,135,100,350 +19900107,0,135,100,300 +19900107,0,135,100,250 +19900107,0,135,100,245 +19900107,0,135,100,225 +19900107,0,135,100,200 +19900107,0,135,100,175 +19900107,0,135,100,150 +19900107,0,135,100,125 +19900107,0,135,100,100 +19900107,0,135,100,70 +19900107,0,135,100,50 +19900107,0,135,100,30 +19900107,0,135,100,20 +19900107,0,135,100,10 +19900107,0,135,100,9 +19900107,0,135,100,7 +19900107,0,135,100,5 +19900107,0,135,100,3 +19900107,0,135,100,2 +19900107,0,135,100,1 +19900107,0,135,210,40 +19900107,0,138,100,1000 +19900107,0,138,100,975 +19900107,0,138,100,950 +19900107,0,138,100,925 +19900107,0,138,100,900 +19900107,0,138,100,875 +19900107,0,138,100,850 +19900107,0,138,100,825 +19900107,0,138,100,800 +19900107,0,138,100,775 +19900107,0,138,100,750 +19900107,0,138,100,740 +19900107,0,138,100,700 +19900107,0,138,100,650 +19900107,0,138,100,620 +19900107,0,138,100,600 +19900107,0,138,100,550 +19900107,0,138,100,500 +19900107,0,138,100,450 +19900107,0,138,100,400 +19900107,0,138,100,375 +19900107,0,138,100,350 +19900107,0,138,100,300 +19900107,0,138,100,250 +19900107,0,138,100,245 +19900107,0,138,100,225 +19900107,0,138,100,200 +19900107,0,138,100,175 +19900107,0,138,100,150 +19900107,0,138,100,125 +19900107,0,138,100,100 +19900107,0,138,100,70 +19900107,0,138,100,50 +19900107,0,138,100,30 +19900107,0,138,100,20 +19900107,0,138,100,10 +19900107,0,138,100,9 +19900107,0,138,100,7 +19900107,0,138,100,5 +19900107,0,138,100,3 +19900107,0,138,100,2 +19900107,0,138,100,1 +19900107,0,138,210,40 +19900107,0,131,109,1 +19900107,0,131,109,2 +19900107,0,131,109,3 +19900107,0,131,109,4 +19900107,0,131,109,5 +19900107,0,131,109,6 +19900107,0,131,109,7 +19900107,0,131,109,8 +19900107,0,131,109,9 +19900107,0,131,109,10 +19900107,0,132,109,1 +19900107,0,132,109,2 +19900107,0,132,109,3 +19900107,0,132,109,4 +19900107,0,132,109,5 +19900107,0,132,109,6 +19900107,0,132,109,7 +19900107,0,132,109,8 +19900107,0,132,109,9 +19900107,0,132,109,10 +19900107,0,130,109,1 +19900107,0,130,109,2 +19900107,0,130,109,3 +19900107,0,130,109,4 +19900107,0,130,109,5 +19900107,0,130,109,6 +19900107,0,130,109,7 +19900107,0,130,109,8 +19900107,0,130,109,9 +19900107,0,130,109,10 +19900107,0,157,109,1 +19900107,0,157,109,2 +19900107,0,157,109,3 +19900107,0,157,109,4 +19900107,0,157,109,5 +19900107,0,157,109,6 +19900107,0,157,109,7 +19900107,0,157,109,8 +19900107,0,157,109,9 +19900107,0,157,109,10 +19900107,0,54,109,1 +19900107,0,54,109,2 +19900107,0,54,109,3 +19900107,0,54,109,4 +19900107,0,54,109,5 +19900107,0,54,109,6 +19900107,0,54,109,7 +19900107,0,54,109,8 +19900107,0,54,109,9 +19900107,0,54,109,10 +19900107,0,135,109,1 +19900107,0,135,109,2 +19900107,0,135,109,3 +19900107,0,135,109,4 +19900107,0,135,109,5 +19900107,0,135,109,6 +19900107,0,135,109,7 +19900107,0,135,109,8 +19900107,0,135,109,9 +19900107,0,135,109,10 +19900107,0,134,109,1 +19900107,0,152,109,1 +19900107,0,131,100,850 +19900107,0,132,100,850 +19900107,0,134,100,1000 +19900107,0,152,100,1000 +19900107,300,131,100,850 +19900107,300,132,100,850 +19900107,300,134,100,1000 +19900107,300,152,100,1000 +19900107,600,131,100,1000 +19900107,600,131,100,975 +19900107,600,131,100,950 +19900107,600,131,100,925 +19900107,600,131,100,900 +19900107,600,131,100,875 +19900107,600,131,100,825 +19900107,600,131,100,800 +19900107,600,131,100,775 +19900107,600,131,100,750 +19900107,600,131,100,740 +19900107,600,131,100,700 +19900107,600,131,100,650 +19900107,600,131,100,620 +19900107,600,131,100,600 +19900107,600,131,100,550 +19900107,600,131,100,500 +19900107,600,131,100,450 +19900107,600,131,100,400 +19900107,600,131,100,375 +19900107,600,131,100,350 +19900107,600,131,100,300 +19900107,600,131,100,250 +19900107,600,131,100,245 +19900107,600,131,100,225 +19900107,600,131,100,200 +19900107,600,131,100,175 +19900107,600,131,100,150 +19900107,600,131,100,125 +19900107,600,131,100,100 +19900107,600,131,100,70 +19900107,600,131,100,50 +19900107,600,131,100,30 +19900107,600,131,100,20 +19900107,600,131,100,10 +19900107,600,131,100,9 +19900107,600,131,100,7 +19900107,600,131,100,5 +19900107,600,131,100,3 +19900107,600,131,100,2 +19900107,600,131,100,1 +19900107,600,131,210,40 +19900107,600,132,100,1000 +19900107,600,132,100,975 +19900107,600,132,100,950 +19900107,600,132,100,925 +19900107,600,132,100,900 +19900107,600,132,100,875 +19900107,600,132,100,825 +19900107,600,132,100,800 +19900107,600,132,100,775 +19900107,600,132,100,750 +19900107,600,132,100,740 +19900107,600,132,100,700 +19900107,600,132,100,650 +19900107,600,132,100,620 +19900107,600,132,100,600 +19900107,600,132,100,550 +19900107,600,132,100,500 +19900107,600,132,100,450 +19900107,600,132,100,400 +19900107,600,132,100,375 +19900107,600,132,100,350 +19900107,600,132,100,300 +19900107,600,132,100,250 +19900107,600,132,100,245 +19900107,600,132,100,225 +19900107,600,132,100,200 +19900107,600,132,100,175 +19900107,600,132,100,150 +19900107,600,132,100,125 +19900107,600,132,100,100 +19900107,600,132,100,70 +19900107,600,132,100,50 +19900107,600,132,100,30 +19900107,600,132,100,20 +19900107,600,132,100,10 +19900107,600,132,100,9 +19900107,600,132,100,7 +19900107,600,132,100,5 +19900107,600,132,100,3 +19900107,600,132,100,2 +19900107,600,132,100,1 +19900107,600,132,210,40 +19900107,600,130,100,1000 +19900107,600,130,100,975 +19900107,600,130,100,950 +19900107,600,130,100,925 +19900107,600,130,100,900 +19900107,600,130,100,875 +19900107,600,130,100,850 +19900107,600,130,100,825 +19900107,600,130,100,800 +19900107,600,130,100,775 +19900107,600,130,100,750 +19900107,600,130,100,740 +19900107,600,130,100,700 +19900107,600,130,100,650 +19900107,600,130,100,620 +19900107,600,130,100,600 +19900107,600,130,100,550 +19900107,600,130,100,500 +19900107,600,130,100,450 +19900107,600,130,100,400 +19900107,600,130,100,375 +19900107,600,130,100,350 +19900107,600,130,100,300 +19900107,600,130,100,250 +19900107,600,130,100,245 +19900107,600,130,100,225 +19900107,600,130,100,200 +19900107,600,130,100,175 +19900107,600,130,100,150 +19900107,600,130,100,125 +19900107,600,130,100,100 +19900107,600,130,100,70 +19900107,600,130,100,50 +19900107,600,130,100,30 +19900107,600,130,100,20 +19900107,600,130,100,10 +19900107,600,130,100,9 +19900107,600,130,100,7 +19900107,600,130,100,5 +19900107,600,130,100,3 +19900107,600,130,100,2 +19900107,600,130,100,1 +19900107,600,130,210,40 +19900107,600,129,100,1000 +19900107,600,129,100,975 +19900107,600,129,100,950 +19900107,600,129,100,925 +19900107,600,129,100,900 +19900107,600,129,100,875 +19900107,600,129,100,850 +19900107,600,129,100,825 +19900107,600,129,100,800 +19900107,600,129,100,775 +19900107,600,129,100,750 +19900107,600,129,100,740 +19900107,600,129,100,700 +19900107,600,129,100,650 +19900107,600,129,100,620 +19900107,600,129,100,600 +19900107,600,129,100,550 +19900107,600,129,100,500 +19900107,600,129,100,450 +19900107,600,129,100,400 +19900107,600,129,100,375 +19900107,600,129,100,350 +19900107,600,129,100,300 +19900107,600,129,100,250 +19900107,600,129,100,245 +19900107,600,129,100,225 +19900107,600,129,100,200 +19900107,600,129,100,175 +19900107,600,129,100,150 +19900107,600,129,100,125 +19900107,600,129,100,100 +19900107,600,129,100,70 +19900107,600,129,100,50 +19900107,600,129,100,30 +19900107,600,129,100,20 +19900107,600,129,100,10 +19900107,600,129,100,9 +19900107,600,129,100,7 +19900107,600,129,100,5 +19900107,600,129,100,3 +19900107,600,129,100,2 +19900107,600,129,100,1 +19900107,600,129,210,40 +19900107,600,157,100,1000 +19900107,600,157,100,975 +19900107,600,157,100,950 +19900107,600,157,100,925 +19900107,600,157,100,900 +19900107,600,157,100,875 +19900107,600,157,100,850 +19900107,600,157,100,825 +19900107,600,157,100,800 +19900107,600,157,100,775 +19900107,600,157,100,750 +19900107,600,157,100,740 +19900107,600,157,100,700 +19900107,600,157,100,650 +19900107,600,157,100,620 +19900107,600,157,100,600 +19900107,600,157,100,550 +19900107,600,157,100,500 +19900107,600,157,100,450 +19900107,600,157,100,400 +19900107,600,157,100,375 +19900107,600,157,100,350 +19900107,600,157,100,300 +19900107,600,157,100,250 +19900107,600,157,100,245 +19900107,600,157,100,225 +19900107,600,157,100,200 +19900107,600,157,100,175 +19900107,600,157,100,150 +19900107,600,157,100,125 +19900107,600,157,100,100 +19900107,600,157,100,70 +19900107,600,157,100,50 +19900107,600,157,100,30 +19900107,600,157,100,20 +19900107,600,157,100,10 +19900107,600,157,100,9 +19900107,600,157,100,7 +19900107,600,157,100,5 +19900107,600,157,100,3 +19900107,600,157,100,2 +19900107,600,157,100,1 +19900107,600,157,210,40 +19900107,600,135,100,1000 +19900107,600,135,100,975 +19900107,600,135,100,950 +19900107,600,135,100,925 +19900107,600,135,100,900 +19900107,600,135,100,875 +19900107,600,135,100,850 +19900107,600,135,100,825 +19900107,600,135,100,800 +19900107,600,135,100,775 +19900107,600,135,100,750 +19900107,600,135,100,740 +19900107,600,135,100,700 +19900107,600,135,100,650 +19900107,600,135,100,620 +19900107,600,135,100,600 +19900107,600,135,100,550 +19900107,600,135,100,500 +19900107,600,135,100,450 +19900107,600,135,100,400 +19900107,600,135,100,375 +19900107,600,135,100,350 +19900107,600,135,100,300 +19900107,600,135,100,250 +19900107,600,135,100,245 +19900107,600,135,100,225 +19900107,600,135,100,200 +19900107,600,135,100,175 +19900107,600,135,100,150 +19900107,600,135,100,125 +19900107,600,135,100,100 +19900107,600,135,100,70 +19900107,600,135,100,50 +19900107,600,135,100,30 +19900107,600,135,100,20 +19900107,600,135,100,10 +19900107,600,135,100,9 +19900107,600,135,100,7 +19900107,600,135,100,5 +19900107,600,135,100,3 +19900107,600,135,100,2 +19900107,600,135,100,1 +19900107,600,135,210,40 +19900107,600,138,100,1000 +19900107,600,138,100,975 +19900107,600,138,100,950 +19900107,600,138,100,925 +19900107,600,138,100,900 +19900107,600,138,100,875 +19900107,600,138,100,850 +19900107,600,138,100,825 +19900107,600,138,100,800 +19900107,600,138,100,775 +19900107,600,138,100,750 +19900107,600,138,100,740 +19900107,600,138,100,700 +19900107,600,138,100,650 +19900107,600,138,100,620 +19900107,600,138,100,600 +19900107,600,138,100,550 +19900107,600,138,100,500 +19900107,600,138,100,450 +19900107,600,138,100,400 +19900107,600,138,100,375 +19900107,600,138,100,350 +19900107,600,138,100,300 +19900107,600,138,100,250 +19900107,600,138,100,245 +19900107,600,138,100,225 +19900107,600,138,100,200 +19900107,600,138,100,175 +19900107,600,138,100,150 +19900107,600,138,100,125 +19900107,600,138,100,100 +19900107,600,138,100,70 +19900107,600,138,100,50 +19900107,600,138,100,30 +19900107,600,138,100,20 +19900107,600,138,100,10 +19900107,600,138,100,9 +19900107,600,138,100,7 +19900107,600,138,100,5 +19900107,600,138,100,3 +19900107,600,138,100,2 +19900107,600,138,100,1 +19900107,600,138,210,40 +19900107,600,131,109,1 +19900107,600,131,109,2 +19900107,600,131,109,3 +19900107,600,131,109,4 +19900107,600,131,109,5 +19900107,600,131,109,6 +19900107,600,131,109,7 +19900107,600,131,109,8 +19900107,600,131,109,9 +19900107,600,131,109,10 +19900107,600,132,109,1 +19900107,600,132,109,2 +19900107,600,132,109,3 +19900107,600,132,109,4 +19900107,600,132,109,5 +19900107,600,132,109,6 +19900107,600,132,109,7 +19900107,600,132,109,8 +19900107,600,132,109,9 +19900107,600,132,109,10 +19900107,600,130,109,1 +19900107,600,130,109,2 +19900107,600,130,109,3 +19900107,600,130,109,4 +19900107,600,130,109,5 +19900107,600,130,109,6 +19900107,600,130,109,7 +19900107,600,130,109,8 +19900107,600,130,109,9 +19900107,600,130,109,10 +19900107,600,157,109,1 +19900107,600,157,109,2 +19900107,600,157,109,3 +19900107,600,157,109,4 +19900107,600,157,109,5 +19900107,600,157,109,6 +19900107,600,157,109,7 +19900107,600,157,109,8 +19900107,600,157,109,9 +19900107,600,157,109,10 +19900107,600,54,109,1 +19900107,600,54,109,2 +19900107,600,54,109,3 +19900107,600,54,109,4 +19900107,600,54,109,5 +19900107,600,54,109,6 +19900107,600,54,109,7 +19900107,600,54,109,8 +19900107,600,54,109,9 +19900107,600,54,109,10 +19900107,600,135,109,1 +19900107,600,135,109,2 +19900107,600,135,109,3 +19900107,600,135,109,4 +19900107,600,135,109,5 +19900107,600,135,109,6 +19900107,600,135,109,7 +19900107,600,135,109,8 +19900107,600,135,109,9 +19900107,600,135,109,10 +19900107,600,134,109,1 +19900107,600,152,109,1 +19900107,600,131,100,850 +19900107,600,132,100,850 +19900107,600,134,100,1000 +19900107,600,152,100,1000 +19900107,900,131,100,850 +19900107,900,132,100,850 +19900107,900,134,100,1000 +19900107,900,152,100,1000 +19900107,1200,131,100,1000 +19900107,1200,131,100,975 +19900107,1200,131,100,950 +19900107,1200,131,100,925 +19900107,1200,131,100,900 +19900107,1200,131,100,875 +19900107,1200,131,100,825 +19900107,1200,131,100,800 +19900107,1200,131,100,775 +19900107,1200,131,100,750 +19900107,1200,131,100,740 +19900107,1200,131,100,700 +19900107,1200,131,100,650 +19900107,1200,131,100,620 +19900107,1200,131,100,600 +19900107,1200,131,100,550 +19900107,1200,131,100,500 +19900107,1200,131,100,450 +19900107,1200,131,100,400 +19900107,1200,131,100,375 +19900107,1200,131,100,350 +19900107,1200,131,100,300 +19900107,1200,131,100,250 +19900107,1200,131,100,245 +19900107,1200,131,100,225 +19900107,1200,131,100,200 +19900107,1200,131,100,175 +19900107,1200,131,100,150 +19900107,1200,131,100,125 +19900107,1200,131,100,100 +19900107,1200,131,100,70 +19900107,1200,131,100,50 +19900107,1200,131,100,30 +19900107,1200,131,100,20 +19900107,1200,131,100,10 +19900107,1200,131,100,9 +19900107,1200,131,100,7 +19900107,1200,131,100,5 +19900107,1200,131,100,3 +19900107,1200,131,100,2 +19900107,1200,131,100,1 +19900107,1200,131,210,40 +19900107,1200,132,100,1000 +19900107,1200,132,100,975 +19900107,1200,132,100,950 +19900107,1200,132,100,925 +19900107,1200,132,100,900 +19900107,1200,132,100,875 +19900107,1200,132,100,825 +19900107,1200,132,100,800 +19900107,1200,132,100,775 +19900107,1200,132,100,750 +19900107,1200,132,100,740 +19900107,1200,132,100,700 +19900107,1200,132,100,650 +19900107,1200,132,100,620 +19900107,1200,132,100,600 +19900107,1200,132,100,550 +19900107,1200,132,100,500 +19900107,1200,132,100,450 +19900107,1200,132,100,400 +19900107,1200,132,100,375 +19900107,1200,132,100,350 +19900107,1200,132,100,300 +19900107,1200,132,100,250 +19900107,1200,132,100,245 +19900107,1200,132,100,225 +19900107,1200,132,100,200 +19900107,1200,132,100,175 +19900107,1200,132,100,150 +19900107,1200,132,100,125 +19900107,1200,132,100,100 +19900107,1200,132,100,70 +19900107,1200,132,100,50 +19900107,1200,132,100,30 +19900107,1200,132,100,20 +19900107,1200,132,100,10 +19900107,1200,132,100,9 +19900107,1200,132,100,7 +19900107,1200,132,100,5 +19900107,1200,132,100,3 +19900107,1200,132,100,2 +19900107,1200,132,100,1 +19900107,1200,132,210,40 +19900107,1200,130,100,1000 +19900107,1200,130,100,975 +19900107,1200,130,100,950 +19900107,1200,130,100,925 +19900107,1200,130,100,900 +19900107,1200,130,100,875 +19900107,1200,130,100,850 +19900107,1200,130,100,825 +19900107,1200,130,100,800 +19900107,1200,130,100,775 +19900107,1200,130,100,750 +19900107,1200,130,100,740 +19900107,1200,130,100,700 +19900107,1200,130,100,650 +19900107,1200,130,100,620 +19900107,1200,130,100,600 +19900107,1200,130,100,550 +19900107,1200,130,100,500 +19900107,1200,130,100,450 +19900107,1200,130,100,400 +19900107,1200,130,100,375 +19900107,1200,130,100,350 +19900107,1200,130,100,300 +19900107,1200,130,100,250 +19900107,1200,130,100,245 +19900107,1200,130,100,225 +19900107,1200,130,100,200 +19900107,1200,130,100,175 +19900107,1200,130,100,150 +19900107,1200,130,100,125 +19900107,1200,130,100,100 +19900107,1200,130,100,70 +19900107,1200,130,100,50 +19900107,1200,130,100,30 +19900107,1200,130,100,20 +19900107,1200,130,100,10 +19900107,1200,130,100,9 +19900107,1200,130,100,7 +19900107,1200,130,100,5 +19900107,1200,130,100,3 +19900107,1200,130,100,2 +19900107,1200,130,100,1 +19900107,1200,130,210,40 +19900107,1200,129,100,1000 +19900107,1200,129,100,975 +19900107,1200,129,100,950 +19900107,1200,129,100,925 +19900107,1200,129,100,900 +19900107,1200,129,100,875 +19900107,1200,129,100,850 +19900107,1200,129,100,825 +19900107,1200,129,100,800 +19900107,1200,129,100,775 +19900107,1200,129,100,750 +19900107,1200,129,100,740 +19900107,1200,129,100,700 +19900107,1200,129,100,650 +19900107,1200,129,100,620 +19900107,1200,129,100,600 +19900107,1200,129,100,550 +19900107,1200,129,100,500 +19900107,1200,129,100,450 +19900107,1200,129,100,400 +19900107,1200,129,100,375 +19900107,1200,129,100,350 +19900107,1200,129,100,300 +19900107,1200,129,100,250 +19900107,1200,129,100,245 +19900107,1200,129,100,225 +19900107,1200,129,100,200 +19900107,1200,129,100,175 +19900107,1200,129,100,150 +19900107,1200,129,100,125 +19900107,1200,129,100,100 +19900107,1200,129,100,70 +19900107,1200,129,100,50 +19900107,1200,129,100,30 +19900107,1200,129,100,20 +19900107,1200,129,100,10 +19900107,1200,129,100,9 +19900107,1200,129,100,7 +19900107,1200,129,100,5 +19900107,1200,129,100,3 +19900107,1200,129,100,2 +19900107,1200,129,100,1 +19900107,1200,129,210,40 +19900107,1200,157,100,1000 +19900107,1200,157,100,975 +19900107,1200,157,100,950 +19900107,1200,157,100,925 +19900107,1200,157,100,900 +19900107,1200,157,100,875 +19900107,1200,157,100,850 +19900107,1200,157,100,825 +19900107,1200,157,100,800 +19900107,1200,157,100,775 +19900107,1200,157,100,750 +19900107,1200,157,100,740 +19900107,1200,157,100,700 +19900107,1200,157,100,650 +19900107,1200,157,100,620 +19900107,1200,157,100,600 +19900107,1200,157,100,550 +19900107,1200,157,100,500 +19900107,1200,157,100,450 +19900107,1200,157,100,400 +19900107,1200,157,100,375 +19900107,1200,157,100,350 +19900107,1200,157,100,300 +19900107,1200,157,100,250 +19900107,1200,157,100,245 +19900107,1200,157,100,225 +19900107,1200,157,100,200 +19900107,1200,157,100,175 +19900107,1200,157,100,150 +19900107,1200,157,100,125 +19900107,1200,157,100,100 +19900107,1200,157,100,70 +19900107,1200,157,100,50 +19900107,1200,157,100,30 +19900107,1200,157,100,20 +19900107,1200,157,100,10 +19900107,1200,157,100,9 +19900107,1200,157,100,7 +19900107,1200,157,100,5 +19900107,1200,157,100,3 +19900107,1200,157,100,2 +19900107,1200,157,100,1 +19900107,1200,157,210,40 +19900107,1200,135,100,1000 +19900107,1200,135,100,975 +19900107,1200,135,100,950 +19900107,1200,135,100,925 +19900107,1200,135,100,900 +19900107,1200,135,100,875 +19900107,1200,135,100,850 +19900107,1200,135,100,825 +19900107,1200,135,100,800 +19900107,1200,135,100,775 +19900107,1200,135,100,750 +19900107,1200,135,100,740 +19900107,1200,135,100,700 +19900107,1200,135,100,650 +19900107,1200,135,100,620 +19900107,1200,135,100,600 +19900107,1200,135,100,550 +19900107,1200,135,100,500 +19900107,1200,135,100,450 +19900107,1200,135,100,400 +19900107,1200,135,100,375 +19900107,1200,135,100,350 +19900107,1200,135,100,300 +19900107,1200,135,100,250 +19900107,1200,135,100,245 +19900107,1200,135,100,225 +19900107,1200,135,100,200 +19900107,1200,135,100,175 +19900107,1200,135,100,150 +19900107,1200,135,100,125 +19900107,1200,135,100,100 +19900107,1200,135,100,70 +19900107,1200,135,100,50 +19900107,1200,135,100,30 +19900107,1200,135,100,20 +19900107,1200,135,100,10 +19900107,1200,135,100,9 +19900107,1200,135,100,7 +19900107,1200,135,100,5 +19900107,1200,135,100,3 +19900107,1200,135,100,2 +19900107,1200,135,100,1 +19900107,1200,135,210,40 +19900107,1200,138,100,1000 +19900107,1200,138,100,975 +19900107,1200,138,100,950 +19900107,1200,138,100,925 +19900107,1200,138,100,900 +19900107,1200,138,100,875 +19900107,1200,138,100,850 +19900107,1200,138,100,825 +19900107,1200,138,100,800 +19900107,1200,138,100,775 +19900107,1200,138,100,750 +19900107,1200,138,100,740 +19900107,1200,138,100,700 +19900107,1200,138,100,650 +19900107,1200,138,100,620 +19900107,1200,138,100,600 +19900107,1200,138,100,550 +19900107,1200,138,100,500 +19900107,1200,138,100,450 +19900107,1200,138,100,400 +19900107,1200,138,100,375 +19900107,1200,138,100,350 +19900107,1200,138,100,300 +19900107,1200,138,100,250 +19900107,1200,138,100,245 +19900107,1200,138,100,225 +19900107,1200,138,100,200 +19900107,1200,138,100,175 +19900107,1200,138,100,150 +19900107,1200,138,100,125 +19900107,1200,138,100,100 +19900107,1200,138,100,70 +19900107,1200,138,100,50 +19900107,1200,138,100,30 +19900107,1200,138,100,20 +19900107,1200,138,100,10 +19900107,1200,138,100,9 +19900107,1200,138,100,7 +19900107,1200,138,100,5 +19900107,1200,138,100,3 +19900107,1200,138,100,2 +19900107,1200,138,100,1 +19900107,1200,138,210,40 +19900107,1200,131,109,1 +19900107,1200,131,109,2 +19900107,1200,131,109,3 +19900107,1200,131,109,4 +19900107,1200,131,109,5 +19900107,1200,131,109,6 +19900107,1200,131,109,7 +19900107,1200,131,109,8 +19900107,1200,131,109,9 +19900107,1200,131,109,10 +19900107,1200,132,109,1 +19900107,1200,132,109,2 +19900107,1200,132,109,3 +19900107,1200,132,109,4 +19900107,1200,132,109,5 +19900107,1200,132,109,6 +19900107,1200,132,109,7 +19900107,1200,132,109,8 +19900107,1200,132,109,9 +19900107,1200,132,109,10 +19900107,1200,130,109,1 +19900107,1200,130,109,2 +19900107,1200,130,109,3 +19900107,1200,130,109,4 +19900107,1200,130,109,5 +19900107,1200,130,109,6 +19900107,1200,130,109,7 +19900107,1200,130,109,8 +19900107,1200,130,109,9 +19900107,1200,130,109,10 +19900107,1200,157,109,1 +19900107,1200,157,109,2 +19900107,1200,157,109,3 +19900107,1200,157,109,4 +19900107,1200,157,109,5 +19900107,1200,157,109,6 +19900107,1200,157,109,7 +19900107,1200,157,109,8 +19900107,1200,157,109,9 +19900107,1200,157,109,10 +19900107,1200,54,109,1 +19900107,1200,54,109,2 +19900107,1200,54,109,3 +19900107,1200,54,109,4 +19900107,1200,54,109,5 +19900107,1200,54,109,6 +19900107,1200,54,109,7 +19900107,1200,54,109,8 +19900107,1200,54,109,9 +19900107,1200,54,109,10 +19900107,1200,135,109,1 +19900107,1200,135,109,2 +19900107,1200,135,109,3 +19900107,1200,135,109,4 +19900107,1200,135,109,5 +19900107,1200,135,109,6 +19900107,1200,135,109,7 +19900107,1200,135,109,8 +19900107,1200,135,109,9 +19900107,1200,135,109,10 +19900107,1200,134,109,1 +19900107,1200,152,109,1 +19900107,1200,131,100,850 +19900107,1200,132,100,850 +19900107,1200,134,100,1000 +19900107,1200,152,100,1000 +19900107,1500,131,100,850 +19900107,1500,132,100,850 +19900107,1500,134,100,1000 +19900107,1500,152,100,1000 +19900107,1800,131,100,1000 +19900107,1800,131,100,975 +19900107,1800,131,100,950 +19900107,1800,131,100,925 +19900107,1800,131,100,900 +19900107,1800,131,100,875 +19900107,1800,131,100,825 +19900107,1800,131,100,800 +19900107,1800,131,100,775 +19900107,1800,131,100,750 +19900107,1800,131,100,740 +19900107,1800,131,100,700 +19900107,1800,131,100,650 +19900107,1800,131,100,620 +19900107,1800,131,100,600 +19900107,1800,131,100,550 +19900107,1800,131,100,500 +19900107,1800,131,100,450 +19900107,1800,131,100,400 +19900107,1800,131,100,375 +19900107,1800,131,100,350 +19900107,1800,131,100,300 +19900107,1800,131,100,250 +19900107,1800,131,100,245 +19900107,1800,131,100,225 +19900107,1800,131,100,200 +19900107,1800,131,100,175 +19900107,1800,131,100,150 +19900107,1800,131,100,125 +19900107,1800,131,100,100 +19900107,1800,131,100,70 +19900107,1800,131,100,50 +19900107,1800,131,100,30 +19900107,1800,131,100,20 +19900107,1800,131,100,10 +19900107,1800,131,100,9 +19900107,1800,131,100,7 +19900107,1800,131,100,5 +19900107,1800,131,100,3 +19900107,1800,131,100,2 +19900107,1800,131,100,1 +19900107,1800,131,210,40 +19900107,1800,132,100,1000 +19900107,1800,132,100,975 +19900107,1800,132,100,950 +19900107,1800,132,100,925 +19900107,1800,132,100,900 +19900107,1800,132,100,875 +19900107,1800,132,100,825 +19900107,1800,132,100,800 +19900107,1800,132,100,775 +19900107,1800,132,100,750 +19900107,1800,132,100,740 +19900107,1800,132,100,700 +19900107,1800,132,100,650 +19900107,1800,132,100,620 +19900107,1800,132,100,600 +19900107,1800,132,100,550 +19900107,1800,132,100,500 +19900107,1800,132,100,450 +19900107,1800,132,100,400 +19900107,1800,132,100,375 +19900107,1800,132,100,350 +19900107,1800,132,100,300 +19900107,1800,132,100,250 +19900107,1800,132,100,245 +19900107,1800,132,100,225 +19900107,1800,132,100,200 +19900107,1800,132,100,175 +19900107,1800,132,100,150 +19900107,1800,132,100,125 +19900107,1800,132,100,100 +19900107,1800,132,100,70 +19900107,1800,132,100,50 +19900107,1800,132,100,30 +19900107,1800,132,100,20 +19900107,1800,132,100,10 +19900107,1800,132,100,9 +19900107,1800,132,100,7 +19900107,1800,132,100,5 +19900107,1800,132,100,3 +19900107,1800,132,100,2 +19900107,1800,132,100,1 +19900107,1800,132,210,40 +19900107,1800,130,100,1000 +19900107,1800,130,100,975 +19900107,1800,130,100,950 +19900107,1800,130,100,925 +19900107,1800,130,100,900 +19900107,1800,130,100,875 +19900107,1800,130,100,850 +19900107,1800,130,100,825 +19900107,1800,130,100,800 +19900107,1800,130,100,775 +19900107,1800,130,100,750 +19900107,1800,130,100,740 +19900107,1800,130,100,700 +19900107,1800,130,100,650 +19900107,1800,130,100,620 +19900107,1800,130,100,600 +19900107,1800,130,100,550 +19900107,1800,130,100,500 +19900107,1800,130,100,450 +19900107,1800,130,100,400 +19900107,1800,130,100,375 +19900107,1800,130,100,350 +19900107,1800,130,100,300 +19900107,1800,130,100,250 +19900107,1800,130,100,245 +19900107,1800,130,100,225 +19900107,1800,130,100,200 +19900107,1800,130,100,175 +19900107,1800,130,100,150 +19900107,1800,130,100,125 +19900107,1800,130,100,100 +19900107,1800,130,100,70 +19900107,1800,130,100,50 +19900107,1800,130,100,30 +19900107,1800,130,100,20 +19900107,1800,130,100,10 +19900107,1800,130,100,9 +19900107,1800,130,100,7 +19900107,1800,130,100,5 +19900107,1800,130,100,3 +19900107,1800,130,100,2 +19900107,1800,130,100,1 +19900107,1800,130,210,40 +19900107,1800,129,100,1000 +19900107,1800,129,100,975 +19900107,1800,129,100,950 +19900107,1800,129,100,925 +19900107,1800,129,100,900 +19900107,1800,129,100,875 +19900107,1800,129,100,850 +19900107,1800,129,100,825 +19900107,1800,129,100,800 +19900107,1800,129,100,775 +19900107,1800,129,100,750 +19900107,1800,129,100,740 +19900107,1800,129,100,700 +19900107,1800,129,100,650 +19900107,1800,129,100,620 +19900107,1800,129,100,600 +19900107,1800,129,100,550 +19900107,1800,129,100,500 +19900107,1800,129,100,450 +19900107,1800,129,100,400 +19900107,1800,129,100,375 +19900107,1800,129,100,350 +19900107,1800,129,100,300 +19900107,1800,129,100,250 +19900107,1800,129,100,245 +19900107,1800,129,100,225 +19900107,1800,129,100,200 +19900107,1800,129,100,175 +19900107,1800,129,100,150 +19900107,1800,129,100,125 +19900107,1800,129,100,100 +19900107,1800,129,100,70 +19900107,1800,129,100,50 +19900107,1800,129,100,30 +19900107,1800,129,100,20 +19900107,1800,129,100,10 +19900107,1800,129,100,9 +19900107,1800,129,100,7 +19900107,1800,129,100,5 +19900107,1800,129,100,3 +19900107,1800,129,100,2 +19900107,1800,129,100,1 +19900107,1800,129,210,40 +19900107,1800,157,100,1000 +19900107,1800,157,100,975 +19900107,1800,157,100,950 +19900107,1800,157,100,925 +19900107,1800,157,100,900 +19900107,1800,157,100,875 +19900107,1800,157,100,850 +19900107,1800,157,100,825 +19900107,1800,157,100,800 +19900107,1800,157,100,775 +19900107,1800,157,100,750 +19900107,1800,157,100,740 +19900107,1800,157,100,700 +19900107,1800,157,100,650 +19900107,1800,157,100,620 +19900107,1800,157,100,600 +19900107,1800,157,100,550 +19900107,1800,157,100,500 +19900107,1800,157,100,450 +19900107,1800,157,100,400 +19900107,1800,157,100,375 +19900107,1800,157,100,350 +19900107,1800,157,100,300 +19900107,1800,157,100,250 +19900107,1800,157,100,245 +19900107,1800,157,100,225 +19900107,1800,157,100,200 +19900107,1800,157,100,175 +19900107,1800,157,100,150 +19900107,1800,157,100,125 +19900107,1800,157,100,100 +19900107,1800,157,100,70 +19900107,1800,157,100,50 +19900107,1800,157,100,30 +19900107,1800,157,100,20 +19900107,1800,157,100,10 +19900107,1800,157,100,9 +19900107,1800,157,100,7 +19900107,1800,157,100,5 +19900107,1800,157,100,3 +19900107,1800,157,100,2 +19900107,1800,157,100,1 +19900107,1800,157,210,40 +19900107,1800,135,100,1000 +19900107,1800,135,100,975 +19900107,1800,135,100,950 +19900107,1800,135,100,925 +19900107,1800,135,100,900 +19900107,1800,135,100,875 +19900107,1800,135,100,850 +19900107,1800,135,100,825 +19900107,1800,135,100,800 +19900107,1800,135,100,775 +19900107,1800,135,100,750 +19900107,1800,135,100,740 +19900107,1800,135,100,700 +19900107,1800,135,100,650 +19900107,1800,135,100,620 +19900107,1800,135,100,600 +19900107,1800,135,100,550 +19900107,1800,135,100,500 +19900107,1800,135,100,450 +19900107,1800,135,100,400 +19900107,1800,135,100,375 +19900107,1800,135,100,350 +19900107,1800,135,100,300 +19900107,1800,135,100,250 +19900107,1800,135,100,245 +19900107,1800,135,100,225 +19900107,1800,135,100,200 +19900107,1800,135,100,175 +19900107,1800,135,100,150 +19900107,1800,135,100,125 +19900107,1800,135,100,100 +19900107,1800,135,100,70 +19900107,1800,135,100,50 +19900107,1800,135,100,30 +19900107,1800,135,100,20 +19900107,1800,135,100,10 +19900107,1800,135,100,9 +19900107,1800,135,100,7 +19900107,1800,135,100,5 +19900107,1800,135,100,3 +19900107,1800,135,100,2 +19900107,1800,135,100,1 +19900107,1800,135,210,40 +19900107,1800,138,100,1000 +19900107,1800,138,100,975 +19900107,1800,138,100,950 +19900107,1800,138,100,925 +19900107,1800,138,100,900 +19900107,1800,138,100,875 +19900107,1800,138,100,850 +19900107,1800,138,100,825 +19900107,1800,138,100,800 +19900107,1800,138,100,775 +19900107,1800,138,100,750 +19900107,1800,138,100,740 +19900107,1800,138,100,700 +19900107,1800,138,100,650 +19900107,1800,138,100,620 +19900107,1800,138,100,600 +19900107,1800,138,100,550 +19900107,1800,138,100,500 +19900107,1800,138,100,450 +19900107,1800,138,100,400 +19900107,1800,138,100,375 +19900107,1800,138,100,350 +19900107,1800,138,100,300 +19900107,1800,138,100,250 +19900107,1800,138,100,245 +19900107,1800,138,100,225 +19900107,1800,138,100,200 +19900107,1800,138,100,175 +19900107,1800,138,100,150 +19900107,1800,138,100,125 +19900107,1800,138,100,100 +19900107,1800,138,100,70 +19900107,1800,138,100,50 +19900107,1800,138,100,30 +19900107,1800,138,100,20 +19900107,1800,138,100,10 +19900107,1800,138,100,9 +19900107,1800,138,100,7 +19900107,1800,138,100,5 +19900107,1800,138,100,3 +19900107,1800,138,100,2 +19900107,1800,138,100,1 +19900107,1800,138,210,40 +19900107,1800,131,109,1 +19900107,1800,131,109,2 +19900107,1800,131,109,3 +19900107,1800,131,109,4 +19900107,1800,131,109,5 +19900107,1800,131,109,6 +19900107,1800,131,109,7 +19900107,1800,131,109,8 +19900107,1800,131,109,9 +19900107,1800,131,109,10 +19900107,1800,132,109,1 +19900107,1800,132,109,2 +19900107,1800,132,109,3 +19900107,1800,132,109,4 +19900107,1800,132,109,5 +19900107,1800,132,109,6 +19900107,1800,132,109,7 +19900107,1800,132,109,8 +19900107,1800,132,109,9 +19900107,1800,132,109,10 +19900107,1800,130,109,1 +19900107,1800,130,109,2 +19900107,1800,130,109,3 +19900107,1800,130,109,4 +19900107,1800,130,109,5 +19900107,1800,130,109,6 +19900107,1800,130,109,7 +19900107,1800,130,109,8 +19900107,1800,130,109,9 +19900107,1800,130,109,10 +19900107,1800,157,109,1 +19900107,1800,157,109,2 +19900107,1800,157,109,3 +19900107,1800,157,109,4 +19900107,1800,157,109,5 +19900107,1800,157,109,6 +19900107,1800,157,109,7 +19900107,1800,157,109,8 +19900107,1800,157,109,9 +19900107,1800,157,109,10 +19900107,1800,54,109,1 +19900107,1800,54,109,2 +19900107,1800,54,109,3 +19900107,1800,54,109,4 +19900107,1800,54,109,5 +19900107,1800,54,109,6 +19900107,1800,54,109,7 +19900107,1800,54,109,8 +19900107,1800,54,109,9 +19900107,1800,54,109,10 +19900107,1800,135,109,1 +19900107,1800,135,109,2 +19900107,1800,135,109,3 +19900107,1800,135,109,4 +19900107,1800,135,109,5 +19900107,1800,135,109,6 +19900107,1800,135,109,7 +19900107,1800,135,109,8 +19900107,1800,135,109,9 +19900107,1800,135,109,10 +19900107,1800,134,109,1 +19900107,1800,152,109,1 +19900107,1800,131,100,850 +19900107,1800,132,100,850 +19900107,1800,134,100,1000 +19900107,1800,152,100,1000 +19900107,2100,131,100,850 +19900107,2100,132,100,850 +19900107,2100,134,100,1000 +19900107,2100,152,100,1000 +19900108,0,131,100,1000 +19900108,0,131,100,975 +19900108,0,131,100,950 +19900108,0,131,100,925 +19900108,0,131,100,900 +19900108,0,131,100,875 +19900108,0,131,100,825 +19900108,0,131,100,800 +19900108,0,131,100,775 +19900108,0,131,100,750 +19900108,0,131,100,740 +19900108,0,131,100,700 +19900108,0,131,100,650 +19900108,0,131,100,620 +19900108,0,131,100,600 +19900108,0,131,100,550 +19900108,0,131,100,500 +19900108,0,131,100,450 +19900108,0,131,100,400 +19900108,0,131,100,375 +19900108,0,131,100,350 +19900108,0,131,100,300 +19900108,0,131,100,250 +19900108,0,131,100,245 +19900108,0,131,100,225 +19900108,0,131,100,200 +19900108,0,131,100,175 +19900108,0,131,100,150 +19900108,0,131,100,125 +19900108,0,131,100,100 +19900108,0,131,100,70 +19900108,0,131,100,50 +19900108,0,131,100,30 +19900108,0,131,100,20 +19900108,0,131,100,10 +19900108,0,131,100,9 +19900108,0,131,100,7 +19900108,0,131,100,5 +19900108,0,131,100,3 +19900108,0,131,100,2 +19900108,0,131,100,1 +19900108,0,131,210,40 +19900108,0,132,100,1000 +19900108,0,132,100,975 +19900108,0,132,100,950 +19900108,0,132,100,925 +19900108,0,132,100,900 +19900108,0,132,100,875 +19900108,0,132,100,825 +19900108,0,132,100,800 +19900108,0,132,100,775 +19900108,0,132,100,750 +19900108,0,132,100,740 +19900108,0,132,100,700 +19900108,0,132,100,650 +19900108,0,132,100,620 +19900108,0,132,100,600 +19900108,0,132,100,550 +19900108,0,132,100,500 +19900108,0,132,100,450 +19900108,0,132,100,400 +19900108,0,132,100,375 +19900108,0,132,100,350 +19900108,0,132,100,300 +19900108,0,132,100,250 +19900108,0,132,100,245 +19900108,0,132,100,225 +19900108,0,132,100,200 +19900108,0,132,100,175 +19900108,0,132,100,150 +19900108,0,132,100,125 +19900108,0,132,100,100 +19900108,0,132,100,70 +19900108,0,132,100,50 +19900108,0,132,100,30 +19900108,0,132,100,20 +19900108,0,132,100,10 +19900108,0,132,100,9 +19900108,0,132,100,7 +19900108,0,132,100,5 +19900108,0,132,100,3 +19900108,0,132,100,2 +19900108,0,132,100,1 +19900108,0,132,210,40 +19900108,0,130,100,1000 +19900108,0,130,100,975 +19900108,0,130,100,950 +19900108,0,130,100,925 +19900108,0,130,100,900 +19900108,0,130,100,875 +19900108,0,130,100,850 +19900108,0,130,100,825 +19900108,0,130,100,800 +19900108,0,130,100,775 +19900108,0,130,100,750 +19900108,0,130,100,740 +19900108,0,130,100,700 +19900108,0,130,100,650 +19900108,0,130,100,620 +19900108,0,130,100,600 +19900108,0,130,100,550 +19900108,0,130,100,500 +19900108,0,130,100,450 +19900108,0,130,100,400 +19900108,0,130,100,375 +19900108,0,130,100,350 +19900108,0,130,100,300 +19900108,0,130,100,250 +19900108,0,130,100,245 +19900108,0,130,100,225 +19900108,0,130,100,200 +19900108,0,130,100,175 +19900108,0,130,100,150 +19900108,0,130,100,125 +19900108,0,130,100,100 +19900108,0,130,100,70 +19900108,0,130,100,50 +19900108,0,130,100,30 +19900108,0,130,100,20 +19900108,0,130,100,10 +19900108,0,130,100,9 +19900108,0,130,100,7 +19900108,0,130,100,5 +19900108,0,130,100,3 +19900108,0,130,100,2 +19900108,0,130,100,1 +19900108,0,130,210,40 +19900108,0,129,100,1000 +19900108,0,129,100,975 +19900108,0,129,100,950 +19900108,0,129,100,925 +19900108,0,129,100,900 +19900108,0,129,100,875 +19900108,0,129,100,850 +19900108,0,129,100,825 +19900108,0,129,100,800 +19900108,0,129,100,775 +19900108,0,129,100,750 +19900108,0,129,100,740 +19900108,0,129,100,700 +19900108,0,129,100,650 +19900108,0,129,100,620 +19900108,0,129,100,600 +19900108,0,129,100,550 +19900108,0,129,100,500 +19900108,0,129,100,450 +19900108,0,129,100,400 +19900108,0,129,100,375 +19900108,0,129,100,350 +19900108,0,129,100,300 +19900108,0,129,100,250 +19900108,0,129,100,245 +19900108,0,129,100,225 +19900108,0,129,100,200 +19900108,0,129,100,175 +19900108,0,129,100,150 +19900108,0,129,100,125 +19900108,0,129,100,100 +19900108,0,129,100,70 +19900108,0,129,100,50 +19900108,0,129,100,30 +19900108,0,129,100,20 +19900108,0,129,100,10 +19900108,0,129,100,9 +19900108,0,129,100,7 +19900108,0,129,100,5 +19900108,0,129,100,3 +19900108,0,129,100,2 +19900108,0,129,100,1 +19900108,0,129,210,40 +19900108,0,157,100,1000 +19900108,0,157,100,975 +19900108,0,157,100,950 +19900108,0,157,100,925 +19900108,0,157,100,900 +19900108,0,157,100,875 +19900108,0,157,100,850 +19900108,0,157,100,825 +19900108,0,157,100,800 +19900108,0,157,100,775 +19900108,0,157,100,750 +19900108,0,157,100,740 +19900108,0,157,100,700 +19900108,0,157,100,650 +19900108,0,157,100,620 +19900108,0,157,100,600 +19900108,0,157,100,550 +19900108,0,157,100,500 +19900108,0,157,100,450 +19900108,0,157,100,400 +19900108,0,157,100,375 +19900108,0,157,100,350 +19900108,0,157,100,300 +19900108,0,157,100,250 +19900108,0,157,100,245 +19900108,0,157,100,225 +19900108,0,157,100,200 +19900108,0,157,100,175 +19900108,0,157,100,150 +19900108,0,157,100,125 +19900108,0,157,100,100 +19900108,0,157,100,70 +19900108,0,157,100,50 +19900108,0,157,100,30 +19900108,0,157,100,20 +19900108,0,157,100,10 +19900108,0,157,100,9 +19900108,0,157,100,7 +19900108,0,157,100,5 +19900108,0,157,100,3 +19900108,0,157,100,2 +19900108,0,157,100,1 +19900108,0,157,210,40 +19900108,0,135,100,1000 +19900108,0,135,100,975 +19900108,0,135,100,950 +19900108,0,135,100,925 +19900108,0,135,100,900 +19900108,0,135,100,875 +19900108,0,135,100,850 +19900108,0,135,100,825 +19900108,0,135,100,800 +19900108,0,135,100,775 +19900108,0,135,100,750 +19900108,0,135,100,740 +19900108,0,135,100,700 +19900108,0,135,100,650 +19900108,0,135,100,620 +19900108,0,135,100,600 +19900108,0,135,100,550 +19900108,0,135,100,500 +19900108,0,135,100,450 +19900108,0,135,100,400 +19900108,0,135,100,375 +19900108,0,135,100,350 +19900108,0,135,100,300 +19900108,0,135,100,250 +19900108,0,135,100,245 +19900108,0,135,100,225 +19900108,0,135,100,200 +19900108,0,135,100,175 +19900108,0,135,100,150 +19900108,0,135,100,125 +19900108,0,135,100,100 +19900108,0,135,100,70 +19900108,0,135,100,50 +19900108,0,135,100,30 +19900108,0,135,100,20 +19900108,0,135,100,10 +19900108,0,135,100,9 +19900108,0,135,100,7 +19900108,0,135,100,5 +19900108,0,135,100,3 +19900108,0,135,100,2 +19900108,0,135,100,1 +19900108,0,135,210,40 +19900108,0,138,100,1000 +19900108,0,138,100,975 +19900108,0,138,100,950 +19900108,0,138,100,925 +19900108,0,138,100,900 +19900108,0,138,100,875 +19900108,0,138,100,850 +19900108,0,138,100,825 +19900108,0,138,100,800 +19900108,0,138,100,775 +19900108,0,138,100,750 +19900108,0,138,100,740 +19900108,0,138,100,700 +19900108,0,138,100,650 +19900108,0,138,100,620 +19900108,0,138,100,600 +19900108,0,138,100,550 +19900108,0,138,100,500 +19900108,0,138,100,450 +19900108,0,138,100,400 +19900108,0,138,100,375 +19900108,0,138,100,350 +19900108,0,138,100,300 +19900108,0,138,100,250 +19900108,0,138,100,245 +19900108,0,138,100,225 +19900108,0,138,100,200 +19900108,0,138,100,175 +19900108,0,138,100,150 +19900108,0,138,100,125 +19900108,0,138,100,100 +19900108,0,138,100,70 +19900108,0,138,100,50 +19900108,0,138,100,30 +19900108,0,138,100,20 +19900108,0,138,100,10 +19900108,0,138,100,9 +19900108,0,138,100,7 +19900108,0,138,100,5 +19900108,0,138,100,3 +19900108,0,138,100,2 +19900108,0,138,100,1 +19900108,0,138,210,40 +19900108,0,131,109,1 +19900108,0,131,109,2 +19900108,0,131,109,3 +19900108,0,131,109,4 +19900108,0,131,109,5 +19900108,0,131,109,6 +19900108,0,131,109,7 +19900108,0,131,109,8 +19900108,0,131,109,9 +19900108,0,131,109,10 +19900108,0,132,109,1 +19900108,0,132,109,2 +19900108,0,132,109,3 +19900108,0,132,109,4 +19900108,0,132,109,5 +19900108,0,132,109,6 +19900108,0,132,109,7 +19900108,0,132,109,8 +19900108,0,132,109,9 +19900108,0,132,109,10 +19900108,0,130,109,1 +19900108,0,130,109,2 +19900108,0,130,109,3 +19900108,0,130,109,4 +19900108,0,130,109,5 +19900108,0,130,109,6 +19900108,0,130,109,7 +19900108,0,130,109,8 +19900108,0,130,109,9 +19900108,0,130,109,10 +19900108,0,157,109,1 +19900108,0,157,109,2 +19900108,0,157,109,3 +19900108,0,157,109,4 +19900108,0,157,109,5 +19900108,0,157,109,6 +19900108,0,157,109,7 +19900108,0,157,109,8 +19900108,0,157,109,9 +19900108,0,157,109,10 +19900108,0,54,109,1 +19900108,0,54,109,2 +19900108,0,54,109,3 +19900108,0,54,109,4 +19900108,0,54,109,5 +19900108,0,54,109,6 +19900108,0,54,109,7 +19900108,0,54,109,8 +19900108,0,54,109,9 +19900108,0,54,109,10 +19900108,0,135,109,1 +19900108,0,135,109,2 +19900108,0,135,109,3 +19900108,0,135,109,4 +19900108,0,135,109,5 +19900108,0,135,109,6 +19900108,0,135,109,7 +19900108,0,135,109,8 +19900108,0,135,109,9 +19900108,0,135,109,10 +19900108,0,134,109,1 +19900108,0,152,109,1 +19900108,0,131,100,850 +19900108,0,132,100,850 +19900108,0,134,100,1000 +19900108,0,152,100,1000 +19900108,300,131,100,850 +19900108,300,132,100,850 +19900108,300,134,100,1000 +19900108,300,152,100,1000 +19900108,600,131,100,1000 +19900108,600,131,100,975 +19900108,600,131,100,950 +19900108,600,131,100,925 +19900108,600,131,100,900 +19900108,600,131,100,875 +19900108,600,131,100,825 +19900108,600,131,100,800 +19900108,600,131,100,775 +19900108,600,131,100,750 +19900108,600,131,100,740 +19900108,600,131,100,700 +19900108,600,131,100,650 +19900108,600,131,100,620 +19900108,600,131,100,600 +19900108,600,131,100,550 +19900108,600,131,100,500 +19900108,600,131,100,450 +19900108,600,131,100,400 +19900108,600,131,100,375 +19900108,600,131,100,350 +19900108,600,131,100,300 +19900108,600,131,100,250 +19900108,600,131,100,245 +19900108,600,131,100,225 +19900108,600,131,100,200 +19900108,600,131,100,175 +19900108,600,131,100,150 +19900108,600,131,100,125 +19900108,600,131,100,100 +19900108,600,131,100,70 +19900108,600,131,100,50 +19900108,600,131,100,30 +19900108,600,131,100,20 +19900108,600,131,100,10 +19900108,600,131,100,9 +19900108,600,131,100,7 +19900108,600,131,100,5 +19900108,600,131,100,3 +19900108,600,131,100,2 +19900108,600,131,100,1 +19900108,600,131,210,40 +19900108,600,132,100,1000 +19900108,600,132,100,975 +19900108,600,132,100,950 +19900108,600,132,100,925 +19900108,600,132,100,900 +19900108,600,132,100,875 +19900108,600,132,100,825 +19900108,600,132,100,800 +19900108,600,132,100,775 +19900108,600,132,100,750 +19900108,600,132,100,740 +19900108,600,132,100,700 +19900108,600,132,100,650 +19900108,600,132,100,620 +19900108,600,132,100,600 +19900108,600,132,100,550 +19900108,600,132,100,500 +19900108,600,132,100,450 +19900108,600,132,100,400 +19900108,600,132,100,375 +19900108,600,132,100,350 +19900108,600,132,100,300 +19900108,600,132,100,250 +19900108,600,132,100,245 +19900108,600,132,100,225 +19900108,600,132,100,200 +19900108,600,132,100,175 +19900108,600,132,100,150 +19900108,600,132,100,125 +19900108,600,132,100,100 +19900108,600,132,100,70 +19900108,600,132,100,50 +19900108,600,132,100,30 +19900108,600,132,100,20 +19900108,600,132,100,10 +19900108,600,132,100,9 +19900108,600,132,100,7 +19900108,600,132,100,5 +19900108,600,132,100,3 +19900108,600,132,100,2 +19900108,600,132,100,1 +19900108,600,132,210,40 +19900108,600,130,100,1000 +19900108,600,130,100,975 +19900108,600,130,100,950 +19900108,600,130,100,925 +19900108,600,130,100,900 +19900108,600,130,100,875 +19900108,600,130,100,850 +19900108,600,130,100,825 +19900108,600,130,100,800 +19900108,600,130,100,775 +19900108,600,130,100,750 +19900108,600,130,100,740 +19900108,600,130,100,700 +19900108,600,130,100,650 +19900108,600,130,100,620 +19900108,600,130,100,600 +19900108,600,130,100,550 +19900108,600,130,100,500 +19900108,600,130,100,450 +19900108,600,130,100,400 +19900108,600,130,100,375 +19900108,600,130,100,350 +19900108,600,130,100,300 +19900108,600,130,100,250 +19900108,600,130,100,245 +19900108,600,130,100,225 +19900108,600,130,100,200 +19900108,600,130,100,175 +19900108,600,130,100,150 +19900108,600,130,100,125 +19900108,600,130,100,100 +19900108,600,130,100,70 +19900108,600,130,100,50 +19900108,600,130,100,30 +19900108,600,130,100,20 +19900108,600,130,100,10 +19900108,600,130,100,9 +19900108,600,130,100,7 +19900108,600,130,100,5 +19900108,600,130,100,3 +19900108,600,130,100,2 +19900108,600,130,100,1 +19900108,600,130,210,40 +19900108,600,129,100,1000 +19900108,600,129,100,975 +19900108,600,129,100,950 +19900108,600,129,100,925 +19900108,600,129,100,900 +19900108,600,129,100,875 +19900108,600,129,100,850 +19900108,600,129,100,825 +19900108,600,129,100,800 +19900108,600,129,100,775 +19900108,600,129,100,750 +19900108,600,129,100,740 +19900108,600,129,100,700 +19900108,600,129,100,650 +19900108,600,129,100,620 +19900108,600,129,100,600 +19900108,600,129,100,550 +19900108,600,129,100,500 +19900108,600,129,100,450 +19900108,600,129,100,400 +19900108,600,129,100,375 +19900108,600,129,100,350 +19900108,600,129,100,300 +19900108,600,129,100,250 +19900108,600,129,100,245 +19900108,600,129,100,225 +19900108,600,129,100,200 +19900108,600,129,100,175 +19900108,600,129,100,150 +19900108,600,129,100,125 +19900108,600,129,100,100 +19900108,600,129,100,70 +19900108,600,129,100,50 +19900108,600,129,100,30 +19900108,600,129,100,20 +19900108,600,129,100,10 +19900108,600,129,100,9 +19900108,600,129,100,7 +19900108,600,129,100,5 +19900108,600,129,100,3 +19900108,600,129,100,2 +19900108,600,129,100,1 +19900108,600,129,210,40 +19900108,600,157,100,1000 +19900108,600,157,100,975 +19900108,600,157,100,950 +19900108,600,157,100,925 +19900108,600,157,100,900 +19900108,600,157,100,875 +19900108,600,157,100,850 +19900108,600,157,100,825 +19900108,600,157,100,800 +19900108,600,157,100,775 +19900108,600,157,100,750 +19900108,600,157,100,740 +19900108,600,157,100,700 +19900108,600,157,100,650 +19900108,600,157,100,620 +19900108,600,157,100,600 +19900108,600,157,100,550 +19900108,600,157,100,500 +19900108,600,157,100,450 +19900108,600,157,100,400 +19900108,600,157,100,375 +19900108,600,157,100,350 +19900108,600,157,100,300 +19900108,600,157,100,250 +19900108,600,157,100,245 +19900108,600,157,100,225 +19900108,600,157,100,200 +19900108,600,157,100,175 +19900108,600,157,100,150 +19900108,600,157,100,125 +19900108,600,157,100,100 +19900108,600,157,100,70 +19900108,600,157,100,50 +19900108,600,157,100,30 +19900108,600,157,100,20 +19900108,600,157,100,10 +19900108,600,157,100,9 +19900108,600,157,100,7 +19900108,600,157,100,5 +19900108,600,157,100,3 +19900108,600,157,100,2 +19900108,600,157,100,1 +19900108,600,157,210,40 +19900108,600,135,100,1000 +19900108,600,135,100,975 +19900108,600,135,100,950 +19900108,600,135,100,925 +19900108,600,135,100,900 +19900108,600,135,100,875 +19900108,600,135,100,850 +19900108,600,135,100,825 +19900108,600,135,100,800 +19900108,600,135,100,775 +19900108,600,135,100,750 +19900108,600,135,100,740 +19900108,600,135,100,700 +19900108,600,135,100,650 +19900108,600,135,100,620 +19900108,600,135,100,600 +19900108,600,135,100,550 +19900108,600,135,100,500 +19900108,600,135,100,450 +19900108,600,135,100,400 +19900108,600,135,100,375 +19900108,600,135,100,350 +19900108,600,135,100,300 +19900108,600,135,100,250 +19900108,600,135,100,245 +19900108,600,135,100,225 +19900108,600,135,100,200 +19900108,600,135,100,175 +19900108,600,135,100,150 +19900108,600,135,100,125 +19900108,600,135,100,100 +19900108,600,135,100,70 +19900108,600,135,100,50 +19900108,600,135,100,30 +19900108,600,135,100,20 +19900108,600,135,100,10 +19900108,600,135,100,9 +19900108,600,135,100,7 +19900108,600,135,100,5 +19900108,600,135,100,3 +19900108,600,135,100,2 +19900108,600,135,100,1 +19900108,600,135,210,40 +19900108,600,138,100,1000 +19900108,600,138,100,975 +19900108,600,138,100,950 +19900108,600,138,100,925 +19900108,600,138,100,900 +19900108,600,138,100,875 +19900108,600,138,100,850 +19900108,600,138,100,825 +19900108,600,138,100,800 +19900108,600,138,100,775 +19900108,600,138,100,750 +19900108,600,138,100,740 +19900108,600,138,100,700 +19900108,600,138,100,650 +19900108,600,138,100,620 +19900108,600,138,100,600 +19900108,600,138,100,550 +19900108,600,138,100,500 +19900108,600,138,100,450 +19900108,600,138,100,400 +19900108,600,138,100,375 +19900108,600,138,100,350 +19900108,600,138,100,300 +19900108,600,138,100,250 +19900108,600,138,100,245 +19900108,600,138,100,225 +19900108,600,138,100,200 +19900108,600,138,100,175 +19900108,600,138,100,150 +19900108,600,138,100,125 +19900108,600,138,100,100 +19900108,600,138,100,70 +19900108,600,138,100,50 +19900108,600,138,100,30 +19900108,600,138,100,20 +19900108,600,138,100,10 +19900108,600,138,100,9 +19900108,600,138,100,7 +19900108,600,138,100,5 +19900108,600,138,100,3 +19900108,600,138,100,2 +19900108,600,138,100,1 +19900108,600,138,210,40 +19900108,600,131,109,1 +19900108,600,131,109,2 +19900108,600,131,109,3 +19900108,600,131,109,4 +19900108,600,131,109,5 +19900108,600,131,109,6 +19900108,600,131,109,7 +19900108,600,131,109,8 +19900108,600,131,109,9 +19900108,600,131,109,10 +19900108,600,132,109,1 +19900108,600,132,109,2 +19900108,600,132,109,3 +19900108,600,132,109,4 +19900108,600,132,109,5 +19900108,600,132,109,6 +19900108,600,132,109,7 +19900108,600,132,109,8 +19900108,600,132,109,9 +19900108,600,132,109,10 +19900108,600,130,109,1 +19900108,600,130,109,2 +19900108,600,130,109,3 +19900108,600,130,109,4 +19900108,600,130,109,5 +19900108,600,130,109,6 +19900108,600,130,109,7 +19900108,600,130,109,8 +19900108,600,130,109,9 +19900108,600,130,109,10 +19900108,600,157,109,1 +19900108,600,157,109,2 +19900108,600,157,109,3 +19900108,600,157,109,4 +19900108,600,157,109,5 +19900108,600,157,109,6 +19900108,600,157,109,7 +19900108,600,157,109,8 +19900108,600,157,109,9 +19900108,600,157,109,10 +19900108,600,54,109,1 +19900108,600,54,109,2 +19900108,600,54,109,3 +19900108,600,54,109,4 +19900108,600,54,109,5 +19900108,600,54,109,6 +19900108,600,54,109,7 +19900108,600,54,109,8 +19900108,600,54,109,9 +19900108,600,54,109,10 +19900108,600,135,109,1 +19900108,600,135,109,2 +19900108,600,135,109,3 +19900108,600,135,109,4 +19900108,600,135,109,5 +19900108,600,135,109,6 +19900108,600,135,109,7 +19900108,600,135,109,8 +19900108,600,135,109,9 +19900108,600,135,109,10 +19900108,600,134,109,1 +19900108,600,152,109,1 +19900108,600,131,100,850 +19900108,600,132,100,850 +19900108,600,134,100,1000 +19900108,600,152,100,1000 +19900108,900,131,100,850 +19900108,900,132,100,850 +19900108,900,134,100,1000 +19900108,900,152,100,1000 +19900108,1200,131,100,1000 +19900108,1200,131,100,975 +19900108,1200,131,100,950 +19900108,1200,131,100,925 +19900108,1200,131,100,900 +19900108,1200,131,100,875 +19900108,1200,131,100,825 +19900108,1200,131,100,800 +19900108,1200,131,100,775 +19900108,1200,131,100,750 +19900108,1200,131,100,740 +19900108,1200,131,100,700 +19900108,1200,131,100,650 +19900108,1200,131,100,620 +19900108,1200,131,100,600 +19900108,1200,131,100,550 +19900108,1200,131,100,500 +19900108,1200,131,100,450 +19900108,1200,131,100,400 +19900108,1200,131,100,375 +19900108,1200,131,100,350 +19900108,1200,131,100,300 +19900108,1200,131,100,250 +19900108,1200,131,100,245 +19900108,1200,131,100,225 +19900108,1200,131,100,200 +19900108,1200,131,100,175 +19900108,1200,131,100,150 +19900108,1200,131,100,125 +19900108,1200,131,100,100 +19900108,1200,131,100,70 +19900108,1200,131,100,50 +19900108,1200,131,100,30 +19900108,1200,131,100,20 +19900108,1200,131,100,10 +19900108,1200,131,100,9 +19900108,1200,131,100,7 +19900108,1200,131,100,5 +19900108,1200,131,100,3 +19900108,1200,131,100,2 +19900108,1200,131,100,1 +19900108,1200,131,210,40 +19900108,1200,132,100,1000 +19900108,1200,132,100,975 +19900108,1200,132,100,950 +19900108,1200,132,100,925 +19900108,1200,132,100,900 +19900108,1200,132,100,875 +19900108,1200,132,100,825 +19900108,1200,132,100,800 +19900108,1200,132,100,775 +19900108,1200,132,100,750 +19900108,1200,132,100,740 +19900108,1200,132,100,700 +19900108,1200,132,100,650 +19900108,1200,132,100,620 +19900108,1200,132,100,600 +19900108,1200,132,100,550 +19900108,1200,132,100,500 +19900108,1200,132,100,450 +19900108,1200,132,100,400 +19900108,1200,132,100,375 +19900108,1200,132,100,350 +19900108,1200,132,100,300 +19900108,1200,132,100,250 +19900108,1200,132,100,245 +19900108,1200,132,100,225 +19900108,1200,132,100,200 +19900108,1200,132,100,175 +19900108,1200,132,100,150 +19900108,1200,132,100,125 +19900108,1200,132,100,100 +19900108,1200,132,100,70 +19900108,1200,132,100,50 +19900108,1200,132,100,30 +19900108,1200,132,100,20 +19900108,1200,132,100,10 +19900108,1200,132,100,9 +19900108,1200,132,100,7 +19900108,1200,132,100,5 +19900108,1200,132,100,3 +19900108,1200,132,100,2 +19900108,1200,132,100,1 +19900108,1200,132,210,40 +19900108,1200,130,100,1000 +19900108,1200,130,100,975 +19900108,1200,130,100,950 +19900108,1200,130,100,925 +19900108,1200,130,100,900 +19900108,1200,130,100,875 +19900108,1200,130,100,850 +19900108,1200,130,100,825 +19900108,1200,130,100,800 +19900108,1200,130,100,775 +19900108,1200,130,100,750 +19900108,1200,130,100,740 +19900108,1200,130,100,700 +19900108,1200,130,100,650 +19900108,1200,130,100,620 +19900108,1200,130,100,600 +19900108,1200,130,100,550 +19900108,1200,130,100,500 +19900108,1200,130,100,450 +19900108,1200,130,100,400 +19900108,1200,130,100,375 +19900108,1200,130,100,350 +19900108,1200,130,100,300 +19900108,1200,130,100,250 +19900108,1200,130,100,245 +19900108,1200,130,100,225 +19900108,1200,130,100,200 +19900108,1200,130,100,175 +19900108,1200,130,100,150 +19900108,1200,130,100,125 +19900108,1200,130,100,100 +19900108,1200,130,100,70 +19900108,1200,130,100,50 +19900108,1200,130,100,30 +19900108,1200,130,100,20 +19900108,1200,130,100,10 +19900108,1200,130,100,9 +19900108,1200,130,100,7 +19900108,1200,130,100,5 +19900108,1200,130,100,3 +19900108,1200,130,100,2 +19900108,1200,130,100,1 +19900108,1200,130,210,40 +19900108,1200,129,100,1000 +19900108,1200,129,100,975 +19900108,1200,129,100,950 +19900108,1200,129,100,925 +19900108,1200,129,100,900 +19900108,1200,129,100,875 +19900108,1200,129,100,850 +19900108,1200,129,100,825 +19900108,1200,129,100,800 +19900108,1200,129,100,775 +19900108,1200,129,100,750 +19900108,1200,129,100,740 +19900108,1200,129,100,700 +19900108,1200,129,100,650 +19900108,1200,129,100,620 +19900108,1200,129,100,600 +19900108,1200,129,100,550 +19900108,1200,129,100,500 +19900108,1200,129,100,450 +19900108,1200,129,100,400 +19900108,1200,129,100,375 +19900108,1200,129,100,350 +19900108,1200,129,100,300 +19900108,1200,129,100,250 +19900108,1200,129,100,245 +19900108,1200,129,100,225 +19900108,1200,129,100,200 +19900108,1200,129,100,175 +19900108,1200,129,100,150 +19900108,1200,129,100,125 +19900108,1200,129,100,100 +19900108,1200,129,100,70 +19900108,1200,129,100,50 +19900108,1200,129,100,30 +19900108,1200,129,100,20 +19900108,1200,129,100,10 +19900108,1200,129,100,9 +19900108,1200,129,100,7 +19900108,1200,129,100,5 +19900108,1200,129,100,3 +19900108,1200,129,100,2 +19900108,1200,129,100,1 +19900108,1200,129,210,40 +19900108,1200,157,100,1000 +19900108,1200,157,100,975 +19900108,1200,157,100,950 +19900108,1200,157,100,925 +19900108,1200,157,100,900 +19900108,1200,157,100,875 +19900108,1200,157,100,850 +19900108,1200,157,100,825 +19900108,1200,157,100,800 +19900108,1200,157,100,775 +19900108,1200,157,100,750 +19900108,1200,157,100,740 +19900108,1200,157,100,700 +19900108,1200,157,100,650 +19900108,1200,157,100,620 +19900108,1200,157,100,600 +19900108,1200,157,100,550 +19900108,1200,157,100,500 +19900108,1200,157,100,450 +19900108,1200,157,100,400 +19900108,1200,157,100,375 +19900108,1200,157,100,350 +19900108,1200,157,100,300 +19900108,1200,157,100,250 +19900108,1200,157,100,245 +19900108,1200,157,100,225 +19900108,1200,157,100,200 +19900108,1200,157,100,175 +19900108,1200,157,100,150 +19900108,1200,157,100,125 +19900108,1200,157,100,100 +19900108,1200,157,100,70 +19900108,1200,157,100,50 +19900108,1200,157,100,30 +19900108,1200,157,100,20 +19900108,1200,157,100,10 +19900108,1200,157,100,9 +19900108,1200,157,100,7 +19900108,1200,157,100,5 +19900108,1200,157,100,3 +19900108,1200,157,100,2 +19900108,1200,157,100,1 +19900108,1200,157,210,40 +19900108,1200,135,100,1000 +19900108,1200,135,100,975 +19900108,1200,135,100,950 +19900108,1200,135,100,925 +19900108,1200,135,100,900 +19900108,1200,135,100,875 +19900108,1200,135,100,850 +19900108,1200,135,100,825 +19900108,1200,135,100,800 +19900108,1200,135,100,775 +19900108,1200,135,100,750 +19900108,1200,135,100,740 +19900108,1200,135,100,700 +19900108,1200,135,100,650 +19900108,1200,135,100,620 +19900108,1200,135,100,600 +19900108,1200,135,100,550 +19900108,1200,135,100,500 +19900108,1200,135,100,450 +19900108,1200,135,100,400 +19900108,1200,135,100,375 +19900108,1200,135,100,350 +19900108,1200,135,100,300 +19900108,1200,135,100,250 +19900108,1200,135,100,245 +19900108,1200,135,100,225 +19900108,1200,135,100,200 +19900108,1200,135,100,175 +19900108,1200,135,100,150 +19900108,1200,135,100,125 +19900108,1200,135,100,100 +19900108,1200,135,100,70 +19900108,1200,135,100,50 +19900108,1200,135,100,30 +19900108,1200,135,100,20 +19900108,1200,135,100,10 +19900108,1200,135,100,9 +19900108,1200,135,100,7 +19900108,1200,135,100,5 +19900108,1200,135,100,3 +19900108,1200,135,100,2 +19900108,1200,135,100,1 +19900108,1200,135,210,40 +19900108,1200,138,100,1000 +19900108,1200,138,100,975 +19900108,1200,138,100,950 +19900108,1200,138,100,925 +19900108,1200,138,100,900 +19900108,1200,138,100,875 +19900108,1200,138,100,850 +19900108,1200,138,100,825 +19900108,1200,138,100,800 +19900108,1200,138,100,775 +19900108,1200,138,100,750 +19900108,1200,138,100,740 +19900108,1200,138,100,700 +19900108,1200,138,100,650 +19900108,1200,138,100,620 +19900108,1200,138,100,600 +19900108,1200,138,100,550 +19900108,1200,138,100,500 +19900108,1200,138,100,450 +19900108,1200,138,100,400 +19900108,1200,138,100,375 +19900108,1200,138,100,350 +19900108,1200,138,100,300 +19900108,1200,138,100,250 +19900108,1200,138,100,245 +19900108,1200,138,100,225 +19900108,1200,138,100,200 +19900108,1200,138,100,175 +19900108,1200,138,100,150 +19900108,1200,138,100,125 +19900108,1200,138,100,100 +19900108,1200,138,100,70 +19900108,1200,138,100,50 +19900108,1200,138,100,30 +19900108,1200,138,100,20 +19900108,1200,138,100,10 +19900108,1200,138,100,9 +19900108,1200,138,100,7 +19900108,1200,138,100,5 +19900108,1200,138,100,3 +19900108,1200,138,100,2 +19900108,1200,138,100,1 +19900108,1200,138,210,40 +19900108,1200,131,109,1 +19900108,1200,131,109,2 +19900108,1200,131,109,3 +19900108,1200,131,109,4 +19900108,1200,131,109,5 +19900108,1200,131,109,6 +19900108,1200,131,109,7 +19900108,1200,131,109,8 +19900108,1200,131,109,9 +19900108,1200,131,109,10 +19900108,1200,132,109,1 +19900108,1200,132,109,2 +19900108,1200,132,109,3 +19900108,1200,132,109,4 +19900108,1200,132,109,5 +19900108,1200,132,109,6 +19900108,1200,132,109,7 +19900108,1200,132,109,8 +19900108,1200,132,109,9 +19900108,1200,132,109,10 +19900108,1200,130,109,1 +19900108,1200,130,109,2 +19900108,1200,130,109,3 +19900108,1200,130,109,4 +19900108,1200,130,109,5 +19900108,1200,130,109,6 +19900108,1200,130,109,7 +19900108,1200,130,109,8 +19900108,1200,130,109,9 +19900108,1200,130,109,10 +19900108,1200,157,109,1 +19900108,1200,157,109,2 +19900108,1200,157,109,3 +19900108,1200,157,109,4 +19900108,1200,157,109,5 +19900108,1200,157,109,6 +19900108,1200,157,109,7 +19900108,1200,157,109,8 +19900108,1200,157,109,9 +19900108,1200,157,109,10 +19900108,1200,54,109,1 +19900108,1200,54,109,2 +19900108,1200,54,109,3 +19900108,1200,54,109,4 +19900108,1200,54,109,5 +19900108,1200,54,109,6 +19900108,1200,54,109,7 +19900108,1200,54,109,8 +19900108,1200,54,109,9 +19900108,1200,54,109,10 +19900108,1200,135,109,1 +19900108,1200,135,109,2 +19900108,1200,135,109,3 +19900108,1200,135,109,4 +19900108,1200,135,109,5 +19900108,1200,135,109,6 +19900108,1200,135,109,7 +19900108,1200,135,109,8 +19900108,1200,135,109,9 +19900108,1200,135,109,10 +19900108,1200,134,109,1 +19900108,1200,152,109,1 +19900108,1200,131,100,850 +19900108,1200,132,100,850 +19900108,1200,134,100,1000 +19900108,1200,152,100,1000 +19900108,1500,131,100,850 +19900108,1500,132,100,850 +19900108,1500,134,100,1000 +19900108,1500,152,100,1000 +19900108,1800,131,100,1000 +19900108,1800,131,100,975 +19900108,1800,131,100,950 +19900108,1800,131,100,925 +19900108,1800,131,100,900 +19900108,1800,131,100,875 +19900108,1800,131,100,825 +19900108,1800,131,100,800 +19900108,1800,131,100,775 +19900108,1800,131,100,750 +19900108,1800,131,100,740 +19900108,1800,131,100,700 +19900108,1800,131,100,650 +19900108,1800,131,100,620 +19900108,1800,131,100,600 +19900108,1800,131,100,550 +19900108,1800,131,100,500 +19900108,1800,131,100,450 +19900108,1800,131,100,400 +19900108,1800,131,100,375 +19900108,1800,131,100,350 +19900108,1800,131,100,300 +19900108,1800,131,100,250 +19900108,1800,131,100,245 +19900108,1800,131,100,225 +19900108,1800,131,100,200 +19900108,1800,131,100,175 +19900108,1800,131,100,150 +19900108,1800,131,100,125 +19900108,1800,131,100,100 +19900108,1800,131,100,70 +19900108,1800,131,100,50 +19900108,1800,131,100,30 +19900108,1800,131,100,20 +19900108,1800,131,100,10 +19900108,1800,131,100,9 +19900108,1800,131,100,7 +19900108,1800,131,100,5 +19900108,1800,131,100,3 +19900108,1800,131,100,2 +19900108,1800,131,100,1 +19900108,1800,131,210,40 +19900108,1800,132,100,1000 +19900108,1800,132,100,975 +19900108,1800,132,100,950 +19900108,1800,132,100,925 +19900108,1800,132,100,900 +19900108,1800,132,100,875 +19900108,1800,132,100,825 +19900108,1800,132,100,800 +19900108,1800,132,100,775 +19900108,1800,132,100,750 +19900108,1800,132,100,740 +19900108,1800,132,100,700 +19900108,1800,132,100,650 +19900108,1800,132,100,620 +19900108,1800,132,100,600 +19900108,1800,132,100,550 +19900108,1800,132,100,500 +19900108,1800,132,100,450 +19900108,1800,132,100,400 +19900108,1800,132,100,375 +19900108,1800,132,100,350 +19900108,1800,132,100,300 +19900108,1800,132,100,250 +19900108,1800,132,100,245 +19900108,1800,132,100,225 +19900108,1800,132,100,200 +19900108,1800,132,100,175 +19900108,1800,132,100,150 +19900108,1800,132,100,125 +19900108,1800,132,100,100 +19900108,1800,132,100,70 +19900108,1800,132,100,50 +19900108,1800,132,100,30 +19900108,1800,132,100,20 +19900108,1800,132,100,10 +19900108,1800,132,100,9 +19900108,1800,132,100,7 +19900108,1800,132,100,5 +19900108,1800,132,100,3 +19900108,1800,132,100,2 +19900108,1800,132,100,1 +19900108,1800,132,210,40 +19900108,1800,130,100,1000 +19900108,1800,130,100,975 +19900108,1800,130,100,950 +19900108,1800,130,100,925 +19900108,1800,130,100,900 +19900108,1800,130,100,875 +19900108,1800,130,100,850 +19900108,1800,130,100,825 +19900108,1800,130,100,800 +19900108,1800,130,100,775 +19900108,1800,130,100,750 +19900108,1800,130,100,740 +19900108,1800,130,100,700 +19900108,1800,130,100,650 +19900108,1800,130,100,620 +19900108,1800,130,100,600 +19900108,1800,130,100,550 +19900108,1800,130,100,500 +19900108,1800,130,100,450 +19900108,1800,130,100,400 +19900108,1800,130,100,375 +19900108,1800,130,100,350 +19900108,1800,130,100,300 +19900108,1800,130,100,250 +19900108,1800,130,100,245 +19900108,1800,130,100,225 +19900108,1800,130,100,200 +19900108,1800,130,100,175 +19900108,1800,130,100,150 +19900108,1800,130,100,125 +19900108,1800,130,100,100 +19900108,1800,130,100,70 +19900108,1800,130,100,50 +19900108,1800,130,100,30 +19900108,1800,130,100,20 +19900108,1800,130,100,10 +19900108,1800,130,100,9 +19900108,1800,130,100,7 +19900108,1800,130,100,5 +19900108,1800,130,100,3 +19900108,1800,130,100,2 +19900108,1800,130,100,1 +19900108,1800,130,210,40 +19900108,1800,129,100,1000 +19900108,1800,129,100,975 +19900108,1800,129,100,950 +19900108,1800,129,100,925 +19900108,1800,129,100,900 +19900108,1800,129,100,875 +19900108,1800,129,100,850 +19900108,1800,129,100,825 +19900108,1800,129,100,800 +19900108,1800,129,100,775 +19900108,1800,129,100,750 +19900108,1800,129,100,740 +19900108,1800,129,100,700 +19900108,1800,129,100,650 +19900108,1800,129,100,620 +19900108,1800,129,100,600 +19900108,1800,129,100,550 +19900108,1800,129,100,500 +19900108,1800,129,100,450 +19900108,1800,129,100,400 +19900108,1800,129,100,375 +19900108,1800,129,100,350 +19900108,1800,129,100,300 +19900108,1800,129,100,250 +19900108,1800,129,100,245 +19900108,1800,129,100,225 +19900108,1800,129,100,200 +19900108,1800,129,100,175 +19900108,1800,129,100,150 +19900108,1800,129,100,125 +19900108,1800,129,100,100 +19900108,1800,129,100,70 +19900108,1800,129,100,50 +19900108,1800,129,100,30 +19900108,1800,129,100,20 +19900108,1800,129,100,10 +19900108,1800,129,100,9 +19900108,1800,129,100,7 +19900108,1800,129,100,5 +19900108,1800,129,100,3 +19900108,1800,129,100,2 +19900108,1800,129,100,1 +19900108,1800,129,210,40 +19900108,1800,157,100,1000 +19900108,1800,157,100,975 +19900108,1800,157,100,950 +19900108,1800,157,100,925 +19900108,1800,157,100,900 +19900108,1800,157,100,875 +19900108,1800,157,100,850 +19900108,1800,157,100,825 +19900108,1800,157,100,800 +19900108,1800,157,100,775 +19900108,1800,157,100,750 +19900108,1800,157,100,740 +19900108,1800,157,100,700 +19900108,1800,157,100,650 +19900108,1800,157,100,620 +19900108,1800,157,100,600 +19900108,1800,157,100,550 +19900108,1800,157,100,500 +19900108,1800,157,100,450 +19900108,1800,157,100,400 +19900108,1800,157,100,375 +19900108,1800,157,100,350 +19900108,1800,157,100,300 +19900108,1800,157,100,250 +19900108,1800,157,100,245 +19900108,1800,157,100,225 +19900108,1800,157,100,200 +19900108,1800,157,100,175 +19900108,1800,157,100,150 +19900108,1800,157,100,125 +19900108,1800,157,100,100 +19900108,1800,157,100,70 +19900108,1800,157,100,50 +19900108,1800,157,100,30 +19900108,1800,157,100,20 +19900108,1800,157,100,10 +19900108,1800,157,100,9 +19900108,1800,157,100,7 +19900108,1800,157,100,5 +19900108,1800,157,100,3 +19900108,1800,157,100,2 +19900108,1800,157,100,1 +19900108,1800,157,210,40 +19900108,1800,135,100,1000 +19900108,1800,135,100,975 +19900108,1800,135,100,950 +19900108,1800,135,100,925 +19900108,1800,135,100,900 +19900108,1800,135,100,875 +19900108,1800,135,100,850 +19900108,1800,135,100,825 +19900108,1800,135,100,800 +19900108,1800,135,100,775 +19900108,1800,135,100,750 +19900108,1800,135,100,740 +19900108,1800,135,100,700 +19900108,1800,135,100,650 +19900108,1800,135,100,620 +19900108,1800,135,100,600 +19900108,1800,135,100,550 +19900108,1800,135,100,500 +19900108,1800,135,100,450 +19900108,1800,135,100,400 +19900108,1800,135,100,375 +19900108,1800,135,100,350 +19900108,1800,135,100,300 +19900108,1800,135,100,250 +19900108,1800,135,100,245 +19900108,1800,135,100,225 +19900108,1800,135,100,200 +19900108,1800,135,100,175 +19900108,1800,135,100,150 +19900108,1800,135,100,125 +19900108,1800,135,100,100 +19900108,1800,135,100,70 +19900108,1800,135,100,50 +19900108,1800,135,100,30 +19900108,1800,135,100,20 +19900108,1800,135,100,10 +19900108,1800,135,100,9 +19900108,1800,135,100,7 +19900108,1800,135,100,5 +19900108,1800,135,100,3 +19900108,1800,135,100,2 +19900108,1800,135,100,1 +19900108,1800,135,210,40 +19900108,1800,138,100,1000 +19900108,1800,138,100,975 +19900108,1800,138,100,950 +19900108,1800,138,100,925 +19900108,1800,138,100,900 +19900108,1800,138,100,875 +19900108,1800,138,100,850 +19900108,1800,138,100,825 +19900108,1800,138,100,800 +19900108,1800,138,100,775 +19900108,1800,138,100,750 +19900108,1800,138,100,740 +19900108,1800,138,100,700 +19900108,1800,138,100,650 +19900108,1800,138,100,620 +19900108,1800,138,100,600 +19900108,1800,138,100,550 +19900108,1800,138,100,500 +19900108,1800,138,100,450 +19900108,1800,138,100,400 +19900108,1800,138,100,375 +19900108,1800,138,100,350 +19900108,1800,138,100,300 +19900108,1800,138,100,250 +19900108,1800,138,100,245 +19900108,1800,138,100,225 +19900108,1800,138,100,200 +19900108,1800,138,100,175 +19900108,1800,138,100,150 +19900108,1800,138,100,125 +19900108,1800,138,100,100 +19900108,1800,138,100,70 +19900108,1800,138,100,50 +19900108,1800,138,100,30 +19900108,1800,138,100,20 +19900108,1800,138,100,10 +19900108,1800,138,100,9 +19900108,1800,138,100,7 +19900108,1800,138,100,5 +19900108,1800,138,100,3 +19900108,1800,138,100,2 +19900108,1800,138,100,1 +19900108,1800,138,210,40 +19900108,1800,131,109,1 +19900108,1800,131,109,2 +19900108,1800,131,109,3 +19900108,1800,131,109,4 +19900108,1800,131,109,5 +19900108,1800,131,109,6 +19900108,1800,131,109,7 +19900108,1800,131,109,8 +19900108,1800,131,109,9 +19900108,1800,131,109,10 +19900108,1800,132,109,1 +19900108,1800,132,109,2 +19900108,1800,132,109,3 +19900108,1800,132,109,4 +19900108,1800,132,109,5 +19900108,1800,132,109,6 +19900108,1800,132,109,7 +19900108,1800,132,109,8 +19900108,1800,132,109,9 +19900108,1800,132,109,10 +19900108,1800,130,109,1 +19900108,1800,130,109,2 +19900108,1800,130,109,3 +19900108,1800,130,109,4 +19900108,1800,130,109,5 +19900108,1800,130,109,6 +19900108,1800,130,109,7 +19900108,1800,130,109,8 +19900108,1800,130,109,9 +19900108,1800,130,109,10 +19900108,1800,157,109,1 +19900108,1800,157,109,2 +19900108,1800,157,109,3 +19900108,1800,157,109,4 +19900108,1800,157,109,5 +19900108,1800,157,109,6 +19900108,1800,157,109,7 +19900108,1800,157,109,8 +19900108,1800,157,109,9 +19900108,1800,157,109,10 +19900108,1800,54,109,1 +19900108,1800,54,109,2 +19900108,1800,54,109,3 +19900108,1800,54,109,4 +19900108,1800,54,109,5 +19900108,1800,54,109,6 +19900108,1800,54,109,7 +19900108,1800,54,109,8 +19900108,1800,54,109,9 +19900108,1800,54,109,10 +19900108,1800,135,109,1 +19900108,1800,135,109,2 +19900108,1800,135,109,3 +19900108,1800,135,109,4 +19900108,1800,135,109,5 +19900108,1800,135,109,6 +19900108,1800,135,109,7 +19900108,1800,135,109,8 +19900108,1800,135,109,9 +19900108,1800,135,109,10 +19900108,1800,134,109,1 +19900108,1800,152,109,1 +19900108,1800,131,100,850 +19900108,1800,132,100,850 +19900108,1800,134,100,1000 +19900108,1800,152,100,1000 +19900108,2100,131,100,850 +19900108,2100,132,100,850 +19900108,2100,134,100,1000 +19900108,2100,152,100,1000 +19900109,0,131,100,1000 +19900109,0,131,100,975 +19900109,0,131,100,950 +19900109,0,131,100,925 +19900109,0,131,100,900 +19900109,0,131,100,875 +19900109,0,131,100,825 +19900109,0,131,100,800 +19900109,0,131,100,775 +19900109,0,131,100,750 +19900109,0,131,100,740 +19900109,0,131,100,700 +19900109,0,131,100,650 +19900109,0,131,100,620 +19900109,0,131,100,600 +19900109,0,131,100,550 +19900109,0,131,100,500 +19900109,0,131,100,450 +19900109,0,131,100,400 +19900109,0,131,100,375 +19900109,0,131,100,350 +19900109,0,131,100,300 +19900109,0,131,100,250 +19900109,0,131,100,245 +19900109,0,131,100,225 +19900109,0,131,100,200 +19900109,0,131,100,175 +19900109,0,131,100,150 +19900109,0,131,100,125 +19900109,0,131,100,100 +19900109,0,131,100,70 +19900109,0,131,100,50 +19900109,0,131,100,30 +19900109,0,131,100,20 +19900109,0,131,100,10 +19900109,0,131,100,9 +19900109,0,131,100,7 +19900109,0,131,100,5 +19900109,0,131,100,3 +19900109,0,131,100,2 +19900109,0,131,100,1 +19900109,0,131,210,40 +19900109,0,132,100,1000 +19900109,0,132,100,975 +19900109,0,132,100,950 +19900109,0,132,100,925 +19900109,0,132,100,900 +19900109,0,132,100,875 +19900109,0,132,100,825 +19900109,0,132,100,800 +19900109,0,132,100,775 +19900109,0,132,100,750 +19900109,0,132,100,740 +19900109,0,132,100,700 +19900109,0,132,100,650 +19900109,0,132,100,620 +19900109,0,132,100,600 +19900109,0,132,100,550 +19900109,0,132,100,500 +19900109,0,132,100,450 +19900109,0,132,100,400 +19900109,0,132,100,375 +19900109,0,132,100,350 +19900109,0,132,100,300 +19900109,0,132,100,250 +19900109,0,132,100,245 +19900109,0,132,100,225 +19900109,0,132,100,200 +19900109,0,132,100,175 +19900109,0,132,100,150 +19900109,0,132,100,125 +19900109,0,132,100,100 +19900109,0,132,100,70 +19900109,0,132,100,50 +19900109,0,132,100,30 +19900109,0,132,100,20 +19900109,0,132,100,10 +19900109,0,132,100,9 +19900109,0,132,100,7 +19900109,0,132,100,5 +19900109,0,132,100,3 +19900109,0,132,100,2 +19900109,0,132,100,1 +19900109,0,132,210,40 +19900109,0,130,100,1000 +19900109,0,130,100,975 +19900109,0,130,100,950 +19900109,0,130,100,925 +19900109,0,130,100,900 +19900109,0,130,100,875 +19900109,0,130,100,850 +19900109,0,130,100,825 +19900109,0,130,100,800 +19900109,0,130,100,775 +19900109,0,130,100,750 +19900109,0,130,100,740 +19900109,0,130,100,700 +19900109,0,130,100,650 +19900109,0,130,100,620 +19900109,0,130,100,600 +19900109,0,130,100,550 +19900109,0,130,100,500 +19900109,0,130,100,450 +19900109,0,130,100,400 +19900109,0,130,100,375 +19900109,0,130,100,350 +19900109,0,130,100,300 +19900109,0,130,100,250 +19900109,0,130,100,245 +19900109,0,130,100,225 +19900109,0,130,100,200 +19900109,0,130,100,175 +19900109,0,130,100,150 +19900109,0,130,100,125 +19900109,0,130,100,100 +19900109,0,130,100,70 +19900109,0,130,100,50 +19900109,0,130,100,30 +19900109,0,130,100,20 +19900109,0,130,100,10 +19900109,0,130,100,9 +19900109,0,130,100,7 +19900109,0,130,100,5 +19900109,0,130,100,3 +19900109,0,130,100,2 +19900109,0,130,100,1 +19900109,0,130,210,40 +19900109,0,129,100,1000 +19900109,0,129,100,975 +19900109,0,129,100,950 +19900109,0,129,100,925 +19900109,0,129,100,900 +19900109,0,129,100,875 +19900109,0,129,100,850 +19900109,0,129,100,825 +19900109,0,129,100,800 +19900109,0,129,100,775 +19900109,0,129,100,750 +19900109,0,129,100,740 +19900109,0,129,100,700 +19900109,0,129,100,650 +19900109,0,129,100,620 +19900109,0,129,100,600 +19900109,0,129,100,550 +19900109,0,129,100,500 +19900109,0,129,100,450 +19900109,0,129,100,400 +19900109,0,129,100,375 +19900109,0,129,100,350 +19900109,0,129,100,300 +19900109,0,129,100,250 +19900109,0,129,100,245 +19900109,0,129,100,225 +19900109,0,129,100,200 +19900109,0,129,100,175 +19900109,0,129,100,150 +19900109,0,129,100,125 +19900109,0,129,100,100 +19900109,0,129,100,70 +19900109,0,129,100,50 +19900109,0,129,100,30 +19900109,0,129,100,20 +19900109,0,129,100,10 +19900109,0,129,100,9 +19900109,0,129,100,7 +19900109,0,129,100,5 +19900109,0,129,100,3 +19900109,0,129,100,2 +19900109,0,129,100,1 +19900109,0,129,210,40 +19900109,0,157,100,1000 +19900109,0,157,100,975 +19900109,0,157,100,950 +19900109,0,157,100,925 +19900109,0,157,100,900 +19900109,0,157,100,875 +19900109,0,157,100,850 +19900109,0,157,100,825 +19900109,0,157,100,800 +19900109,0,157,100,775 +19900109,0,157,100,750 +19900109,0,157,100,740 +19900109,0,157,100,700 +19900109,0,157,100,650 +19900109,0,157,100,620 +19900109,0,157,100,600 +19900109,0,157,100,550 +19900109,0,157,100,500 +19900109,0,157,100,450 +19900109,0,157,100,400 +19900109,0,157,100,375 +19900109,0,157,100,350 +19900109,0,157,100,300 +19900109,0,157,100,250 +19900109,0,157,100,245 +19900109,0,157,100,225 +19900109,0,157,100,200 +19900109,0,157,100,175 +19900109,0,157,100,150 +19900109,0,157,100,125 +19900109,0,157,100,100 +19900109,0,157,100,70 +19900109,0,157,100,50 +19900109,0,157,100,30 +19900109,0,157,100,20 +19900109,0,157,100,10 +19900109,0,157,100,9 +19900109,0,157,100,7 +19900109,0,157,100,5 +19900109,0,157,100,3 +19900109,0,157,100,2 +19900109,0,157,100,1 +19900109,0,157,210,40 +19900109,0,135,100,1000 +19900109,0,135,100,975 +19900109,0,135,100,950 +19900109,0,135,100,925 +19900109,0,135,100,900 +19900109,0,135,100,875 +19900109,0,135,100,850 +19900109,0,135,100,825 +19900109,0,135,100,800 +19900109,0,135,100,775 +19900109,0,135,100,750 +19900109,0,135,100,740 +19900109,0,135,100,700 +19900109,0,135,100,650 +19900109,0,135,100,620 +19900109,0,135,100,600 +19900109,0,135,100,550 +19900109,0,135,100,500 +19900109,0,135,100,450 +19900109,0,135,100,400 +19900109,0,135,100,375 +19900109,0,135,100,350 +19900109,0,135,100,300 +19900109,0,135,100,250 +19900109,0,135,100,245 +19900109,0,135,100,225 +19900109,0,135,100,200 +19900109,0,135,100,175 +19900109,0,135,100,150 +19900109,0,135,100,125 +19900109,0,135,100,100 +19900109,0,135,100,70 +19900109,0,135,100,50 +19900109,0,135,100,30 +19900109,0,135,100,20 +19900109,0,135,100,10 +19900109,0,135,100,9 +19900109,0,135,100,7 +19900109,0,135,100,5 +19900109,0,135,100,3 +19900109,0,135,100,2 +19900109,0,135,100,1 +19900109,0,135,210,40 +19900109,0,138,100,1000 +19900109,0,138,100,975 +19900109,0,138,100,950 +19900109,0,138,100,925 +19900109,0,138,100,900 +19900109,0,138,100,875 +19900109,0,138,100,850 +19900109,0,138,100,825 +19900109,0,138,100,800 +19900109,0,138,100,775 +19900109,0,138,100,750 +19900109,0,138,100,740 +19900109,0,138,100,700 +19900109,0,138,100,650 +19900109,0,138,100,620 +19900109,0,138,100,600 +19900109,0,138,100,550 +19900109,0,138,100,500 +19900109,0,138,100,450 +19900109,0,138,100,400 +19900109,0,138,100,375 +19900109,0,138,100,350 +19900109,0,138,100,300 +19900109,0,138,100,250 +19900109,0,138,100,245 +19900109,0,138,100,225 +19900109,0,138,100,200 +19900109,0,138,100,175 +19900109,0,138,100,150 +19900109,0,138,100,125 +19900109,0,138,100,100 +19900109,0,138,100,70 +19900109,0,138,100,50 +19900109,0,138,100,30 +19900109,0,138,100,20 +19900109,0,138,100,10 +19900109,0,138,100,9 +19900109,0,138,100,7 +19900109,0,138,100,5 +19900109,0,138,100,3 +19900109,0,138,100,2 +19900109,0,138,100,1 +19900109,0,138,210,40 +19900109,0,131,109,1 +19900109,0,131,109,2 +19900109,0,131,109,3 +19900109,0,131,109,4 +19900109,0,131,109,5 +19900109,0,131,109,6 +19900109,0,131,109,7 +19900109,0,131,109,8 +19900109,0,131,109,9 +19900109,0,131,109,10 +19900109,0,132,109,1 +19900109,0,132,109,2 +19900109,0,132,109,3 +19900109,0,132,109,4 +19900109,0,132,109,5 +19900109,0,132,109,6 +19900109,0,132,109,7 +19900109,0,132,109,8 +19900109,0,132,109,9 +19900109,0,132,109,10 +19900109,0,130,109,1 +19900109,0,130,109,2 +19900109,0,130,109,3 +19900109,0,130,109,4 +19900109,0,130,109,5 +19900109,0,130,109,6 +19900109,0,130,109,7 +19900109,0,130,109,8 +19900109,0,130,109,9 +19900109,0,130,109,10 +19900109,0,157,109,1 +19900109,0,157,109,2 +19900109,0,157,109,3 +19900109,0,157,109,4 +19900109,0,157,109,5 +19900109,0,157,109,6 +19900109,0,157,109,7 +19900109,0,157,109,8 +19900109,0,157,109,9 +19900109,0,157,109,10 +19900109,0,54,109,1 +19900109,0,54,109,2 +19900109,0,54,109,3 +19900109,0,54,109,4 +19900109,0,54,109,5 +19900109,0,54,109,6 +19900109,0,54,109,7 +19900109,0,54,109,8 +19900109,0,54,109,9 +19900109,0,54,109,10 +19900109,0,135,109,1 +19900109,0,135,109,2 +19900109,0,135,109,3 +19900109,0,135,109,4 +19900109,0,135,109,5 +19900109,0,135,109,6 +19900109,0,135,109,7 +19900109,0,135,109,8 +19900109,0,135,109,9 +19900109,0,135,109,10 +19900109,0,134,109,1 +19900109,0,152,109,1 +19900109,0,131,100,850 +19900109,0,132,100,850 +19900109,0,134,100,1000 +19900109,0,152,100,1000 +19900109,300,131,100,850 +19900109,300,132,100,850 +19900109,300,134,100,1000 +19900109,300,152,100,1000 +19900109,600,131,100,1000 +19900109,600,131,100,975 +19900109,600,131,100,950 +19900109,600,131,100,925 +19900109,600,131,100,900 +19900109,600,131,100,875 +19900109,600,131,100,825 +19900109,600,131,100,800 +19900109,600,131,100,775 +19900109,600,131,100,750 +19900109,600,131,100,740 +19900109,600,131,100,700 +19900109,600,131,100,650 +19900109,600,131,100,620 +19900109,600,131,100,600 +19900109,600,131,100,550 +19900109,600,131,100,500 +19900109,600,131,100,450 +19900109,600,131,100,400 +19900109,600,131,100,375 +19900109,600,131,100,350 +19900109,600,131,100,300 +19900109,600,131,100,250 +19900109,600,131,100,245 +19900109,600,131,100,225 +19900109,600,131,100,200 +19900109,600,131,100,175 +19900109,600,131,100,150 +19900109,600,131,100,125 +19900109,600,131,100,100 +19900109,600,131,100,70 +19900109,600,131,100,50 +19900109,600,131,100,30 +19900109,600,131,100,20 +19900109,600,131,100,10 +19900109,600,131,100,9 +19900109,600,131,100,7 +19900109,600,131,100,5 +19900109,600,131,100,3 +19900109,600,131,100,2 +19900109,600,131,100,1 +19900109,600,131,210,40 +19900109,600,132,100,1000 +19900109,600,132,100,975 +19900109,600,132,100,950 +19900109,600,132,100,925 +19900109,600,132,100,900 +19900109,600,132,100,875 +19900109,600,132,100,825 +19900109,600,132,100,800 +19900109,600,132,100,775 +19900109,600,132,100,750 +19900109,600,132,100,740 +19900109,600,132,100,700 +19900109,600,132,100,650 +19900109,600,132,100,620 +19900109,600,132,100,600 +19900109,600,132,100,550 +19900109,600,132,100,500 +19900109,600,132,100,450 +19900109,600,132,100,400 +19900109,600,132,100,375 +19900109,600,132,100,350 +19900109,600,132,100,300 +19900109,600,132,100,250 +19900109,600,132,100,245 +19900109,600,132,100,225 +19900109,600,132,100,200 +19900109,600,132,100,175 +19900109,600,132,100,150 +19900109,600,132,100,125 +19900109,600,132,100,100 +19900109,600,132,100,70 +19900109,600,132,100,50 +19900109,600,132,100,30 +19900109,600,132,100,20 +19900109,600,132,100,10 +19900109,600,132,100,9 +19900109,600,132,100,7 +19900109,600,132,100,5 +19900109,600,132,100,3 +19900109,600,132,100,2 +19900109,600,132,100,1 +19900109,600,132,210,40 +19900109,600,130,100,1000 +19900109,600,130,100,975 +19900109,600,130,100,950 +19900109,600,130,100,925 +19900109,600,130,100,900 +19900109,600,130,100,875 +19900109,600,130,100,850 +19900109,600,130,100,825 +19900109,600,130,100,800 +19900109,600,130,100,775 +19900109,600,130,100,750 +19900109,600,130,100,740 +19900109,600,130,100,700 +19900109,600,130,100,650 +19900109,600,130,100,620 +19900109,600,130,100,600 +19900109,600,130,100,550 +19900109,600,130,100,500 +19900109,600,130,100,450 +19900109,600,130,100,400 +19900109,600,130,100,375 +19900109,600,130,100,350 +19900109,600,130,100,300 +19900109,600,130,100,250 +19900109,600,130,100,245 +19900109,600,130,100,225 +19900109,600,130,100,200 +19900109,600,130,100,175 +19900109,600,130,100,150 +19900109,600,130,100,125 +19900109,600,130,100,100 +19900109,600,130,100,70 +19900109,600,130,100,50 +19900109,600,130,100,30 +19900109,600,130,100,20 +19900109,600,130,100,10 +19900109,600,130,100,9 +19900109,600,130,100,7 +19900109,600,130,100,5 +19900109,600,130,100,3 +19900109,600,130,100,2 +19900109,600,130,100,1 +19900109,600,130,210,40 +19900109,600,129,100,1000 +19900109,600,129,100,975 +19900109,600,129,100,950 +19900109,600,129,100,925 +19900109,600,129,100,900 +19900109,600,129,100,875 +19900109,600,129,100,850 +19900109,600,129,100,825 +19900109,600,129,100,800 +19900109,600,129,100,775 +19900109,600,129,100,750 +19900109,600,129,100,740 +19900109,600,129,100,700 +19900109,600,129,100,650 +19900109,600,129,100,620 +19900109,600,129,100,600 +19900109,600,129,100,550 +19900109,600,129,100,500 +19900109,600,129,100,450 +19900109,600,129,100,400 +19900109,600,129,100,375 +19900109,600,129,100,350 +19900109,600,129,100,300 +19900109,600,129,100,250 +19900109,600,129,100,245 +19900109,600,129,100,225 +19900109,600,129,100,200 +19900109,600,129,100,175 +19900109,600,129,100,150 +19900109,600,129,100,125 +19900109,600,129,100,100 +19900109,600,129,100,70 +19900109,600,129,100,50 +19900109,600,129,100,30 +19900109,600,129,100,20 +19900109,600,129,100,10 +19900109,600,129,100,9 +19900109,600,129,100,7 +19900109,600,129,100,5 +19900109,600,129,100,3 +19900109,600,129,100,2 +19900109,600,129,100,1 +19900109,600,129,210,40 +19900109,600,157,100,1000 +19900109,600,157,100,975 +19900109,600,157,100,950 +19900109,600,157,100,925 +19900109,600,157,100,900 +19900109,600,157,100,875 +19900109,600,157,100,850 +19900109,600,157,100,825 +19900109,600,157,100,800 +19900109,600,157,100,775 +19900109,600,157,100,750 +19900109,600,157,100,740 +19900109,600,157,100,700 +19900109,600,157,100,650 +19900109,600,157,100,620 +19900109,600,157,100,600 +19900109,600,157,100,550 +19900109,600,157,100,500 +19900109,600,157,100,450 +19900109,600,157,100,400 +19900109,600,157,100,375 +19900109,600,157,100,350 +19900109,600,157,100,300 +19900109,600,157,100,250 +19900109,600,157,100,245 +19900109,600,157,100,225 +19900109,600,157,100,200 +19900109,600,157,100,175 +19900109,600,157,100,150 +19900109,600,157,100,125 +19900109,600,157,100,100 +19900109,600,157,100,70 +19900109,600,157,100,50 +19900109,600,157,100,30 +19900109,600,157,100,20 +19900109,600,157,100,10 +19900109,600,157,100,9 +19900109,600,157,100,7 +19900109,600,157,100,5 +19900109,600,157,100,3 +19900109,600,157,100,2 +19900109,600,157,100,1 +19900109,600,157,210,40 +19900109,600,135,100,1000 +19900109,600,135,100,975 +19900109,600,135,100,950 +19900109,600,135,100,925 +19900109,600,135,100,900 +19900109,600,135,100,875 +19900109,600,135,100,850 +19900109,600,135,100,825 +19900109,600,135,100,800 +19900109,600,135,100,775 +19900109,600,135,100,750 +19900109,600,135,100,740 +19900109,600,135,100,700 +19900109,600,135,100,650 +19900109,600,135,100,620 +19900109,600,135,100,600 +19900109,600,135,100,550 +19900109,600,135,100,500 +19900109,600,135,100,450 +19900109,600,135,100,400 +19900109,600,135,100,375 +19900109,600,135,100,350 +19900109,600,135,100,300 +19900109,600,135,100,250 +19900109,600,135,100,245 +19900109,600,135,100,225 +19900109,600,135,100,200 +19900109,600,135,100,175 +19900109,600,135,100,150 +19900109,600,135,100,125 +19900109,600,135,100,100 +19900109,600,135,100,70 +19900109,600,135,100,50 +19900109,600,135,100,30 +19900109,600,135,100,20 +19900109,600,135,100,10 +19900109,600,135,100,9 +19900109,600,135,100,7 +19900109,600,135,100,5 +19900109,600,135,100,3 +19900109,600,135,100,2 +19900109,600,135,100,1 +19900109,600,135,210,40 +19900109,600,138,100,1000 +19900109,600,138,100,975 +19900109,600,138,100,950 +19900109,600,138,100,925 +19900109,600,138,100,900 +19900109,600,138,100,875 +19900109,600,138,100,850 +19900109,600,138,100,825 +19900109,600,138,100,800 +19900109,600,138,100,775 +19900109,600,138,100,750 +19900109,600,138,100,740 +19900109,600,138,100,700 +19900109,600,138,100,650 +19900109,600,138,100,620 +19900109,600,138,100,600 +19900109,600,138,100,550 +19900109,600,138,100,500 +19900109,600,138,100,450 +19900109,600,138,100,400 +19900109,600,138,100,375 +19900109,600,138,100,350 +19900109,600,138,100,300 +19900109,600,138,100,250 +19900109,600,138,100,245 +19900109,600,138,100,225 +19900109,600,138,100,200 +19900109,600,138,100,175 +19900109,600,138,100,150 +19900109,600,138,100,125 +19900109,600,138,100,100 +19900109,600,138,100,70 +19900109,600,138,100,50 +19900109,600,138,100,30 +19900109,600,138,100,20 +19900109,600,138,100,10 +19900109,600,138,100,9 +19900109,600,138,100,7 +19900109,600,138,100,5 +19900109,600,138,100,3 +19900109,600,138,100,2 +19900109,600,138,100,1 +19900109,600,138,210,40 +19900109,600,131,109,1 +19900109,600,131,109,2 +19900109,600,131,109,3 +19900109,600,131,109,4 +19900109,600,131,109,5 +19900109,600,131,109,6 +19900109,600,131,109,7 +19900109,600,131,109,8 +19900109,600,131,109,9 +19900109,600,131,109,10 +19900109,600,132,109,1 +19900109,600,132,109,2 +19900109,600,132,109,3 +19900109,600,132,109,4 +19900109,600,132,109,5 +19900109,600,132,109,6 +19900109,600,132,109,7 +19900109,600,132,109,8 +19900109,600,132,109,9 +19900109,600,132,109,10 +19900109,600,130,109,1 +19900109,600,130,109,2 +19900109,600,130,109,3 +19900109,600,130,109,4 +19900109,600,130,109,5 +19900109,600,130,109,6 +19900109,600,130,109,7 +19900109,600,130,109,8 +19900109,600,130,109,9 +19900109,600,130,109,10 +19900109,600,157,109,1 +19900109,600,157,109,2 +19900109,600,157,109,3 +19900109,600,157,109,4 +19900109,600,157,109,5 +19900109,600,157,109,6 +19900109,600,157,109,7 +19900109,600,157,109,8 +19900109,600,157,109,9 +19900109,600,157,109,10 +19900109,600,54,109,1 +19900109,600,54,109,2 +19900109,600,54,109,3 +19900109,600,54,109,4 +19900109,600,54,109,5 +19900109,600,54,109,6 +19900109,600,54,109,7 +19900109,600,54,109,8 +19900109,600,54,109,9 +19900109,600,54,109,10 +19900109,600,135,109,1 +19900109,600,135,109,2 +19900109,600,135,109,3 +19900109,600,135,109,4 +19900109,600,135,109,5 +19900109,600,135,109,6 +19900109,600,135,109,7 +19900109,600,135,109,8 +19900109,600,135,109,9 +19900109,600,135,109,10 +19900109,600,134,109,1 +19900109,600,152,109,1 +19900109,600,131,100,850 +19900109,600,132,100,850 +19900109,600,134,100,1000 +19900109,600,152,100,1000 +19900109,900,131,100,850 +19900109,900,132,100,850 +19900109,900,134,100,1000 +19900109,900,152,100,1000 +19900109,1200,131,100,1000 +19900109,1200,131,100,975 +19900109,1200,131,100,950 +19900109,1200,131,100,925 +19900109,1200,131,100,900 +19900109,1200,131,100,875 +19900109,1200,131,100,825 +19900109,1200,131,100,800 +19900109,1200,131,100,775 +19900109,1200,131,100,750 +19900109,1200,131,100,740 +19900109,1200,131,100,700 +19900109,1200,131,100,650 +19900109,1200,131,100,620 +19900109,1200,131,100,600 +19900109,1200,131,100,550 +19900109,1200,131,100,500 +19900109,1200,131,100,450 +19900109,1200,131,100,400 +19900109,1200,131,100,375 +19900109,1200,131,100,350 +19900109,1200,131,100,300 +19900109,1200,131,100,250 +19900109,1200,131,100,245 +19900109,1200,131,100,225 +19900109,1200,131,100,200 +19900109,1200,131,100,175 +19900109,1200,131,100,150 +19900109,1200,131,100,125 +19900109,1200,131,100,100 +19900109,1200,131,100,70 +19900109,1200,131,100,50 +19900109,1200,131,100,30 +19900109,1200,131,100,20 +19900109,1200,131,100,10 +19900109,1200,131,100,9 +19900109,1200,131,100,7 +19900109,1200,131,100,5 +19900109,1200,131,100,3 +19900109,1200,131,100,2 +19900109,1200,131,100,1 +19900109,1200,131,210,40 +19900109,1200,132,100,1000 +19900109,1200,132,100,975 +19900109,1200,132,100,950 +19900109,1200,132,100,925 +19900109,1200,132,100,900 +19900109,1200,132,100,875 +19900109,1200,132,100,825 +19900109,1200,132,100,800 +19900109,1200,132,100,775 +19900109,1200,132,100,750 +19900109,1200,132,100,740 +19900109,1200,132,100,700 +19900109,1200,132,100,650 +19900109,1200,132,100,620 +19900109,1200,132,100,600 +19900109,1200,132,100,550 +19900109,1200,132,100,500 +19900109,1200,132,100,450 +19900109,1200,132,100,400 +19900109,1200,132,100,375 +19900109,1200,132,100,350 +19900109,1200,132,100,300 +19900109,1200,132,100,250 +19900109,1200,132,100,245 +19900109,1200,132,100,225 +19900109,1200,132,100,200 +19900109,1200,132,100,175 +19900109,1200,132,100,150 +19900109,1200,132,100,125 +19900109,1200,132,100,100 +19900109,1200,132,100,70 +19900109,1200,132,100,50 +19900109,1200,132,100,30 +19900109,1200,132,100,20 +19900109,1200,132,100,10 +19900109,1200,132,100,9 +19900109,1200,132,100,7 +19900109,1200,132,100,5 +19900109,1200,132,100,3 +19900109,1200,132,100,2 +19900109,1200,132,100,1 +19900109,1200,132,210,40 +19900109,1200,130,100,1000 +19900109,1200,130,100,975 +19900109,1200,130,100,950 +19900109,1200,130,100,925 +19900109,1200,130,100,900 +19900109,1200,130,100,875 +19900109,1200,130,100,850 +19900109,1200,130,100,825 +19900109,1200,130,100,800 +19900109,1200,130,100,775 +19900109,1200,130,100,750 +19900109,1200,130,100,740 +19900109,1200,130,100,700 +19900109,1200,130,100,650 +19900109,1200,130,100,620 +19900109,1200,130,100,600 +19900109,1200,130,100,550 +19900109,1200,130,100,500 +19900109,1200,130,100,450 +19900109,1200,130,100,400 +19900109,1200,130,100,375 +19900109,1200,130,100,350 +19900109,1200,130,100,300 +19900109,1200,130,100,250 +19900109,1200,130,100,245 +19900109,1200,130,100,225 +19900109,1200,130,100,200 +19900109,1200,130,100,175 +19900109,1200,130,100,150 +19900109,1200,130,100,125 +19900109,1200,130,100,100 +19900109,1200,130,100,70 +19900109,1200,130,100,50 +19900109,1200,130,100,30 +19900109,1200,130,100,20 +19900109,1200,130,100,10 +19900109,1200,130,100,9 +19900109,1200,130,100,7 +19900109,1200,130,100,5 +19900109,1200,130,100,3 +19900109,1200,130,100,2 +19900109,1200,130,100,1 +19900109,1200,130,210,40 +19900109,1200,129,100,1000 +19900109,1200,129,100,975 +19900109,1200,129,100,950 +19900109,1200,129,100,925 +19900109,1200,129,100,900 +19900109,1200,129,100,875 +19900109,1200,129,100,850 +19900109,1200,129,100,825 +19900109,1200,129,100,800 +19900109,1200,129,100,775 +19900109,1200,129,100,750 +19900109,1200,129,100,740 +19900109,1200,129,100,700 +19900109,1200,129,100,650 +19900109,1200,129,100,620 +19900109,1200,129,100,600 +19900109,1200,129,100,550 +19900109,1200,129,100,500 +19900109,1200,129,100,450 +19900109,1200,129,100,400 +19900109,1200,129,100,375 +19900109,1200,129,100,350 +19900109,1200,129,100,300 +19900109,1200,129,100,250 +19900109,1200,129,100,245 +19900109,1200,129,100,225 +19900109,1200,129,100,200 +19900109,1200,129,100,175 +19900109,1200,129,100,150 +19900109,1200,129,100,125 +19900109,1200,129,100,100 +19900109,1200,129,100,70 +19900109,1200,129,100,50 +19900109,1200,129,100,30 +19900109,1200,129,100,20 +19900109,1200,129,100,10 +19900109,1200,129,100,9 +19900109,1200,129,100,7 +19900109,1200,129,100,5 +19900109,1200,129,100,3 +19900109,1200,129,100,2 +19900109,1200,129,100,1 +19900109,1200,129,210,40 +19900109,1200,157,100,1000 +19900109,1200,157,100,975 +19900109,1200,157,100,950 +19900109,1200,157,100,925 +19900109,1200,157,100,900 +19900109,1200,157,100,875 +19900109,1200,157,100,850 +19900109,1200,157,100,825 +19900109,1200,157,100,800 +19900109,1200,157,100,775 +19900109,1200,157,100,750 +19900109,1200,157,100,740 +19900109,1200,157,100,700 +19900109,1200,157,100,650 +19900109,1200,157,100,620 +19900109,1200,157,100,600 +19900109,1200,157,100,550 +19900109,1200,157,100,500 +19900109,1200,157,100,450 +19900109,1200,157,100,400 +19900109,1200,157,100,375 +19900109,1200,157,100,350 +19900109,1200,157,100,300 +19900109,1200,157,100,250 +19900109,1200,157,100,245 +19900109,1200,157,100,225 +19900109,1200,157,100,200 +19900109,1200,157,100,175 +19900109,1200,157,100,150 +19900109,1200,157,100,125 +19900109,1200,157,100,100 +19900109,1200,157,100,70 +19900109,1200,157,100,50 +19900109,1200,157,100,30 +19900109,1200,157,100,20 +19900109,1200,157,100,10 +19900109,1200,157,100,9 +19900109,1200,157,100,7 +19900109,1200,157,100,5 +19900109,1200,157,100,3 +19900109,1200,157,100,2 +19900109,1200,157,100,1 +19900109,1200,157,210,40 +19900109,1200,135,100,1000 +19900109,1200,135,100,975 +19900109,1200,135,100,950 +19900109,1200,135,100,925 +19900109,1200,135,100,900 +19900109,1200,135,100,875 +19900109,1200,135,100,850 +19900109,1200,135,100,825 +19900109,1200,135,100,800 +19900109,1200,135,100,775 +19900109,1200,135,100,750 +19900109,1200,135,100,740 +19900109,1200,135,100,700 +19900109,1200,135,100,650 +19900109,1200,135,100,620 +19900109,1200,135,100,600 +19900109,1200,135,100,550 +19900109,1200,135,100,500 +19900109,1200,135,100,450 +19900109,1200,135,100,400 +19900109,1200,135,100,375 +19900109,1200,135,100,350 +19900109,1200,135,100,300 +19900109,1200,135,100,250 +19900109,1200,135,100,245 +19900109,1200,135,100,225 +19900109,1200,135,100,200 +19900109,1200,135,100,175 +19900109,1200,135,100,150 +19900109,1200,135,100,125 +19900109,1200,135,100,100 +19900109,1200,135,100,70 +19900109,1200,135,100,50 +19900109,1200,135,100,30 +19900109,1200,135,100,20 +19900109,1200,135,100,10 +19900109,1200,135,100,9 +19900109,1200,135,100,7 +19900109,1200,135,100,5 +19900109,1200,135,100,3 +19900109,1200,135,100,2 +19900109,1200,135,100,1 +19900109,1200,135,210,40 +19900109,1200,138,100,1000 +19900109,1200,138,100,975 +19900109,1200,138,100,950 +19900109,1200,138,100,925 +19900109,1200,138,100,900 +19900109,1200,138,100,875 +19900109,1200,138,100,850 +19900109,1200,138,100,825 +19900109,1200,138,100,800 +19900109,1200,138,100,775 +19900109,1200,138,100,750 +19900109,1200,138,100,740 +19900109,1200,138,100,700 +19900109,1200,138,100,650 +19900109,1200,138,100,620 +19900109,1200,138,100,600 +19900109,1200,138,100,550 +19900109,1200,138,100,500 +19900109,1200,138,100,450 +19900109,1200,138,100,400 +19900109,1200,138,100,375 +19900109,1200,138,100,350 +19900109,1200,138,100,300 +19900109,1200,138,100,250 +19900109,1200,138,100,245 +19900109,1200,138,100,225 +19900109,1200,138,100,200 +19900109,1200,138,100,175 +19900109,1200,138,100,150 +19900109,1200,138,100,125 +19900109,1200,138,100,100 +19900109,1200,138,100,70 +19900109,1200,138,100,50 +19900109,1200,138,100,30 +19900109,1200,138,100,20 +19900109,1200,138,100,10 +19900109,1200,138,100,9 +19900109,1200,138,100,7 +19900109,1200,138,100,5 +19900109,1200,138,100,3 +19900109,1200,138,100,2 +19900109,1200,138,100,1 +19900109,1200,138,210,40 +19900109,1200,131,109,1 +19900109,1200,131,109,2 +19900109,1200,131,109,3 +19900109,1200,131,109,4 +19900109,1200,131,109,5 +19900109,1200,131,109,6 +19900109,1200,131,109,7 +19900109,1200,131,109,8 +19900109,1200,131,109,9 +19900109,1200,131,109,10 +19900109,1200,132,109,1 +19900109,1200,132,109,2 +19900109,1200,132,109,3 +19900109,1200,132,109,4 +19900109,1200,132,109,5 +19900109,1200,132,109,6 +19900109,1200,132,109,7 +19900109,1200,132,109,8 +19900109,1200,132,109,9 +19900109,1200,132,109,10 +19900109,1200,130,109,1 +19900109,1200,130,109,2 +19900109,1200,130,109,3 +19900109,1200,130,109,4 +19900109,1200,130,109,5 +19900109,1200,130,109,6 +19900109,1200,130,109,7 +19900109,1200,130,109,8 +19900109,1200,130,109,9 +19900109,1200,130,109,10 +19900109,1200,157,109,1 +19900109,1200,157,109,2 +19900109,1200,157,109,3 +19900109,1200,157,109,4 +19900109,1200,157,109,5 +19900109,1200,157,109,6 +19900109,1200,157,109,7 +19900109,1200,157,109,8 +19900109,1200,157,109,9 +19900109,1200,157,109,10 +19900109,1200,54,109,1 +19900109,1200,54,109,2 +19900109,1200,54,109,3 +19900109,1200,54,109,4 +19900109,1200,54,109,5 +19900109,1200,54,109,6 +19900109,1200,54,109,7 +19900109,1200,54,109,8 +19900109,1200,54,109,9 +19900109,1200,54,109,10 +19900109,1200,135,109,1 +19900109,1200,135,109,2 +19900109,1200,135,109,3 +19900109,1200,135,109,4 +19900109,1200,135,109,5 +19900109,1200,135,109,6 +19900109,1200,135,109,7 +19900109,1200,135,109,8 +19900109,1200,135,109,9 +19900109,1200,135,109,10 +19900109,1200,134,109,1 +19900109,1200,152,109,1 +19900109,1200,131,100,850 +19900109,1200,132,100,850 +19900109,1200,134,100,1000 +19900109,1200,152,100,1000 +19900109,1500,131,100,850 +19900109,1500,132,100,850 +19900109,1500,134,100,1000 +19900109,1500,152,100,1000 +19900109,1800,131,100,1000 +19900109,1800,131,100,975 +19900109,1800,131,100,950 +19900109,1800,131,100,925 +19900109,1800,131,100,900 +19900109,1800,131,100,875 +19900109,1800,131,100,825 +19900109,1800,131,100,800 +19900109,1800,131,100,775 +19900109,1800,131,100,750 +19900109,1800,131,100,740 +19900109,1800,131,100,700 +19900109,1800,131,100,650 +19900109,1800,131,100,620 +19900109,1800,131,100,600 +19900109,1800,131,100,550 +19900109,1800,131,100,500 +19900109,1800,131,100,450 +19900109,1800,131,100,400 +19900109,1800,131,100,375 +19900109,1800,131,100,350 +19900109,1800,131,100,300 +19900109,1800,131,100,250 +19900109,1800,131,100,245 +19900109,1800,131,100,225 +19900109,1800,131,100,200 +19900109,1800,131,100,175 +19900109,1800,131,100,150 +19900109,1800,131,100,125 +19900109,1800,131,100,100 +19900109,1800,131,100,70 +19900109,1800,131,100,50 +19900109,1800,131,100,30 +19900109,1800,131,100,20 +19900109,1800,131,100,10 +19900109,1800,131,100,9 +19900109,1800,131,100,7 +19900109,1800,131,100,5 +19900109,1800,131,100,3 +19900109,1800,131,100,2 +19900109,1800,131,100,1 +19900109,1800,131,210,40 +19900109,1800,132,100,1000 +19900109,1800,132,100,975 +19900109,1800,132,100,950 +19900109,1800,132,100,925 +19900109,1800,132,100,900 +19900109,1800,132,100,875 +19900109,1800,132,100,825 +19900109,1800,132,100,800 +19900109,1800,132,100,775 +19900109,1800,132,100,750 +19900109,1800,132,100,740 +19900109,1800,132,100,700 +19900109,1800,132,100,650 +19900109,1800,132,100,620 +19900109,1800,132,100,600 +19900109,1800,132,100,550 +19900109,1800,132,100,500 +19900109,1800,132,100,450 +19900109,1800,132,100,400 +19900109,1800,132,100,375 +19900109,1800,132,100,350 +19900109,1800,132,100,300 +19900109,1800,132,100,250 +19900109,1800,132,100,245 +19900109,1800,132,100,225 +19900109,1800,132,100,200 +19900109,1800,132,100,175 +19900109,1800,132,100,150 +19900109,1800,132,100,125 +19900109,1800,132,100,100 +19900109,1800,132,100,70 +19900109,1800,132,100,50 +19900109,1800,132,100,30 +19900109,1800,132,100,20 +19900109,1800,132,100,10 +19900109,1800,132,100,9 +19900109,1800,132,100,7 +19900109,1800,132,100,5 +19900109,1800,132,100,3 +19900109,1800,132,100,2 +19900109,1800,132,100,1 +19900109,1800,132,210,40 +19900109,1800,130,100,1000 +19900109,1800,130,100,975 +19900109,1800,130,100,950 +19900109,1800,130,100,925 +19900109,1800,130,100,900 +19900109,1800,130,100,875 +19900109,1800,130,100,850 +19900109,1800,130,100,825 +19900109,1800,130,100,800 +19900109,1800,130,100,775 +19900109,1800,130,100,750 +19900109,1800,130,100,740 +19900109,1800,130,100,700 +19900109,1800,130,100,650 +19900109,1800,130,100,620 +19900109,1800,130,100,600 +19900109,1800,130,100,550 +19900109,1800,130,100,500 +19900109,1800,130,100,450 +19900109,1800,130,100,400 +19900109,1800,130,100,375 +19900109,1800,130,100,350 +19900109,1800,130,100,300 +19900109,1800,130,100,250 +19900109,1800,130,100,245 +19900109,1800,130,100,225 +19900109,1800,130,100,200 +19900109,1800,130,100,175 +19900109,1800,130,100,150 +19900109,1800,130,100,125 +19900109,1800,130,100,100 +19900109,1800,130,100,70 +19900109,1800,130,100,50 +19900109,1800,130,100,30 +19900109,1800,130,100,20 +19900109,1800,130,100,10 +19900109,1800,130,100,9 +19900109,1800,130,100,7 +19900109,1800,130,100,5 +19900109,1800,130,100,3 +19900109,1800,130,100,2 +19900109,1800,130,100,1 +19900109,1800,130,210,40 +19900109,1800,129,100,1000 +19900109,1800,129,100,975 +19900109,1800,129,100,950 +19900109,1800,129,100,925 +19900109,1800,129,100,900 +19900109,1800,129,100,875 +19900109,1800,129,100,850 +19900109,1800,129,100,825 +19900109,1800,129,100,800 +19900109,1800,129,100,775 +19900109,1800,129,100,750 +19900109,1800,129,100,740 +19900109,1800,129,100,700 +19900109,1800,129,100,650 +19900109,1800,129,100,620 +19900109,1800,129,100,600 +19900109,1800,129,100,550 +19900109,1800,129,100,500 +19900109,1800,129,100,450 +19900109,1800,129,100,400 +19900109,1800,129,100,375 +19900109,1800,129,100,350 +19900109,1800,129,100,300 +19900109,1800,129,100,250 +19900109,1800,129,100,245 +19900109,1800,129,100,225 +19900109,1800,129,100,200 +19900109,1800,129,100,175 +19900109,1800,129,100,150 +19900109,1800,129,100,125 +19900109,1800,129,100,100 +19900109,1800,129,100,70 +19900109,1800,129,100,50 +19900109,1800,129,100,30 +19900109,1800,129,100,20 +19900109,1800,129,100,10 +19900109,1800,129,100,9 +19900109,1800,129,100,7 +19900109,1800,129,100,5 +19900109,1800,129,100,3 +19900109,1800,129,100,2 +19900109,1800,129,100,1 +19900109,1800,129,210,40 +19900109,1800,157,100,1000 +19900109,1800,157,100,975 +19900109,1800,157,100,950 +19900109,1800,157,100,925 +19900109,1800,157,100,900 +19900109,1800,157,100,875 +19900109,1800,157,100,850 +19900109,1800,157,100,825 +19900109,1800,157,100,800 +19900109,1800,157,100,775 +19900109,1800,157,100,750 +19900109,1800,157,100,740 +19900109,1800,157,100,700 +19900109,1800,157,100,650 +19900109,1800,157,100,620 +19900109,1800,157,100,600 +19900109,1800,157,100,550 +19900109,1800,157,100,500 +19900109,1800,157,100,450 +19900109,1800,157,100,400 +19900109,1800,157,100,375 +19900109,1800,157,100,350 +19900109,1800,157,100,300 +19900109,1800,157,100,250 +19900109,1800,157,100,245 +19900109,1800,157,100,225 +19900109,1800,157,100,200 +19900109,1800,157,100,175 +19900109,1800,157,100,150 +19900109,1800,157,100,125 +19900109,1800,157,100,100 +19900109,1800,157,100,70 +19900109,1800,157,100,50 +19900109,1800,157,100,30 +19900109,1800,157,100,20 +19900109,1800,157,100,10 +19900109,1800,157,100,9 +19900109,1800,157,100,7 +19900109,1800,157,100,5 +19900109,1800,157,100,3 +19900109,1800,157,100,2 +19900109,1800,157,100,1 +19900109,1800,157,210,40 +19900109,1800,135,100,1000 +19900109,1800,135,100,975 +19900109,1800,135,100,950 +19900109,1800,135,100,925 +19900109,1800,135,100,900 +19900109,1800,135,100,875 +19900109,1800,135,100,850 +19900109,1800,135,100,825 +19900109,1800,135,100,800 +19900109,1800,135,100,775 +19900109,1800,135,100,750 +19900109,1800,135,100,740 +19900109,1800,135,100,700 +19900109,1800,135,100,650 +19900109,1800,135,100,620 +19900109,1800,135,100,600 +19900109,1800,135,100,550 +19900109,1800,135,100,500 +19900109,1800,135,100,450 +19900109,1800,135,100,400 +19900109,1800,135,100,375 +19900109,1800,135,100,350 +19900109,1800,135,100,300 +19900109,1800,135,100,250 +19900109,1800,135,100,245 +19900109,1800,135,100,225 +19900109,1800,135,100,200 +19900109,1800,135,100,175 +19900109,1800,135,100,150 +19900109,1800,135,100,125 +19900109,1800,135,100,100 +19900109,1800,135,100,70 +19900109,1800,135,100,50 +19900109,1800,135,100,30 +19900109,1800,135,100,20 +19900109,1800,135,100,10 +19900109,1800,135,100,9 +19900109,1800,135,100,7 +19900109,1800,135,100,5 +19900109,1800,135,100,3 +19900109,1800,135,100,2 +19900109,1800,135,100,1 +19900109,1800,135,210,40 +19900109,1800,138,100,1000 +19900109,1800,138,100,975 +19900109,1800,138,100,950 +19900109,1800,138,100,925 +19900109,1800,138,100,900 +19900109,1800,138,100,875 +19900109,1800,138,100,850 +19900109,1800,138,100,825 +19900109,1800,138,100,800 +19900109,1800,138,100,775 +19900109,1800,138,100,750 +19900109,1800,138,100,740 +19900109,1800,138,100,700 +19900109,1800,138,100,650 +19900109,1800,138,100,620 +19900109,1800,138,100,600 +19900109,1800,138,100,550 +19900109,1800,138,100,500 +19900109,1800,138,100,450 +19900109,1800,138,100,400 +19900109,1800,138,100,375 +19900109,1800,138,100,350 +19900109,1800,138,100,300 +19900109,1800,138,100,250 +19900109,1800,138,100,245 +19900109,1800,138,100,225 +19900109,1800,138,100,200 +19900109,1800,138,100,175 +19900109,1800,138,100,150 +19900109,1800,138,100,125 +19900109,1800,138,100,100 +19900109,1800,138,100,70 +19900109,1800,138,100,50 +19900109,1800,138,100,30 +19900109,1800,138,100,20 +19900109,1800,138,100,10 +19900109,1800,138,100,9 +19900109,1800,138,100,7 +19900109,1800,138,100,5 +19900109,1800,138,100,3 +19900109,1800,138,100,2 +19900109,1800,138,100,1 +19900109,1800,138,210,40 +19900109,1800,131,109,1 +19900109,1800,131,109,2 +19900109,1800,131,109,3 +19900109,1800,131,109,4 +19900109,1800,131,109,5 +19900109,1800,131,109,6 +19900109,1800,131,109,7 +19900109,1800,131,109,8 +19900109,1800,131,109,9 +19900109,1800,131,109,10 +19900109,1800,132,109,1 +19900109,1800,132,109,2 +19900109,1800,132,109,3 +19900109,1800,132,109,4 +19900109,1800,132,109,5 +19900109,1800,132,109,6 +19900109,1800,132,109,7 +19900109,1800,132,109,8 +19900109,1800,132,109,9 +19900109,1800,132,109,10 +19900109,1800,130,109,1 +19900109,1800,130,109,2 +19900109,1800,130,109,3 +19900109,1800,130,109,4 +19900109,1800,130,109,5 +19900109,1800,130,109,6 +19900109,1800,130,109,7 +19900109,1800,130,109,8 +19900109,1800,130,109,9 +19900109,1800,130,109,10 +19900109,1800,157,109,1 +19900109,1800,157,109,2 +19900109,1800,157,109,3 +19900109,1800,157,109,4 +19900109,1800,157,109,5 +19900109,1800,157,109,6 +19900109,1800,157,109,7 +19900109,1800,157,109,8 +19900109,1800,157,109,9 +19900109,1800,157,109,10 +19900109,1800,54,109,1 +19900109,1800,54,109,2 +19900109,1800,54,109,3 +19900109,1800,54,109,4 +19900109,1800,54,109,5 +19900109,1800,54,109,6 +19900109,1800,54,109,7 +19900109,1800,54,109,8 +19900109,1800,54,109,9 +19900109,1800,54,109,10 +19900109,1800,135,109,1 +19900109,1800,135,109,2 +19900109,1800,135,109,3 +19900109,1800,135,109,4 +19900109,1800,135,109,5 +19900109,1800,135,109,6 +19900109,1800,135,109,7 +19900109,1800,135,109,8 +19900109,1800,135,109,9 +19900109,1800,135,109,10 +19900109,1800,134,109,1 +19900109,1800,152,109,1 +19900109,1800,131,100,850 +19900109,1800,132,100,850 +19900109,1800,134,100,1000 +19900109,1800,152,100,1000 +19900109,2100,131,100,850 +19900109,2100,132,100,850 +19900109,2100,134,100,1000 +19900109,2100,152,100,1000 +19900110,0,131,100,1000 +19900110,0,131,100,975 +19900110,0,131,100,950 +19900110,0,131,100,925 +19900110,0,131,100,900 +19900110,0,131,100,875 +19900110,0,131,100,825 +19900110,0,131,100,800 +19900110,0,131,100,775 +19900110,0,131,100,750 +19900110,0,131,100,740 +19900110,0,131,100,700 +19900110,0,131,100,650 +19900110,0,131,100,620 +19900110,0,131,100,600 +19900110,0,131,100,550 +19900110,0,131,100,500 +19900110,0,131,100,450 +19900110,0,131,100,400 +19900110,0,131,100,375 +19900110,0,131,100,350 +19900110,0,131,100,300 +19900110,0,131,100,250 +19900110,0,131,100,245 +19900110,0,131,100,225 +19900110,0,131,100,200 +19900110,0,131,100,175 +19900110,0,131,100,150 +19900110,0,131,100,125 +19900110,0,131,100,100 +19900110,0,131,100,70 +19900110,0,131,100,50 +19900110,0,131,100,30 +19900110,0,131,100,20 +19900110,0,131,100,10 +19900110,0,131,100,9 +19900110,0,131,100,7 +19900110,0,131,100,5 +19900110,0,131,100,3 +19900110,0,131,100,2 +19900110,0,131,100,1 +19900110,0,131,210,40 +19900110,0,132,100,1000 +19900110,0,132,100,975 +19900110,0,132,100,950 +19900110,0,132,100,925 +19900110,0,132,100,900 +19900110,0,132,100,875 +19900110,0,132,100,825 +19900110,0,132,100,800 +19900110,0,132,100,775 +19900110,0,132,100,750 +19900110,0,132,100,740 +19900110,0,132,100,700 +19900110,0,132,100,650 +19900110,0,132,100,620 +19900110,0,132,100,600 +19900110,0,132,100,550 +19900110,0,132,100,500 +19900110,0,132,100,450 +19900110,0,132,100,400 +19900110,0,132,100,375 +19900110,0,132,100,350 +19900110,0,132,100,300 +19900110,0,132,100,250 +19900110,0,132,100,245 +19900110,0,132,100,225 +19900110,0,132,100,200 +19900110,0,132,100,175 +19900110,0,132,100,150 +19900110,0,132,100,125 +19900110,0,132,100,100 +19900110,0,132,100,70 +19900110,0,132,100,50 +19900110,0,132,100,30 +19900110,0,132,100,20 +19900110,0,132,100,10 +19900110,0,132,100,9 +19900110,0,132,100,7 +19900110,0,132,100,5 +19900110,0,132,100,3 +19900110,0,132,100,2 +19900110,0,132,100,1 +19900110,0,132,210,40 +19900110,0,130,100,1000 +19900110,0,130,100,975 +19900110,0,130,100,950 +19900110,0,130,100,925 +19900110,0,130,100,900 +19900110,0,130,100,875 +19900110,0,130,100,850 +19900110,0,130,100,825 +19900110,0,130,100,800 +19900110,0,130,100,775 +19900110,0,130,100,750 +19900110,0,130,100,740 +19900110,0,130,100,700 +19900110,0,130,100,650 +19900110,0,130,100,620 +19900110,0,130,100,600 +19900110,0,130,100,550 +19900110,0,130,100,500 +19900110,0,130,100,450 +19900110,0,130,100,400 +19900110,0,130,100,375 +19900110,0,130,100,350 +19900110,0,130,100,300 +19900110,0,130,100,250 +19900110,0,130,100,245 +19900110,0,130,100,225 +19900110,0,130,100,200 +19900110,0,130,100,175 +19900110,0,130,100,150 +19900110,0,130,100,125 +19900110,0,130,100,100 +19900110,0,130,100,70 +19900110,0,130,100,50 +19900110,0,130,100,30 +19900110,0,130,100,20 +19900110,0,130,100,10 +19900110,0,130,100,9 +19900110,0,130,100,7 +19900110,0,130,100,5 +19900110,0,130,100,3 +19900110,0,130,100,2 +19900110,0,130,100,1 +19900110,0,130,210,40 +19900110,0,129,100,1000 +19900110,0,129,100,975 +19900110,0,129,100,950 +19900110,0,129,100,925 +19900110,0,129,100,900 +19900110,0,129,100,875 +19900110,0,129,100,850 +19900110,0,129,100,825 +19900110,0,129,100,800 +19900110,0,129,100,775 +19900110,0,129,100,750 +19900110,0,129,100,740 +19900110,0,129,100,700 +19900110,0,129,100,650 +19900110,0,129,100,620 +19900110,0,129,100,600 +19900110,0,129,100,550 +19900110,0,129,100,500 +19900110,0,129,100,450 +19900110,0,129,100,400 +19900110,0,129,100,375 +19900110,0,129,100,350 +19900110,0,129,100,300 +19900110,0,129,100,250 +19900110,0,129,100,245 +19900110,0,129,100,225 +19900110,0,129,100,200 +19900110,0,129,100,175 +19900110,0,129,100,150 +19900110,0,129,100,125 +19900110,0,129,100,100 +19900110,0,129,100,70 +19900110,0,129,100,50 +19900110,0,129,100,30 +19900110,0,129,100,20 +19900110,0,129,100,10 +19900110,0,129,100,9 +19900110,0,129,100,7 +19900110,0,129,100,5 +19900110,0,129,100,3 +19900110,0,129,100,2 +19900110,0,129,100,1 +19900110,0,129,210,40 +19900110,0,157,100,1000 +19900110,0,157,100,975 +19900110,0,157,100,950 +19900110,0,157,100,925 +19900110,0,157,100,900 +19900110,0,157,100,875 +19900110,0,157,100,850 +19900110,0,157,100,825 +19900110,0,157,100,800 +19900110,0,157,100,775 +19900110,0,157,100,750 +19900110,0,157,100,740 +19900110,0,157,100,700 +19900110,0,157,100,650 +19900110,0,157,100,620 +19900110,0,157,100,600 +19900110,0,157,100,550 +19900110,0,157,100,500 +19900110,0,157,100,450 +19900110,0,157,100,400 +19900110,0,157,100,375 +19900110,0,157,100,350 +19900110,0,157,100,300 +19900110,0,157,100,250 +19900110,0,157,100,245 +19900110,0,157,100,225 +19900110,0,157,100,200 +19900110,0,157,100,175 +19900110,0,157,100,150 +19900110,0,157,100,125 +19900110,0,157,100,100 +19900110,0,157,100,70 +19900110,0,157,100,50 +19900110,0,157,100,30 +19900110,0,157,100,20 +19900110,0,157,100,10 +19900110,0,157,100,9 +19900110,0,157,100,7 +19900110,0,157,100,5 +19900110,0,157,100,3 +19900110,0,157,100,2 +19900110,0,157,100,1 +19900110,0,157,210,40 +19900110,0,135,100,1000 +19900110,0,135,100,975 +19900110,0,135,100,950 +19900110,0,135,100,925 +19900110,0,135,100,900 +19900110,0,135,100,875 +19900110,0,135,100,850 +19900110,0,135,100,825 +19900110,0,135,100,800 +19900110,0,135,100,775 +19900110,0,135,100,750 +19900110,0,135,100,740 +19900110,0,135,100,700 +19900110,0,135,100,650 +19900110,0,135,100,620 +19900110,0,135,100,600 +19900110,0,135,100,550 +19900110,0,135,100,500 +19900110,0,135,100,450 +19900110,0,135,100,400 +19900110,0,135,100,375 +19900110,0,135,100,350 +19900110,0,135,100,300 +19900110,0,135,100,250 +19900110,0,135,100,245 +19900110,0,135,100,225 +19900110,0,135,100,200 +19900110,0,135,100,175 +19900110,0,135,100,150 +19900110,0,135,100,125 +19900110,0,135,100,100 +19900110,0,135,100,70 +19900110,0,135,100,50 +19900110,0,135,100,30 +19900110,0,135,100,20 +19900110,0,135,100,10 +19900110,0,135,100,9 +19900110,0,135,100,7 +19900110,0,135,100,5 +19900110,0,135,100,3 +19900110,0,135,100,2 +19900110,0,135,100,1 +19900110,0,135,210,40 +19900110,0,138,100,1000 +19900110,0,138,100,975 +19900110,0,138,100,950 +19900110,0,138,100,925 +19900110,0,138,100,900 +19900110,0,138,100,875 +19900110,0,138,100,850 +19900110,0,138,100,825 +19900110,0,138,100,800 +19900110,0,138,100,775 +19900110,0,138,100,750 +19900110,0,138,100,740 +19900110,0,138,100,700 +19900110,0,138,100,650 +19900110,0,138,100,620 +19900110,0,138,100,600 +19900110,0,138,100,550 +19900110,0,138,100,500 +19900110,0,138,100,450 +19900110,0,138,100,400 +19900110,0,138,100,375 +19900110,0,138,100,350 +19900110,0,138,100,300 +19900110,0,138,100,250 +19900110,0,138,100,245 +19900110,0,138,100,225 +19900110,0,138,100,200 +19900110,0,138,100,175 +19900110,0,138,100,150 +19900110,0,138,100,125 +19900110,0,138,100,100 +19900110,0,138,100,70 +19900110,0,138,100,50 +19900110,0,138,100,30 +19900110,0,138,100,20 +19900110,0,138,100,10 +19900110,0,138,100,9 +19900110,0,138,100,7 +19900110,0,138,100,5 +19900110,0,138,100,3 +19900110,0,138,100,2 +19900110,0,138,100,1 +19900110,0,138,210,40 +19900110,0,131,109,1 +19900110,0,131,109,2 +19900110,0,131,109,3 +19900110,0,131,109,4 +19900110,0,131,109,5 +19900110,0,131,109,6 +19900110,0,131,109,7 +19900110,0,131,109,8 +19900110,0,131,109,9 +19900110,0,131,109,10 +19900110,0,132,109,1 +19900110,0,132,109,2 +19900110,0,132,109,3 +19900110,0,132,109,4 +19900110,0,132,109,5 +19900110,0,132,109,6 +19900110,0,132,109,7 +19900110,0,132,109,8 +19900110,0,132,109,9 +19900110,0,132,109,10 +19900110,0,130,109,1 +19900110,0,130,109,2 +19900110,0,130,109,3 +19900110,0,130,109,4 +19900110,0,130,109,5 +19900110,0,130,109,6 +19900110,0,130,109,7 +19900110,0,130,109,8 +19900110,0,130,109,9 +19900110,0,130,109,10 +19900110,0,157,109,1 +19900110,0,157,109,2 +19900110,0,157,109,3 +19900110,0,157,109,4 +19900110,0,157,109,5 +19900110,0,157,109,6 +19900110,0,157,109,7 +19900110,0,157,109,8 +19900110,0,157,109,9 +19900110,0,157,109,10 +19900110,0,54,109,1 +19900110,0,54,109,2 +19900110,0,54,109,3 +19900110,0,54,109,4 +19900110,0,54,109,5 +19900110,0,54,109,6 +19900110,0,54,109,7 +19900110,0,54,109,8 +19900110,0,54,109,9 +19900110,0,54,109,10 +19900110,0,135,109,1 +19900110,0,135,109,2 +19900110,0,135,109,3 +19900110,0,135,109,4 +19900110,0,135,109,5 +19900110,0,135,109,6 +19900110,0,135,109,7 +19900110,0,135,109,8 +19900110,0,135,109,9 +19900110,0,135,109,10 +19900110,0,134,109,1 +19900110,0,152,109,1 +19900110,0,131,100,850 +19900110,0,132,100,850 +19900110,0,134,100,1000 +19900110,0,152,100,1000 +19900110,300,131,100,850 +19900110,300,132,100,850 +19900110,300,134,100,1000 +19900110,300,152,100,1000 +19900110,600,131,100,1000 +19900110,600,131,100,975 +19900110,600,131,100,950 +19900110,600,131,100,925 +19900110,600,131,100,900 +19900110,600,131,100,875 +19900110,600,131,100,825 +19900110,600,131,100,800 +19900110,600,131,100,775 +19900110,600,131,100,750 +19900110,600,131,100,740 +19900110,600,131,100,700 +19900110,600,131,100,650 +19900110,600,131,100,620 +19900110,600,131,100,600 +19900110,600,131,100,550 +19900110,600,131,100,500 +19900110,600,131,100,450 +19900110,600,131,100,400 +19900110,600,131,100,375 +19900110,600,131,100,350 +19900110,600,131,100,300 +19900110,600,131,100,250 +19900110,600,131,100,245 +19900110,600,131,100,225 +19900110,600,131,100,200 +19900110,600,131,100,175 +19900110,600,131,100,150 +19900110,600,131,100,125 +19900110,600,131,100,100 +19900110,600,131,100,70 +19900110,600,131,100,50 +19900110,600,131,100,30 +19900110,600,131,100,20 +19900110,600,131,100,10 +19900110,600,131,100,9 +19900110,600,131,100,7 +19900110,600,131,100,5 +19900110,600,131,100,3 +19900110,600,131,100,2 +19900110,600,131,100,1 +19900110,600,131,210,40 +19900110,600,132,100,1000 +19900110,600,132,100,975 +19900110,600,132,100,950 +19900110,600,132,100,925 +19900110,600,132,100,900 +19900110,600,132,100,875 +19900110,600,132,100,825 +19900110,600,132,100,800 +19900110,600,132,100,775 +19900110,600,132,100,750 +19900110,600,132,100,740 +19900110,600,132,100,700 +19900110,600,132,100,650 +19900110,600,132,100,620 +19900110,600,132,100,600 +19900110,600,132,100,550 +19900110,600,132,100,500 +19900110,600,132,100,450 +19900110,600,132,100,400 +19900110,600,132,100,375 +19900110,600,132,100,350 +19900110,600,132,100,300 +19900110,600,132,100,250 +19900110,600,132,100,245 +19900110,600,132,100,225 +19900110,600,132,100,200 +19900110,600,132,100,175 +19900110,600,132,100,150 +19900110,600,132,100,125 +19900110,600,132,100,100 +19900110,600,132,100,70 +19900110,600,132,100,50 +19900110,600,132,100,30 +19900110,600,132,100,20 +19900110,600,132,100,10 +19900110,600,132,100,9 +19900110,600,132,100,7 +19900110,600,132,100,5 +19900110,600,132,100,3 +19900110,600,132,100,2 +19900110,600,132,100,1 +19900110,600,132,210,40 +19900110,600,130,100,1000 +19900110,600,130,100,975 +19900110,600,130,100,950 +19900110,600,130,100,925 +19900110,600,130,100,900 +19900110,600,130,100,875 +19900110,600,130,100,850 +19900110,600,130,100,825 +19900110,600,130,100,800 +19900110,600,130,100,775 +19900110,600,130,100,750 +19900110,600,130,100,740 +19900110,600,130,100,700 +19900110,600,130,100,650 +19900110,600,130,100,620 +19900110,600,130,100,600 +19900110,600,130,100,550 +19900110,600,130,100,500 +19900110,600,130,100,450 +19900110,600,130,100,400 +19900110,600,130,100,375 +19900110,600,130,100,350 +19900110,600,130,100,300 +19900110,600,130,100,250 +19900110,600,130,100,245 +19900110,600,130,100,225 +19900110,600,130,100,200 +19900110,600,130,100,175 +19900110,600,130,100,150 +19900110,600,130,100,125 +19900110,600,130,100,100 +19900110,600,130,100,70 +19900110,600,130,100,50 +19900110,600,130,100,30 +19900110,600,130,100,20 +19900110,600,130,100,10 +19900110,600,130,100,9 +19900110,600,130,100,7 +19900110,600,130,100,5 +19900110,600,130,100,3 +19900110,600,130,100,2 +19900110,600,130,100,1 +19900110,600,130,210,40 +19900110,600,129,100,1000 +19900110,600,129,100,975 +19900110,600,129,100,950 +19900110,600,129,100,925 +19900110,600,129,100,900 +19900110,600,129,100,875 +19900110,600,129,100,850 +19900110,600,129,100,825 +19900110,600,129,100,800 +19900110,600,129,100,775 +19900110,600,129,100,750 +19900110,600,129,100,740 +19900110,600,129,100,700 +19900110,600,129,100,650 +19900110,600,129,100,620 +19900110,600,129,100,600 +19900110,600,129,100,550 +19900110,600,129,100,500 +19900110,600,129,100,450 +19900110,600,129,100,400 +19900110,600,129,100,375 +19900110,600,129,100,350 +19900110,600,129,100,300 +19900110,600,129,100,250 +19900110,600,129,100,245 +19900110,600,129,100,225 +19900110,600,129,100,200 +19900110,600,129,100,175 +19900110,600,129,100,150 +19900110,600,129,100,125 +19900110,600,129,100,100 +19900110,600,129,100,70 +19900110,600,129,100,50 +19900110,600,129,100,30 +19900110,600,129,100,20 +19900110,600,129,100,10 +19900110,600,129,100,9 +19900110,600,129,100,7 +19900110,600,129,100,5 +19900110,600,129,100,3 +19900110,600,129,100,2 +19900110,600,129,100,1 +19900110,600,129,210,40 +19900110,600,157,100,1000 +19900110,600,157,100,975 +19900110,600,157,100,950 +19900110,600,157,100,925 +19900110,600,157,100,900 +19900110,600,157,100,875 +19900110,600,157,100,850 +19900110,600,157,100,825 +19900110,600,157,100,800 +19900110,600,157,100,775 +19900110,600,157,100,750 +19900110,600,157,100,740 +19900110,600,157,100,700 +19900110,600,157,100,650 +19900110,600,157,100,620 +19900110,600,157,100,600 +19900110,600,157,100,550 +19900110,600,157,100,500 +19900110,600,157,100,450 +19900110,600,157,100,400 +19900110,600,157,100,375 +19900110,600,157,100,350 +19900110,600,157,100,300 +19900110,600,157,100,250 +19900110,600,157,100,245 +19900110,600,157,100,225 +19900110,600,157,100,200 +19900110,600,157,100,175 +19900110,600,157,100,150 +19900110,600,157,100,125 +19900110,600,157,100,100 +19900110,600,157,100,70 +19900110,600,157,100,50 +19900110,600,157,100,30 +19900110,600,157,100,20 +19900110,600,157,100,10 +19900110,600,157,100,9 +19900110,600,157,100,7 +19900110,600,157,100,5 +19900110,600,157,100,3 +19900110,600,157,100,2 +19900110,600,157,100,1 +19900110,600,157,210,40 +19900110,600,135,100,1000 +19900110,600,135,100,975 +19900110,600,135,100,950 +19900110,600,135,100,925 +19900110,600,135,100,900 +19900110,600,135,100,875 +19900110,600,135,100,850 +19900110,600,135,100,825 +19900110,600,135,100,800 +19900110,600,135,100,775 +19900110,600,135,100,750 +19900110,600,135,100,740 +19900110,600,135,100,700 +19900110,600,135,100,650 +19900110,600,135,100,620 +19900110,600,135,100,600 +19900110,600,135,100,550 +19900110,600,135,100,500 +19900110,600,135,100,450 +19900110,600,135,100,400 +19900110,600,135,100,375 +19900110,600,135,100,350 +19900110,600,135,100,300 +19900110,600,135,100,250 +19900110,600,135,100,245 +19900110,600,135,100,225 +19900110,600,135,100,200 +19900110,600,135,100,175 +19900110,600,135,100,150 +19900110,600,135,100,125 +19900110,600,135,100,100 +19900110,600,135,100,70 +19900110,600,135,100,50 +19900110,600,135,100,30 +19900110,600,135,100,20 +19900110,600,135,100,10 +19900110,600,135,100,9 +19900110,600,135,100,7 +19900110,600,135,100,5 +19900110,600,135,100,3 +19900110,600,135,100,2 +19900110,600,135,100,1 +19900110,600,135,210,40 +19900110,600,138,100,1000 +19900110,600,138,100,975 +19900110,600,138,100,950 +19900110,600,138,100,925 +19900110,600,138,100,900 +19900110,600,138,100,875 +19900110,600,138,100,850 +19900110,600,138,100,825 +19900110,600,138,100,800 +19900110,600,138,100,775 +19900110,600,138,100,750 +19900110,600,138,100,740 +19900110,600,138,100,700 +19900110,600,138,100,650 +19900110,600,138,100,620 +19900110,600,138,100,600 +19900110,600,138,100,550 +19900110,600,138,100,500 +19900110,600,138,100,450 +19900110,600,138,100,400 +19900110,600,138,100,375 +19900110,600,138,100,350 +19900110,600,138,100,300 +19900110,600,138,100,250 +19900110,600,138,100,245 +19900110,600,138,100,225 +19900110,600,138,100,200 +19900110,600,138,100,175 +19900110,600,138,100,150 +19900110,600,138,100,125 +19900110,600,138,100,100 +19900110,600,138,100,70 +19900110,600,138,100,50 +19900110,600,138,100,30 +19900110,600,138,100,20 +19900110,600,138,100,10 +19900110,600,138,100,9 +19900110,600,138,100,7 +19900110,600,138,100,5 +19900110,600,138,100,3 +19900110,600,138,100,2 +19900110,600,138,100,1 +19900110,600,138,210,40 +19900110,600,131,109,1 +19900110,600,131,109,2 +19900110,600,131,109,3 +19900110,600,131,109,4 +19900110,600,131,109,5 +19900110,600,131,109,6 +19900110,600,131,109,7 +19900110,600,131,109,8 +19900110,600,131,109,9 +19900110,600,131,109,10 +19900110,600,132,109,1 +19900110,600,132,109,2 +19900110,600,132,109,3 +19900110,600,132,109,4 +19900110,600,132,109,5 +19900110,600,132,109,6 +19900110,600,132,109,7 +19900110,600,132,109,8 +19900110,600,132,109,9 +19900110,600,132,109,10 +19900110,600,130,109,1 +19900110,600,130,109,2 +19900110,600,130,109,3 +19900110,600,130,109,4 +19900110,600,130,109,5 +19900110,600,130,109,6 +19900110,600,130,109,7 +19900110,600,130,109,8 +19900110,600,130,109,9 +19900110,600,130,109,10 +19900110,600,157,109,1 +19900110,600,157,109,2 +19900110,600,157,109,3 +19900110,600,157,109,4 +19900110,600,157,109,5 +19900110,600,157,109,6 +19900110,600,157,109,7 +19900110,600,157,109,8 +19900110,600,157,109,9 +19900110,600,157,109,10 +19900110,600,54,109,1 +19900110,600,54,109,2 +19900110,600,54,109,3 +19900110,600,54,109,4 +19900110,600,54,109,5 +19900110,600,54,109,6 +19900110,600,54,109,7 +19900110,600,54,109,8 +19900110,600,54,109,9 +19900110,600,54,109,10 +19900110,600,135,109,1 +19900110,600,135,109,2 +19900110,600,135,109,3 +19900110,600,135,109,4 +19900110,600,135,109,5 +19900110,600,135,109,6 +19900110,600,135,109,7 +19900110,600,135,109,8 +19900110,600,135,109,9 +19900110,600,135,109,10 +19900110,600,134,109,1 +19900110,600,152,109,1 +19900110,600,131,100,850 +19900110,600,132,100,850 +19900110,600,134,100,1000 +19900110,600,152,100,1000 +19900110,900,131,100,850 +19900110,900,132,100,850 +19900110,900,134,100,1000 +19900110,900,152,100,1000 +19900110,1200,131,100,1000 +19900110,1200,131,100,975 +19900110,1200,131,100,950 +19900110,1200,131,100,925 +19900110,1200,131,100,900 +19900110,1200,131,100,875 +19900110,1200,131,100,825 +19900110,1200,131,100,800 +19900110,1200,131,100,775 +19900110,1200,131,100,750 +19900110,1200,131,100,740 +19900110,1200,131,100,700 +19900110,1200,131,100,650 +19900110,1200,131,100,620 +19900110,1200,131,100,600 +19900110,1200,131,100,550 +19900110,1200,131,100,500 +19900110,1200,131,100,450 +19900110,1200,131,100,400 +19900110,1200,131,100,375 +19900110,1200,131,100,350 +19900110,1200,131,100,300 +19900110,1200,131,100,250 +19900110,1200,131,100,245 +19900110,1200,131,100,225 +19900110,1200,131,100,200 +19900110,1200,131,100,175 +19900110,1200,131,100,150 +19900110,1200,131,100,125 +19900110,1200,131,100,100 +19900110,1200,131,100,70 +19900110,1200,131,100,50 +19900110,1200,131,100,30 +19900110,1200,131,100,20 +19900110,1200,131,100,10 +19900110,1200,131,100,9 +19900110,1200,131,100,7 +19900110,1200,131,100,5 +19900110,1200,131,100,3 +19900110,1200,131,100,2 +19900110,1200,131,100,1 +19900110,1200,131,210,40 +19900110,1200,132,100,1000 +19900110,1200,132,100,975 +19900110,1200,132,100,950 +19900110,1200,132,100,925 +19900110,1200,132,100,900 +19900110,1200,132,100,875 +19900110,1200,132,100,825 +19900110,1200,132,100,800 +19900110,1200,132,100,775 +19900110,1200,132,100,750 +19900110,1200,132,100,740 +19900110,1200,132,100,700 +19900110,1200,132,100,650 +19900110,1200,132,100,620 +19900110,1200,132,100,600 +19900110,1200,132,100,550 +19900110,1200,132,100,500 +19900110,1200,132,100,450 +19900110,1200,132,100,400 +19900110,1200,132,100,375 +19900110,1200,132,100,350 +19900110,1200,132,100,300 +19900110,1200,132,100,250 +19900110,1200,132,100,245 +19900110,1200,132,100,225 +19900110,1200,132,100,200 +19900110,1200,132,100,175 +19900110,1200,132,100,150 +19900110,1200,132,100,125 +19900110,1200,132,100,100 +19900110,1200,132,100,70 +19900110,1200,132,100,50 +19900110,1200,132,100,30 +19900110,1200,132,100,20 +19900110,1200,132,100,10 +19900110,1200,132,100,9 +19900110,1200,132,100,7 +19900110,1200,132,100,5 +19900110,1200,132,100,3 +19900110,1200,132,100,2 +19900110,1200,132,100,1 +19900110,1200,132,210,40 +19900110,1200,130,100,1000 +19900110,1200,130,100,975 +19900110,1200,130,100,950 +19900110,1200,130,100,925 +19900110,1200,130,100,900 +19900110,1200,130,100,875 +19900110,1200,130,100,850 +19900110,1200,130,100,825 +19900110,1200,130,100,800 +19900110,1200,130,100,775 +19900110,1200,130,100,750 +19900110,1200,130,100,740 +19900110,1200,130,100,700 +19900110,1200,130,100,650 +19900110,1200,130,100,620 +19900110,1200,130,100,600 +19900110,1200,130,100,550 +19900110,1200,130,100,500 +19900110,1200,130,100,450 +19900110,1200,130,100,400 +19900110,1200,130,100,375 +19900110,1200,130,100,350 +19900110,1200,130,100,300 +19900110,1200,130,100,250 +19900110,1200,130,100,245 +19900110,1200,130,100,225 +19900110,1200,130,100,200 +19900110,1200,130,100,175 +19900110,1200,130,100,150 +19900110,1200,130,100,125 +19900110,1200,130,100,100 +19900110,1200,130,100,70 +19900110,1200,130,100,50 +19900110,1200,130,100,30 +19900110,1200,130,100,20 +19900110,1200,130,100,10 +19900110,1200,130,100,9 +19900110,1200,130,100,7 +19900110,1200,130,100,5 +19900110,1200,130,100,3 +19900110,1200,130,100,2 +19900110,1200,130,100,1 +19900110,1200,130,210,40 +19900110,1200,129,100,1000 +19900110,1200,129,100,975 +19900110,1200,129,100,950 +19900110,1200,129,100,925 +19900110,1200,129,100,900 +19900110,1200,129,100,875 +19900110,1200,129,100,850 +19900110,1200,129,100,825 +19900110,1200,129,100,800 +19900110,1200,129,100,775 +19900110,1200,129,100,750 +19900110,1200,129,100,740 +19900110,1200,129,100,700 +19900110,1200,129,100,650 +19900110,1200,129,100,620 +19900110,1200,129,100,600 +19900110,1200,129,100,550 +19900110,1200,129,100,500 +19900110,1200,129,100,450 +19900110,1200,129,100,400 +19900110,1200,129,100,375 +19900110,1200,129,100,350 +19900110,1200,129,100,300 +19900110,1200,129,100,250 +19900110,1200,129,100,245 +19900110,1200,129,100,225 +19900110,1200,129,100,200 +19900110,1200,129,100,175 +19900110,1200,129,100,150 +19900110,1200,129,100,125 +19900110,1200,129,100,100 +19900110,1200,129,100,70 +19900110,1200,129,100,50 +19900110,1200,129,100,30 +19900110,1200,129,100,20 +19900110,1200,129,100,10 +19900110,1200,129,100,9 +19900110,1200,129,100,7 +19900110,1200,129,100,5 +19900110,1200,129,100,3 +19900110,1200,129,100,2 +19900110,1200,129,100,1 +19900110,1200,129,210,40 +19900110,1200,157,100,1000 +19900110,1200,157,100,975 +19900110,1200,157,100,950 +19900110,1200,157,100,925 +19900110,1200,157,100,900 +19900110,1200,157,100,875 +19900110,1200,157,100,850 +19900110,1200,157,100,825 +19900110,1200,157,100,800 +19900110,1200,157,100,775 +19900110,1200,157,100,750 +19900110,1200,157,100,740 +19900110,1200,157,100,700 +19900110,1200,157,100,650 +19900110,1200,157,100,620 +19900110,1200,157,100,600 +19900110,1200,157,100,550 +19900110,1200,157,100,500 +19900110,1200,157,100,450 +19900110,1200,157,100,400 +19900110,1200,157,100,375 +19900110,1200,157,100,350 +19900110,1200,157,100,300 +19900110,1200,157,100,250 +19900110,1200,157,100,245 +19900110,1200,157,100,225 +19900110,1200,157,100,200 +19900110,1200,157,100,175 +19900110,1200,157,100,150 +19900110,1200,157,100,125 +19900110,1200,157,100,100 +19900110,1200,157,100,70 +19900110,1200,157,100,50 +19900110,1200,157,100,30 +19900110,1200,157,100,20 +19900110,1200,157,100,10 +19900110,1200,157,100,9 +19900110,1200,157,100,7 +19900110,1200,157,100,5 +19900110,1200,157,100,3 +19900110,1200,157,100,2 +19900110,1200,157,100,1 +19900110,1200,157,210,40 +19900110,1200,135,100,1000 +19900110,1200,135,100,975 +19900110,1200,135,100,950 +19900110,1200,135,100,925 +19900110,1200,135,100,900 +19900110,1200,135,100,875 +19900110,1200,135,100,850 +19900110,1200,135,100,825 +19900110,1200,135,100,800 +19900110,1200,135,100,775 +19900110,1200,135,100,750 +19900110,1200,135,100,740 +19900110,1200,135,100,700 +19900110,1200,135,100,650 +19900110,1200,135,100,620 +19900110,1200,135,100,600 +19900110,1200,135,100,550 +19900110,1200,135,100,500 +19900110,1200,135,100,450 +19900110,1200,135,100,400 +19900110,1200,135,100,375 +19900110,1200,135,100,350 +19900110,1200,135,100,300 +19900110,1200,135,100,250 +19900110,1200,135,100,245 +19900110,1200,135,100,225 +19900110,1200,135,100,200 +19900110,1200,135,100,175 +19900110,1200,135,100,150 +19900110,1200,135,100,125 +19900110,1200,135,100,100 +19900110,1200,135,100,70 +19900110,1200,135,100,50 +19900110,1200,135,100,30 +19900110,1200,135,100,20 +19900110,1200,135,100,10 +19900110,1200,135,100,9 +19900110,1200,135,100,7 +19900110,1200,135,100,5 +19900110,1200,135,100,3 +19900110,1200,135,100,2 +19900110,1200,135,100,1 +19900110,1200,135,210,40 +19900110,1200,138,100,1000 +19900110,1200,138,100,975 +19900110,1200,138,100,950 +19900110,1200,138,100,925 +19900110,1200,138,100,900 +19900110,1200,138,100,875 +19900110,1200,138,100,850 +19900110,1200,138,100,825 +19900110,1200,138,100,800 +19900110,1200,138,100,775 +19900110,1200,138,100,750 +19900110,1200,138,100,740 +19900110,1200,138,100,700 +19900110,1200,138,100,650 +19900110,1200,138,100,620 +19900110,1200,138,100,600 +19900110,1200,138,100,550 +19900110,1200,138,100,500 +19900110,1200,138,100,450 +19900110,1200,138,100,400 +19900110,1200,138,100,375 +19900110,1200,138,100,350 +19900110,1200,138,100,300 +19900110,1200,138,100,250 +19900110,1200,138,100,245 +19900110,1200,138,100,225 +19900110,1200,138,100,200 +19900110,1200,138,100,175 +19900110,1200,138,100,150 +19900110,1200,138,100,125 +19900110,1200,138,100,100 +19900110,1200,138,100,70 +19900110,1200,138,100,50 +19900110,1200,138,100,30 +19900110,1200,138,100,20 +19900110,1200,138,100,10 +19900110,1200,138,100,9 +19900110,1200,138,100,7 +19900110,1200,138,100,5 +19900110,1200,138,100,3 +19900110,1200,138,100,2 +19900110,1200,138,100,1 +19900110,1200,138,210,40 +19900110,1200,131,109,1 +19900110,1200,131,109,2 +19900110,1200,131,109,3 +19900110,1200,131,109,4 +19900110,1200,131,109,5 +19900110,1200,131,109,6 +19900110,1200,131,109,7 +19900110,1200,131,109,8 +19900110,1200,131,109,9 +19900110,1200,131,109,10 +19900110,1200,132,109,1 +19900110,1200,132,109,2 +19900110,1200,132,109,3 +19900110,1200,132,109,4 +19900110,1200,132,109,5 +19900110,1200,132,109,6 +19900110,1200,132,109,7 +19900110,1200,132,109,8 +19900110,1200,132,109,9 +19900110,1200,132,109,10 +19900110,1200,130,109,1 +19900110,1200,130,109,2 +19900110,1200,130,109,3 +19900110,1200,130,109,4 +19900110,1200,130,109,5 +19900110,1200,130,109,6 +19900110,1200,130,109,7 +19900110,1200,130,109,8 +19900110,1200,130,109,9 +19900110,1200,130,109,10 +19900110,1200,157,109,1 +19900110,1200,157,109,2 +19900110,1200,157,109,3 +19900110,1200,157,109,4 +19900110,1200,157,109,5 +19900110,1200,157,109,6 +19900110,1200,157,109,7 +19900110,1200,157,109,8 +19900110,1200,157,109,9 +19900110,1200,157,109,10 +19900110,1200,54,109,1 +19900110,1200,54,109,2 +19900110,1200,54,109,3 +19900110,1200,54,109,4 +19900110,1200,54,109,5 +19900110,1200,54,109,6 +19900110,1200,54,109,7 +19900110,1200,54,109,8 +19900110,1200,54,109,9 +19900110,1200,54,109,10 +19900110,1200,135,109,1 +19900110,1200,135,109,2 +19900110,1200,135,109,3 +19900110,1200,135,109,4 +19900110,1200,135,109,5 +19900110,1200,135,109,6 +19900110,1200,135,109,7 +19900110,1200,135,109,8 +19900110,1200,135,109,9 +19900110,1200,135,109,10 +19900110,1200,134,109,1 +19900110,1200,152,109,1 +19900110,1200,131,100,850 +19900110,1200,132,100,850 +19900110,1200,134,100,1000 +19900110,1200,152,100,1000 +19900110,1500,131,100,850 +19900110,1500,132,100,850 +19900110,1500,134,100,1000 +19900110,1500,152,100,1000 +19900110,1800,131,100,1000 +19900110,1800,131,100,975 +19900110,1800,131,100,950 +19900110,1800,131,100,925 +19900110,1800,131,100,900 +19900110,1800,131,100,875 +19900110,1800,131,100,825 +19900110,1800,131,100,800 +19900110,1800,131,100,775 +19900110,1800,131,100,750 +19900110,1800,131,100,740 +19900110,1800,131,100,700 +19900110,1800,131,100,650 +19900110,1800,131,100,620 +19900110,1800,131,100,600 +19900110,1800,131,100,550 +19900110,1800,131,100,500 +19900110,1800,131,100,450 +19900110,1800,131,100,400 +19900110,1800,131,100,375 +19900110,1800,131,100,350 +19900110,1800,131,100,300 +19900110,1800,131,100,250 +19900110,1800,131,100,245 +19900110,1800,131,100,225 +19900110,1800,131,100,200 +19900110,1800,131,100,175 +19900110,1800,131,100,150 +19900110,1800,131,100,125 +19900110,1800,131,100,100 +19900110,1800,131,100,70 +19900110,1800,131,100,50 +19900110,1800,131,100,30 +19900110,1800,131,100,20 +19900110,1800,131,100,10 +19900110,1800,131,100,9 +19900110,1800,131,100,7 +19900110,1800,131,100,5 +19900110,1800,131,100,3 +19900110,1800,131,100,2 +19900110,1800,131,100,1 +19900110,1800,131,210,40 +19900110,1800,132,100,1000 +19900110,1800,132,100,975 +19900110,1800,132,100,950 +19900110,1800,132,100,925 +19900110,1800,132,100,900 +19900110,1800,132,100,875 +19900110,1800,132,100,825 +19900110,1800,132,100,800 +19900110,1800,132,100,775 +19900110,1800,132,100,750 +19900110,1800,132,100,740 +19900110,1800,132,100,700 +19900110,1800,132,100,650 +19900110,1800,132,100,620 +19900110,1800,132,100,600 +19900110,1800,132,100,550 +19900110,1800,132,100,500 +19900110,1800,132,100,450 +19900110,1800,132,100,400 +19900110,1800,132,100,375 +19900110,1800,132,100,350 +19900110,1800,132,100,300 +19900110,1800,132,100,250 +19900110,1800,132,100,245 +19900110,1800,132,100,225 +19900110,1800,132,100,200 +19900110,1800,132,100,175 +19900110,1800,132,100,150 +19900110,1800,132,100,125 +19900110,1800,132,100,100 +19900110,1800,132,100,70 +19900110,1800,132,100,50 +19900110,1800,132,100,30 +19900110,1800,132,100,20 +19900110,1800,132,100,10 +19900110,1800,132,100,9 +19900110,1800,132,100,7 +19900110,1800,132,100,5 +19900110,1800,132,100,3 +19900110,1800,132,100,2 +19900110,1800,132,100,1 +19900110,1800,132,210,40 +19900110,1800,130,100,1000 +19900110,1800,130,100,975 +19900110,1800,130,100,950 +19900110,1800,130,100,925 +19900110,1800,130,100,900 +19900110,1800,130,100,875 +19900110,1800,130,100,850 +19900110,1800,130,100,825 +19900110,1800,130,100,800 +19900110,1800,130,100,775 +19900110,1800,130,100,750 +19900110,1800,130,100,740 +19900110,1800,130,100,700 +19900110,1800,130,100,650 +19900110,1800,130,100,620 +19900110,1800,130,100,600 +19900110,1800,130,100,550 +19900110,1800,130,100,500 +19900110,1800,130,100,450 +19900110,1800,130,100,400 +19900110,1800,130,100,375 +19900110,1800,130,100,350 +19900110,1800,130,100,300 +19900110,1800,130,100,250 +19900110,1800,130,100,245 +19900110,1800,130,100,225 +19900110,1800,130,100,200 +19900110,1800,130,100,175 +19900110,1800,130,100,150 +19900110,1800,130,100,125 +19900110,1800,130,100,100 +19900110,1800,130,100,70 +19900110,1800,130,100,50 +19900110,1800,130,100,30 +19900110,1800,130,100,20 +19900110,1800,130,100,10 +19900110,1800,130,100,9 +19900110,1800,130,100,7 +19900110,1800,130,100,5 +19900110,1800,130,100,3 +19900110,1800,130,100,2 +19900110,1800,130,100,1 +19900110,1800,130,210,40 +19900110,1800,129,100,1000 +19900110,1800,129,100,975 +19900110,1800,129,100,950 +19900110,1800,129,100,925 +19900110,1800,129,100,900 +19900110,1800,129,100,875 +19900110,1800,129,100,850 +19900110,1800,129,100,825 +19900110,1800,129,100,800 +19900110,1800,129,100,775 +19900110,1800,129,100,750 +19900110,1800,129,100,740 +19900110,1800,129,100,700 +19900110,1800,129,100,650 +19900110,1800,129,100,620 +19900110,1800,129,100,600 +19900110,1800,129,100,550 +19900110,1800,129,100,500 +19900110,1800,129,100,450 +19900110,1800,129,100,400 +19900110,1800,129,100,375 +19900110,1800,129,100,350 +19900110,1800,129,100,300 +19900110,1800,129,100,250 +19900110,1800,129,100,245 +19900110,1800,129,100,225 +19900110,1800,129,100,200 +19900110,1800,129,100,175 +19900110,1800,129,100,150 +19900110,1800,129,100,125 +19900110,1800,129,100,100 +19900110,1800,129,100,70 +19900110,1800,129,100,50 +19900110,1800,129,100,30 +19900110,1800,129,100,20 +19900110,1800,129,100,10 +19900110,1800,129,100,9 +19900110,1800,129,100,7 +19900110,1800,129,100,5 +19900110,1800,129,100,3 +19900110,1800,129,100,2 +19900110,1800,129,100,1 +19900110,1800,129,210,40 +19900110,1800,157,100,1000 +19900110,1800,157,100,975 +19900110,1800,157,100,950 +19900110,1800,157,100,925 +19900110,1800,157,100,900 +19900110,1800,157,100,875 +19900110,1800,157,100,850 +19900110,1800,157,100,825 +19900110,1800,157,100,800 +19900110,1800,157,100,775 +19900110,1800,157,100,750 +19900110,1800,157,100,740 +19900110,1800,157,100,700 +19900110,1800,157,100,650 +19900110,1800,157,100,620 +19900110,1800,157,100,600 +19900110,1800,157,100,550 +19900110,1800,157,100,500 +19900110,1800,157,100,450 +19900110,1800,157,100,400 +19900110,1800,157,100,375 +19900110,1800,157,100,350 +19900110,1800,157,100,300 +19900110,1800,157,100,250 +19900110,1800,157,100,245 +19900110,1800,157,100,225 +19900110,1800,157,100,200 +19900110,1800,157,100,175 +19900110,1800,157,100,150 +19900110,1800,157,100,125 +19900110,1800,157,100,100 +19900110,1800,157,100,70 +19900110,1800,157,100,50 +19900110,1800,157,100,30 +19900110,1800,157,100,20 +19900110,1800,157,100,10 +19900110,1800,157,100,9 +19900110,1800,157,100,7 +19900110,1800,157,100,5 +19900110,1800,157,100,3 +19900110,1800,157,100,2 +19900110,1800,157,100,1 +19900110,1800,157,210,40 +19900110,1800,135,100,1000 +19900110,1800,135,100,975 +19900110,1800,135,100,950 +19900110,1800,135,100,925 +19900110,1800,135,100,900 +19900110,1800,135,100,875 +19900110,1800,135,100,850 +19900110,1800,135,100,825 +19900110,1800,135,100,800 +19900110,1800,135,100,775 +19900110,1800,135,100,750 +19900110,1800,135,100,740 +19900110,1800,135,100,700 +19900110,1800,135,100,650 +19900110,1800,135,100,620 +19900110,1800,135,100,600 +19900110,1800,135,100,550 +19900110,1800,135,100,500 +19900110,1800,135,100,450 +19900110,1800,135,100,400 +19900110,1800,135,100,375 +19900110,1800,135,100,350 +19900110,1800,135,100,300 +19900110,1800,135,100,250 +19900110,1800,135,100,245 +19900110,1800,135,100,225 +19900110,1800,135,100,200 +19900110,1800,135,100,175 +19900110,1800,135,100,150 +19900110,1800,135,100,125 +19900110,1800,135,100,100 +19900110,1800,135,100,70 +19900110,1800,135,100,50 +19900110,1800,135,100,30 +19900110,1800,135,100,20 +19900110,1800,135,100,10 +19900110,1800,135,100,9 +19900110,1800,135,100,7 +19900110,1800,135,100,5 +19900110,1800,135,100,3 +19900110,1800,135,100,2 +19900110,1800,135,100,1 +19900110,1800,135,210,40 +19900110,1800,138,100,1000 +19900110,1800,138,100,975 +19900110,1800,138,100,950 +19900110,1800,138,100,925 +19900110,1800,138,100,900 +19900110,1800,138,100,875 +19900110,1800,138,100,850 +19900110,1800,138,100,825 +19900110,1800,138,100,800 +19900110,1800,138,100,775 +19900110,1800,138,100,750 +19900110,1800,138,100,740 +19900110,1800,138,100,700 +19900110,1800,138,100,650 +19900110,1800,138,100,620 +19900110,1800,138,100,600 +19900110,1800,138,100,550 +19900110,1800,138,100,500 +19900110,1800,138,100,450 +19900110,1800,138,100,400 +19900110,1800,138,100,375 +19900110,1800,138,100,350 +19900110,1800,138,100,300 +19900110,1800,138,100,250 +19900110,1800,138,100,245 +19900110,1800,138,100,225 +19900110,1800,138,100,200 +19900110,1800,138,100,175 +19900110,1800,138,100,150 +19900110,1800,138,100,125 +19900110,1800,138,100,100 +19900110,1800,138,100,70 +19900110,1800,138,100,50 +19900110,1800,138,100,30 +19900110,1800,138,100,20 +19900110,1800,138,100,10 +19900110,1800,138,100,9 +19900110,1800,138,100,7 +19900110,1800,138,100,5 +19900110,1800,138,100,3 +19900110,1800,138,100,2 +19900110,1800,138,100,1 +19900110,1800,138,210,40 +19900110,1800,131,109,1 +19900110,1800,131,109,2 +19900110,1800,131,109,3 +19900110,1800,131,109,4 +19900110,1800,131,109,5 +19900110,1800,131,109,6 +19900110,1800,131,109,7 +19900110,1800,131,109,8 +19900110,1800,131,109,9 +19900110,1800,131,109,10 +19900110,1800,132,109,1 +19900110,1800,132,109,2 +19900110,1800,132,109,3 +19900110,1800,132,109,4 +19900110,1800,132,109,5 +19900110,1800,132,109,6 +19900110,1800,132,109,7 +19900110,1800,132,109,8 +19900110,1800,132,109,9 +19900110,1800,132,109,10 +19900110,1800,130,109,1 +19900110,1800,130,109,2 +19900110,1800,130,109,3 +19900110,1800,130,109,4 +19900110,1800,130,109,5 +19900110,1800,130,109,6 +19900110,1800,130,109,7 +19900110,1800,130,109,8 +19900110,1800,130,109,9 +19900110,1800,130,109,10 +19900110,1800,157,109,1 +19900110,1800,157,109,2 +19900110,1800,157,109,3 +19900110,1800,157,109,4 +19900110,1800,157,109,5 +19900110,1800,157,109,6 +19900110,1800,157,109,7 +19900110,1800,157,109,8 +19900110,1800,157,109,9 +19900110,1800,157,109,10 +19900110,1800,54,109,1 +19900110,1800,54,109,2 +19900110,1800,54,109,3 +19900110,1800,54,109,4 +19900110,1800,54,109,5 +19900110,1800,54,109,6 +19900110,1800,54,109,7 +19900110,1800,54,109,8 +19900110,1800,54,109,9 +19900110,1800,54,109,10 +19900110,1800,135,109,1 +19900110,1800,135,109,2 +19900110,1800,135,109,3 +19900110,1800,135,109,4 +19900110,1800,135,109,5 +19900110,1800,135,109,6 +19900110,1800,135,109,7 +19900110,1800,135,109,8 +19900110,1800,135,109,9 +19900110,1800,135,109,10 +19900110,1800,134,109,1 +19900110,1800,152,109,1 +19900110,1800,131,100,850 +19900110,1800,132,100,850 +19900110,1800,134,100,1000 +19900110,1800,152,100,1000 +19900110,2100,131,100,850 +19900110,2100,132,100,850 +19900110,2100,134,100,1000 +19900110,2100,152,100,1000 +19900111,0,131,100,1000 +19900111,0,131,100,975 +19900111,0,131,100,950 +19900111,0,131,100,925 +19900111,0,131,100,900 +19900111,0,131,100,875 +19900111,0,131,100,825 +19900111,0,131,100,800 +19900111,0,131,100,775 +19900111,0,131,100,750 +19900111,0,131,100,740 +19900111,0,131,100,700 +19900111,0,131,100,650 +19900111,0,131,100,620 +19900111,0,131,100,600 +19900111,0,131,100,550 +19900111,0,131,100,500 +19900111,0,131,100,450 +19900111,0,131,100,400 +19900111,0,131,100,375 +19900111,0,131,100,350 +19900111,0,131,100,300 +19900111,0,131,100,250 +19900111,0,131,100,245 +19900111,0,131,100,225 +19900111,0,131,100,200 +19900111,0,131,100,175 +19900111,0,131,100,150 +19900111,0,131,100,125 +19900111,0,131,100,100 +19900111,0,131,100,70 +19900111,0,131,100,50 +19900111,0,131,100,30 +19900111,0,131,100,20 +19900111,0,131,100,10 +19900111,0,131,100,9 +19900111,0,131,100,7 +19900111,0,131,100,5 +19900111,0,131,100,3 +19900111,0,131,100,2 +19900111,0,131,100,1 +19900111,0,131,210,40 +19900111,0,132,100,1000 +19900111,0,132,100,975 +19900111,0,132,100,950 +19900111,0,132,100,925 +19900111,0,132,100,900 +19900111,0,132,100,875 +19900111,0,132,100,825 +19900111,0,132,100,800 +19900111,0,132,100,775 +19900111,0,132,100,750 +19900111,0,132,100,740 +19900111,0,132,100,700 +19900111,0,132,100,650 +19900111,0,132,100,620 +19900111,0,132,100,600 +19900111,0,132,100,550 +19900111,0,132,100,500 +19900111,0,132,100,450 +19900111,0,132,100,400 +19900111,0,132,100,375 +19900111,0,132,100,350 +19900111,0,132,100,300 +19900111,0,132,100,250 +19900111,0,132,100,245 +19900111,0,132,100,225 +19900111,0,132,100,200 +19900111,0,132,100,175 +19900111,0,132,100,150 +19900111,0,132,100,125 +19900111,0,132,100,100 +19900111,0,132,100,70 +19900111,0,132,100,50 +19900111,0,132,100,30 +19900111,0,132,100,20 +19900111,0,132,100,10 +19900111,0,132,100,9 +19900111,0,132,100,7 +19900111,0,132,100,5 +19900111,0,132,100,3 +19900111,0,132,100,2 +19900111,0,132,100,1 +19900111,0,132,210,40 +19900111,0,130,100,1000 +19900111,0,130,100,975 +19900111,0,130,100,950 +19900111,0,130,100,925 +19900111,0,130,100,900 +19900111,0,130,100,875 +19900111,0,130,100,850 +19900111,0,130,100,825 +19900111,0,130,100,800 +19900111,0,130,100,775 +19900111,0,130,100,750 +19900111,0,130,100,740 +19900111,0,130,100,700 +19900111,0,130,100,650 +19900111,0,130,100,620 +19900111,0,130,100,600 +19900111,0,130,100,550 +19900111,0,130,100,500 +19900111,0,130,100,450 +19900111,0,130,100,400 +19900111,0,130,100,375 +19900111,0,130,100,350 +19900111,0,130,100,300 +19900111,0,130,100,250 +19900111,0,130,100,245 +19900111,0,130,100,225 +19900111,0,130,100,200 +19900111,0,130,100,175 +19900111,0,130,100,150 +19900111,0,130,100,125 +19900111,0,130,100,100 +19900111,0,130,100,70 +19900111,0,130,100,50 +19900111,0,130,100,30 +19900111,0,130,100,20 +19900111,0,130,100,10 +19900111,0,130,100,9 +19900111,0,130,100,7 +19900111,0,130,100,5 +19900111,0,130,100,3 +19900111,0,130,100,2 +19900111,0,130,100,1 +19900111,0,130,210,40 +19900111,0,129,100,1000 +19900111,0,129,100,975 +19900111,0,129,100,950 +19900111,0,129,100,925 +19900111,0,129,100,900 +19900111,0,129,100,875 +19900111,0,129,100,850 +19900111,0,129,100,825 +19900111,0,129,100,800 +19900111,0,129,100,775 +19900111,0,129,100,750 +19900111,0,129,100,740 +19900111,0,129,100,700 +19900111,0,129,100,650 +19900111,0,129,100,620 +19900111,0,129,100,600 +19900111,0,129,100,550 +19900111,0,129,100,500 +19900111,0,129,100,450 +19900111,0,129,100,400 +19900111,0,129,100,375 +19900111,0,129,100,350 +19900111,0,129,100,300 +19900111,0,129,100,250 +19900111,0,129,100,245 +19900111,0,129,100,225 +19900111,0,129,100,200 +19900111,0,129,100,175 +19900111,0,129,100,150 +19900111,0,129,100,125 +19900111,0,129,100,100 +19900111,0,129,100,70 +19900111,0,129,100,50 +19900111,0,129,100,30 +19900111,0,129,100,20 +19900111,0,129,100,10 +19900111,0,129,100,9 +19900111,0,129,100,7 +19900111,0,129,100,5 +19900111,0,129,100,3 +19900111,0,129,100,2 +19900111,0,129,100,1 +19900111,0,129,210,40 +19900111,0,157,100,1000 +19900111,0,157,100,975 +19900111,0,157,100,950 +19900111,0,157,100,925 +19900111,0,157,100,900 +19900111,0,157,100,875 +19900111,0,157,100,850 +19900111,0,157,100,825 +19900111,0,157,100,800 +19900111,0,157,100,775 +19900111,0,157,100,750 +19900111,0,157,100,740 +19900111,0,157,100,700 +19900111,0,157,100,650 +19900111,0,157,100,620 +19900111,0,157,100,600 +19900111,0,157,100,550 +19900111,0,157,100,500 +19900111,0,157,100,450 +19900111,0,157,100,400 +19900111,0,157,100,375 +19900111,0,157,100,350 +19900111,0,157,100,300 +19900111,0,157,100,250 +19900111,0,157,100,245 +19900111,0,157,100,225 +19900111,0,157,100,200 +19900111,0,157,100,175 +19900111,0,157,100,150 +19900111,0,157,100,125 +19900111,0,157,100,100 +19900111,0,157,100,70 +19900111,0,157,100,50 +19900111,0,157,100,30 +19900111,0,157,100,20 +19900111,0,157,100,10 +19900111,0,157,100,9 +19900111,0,157,100,7 +19900111,0,157,100,5 +19900111,0,157,100,3 +19900111,0,157,100,2 +19900111,0,157,100,1 +19900111,0,157,210,40 +19900111,0,135,100,1000 +19900111,0,135,100,975 +19900111,0,135,100,950 +19900111,0,135,100,925 +19900111,0,135,100,900 +19900111,0,135,100,875 +19900111,0,135,100,850 +19900111,0,135,100,825 +19900111,0,135,100,800 +19900111,0,135,100,775 +19900111,0,135,100,750 +19900111,0,135,100,740 +19900111,0,135,100,700 +19900111,0,135,100,650 +19900111,0,135,100,620 +19900111,0,135,100,600 +19900111,0,135,100,550 +19900111,0,135,100,500 +19900111,0,135,100,450 +19900111,0,135,100,400 +19900111,0,135,100,375 +19900111,0,135,100,350 +19900111,0,135,100,300 +19900111,0,135,100,250 +19900111,0,135,100,245 +19900111,0,135,100,225 +19900111,0,135,100,200 +19900111,0,135,100,175 +19900111,0,135,100,150 +19900111,0,135,100,125 +19900111,0,135,100,100 +19900111,0,135,100,70 +19900111,0,135,100,50 +19900111,0,135,100,30 +19900111,0,135,100,20 +19900111,0,135,100,10 +19900111,0,135,100,9 +19900111,0,135,100,7 +19900111,0,135,100,5 +19900111,0,135,100,3 +19900111,0,135,100,2 +19900111,0,135,100,1 +19900111,0,135,210,40 +19900111,0,138,100,1000 +19900111,0,138,100,975 +19900111,0,138,100,950 +19900111,0,138,100,925 +19900111,0,138,100,900 +19900111,0,138,100,875 +19900111,0,138,100,850 +19900111,0,138,100,825 +19900111,0,138,100,800 +19900111,0,138,100,775 +19900111,0,138,100,750 +19900111,0,138,100,740 +19900111,0,138,100,700 +19900111,0,138,100,650 +19900111,0,138,100,620 +19900111,0,138,100,600 +19900111,0,138,100,550 +19900111,0,138,100,500 +19900111,0,138,100,450 +19900111,0,138,100,400 +19900111,0,138,100,375 +19900111,0,138,100,350 +19900111,0,138,100,300 +19900111,0,138,100,250 +19900111,0,138,100,245 +19900111,0,138,100,225 +19900111,0,138,100,200 +19900111,0,138,100,175 +19900111,0,138,100,150 +19900111,0,138,100,125 +19900111,0,138,100,100 +19900111,0,138,100,70 +19900111,0,138,100,50 +19900111,0,138,100,30 +19900111,0,138,100,20 +19900111,0,138,100,10 +19900111,0,138,100,9 +19900111,0,138,100,7 +19900111,0,138,100,5 +19900111,0,138,100,3 +19900111,0,138,100,2 +19900111,0,138,100,1 +19900111,0,138,210,40 +19900111,0,131,109,1 +19900111,0,131,109,2 +19900111,0,131,109,3 +19900111,0,131,109,4 +19900111,0,131,109,5 +19900111,0,131,109,6 +19900111,0,131,109,7 +19900111,0,131,109,8 +19900111,0,131,109,9 +19900111,0,131,109,10 +19900111,0,132,109,1 +19900111,0,132,109,2 +19900111,0,132,109,3 +19900111,0,132,109,4 +19900111,0,132,109,5 +19900111,0,132,109,6 +19900111,0,132,109,7 +19900111,0,132,109,8 +19900111,0,132,109,9 +19900111,0,132,109,10 +19900111,0,130,109,1 +19900111,0,130,109,2 +19900111,0,130,109,3 +19900111,0,130,109,4 +19900111,0,130,109,5 +19900111,0,130,109,6 +19900111,0,130,109,7 +19900111,0,130,109,8 +19900111,0,130,109,9 +19900111,0,130,109,10 +19900111,0,157,109,1 +19900111,0,157,109,2 +19900111,0,157,109,3 +19900111,0,157,109,4 +19900111,0,157,109,5 +19900111,0,157,109,6 +19900111,0,157,109,7 +19900111,0,157,109,8 +19900111,0,157,109,9 +19900111,0,157,109,10 +19900111,0,54,109,1 +19900111,0,54,109,2 +19900111,0,54,109,3 +19900111,0,54,109,4 +19900111,0,54,109,5 +19900111,0,54,109,6 +19900111,0,54,109,7 +19900111,0,54,109,8 +19900111,0,54,109,9 +19900111,0,54,109,10 +19900111,0,135,109,1 +19900111,0,135,109,2 +19900111,0,135,109,3 +19900111,0,135,109,4 +19900111,0,135,109,5 +19900111,0,135,109,6 +19900111,0,135,109,7 +19900111,0,135,109,8 +19900111,0,135,109,9 +19900111,0,135,109,10 +19900111,0,134,109,1 +19900111,0,152,109,1 +19900111,0,131,100,850 +19900111,0,132,100,850 +19900111,0,134,100,1000 +19900111,0,152,100,1000 +19900111,300,131,100,850 +19900111,300,132,100,850 +19900111,300,134,100,1000 +19900111,300,152,100,1000 +19900111,600,131,100,1000 +19900111,600,131,100,975 +19900111,600,131,100,950 +19900111,600,131,100,925 +19900111,600,131,100,900 +19900111,600,131,100,875 +19900111,600,131,100,825 +19900111,600,131,100,800 +19900111,600,131,100,775 +19900111,600,131,100,750 +19900111,600,131,100,740 +19900111,600,131,100,700 +19900111,600,131,100,650 +19900111,600,131,100,620 +19900111,600,131,100,600 +19900111,600,131,100,550 +19900111,600,131,100,500 +19900111,600,131,100,450 +19900111,600,131,100,400 +19900111,600,131,100,375 +19900111,600,131,100,350 +19900111,600,131,100,300 +19900111,600,131,100,250 +19900111,600,131,100,245 +19900111,600,131,100,225 +19900111,600,131,100,200 +19900111,600,131,100,175 +19900111,600,131,100,150 +19900111,600,131,100,125 +19900111,600,131,100,100 +19900111,600,131,100,70 +19900111,600,131,100,50 +19900111,600,131,100,30 +19900111,600,131,100,20 +19900111,600,131,100,10 +19900111,600,131,100,9 +19900111,600,131,100,7 +19900111,600,131,100,5 +19900111,600,131,100,3 +19900111,600,131,100,2 +19900111,600,131,100,1 +19900111,600,131,210,40 +19900111,600,132,100,1000 +19900111,600,132,100,975 +19900111,600,132,100,950 +19900111,600,132,100,925 +19900111,600,132,100,900 +19900111,600,132,100,875 +19900111,600,132,100,825 +19900111,600,132,100,800 +19900111,600,132,100,775 +19900111,600,132,100,750 +19900111,600,132,100,740 +19900111,600,132,100,700 +19900111,600,132,100,650 +19900111,600,132,100,620 +19900111,600,132,100,600 +19900111,600,132,100,550 +19900111,600,132,100,500 +19900111,600,132,100,450 +19900111,600,132,100,400 +19900111,600,132,100,375 +19900111,600,132,100,350 +19900111,600,132,100,300 +19900111,600,132,100,250 +19900111,600,132,100,245 +19900111,600,132,100,225 +19900111,600,132,100,200 +19900111,600,132,100,175 +19900111,600,132,100,150 +19900111,600,132,100,125 +19900111,600,132,100,100 +19900111,600,132,100,70 +19900111,600,132,100,50 +19900111,600,132,100,30 +19900111,600,132,100,20 +19900111,600,132,100,10 +19900111,600,132,100,9 +19900111,600,132,100,7 +19900111,600,132,100,5 +19900111,600,132,100,3 +19900111,600,132,100,2 +19900111,600,132,100,1 +19900111,600,132,210,40 +19900111,600,130,100,1000 +19900111,600,130,100,975 +19900111,600,130,100,950 +19900111,600,130,100,925 +19900111,600,130,100,900 +19900111,600,130,100,875 +19900111,600,130,100,850 +19900111,600,130,100,825 +19900111,600,130,100,800 +19900111,600,130,100,775 +19900111,600,130,100,750 +19900111,600,130,100,740 +19900111,600,130,100,700 +19900111,600,130,100,650 +19900111,600,130,100,620 +19900111,600,130,100,600 +19900111,600,130,100,550 +19900111,600,130,100,500 +19900111,600,130,100,450 +19900111,600,130,100,400 +19900111,600,130,100,375 +19900111,600,130,100,350 +19900111,600,130,100,300 +19900111,600,130,100,250 +19900111,600,130,100,245 +19900111,600,130,100,225 +19900111,600,130,100,200 +19900111,600,130,100,175 +19900111,600,130,100,150 +19900111,600,130,100,125 +19900111,600,130,100,100 +19900111,600,130,100,70 +19900111,600,130,100,50 +19900111,600,130,100,30 +19900111,600,130,100,20 +19900111,600,130,100,10 +19900111,600,130,100,9 +19900111,600,130,100,7 +19900111,600,130,100,5 +19900111,600,130,100,3 +19900111,600,130,100,2 +19900111,600,130,100,1 +19900111,600,130,210,40 +19900111,600,129,100,1000 +19900111,600,129,100,975 +19900111,600,129,100,950 +19900111,600,129,100,925 +19900111,600,129,100,900 +19900111,600,129,100,875 +19900111,600,129,100,850 +19900111,600,129,100,825 +19900111,600,129,100,800 +19900111,600,129,100,775 +19900111,600,129,100,750 +19900111,600,129,100,740 +19900111,600,129,100,700 +19900111,600,129,100,650 +19900111,600,129,100,620 +19900111,600,129,100,600 +19900111,600,129,100,550 +19900111,600,129,100,500 +19900111,600,129,100,450 +19900111,600,129,100,400 +19900111,600,129,100,375 +19900111,600,129,100,350 +19900111,600,129,100,300 +19900111,600,129,100,250 +19900111,600,129,100,245 +19900111,600,129,100,225 +19900111,600,129,100,200 +19900111,600,129,100,175 +19900111,600,129,100,150 +19900111,600,129,100,125 +19900111,600,129,100,100 +19900111,600,129,100,70 +19900111,600,129,100,50 +19900111,600,129,100,30 +19900111,600,129,100,20 +19900111,600,129,100,10 +19900111,600,129,100,9 +19900111,600,129,100,7 +19900111,600,129,100,5 +19900111,600,129,100,3 +19900111,600,129,100,2 +19900111,600,129,100,1 +19900111,600,129,210,40 +19900111,600,157,100,1000 +19900111,600,157,100,975 +19900111,600,157,100,950 +19900111,600,157,100,925 +19900111,600,157,100,900 +19900111,600,157,100,875 +19900111,600,157,100,850 +19900111,600,157,100,825 +19900111,600,157,100,800 +19900111,600,157,100,775 +19900111,600,157,100,750 +19900111,600,157,100,740 +19900111,600,157,100,700 +19900111,600,157,100,650 +19900111,600,157,100,620 +19900111,600,157,100,600 +19900111,600,157,100,550 +19900111,600,157,100,500 +19900111,600,157,100,450 +19900111,600,157,100,400 +19900111,600,157,100,375 +19900111,600,157,100,350 +19900111,600,157,100,300 +19900111,600,157,100,250 +19900111,600,157,100,245 +19900111,600,157,100,225 +19900111,600,157,100,200 +19900111,600,157,100,175 +19900111,600,157,100,150 +19900111,600,157,100,125 +19900111,600,157,100,100 +19900111,600,157,100,70 +19900111,600,157,100,50 +19900111,600,157,100,30 +19900111,600,157,100,20 +19900111,600,157,100,10 +19900111,600,157,100,9 +19900111,600,157,100,7 +19900111,600,157,100,5 +19900111,600,157,100,3 +19900111,600,157,100,2 +19900111,600,157,100,1 +19900111,600,157,210,40 +19900111,600,135,100,1000 +19900111,600,135,100,975 +19900111,600,135,100,950 +19900111,600,135,100,925 +19900111,600,135,100,900 +19900111,600,135,100,875 +19900111,600,135,100,850 +19900111,600,135,100,825 +19900111,600,135,100,800 +19900111,600,135,100,775 +19900111,600,135,100,750 +19900111,600,135,100,740 +19900111,600,135,100,700 +19900111,600,135,100,650 +19900111,600,135,100,620 +19900111,600,135,100,600 +19900111,600,135,100,550 +19900111,600,135,100,500 +19900111,600,135,100,450 +19900111,600,135,100,400 +19900111,600,135,100,375 +19900111,600,135,100,350 +19900111,600,135,100,300 +19900111,600,135,100,250 +19900111,600,135,100,245 +19900111,600,135,100,225 +19900111,600,135,100,200 +19900111,600,135,100,175 +19900111,600,135,100,150 +19900111,600,135,100,125 +19900111,600,135,100,100 +19900111,600,135,100,70 +19900111,600,135,100,50 +19900111,600,135,100,30 +19900111,600,135,100,20 +19900111,600,135,100,10 +19900111,600,135,100,9 +19900111,600,135,100,7 +19900111,600,135,100,5 +19900111,600,135,100,3 +19900111,600,135,100,2 +19900111,600,135,100,1 +19900111,600,135,210,40 +19900111,600,138,100,1000 +19900111,600,138,100,975 +19900111,600,138,100,950 +19900111,600,138,100,925 +19900111,600,138,100,900 +19900111,600,138,100,875 +19900111,600,138,100,850 +19900111,600,138,100,825 +19900111,600,138,100,800 +19900111,600,138,100,775 +19900111,600,138,100,750 +19900111,600,138,100,740 +19900111,600,138,100,700 +19900111,600,138,100,650 +19900111,600,138,100,620 +19900111,600,138,100,600 +19900111,600,138,100,550 +19900111,600,138,100,500 +19900111,600,138,100,450 +19900111,600,138,100,400 +19900111,600,138,100,375 +19900111,600,138,100,350 +19900111,600,138,100,300 +19900111,600,138,100,250 +19900111,600,138,100,245 +19900111,600,138,100,225 +19900111,600,138,100,200 +19900111,600,138,100,175 +19900111,600,138,100,150 +19900111,600,138,100,125 +19900111,600,138,100,100 +19900111,600,138,100,70 +19900111,600,138,100,50 +19900111,600,138,100,30 +19900111,600,138,100,20 +19900111,600,138,100,10 +19900111,600,138,100,9 +19900111,600,138,100,7 +19900111,600,138,100,5 +19900111,600,138,100,3 +19900111,600,138,100,2 +19900111,600,138,100,1 +19900111,600,138,210,40 +19900111,600,131,109,1 +19900111,600,131,109,2 +19900111,600,131,109,3 +19900111,600,131,109,4 +19900111,600,131,109,5 +19900111,600,131,109,6 +19900111,600,131,109,7 +19900111,600,131,109,8 +19900111,600,131,109,9 +19900111,600,131,109,10 +19900111,600,132,109,1 +19900111,600,132,109,2 +19900111,600,132,109,3 +19900111,600,132,109,4 +19900111,600,132,109,5 +19900111,600,132,109,6 +19900111,600,132,109,7 +19900111,600,132,109,8 +19900111,600,132,109,9 +19900111,600,132,109,10 +19900111,600,130,109,1 +19900111,600,130,109,2 +19900111,600,130,109,3 +19900111,600,130,109,4 +19900111,600,130,109,5 +19900111,600,130,109,6 +19900111,600,130,109,7 +19900111,600,130,109,8 +19900111,600,130,109,9 +19900111,600,130,109,10 +19900111,600,157,109,1 +19900111,600,157,109,2 +19900111,600,157,109,3 +19900111,600,157,109,4 +19900111,600,157,109,5 +19900111,600,157,109,6 +19900111,600,157,109,7 +19900111,600,157,109,8 +19900111,600,157,109,9 +19900111,600,157,109,10 +19900111,600,54,109,1 +19900111,600,54,109,2 +19900111,600,54,109,3 +19900111,600,54,109,4 +19900111,600,54,109,5 +19900111,600,54,109,6 +19900111,600,54,109,7 +19900111,600,54,109,8 +19900111,600,54,109,9 +19900111,600,54,109,10 +19900111,600,135,109,1 +19900111,600,135,109,2 +19900111,600,135,109,3 +19900111,600,135,109,4 +19900111,600,135,109,5 +19900111,600,135,109,6 +19900111,600,135,109,7 +19900111,600,135,109,8 +19900111,600,135,109,9 +19900111,600,135,109,10 +19900111,600,134,109,1 +19900111,600,152,109,1 +19900111,600,131,100,850 +19900111,600,132,100,850 +19900111,600,134,100,1000 +19900111,600,152,100,1000 +19900111,900,131,100,850 +19900111,900,132,100,850 +19900111,900,134,100,1000 +19900111,900,152,100,1000 +19900111,1200,131,100,1000 +19900111,1200,131,100,975 +19900111,1200,131,100,950 +19900111,1200,131,100,925 +19900111,1200,131,100,900 +19900111,1200,131,100,875 +19900111,1200,131,100,825 +19900111,1200,131,100,800 +19900111,1200,131,100,775 +19900111,1200,131,100,750 +19900111,1200,131,100,740 +19900111,1200,131,100,700 +19900111,1200,131,100,650 +19900111,1200,131,100,620 +19900111,1200,131,100,600 +19900111,1200,131,100,550 +19900111,1200,131,100,500 +19900111,1200,131,100,450 +19900111,1200,131,100,400 +19900111,1200,131,100,375 +19900111,1200,131,100,350 +19900111,1200,131,100,300 +19900111,1200,131,100,250 +19900111,1200,131,100,245 +19900111,1200,131,100,225 +19900111,1200,131,100,200 +19900111,1200,131,100,175 +19900111,1200,131,100,150 +19900111,1200,131,100,125 +19900111,1200,131,100,100 +19900111,1200,131,100,70 +19900111,1200,131,100,50 +19900111,1200,131,100,30 +19900111,1200,131,100,20 +19900111,1200,131,100,10 +19900111,1200,131,100,9 +19900111,1200,131,100,7 +19900111,1200,131,100,5 +19900111,1200,131,100,3 +19900111,1200,131,100,2 +19900111,1200,131,100,1 +19900111,1200,131,210,40 +19900111,1200,132,100,1000 +19900111,1200,132,100,975 +19900111,1200,132,100,950 +19900111,1200,132,100,925 +19900111,1200,132,100,900 +19900111,1200,132,100,875 +19900111,1200,132,100,825 +19900111,1200,132,100,800 +19900111,1200,132,100,775 +19900111,1200,132,100,750 +19900111,1200,132,100,740 +19900111,1200,132,100,700 +19900111,1200,132,100,650 +19900111,1200,132,100,620 +19900111,1200,132,100,600 +19900111,1200,132,100,550 +19900111,1200,132,100,500 +19900111,1200,132,100,450 +19900111,1200,132,100,400 +19900111,1200,132,100,375 +19900111,1200,132,100,350 +19900111,1200,132,100,300 +19900111,1200,132,100,250 +19900111,1200,132,100,245 +19900111,1200,132,100,225 +19900111,1200,132,100,200 +19900111,1200,132,100,175 +19900111,1200,132,100,150 +19900111,1200,132,100,125 +19900111,1200,132,100,100 +19900111,1200,132,100,70 +19900111,1200,132,100,50 +19900111,1200,132,100,30 +19900111,1200,132,100,20 +19900111,1200,132,100,10 +19900111,1200,132,100,9 +19900111,1200,132,100,7 +19900111,1200,132,100,5 +19900111,1200,132,100,3 +19900111,1200,132,100,2 +19900111,1200,132,100,1 +19900111,1200,132,210,40 +19900111,1200,130,100,1000 +19900111,1200,130,100,975 +19900111,1200,130,100,950 +19900111,1200,130,100,925 +19900111,1200,130,100,900 +19900111,1200,130,100,875 +19900111,1200,130,100,850 +19900111,1200,130,100,825 +19900111,1200,130,100,800 +19900111,1200,130,100,775 +19900111,1200,130,100,750 +19900111,1200,130,100,740 +19900111,1200,130,100,700 +19900111,1200,130,100,650 +19900111,1200,130,100,620 +19900111,1200,130,100,600 +19900111,1200,130,100,550 +19900111,1200,130,100,500 +19900111,1200,130,100,450 +19900111,1200,130,100,400 +19900111,1200,130,100,375 +19900111,1200,130,100,350 +19900111,1200,130,100,300 +19900111,1200,130,100,250 +19900111,1200,130,100,245 +19900111,1200,130,100,225 +19900111,1200,130,100,200 +19900111,1200,130,100,175 +19900111,1200,130,100,150 +19900111,1200,130,100,125 +19900111,1200,130,100,100 +19900111,1200,130,100,70 +19900111,1200,130,100,50 +19900111,1200,130,100,30 +19900111,1200,130,100,20 +19900111,1200,130,100,10 +19900111,1200,130,100,9 +19900111,1200,130,100,7 +19900111,1200,130,100,5 +19900111,1200,130,100,3 +19900111,1200,130,100,2 +19900111,1200,130,100,1 +19900111,1200,130,210,40 +19900111,1200,129,100,1000 +19900111,1200,129,100,975 +19900111,1200,129,100,950 +19900111,1200,129,100,925 +19900111,1200,129,100,900 +19900111,1200,129,100,875 +19900111,1200,129,100,850 +19900111,1200,129,100,825 +19900111,1200,129,100,800 +19900111,1200,129,100,775 +19900111,1200,129,100,750 +19900111,1200,129,100,740 +19900111,1200,129,100,700 +19900111,1200,129,100,650 +19900111,1200,129,100,620 +19900111,1200,129,100,600 +19900111,1200,129,100,550 +19900111,1200,129,100,500 +19900111,1200,129,100,450 +19900111,1200,129,100,400 +19900111,1200,129,100,375 +19900111,1200,129,100,350 +19900111,1200,129,100,300 +19900111,1200,129,100,250 +19900111,1200,129,100,245 +19900111,1200,129,100,225 +19900111,1200,129,100,200 +19900111,1200,129,100,175 +19900111,1200,129,100,150 +19900111,1200,129,100,125 +19900111,1200,129,100,100 +19900111,1200,129,100,70 +19900111,1200,129,100,50 +19900111,1200,129,100,30 +19900111,1200,129,100,20 +19900111,1200,129,100,10 +19900111,1200,129,100,9 +19900111,1200,129,100,7 +19900111,1200,129,100,5 +19900111,1200,129,100,3 +19900111,1200,129,100,2 +19900111,1200,129,100,1 +19900111,1200,129,210,40 +19900111,1200,157,100,1000 +19900111,1200,157,100,975 +19900111,1200,157,100,950 +19900111,1200,157,100,925 +19900111,1200,157,100,900 +19900111,1200,157,100,875 +19900111,1200,157,100,850 +19900111,1200,157,100,825 +19900111,1200,157,100,800 +19900111,1200,157,100,775 +19900111,1200,157,100,750 +19900111,1200,157,100,740 +19900111,1200,157,100,700 +19900111,1200,157,100,650 +19900111,1200,157,100,620 +19900111,1200,157,100,600 +19900111,1200,157,100,550 +19900111,1200,157,100,500 +19900111,1200,157,100,450 +19900111,1200,157,100,400 +19900111,1200,157,100,375 +19900111,1200,157,100,350 +19900111,1200,157,100,300 +19900111,1200,157,100,250 +19900111,1200,157,100,245 +19900111,1200,157,100,225 +19900111,1200,157,100,200 +19900111,1200,157,100,175 +19900111,1200,157,100,150 +19900111,1200,157,100,125 +19900111,1200,157,100,100 +19900111,1200,157,100,70 +19900111,1200,157,100,50 +19900111,1200,157,100,30 +19900111,1200,157,100,20 +19900111,1200,157,100,10 +19900111,1200,157,100,9 +19900111,1200,157,100,7 +19900111,1200,157,100,5 +19900111,1200,157,100,3 +19900111,1200,157,100,2 +19900111,1200,157,100,1 +19900111,1200,157,210,40 +19900111,1200,135,100,1000 +19900111,1200,135,100,975 +19900111,1200,135,100,950 +19900111,1200,135,100,925 +19900111,1200,135,100,900 +19900111,1200,135,100,875 +19900111,1200,135,100,850 +19900111,1200,135,100,825 +19900111,1200,135,100,800 +19900111,1200,135,100,775 +19900111,1200,135,100,750 +19900111,1200,135,100,740 +19900111,1200,135,100,700 +19900111,1200,135,100,650 +19900111,1200,135,100,620 +19900111,1200,135,100,600 +19900111,1200,135,100,550 +19900111,1200,135,100,500 +19900111,1200,135,100,450 +19900111,1200,135,100,400 +19900111,1200,135,100,375 +19900111,1200,135,100,350 +19900111,1200,135,100,300 +19900111,1200,135,100,250 +19900111,1200,135,100,245 +19900111,1200,135,100,225 +19900111,1200,135,100,200 +19900111,1200,135,100,175 +19900111,1200,135,100,150 +19900111,1200,135,100,125 +19900111,1200,135,100,100 +19900111,1200,135,100,70 +19900111,1200,135,100,50 +19900111,1200,135,100,30 +19900111,1200,135,100,20 +19900111,1200,135,100,10 +19900111,1200,135,100,9 +19900111,1200,135,100,7 +19900111,1200,135,100,5 +19900111,1200,135,100,3 +19900111,1200,135,100,2 +19900111,1200,135,100,1 +19900111,1200,135,210,40 +19900111,1200,138,100,1000 +19900111,1200,138,100,975 +19900111,1200,138,100,950 +19900111,1200,138,100,925 +19900111,1200,138,100,900 +19900111,1200,138,100,875 +19900111,1200,138,100,850 +19900111,1200,138,100,825 +19900111,1200,138,100,800 +19900111,1200,138,100,775 +19900111,1200,138,100,750 +19900111,1200,138,100,740 +19900111,1200,138,100,700 +19900111,1200,138,100,650 +19900111,1200,138,100,620 +19900111,1200,138,100,600 +19900111,1200,138,100,550 +19900111,1200,138,100,500 +19900111,1200,138,100,450 +19900111,1200,138,100,400 +19900111,1200,138,100,375 +19900111,1200,138,100,350 +19900111,1200,138,100,300 +19900111,1200,138,100,250 +19900111,1200,138,100,245 +19900111,1200,138,100,225 +19900111,1200,138,100,200 +19900111,1200,138,100,175 +19900111,1200,138,100,150 +19900111,1200,138,100,125 +19900111,1200,138,100,100 +19900111,1200,138,100,70 +19900111,1200,138,100,50 +19900111,1200,138,100,30 +19900111,1200,138,100,20 +19900111,1200,138,100,10 +19900111,1200,138,100,9 +19900111,1200,138,100,7 +19900111,1200,138,100,5 +19900111,1200,138,100,3 +19900111,1200,138,100,2 +19900111,1200,138,100,1 +19900111,1200,138,210,40 +19900111,1200,131,109,1 +19900111,1200,131,109,2 +19900111,1200,131,109,3 +19900111,1200,131,109,4 +19900111,1200,131,109,5 +19900111,1200,131,109,6 +19900111,1200,131,109,7 +19900111,1200,131,109,8 +19900111,1200,131,109,9 +19900111,1200,131,109,10 +19900111,1200,132,109,1 +19900111,1200,132,109,2 +19900111,1200,132,109,3 +19900111,1200,132,109,4 +19900111,1200,132,109,5 +19900111,1200,132,109,6 +19900111,1200,132,109,7 +19900111,1200,132,109,8 +19900111,1200,132,109,9 +19900111,1200,132,109,10 +19900111,1200,130,109,1 +19900111,1200,130,109,2 +19900111,1200,130,109,3 +19900111,1200,130,109,4 +19900111,1200,130,109,5 +19900111,1200,130,109,6 +19900111,1200,130,109,7 +19900111,1200,130,109,8 +19900111,1200,130,109,9 +19900111,1200,130,109,10 +19900111,1200,157,109,1 +19900111,1200,157,109,2 +19900111,1200,157,109,3 +19900111,1200,157,109,4 +19900111,1200,157,109,5 +19900111,1200,157,109,6 +19900111,1200,157,109,7 +19900111,1200,157,109,8 +19900111,1200,157,109,9 +19900111,1200,157,109,10 +19900111,1200,54,109,1 +19900111,1200,54,109,2 +19900111,1200,54,109,3 +19900111,1200,54,109,4 +19900111,1200,54,109,5 +19900111,1200,54,109,6 +19900111,1200,54,109,7 +19900111,1200,54,109,8 +19900111,1200,54,109,9 +19900111,1200,54,109,10 +19900111,1200,135,109,1 +19900111,1200,135,109,2 +19900111,1200,135,109,3 +19900111,1200,135,109,4 +19900111,1200,135,109,5 +19900111,1200,135,109,6 +19900111,1200,135,109,7 +19900111,1200,135,109,8 +19900111,1200,135,109,9 +19900111,1200,135,109,10 +19900111,1200,134,109,1 +19900111,1200,152,109,1 +19900111,1200,131,100,850 +19900111,1200,132,100,850 +19900111,1200,134,100,1000 +19900111,1200,152,100,1000 +19900111,1500,131,100,850 +19900111,1500,132,100,850 +19900111,1500,134,100,1000 +19900111,1500,152,100,1000 +19900111,1800,131,100,1000 +19900111,1800,131,100,975 +19900111,1800,131,100,950 +19900111,1800,131,100,925 +19900111,1800,131,100,900 +19900111,1800,131,100,875 +19900111,1800,131,100,825 +19900111,1800,131,100,800 +19900111,1800,131,100,775 +19900111,1800,131,100,750 +19900111,1800,131,100,740 +19900111,1800,131,100,700 +19900111,1800,131,100,650 +19900111,1800,131,100,620 +19900111,1800,131,100,600 +19900111,1800,131,100,550 +19900111,1800,131,100,500 +19900111,1800,131,100,450 +19900111,1800,131,100,400 +19900111,1800,131,100,375 +19900111,1800,131,100,350 +19900111,1800,131,100,300 +19900111,1800,131,100,250 +19900111,1800,131,100,245 +19900111,1800,131,100,225 +19900111,1800,131,100,200 +19900111,1800,131,100,175 +19900111,1800,131,100,150 +19900111,1800,131,100,125 +19900111,1800,131,100,100 +19900111,1800,131,100,70 +19900111,1800,131,100,50 +19900111,1800,131,100,30 +19900111,1800,131,100,20 +19900111,1800,131,100,10 +19900111,1800,131,100,9 +19900111,1800,131,100,7 +19900111,1800,131,100,5 +19900111,1800,131,100,3 +19900111,1800,131,100,2 +19900111,1800,131,100,1 +19900111,1800,131,210,40 +19900111,1800,132,100,1000 +19900111,1800,132,100,975 +19900111,1800,132,100,950 +19900111,1800,132,100,925 +19900111,1800,132,100,900 +19900111,1800,132,100,875 +19900111,1800,132,100,825 +19900111,1800,132,100,800 +19900111,1800,132,100,775 +19900111,1800,132,100,750 +19900111,1800,132,100,740 +19900111,1800,132,100,700 +19900111,1800,132,100,650 +19900111,1800,132,100,620 +19900111,1800,132,100,600 +19900111,1800,132,100,550 +19900111,1800,132,100,500 +19900111,1800,132,100,450 +19900111,1800,132,100,400 +19900111,1800,132,100,375 +19900111,1800,132,100,350 +19900111,1800,132,100,300 +19900111,1800,132,100,250 +19900111,1800,132,100,245 +19900111,1800,132,100,225 +19900111,1800,132,100,200 +19900111,1800,132,100,175 +19900111,1800,132,100,150 +19900111,1800,132,100,125 +19900111,1800,132,100,100 +19900111,1800,132,100,70 +19900111,1800,132,100,50 +19900111,1800,132,100,30 +19900111,1800,132,100,20 +19900111,1800,132,100,10 +19900111,1800,132,100,9 +19900111,1800,132,100,7 +19900111,1800,132,100,5 +19900111,1800,132,100,3 +19900111,1800,132,100,2 +19900111,1800,132,100,1 +19900111,1800,132,210,40 +19900111,1800,130,100,1000 +19900111,1800,130,100,975 +19900111,1800,130,100,950 +19900111,1800,130,100,925 +19900111,1800,130,100,900 +19900111,1800,130,100,875 +19900111,1800,130,100,850 +19900111,1800,130,100,825 +19900111,1800,130,100,800 +19900111,1800,130,100,775 +19900111,1800,130,100,750 +19900111,1800,130,100,740 +19900111,1800,130,100,700 +19900111,1800,130,100,650 +19900111,1800,130,100,620 +19900111,1800,130,100,600 +19900111,1800,130,100,550 +19900111,1800,130,100,500 +19900111,1800,130,100,450 +19900111,1800,130,100,400 +19900111,1800,130,100,375 +19900111,1800,130,100,350 +19900111,1800,130,100,300 +19900111,1800,130,100,250 +19900111,1800,130,100,245 +19900111,1800,130,100,225 +19900111,1800,130,100,200 +19900111,1800,130,100,175 +19900111,1800,130,100,150 +19900111,1800,130,100,125 +19900111,1800,130,100,100 +19900111,1800,130,100,70 +19900111,1800,130,100,50 +19900111,1800,130,100,30 +19900111,1800,130,100,20 +19900111,1800,130,100,10 +19900111,1800,130,100,9 +19900111,1800,130,100,7 +19900111,1800,130,100,5 +19900111,1800,130,100,3 +19900111,1800,130,100,2 +19900111,1800,130,100,1 +19900111,1800,130,210,40 +19900111,1800,129,100,1000 +19900111,1800,129,100,975 +19900111,1800,129,100,950 +19900111,1800,129,100,925 +19900111,1800,129,100,900 +19900111,1800,129,100,875 +19900111,1800,129,100,850 +19900111,1800,129,100,825 +19900111,1800,129,100,800 +19900111,1800,129,100,775 +19900111,1800,129,100,750 +19900111,1800,129,100,740 +19900111,1800,129,100,700 +19900111,1800,129,100,650 +19900111,1800,129,100,620 +19900111,1800,129,100,600 +19900111,1800,129,100,550 +19900111,1800,129,100,500 +19900111,1800,129,100,450 +19900111,1800,129,100,400 +19900111,1800,129,100,375 +19900111,1800,129,100,350 +19900111,1800,129,100,300 +19900111,1800,129,100,250 +19900111,1800,129,100,245 +19900111,1800,129,100,225 +19900111,1800,129,100,200 +19900111,1800,129,100,175 +19900111,1800,129,100,150 +19900111,1800,129,100,125 +19900111,1800,129,100,100 +19900111,1800,129,100,70 +19900111,1800,129,100,50 +19900111,1800,129,100,30 +19900111,1800,129,100,20 +19900111,1800,129,100,10 +19900111,1800,129,100,9 +19900111,1800,129,100,7 +19900111,1800,129,100,5 +19900111,1800,129,100,3 +19900111,1800,129,100,2 +19900111,1800,129,100,1 +19900111,1800,129,210,40 +19900111,1800,157,100,1000 +19900111,1800,157,100,975 +19900111,1800,157,100,950 +19900111,1800,157,100,925 +19900111,1800,157,100,900 +19900111,1800,157,100,875 +19900111,1800,157,100,850 +19900111,1800,157,100,825 +19900111,1800,157,100,800 +19900111,1800,157,100,775 +19900111,1800,157,100,750 +19900111,1800,157,100,740 +19900111,1800,157,100,700 +19900111,1800,157,100,650 +19900111,1800,157,100,620 +19900111,1800,157,100,600 +19900111,1800,157,100,550 +19900111,1800,157,100,500 +19900111,1800,157,100,450 +19900111,1800,157,100,400 +19900111,1800,157,100,375 +19900111,1800,157,100,350 +19900111,1800,157,100,300 +19900111,1800,157,100,250 +19900111,1800,157,100,245 +19900111,1800,157,100,225 +19900111,1800,157,100,200 +19900111,1800,157,100,175 +19900111,1800,157,100,150 +19900111,1800,157,100,125 +19900111,1800,157,100,100 +19900111,1800,157,100,70 +19900111,1800,157,100,50 +19900111,1800,157,100,30 +19900111,1800,157,100,20 +19900111,1800,157,100,10 +19900111,1800,157,100,9 +19900111,1800,157,100,7 +19900111,1800,157,100,5 +19900111,1800,157,100,3 +19900111,1800,157,100,2 +19900111,1800,157,100,1 +19900111,1800,157,210,40 +19900111,1800,135,100,1000 +19900111,1800,135,100,975 +19900111,1800,135,100,950 +19900111,1800,135,100,925 +19900111,1800,135,100,900 +19900111,1800,135,100,875 +19900111,1800,135,100,850 +19900111,1800,135,100,825 +19900111,1800,135,100,800 +19900111,1800,135,100,775 +19900111,1800,135,100,750 +19900111,1800,135,100,740 +19900111,1800,135,100,700 +19900111,1800,135,100,650 +19900111,1800,135,100,620 +19900111,1800,135,100,600 +19900111,1800,135,100,550 +19900111,1800,135,100,500 +19900111,1800,135,100,450 +19900111,1800,135,100,400 +19900111,1800,135,100,375 +19900111,1800,135,100,350 +19900111,1800,135,100,300 +19900111,1800,135,100,250 +19900111,1800,135,100,245 +19900111,1800,135,100,225 +19900111,1800,135,100,200 +19900111,1800,135,100,175 +19900111,1800,135,100,150 +19900111,1800,135,100,125 +19900111,1800,135,100,100 +19900111,1800,135,100,70 +19900111,1800,135,100,50 +19900111,1800,135,100,30 +19900111,1800,135,100,20 +19900111,1800,135,100,10 +19900111,1800,135,100,9 +19900111,1800,135,100,7 +19900111,1800,135,100,5 +19900111,1800,135,100,3 +19900111,1800,135,100,2 +19900111,1800,135,100,1 +19900111,1800,135,210,40 +19900111,1800,138,100,1000 +19900111,1800,138,100,975 +19900111,1800,138,100,950 +19900111,1800,138,100,925 +19900111,1800,138,100,900 +19900111,1800,138,100,875 +19900111,1800,138,100,850 +19900111,1800,138,100,825 +19900111,1800,138,100,800 +19900111,1800,138,100,775 +19900111,1800,138,100,750 +19900111,1800,138,100,740 +19900111,1800,138,100,700 +19900111,1800,138,100,650 +19900111,1800,138,100,620 +19900111,1800,138,100,600 +19900111,1800,138,100,550 +19900111,1800,138,100,500 +19900111,1800,138,100,450 +19900111,1800,138,100,400 +19900111,1800,138,100,375 +19900111,1800,138,100,350 +19900111,1800,138,100,300 +19900111,1800,138,100,250 +19900111,1800,138,100,245 +19900111,1800,138,100,225 +19900111,1800,138,100,200 +19900111,1800,138,100,175 +19900111,1800,138,100,150 +19900111,1800,138,100,125 +19900111,1800,138,100,100 +19900111,1800,138,100,70 +19900111,1800,138,100,50 +19900111,1800,138,100,30 +19900111,1800,138,100,20 +19900111,1800,138,100,10 +19900111,1800,138,100,9 +19900111,1800,138,100,7 +19900111,1800,138,100,5 +19900111,1800,138,100,3 +19900111,1800,138,100,2 +19900111,1800,138,100,1 +19900111,1800,138,210,40 +19900111,1800,131,109,1 +19900111,1800,131,109,2 +19900111,1800,131,109,3 +19900111,1800,131,109,4 +19900111,1800,131,109,5 +19900111,1800,131,109,6 +19900111,1800,131,109,7 +19900111,1800,131,109,8 +19900111,1800,131,109,9 +19900111,1800,131,109,10 +19900111,1800,132,109,1 +19900111,1800,132,109,2 +19900111,1800,132,109,3 +19900111,1800,132,109,4 +19900111,1800,132,109,5 +19900111,1800,132,109,6 +19900111,1800,132,109,7 +19900111,1800,132,109,8 +19900111,1800,132,109,9 +19900111,1800,132,109,10 +19900111,1800,130,109,1 +19900111,1800,130,109,2 +19900111,1800,130,109,3 +19900111,1800,130,109,4 +19900111,1800,130,109,5 +19900111,1800,130,109,6 +19900111,1800,130,109,7 +19900111,1800,130,109,8 +19900111,1800,130,109,9 +19900111,1800,130,109,10 +19900111,1800,157,109,1 +19900111,1800,157,109,2 +19900111,1800,157,109,3 +19900111,1800,157,109,4 +19900111,1800,157,109,5 +19900111,1800,157,109,6 +19900111,1800,157,109,7 +19900111,1800,157,109,8 +19900111,1800,157,109,9 +19900111,1800,157,109,10 +19900111,1800,54,109,1 +19900111,1800,54,109,2 +19900111,1800,54,109,3 +19900111,1800,54,109,4 +19900111,1800,54,109,5 +19900111,1800,54,109,6 +19900111,1800,54,109,7 +19900111,1800,54,109,8 +19900111,1800,54,109,9 +19900111,1800,54,109,10 +19900111,1800,135,109,1 +19900111,1800,135,109,2 +19900111,1800,135,109,3 +19900111,1800,135,109,4 +19900111,1800,135,109,5 +19900111,1800,135,109,6 +19900111,1800,135,109,7 +19900111,1800,135,109,8 +19900111,1800,135,109,9 +19900111,1800,135,109,10 +19900111,1800,134,109,1 +19900111,1800,152,109,1 +19900111,1800,131,100,850 +19900111,1800,132,100,850 +19900111,1800,134,100,1000 +19900111,1800,152,100,1000 +19900111,2100,131,100,850 +19900111,2100,132,100,850 +19900111,2100,134,100,1000 +19900111,2100,152,100,1000 +19900112,0,131,100,1000 +19900112,0,131,100,975 +19900112,0,131,100,950 +19900112,0,131,100,925 +19900112,0,131,100,900 +19900112,0,131,100,875 +19900112,0,131,100,825 +19900112,0,131,100,800 +19900112,0,131,100,775 +19900112,0,131,100,750 +19900112,0,131,100,740 +19900112,0,131,100,700 +19900112,0,131,100,650 +19900112,0,131,100,620 +19900112,0,131,100,600 +19900112,0,131,100,550 +19900112,0,131,100,500 +19900112,0,131,100,450 +19900112,0,131,100,400 +19900112,0,131,100,375 +19900112,0,131,100,350 +19900112,0,131,100,300 +19900112,0,131,100,250 +19900112,0,131,100,245 +19900112,0,131,100,225 +19900112,0,131,100,200 +19900112,0,131,100,175 +19900112,0,131,100,150 +19900112,0,131,100,125 +19900112,0,131,100,100 +19900112,0,131,100,70 +19900112,0,131,100,50 +19900112,0,131,100,30 +19900112,0,131,100,20 +19900112,0,131,100,10 +19900112,0,131,100,9 +19900112,0,131,100,7 +19900112,0,131,100,5 +19900112,0,131,100,3 +19900112,0,131,100,2 +19900112,0,131,100,1 +19900112,0,131,210,40 +19900112,0,132,100,1000 +19900112,0,132,100,975 +19900112,0,132,100,950 +19900112,0,132,100,925 +19900112,0,132,100,900 +19900112,0,132,100,875 +19900112,0,132,100,825 +19900112,0,132,100,800 +19900112,0,132,100,775 +19900112,0,132,100,750 +19900112,0,132,100,740 +19900112,0,132,100,700 +19900112,0,132,100,650 +19900112,0,132,100,620 +19900112,0,132,100,600 +19900112,0,132,100,550 +19900112,0,132,100,500 +19900112,0,132,100,450 +19900112,0,132,100,400 +19900112,0,132,100,375 +19900112,0,132,100,350 +19900112,0,132,100,300 +19900112,0,132,100,250 +19900112,0,132,100,245 +19900112,0,132,100,225 +19900112,0,132,100,200 +19900112,0,132,100,175 +19900112,0,132,100,150 +19900112,0,132,100,125 +19900112,0,132,100,100 +19900112,0,132,100,70 +19900112,0,132,100,50 +19900112,0,132,100,30 +19900112,0,132,100,20 +19900112,0,132,100,10 +19900112,0,132,100,9 +19900112,0,132,100,7 +19900112,0,132,100,5 +19900112,0,132,100,3 +19900112,0,132,100,2 +19900112,0,132,100,1 +19900112,0,132,210,40 +19900112,0,130,100,1000 +19900112,0,130,100,975 +19900112,0,130,100,950 +19900112,0,130,100,925 +19900112,0,130,100,900 +19900112,0,130,100,875 +19900112,0,130,100,850 +19900112,0,130,100,825 +19900112,0,130,100,800 +19900112,0,130,100,775 +19900112,0,130,100,750 +19900112,0,130,100,740 +19900112,0,130,100,700 +19900112,0,130,100,650 +19900112,0,130,100,620 +19900112,0,130,100,600 +19900112,0,130,100,550 +19900112,0,130,100,500 +19900112,0,130,100,450 +19900112,0,130,100,400 +19900112,0,130,100,375 +19900112,0,130,100,350 +19900112,0,130,100,300 +19900112,0,130,100,250 +19900112,0,130,100,245 +19900112,0,130,100,225 +19900112,0,130,100,200 +19900112,0,130,100,175 +19900112,0,130,100,150 +19900112,0,130,100,125 +19900112,0,130,100,100 +19900112,0,130,100,70 +19900112,0,130,100,50 +19900112,0,130,100,30 +19900112,0,130,100,20 +19900112,0,130,100,10 +19900112,0,130,100,9 +19900112,0,130,100,7 +19900112,0,130,100,5 +19900112,0,130,100,3 +19900112,0,130,100,2 +19900112,0,130,100,1 +19900112,0,130,210,40 +19900112,0,129,100,1000 +19900112,0,129,100,975 +19900112,0,129,100,950 +19900112,0,129,100,925 +19900112,0,129,100,900 +19900112,0,129,100,875 +19900112,0,129,100,850 +19900112,0,129,100,825 +19900112,0,129,100,800 +19900112,0,129,100,775 +19900112,0,129,100,750 +19900112,0,129,100,740 +19900112,0,129,100,700 +19900112,0,129,100,650 +19900112,0,129,100,620 +19900112,0,129,100,600 +19900112,0,129,100,550 +19900112,0,129,100,500 +19900112,0,129,100,450 +19900112,0,129,100,400 +19900112,0,129,100,375 +19900112,0,129,100,350 +19900112,0,129,100,300 +19900112,0,129,100,250 +19900112,0,129,100,245 +19900112,0,129,100,225 +19900112,0,129,100,200 +19900112,0,129,100,175 +19900112,0,129,100,150 +19900112,0,129,100,125 +19900112,0,129,100,100 +19900112,0,129,100,70 +19900112,0,129,100,50 +19900112,0,129,100,30 +19900112,0,129,100,20 +19900112,0,129,100,10 +19900112,0,129,100,9 +19900112,0,129,100,7 +19900112,0,129,100,5 +19900112,0,129,100,3 +19900112,0,129,100,2 +19900112,0,129,100,1 +19900112,0,129,210,40 +19900112,0,157,100,1000 +19900112,0,157,100,975 +19900112,0,157,100,950 +19900112,0,157,100,925 +19900112,0,157,100,900 +19900112,0,157,100,875 +19900112,0,157,100,850 +19900112,0,157,100,825 +19900112,0,157,100,800 +19900112,0,157,100,775 +19900112,0,157,100,750 +19900112,0,157,100,740 +19900112,0,157,100,700 +19900112,0,157,100,650 +19900112,0,157,100,620 +19900112,0,157,100,600 +19900112,0,157,100,550 +19900112,0,157,100,500 +19900112,0,157,100,450 +19900112,0,157,100,400 +19900112,0,157,100,375 +19900112,0,157,100,350 +19900112,0,157,100,300 +19900112,0,157,100,250 +19900112,0,157,100,245 +19900112,0,157,100,225 +19900112,0,157,100,200 +19900112,0,157,100,175 +19900112,0,157,100,150 +19900112,0,157,100,125 +19900112,0,157,100,100 +19900112,0,157,100,70 +19900112,0,157,100,50 +19900112,0,157,100,30 +19900112,0,157,100,20 +19900112,0,157,100,10 +19900112,0,157,100,9 +19900112,0,157,100,7 +19900112,0,157,100,5 +19900112,0,157,100,3 +19900112,0,157,100,2 +19900112,0,157,100,1 +19900112,0,157,210,40 +19900112,0,135,100,1000 +19900112,0,135,100,975 +19900112,0,135,100,950 +19900112,0,135,100,925 +19900112,0,135,100,900 +19900112,0,135,100,875 +19900112,0,135,100,850 +19900112,0,135,100,825 +19900112,0,135,100,800 +19900112,0,135,100,775 +19900112,0,135,100,750 +19900112,0,135,100,740 +19900112,0,135,100,700 +19900112,0,135,100,650 +19900112,0,135,100,620 +19900112,0,135,100,600 +19900112,0,135,100,550 +19900112,0,135,100,500 +19900112,0,135,100,450 +19900112,0,135,100,400 +19900112,0,135,100,375 +19900112,0,135,100,350 +19900112,0,135,100,300 +19900112,0,135,100,250 +19900112,0,135,100,245 +19900112,0,135,100,225 +19900112,0,135,100,200 +19900112,0,135,100,175 +19900112,0,135,100,150 +19900112,0,135,100,125 +19900112,0,135,100,100 +19900112,0,135,100,70 +19900112,0,135,100,50 +19900112,0,135,100,30 +19900112,0,135,100,20 +19900112,0,135,100,10 +19900112,0,135,100,9 +19900112,0,135,100,7 +19900112,0,135,100,5 +19900112,0,135,100,3 +19900112,0,135,100,2 +19900112,0,135,100,1 +19900112,0,135,210,40 +19900112,0,138,100,1000 +19900112,0,138,100,975 +19900112,0,138,100,950 +19900112,0,138,100,925 +19900112,0,138,100,900 +19900112,0,138,100,875 +19900112,0,138,100,850 +19900112,0,138,100,825 +19900112,0,138,100,800 +19900112,0,138,100,775 +19900112,0,138,100,750 +19900112,0,138,100,740 +19900112,0,138,100,700 +19900112,0,138,100,650 +19900112,0,138,100,620 +19900112,0,138,100,600 +19900112,0,138,100,550 +19900112,0,138,100,500 +19900112,0,138,100,450 +19900112,0,138,100,400 +19900112,0,138,100,375 +19900112,0,138,100,350 +19900112,0,138,100,300 +19900112,0,138,100,250 +19900112,0,138,100,245 +19900112,0,138,100,225 +19900112,0,138,100,200 +19900112,0,138,100,175 +19900112,0,138,100,150 +19900112,0,138,100,125 +19900112,0,138,100,100 +19900112,0,138,100,70 +19900112,0,138,100,50 +19900112,0,138,100,30 +19900112,0,138,100,20 +19900112,0,138,100,10 +19900112,0,138,100,9 +19900112,0,138,100,7 +19900112,0,138,100,5 +19900112,0,138,100,3 +19900112,0,138,100,2 +19900112,0,138,100,1 +19900112,0,138,210,40 +19900112,0,131,109,1 +19900112,0,131,109,2 +19900112,0,131,109,3 +19900112,0,131,109,4 +19900112,0,131,109,5 +19900112,0,131,109,6 +19900112,0,131,109,7 +19900112,0,131,109,8 +19900112,0,131,109,9 +19900112,0,131,109,10 +19900112,0,132,109,1 +19900112,0,132,109,2 +19900112,0,132,109,3 +19900112,0,132,109,4 +19900112,0,132,109,5 +19900112,0,132,109,6 +19900112,0,132,109,7 +19900112,0,132,109,8 +19900112,0,132,109,9 +19900112,0,132,109,10 +19900112,0,130,109,1 +19900112,0,130,109,2 +19900112,0,130,109,3 +19900112,0,130,109,4 +19900112,0,130,109,5 +19900112,0,130,109,6 +19900112,0,130,109,7 +19900112,0,130,109,8 +19900112,0,130,109,9 +19900112,0,130,109,10 +19900112,0,157,109,1 +19900112,0,157,109,2 +19900112,0,157,109,3 +19900112,0,157,109,4 +19900112,0,157,109,5 +19900112,0,157,109,6 +19900112,0,157,109,7 +19900112,0,157,109,8 +19900112,0,157,109,9 +19900112,0,157,109,10 +19900112,0,54,109,1 +19900112,0,54,109,2 +19900112,0,54,109,3 +19900112,0,54,109,4 +19900112,0,54,109,5 +19900112,0,54,109,6 +19900112,0,54,109,7 +19900112,0,54,109,8 +19900112,0,54,109,9 +19900112,0,54,109,10 +19900112,0,135,109,1 +19900112,0,135,109,2 +19900112,0,135,109,3 +19900112,0,135,109,4 +19900112,0,135,109,5 +19900112,0,135,109,6 +19900112,0,135,109,7 +19900112,0,135,109,8 +19900112,0,135,109,9 +19900112,0,135,109,10 +19900112,0,134,109,1 +19900112,0,152,109,1 +19900112,0,131,100,850 +19900112,0,132,100,850 +19900112,0,134,100,1000 +19900112,0,152,100,1000 +19900112,300,131,100,850 +19900112,300,132,100,850 +19900112,300,134,100,1000 +19900112,300,152,100,1000 +19900112,600,131,100,1000 +19900112,600,131,100,975 +19900112,600,131,100,950 +19900112,600,131,100,925 +19900112,600,131,100,900 +19900112,600,131,100,875 +19900112,600,131,100,825 +19900112,600,131,100,800 +19900112,600,131,100,775 +19900112,600,131,100,750 +19900112,600,131,100,740 +19900112,600,131,100,700 +19900112,600,131,100,650 +19900112,600,131,100,620 +19900112,600,131,100,600 +19900112,600,131,100,550 +19900112,600,131,100,500 +19900112,600,131,100,450 +19900112,600,131,100,400 +19900112,600,131,100,375 +19900112,600,131,100,350 +19900112,600,131,100,300 +19900112,600,131,100,250 +19900112,600,131,100,245 +19900112,600,131,100,225 +19900112,600,131,100,200 +19900112,600,131,100,175 +19900112,600,131,100,150 +19900112,600,131,100,125 +19900112,600,131,100,100 +19900112,600,131,100,70 +19900112,600,131,100,50 +19900112,600,131,100,30 +19900112,600,131,100,20 +19900112,600,131,100,10 +19900112,600,131,100,9 +19900112,600,131,100,7 +19900112,600,131,100,5 +19900112,600,131,100,3 +19900112,600,131,100,2 +19900112,600,131,100,1 +19900112,600,131,210,40 +19900112,600,132,100,1000 +19900112,600,132,100,975 +19900112,600,132,100,950 +19900112,600,132,100,925 +19900112,600,132,100,900 +19900112,600,132,100,875 +19900112,600,132,100,825 +19900112,600,132,100,800 +19900112,600,132,100,775 +19900112,600,132,100,750 +19900112,600,132,100,740 +19900112,600,132,100,700 +19900112,600,132,100,650 +19900112,600,132,100,620 +19900112,600,132,100,600 +19900112,600,132,100,550 +19900112,600,132,100,500 +19900112,600,132,100,450 +19900112,600,132,100,400 +19900112,600,132,100,375 +19900112,600,132,100,350 +19900112,600,132,100,300 +19900112,600,132,100,250 +19900112,600,132,100,245 +19900112,600,132,100,225 +19900112,600,132,100,200 +19900112,600,132,100,175 +19900112,600,132,100,150 +19900112,600,132,100,125 +19900112,600,132,100,100 +19900112,600,132,100,70 +19900112,600,132,100,50 +19900112,600,132,100,30 +19900112,600,132,100,20 +19900112,600,132,100,10 +19900112,600,132,100,9 +19900112,600,132,100,7 +19900112,600,132,100,5 +19900112,600,132,100,3 +19900112,600,132,100,2 +19900112,600,132,100,1 +19900112,600,132,210,40 +19900112,600,130,100,1000 +19900112,600,130,100,975 +19900112,600,130,100,950 +19900112,600,130,100,925 +19900112,600,130,100,900 +19900112,600,130,100,875 +19900112,600,130,100,850 +19900112,600,130,100,825 +19900112,600,130,100,800 +19900112,600,130,100,775 +19900112,600,130,100,750 +19900112,600,130,100,740 +19900112,600,130,100,700 +19900112,600,130,100,650 +19900112,600,130,100,620 +19900112,600,130,100,600 +19900112,600,130,100,550 +19900112,600,130,100,500 +19900112,600,130,100,450 +19900112,600,130,100,400 +19900112,600,130,100,375 +19900112,600,130,100,350 +19900112,600,130,100,300 +19900112,600,130,100,250 +19900112,600,130,100,245 +19900112,600,130,100,225 +19900112,600,130,100,200 +19900112,600,130,100,175 +19900112,600,130,100,150 +19900112,600,130,100,125 +19900112,600,130,100,100 +19900112,600,130,100,70 +19900112,600,130,100,50 +19900112,600,130,100,30 +19900112,600,130,100,20 +19900112,600,130,100,10 +19900112,600,130,100,9 +19900112,600,130,100,7 +19900112,600,130,100,5 +19900112,600,130,100,3 +19900112,600,130,100,2 +19900112,600,130,100,1 +19900112,600,130,210,40 +19900112,600,129,100,1000 +19900112,600,129,100,975 +19900112,600,129,100,950 +19900112,600,129,100,925 +19900112,600,129,100,900 +19900112,600,129,100,875 +19900112,600,129,100,850 +19900112,600,129,100,825 +19900112,600,129,100,800 +19900112,600,129,100,775 +19900112,600,129,100,750 +19900112,600,129,100,740 +19900112,600,129,100,700 +19900112,600,129,100,650 +19900112,600,129,100,620 +19900112,600,129,100,600 +19900112,600,129,100,550 +19900112,600,129,100,500 +19900112,600,129,100,450 +19900112,600,129,100,400 +19900112,600,129,100,375 +19900112,600,129,100,350 +19900112,600,129,100,300 +19900112,600,129,100,250 +19900112,600,129,100,245 +19900112,600,129,100,225 +19900112,600,129,100,200 +19900112,600,129,100,175 +19900112,600,129,100,150 +19900112,600,129,100,125 +19900112,600,129,100,100 +19900112,600,129,100,70 +19900112,600,129,100,50 +19900112,600,129,100,30 +19900112,600,129,100,20 +19900112,600,129,100,10 +19900112,600,129,100,9 +19900112,600,129,100,7 +19900112,600,129,100,5 +19900112,600,129,100,3 +19900112,600,129,100,2 +19900112,600,129,100,1 +19900112,600,129,210,40 +19900112,600,157,100,1000 +19900112,600,157,100,975 +19900112,600,157,100,950 +19900112,600,157,100,925 +19900112,600,157,100,900 +19900112,600,157,100,875 +19900112,600,157,100,850 +19900112,600,157,100,825 +19900112,600,157,100,800 +19900112,600,157,100,775 +19900112,600,157,100,750 +19900112,600,157,100,740 +19900112,600,157,100,700 +19900112,600,157,100,650 +19900112,600,157,100,620 +19900112,600,157,100,600 +19900112,600,157,100,550 +19900112,600,157,100,500 +19900112,600,157,100,450 +19900112,600,157,100,400 +19900112,600,157,100,375 +19900112,600,157,100,350 +19900112,600,157,100,300 +19900112,600,157,100,250 +19900112,600,157,100,245 +19900112,600,157,100,225 +19900112,600,157,100,200 +19900112,600,157,100,175 +19900112,600,157,100,150 +19900112,600,157,100,125 +19900112,600,157,100,100 +19900112,600,157,100,70 +19900112,600,157,100,50 +19900112,600,157,100,30 +19900112,600,157,100,20 +19900112,600,157,100,10 +19900112,600,157,100,9 +19900112,600,157,100,7 +19900112,600,157,100,5 +19900112,600,157,100,3 +19900112,600,157,100,2 +19900112,600,157,100,1 +19900112,600,157,210,40 +19900112,600,135,100,1000 +19900112,600,135,100,975 +19900112,600,135,100,950 +19900112,600,135,100,925 +19900112,600,135,100,900 +19900112,600,135,100,875 +19900112,600,135,100,850 +19900112,600,135,100,825 +19900112,600,135,100,800 +19900112,600,135,100,775 +19900112,600,135,100,750 +19900112,600,135,100,740 +19900112,600,135,100,700 +19900112,600,135,100,650 +19900112,600,135,100,620 +19900112,600,135,100,600 +19900112,600,135,100,550 +19900112,600,135,100,500 +19900112,600,135,100,450 +19900112,600,135,100,400 +19900112,600,135,100,375 +19900112,600,135,100,350 +19900112,600,135,100,300 +19900112,600,135,100,250 +19900112,600,135,100,245 +19900112,600,135,100,225 +19900112,600,135,100,200 +19900112,600,135,100,175 +19900112,600,135,100,150 +19900112,600,135,100,125 +19900112,600,135,100,100 +19900112,600,135,100,70 +19900112,600,135,100,50 +19900112,600,135,100,30 +19900112,600,135,100,20 +19900112,600,135,100,10 +19900112,600,135,100,9 +19900112,600,135,100,7 +19900112,600,135,100,5 +19900112,600,135,100,3 +19900112,600,135,100,2 +19900112,600,135,100,1 +19900112,600,135,210,40 +19900112,600,138,100,1000 +19900112,600,138,100,975 +19900112,600,138,100,950 +19900112,600,138,100,925 +19900112,600,138,100,900 +19900112,600,138,100,875 +19900112,600,138,100,850 +19900112,600,138,100,825 +19900112,600,138,100,800 +19900112,600,138,100,775 +19900112,600,138,100,750 +19900112,600,138,100,740 +19900112,600,138,100,700 +19900112,600,138,100,650 +19900112,600,138,100,620 +19900112,600,138,100,600 +19900112,600,138,100,550 +19900112,600,138,100,500 +19900112,600,138,100,450 +19900112,600,138,100,400 +19900112,600,138,100,375 +19900112,600,138,100,350 +19900112,600,138,100,300 +19900112,600,138,100,250 +19900112,600,138,100,245 +19900112,600,138,100,225 +19900112,600,138,100,200 +19900112,600,138,100,175 +19900112,600,138,100,150 +19900112,600,138,100,125 +19900112,600,138,100,100 +19900112,600,138,100,70 +19900112,600,138,100,50 +19900112,600,138,100,30 +19900112,600,138,100,20 +19900112,600,138,100,10 +19900112,600,138,100,9 +19900112,600,138,100,7 +19900112,600,138,100,5 +19900112,600,138,100,3 +19900112,600,138,100,2 +19900112,600,138,100,1 +19900112,600,138,210,40 +19900112,600,131,109,1 +19900112,600,131,109,2 +19900112,600,131,109,3 +19900112,600,131,109,4 +19900112,600,131,109,5 +19900112,600,131,109,6 +19900112,600,131,109,7 +19900112,600,131,109,8 +19900112,600,131,109,9 +19900112,600,131,109,10 +19900112,600,132,109,1 +19900112,600,132,109,2 +19900112,600,132,109,3 +19900112,600,132,109,4 +19900112,600,132,109,5 +19900112,600,132,109,6 +19900112,600,132,109,7 +19900112,600,132,109,8 +19900112,600,132,109,9 +19900112,600,132,109,10 +19900112,600,130,109,1 +19900112,600,130,109,2 +19900112,600,130,109,3 +19900112,600,130,109,4 +19900112,600,130,109,5 +19900112,600,130,109,6 +19900112,600,130,109,7 +19900112,600,130,109,8 +19900112,600,130,109,9 +19900112,600,130,109,10 +19900112,600,157,109,1 +19900112,600,157,109,2 +19900112,600,157,109,3 +19900112,600,157,109,4 +19900112,600,157,109,5 +19900112,600,157,109,6 +19900112,600,157,109,7 +19900112,600,157,109,8 +19900112,600,157,109,9 +19900112,600,157,109,10 +19900112,600,54,109,1 +19900112,600,54,109,2 +19900112,600,54,109,3 +19900112,600,54,109,4 +19900112,600,54,109,5 +19900112,600,54,109,6 +19900112,600,54,109,7 +19900112,600,54,109,8 +19900112,600,54,109,9 +19900112,600,54,109,10 +19900112,600,135,109,1 +19900112,600,135,109,2 +19900112,600,135,109,3 +19900112,600,135,109,4 +19900112,600,135,109,5 +19900112,600,135,109,6 +19900112,600,135,109,7 +19900112,600,135,109,8 +19900112,600,135,109,9 +19900112,600,135,109,10 +19900112,600,134,109,1 +19900112,600,152,109,1 +19900112,600,131,100,850 +19900112,600,132,100,850 +19900112,600,134,100,1000 +19900112,600,152,100,1000 +19900112,900,131,100,850 +19900112,900,132,100,850 +19900112,900,134,100,1000 +19900112,900,152,100,1000 +19900112,1200,131,100,1000 +19900112,1200,131,100,975 +19900112,1200,131,100,950 +19900112,1200,131,100,925 +19900112,1200,131,100,900 +19900112,1200,131,100,875 +19900112,1200,131,100,825 +19900112,1200,131,100,800 +19900112,1200,131,100,775 +19900112,1200,131,100,750 +19900112,1200,131,100,740 +19900112,1200,131,100,700 +19900112,1200,131,100,650 +19900112,1200,131,100,620 +19900112,1200,131,100,600 +19900112,1200,131,100,550 +19900112,1200,131,100,500 +19900112,1200,131,100,450 +19900112,1200,131,100,400 +19900112,1200,131,100,375 +19900112,1200,131,100,350 +19900112,1200,131,100,300 +19900112,1200,131,100,250 +19900112,1200,131,100,245 +19900112,1200,131,100,225 +19900112,1200,131,100,200 +19900112,1200,131,100,175 +19900112,1200,131,100,150 +19900112,1200,131,100,125 +19900112,1200,131,100,100 +19900112,1200,131,100,70 +19900112,1200,131,100,50 +19900112,1200,131,100,30 +19900112,1200,131,100,20 +19900112,1200,131,100,10 +19900112,1200,131,100,9 +19900112,1200,131,100,7 +19900112,1200,131,100,5 +19900112,1200,131,100,3 +19900112,1200,131,100,2 +19900112,1200,131,100,1 +19900112,1200,131,210,40 +19900112,1200,132,100,1000 +19900112,1200,132,100,975 +19900112,1200,132,100,950 +19900112,1200,132,100,925 +19900112,1200,132,100,900 +19900112,1200,132,100,875 +19900112,1200,132,100,825 +19900112,1200,132,100,800 +19900112,1200,132,100,775 +19900112,1200,132,100,750 +19900112,1200,132,100,740 +19900112,1200,132,100,700 +19900112,1200,132,100,650 +19900112,1200,132,100,620 +19900112,1200,132,100,600 +19900112,1200,132,100,550 +19900112,1200,132,100,500 +19900112,1200,132,100,450 +19900112,1200,132,100,400 +19900112,1200,132,100,375 +19900112,1200,132,100,350 +19900112,1200,132,100,300 +19900112,1200,132,100,250 +19900112,1200,132,100,245 +19900112,1200,132,100,225 +19900112,1200,132,100,200 +19900112,1200,132,100,175 +19900112,1200,132,100,150 +19900112,1200,132,100,125 +19900112,1200,132,100,100 +19900112,1200,132,100,70 +19900112,1200,132,100,50 +19900112,1200,132,100,30 +19900112,1200,132,100,20 +19900112,1200,132,100,10 +19900112,1200,132,100,9 +19900112,1200,132,100,7 +19900112,1200,132,100,5 +19900112,1200,132,100,3 +19900112,1200,132,100,2 +19900112,1200,132,100,1 +19900112,1200,132,210,40 +19900112,1200,130,100,1000 +19900112,1200,130,100,975 +19900112,1200,130,100,950 +19900112,1200,130,100,925 +19900112,1200,130,100,900 +19900112,1200,130,100,875 +19900112,1200,130,100,850 +19900112,1200,130,100,825 +19900112,1200,130,100,800 +19900112,1200,130,100,775 +19900112,1200,130,100,750 +19900112,1200,130,100,740 +19900112,1200,130,100,700 +19900112,1200,130,100,650 +19900112,1200,130,100,620 +19900112,1200,130,100,600 +19900112,1200,130,100,550 +19900112,1200,130,100,500 +19900112,1200,130,100,450 +19900112,1200,130,100,400 +19900112,1200,130,100,375 +19900112,1200,130,100,350 +19900112,1200,130,100,300 +19900112,1200,130,100,250 +19900112,1200,130,100,245 +19900112,1200,130,100,225 +19900112,1200,130,100,200 +19900112,1200,130,100,175 +19900112,1200,130,100,150 +19900112,1200,130,100,125 +19900112,1200,130,100,100 +19900112,1200,130,100,70 +19900112,1200,130,100,50 +19900112,1200,130,100,30 +19900112,1200,130,100,20 +19900112,1200,130,100,10 +19900112,1200,130,100,9 +19900112,1200,130,100,7 +19900112,1200,130,100,5 +19900112,1200,130,100,3 +19900112,1200,130,100,2 +19900112,1200,130,100,1 +19900112,1200,130,210,40 +19900112,1200,129,100,1000 +19900112,1200,129,100,975 +19900112,1200,129,100,950 +19900112,1200,129,100,925 +19900112,1200,129,100,900 +19900112,1200,129,100,875 +19900112,1200,129,100,850 +19900112,1200,129,100,825 +19900112,1200,129,100,800 +19900112,1200,129,100,775 +19900112,1200,129,100,750 +19900112,1200,129,100,740 +19900112,1200,129,100,700 +19900112,1200,129,100,650 +19900112,1200,129,100,620 +19900112,1200,129,100,600 +19900112,1200,129,100,550 +19900112,1200,129,100,500 +19900112,1200,129,100,450 +19900112,1200,129,100,400 +19900112,1200,129,100,375 +19900112,1200,129,100,350 +19900112,1200,129,100,300 +19900112,1200,129,100,250 +19900112,1200,129,100,245 +19900112,1200,129,100,225 +19900112,1200,129,100,200 +19900112,1200,129,100,175 +19900112,1200,129,100,150 +19900112,1200,129,100,125 +19900112,1200,129,100,100 +19900112,1200,129,100,70 +19900112,1200,129,100,50 +19900112,1200,129,100,30 +19900112,1200,129,100,20 +19900112,1200,129,100,10 +19900112,1200,129,100,9 +19900112,1200,129,100,7 +19900112,1200,129,100,5 +19900112,1200,129,100,3 +19900112,1200,129,100,2 +19900112,1200,129,100,1 +19900112,1200,129,210,40 +19900112,1200,157,100,1000 +19900112,1200,157,100,975 +19900112,1200,157,100,950 +19900112,1200,157,100,925 +19900112,1200,157,100,900 +19900112,1200,157,100,875 +19900112,1200,157,100,850 +19900112,1200,157,100,825 +19900112,1200,157,100,800 +19900112,1200,157,100,775 +19900112,1200,157,100,750 +19900112,1200,157,100,740 +19900112,1200,157,100,700 +19900112,1200,157,100,650 +19900112,1200,157,100,620 +19900112,1200,157,100,600 +19900112,1200,157,100,550 +19900112,1200,157,100,500 +19900112,1200,157,100,450 +19900112,1200,157,100,400 +19900112,1200,157,100,375 +19900112,1200,157,100,350 +19900112,1200,157,100,300 +19900112,1200,157,100,250 +19900112,1200,157,100,245 +19900112,1200,157,100,225 +19900112,1200,157,100,200 +19900112,1200,157,100,175 +19900112,1200,157,100,150 +19900112,1200,157,100,125 +19900112,1200,157,100,100 +19900112,1200,157,100,70 +19900112,1200,157,100,50 +19900112,1200,157,100,30 +19900112,1200,157,100,20 +19900112,1200,157,100,10 +19900112,1200,157,100,9 +19900112,1200,157,100,7 +19900112,1200,157,100,5 +19900112,1200,157,100,3 +19900112,1200,157,100,2 +19900112,1200,157,100,1 +19900112,1200,157,210,40 +19900112,1200,135,100,1000 +19900112,1200,135,100,975 +19900112,1200,135,100,950 +19900112,1200,135,100,925 +19900112,1200,135,100,900 +19900112,1200,135,100,875 +19900112,1200,135,100,850 +19900112,1200,135,100,825 +19900112,1200,135,100,800 +19900112,1200,135,100,775 +19900112,1200,135,100,750 +19900112,1200,135,100,740 +19900112,1200,135,100,700 +19900112,1200,135,100,650 +19900112,1200,135,100,620 +19900112,1200,135,100,600 +19900112,1200,135,100,550 +19900112,1200,135,100,500 +19900112,1200,135,100,450 +19900112,1200,135,100,400 +19900112,1200,135,100,375 +19900112,1200,135,100,350 +19900112,1200,135,100,300 +19900112,1200,135,100,250 +19900112,1200,135,100,245 +19900112,1200,135,100,225 +19900112,1200,135,100,200 +19900112,1200,135,100,175 +19900112,1200,135,100,150 +19900112,1200,135,100,125 +19900112,1200,135,100,100 +19900112,1200,135,100,70 +19900112,1200,135,100,50 +19900112,1200,135,100,30 +19900112,1200,135,100,20 +19900112,1200,135,100,10 +19900112,1200,135,100,9 +19900112,1200,135,100,7 +19900112,1200,135,100,5 +19900112,1200,135,100,3 +19900112,1200,135,100,2 +19900112,1200,135,100,1 +19900112,1200,135,210,40 +19900112,1200,138,100,1000 +19900112,1200,138,100,975 +19900112,1200,138,100,950 +19900112,1200,138,100,925 +19900112,1200,138,100,900 +19900112,1200,138,100,875 +19900112,1200,138,100,850 +19900112,1200,138,100,825 +19900112,1200,138,100,800 +19900112,1200,138,100,775 +19900112,1200,138,100,750 +19900112,1200,138,100,740 +19900112,1200,138,100,700 +19900112,1200,138,100,650 +19900112,1200,138,100,620 +19900112,1200,138,100,600 +19900112,1200,138,100,550 +19900112,1200,138,100,500 +19900112,1200,138,100,450 +19900112,1200,138,100,400 +19900112,1200,138,100,375 +19900112,1200,138,100,350 +19900112,1200,138,100,300 +19900112,1200,138,100,250 +19900112,1200,138,100,245 +19900112,1200,138,100,225 +19900112,1200,138,100,200 +19900112,1200,138,100,175 +19900112,1200,138,100,150 +19900112,1200,138,100,125 +19900112,1200,138,100,100 +19900112,1200,138,100,70 +19900112,1200,138,100,50 +19900112,1200,138,100,30 +19900112,1200,138,100,20 +19900112,1200,138,100,10 +19900112,1200,138,100,9 +19900112,1200,138,100,7 +19900112,1200,138,100,5 +19900112,1200,138,100,3 +19900112,1200,138,100,2 +19900112,1200,138,100,1 +19900112,1200,138,210,40 +19900112,1200,131,109,1 +19900112,1200,131,109,2 +19900112,1200,131,109,3 +19900112,1200,131,109,4 +19900112,1200,131,109,5 +19900112,1200,131,109,6 +19900112,1200,131,109,7 +19900112,1200,131,109,8 +19900112,1200,131,109,9 +19900112,1200,131,109,10 +19900112,1200,132,109,1 +19900112,1200,132,109,2 +19900112,1200,132,109,3 +19900112,1200,132,109,4 +19900112,1200,132,109,5 +19900112,1200,132,109,6 +19900112,1200,132,109,7 +19900112,1200,132,109,8 +19900112,1200,132,109,9 +19900112,1200,132,109,10 +19900112,1200,130,109,1 +19900112,1200,130,109,2 +19900112,1200,130,109,3 +19900112,1200,130,109,4 +19900112,1200,130,109,5 +19900112,1200,130,109,6 +19900112,1200,130,109,7 +19900112,1200,130,109,8 +19900112,1200,130,109,9 +19900112,1200,130,109,10 +19900112,1200,157,109,1 +19900112,1200,157,109,2 +19900112,1200,157,109,3 +19900112,1200,157,109,4 +19900112,1200,157,109,5 +19900112,1200,157,109,6 +19900112,1200,157,109,7 +19900112,1200,157,109,8 +19900112,1200,157,109,9 +19900112,1200,157,109,10 +19900112,1200,54,109,1 +19900112,1200,54,109,2 +19900112,1200,54,109,3 +19900112,1200,54,109,4 +19900112,1200,54,109,5 +19900112,1200,54,109,6 +19900112,1200,54,109,7 +19900112,1200,54,109,8 +19900112,1200,54,109,9 +19900112,1200,54,109,10 +19900112,1200,135,109,1 +19900112,1200,135,109,2 +19900112,1200,135,109,3 +19900112,1200,135,109,4 +19900112,1200,135,109,5 +19900112,1200,135,109,6 +19900112,1200,135,109,7 +19900112,1200,135,109,8 +19900112,1200,135,109,9 +19900112,1200,135,109,10 +19900112,1200,134,109,1 +19900112,1200,152,109,1 +19900112,1200,131,100,850 +19900112,1200,132,100,850 +19900112,1200,134,100,1000 +19900112,1200,152,100,1000 +19900112,1500,131,100,850 +19900112,1500,132,100,850 +19900112,1500,134,100,1000 +19900112,1500,152,100,1000 +19900112,1800,131,100,1000 +19900112,1800,131,100,975 +19900112,1800,131,100,950 +19900112,1800,131,100,925 +19900112,1800,131,100,900 +19900112,1800,131,100,875 +19900112,1800,131,100,825 +19900112,1800,131,100,800 +19900112,1800,131,100,775 +19900112,1800,131,100,750 +19900112,1800,131,100,740 +19900112,1800,131,100,700 +19900112,1800,131,100,650 +19900112,1800,131,100,620 +19900112,1800,131,100,600 +19900112,1800,131,100,550 +19900112,1800,131,100,500 +19900112,1800,131,100,450 +19900112,1800,131,100,400 +19900112,1800,131,100,375 +19900112,1800,131,100,350 +19900112,1800,131,100,300 +19900112,1800,131,100,250 +19900112,1800,131,100,245 +19900112,1800,131,100,225 +19900112,1800,131,100,200 +19900112,1800,131,100,175 +19900112,1800,131,100,150 +19900112,1800,131,100,125 +19900112,1800,131,100,100 +19900112,1800,131,100,70 +19900112,1800,131,100,50 +19900112,1800,131,100,30 +19900112,1800,131,100,20 +19900112,1800,131,100,10 +19900112,1800,131,100,9 +19900112,1800,131,100,7 +19900112,1800,131,100,5 +19900112,1800,131,100,3 +19900112,1800,131,100,2 +19900112,1800,131,100,1 +19900112,1800,131,210,40 +19900112,1800,132,100,1000 +19900112,1800,132,100,975 +19900112,1800,132,100,950 +19900112,1800,132,100,925 +19900112,1800,132,100,900 +19900112,1800,132,100,875 +19900112,1800,132,100,825 +19900112,1800,132,100,800 +19900112,1800,132,100,775 +19900112,1800,132,100,750 +19900112,1800,132,100,740 +19900112,1800,132,100,700 +19900112,1800,132,100,650 +19900112,1800,132,100,620 +19900112,1800,132,100,600 +19900112,1800,132,100,550 +19900112,1800,132,100,500 +19900112,1800,132,100,450 +19900112,1800,132,100,400 +19900112,1800,132,100,375 +19900112,1800,132,100,350 +19900112,1800,132,100,300 +19900112,1800,132,100,250 +19900112,1800,132,100,245 +19900112,1800,132,100,225 +19900112,1800,132,100,200 +19900112,1800,132,100,175 +19900112,1800,132,100,150 +19900112,1800,132,100,125 +19900112,1800,132,100,100 +19900112,1800,132,100,70 +19900112,1800,132,100,50 +19900112,1800,132,100,30 +19900112,1800,132,100,20 +19900112,1800,132,100,10 +19900112,1800,132,100,9 +19900112,1800,132,100,7 +19900112,1800,132,100,5 +19900112,1800,132,100,3 +19900112,1800,132,100,2 +19900112,1800,132,100,1 +19900112,1800,132,210,40 +19900112,1800,130,100,1000 +19900112,1800,130,100,975 +19900112,1800,130,100,950 +19900112,1800,130,100,925 +19900112,1800,130,100,900 +19900112,1800,130,100,875 +19900112,1800,130,100,850 +19900112,1800,130,100,825 +19900112,1800,130,100,800 +19900112,1800,130,100,775 +19900112,1800,130,100,750 +19900112,1800,130,100,740 +19900112,1800,130,100,700 +19900112,1800,130,100,650 +19900112,1800,130,100,620 +19900112,1800,130,100,600 +19900112,1800,130,100,550 +19900112,1800,130,100,500 +19900112,1800,130,100,450 +19900112,1800,130,100,400 +19900112,1800,130,100,375 +19900112,1800,130,100,350 +19900112,1800,130,100,300 +19900112,1800,130,100,250 +19900112,1800,130,100,245 +19900112,1800,130,100,225 +19900112,1800,130,100,200 +19900112,1800,130,100,175 +19900112,1800,130,100,150 +19900112,1800,130,100,125 +19900112,1800,130,100,100 +19900112,1800,130,100,70 +19900112,1800,130,100,50 +19900112,1800,130,100,30 +19900112,1800,130,100,20 +19900112,1800,130,100,10 +19900112,1800,130,100,9 +19900112,1800,130,100,7 +19900112,1800,130,100,5 +19900112,1800,130,100,3 +19900112,1800,130,100,2 +19900112,1800,130,100,1 +19900112,1800,130,210,40 +19900112,1800,129,100,1000 +19900112,1800,129,100,975 +19900112,1800,129,100,950 +19900112,1800,129,100,925 +19900112,1800,129,100,900 +19900112,1800,129,100,875 +19900112,1800,129,100,850 +19900112,1800,129,100,825 +19900112,1800,129,100,800 +19900112,1800,129,100,775 +19900112,1800,129,100,750 +19900112,1800,129,100,740 +19900112,1800,129,100,700 +19900112,1800,129,100,650 +19900112,1800,129,100,620 +19900112,1800,129,100,600 +19900112,1800,129,100,550 +19900112,1800,129,100,500 +19900112,1800,129,100,450 +19900112,1800,129,100,400 +19900112,1800,129,100,375 +19900112,1800,129,100,350 +19900112,1800,129,100,300 +19900112,1800,129,100,250 +19900112,1800,129,100,245 +19900112,1800,129,100,225 +19900112,1800,129,100,200 +19900112,1800,129,100,175 +19900112,1800,129,100,150 +19900112,1800,129,100,125 +19900112,1800,129,100,100 +19900112,1800,129,100,70 +19900112,1800,129,100,50 +19900112,1800,129,100,30 +19900112,1800,129,100,20 +19900112,1800,129,100,10 +19900112,1800,129,100,9 +19900112,1800,129,100,7 +19900112,1800,129,100,5 +19900112,1800,129,100,3 +19900112,1800,129,100,2 +19900112,1800,129,100,1 +19900112,1800,129,210,40 +19900112,1800,157,100,1000 +19900112,1800,157,100,975 +19900112,1800,157,100,950 +19900112,1800,157,100,925 +19900112,1800,157,100,900 +19900112,1800,157,100,875 +19900112,1800,157,100,850 +19900112,1800,157,100,825 +19900112,1800,157,100,800 +19900112,1800,157,100,775 +19900112,1800,157,100,750 +19900112,1800,157,100,740 +19900112,1800,157,100,700 +19900112,1800,157,100,650 +19900112,1800,157,100,620 +19900112,1800,157,100,600 +19900112,1800,157,100,550 +19900112,1800,157,100,500 +19900112,1800,157,100,450 +19900112,1800,157,100,400 +19900112,1800,157,100,375 +19900112,1800,157,100,350 +19900112,1800,157,100,300 +19900112,1800,157,100,250 +19900112,1800,157,100,245 +19900112,1800,157,100,225 +19900112,1800,157,100,200 +19900112,1800,157,100,175 +19900112,1800,157,100,150 +19900112,1800,157,100,125 +19900112,1800,157,100,100 +19900112,1800,157,100,70 +19900112,1800,157,100,50 +19900112,1800,157,100,30 +19900112,1800,157,100,20 +19900112,1800,157,100,10 +19900112,1800,157,100,9 +19900112,1800,157,100,7 +19900112,1800,157,100,5 +19900112,1800,157,100,3 +19900112,1800,157,100,2 +19900112,1800,157,100,1 +19900112,1800,157,210,40 +19900112,1800,135,100,1000 +19900112,1800,135,100,975 +19900112,1800,135,100,950 +19900112,1800,135,100,925 +19900112,1800,135,100,900 +19900112,1800,135,100,875 +19900112,1800,135,100,850 +19900112,1800,135,100,825 +19900112,1800,135,100,800 +19900112,1800,135,100,775 +19900112,1800,135,100,750 +19900112,1800,135,100,740 +19900112,1800,135,100,700 +19900112,1800,135,100,650 +19900112,1800,135,100,620 +19900112,1800,135,100,600 +19900112,1800,135,100,550 +19900112,1800,135,100,500 +19900112,1800,135,100,450 +19900112,1800,135,100,400 +19900112,1800,135,100,375 +19900112,1800,135,100,350 +19900112,1800,135,100,300 +19900112,1800,135,100,250 +19900112,1800,135,100,245 +19900112,1800,135,100,225 +19900112,1800,135,100,200 +19900112,1800,135,100,175 +19900112,1800,135,100,150 +19900112,1800,135,100,125 +19900112,1800,135,100,100 +19900112,1800,135,100,70 +19900112,1800,135,100,50 +19900112,1800,135,100,30 +19900112,1800,135,100,20 +19900112,1800,135,100,10 +19900112,1800,135,100,9 +19900112,1800,135,100,7 +19900112,1800,135,100,5 +19900112,1800,135,100,3 +19900112,1800,135,100,2 +19900112,1800,135,100,1 +19900112,1800,135,210,40 +19900112,1800,138,100,1000 +19900112,1800,138,100,975 +19900112,1800,138,100,950 +19900112,1800,138,100,925 +19900112,1800,138,100,900 +19900112,1800,138,100,875 +19900112,1800,138,100,850 +19900112,1800,138,100,825 +19900112,1800,138,100,800 +19900112,1800,138,100,775 +19900112,1800,138,100,750 +19900112,1800,138,100,740 +19900112,1800,138,100,700 +19900112,1800,138,100,650 +19900112,1800,138,100,620 +19900112,1800,138,100,600 +19900112,1800,138,100,550 +19900112,1800,138,100,500 +19900112,1800,138,100,450 +19900112,1800,138,100,400 +19900112,1800,138,100,375 +19900112,1800,138,100,350 +19900112,1800,138,100,300 +19900112,1800,138,100,250 +19900112,1800,138,100,245 +19900112,1800,138,100,225 +19900112,1800,138,100,200 +19900112,1800,138,100,175 +19900112,1800,138,100,150 +19900112,1800,138,100,125 +19900112,1800,138,100,100 +19900112,1800,138,100,70 +19900112,1800,138,100,50 +19900112,1800,138,100,30 +19900112,1800,138,100,20 +19900112,1800,138,100,10 +19900112,1800,138,100,9 +19900112,1800,138,100,7 +19900112,1800,138,100,5 +19900112,1800,138,100,3 +19900112,1800,138,100,2 +19900112,1800,138,100,1 +19900112,1800,138,210,40 +19900112,1800,131,109,1 +19900112,1800,131,109,2 +19900112,1800,131,109,3 +19900112,1800,131,109,4 +19900112,1800,131,109,5 +19900112,1800,131,109,6 +19900112,1800,131,109,7 +19900112,1800,131,109,8 +19900112,1800,131,109,9 +19900112,1800,131,109,10 +19900112,1800,132,109,1 +19900112,1800,132,109,2 +19900112,1800,132,109,3 +19900112,1800,132,109,4 +19900112,1800,132,109,5 +19900112,1800,132,109,6 +19900112,1800,132,109,7 +19900112,1800,132,109,8 +19900112,1800,132,109,9 +19900112,1800,132,109,10 +19900112,1800,130,109,1 +19900112,1800,130,109,2 +19900112,1800,130,109,3 +19900112,1800,130,109,4 +19900112,1800,130,109,5 +19900112,1800,130,109,6 +19900112,1800,130,109,7 +19900112,1800,130,109,8 +19900112,1800,130,109,9 +19900112,1800,130,109,10 +19900112,1800,157,109,1 +19900112,1800,157,109,2 +19900112,1800,157,109,3 +19900112,1800,157,109,4 +19900112,1800,157,109,5 +19900112,1800,157,109,6 +19900112,1800,157,109,7 +19900112,1800,157,109,8 +19900112,1800,157,109,9 +19900112,1800,157,109,10 +19900112,1800,54,109,1 +19900112,1800,54,109,2 +19900112,1800,54,109,3 +19900112,1800,54,109,4 +19900112,1800,54,109,5 +19900112,1800,54,109,6 +19900112,1800,54,109,7 +19900112,1800,54,109,8 +19900112,1800,54,109,9 +19900112,1800,54,109,10 +19900112,1800,135,109,1 +19900112,1800,135,109,2 +19900112,1800,135,109,3 +19900112,1800,135,109,4 +19900112,1800,135,109,5 +19900112,1800,135,109,6 +19900112,1800,135,109,7 +19900112,1800,135,109,8 +19900112,1800,135,109,9 +19900112,1800,135,109,10 +19900112,1800,134,109,1 +19900112,1800,152,109,1 +19900112,1800,131,100,850 +19900112,1800,132,100,850 +19900112,1800,134,100,1000 +19900112,1800,152,100,1000 +19900112,2100,131,100,850 +19900112,2100,132,100,850 +19900112,2100,134,100,1000 +19900112,2100,152,100,1000 +19900113,0,131,100,1000 +19900113,0,131,100,975 +19900113,0,131,100,950 +19900113,0,131,100,925 +19900113,0,131,100,900 +19900113,0,131,100,875 +19900113,0,131,100,825 +19900113,0,131,100,800 +19900113,0,131,100,775 +19900113,0,131,100,750 +19900113,0,131,100,740 +19900113,0,131,100,700 +19900113,0,131,100,650 +19900113,0,131,100,620 +19900113,0,131,100,600 +19900113,0,131,100,550 +19900113,0,131,100,500 +19900113,0,131,100,450 +19900113,0,131,100,400 +19900113,0,131,100,375 +19900113,0,131,100,350 +19900113,0,131,100,300 +19900113,0,131,100,250 +19900113,0,131,100,245 +19900113,0,131,100,225 +19900113,0,131,100,200 +19900113,0,131,100,175 +19900113,0,131,100,150 +19900113,0,131,100,125 +19900113,0,131,100,100 +19900113,0,131,100,70 +19900113,0,131,100,50 +19900113,0,131,100,30 +19900113,0,131,100,20 +19900113,0,131,100,10 +19900113,0,131,100,9 +19900113,0,131,100,7 +19900113,0,131,100,5 +19900113,0,131,100,3 +19900113,0,131,100,2 +19900113,0,131,100,1 +19900113,0,131,210,40 +19900113,0,132,100,1000 +19900113,0,132,100,975 +19900113,0,132,100,950 +19900113,0,132,100,925 +19900113,0,132,100,900 +19900113,0,132,100,875 +19900113,0,132,100,825 +19900113,0,132,100,800 +19900113,0,132,100,775 +19900113,0,132,100,750 +19900113,0,132,100,740 +19900113,0,132,100,700 +19900113,0,132,100,650 +19900113,0,132,100,620 +19900113,0,132,100,600 +19900113,0,132,100,550 +19900113,0,132,100,500 +19900113,0,132,100,450 +19900113,0,132,100,400 +19900113,0,132,100,375 +19900113,0,132,100,350 +19900113,0,132,100,300 +19900113,0,132,100,250 +19900113,0,132,100,245 +19900113,0,132,100,225 +19900113,0,132,100,200 +19900113,0,132,100,175 +19900113,0,132,100,150 +19900113,0,132,100,125 +19900113,0,132,100,100 +19900113,0,132,100,70 +19900113,0,132,100,50 +19900113,0,132,100,30 +19900113,0,132,100,20 +19900113,0,132,100,10 +19900113,0,132,100,9 +19900113,0,132,100,7 +19900113,0,132,100,5 +19900113,0,132,100,3 +19900113,0,132,100,2 +19900113,0,132,100,1 +19900113,0,132,210,40 +19900113,0,130,100,1000 +19900113,0,130,100,975 +19900113,0,130,100,950 +19900113,0,130,100,925 +19900113,0,130,100,900 +19900113,0,130,100,875 +19900113,0,130,100,850 +19900113,0,130,100,825 +19900113,0,130,100,800 +19900113,0,130,100,775 +19900113,0,130,100,750 +19900113,0,130,100,740 +19900113,0,130,100,700 +19900113,0,130,100,650 +19900113,0,130,100,620 +19900113,0,130,100,600 +19900113,0,130,100,550 +19900113,0,130,100,500 +19900113,0,130,100,450 +19900113,0,130,100,400 +19900113,0,130,100,375 +19900113,0,130,100,350 +19900113,0,130,100,300 +19900113,0,130,100,250 +19900113,0,130,100,245 +19900113,0,130,100,225 +19900113,0,130,100,200 +19900113,0,130,100,175 +19900113,0,130,100,150 +19900113,0,130,100,125 +19900113,0,130,100,100 +19900113,0,130,100,70 +19900113,0,130,100,50 +19900113,0,130,100,30 +19900113,0,130,100,20 +19900113,0,130,100,10 +19900113,0,130,100,9 +19900113,0,130,100,7 +19900113,0,130,100,5 +19900113,0,130,100,3 +19900113,0,130,100,2 +19900113,0,130,100,1 +19900113,0,130,210,40 +19900113,0,129,100,1000 +19900113,0,129,100,975 +19900113,0,129,100,950 +19900113,0,129,100,925 +19900113,0,129,100,900 +19900113,0,129,100,875 +19900113,0,129,100,850 +19900113,0,129,100,825 +19900113,0,129,100,800 +19900113,0,129,100,775 +19900113,0,129,100,750 +19900113,0,129,100,740 +19900113,0,129,100,700 +19900113,0,129,100,650 +19900113,0,129,100,620 +19900113,0,129,100,600 +19900113,0,129,100,550 +19900113,0,129,100,500 +19900113,0,129,100,450 +19900113,0,129,100,400 +19900113,0,129,100,375 +19900113,0,129,100,350 +19900113,0,129,100,300 +19900113,0,129,100,250 +19900113,0,129,100,245 +19900113,0,129,100,225 +19900113,0,129,100,200 +19900113,0,129,100,175 +19900113,0,129,100,150 +19900113,0,129,100,125 +19900113,0,129,100,100 +19900113,0,129,100,70 +19900113,0,129,100,50 +19900113,0,129,100,30 +19900113,0,129,100,20 +19900113,0,129,100,10 +19900113,0,129,100,9 +19900113,0,129,100,7 +19900113,0,129,100,5 +19900113,0,129,100,3 +19900113,0,129,100,2 +19900113,0,129,100,1 +19900113,0,129,210,40 +19900113,0,157,100,1000 +19900113,0,157,100,975 +19900113,0,157,100,950 +19900113,0,157,100,925 +19900113,0,157,100,900 +19900113,0,157,100,875 +19900113,0,157,100,850 +19900113,0,157,100,825 +19900113,0,157,100,800 +19900113,0,157,100,775 +19900113,0,157,100,750 +19900113,0,157,100,740 +19900113,0,157,100,700 +19900113,0,157,100,650 +19900113,0,157,100,620 +19900113,0,157,100,600 +19900113,0,157,100,550 +19900113,0,157,100,500 +19900113,0,157,100,450 +19900113,0,157,100,400 +19900113,0,157,100,375 +19900113,0,157,100,350 +19900113,0,157,100,300 +19900113,0,157,100,250 +19900113,0,157,100,245 +19900113,0,157,100,225 +19900113,0,157,100,200 +19900113,0,157,100,175 +19900113,0,157,100,150 +19900113,0,157,100,125 +19900113,0,157,100,100 +19900113,0,157,100,70 +19900113,0,157,100,50 +19900113,0,157,100,30 +19900113,0,157,100,20 +19900113,0,157,100,10 +19900113,0,157,100,9 +19900113,0,157,100,7 +19900113,0,157,100,5 +19900113,0,157,100,3 +19900113,0,157,100,2 +19900113,0,157,100,1 +19900113,0,157,210,40 +19900113,0,135,100,1000 +19900113,0,135,100,975 +19900113,0,135,100,950 +19900113,0,135,100,925 +19900113,0,135,100,900 +19900113,0,135,100,875 +19900113,0,135,100,850 +19900113,0,135,100,825 +19900113,0,135,100,800 +19900113,0,135,100,775 +19900113,0,135,100,750 +19900113,0,135,100,740 +19900113,0,135,100,700 +19900113,0,135,100,650 +19900113,0,135,100,620 +19900113,0,135,100,600 +19900113,0,135,100,550 +19900113,0,135,100,500 +19900113,0,135,100,450 +19900113,0,135,100,400 +19900113,0,135,100,375 +19900113,0,135,100,350 +19900113,0,135,100,300 +19900113,0,135,100,250 +19900113,0,135,100,245 +19900113,0,135,100,225 +19900113,0,135,100,200 +19900113,0,135,100,175 +19900113,0,135,100,150 +19900113,0,135,100,125 +19900113,0,135,100,100 +19900113,0,135,100,70 +19900113,0,135,100,50 +19900113,0,135,100,30 +19900113,0,135,100,20 +19900113,0,135,100,10 +19900113,0,135,100,9 +19900113,0,135,100,7 +19900113,0,135,100,5 +19900113,0,135,100,3 +19900113,0,135,100,2 +19900113,0,135,100,1 +19900113,0,135,210,40 +19900113,0,138,100,1000 +19900113,0,138,100,975 +19900113,0,138,100,950 +19900113,0,138,100,925 +19900113,0,138,100,900 +19900113,0,138,100,875 +19900113,0,138,100,850 +19900113,0,138,100,825 +19900113,0,138,100,800 +19900113,0,138,100,775 +19900113,0,138,100,750 +19900113,0,138,100,740 +19900113,0,138,100,700 +19900113,0,138,100,650 +19900113,0,138,100,620 +19900113,0,138,100,600 +19900113,0,138,100,550 +19900113,0,138,100,500 +19900113,0,138,100,450 +19900113,0,138,100,400 +19900113,0,138,100,375 +19900113,0,138,100,350 +19900113,0,138,100,300 +19900113,0,138,100,250 +19900113,0,138,100,245 +19900113,0,138,100,225 +19900113,0,138,100,200 +19900113,0,138,100,175 +19900113,0,138,100,150 +19900113,0,138,100,125 +19900113,0,138,100,100 +19900113,0,138,100,70 +19900113,0,138,100,50 +19900113,0,138,100,30 +19900113,0,138,100,20 +19900113,0,138,100,10 +19900113,0,138,100,9 +19900113,0,138,100,7 +19900113,0,138,100,5 +19900113,0,138,100,3 +19900113,0,138,100,2 +19900113,0,138,100,1 +19900113,0,138,210,40 +19900113,0,131,109,1 +19900113,0,131,109,2 +19900113,0,131,109,3 +19900113,0,131,109,4 +19900113,0,131,109,5 +19900113,0,131,109,6 +19900113,0,131,109,7 +19900113,0,131,109,8 +19900113,0,131,109,9 +19900113,0,131,109,10 +19900113,0,132,109,1 +19900113,0,132,109,2 +19900113,0,132,109,3 +19900113,0,132,109,4 +19900113,0,132,109,5 +19900113,0,132,109,6 +19900113,0,132,109,7 +19900113,0,132,109,8 +19900113,0,132,109,9 +19900113,0,132,109,10 +19900113,0,130,109,1 +19900113,0,130,109,2 +19900113,0,130,109,3 +19900113,0,130,109,4 +19900113,0,130,109,5 +19900113,0,130,109,6 +19900113,0,130,109,7 +19900113,0,130,109,8 +19900113,0,130,109,9 +19900113,0,130,109,10 +19900113,0,157,109,1 +19900113,0,157,109,2 +19900113,0,157,109,3 +19900113,0,157,109,4 +19900113,0,157,109,5 +19900113,0,157,109,6 +19900113,0,157,109,7 +19900113,0,157,109,8 +19900113,0,157,109,9 +19900113,0,157,109,10 +19900113,0,54,109,1 +19900113,0,54,109,2 +19900113,0,54,109,3 +19900113,0,54,109,4 +19900113,0,54,109,5 +19900113,0,54,109,6 +19900113,0,54,109,7 +19900113,0,54,109,8 +19900113,0,54,109,9 +19900113,0,54,109,10 +19900113,0,135,109,1 +19900113,0,135,109,2 +19900113,0,135,109,3 +19900113,0,135,109,4 +19900113,0,135,109,5 +19900113,0,135,109,6 +19900113,0,135,109,7 +19900113,0,135,109,8 +19900113,0,135,109,9 +19900113,0,135,109,10 +19900113,0,134,109,1 +19900113,0,152,109,1 +19900113,0,131,100,850 +19900113,0,132,100,850 +19900113,0,134,100,1000 +19900113,0,152,100,1000 +19900113,300,131,100,850 +19900113,300,132,100,850 +19900113,300,134,100,1000 +19900113,300,152,100,1000 +19900113,600,131,100,1000 +19900113,600,131,100,975 +19900113,600,131,100,950 +19900113,600,131,100,925 +19900113,600,131,100,900 +19900113,600,131,100,875 +19900113,600,131,100,825 +19900113,600,131,100,800 +19900113,600,131,100,775 +19900113,600,131,100,750 +19900113,600,131,100,740 +19900113,600,131,100,700 +19900113,600,131,100,650 +19900113,600,131,100,620 +19900113,600,131,100,600 +19900113,600,131,100,550 +19900113,600,131,100,500 +19900113,600,131,100,450 +19900113,600,131,100,400 +19900113,600,131,100,375 +19900113,600,131,100,350 +19900113,600,131,100,300 +19900113,600,131,100,250 +19900113,600,131,100,245 +19900113,600,131,100,225 +19900113,600,131,100,200 +19900113,600,131,100,175 +19900113,600,131,100,150 +19900113,600,131,100,125 +19900113,600,131,100,100 +19900113,600,131,100,70 +19900113,600,131,100,50 +19900113,600,131,100,30 +19900113,600,131,100,20 +19900113,600,131,100,10 +19900113,600,131,100,9 +19900113,600,131,100,7 +19900113,600,131,100,5 +19900113,600,131,100,3 +19900113,600,131,100,2 +19900113,600,131,100,1 +19900113,600,131,210,40 +19900113,600,132,100,1000 +19900113,600,132,100,975 +19900113,600,132,100,950 +19900113,600,132,100,925 +19900113,600,132,100,900 +19900113,600,132,100,875 +19900113,600,132,100,825 +19900113,600,132,100,800 +19900113,600,132,100,775 +19900113,600,132,100,750 +19900113,600,132,100,740 +19900113,600,132,100,700 +19900113,600,132,100,650 +19900113,600,132,100,620 +19900113,600,132,100,600 +19900113,600,132,100,550 +19900113,600,132,100,500 +19900113,600,132,100,450 +19900113,600,132,100,400 +19900113,600,132,100,375 +19900113,600,132,100,350 +19900113,600,132,100,300 +19900113,600,132,100,250 +19900113,600,132,100,245 +19900113,600,132,100,225 +19900113,600,132,100,200 +19900113,600,132,100,175 +19900113,600,132,100,150 +19900113,600,132,100,125 +19900113,600,132,100,100 +19900113,600,132,100,70 +19900113,600,132,100,50 +19900113,600,132,100,30 +19900113,600,132,100,20 +19900113,600,132,100,10 +19900113,600,132,100,9 +19900113,600,132,100,7 +19900113,600,132,100,5 +19900113,600,132,100,3 +19900113,600,132,100,2 +19900113,600,132,100,1 +19900113,600,132,210,40 +19900113,600,130,100,1000 +19900113,600,130,100,975 +19900113,600,130,100,950 +19900113,600,130,100,925 +19900113,600,130,100,900 +19900113,600,130,100,875 +19900113,600,130,100,850 +19900113,600,130,100,825 +19900113,600,130,100,800 +19900113,600,130,100,775 +19900113,600,130,100,750 +19900113,600,130,100,740 +19900113,600,130,100,700 +19900113,600,130,100,650 +19900113,600,130,100,620 +19900113,600,130,100,600 +19900113,600,130,100,550 +19900113,600,130,100,500 +19900113,600,130,100,450 +19900113,600,130,100,400 +19900113,600,130,100,375 +19900113,600,130,100,350 +19900113,600,130,100,300 +19900113,600,130,100,250 +19900113,600,130,100,245 +19900113,600,130,100,225 +19900113,600,130,100,200 +19900113,600,130,100,175 +19900113,600,130,100,150 +19900113,600,130,100,125 +19900113,600,130,100,100 +19900113,600,130,100,70 +19900113,600,130,100,50 +19900113,600,130,100,30 +19900113,600,130,100,20 +19900113,600,130,100,10 +19900113,600,130,100,9 +19900113,600,130,100,7 +19900113,600,130,100,5 +19900113,600,130,100,3 +19900113,600,130,100,2 +19900113,600,130,100,1 +19900113,600,130,210,40 +19900113,600,129,100,1000 +19900113,600,129,100,975 +19900113,600,129,100,950 +19900113,600,129,100,925 +19900113,600,129,100,900 +19900113,600,129,100,875 +19900113,600,129,100,850 +19900113,600,129,100,825 +19900113,600,129,100,800 +19900113,600,129,100,775 +19900113,600,129,100,750 +19900113,600,129,100,740 +19900113,600,129,100,700 +19900113,600,129,100,650 +19900113,600,129,100,620 +19900113,600,129,100,600 +19900113,600,129,100,550 +19900113,600,129,100,500 +19900113,600,129,100,450 +19900113,600,129,100,400 +19900113,600,129,100,375 +19900113,600,129,100,350 +19900113,600,129,100,300 +19900113,600,129,100,250 +19900113,600,129,100,245 +19900113,600,129,100,225 +19900113,600,129,100,200 +19900113,600,129,100,175 +19900113,600,129,100,150 +19900113,600,129,100,125 +19900113,600,129,100,100 +19900113,600,129,100,70 +19900113,600,129,100,50 +19900113,600,129,100,30 +19900113,600,129,100,20 +19900113,600,129,100,10 +19900113,600,129,100,9 +19900113,600,129,100,7 +19900113,600,129,100,5 +19900113,600,129,100,3 +19900113,600,129,100,2 +19900113,600,129,100,1 +19900113,600,129,210,40 +19900113,600,157,100,1000 +19900113,600,157,100,975 +19900113,600,157,100,950 +19900113,600,157,100,925 +19900113,600,157,100,900 +19900113,600,157,100,875 +19900113,600,157,100,850 +19900113,600,157,100,825 +19900113,600,157,100,800 +19900113,600,157,100,775 +19900113,600,157,100,750 +19900113,600,157,100,740 +19900113,600,157,100,700 +19900113,600,157,100,650 +19900113,600,157,100,620 +19900113,600,157,100,600 +19900113,600,157,100,550 +19900113,600,157,100,500 +19900113,600,157,100,450 +19900113,600,157,100,400 +19900113,600,157,100,375 +19900113,600,157,100,350 +19900113,600,157,100,300 +19900113,600,157,100,250 +19900113,600,157,100,245 +19900113,600,157,100,225 +19900113,600,157,100,200 +19900113,600,157,100,175 +19900113,600,157,100,150 +19900113,600,157,100,125 +19900113,600,157,100,100 +19900113,600,157,100,70 +19900113,600,157,100,50 +19900113,600,157,100,30 +19900113,600,157,100,20 +19900113,600,157,100,10 +19900113,600,157,100,9 +19900113,600,157,100,7 +19900113,600,157,100,5 +19900113,600,157,100,3 +19900113,600,157,100,2 +19900113,600,157,100,1 +19900113,600,157,210,40 +19900113,600,135,100,1000 +19900113,600,135,100,975 +19900113,600,135,100,950 +19900113,600,135,100,925 +19900113,600,135,100,900 +19900113,600,135,100,875 +19900113,600,135,100,850 +19900113,600,135,100,825 +19900113,600,135,100,800 +19900113,600,135,100,775 +19900113,600,135,100,750 +19900113,600,135,100,740 +19900113,600,135,100,700 +19900113,600,135,100,650 +19900113,600,135,100,620 +19900113,600,135,100,600 +19900113,600,135,100,550 +19900113,600,135,100,500 +19900113,600,135,100,450 +19900113,600,135,100,400 +19900113,600,135,100,375 +19900113,600,135,100,350 +19900113,600,135,100,300 +19900113,600,135,100,250 +19900113,600,135,100,245 +19900113,600,135,100,225 +19900113,600,135,100,200 +19900113,600,135,100,175 +19900113,600,135,100,150 +19900113,600,135,100,125 +19900113,600,135,100,100 +19900113,600,135,100,70 +19900113,600,135,100,50 +19900113,600,135,100,30 +19900113,600,135,100,20 +19900113,600,135,100,10 +19900113,600,135,100,9 +19900113,600,135,100,7 +19900113,600,135,100,5 +19900113,600,135,100,3 +19900113,600,135,100,2 +19900113,600,135,100,1 +19900113,600,135,210,40 +19900113,600,138,100,1000 +19900113,600,138,100,975 +19900113,600,138,100,950 +19900113,600,138,100,925 +19900113,600,138,100,900 +19900113,600,138,100,875 +19900113,600,138,100,850 +19900113,600,138,100,825 +19900113,600,138,100,800 +19900113,600,138,100,775 +19900113,600,138,100,750 +19900113,600,138,100,740 +19900113,600,138,100,700 +19900113,600,138,100,650 +19900113,600,138,100,620 +19900113,600,138,100,600 +19900113,600,138,100,550 +19900113,600,138,100,500 +19900113,600,138,100,450 +19900113,600,138,100,400 +19900113,600,138,100,375 +19900113,600,138,100,350 +19900113,600,138,100,300 +19900113,600,138,100,250 +19900113,600,138,100,245 +19900113,600,138,100,225 +19900113,600,138,100,200 +19900113,600,138,100,175 +19900113,600,138,100,150 +19900113,600,138,100,125 +19900113,600,138,100,100 +19900113,600,138,100,70 +19900113,600,138,100,50 +19900113,600,138,100,30 +19900113,600,138,100,20 +19900113,600,138,100,10 +19900113,600,138,100,9 +19900113,600,138,100,7 +19900113,600,138,100,5 +19900113,600,138,100,3 +19900113,600,138,100,2 +19900113,600,138,100,1 +19900113,600,138,210,40 +19900113,600,131,109,1 +19900113,600,131,109,2 +19900113,600,131,109,3 +19900113,600,131,109,4 +19900113,600,131,109,5 +19900113,600,131,109,6 +19900113,600,131,109,7 +19900113,600,131,109,8 +19900113,600,131,109,9 +19900113,600,131,109,10 +19900113,600,132,109,1 +19900113,600,132,109,2 +19900113,600,132,109,3 +19900113,600,132,109,4 +19900113,600,132,109,5 +19900113,600,132,109,6 +19900113,600,132,109,7 +19900113,600,132,109,8 +19900113,600,132,109,9 +19900113,600,132,109,10 +19900113,600,130,109,1 +19900113,600,130,109,2 +19900113,600,130,109,3 +19900113,600,130,109,4 +19900113,600,130,109,5 +19900113,600,130,109,6 +19900113,600,130,109,7 +19900113,600,130,109,8 +19900113,600,130,109,9 +19900113,600,130,109,10 +19900113,600,157,109,1 +19900113,600,157,109,2 +19900113,600,157,109,3 +19900113,600,157,109,4 +19900113,600,157,109,5 +19900113,600,157,109,6 +19900113,600,157,109,7 +19900113,600,157,109,8 +19900113,600,157,109,9 +19900113,600,157,109,10 +19900113,600,54,109,1 +19900113,600,54,109,2 +19900113,600,54,109,3 +19900113,600,54,109,4 +19900113,600,54,109,5 +19900113,600,54,109,6 +19900113,600,54,109,7 +19900113,600,54,109,8 +19900113,600,54,109,9 +19900113,600,54,109,10 +19900113,600,135,109,1 +19900113,600,135,109,2 +19900113,600,135,109,3 +19900113,600,135,109,4 +19900113,600,135,109,5 +19900113,600,135,109,6 +19900113,600,135,109,7 +19900113,600,135,109,8 +19900113,600,135,109,9 +19900113,600,135,109,10 +19900113,600,134,109,1 +19900113,600,152,109,1 +19900113,600,131,100,850 +19900113,600,132,100,850 +19900113,600,134,100,1000 +19900113,600,152,100,1000 +19900113,900,131,100,850 +19900113,900,132,100,850 +19900113,900,134,100,1000 +19900113,900,152,100,1000 +19900113,1200,131,100,1000 +19900113,1200,131,100,975 +19900113,1200,131,100,950 +19900113,1200,131,100,925 +19900113,1200,131,100,900 +19900113,1200,131,100,875 +19900113,1200,131,100,825 +19900113,1200,131,100,800 +19900113,1200,131,100,775 +19900113,1200,131,100,750 +19900113,1200,131,100,740 +19900113,1200,131,100,700 +19900113,1200,131,100,650 +19900113,1200,131,100,620 +19900113,1200,131,100,600 +19900113,1200,131,100,550 +19900113,1200,131,100,500 +19900113,1200,131,100,450 +19900113,1200,131,100,400 +19900113,1200,131,100,375 +19900113,1200,131,100,350 +19900113,1200,131,100,300 +19900113,1200,131,100,250 +19900113,1200,131,100,245 +19900113,1200,131,100,225 +19900113,1200,131,100,200 +19900113,1200,131,100,175 +19900113,1200,131,100,150 +19900113,1200,131,100,125 +19900113,1200,131,100,100 +19900113,1200,131,100,70 +19900113,1200,131,100,50 +19900113,1200,131,100,30 +19900113,1200,131,100,20 +19900113,1200,131,100,10 +19900113,1200,131,100,9 +19900113,1200,131,100,7 +19900113,1200,131,100,5 +19900113,1200,131,100,3 +19900113,1200,131,100,2 +19900113,1200,131,100,1 +19900113,1200,131,210,40 +19900113,1200,132,100,1000 +19900113,1200,132,100,975 +19900113,1200,132,100,950 +19900113,1200,132,100,925 +19900113,1200,132,100,900 +19900113,1200,132,100,875 +19900113,1200,132,100,825 +19900113,1200,132,100,800 +19900113,1200,132,100,775 +19900113,1200,132,100,750 +19900113,1200,132,100,740 +19900113,1200,132,100,700 +19900113,1200,132,100,650 +19900113,1200,132,100,620 +19900113,1200,132,100,600 +19900113,1200,132,100,550 +19900113,1200,132,100,500 +19900113,1200,132,100,450 +19900113,1200,132,100,400 +19900113,1200,132,100,375 +19900113,1200,132,100,350 +19900113,1200,132,100,300 +19900113,1200,132,100,250 +19900113,1200,132,100,245 +19900113,1200,132,100,225 +19900113,1200,132,100,200 +19900113,1200,132,100,175 +19900113,1200,132,100,150 +19900113,1200,132,100,125 +19900113,1200,132,100,100 +19900113,1200,132,100,70 +19900113,1200,132,100,50 +19900113,1200,132,100,30 +19900113,1200,132,100,20 +19900113,1200,132,100,10 +19900113,1200,132,100,9 +19900113,1200,132,100,7 +19900113,1200,132,100,5 +19900113,1200,132,100,3 +19900113,1200,132,100,2 +19900113,1200,132,100,1 +19900113,1200,132,210,40 +19900113,1200,130,100,1000 +19900113,1200,130,100,975 +19900113,1200,130,100,950 +19900113,1200,130,100,925 +19900113,1200,130,100,900 +19900113,1200,130,100,875 +19900113,1200,130,100,850 +19900113,1200,130,100,825 +19900113,1200,130,100,800 +19900113,1200,130,100,775 +19900113,1200,130,100,750 +19900113,1200,130,100,740 +19900113,1200,130,100,700 +19900113,1200,130,100,650 +19900113,1200,130,100,620 +19900113,1200,130,100,600 +19900113,1200,130,100,550 +19900113,1200,130,100,500 +19900113,1200,130,100,450 +19900113,1200,130,100,400 +19900113,1200,130,100,375 +19900113,1200,130,100,350 +19900113,1200,130,100,300 +19900113,1200,130,100,250 +19900113,1200,130,100,245 +19900113,1200,130,100,225 +19900113,1200,130,100,200 +19900113,1200,130,100,175 +19900113,1200,130,100,150 +19900113,1200,130,100,125 +19900113,1200,130,100,100 +19900113,1200,130,100,70 +19900113,1200,130,100,50 +19900113,1200,130,100,30 +19900113,1200,130,100,20 +19900113,1200,130,100,10 +19900113,1200,130,100,9 +19900113,1200,130,100,7 +19900113,1200,130,100,5 +19900113,1200,130,100,3 +19900113,1200,130,100,2 +19900113,1200,130,100,1 +19900113,1200,130,210,40 +19900113,1200,129,100,1000 +19900113,1200,129,100,975 +19900113,1200,129,100,950 +19900113,1200,129,100,925 +19900113,1200,129,100,900 +19900113,1200,129,100,875 +19900113,1200,129,100,850 +19900113,1200,129,100,825 +19900113,1200,129,100,800 +19900113,1200,129,100,775 +19900113,1200,129,100,750 +19900113,1200,129,100,740 +19900113,1200,129,100,700 +19900113,1200,129,100,650 +19900113,1200,129,100,620 +19900113,1200,129,100,600 +19900113,1200,129,100,550 +19900113,1200,129,100,500 +19900113,1200,129,100,450 +19900113,1200,129,100,400 +19900113,1200,129,100,375 +19900113,1200,129,100,350 +19900113,1200,129,100,300 +19900113,1200,129,100,250 +19900113,1200,129,100,245 +19900113,1200,129,100,225 +19900113,1200,129,100,200 +19900113,1200,129,100,175 +19900113,1200,129,100,150 +19900113,1200,129,100,125 +19900113,1200,129,100,100 +19900113,1200,129,100,70 +19900113,1200,129,100,50 +19900113,1200,129,100,30 +19900113,1200,129,100,20 +19900113,1200,129,100,10 +19900113,1200,129,100,9 +19900113,1200,129,100,7 +19900113,1200,129,100,5 +19900113,1200,129,100,3 +19900113,1200,129,100,2 +19900113,1200,129,100,1 +19900113,1200,129,210,40 +19900113,1200,157,100,1000 +19900113,1200,157,100,975 +19900113,1200,157,100,950 +19900113,1200,157,100,925 +19900113,1200,157,100,900 +19900113,1200,157,100,875 +19900113,1200,157,100,850 +19900113,1200,157,100,825 +19900113,1200,157,100,800 +19900113,1200,157,100,775 +19900113,1200,157,100,750 +19900113,1200,157,100,740 +19900113,1200,157,100,700 +19900113,1200,157,100,650 +19900113,1200,157,100,620 +19900113,1200,157,100,600 +19900113,1200,157,100,550 +19900113,1200,157,100,500 +19900113,1200,157,100,450 +19900113,1200,157,100,400 +19900113,1200,157,100,375 +19900113,1200,157,100,350 +19900113,1200,157,100,300 +19900113,1200,157,100,250 +19900113,1200,157,100,245 +19900113,1200,157,100,225 +19900113,1200,157,100,200 +19900113,1200,157,100,175 +19900113,1200,157,100,150 +19900113,1200,157,100,125 +19900113,1200,157,100,100 +19900113,1200,157,100,70 +19900113,1200,157,100,50 +19900113,1200,157,100,30 +19900113,1200,157,100,20 +19900113,1200,157,100,10 +19900113,1200,157,100,9 +19900113,1200,157,100,7 +19900113,1200,157,100,5 +19900113,1200,157,100,3 +19900113,1200,157,100,2 +19900113,1200,157,100,1 +19900113,1200,157,210,40 +19900113,1200,135,100,1000 +19900113,1200,135,100,975 +19900113,1200,135,100,950 +19900113,1200,135,100,925 +19900113,1200,135,100,900 +19900113,1200,135,100,875 +19900113,1200,135,100,850 +19900113,1200,135,100,825 +19900113,1200,135,100,800 +19900113,1200,135,100,775 +19900113,1200,135,100,750 +19900113,1200,135,100,740 +19900113,1200,135,100,700 +19900113,1200,135,100,650 +19900113,1200,135,100,620 +19900113,1200,135,100,600 +19900113,1200,135,100,550 +19900113,1200,135,100,500 +19900113,1200,135,100,450 +19900113,1200,135,100,400 +19900113,1200,135,100,375 +19900113,1200,135,100,350 +19900113,1200,135,100,300 +19900113,1200,135,100,250 +19900113,1200,135,100,245 +19900113,1200,135,100,225 +19900113,1200,135,100,200 +19900113,1200,135,100,175 +19900113,1200,135,100,150 +19900113,1200,135,100,125 +19900113,1200,135,100,100 +19900113,1200,135,100,70 +19900113,1200,135,100,50 +19900113,1200,135,100,30 +19900113,1200,135,100,20 +19900113,1200,135,100,10 +19900113,1200,135,100,9 +19900113,1200,135,100,7 +19900113,1200,135,100,5 +19900113,1200,135,100,3 +19900113,1200,135,100,2 +19900113,1200,135,100,1 +19900113,1200,135,210,40 +19900113,1200,138,100,1000 +19900113,1200,138,100,975 +19900113,1200,138,100,950 +19900113,1200,138,100,925 +19900113,1200,138,100,900 +19900113,1200,138,100,875 +19900113,1200,138,100,850 +19900113,1200,138,100,825 +19900113,1200,138,100,800 +19900113,1200,138,100,775 +19900113,1200,138,100,750 +19900113,1200,138,100,740 +19900113,1200,138,100,700 +19900113,1200,138,100,650 +19900113,1200,138,100,620 +19900113,1200,138,100,600 +19900113,1200,138,100,550 +19900113,1200,138,100,500 +19900113,1200,138,100,450 +19900113,1200,138,100,400 +19900113,1200,138,100,375 +19900113,1200,138,100,350 +19900113,1200,138,100,300 +19900113,1200,138,100,250 +19900113,1200,138,100,245 +19900113,1200,138,100,225 +19900113,1200,138,100,200 +19900113,1200,138,100,175 +19900113,1200,138,100,150 +19900113,1200,138,100,125 +19900113,1200,138,100,100 +19900113,1200,138,100,70 +19900113,1200,138,100,50 +19900113,1200,138,100,30 +19900113,1200,138,100,20 +19900113,1200,138,100,10 +19900113,1200,138,100,9 +19900113,1200,138,100,7 +19900113,1200,138,100,5 +19900113,1200,138,100,3 +19900113,1200,138,100,2 +19900113,1200,138,100,1 +19900113,1200,138,210,40 +19900113,1200,131,109,1 +19900113,1200,131,109,2 +19900113,1200,131,109,3 +19900113,1200,131,109,4 +19900113,1200,131,109,5 +19900113,1200,131,109,6 +19900113,1200,131,109,7 +19900113,1200,131,109,8 +19900113,1200,131,109,9 +19900113,1200,131,109,10 +19900113,1200,132,109,1 +19900113,1200,132,109,2 +19900113,1200,132,109,3 +19900113,1200,132,109,4 +19900113,1200,132,109,5 +19900113,1200,132,109,6 +19900113,1200,132,109,7 +19900113,1200,132,109,8 +19900113,1200,132,109,9 +19900113,1200,132,109,10 +19900113,1200,130,109,1 +19900113,1200,130,109,2 +19900113,1200,130,109,3 +19900113,1200,130,109,4 +19900113,1200,130,109,5 +19900113,1200,130,109,6 +19900113,1200,130,109,7 +19900113,1200,130,109,8 +19900113,1200,130,109,9 +19900113,1200,130,109,10 +19900113,1200,157,109,1 +19900113,1200,157,109,2 +19900113,1200,157,109,3 +19900113,1200,157,109,4 +19900113,1200,157,109,5 +19900113,1200,157,109,6 +19900113,1200,157,109,7 +19900113,1200,157,109,8 +19900113,1200,157,109,9 +19900113,1200,157,109,10 +19900113,1200,54,109,1 +19900113,1200,54,109,2 +19900113,1200,54,109,3 +19900113,1200,54,109,4 +19900113,1200,54,109,5 +19900113,1200,54,109,6 +19900113,1200,54,109,7 +19900113,1200,54,109,8 +19900113,1200,54,109,9 +19900113,1200,54,109,10 +19900113,1200,135,109,1 +19900113,1200,135,109,2 +19900113,1200,135,109,3 +19900113,1200,135,109,4 +19900113,1200,135,109,5 +19900113,1200,135,109,6 +19900113,1200,135,109,7 +19900113,1200,135,109,8 +19900113,1200,135,109,9 +19900113,1200,135,109,10 +19900113,1200,134,109,1 +19900113,1200,152,109,1 +19900113,1200,131,100,850 +19900113,1200,132,100,850 +19900113,1200,134,100,1000 +19900113,1200,152,100,1000 +19900113,1500,131,100,850 +19900113,1500,132,100,850 +19900113,1500,134,100,1000 +19900113,1500,152,100,1000 +19900113,1800,131,100,1000 +19900113,1800,131,100,975 +19900113,1800,131,100,950 +19900113,1800,131,100,925 +19900113,1800,131,100,900 +19900113,1800,131,100,875 +19900113,1800,131,100,825 +19900113,1800,131,100,800 +19900113,1800,131,100,775 +19900113,1800,131,100,750 +19900113,1800,131,100,740 +19900113,1800,131,100,700 +19900113,1800,131,100,650 +19900113,1800,131,100,620 +19900113,1800,131,100,600 +19900113,1800,131,100,550 +19900113,1800,131,100,500 +19900113,1800,131,100,450 +19900113,1800,131,100,400 +19900113,1800,131,100,375 +19900113,1800,131,100,350 +19900113,1800,131,100,300 +19900113,1800,131,100,250 +19900113,1800,131,100,245 +19900113,1800,131,100,225 +19900113,1800,131,100,200 +19900113,1800,131,100,175 +19900113,1800,131,100,150 +19900113,1800,131,100,125 +19900113,1800,131,100,100 +19900113,1800,131,100,70 +19900113,1800,131,100,50 +19900113,1800,131,100,30 +19900113,1800,131,100,20 +19900113,1800,131,100,10 +19900113,1800,131,100,9 +19900113,1800,131,100,7 +19900113,1800,131,100,5 +19900113,1800,131,100,3 +19900113,1800,131,100,2 +19900113,1800,131,100,1 +19900113,1800,131,210,40 +19900113,1800,132,100,1000 +19900113,1800,132,100,975 +19900113,1800,132,100,950 +19900113,1800,132,100,925 +19900113,1800,132,100,900 +19900113,1800,132,100,875 +19900113,1800,132,100,825 +19900113,1800,132,100,800 +19900113,1800,132,100,775 +19900113,1800,132,100,750 +19900113,1800,132,100,740 +19900113,1800,132,100,700 +19900113,1800,132,100,650 +19900113,1800,132,100,620 +19900113,1800,132,100,600 +19900113,1800,132,100,550 +19900113,1800,132,100,500 +19900113,1800,132,100,450 +19900113,1800,132,100,400 +19900113,1800,132,100,375 +19900113,1800,132,100,350 +19900113,1800,132,100,300 +19900113,1800,132,100,250 +19900113,1800,132,100,245 +19900113,1800,132,100,225 +19900113,1800,132,100,200 +19900113,1800,132,100,175 +19900113,1800,132,100,150 +19900113,1800,132,100,125 +19900113,1800,132,100,100 +19900113,1800,132,100,70 +19900113,1800,132,100,50 +19900113,1800,132,100,30 +19900113,1800,132,100,20 +19900113,1800,132,100,10 +19900113,1800,132,100,9 +19900113,1800,132,100,7 +19900113,1800,132,100,5 +19900113,1800,132,100,3 +19900113,1800,132,100,2 +19900113,1800,132,100,1 +19900113,1800,132,210,40 +19900113,1800,130,100,1000 +19900113,1800,130,100,975 +19900113,1800,130,100,950 +19900113,1800,130,100,925 +19900113,1800,130,100,900 +19900113,1800,130,100,875 +19900113,1800,130,100,850 +19900113,1800,130,100,825 +19900113,1800,130,100,800 +19900113,1800,130,100,775 +19900113,1800,130,100,750 +19900113,1800,130,100,740 +19900113,1800,130,100,700 +19900113,1800,130,100,650 +19900113,1800,130,100,620 +19900113,1800,130,100,600 +19900113,1800,130,100,550 +19900113,1800,130,100,500 +19900113,1800,130,100,450 +19900113,1800,130,100,400 +19900113,1800,130,100,375 +19900113,1800,130,100,350 +19900113,1800,130,100,300 +19900113,1800,130,100,250 +19900113,1800,130,100,245 +19900113,1800,130,100,225 +19900113,1800,130,100,200 +19900113,1800,130,100,175 +19900113,1800,130,100,150 +19900113,1800,130,100,125 +19900113,1800,130,100,100 +19900113,1800,130,100,70 +19900113,1800,130,100,50 +19900113,1800,130,100,30 +19900113,1800,130,100,20 +19900113,1800,130,100,10 +19900113,1800,130,100,9 +19900113,1800,130,100,7 +19900113,1800,130,100,5 +19900113,1800,130,100,3 +19900113,1800,130,100,2 +19900113,1800,130,100,1 +19900113,1800,130,210,40 +19900113,1800,129,100,1000 +19900113,1800,129,100,975 +19900113,1800,129,100,950 +19900113,1800,129,100,925 +19900113,1800,129,100,900 +19900113,1800,129,100,875 +19900113,1800,129,100,850 +19900113,1800,129,100,825 +19900113,1800,129,100,800 +19900113,1800,129,100,775 +19900113,1800,129,100,750 +19900113,1800,129,100,740 +19900113,1800,129,100,700 +19900113,1800,129,100,650 +19900113,1800,129,100,620 +19900113,1800,129,100,600 +19900113,1800,129,100,550 +19900113,1800,129,100,500 +19900113,1800,129,100,450 +19900113,1800,129,100,400 +19900113,1800,129,100,375 +19900113,1800,129,100,350 +19900113,1800,129,100,300 +19900113,1800,129,100,250 +19900113,1800,129,100,245 +19900113,1800,129,100,225 +19900113,1800,129,100,200 +19900113,1800,129,100,175 +19900113,1800,129,100,150 +19900113,1800,129,100,125 +19900113,1800,129,100,100 +19900113,1800,129,100,70 +19900113,1800,129,100,50 +19900113,1800,129,100,30 +19900113,1800,129,100,20 +19900113,1800,129,100,10 +19900113,1800,129,100,9 +19900113,1800,129,100,7 +19900113,1800,129,100,5 +19900113,1800,129,100,3 +19900113,1800,129,100,2 +19900113,1800,129,100,1 +19900113,1800,129,210,40 +19900113,1800,157,100,1000 +19900113,1800,157,100,975 +19900113,1800,157,100,950 +19900113,1800,157,100,925 +19900113,1800,157,100,900 +19900113,1800,157,100,875 +19900113,1800,157,100,850 +19900113,1800,157,100,825 +19900113,1800,157,100,800 +19900113,1800,157,100,775 +19900113,1800,157,100,750 +19900113,1800,157,100,740 +19900113,1800,157,100,700 +19900113,1800,157,100,650 +19900113,1800,157,100,620 +19900113,1800,157,100,600 +19900113,1800,157,100,550 +19900113,1800,157,100,500 +19900113,1800,157,100,450 +19900113,1800,157,100,400 +19900113,1800,157,100,375 +19900113,1800,157,100,350 +19900113,1800,157,100,300 +19900113,1800,157,100,250 +19900113,1800,157,100,245 +19900113,1800,157,100,225 +19900113,1800,157,100,200 +19900113,1800,157,100,175 +19900113,1800,157,100,150 +19900113,1800,157,100,125 +19900113,1800,157,100,100 +19900113,1800,157,100,70 +19900113,1800,157,100,50 +19900113,1800,157,100,30 +19900113,1800,157,100,20 +19900113,1800,157,100,10 +19900113,1800,157,100,9 +19900113,1800,157,100,7 +19900113,1800,157,100,5 +19900113,1800,157,100,3 +19900113,1800,157,100,2 +19900113,1800,157,100,1 +19900113,1800,157,210,40 +19900113,1800,135,100,1000 +19900113,1800,135,100,975 +19900113,1800,135,100,950 +19900113,1800,135,100,925 +19900113,1800,135,100,900 +19900113,1800,135,100,875 +19900113,1800,135,100,850 +19900113,1800,135,100,825 +19900113,1800,135,100,800 +19900113,1800,135,100,775 +19900113,1800,135,100,750 +19900113,1800,135,100,740 +19900113,1800,135,100,700 +19900113,1800,135,100,650 +19900113,1800,135,100,620 +19900113,1800,135,100,600 +19900113,1800,135,100,550 +19900113,1800,135,100,500 +19900113,1800,135,100,450 +19900113,1800,135,100,400 +19900113,1800,135,100,375 +19900113,1800,135,100,350 +19900113,1800,135,100,300 +19900113,1800,135,100,250 +19900113,1800,135,100,245 +19900113,1800,135,100,225 +19900113,1800,135,100,200 +19900113,1800,135,100,175 +19900113,1800,135,100,150 +19900113,1800,135,100,125 +19900113,1800,135,100,100 +19900113,1800,135,100,70 +19900113,1800,135,100,50 +19900113,1800,135,100,30 +19900113,1800,135,100,20 +19900113,1800,135,100,10 +19900113,1800,135,100,9 +19900113,1800,135,100,7 +19900113,1800,135,100,5 +19900113,1800,135,100,3 +19900113,1800,135,100,2 +19900113,1800,135,100,1 +19900113,1800,135,210,40 +19900113,1800,138,100,1000 +19900113,1800,138,100,975 +19900113,1800,138,100,950 +19900113,1800,138,100,925 +19900113,1800,138,100,900 +19900113,1800,138,100,875 +19900113,1800,138,100,850 +19900113,1800,138,100,825 +19900113,1800,138,100,800 +19900113,1800,138,100,775 +19900113,1800,138,100,750 +19900113,1800,138,100,740 +19900113,1800,138,100,700 +19900113,1800,138,100,650 +19900113,1800,138,100,620 +19900113,1800,138,100,600 +19900113,1800,138,100,550 +19900113,1800,138,100,500 +19900113,1800,138,100,450 +19900113,1800,138,100,400 +19900113,1800,138,100,375 +19900113,1800,138,100,350 +19900113,1800,138,100,300 +19900113,1800,138,100,250 +19900113,1800,138,100,245 +19900113,1800,138,100,225 +19900113,1800,138,100,200 +19900113,1800,138,100,175 +19900113,1800,138,100,150 +19900113,1800,138,100,125 +19900113,1800,138,100,100 +19900113,1800,138,100,70 +19900113,1800,138,100,50 +19900113,1800,138,100,30 +19900113,1800,138,100,20 +19900113,1800,138,100,10 +19900113,1800,138,100,9 +19900113,1800,138,100,7 +19900113,1800,138,100,5 +19900113,1800,138,100,3 +19900113,1800,138,100,2 +19900113,1800,138,100,1 +19900113,1800,138,210,40 +19900113,1800,131,109,1 +19900113,1800,131,109,2 +19900113,1800,131,109,3 +19900113,1800,131,109,4 +19900113,1800,131,109,5 +19900113,1800,131,109,6 +19900113,1800,131,109,7 +19900113,1800,131,109,8 +19900113,1800,131,109,9 +19900113,1800,131,109,10 +19900113,1800,132,109,1 +19900113,1800,132,109,2 +19900113,1800,132,109,3 +19900113,1800,132,109,4 +19900113,1800,132,109,5 +19900113,1800,132,109,6 +19900113,1800,132,109,7 +19900113,1800,132,109,8 +19900113,1800,132,109,9 +19900113,1800,132,109,10 +19900113,1800,130,109,1 +19900113,1800,130,109,2 +19900113,1800,130,109,3 +19900113,1800,130,109,4 +19900113,1800,130,109,5 +19900113,1800,130,109,6 +19900113,1800,130,109,7 +19900113,1800,130,109,8 +19900113,1800,130,109,9 +19900113,1800,130,109,10 +19900113,1800,157,109,1 +19900113,1800,157,109,2 +19900113,1800,157,109,3 +19900113,1800,157,109,4 +19900113,1800,157,109,5 +19900113,1800,157,109,6 +19900113,1800,157,109,7 +19900113,1800,157,109,8 +19900113,1800,157,109,9 +19900113,1800,157,109,10 +19900113,1800,54,109,1 +19900113,1800,54,109,2 +19900113,1800,54,109,3 +19900113,1800,54,109,4 +19900113,1800,54,109,5 +19900113,1800,54,109,6 +19900113,1800,54,109,7 +19900113,1800,54,109,8 +19900113,1800,54,109,9 +19900113,1800,54,109,10 +19900113,1800,135,109,1 +19900113,1800,135,109,2 +19900113,1800,135,109,3 +19900113,1800,135,109,4 +19900113,1800,135,109,5 +19900113,1800,135,109,6 +19900113,1800,135,109,7 +19900113,1800,135,109,8 +19900113,1800,135,109,9 +19900113,1800,135,109,10 +19900113,1800,134,109,1 +19900113,1800,152,109,1 +19900113,1800,131,100,850 +19900113,1800,132,100,850 +19900113,1800,134,100,1000 +19900113,1800,152,100,1000 +19900113,2100,131,100,850 +19900113,2100,132,100,850 +19900113,2100,134,100,1000 +19900113,2100,152,100,1000 +19900114,0,131,100,1000 +19900114,0,131,100,975 +19900114,0,131,100,950 +19900114,0,131,100,925 +19900114,0,131,100,900 +19900114,0,131,100,875 +19900114,0,131,100,825 +19900114,0,131,100,800 +19900114,0,131,100,775 +19900114,0,131,100,750 +19900114,0,131,100,740 +19900114,0,131,100,700 +19900114,0,131,100,650 +19900114,0,131,100,620 +19900114,0,131,100,600 +19900114,0,131,100,550 +19900114,0,131,100,500 +19900114,0,131,100,450 +19900114,0,131,100,400 +19900114,0,131,100,375 +19900114,0,131,100,350 +19900114,0,131,100,300 +19900114,0,131,100,250 +19900114,0,131,100,245 +19900114,0,131,100,225 +19900114,0,131,100,200 +19900114,0,131,100,175 +19900114,0,131,100,150 +19900114,0,131,100,125 +19900114,0,131,100,100 +19900114,0,131,100,70 +19900114,0,131,100,50 +19900114,0,131,100,30 +19900114,0,131,100,20 +19900114,0,131,100,10 +19900114,0,131,100,9 +19900114,0,131,100,7 +19900114,0,131,100,5 +19900114,0,131,100,3 +19900114,0,131,100,2 +19900114,0,131,100,1 +19900114,0,131,210,40 +19900114,0,132,100,1000 +19900114,0,132,100,975 +19900114,0,132,100,950 +19900114,0,132,100,925 +19900114,0,132,100,900 +19900114,0,132,100,875 +19900114,0,132,100,825 +19900114,0,132,100,800 +19900114,0,132,100,775 +19900114,0,132,100,750 +19900114,0,132,100,740 +19900114,0,132,100,700 +19900114,0,132,100,650 +19900114,0,132,100,620 +19900114,0,132,100,600 +19900114,0,132,100,550 +19900114,0,132,100,500 +19900114,0,132,100,450 +19900114,0,132,100,400 +19900114,0,132,100,375 +19900114,0,132,100,350 +19900114,0,132,100,300 +19900114,0,132,100,250 +19900114,0,132,100,245 +19900114,0,132,100,225 +19900114,0,132,100,200 +19900114,0,132,100,175 +19900114,0,132,100,150 +19900114,0,132,100,125 +19900114,0,132,100,100 +19900114,0,132,100,70 +19900114,0,132,100,50 +19900114,0,132,100,30 +19900114,0,132,100,20 +19900114,0,132,100,10 +19900114,0,132,100,9 +19900114,0,132,100,7 +19900114,0,132,100,5 +19900114,0,132,100,3 +19900114,0,132,100,2 +19900114,0,132,100,1 +19900114,0,132,210,40 +19900114,0,130,100,1000 +19900114,0,130,100,975 +19900114,0,130,100,950 +19900114,0,130,100,925 +19900114,0,130,100,900 +19900114,0,130,100,875 +19900114,0,130,100,850 +19900114,0,130,100,825 +19900114,0,130,100,800 +19900114,0,130,100,775 +19900114,0,130,100,750 +19900114,0,130,100,740 +19900114,0,130,100,700 +19900114,0,130,100,650 +19900114,0,130,100,620 +19900114,0,130,100,600 +19900114,0,130,100,550 +19900114,0,130,100,500 +19900114,0,130,100,450 +19900114,0,130,100,400 +19900114,0,130,100,375 +19900114,0,130,100,350 +19900114,0,130,100,300 +19900114,0,130,100,250 +19900114,0,130,100,245 +19900114,0,130,100,225 +19900114,0,130,100,200 +19900114,0,130,100,175 +19900114,0,130,100,150 +19900114,0,130,100,125 +19900114,0,130,100,100 +19900114,0,130,100,70 +19900114,0,130,100,50 +19900114,0,130,100,30 +19900114,0,130,100,20 +19900114,0,130,100,10 +19900114,0,130,100,9 +19900114,0,130,100,7 +19900114,0,130,100,5 +19900114,0,130,100,3 +19900114,0,130,100,2 +19900114,0,130,100,1 +19900114,0,130,210,40 +19900114,0,129,100,1000 +19900114,0,129,100,975 +19900114,0,129,100,950 +19900114,0,129,100,925 +19900114,0,129,100,900 +19900114,0,129,100,875 +19900114,0,129,100,850 +19900114,0,129,100,825 +19900114,0,129,100,800 +19900114,0,129,100,775 +19900114,0,129,100,750 +19900114,0,129,100,740 +19900114,0,129,100,700 +19900114,0,129,100,650 +19900114,0,129,100,620 +19900114,0,129,100,600 +19900114,0,129,100,550 +19900114,0,129,100,500 +19900114,0,129,100,450 +19900114,0,129,100,400 +19900114,0,129,100,375 +19900114,0,129,100,350 +19900114,0,129,100,300 +19900114,0,129,100,250 +19900114,0,129,100,245 +19900114,0,129,100,225 +19900114,0,129,100,200 +19900114,0,129,100,175 +19900114,0,129,100,150 +19900114,0,129,100,125 +19900114,0,129,100,100 +19900114,0,129,100,70 +19900114,0,129,100,50 +19900114,0,129,100,30 +19900114,0,129,100,20 +19900114,0,129,100,10 +19900114,0,129,100,9 +19900114,0,129,100,7 +19900114,0,129,100,5 +19900114,0,129,100,3 +19900114,0,129,100,2 +19900114,0,129,100,1 +19900114,0,129,210,40 +19900114,0,157,100,1000 +19900114,0,157,100,975 +19900114,0,157,100,950 +19900114,0,157,100,925 +19900114,0,157,100,900 +19900114,0,157,100,875 +19900114,0,157,100,850 +19900114,0,157,100,825 +19900114,0,157,100,800 +19900114,0,157,100,775 +19900114,0,157,100,750 +19900114,0,157,100,740 +19900114,0,157,100,700 +19900114,0,157,100,650 +19900114,0,157,100,620 +19900114,0,157,100,600 +19900114,0,157,100,550 +19900114,0,157,100,500 +19900114,0,157,100,450 +19900114,0,157,100,400 +19900114,0,157,100,375 +19900114,0,157,100,350 +19900114,0,157,100,300 +19900114,0,157,100,250 +19900114,0,157,100,245 +19900114,0,157,100,225 +19900114,0,157,100,200 +19900114,0,157,100,175 +19900114,0,157,100,150 +19900114,0,157,100,125 +19900114,0,157,100,100 +19900114,0,157,100,70 +19900114,0,157,100,50 +19900114,0,157,100,30 +19900114,0,157,100,20 +19900114,0,157,100,10 +19900114,0,157,100,9 +19900114,0,157,100,7 +19900114,0,157,100,5 +19900114,0,157,100,3 +19900114,0,157,100,2 +19900114,0,157,100,1 +19900114,0,157,210,40 +19900114,0,135,100,1000 +19900114,0,135,100,975 +19900114,0,135,100,950 +19900114,0,135,100,925 +19900114,0,135,100,900 +19900114,0,135,100,875 +19900114,0,135,100,850 +19900114,0,135,100,825 +19900114,0,135,100,800 +19900114,0,135,100,775 +19900114,0,135,100,750 +19900114,0,135,100,740 +19900114,0,135,100,700 +19900114,0,135,100,650 +19900114,0,135,100,620 +19900114,0,135,100,600 +19900114,0,135,100,550 +19900114,0,135,100,500 +19900114,0,135,100,450 +19900114,0,135,100,400 +19900114,0,135,100,375 +19900114,0,135,100,350 +19900114,0,135,100,300 +19900114,0,135,100,250 +19900114,0,135,100,245 +19900114,0,135,100,225 +19900114,0,135,100,200 +19900114,0,135,100,175 +19900114,0,135,100,150 +19900114,0,135,100,125 +19900114,0,135,100,100 +19900114,0,135,100,70 +19900114,0,135,100,50 +19900114,0,135,100,30 +19900114,0,135,100,20 +19900114,0,135,100,10 +19900114,0,135,100,9 +19900114,0,135,100,7 +19900114,0,135,100,5 +19900114,0,135,100,3 +19900114,0,135,100,2 +19900114,0,135,100,1 +19900114,0,135,210,40 +19900114,0,138,100,1000 +19900114,0,138,100,975 +19900114,0,138,100,950 +19900114,0,138,100,925 +19900114,0,138,100,900 +19900114,0,138,100,875 +19900114,0,138,100,850 +19900114,0,138,100,825 +19900114,0,138,100,800 +19900114,0,138,100,775 +19900114,0,138,100,750 +19900114,0,138,100,740 +19900114,0,138,100,700 +19900114,0,138,100,650 +19900114,0,138,100,620 +19900114,0,138,100,600 +19900114,0,138,100,550 +19900114,0,138,100,500 +19900114,0,138,100,450 +19900114,0,138,100,400 +19900114,0,138,100,375 +19900114,0,138,100,350 +19900114,0,138,100,300 +19900114,0,138,100,250 +19900114,0,138,100,245 +19900114,0,138,100,225 +19900114,0,138,100,200 +19900114,0,138,100,175 +19900114,0,138,100,150 +19900114,0,138,100,125 +19900114,0,138,100,100 +19900114,0,138,100,70 +19900114,0,138,100,50 +19900114,0,138,100,30 +19900114,0,138,100,20 +19900114,0,138,100,10 +19900114,0,138,100,9 +19900114,0,138,100,7 +19900114,0,138,100,5 +19900114,0,138,100,3 +19900114,0,138,100,2 +19900114,0,138,100,1 +19900114,0,138,210,40 +19900114,0,131,109,1 +19900114,0,131,109,2 +19900114,0,131,109,3 +19900114,0,131,109,4 +19900114,0,131,109,5 +19900114,0,131,109,6 +19900114,0,131,109,7 +19900114,0,131,109,8 +19900114,0,131,109,9 +19900114,0,131,109,10 +19900114,0,132,109,1 +19900114,0,132,109,2 +19900114,0,132,109,3 +19900114,0,132,109,4 +19900114,0,132,109,5 +19900114,0,132,109,6 +19900114,0,132,109,7 +19900114,0,132,109,8 +19900114,0,132,109,9 +19900114,0,132,109,10 +19900114,0,130,109,1 +19900114,0,130,109,2 +19900114,0,130,109,3 +19900114,0,130,109,4 +19900114,0,130,109,5 +19900114,0,130,109,6 +19900114,0,130,109,7 +19900114,0,130,109,8 +19900114,0,130,109,9 +19900114,0,130,109,10 +19900114,0,157,109,1 +19900114,0,157,109,2 +19900114,0,157,109,3 +19900114,0,157,109,4 +19900114,0,157,109,5 +19900114,0,157,109,6 +19900114,0,157,109,7 +19900114,0,157,109,8 +19900114,0,157,109,9 +19900114,0,157,109,10 +19900114,0,54,109,1 +19900114,0,54,109,2 +19900114,0,54,109,3 +19900114,0,54,109,4 +19900114,0,54,109,5 +19900114,0,54,109,6 +19900114,0,54,109,7 +19900114,0,54,109,8 +19900114,0,54,109,9 +19900114,0,54,109,10 +19900114,0,135,109,1 +19900114,0,135,109,2 +19900114,0,135,109,3 +19900114,0,135,109,4 +19900114,0,135,109,5 +19900114,0,135,109,6 +19900114,0,135,109,7 +19900114,0,135,109,8 +19900114,0,135,109,9 +19900114,0,135,109,10 +19900114,0,134,109,1 +19900114,0,152,109,1 +19900114,0,131,100,850 +19900114,0,132,100,850 +19900114,0,134,100,1000 +19900114,0,152,100,1000 +19900114,300,131,100,850 +19900114,300,132,100,850 +19900114,300,134,100,1000 +19900114,300,152,100,1000 +19900114,600,131,100,1000 +19900114,600,131,100,975 +19900114,600,131,100,950 +19900114,600,131,100,925 +19900114,600,131,100,900 +19900114,600,131,100,875 +19900114,600,131,100,825 +19900114,600,131,100,800 +19900114,600,131,100,775 +19900114,600,131,100,750 +19900114,600,131,100,740 +19900114,600,131,100,700 +19900114,600,131,100,650 +19900114,600,131,100,620 +19900114,600,131,100,600 +19900114,600,131,100,550 +19900114,600,131,100,500 +19900114,600,131,100,450 +19900114,600,131,100,400 +19900114,600,131,100,375 +19900114,600,131,100,350 +19900114,600,131,100,300 +19900114,600,131,100,250 +19900114,600,131,100,245 +19900114,600,131,100,225 +19900114,600,131,100,200 +19900114,600,131,100,175 +19900114,600,131,100,150 +19900114,600,131,100,125 +19900114,600,131,100,100 +19900114,600,131,100,70 +19900114,600,131,100,50 +19900114,600,131,100,30 +19900114,600,131,100,20 +19900114,600,131,100,10 +19900114,600,131,100,9 +19900114,600,131,100,7 +19900114,600,131,100,5 +19900114,600,131,100,3 +19900114,600,131,100,2 +19900114,600,131,100,1 +19900114,600,131,210,40 +19900114,600,132,100,1000 +19900114,600,132,100,975 +19900114,600,132,100,950 +19900114,600,132,100,925 +19900114,600,132,100,900 +19900114,600,132,100,875 +19900114,600,132,100,825 +19900114,600,132,100,800 +19900114,600,132,100,775 +19900114,600,132,100,750 +19900114,600,132,100,740 +19900114,600,132,100,700 +19900114,600,132,100,650 +19900114,600,132,100,620 +19900114,600,132,100,600 +19900114,600,132,100,550 +19900114,600,132,100,500 +19900114,600,132,100,450 +19900114,600,132,100,400 +19900114,600,132,100,375 +19900114,600,132,100,350 +19900114,600,132,100,300 +19900114,600,132,100,250 +19900114,600,132,100,245 +19900114,600,132,100,225 +19900114,600,132,100,200 +19900114,600,132,100,175 +19900114,600,132,100,150 +19900114,600,132,100,125 +19900114,600,132,100,100 +19900114,600,132,100,70 +19900114,600,132,100,50 +19900114,600,132,100,30 +19900114,600,132,100,20 +19900114,600,132,100,10 +19900114,600,132,100,9 +19900114,600,132,100,7 +19900114,600,132,100,5 +19900114,600,132,100,3 +19900114,600,132,100,2 +19900114,600,132,100,1 +19900114,600,132,210,40 +19900114,600,130,100,1000 +19900114,600,130,100,975 +19900114,600,130,100,950 +19900114,600,130,100,925 +19900114,600,130,100,900 +19900114,600,130,100,875 +19900114,600,130,100,850 +19900114,600,130,100,825 +19900114,600,130,100,800 +19900114,600,130,100,775 +19900114,600,130,100,750 +19900114,600,130,100,740 +19900114,600,130,100,700 +19900114,600,130,100,650 +19900114,600,130,100,620 +19900114,600,130,100,600 +19900114,600,130,100,550 +19900114,600,130,100,500 +19900114,600,130,100,450 +19900114,600,130,100,400 +19900114,600,130,100,375 +19900114,600,130,100,350 +19900114,600,130,100,300 +19900114,600,130,100,250 +19900114,600,130,100,245 +19900114,600,130,100,225 +19900114,600,130,100,200 +19900114,600,130,100,175 +19900114,600,130,100,150 +19900114,600,130,100,125 +19900114,600,130,100,100 +19900114,600,130,100,70 +19900114,600,130,100,50 +19900114,600,130,100,30 +19900114,600,130,100,20 +19900114,600,130,100,10 +19900114,600,130,100,9 +19900114,600,130,100,7 +19900114,600,130,100,5 +19900114,600,130,100,3 +19900114,600,130,100,2 +19900114,600,130,100,1 +19900114,600,130,210,40 +19900114,600,129,100,1000 +19900114,600,129,100,975 +19900114,600,129,100,950 +19900114,600,129,100,925 +19900114,600,129,100,900 +19900114,600,129,100,875 +19900114,600,129,100,850 +19900114,600,129,100,825 +19900114,600,129,100,800 +19900114,600,129,100,775 +19900114,600,129,100,750 +19900114,600,129,100,740 +19900114,600,129,100,700 +19900114,600,129,100,650 +19900114,600,129,100,620 +19900114,600,129,100,600 +19900114,600,129,100,550 +19900114,600,129,100,500 +19900114,600,129,100,450 +19900114,600,129,100,400 +19900114,600,129,100,375 +19900114,600,129,100,350 +19900114,600,129,100,300 +19900114,600,129,100,250 +19900114,600,129,100,245 +19900114,600,129,100,225 +19900114,600,129,100,200 +19900114,600,129,100,175 +19900114,600,129,100,150 +19900114,600,129,100,125 +19900114,600,129,100,100 +19900114,600,129,100,70 +19900114,600,129,100,50 +19900114,600,129,100,30 +19900114,600,129,100,20 +19900114,600,129,100,10 +19900114,600,129,100,9 +19900114,600,129,100,7 +19900114,600,129,100,5 +19900114,600,129,100,3 +19900114,600,129,100,2 +19900114,600,129,100,1 +19900114,600,129,210,40 +19900114,600,157,100,1000 +19900114,600,157,100,975 +19900114,600,157,100,950 +19900114,600,157,100,925 +19900114,600,157,100,900 +19900114,600,157,100,875 +19900114,600,157,100,850 +19900114,600,157,100,825 +19900114,600,157,100,800 +19900114,600,157,100,775 +19900114,600,157,100,750 +19900114,600,157,100,740 +19900114,600,157,100,700 +19900114,600,157,100,650 +19900114,600,157,100,620 +19900114,600,157,100,600 +19900114,600,157,100,550 +19900114,600,157,100,500 +19900114,600,157,100,450 +19900114,600,157,100,400 +19900114,600,157,100,375 +19900114,600,157,100,350 +19900114,600,157,100,300 +19900114,600,157,100,250 +19900114,600,157,100,245 +19900114,600,157,100,225 +19900114,600,157,100,200 +19900114,600,157,100,175 +19900114,600,157,100,150 +19900114,600,157,100,125 +19900114,600,157,100,100 +19900114,600,157,100,70 +19900114,600,157,100,50 +19900114,600,157,100,30 +19900114,600,157,100,20 +19900114,600,157,100,10 +19900114,600,157,100,9 +19900114,600,157,100,7 +19900114,600,157,100,5 +19900114,600,157,100,3 +19900114,600,157,100,2 +19900114,600,157,100,1 +19900114,600,157,210,40 +19900114,600,135,100,1000 +19900114,600,135,100,975 +19900114,600,135,100,950 +19900114,600,135,100,925 +19900114,600,135,100,900 +19900114,600,135,100,875 +19900114,600,135,100,850 +19900114,600,135,100,825 +19900114,600,135,100,800 +19900114,600,135,100,775 +19900114,600,135,100,750 +19900114,600,135,100,740 +19900114,600,135,100,700 +19900114,600,135,100,650 +19900114,600,135,100,620 +19900114,600,135,100,600 +19900114,600,135,100,550 +19900114,600,135,100,500 +19900114,600,135,100,450 +19900114,600,135,100,400 +19900114,600,135,100,375 +19900114,600,135,100,350 +19900114,600,135,100,300 +19900114,600,135,100,250 +19900114,600,135,100,245 +19900114,600,135,100,225 +19900114,600,135,100,200 +19900114,600,135,100,175 +19900114,600,135,100,150 +19900114,600,135,100,125 +19900114,600,135,100,100 +19900114,600,135,100,70 +19900114,600,135,100,50 +19900114,600,135,100,30 +19900114,600,135,100,20 +19900114,600,135,100,10 +19900114,600,135,100,9 +19900114,600,135,100,7 +19900114,600,135,100,5 +19900114,600,135,100,3 +19900114,600,135,100,2 +19900114,600,135,100,1 +19900114,600,135,210,40 +19900114,600,138,100,1000 +19900114,600,138,100,975 +19900114,600,138,100,950 +19900114,600,138,100,925 +19900114,600,138,100,900 +19900114,600,138,100,875 +19900114,600,138,100,850 +19900114,600,138,100,825 +19900114,600,138,100,800 +19900114,600,138,100,775 +19900114,600,138,100,750 +19900114,600,138,100,740 +19900114,600,138,100,700 +19900114,600,138,100,650 +19900114,600,138,100,620 +19900114,600,138,100,600 +19900114,600,138,100,550 +19900114,600,138,100,500 +19900114,600,138,100,450 +19900114,600,138,100,400 +19900114,600,138,100,375 +19900114,600,138,100,350 +19900114,600,138,100,300 +19900114,600,138,100,250 +19900114,600,138,100,245 +19900114,600,138,100,225 +19900114,600,138,100,200 +19900114,600,138,100,175 +19900114,600,138,100,150 +19900114,600,138,100,125 +19900114,600,138,100,100 +19900114,600,138,100,70 +19900114,600,138,100,50 +19900114,600,138,100,30 +19900114,600,138,100,20 +19900114,600,138,100,10 +19900114,600,138,100,9 +19900114,600,138,100,7 +19900114,600,138,100,5 +19900114,600,138,100,3 +19900114,600,138,100,2 +19900114,600,138,100,1 +19900114,600,138,210,40 +19900114,600,131,109,1 +19900114,600,131,109,2 +19900114,600,131,109,3 +19900114,600,131,109,4 +19900114,600,131,109,5 +19900114,600,131,109,6 +19900114,600,131,109,7 +19900114,600,131,109,8 +19900114,600,131,109,9 +19900114,600,131,109,10 +19900114,600,132,109,1 +19900114,600,132,109,2 +19900114,600,132,109,3 +19900114,600,132,109,4 +19900114,600,132,109,5 +19900114,600,132,109,6 +19900114,600,132,109,7 +19900114,600,132,109,8 +19900114,600,132,109,9 +19900114,600,132,109,10 +19900114,600,130,109,1 +19900114,600,130,109,2 +19900114,600,130,109,3 +19900114,600,130,109,4 +19900114,600,130,109,5 +19900114,600,130,109,6 +19900114,600,130,109,7 +19900114,600,130,109,8 +19900114,600,130,109,9 +19900114,600,130,109,10 +19900114,600,157,109,1 +19900114,600,157,109,2 +19900114,600,157,109,3 +19900114,600,157,109,4 +19900114,600,157,109,5 +19900114,600,157,109,6 +19900114,600,157,109,7 +19900114,600,157,109,8 +19900114,600,157,109,9 +19900114,600,157,109,10 +19900114,600,54,109,1 +19900114,600,54,109,2 +19900114,600,54,109,3 +19900114,600,54,109,4 +19900114,600,54,109,5 +19900114,600,54,109,6 +19900114,600,54,109,7 +19900114,600,54,109,8 +19900114,600,54,109,9 +19900114,600,54,109,10 +19900114,600,135,109,1 +19900114,600,135,109,2 +19900114,600,135,109,3 +19900114,600,135,109,4 +19900114,600,135,109,5 +19900114,600,135,109,6 +19900114,600,135,109,7 +19900114,600,135,109,8 +19900114,600,135,109,9 +19900114,600,135,109,10 +19900114,600,134,109,1 +19900114,600,152,109,1 +19900114,600,131,100,850 +19900114,600,132,100,850 +19900114,600,134,100,1000 +19900114,600,152,100,1000 +19900114,900,131,100,850 +19900114,900,132,100,850 +19900114,900,134,100,1000 +19900114,900,152,100,1000 +19900114,1200,131,100,1000 +19900114,1200,131,100,975 +19900114,1200,131,100,950 +19900114,1200,131,100,925 +19900114,1200,131,100,900 +19900114,1200,131,100,875 +19900114,1200,131,100,825 +19900114,1200,131,100,800 +19900114,1200,131,100,775 +19900114,1200,131,100,750 +19900114,1200,131,100,740 +19900114,1200,131,100,700 +19900114,1200,131,100,650 +19900114,1200,131,100,620 +19900114,1200,131,100,600 +19900114,1200,131,100,550 +19900114,1200,131,100,500 +19900114,1200,131,100,450 +19900114,1200,131,100,400 +19900114,1200,131,100,375 +19900114,1200,131,100,350 +19900114,1200,131,100,300 +19900114,1200,131,100,250 +19900114,1200,131,100,245 +19900114,1200,131,100,225 +19900114,1200,131,100,200 +19900114,1200,131,100,175 +19900114,1200,131,100,150 +19900114,1200,131,100,125 +19900114,1200,131,100,100 +19900114,1200,131,100,70 +19900114,1200,131,100,50 +19900114,1200,131,100,30 +19900114,1200,131,100,20 +19900114,1200,131,100,10 +19900114,1200,131,100,9 +19900114,1200,131,100,7 +19900114,1200,131,100,5 +19900114,1200,131,100,3 +19900114,1200,131,100,2 +19900114,1200,131,100,1 +19900114,1200,131,210,40 +19900114,1200,132,100,1000 +19900114,1200,132,100,975 +19900114,1200,132,100,950 +19900114,1200,132,100,925 +19900114,1200,132,100,900 +19900114,1200,132,100,875 +19900114,1200,132,100,825 +19900114,1200,132,100,800 +19900114,1200,132,100,775 +19900114,1200,132,100,750 +19900114,1200,132,100,740 +19900114,1200,132,100,700 +19900114,1200,132,100,650 +19900114,1200,132,100,620 +19900114,1200,132,100,600 +19900114,1200,132,100,550 +19900114,1200,132,100,500 +19900114,1200,132,100,450 +19900114,1200,132,100,400 +19900114,1200,132,100,375 +19900114,1200,132,100,350 +19900114,1200,132,100,300 +19900114,1200,132,100,250 +19900114,1200,132,100,245 +19900114,1200,132,100,225 +19900114,1200,132,100,200 +19900114,1200,132,100,175 +19900114,1200,132,100,150 +19900114,1200,132,100,125 +19900114,1200,132,100,100 +19900114,1200,132,100,70 +19900114,1200,132,100,50 +19900114,1200,132,100,30 +19900114,1200,132,100,20 +19900114,1200,132,100,10 +19900114,1200,132,100,9 +19900114,1200,132,100,7 +19900114,1200,132,100,5 +19900114,1200,132,100,3 +19900114,1200,132,100,2 +19900114,1200,132,100,1 +19900114,1200,132,210,40 +19900114,1200,130,100,1000 +19900114,1200,130,100,975 +19900114,1200,130,100,950 +19900114,1200,130,100,925 +19900114,1200,130,100,900 +19900114,1200,130,100,875 +19900114,1200,130,100,850 +19900114,1200,130,100,825 +19900114,1200,130,100,800 +19900114,1200,130,100,775 +19900114,1200,130,100,750 +19900114,1200,130,100,740 +19900114,1200,130,100,700 +19900114,1200,130,100,650 +19900114,1200,130,100,620 +19900114,1200,130,100,600 +19900114,1200,130,100,550 +19900114,1200,130,100,500 +19900114,1200,130,100,450 +19900114,1200,130,100,400 +19900114,1200,130,100,375 +19900114,1200,130,100,350 +19900114,1200,130,100,300 +19900114,1200,130,100,250 +19900114,1200,130,100,245 +19900114,1200,130,100,225 +19900114,1200,130,100,200 +19900114,1200,130,100,175 +19900114,1200,130,100,150 +19900114,1200,130,100,125 +19900114,1200,130,100,100 +19900114,1200,130,100,70 +19900114,1200,130,100,50 +19900114,1200,130,100,30 +19900114,1200,130,100,20 +19900114,1200,130,100,10 +19900114,1200,130,100,9 +19900114,1200,130,100,7 +19900114,1200,130,100,5 +19900114,1200,130,100,3 +19900114,1200,130,100,2 +19900114,1200,130,100,1 +19900114,1200,130,210,40 +19900114,1200,129,100,1000 +19900114,1200,129,100,975 +19900114,1200,129,100,950 +19900114,1200,129,100,925 +19900114,1200,129,100,900 +19900114,1200,129,100,875 +19900114,1200,129,100,850 +19900114,1200,129,100,825 +19900114,1200,129,100,800 +19900114,1200,129,100,775 +19900114,1200,129,100,750 +19900114,1200,129,100,740 +19900114,1200,129,100,700 +19900114,1200,129,100,650 +19900114,1200,129,100,620 +19900114,1200,129,100,600 +19900114,1200,129,100,550 +19900114,1200,129,100,500 +19900114,1200,129,100,450 +19900114,1200,129,100,400 +19900114,1200,129,100,375 +19900114,1200,129,100,350 +19900114,1200,129,100,300 +19900114,1200,129,100,250 +19900114,1200,129,100,245 +19900114,1200,129,100,225 +19900114,1200,129,100,200 +19900114,1200,129,100,175 +19900114,1200,129,100,150 +19900114,1200,129,100,125 +19900114,1200,129,100,100 +19900114,1200,129,100,70 +19900114,1200,129,100,50 +19900114,1200,129,100,30 +19900114,1200,129,100,20 +19900114,1200,129,100,10 +19900114,1200,129,100,9 +19900114,1200,129,100,7 +19900114,1200,129,100,5 +19900114,1200,129,100,3 +19900114,1200,129,100,2 +19900114,1200,129,100,1 +19900114,1200,129,210,40 +19900114,1200,157,100,1000 +19900114,1200,157,100,975 +19900114,1200,157,100,950 +19900114,1200,157,100,925 +19900114,1200,157,100,900 +19900114,1200,157,100,875 +19900114,1200,157,100,850 +19900114,1200,157,100,825 +19900114,1200,157,100,800 +19900114,1200,157,100,775 +19900114,1200,157,100,750 +19900114,1200,157,100,740 +19900114,1200,157,100,700 +19900114,1200,157,100,650 +19900114,1200,157,100,620 +19900114,1200,157,100,600 +19900114,1200,157,100,550 +19900114,1200,157,100,500 +19900114,1200,157,100,450 +19900114,1200,157,100,400 +19900114,1200,157,100,375 +19900114,1200,157,100,350 +19900114,1200,157,100,300 +19900114,1200,157,100,250 +19900114,1200,157,100,245 +19900114,1200,157,100,225 +19900114,1200,157,100,200 +19900114,1200,157,100,175 +19900114,1200,157,100,150 +19900114,1200,157,100,125 +19900114,1200,157,100,100 +19900114,1200,157,100,70 +19900114,1200,157,100,50 +19900114,1200,157,100,30 +19900114,1200,157,100,20 +19900114,1200,157,100,10 +19900114,1200,157,100,9 +19900114,1200,157,100,7 +19900114,1200,157,100,5 +19900114,1200,157,100,3 +19900114,1200,157,100,2 +19900114,1200,157,100,1 +19900114,1200,157,210,40 +19900114,1200,135,100,1000 +19900114,1200,135,100,975 +19900114,1200,135,100,950 +19900114,1200,135,100,925 +19900114,1200,135,100,900 +19900114,1200,135,100,875 +19900114,1200,135,100,850 +19900114,1200,135,100,825 +19900114,1200,135,100,800 +19900114,1200,135,100,775 +19900114,1200,135,100,750 +19900114,1200,135,100,740 +19900114,1200,135,100,700 +19900114,1200,135,100,650 +19900114,1200,135,100,620 +19900114,1200,135,100,600 +19900114,1200,135,100,550 +19900114,1200,135,100,500 +19900114,1200,135,100,450 +19900114,1200,135,100,400 +19900114,1200,135,100,375 +19900114,1200,135,100,350 +19900114,1200,135,100,300 +19900114,1200,135,100,250 +19900114,1200,135,100,245 +19900114,1200,135,100,225 +19900114,1200,135,100,200 +19900114,1200,135,100,175 +19900114,1200,135,100,150 +19900114,1200,135,100,125 +19900114,1200,135,100,100 +19900114,1200,135,100,70 +19900114,1200,135,100,50 +19900114,1200,135,100,30 +19900114,1200,135,100,20 +19900114,1200,135,100,10 +19900114,1200,135,100,9 +19900114,1200,135,100,7 +19900114,1200,135,100,5 +19900114,1200,135,100,3 +19900114,1200,135,100,2 +19900114,1200,135,100,1 +19900114,1200,135,210,40 +19900114,1200,138,100,1000 +19900114,1200,138,100,975 +19900114,1200,138,100,950 +19900114,1200,138,100,925 +19900114,1200,138,100,900 +19900114,1200,138,100,875 +19900114,1200,138,100,850 +19900114,1200,138,100,825 +19900114,1200,138,100,800 +19900114,1200,138,100,775 +19900114,1200,138,100,750 +19900114,1200,138,100,740 +19900114,1200,138,100,700 +19900114,1200,138,100,650 +19900114,1200,138,100,620 +19900114,1200,138,100,600 +19900114,1200,138,100,550 +19900114,1200,138,100,500 +19900114,1200,138,100,450 +19900114,1200,138,100,400 +19900114,1200,138,100,375 +19900114,1200,138,100,350 +19900114,1200,138,100,300 +19900114,1200,138,100,250 +19900114,1200,138,100,245 +19900114,1200,138,100,225 +19900114,1200,138,100,200 +19900114,1200,138,100,175 +19900114,1200,138,100,150 +19900114,1200,138,100,125 +19900114,1200,138,100,100 +19900114,1200,138,100,70 +19900114,1200,138,100,50 +19900114,1200,138,100,30 +19900114,1200,138,100,20 +19900114,1200,138,100,10 +19900114,1200,138,100,9 +19900114,1200,138,100,7 +19900114,1200,138,100,5 +19900114,1200,138,100,3 +19900114,1200,138,100,2 +19900114,1200,138,100,1 +19900114,1200,138,210,40 +19900114,1200,131,109,1 +19900114,1200,131,109,2 +19900114,1200,131,109,3 +19900114,1200,131,109,4 +19900114,1200,131,109,5 +19900114,1200,131,109,6 +19900114,1200,131,109,7 +19900114,1200,131,109,8 +19900114,1200,131,109,9 +19900114,1200,131,109,10 +19900114,1200,132,109,1 +19900114,1200,132,109,2 +19900114,1200,132,109,3 +19900114,1200,132,109,4 +19900114,1200,132,109,5 +19900114,1200,132,109,6 +19900114,1200,132,109,7 +19900114,1200,132,109,8 +19900114,1200,132,109,9 +19900114,1200,132,109,10 +19900114,1200,130,109,1 +19900114,1200,130,109,2 +19900114,1200,130,109,3 +19900114,1200,130,109,4 +19900114,1200,130,109,5 +19900114,1200,130,109,6 +19900114,1200,130,109,7 +19900114,1200,130,109,8 +19900114,1200,130,109,9 +19900114,1200,130,109,10 +19900114,1200,157,109,1 +19900114,1200,157,109,2 +19900114,1200,157,109,3 +19900114,1200,157,109,4 +19900114,1200,157,109,5 +19900114,1200,157,109,6 +19900114,1200,157,109,7 +19900114,1200,157,109,8 +19900114,1200,157,109,9 +19900114,1200,157,109,10 +19900114,1200,54,109,1 +19900114,1200,54,109,2 +19900114,1200,54,109,3 +19900114,1200,54,109,4 +19900114,1200,54,109,5 +19900114,1200,54,109,6 +19900114,1200,54,109,7 +19900114,1200,54,109,8 +19900114,1200,54,109,9 +19900114,1200,54,109,10 +19900114,1200,135,109,1 +19900114,1200,135,109,2 +19900114,1200,135,109,3 +19900114,1200,135,109,4 +19900114,1200,135,109,5 +19900114,1200,135,109,6 +19900114,1200,135,109,7 +19900114,1200,135,109,8 +19900114,1200,135,109,9 +19900114,1200,135,109,10 +19900114,1200,134,109,1 +19900114,1200,152,109,1 +19900114,1200,131,100,850 +19900114,1200,132,100,850 +19900114,1200,134,100,1000 +19900114,1200,152,100,1000 +19900114,1500,131,100,850 +19900114,1500,132,100,850 +19900114,1500,134,100,1000 +19900114,1500,152,100,1000 +19900114,1800,131,100,1000 +19900114,1800,131,100,975 +19900114,1800,131,100,950 +19900114,1800,131,100,925 +19900114,1800,131,100,900 +19900114,1800,131,100,875 +19900114,1800,131,100,825 +19900114,1800,131,100,800 +19900114,1800,131,100,775 +19900114,1800,131,100,750 +19900114,1800,131,100,740 +19900114,1800,131,100,700 +19900114,1800,131,100,650 +19900114,1800,131,100,620 +19900114,1800,131,100,600 +19900114,1800,131,100,550 +19900114,1800,131,100,500 +19900114,1800,131,100,450 +19900114,1800,131,100,400 +19900114,1800,131,100,375 +19900114,1800,131,100,350 +19900114,1800,131,100,300 +19900114,1800,131,100,250 +19900114,1800,131,100,245 +19900114,1800,131,100,225 +19900114,1800,131,100,200 +19900114,1800,131,100,175 +19900114,1800,131,100,150 +19900114,1800,131,100,125 +19900114,1800,131,100,100 +19900114,1800,131,100,70 +19900114,1800,131,100,50 +19900114,1800,131,100,30 +19900114,1800,131,100,20 +19900114,1800,131,100,10 +19900114,1800,131,100,9 +19900114,1800,131,100,7 +19900114,1800,131,100,5 +19900114,1800,131,100,3 +19900114,1800,131,100,2 +19900114,1800,131,100,1 +19900114,1800,131,210,40 +19900114,1800,132,100,1000 +19900114,1800,132,100,975 +19900114,1800,132,100,950 +19900114,1800,132,100,925 +19900114,1800,132,100,900 +19900114,1800,132,100,875 +19900114,1800,132,100,825 +19900114,1800,132,100,800 +19900114,1800,132,100,775 +19900114,1800,132,100,750 +19900114,1800,132,100,740 +19900114,1800,132,100,700 +19900114,1800,132,100,650 +19900114,1800,132,100,620 +19900114,1800,132,100,600 +19900114,1800,132,100,550 +19900114,1800,132,100,500 +19900114,1800,132,100,450 +19900114,1800,132,100,400 +19900114,1800,132,100,375 +19900114,1800,132,100,350 +19900114,1800,132,100,300 +19900114,1800,132,100,250 +19900114,1800,132,100,245 +19900114,1800,132,100,225 +19900114,1800,132,100,200 +19900114,1800,132,100,175 +19900114,1800,132,100,150 +19900114,1800,132,100,125 +19900114,1800,132,100,100 +19900114,1800,132,100,70 +19900114,1800,132,100,50 +19900114,1800,132,100,30 +19900114,1800,132,100,20 +19900114,1800,132,100,10 +19900114,1800,132,100,9 +19900114,1800,132,100,7 +19900114,1800,132,100,5 +19900114,1800,132,100,3 +19900114,1800,132,100,2 +19900114,1800,132,100,1 +19900114,1800,132,210,40 +19900114,1800,130,100,1000 +19900114,1800,130,100,975 +19900114,1800,130,100,950 +19900114,1800,130,100,925 +19900114,1800,130,100,900 +19900114,1800,130,100,875 +19900114,1800,130,100,850 +19900114,1800,130,100,825 +19900114,1800,130,100,800 +19900114,1800,130,100,775 +19900114,1800,130,100,750 +19900114,1800,130,100,740 +19900114,1800,130,100,700 +19900114,1800,130,100,650 +19900114,1800,130,100,620 +19900114,1800,130,100,600 +19900114,1800,130,100,550 +19900114,1800,130,100,500 +19900114,1800,130,100,450 +19900114,1800,130,100,400 +19900114,1800,130,100,375 +19900114,1800,130,100,350 +19900114,1800,130,100,300 +19900114,1800,130,100,250 +19900114,1800,130,100,245 +19900114,1800,130,100,225 +19900114,1800,130,100,200 +19900114,1800,130,100,175 +19900114,1800,130,100,150 +19900114,1800,130,100,125 +19900114,1800,130,100,100 +19900114,1800,130,100,70 +19900114,1800,130,100,50 +19900114,1800,130,100,30 +19900114,1800,130,100,20 +19900114,1800,130,100,10 +19900114,1800,130,100,9 +19900114,1800,130,100,7 +19900114,1800,130,100,5 +19900114,1800,130,100,3 +19900114,1800,130,100,2 +19900114,1800,130,100,1 +19900114,1800,130,210,40 +19900114,1800,129,100,1000 +19900114,1800,129,100,975 +19900114,1800,129,100,950 +19900114,1800,129,100,925 +19900114,1800,129,100,900 +19900114,1800,129,100,875 +19900114,1800,129,100,850 +19900114,1800,129,100,825 +19900114,1800,129,100,800 +19900114,1800,129,100,775 +19900114,1800,129,100,750 +19900114,1800,129,100,740 +19900114,1800,129,100,700 +19900114,1800,129,100,650 +19900114,1800,129,100,620 +19900114,1800,129,100,600 +19900114,1800,129,100,550 +19900114,1800,129,100,500 +19900114,1800,129,100,450 +19900114,1800,129,100,400 +19900114,1800,129,100,375 +19900114,1800,129,100,350 +19900114,1800,129,100,300 +19900114,1800,129,100,250 +19900114,1800,129,100,245 +19900114,1800,129,100,225 +19900114,1800,129,100,200 +19900114,1800,129,100,175 +19900114,1800,129,100,150 +19900114,1800,129,100,125 +19900114,1800,129,100,100 +19900114,1800,129,100,70 +19900114,1800,129,100,50 +19900114,1800,129,100,30 +19900114,1800,129,100,20 +19900114,1800,129,100,10 +19900114,1800,129,100,9 +19900114,1800,129,100,7 +19900114,1800,129,100,5 +19900114,1800,129,100,3 +19900114,1800,129,100,2 +19900114,1800,129,100,1 +19900114,1800,129,210,40 +19900114,1800,157,100,1000 +19900114,1800,157,100,975 +19900114,1800,157,100,950 +19900114,1800,157,100,925 +19900114,1800,157,100,900 +19900114,1800,157,100,875 +19900114,1800,157,100,850 +19900114,1800,157,100,825 +19900114,1800,157,100,800 +19900114,1800,157,100,775 +19900114,1800,157,100,750 +19900114,1800,157,100,740 +19900114,1800,157,100,700 +19900114,1800,157,100,650 +19900114,1800,157,100,620 +19900114,1800,157,100,600 +19900114,1800,157,100,550 +19900114,1800,157,100,500 +19900114,1800,157,100,450 +19900114,1800,157,100,400 +19900114,1800,157,100,375 +19900114,1800,157,100,350 +19900114,1800,157,100,300 +19900114,1800,157,100,250 +19900114,1800,157,100,245 +19900114,1800,157,100,225 +19900114,1800,157,100,200 +19900114,1800,157,100,175 +19900114,1800,157,100,150 +19900114,1800,157,100,125 +19900114,1800,157,100,100 +19900114,1800,157,100,70 +19900114,1800,157,100,50 +19900114,1800,157,100,30 +19900114,1800,157,100,20 +19900114,1800,157,100,10 +19900114,1800,157,100,9 +19900114,1800,157,100,7 +19900114,1800,157,100,5 +19900114,1800,157,100,3 +19900114,1800,157,100,2 +19900114,1800,157,100,1 +19900114,1800,157,210,40 +19900114,1800,135,100,1000 +19900114,1800,135,100,975 +19900114,1800,135,100,950 +19900114,1800,135,100,925 +19900114,1800,135,100,900 +19900114,1800,135,100,875 +19900114,1800,135,100,850 +19900114,1800,135,100,825 +19900114,1800,135,100,800 +19900114,1800,135,100,775 +19900114,1800,135,100,750 +19900114,1800,135,100,740 +19900114,1800,135,100,700 +19900114,1800,135,100,650 +19900114,1800,135,100,620 +19900114,1800,135,100,600 +19900114,1800,135,100,550 +19900114,1800,135,100,500 +19900114,1800,135,100,450 +19900114,1800,135,100,400 +19900114,1800,135,100,375 +19900114,1800,135,100,350 +19900114,1800,135,100,300 +19900114,1800,135,100,250 +19900114,1800,135,100,245 +19900114,1800,135,100,225 +19900114,1800,135,100,200 +19900114,1800,135,100,175 +19900114,1800,135,100,150 +19900114,1800,135,100,125 +19900114,1800,135,100,100 +19900114,1800,135,100,70 +19900114,1800,135,100,50 +19900114,1800,135,100,30 +19900114,1800,135,100,20 +19900114,1800,135,100,10 +19900114,1800,135,100,9 +19900114,1800,135,100,7 +19900114,1800,135,100,5 +19900114,1800,135,100,3 +19900114,1800,135,100,2 +19900114,1800,135,100,1 +19900114,1800,135,210,40 +19900114,1800,138,100,1000 +19900114,1800,138,100,975 +19900114,1800,138,100,950 +19900114,1800,138,100,925 +19900114,1800,138,100,900 +19900114,1800,138,100,875 +19900114,1800,138,100,850 +19900114,1800,138,100,825 +19900114,1800,138,100,800 +19900114,1800,138,100,775 +19900114,1800,138,100,750 +19900114,1800,138,100,740 +19900114,1800,138,100,700 +19900114,1800,138,100,650 +19900114,1800,138,100,620 +19900114,1800,138,100,600 +19900114,1800,138,100,550 +19900114,1800,138,100,500 +19900114,1800,138,100,450 +19900114,1800,138,100,400 +19900114,1800,138,100,375 +19900114,1800,138,100,350 +19900114,1800,138,100,300 +19900114,1800,138,100,250 +19900114,1800,138,100,245 +19900114,1800,138,100,225 +19900114,1800,138,100,200 +19900114,1800,138,100,175 +19900114,1800,138,100,150 +19900114,1800,138,100,125 +19900114,1800,138,100,100 +19900114,1800,138,100,70 +19900114,1800,138,100,50 +19900114,1800,138,100,30 +19900114,1800,138,100,20 +19900114,1800,138,100,10 +19900114,1800,138,100,9 +19900114,1800,138,100,7 +19900114,1800,138,100,5 +19900114,1800,138,100,3 +19900114,1800,138,100,2 +19900114,1800,138,100,1 +19900114,1800,138,210,40 +19900114,1800,131,109,1 +19900114,1800,131,109,2 +19900114,1800,131,109,3 +19900114,1800,131,109,4 +19900114,1800,131,109,5 +19900114,1800,131,109,6 +19900114,1800,131,109,7 +19900114,1800,131,109,8 +19900114,1800,131,109,9 +19900114,1800,131,109,10 +19900114,1800,132,109,1 +19900114,1800,132,109,2 +19900114,1800,132,109,3 +19900114,1800,132,109,4 +19900114,1800,132,109,5 +19900114,1800,132,109,6 +19900114,1800,132,109,7 +19900114,1800,132,109,8 +19900114,1800,132,109,9 +19900114,1800,132,109,10 +19900114,1800,130,109,1 +19900114,1800,130,109,2 +19900114,1800,130,109,3 +19900114,1800,130,109,4 +19900114,1800,130,109,5 +19900114,1800,130,109,6 +19900114,1800,130,109,7 +19900114,1800,130,109,8 +19900114,1800,130,109,9 +19900114,1800,130,109,10 +19900114,1800,157,109,1 +19900114,1800,157,109,2 +19900114,1800,157,109,3 +19900114,1800,157,109,4 +19900114,1800,157,109,5 +19900114,1800,157,109,6 +19900114,1800,157,109,7 +19900114,1800,157,109,8 +19900114,1800,157,109,9 +19900114,1800,157,109,10 +19900114,1800,54,109,1 +19900114,1800,54,109,2 +19900114,1800,54,109,3 +19900114,1800,54,109,4 +19900114,1800,54,109,5 +19900114,1800,54,109,6 +19900114,1800,54,109,7 +19900114,1800,54,109,8 +19900114,1800,54,109,9 +19900114,1800,54,109,10 +19900114,1800,135,109,1 +19900114,1800,135,109,2 +19900114,1800,135,109,3 +19900114,1800,135,109,4 +19900114,1800,135,109,5 +19900114,1800,135,109,6 +19900114,1800,135,109,7 +19900114,1800,135,109,8 +19900114,1800,135,109,9 +19900114,1800,135,109,10 +19900114,1800,134,109,1 +19900114,1800,152,109,1 +19900114,1800,131,100,850 +19900114,1800,132,100,850 +19900114,1800,134,100,1000 +19900114,1800,152,100,1000 +19900114,2100,131,100,850 +19900114,2100,132,100,850 +19900114,2100,134,100,1000 +19900114,2100,152,100,1000 +19900115,0,131,100,1000 +19900115,0,131,100,975 +19900115,0,131,100,950 +19900115,0,131,100,925 +19900115,0,131,100,900 +19900115,0,131,100,875 +19900115,0,131,100,825 +19900115,0,131,100,800 +19900115,0,131,100,775 +19900115,0,131,100,750 +19900115,0,131,100,740 +19900115,0,131,100,700 +19900115,0,131,100,650 +19900115,0,131,100,620 +19900115,0,131,100,600 +19900115,0,131,100,550 +19900115,0,131,100,500 +19900115,0,131,100,450 +19900115,0,131,100,400 +19900115,0,131,100,375 +19900115,0,131,100,350 +19900115,0,131,100,300 +19900115,0,131,100,250 +19900115,0,131,100,245 +19900115,0,131,100,225 +19900115,0,131,100,200 +19900115,0,131,100,175 +19900115,0,131,100,150 +19900115,0,131,100,125 +19900115,0,131,100,100 +19900115,0,131,100,70 +19900115,0,131,100,50 +19900115,0,131,100,30 +19900115,0,131,100,20 +19900115,0,131,100,10 +19900115,0,131,100,9 +19900115,0,131,100,7 +19900115,0,131,100,5 +19900115,0,131,100,3 +19900115,0,131,100,2 +19900115,0,131,100,1 +19900115,0,131,210,40 +19900115,0,132,100,1000 +19900115,0,132,100,975 +19900115,0,132,100,950 +19900115,0,132,100,925 +19900115,0,132,100,900 +19900115,0,132,100,875 +19900115,0,132,100,825 +19900115,0,132,100,800 +19900115,0,132,100,775 +19900115,0,132,100,750 +19900115,0,132,100,740 +19900115,0,132,100,700 +19900115,0,132,100,650 +19900115,0,132,100,620 +19900115,0,132,100,600 +19900115,0,132,100,550 +19900115,0,132,100,500 +19900115,0,132,100,450 +19900115,0,132,100,400 +19900115,0,132,100,375 +19900115,0,132,100,350 +19900115,0,132,100,300 +19900115,0,132,100,250 +19900115,0,132,100,245 +19900115,0,132,100,225 +19900115,0,132,100,200 +19900115,0,132,100,175 +19900115,0,132,100,150 +19900115,0,132,100,125 +19900115,0,132,100,100 +19900115,0,132,100,70 +19900115,0,132,100,50 +19900115,0,132,100,30 +19900115,0,132,100,20 +19900115,0,132,100,10 +19900115,0,132,100,9 +19900115,0,132,100,7 +19900115,0,132,100,5 +19900115,0,132,100,3 +19900115,0,132,100,2 +19900115,0,132,100,1 +19900115,0,132,210,40 +19900115,0,130,100,1000 +19900115,0,130,100,975 +19900115,0,130,100,950 +19900115,0,130,100,925 +19900115,0,130,100,900 +19900115,0,130,100,875 +19900115,0,130,100,850 +19900115,0,130,100,825 +19900115,0,130,100,800 +19900115,0,130,100,775 +19900115,0,130,100,750 +19900115,0,130,100,740 +19900115,0,130,100,700 +19900115,0,130,100,650 +19900115,0,130,100,620 +19900115,0,130,100,600 +19900115,0,130,100,550 +19900115,0,130,100,500 +19900115,0,130,100,450 +19900115,0,130,100,400 +19900115,0,130,100,375 +19900115,0,130,100,350 +19900115,0,130,100,300 +19900115,0,130,100,250 +19900115,0,130,100,245 +19900115,0,130,100,225 +19900115,0,130,100,200 +19900115,0,130,100,175 +19900115,0,130,100,150 +19900115,0,130,100,125 +19900115,0,130,100,100 +19900115,0,130,100,70 +19900115,0,130,100,50 +19900115,0,130,100,30 +19900115,0,130,100,20 +19900115,0,130,100,10 +19900115,0,130,100,9 +19900115,0,130,100,7 +19900115,0,130,100,5 +19900115,0,130,100,3 +19900115,0,130,100,2 +19900115,0,130,100,1 +19900115,0,130,210,40 +19900115,0,129,100,1000 +19900115,0,129,100,975 +19900115,0,129,100,950 +19900115,0,129,100,925 +19900115,0,129,100,900 +19900115,0,129,100,875 +19900115,0,129,100,850 +19900115,0,129,100,825 +19900115,0,129,100,800 +19900115,0,129,100,775 +19900115,0,129,100,750 +19900115,0,129,100,740 +19900115,0,129,100,700 +19900115,0,129,100,650 +19900115,0,129,100,620 +19900115,0,129,100,600 +19900115,0,129,100,550 +19900115,0,129,100,500 +19900115,0,129,100,450 +19900115,0,129,100,400 +19900115,0,129,100,375 +19900115,0,129,100,350 +19900115,0,129,100,300 +19900115,0,129,100,250 +19900115,0,129,100,245 +19900115,0,129,100,225 +19900115,0,129,100,200 +19900115,0,129,100,175 +19900115,0,129,100,150 +19900115,0,129,100,125 +19900115,0,129,100,100 +19900115,0,129,100,70 +19900115,0,129,100,50 +19900115,0,129,100,30 +19900115,0,129,100,20 +19900115,0,129,100,10 +19900115,0,129,100,9 +19900115,0,129,100,7 +19900115,0,129,100,5 +19900115,0,129,100,3 +19900115,0,129,100,2 +19900115,0,129,100,1 +19900115,0,129,210,40 +19900115,0,157,100,1000 +19900115,0,157,100,975 +19900115,0,157,100,950 +19900115,0,157,100,925 +19900115,0,157,100,900 +19900115,0,157,100,875 +19900115,0,157,100,850 +19900115,0,157,100,825 +19900115,0,157,100,800 +19900115,0,157,100,775 +19900115,0,157,100,750 +19900115,0,157,100,740 +19900115,0,157,100,700 +19900115,0,157,100,650 +19900115,0,157,100,620 +19900115,0,157,100,600 +19900115,0,157,100,550 +19900115,0,157,100,500 +19900115,0,157,100,450 +19900115,0,157,100,400 +19900115,0,157,100,375 +19900115,0,157,100,350 +19900115,0,157,100,300 +19900115,0,157,100,250 +19900115,0,157,100,245 +19900115,0,157,100,225 +19900115,0,157,100,200 +19900115,0,157,100,175 +19900115,0,157,100,150 +19900115,0,157,100,125 +19900115,0,157,100,100 +19900115,0,157,100,70 +19900115,0,157,100,50 +19900115,0,157,100,30 +19900115,0,157,100,20 +19900115,0,157,100,10 +19900115,0,157,100,9 +19900115,0,157,100,7 +19900115,0,157,100,5 +19900115,0,157,100,3 +19900115,0,157,100,2 +19900115,0,157,100,1 +19900115,0,157,210,40 +19900115,0,135,100,1000 +19900115,0,135,100,975 +19900115,0,135,100,950 +19900115,0,135,100,925 +19900115,0,135,100,900 +19900115,0,135,100,875 +19900115,0,135,100,850 +19900115,0,135,100,825 +19900115,0,135,100,800 +19900115,0,135,100,775 +19900115,0,135,100,750 +19900115,0,135,100,740 +19900115,0,135,100,700 +19900115,0,135,100,650 +19900115,0,135,100,620 +19900115,0,135,100,600 +19900115,0,135,100,550 +19900115,0,135,100,500 +19900115,0,135,100,450 +19900115,0,135,100,400 +19900115,0,135,100,375 +19900115,0,135,100,350 +19900115,0,135,100,300 +19900115,0,135,100,250 +19900115,0,135,100,245 +19900115,0,135,100,225 +19900115,0,135,100,200 +19900115,0,135,100,175 +19900115,0,135,100,150 +19900115,0,135,100,125 +19900115,0,135,100,100 +19900115,0,135,100,70 +19900115,0,135,100,50 +19900115,0,135,100,30 +19900115,0,135,100,20 +19900115,0,135,100,10 +19900115,0,135,100,9 +19900115,0,135,100,7 +19900115,0,135,100,5 +19900115,0,135,100,3 +19900115,0,135,100,2 +19900115,0,135,100,1 +19900115,0,135,210,40 +19900115,0,138,100,1000 +19900115,0,138,100,975 +19900115,0,138,100,950 +19900115,0,138,100,925 +19900115,0,138,100,900 +19900115,0,138,100,875 +19900115,0,138,100,850 +19900115,0,138,100,825 +19900115,0,138,100,800 +19900115,0,138,100,775 +19900115,0,138,100,750 +19900115,0,138,100,740 +19900115,0,138,100,700 +19900115,0,138,100,650 +19900115,0,138,100,620 +19900115,0,138,100,600 +19900115,0,138,100,550 +19900115,0,138,100,500 +19900115,0,138,100,450 +19900115,0,138,100,400 +19900115,0,138,100,375 +19900115,0,138,100,350 +19900115,0,138,100,300 +19900115,0,138,100,250 +19900115,0,138,100,245 +19900115,0,138,100,225 +19900115,0,138,100,200 +19900115,0,138,100,175 +19900115,0,138,100,150 +19900115,0,138,100,125 +19900115,0,138,100,100 +19900115,0,138,100,70 +19900115,0,138,100,50 +19900115,0,138,100,30 +19900115,0,138,100,20 +19900115,0,138,100,10 +19900115,0,138,100,9 +19900115,0,138,100,7 +19900115,0,138,100,5 +19900115,0,138,100,3 +19900115,0,138,100,2 +19900115,0,138,100,1 +19900115,0,138,210,40 +19900115,0,131,109,1 +19900115,0,131,109,2 +19900115,0,131,109,3 +19900115,0,131,109,4 +19900115,0,131,109,5 +19900115,0,131,109,6 +19900115,0,131,109,7 +19900115,0,131,109,8 +19900115,0,131,109,9 +19900115,0,131,109,10 +19900115,0,132,109,1 +19900115,0,132,109,2 +19900115,0,132,109,3 +19900115,0,132,109,4 +19900115,0,132,109,5 +19900115,0,132,109,6 +19900115,0,132,109,7 +19900115,0,132,109,8 +19900115,0,132,109,9 +19900115,0,132,109,10 +19900115,0,130,109,1 +19900115,0,130,109,2 +19900115,0,130,109,3 +19900115,0,130,109,4 +19900115,0,130,109,5 +19900115,0,130,109,6 +19900115,0,130,109,7 +19900115,0,130,109,8 +19900115,0,130,109,9 +19900115,0,130,109,10 +19900115,0,157,109,1 +19900115,0,157,109,2 +19900115,0,157,109,3 +19900115,0,157,109,4 +19900115,0,157,109,5 +19900115,0,157,109,6 +19900115,0,157,109,7 +19900115,0,157,109,8 +19900115,0,157,109,9 +19900115,0,157,109,10 +19900115,0,54,109,1 +19900115,0,54,109,2 +19900115,0,54,109,3 +19900115,0,54,109,4 +19900115,0,54,109,5 +19900115,0,54,109,6 +19900115,0,54,109,7 +19900115,0,54,109,8 +19900115,0,54,109,9 +19900115,0,54,109,10 +19900115,0,135,109,1 +19900115,0,135,109,2 +19900115,0,135,109,3 +19900115,0,135,109,4 +19900115,0,135,109,5 +19900115,0,135,109,6 +19900115,0,135,109,7 +19900115,0,135,109,8 +19900115,0,135,109,9 +19900115,0,135,109,10 +19900115,0,134,109,1 +19900115,0,152,109,1 +19900115,0,131,100,850 +19900115,0,132,100,850 +19900115,0,134,100,1000 +19900115,0,152,100,1000 +19900115,300,131,100,850 +19900115,300,132,100,850 +19900115,300,134,100,1000 +19900115,300,152,100,1000 +19900115,600,131,100,1000 +19900115,600,131,100,975 +19900115,600,131,100,950 +19900115,600,131,100,925 +19900115,600,131,100,900 +19900115,600,131,100,875 +19900115,600,131,100,825 +19900115,600,131,100,800 +19900115,600,131,100,775 +19900115,600,131,100,750 +19900115,600,131,100,740 +19900115,600,131,100,700 +19900115,600,131,100,650 +19900115,600,131,100,620 +19900115,600,131,100,600 +19900115,600,131,100,550 +19900115,600,131,100,500 +19900115,600,131,100,450 +19900115,600,131,100,400 +19900115,600,131,100,375 +19900115,600,131,100,350 +19900115,600,131,100,300 +19900115,600,131,100,250 +19900115,600,131,100,245 +19900115,600,131,100,225 +19900115,600,131,100,200 +19900115,600,131,100,175 +19900115,600,131,100,150 +19900115,600,131,100,125 +19900115,600,131,100,100 +19900115,600,131,100,70 +19900115,600,131,100,50 +19900115,600,131,100,30 +19900115,600,131,100,20 +19900115,600,131,100,10 +19900115,600,131,100,9 +19900115,600,131,100,7 +19900115,600,131,100,5 +19900115,600,131,100,3 +19900115,600,131,100,2 +19900115,600,131,100,1 +19900115,600,131,210,40 +19900115,600,132,100,1000 +19900115,600,132,100,975 +19900115,600,132,100,950 +19900115,600,132,100,925 +19900115,600,132,100,900 +19900115,600,132,100,875 +19900115,600,132,100,825 +19900115,600,132,100,800 +19900115,600,132,100,775 +19900115,600,132,100,750 +19900115,600,132,100,740 +19900115,600,132,100,700 +19900115,600,132,100,650 +19900115,600,132,100,620 +19900115,600,132,100,600 +19900115,600,132,100,550 +19900115,600,132,100,500 +19900115,600,132,100,450 +19900115,600,132,100,400 +19900115,600,132,100,375 +19900115,600,132,100,350 +19900115,600,132,100,300 +19900115,600,132,100,250 +19900115,600,132,100,245 +19900115,600,132,100,225 +19900115,600,132,100,200 +19900115,600,132,100,175 +19900115,600,132,100,150 +19900115,600,132,100,125 +19900115,600,132,100,100 +19900115,600,132,100,70 +19900115,600,132,100,50 +19900115,600,132,100,30 +19900115,600,132,100,20 +19900115,600,132,100,10 +19900115,600,132,100,9 +19900115,600,132,100,7 +19900115,600,132,100,5 +19900115,600,132,100,3 +19900115,600,132,100,2 +19900115,600,132,100,1 +19900115,600,132,210,40 +19900115,600,130,100,1000 +19900115,600,130,100,975 +19900115,600,130,100,950 +19900115,600,130,100,925 +19900115,600,130,100,900 +19900115,600,130,100,875 +19900115,600,130,100,850 +19900115,600,130,100,825 +19900115,600,130,100,800 +19900115,600,130,100,775 +19900115,600,130,100,750 +19900115,600,130,100,740 +19900115,600,130,100,700 +19900115,600,130,100,650 +19900115,600,130,100,620 +19900115,600,130,100,600 +19900115,600,130,100,550 +19900115,600,130,100,500 +19900115,600,130,100,450 +19900115,600,130,100,400 +19900115,600,130,100,375 +19900115,600,130,100,350 +19900115,600,130,100,300 +19900115,600,130,100,250 +19900115,600,130,100,245 +19900115,600,130,100,225 +19900115,600,130,100,200 +19900115,600,130,100,175 +19900115,600,130,100,150 +19900115,600,130,100,125 +19900115,600,130,100,100 +19900115,600,130,100,70 +19900115,600,130,100,50 +19900115,600,130,100,30 +19900115,600,130,100,20 +19900115,600,130,100,10 +19900115,600,130,100,9 +19900115,600,130,100,7 +19900115,600,130,100,5 +19900115,600,130,100,3 +19900115,600,130,100,2 +19900115,600,130,100,1 +19900115,600,130,210,40 +19900115,600,129,100,1000 +19900115,600,129,100,975 +19900115,600,129,100,950 +19900115,600,129,100,925 +19900115,600,129,100,900 +19900115,600,129,100,875 +19900115,600,129,100,850 +19900115,600,129,100,825 +19900115,600,129,100,800 +19900115,600,129,100,775 +19900115,600,129,100,750 +19900115,600,129,100,740 +19900115,600,129,100,700 +19900115,600,129,100,650 +19900115,600,129,100,620 +19900115,600,129,100,600 +19900115,600,129,100,550 +19900115,600,129,100,500 +19900115,600,129,100,450 +19900115,600,129,100,400 +19900115,600,129,100,375 +19900115,600,129,100,350 +19900115,600,129,100,300 +19900115,600,129,100,250 +19900115,600,129,100,245 +19900115,600,129,100,225 +19900115,600,129,100,200 +19900115,600,129,100,175 +19900115,600,129,100,150 +19900115,600,129,100,125 +19900115,600,129,100,100 +19900115,600,129,100,70 +19900115,600,129,100,50 +19900115,600,129,100,30 +19900115,600,129,100,20 +19900115,600,129,100,10 +19900115,600,129,100,9 +19900115,600,129,100,7 +19900115,600,129,100,5 +19900115,600,129,100,3 +19900115,600,129,100,2 +19900115,600,129,100,1 +19900115,600,129,210,40 +19900115,600,157,100,1000 +19900115,600,157,100,975 +19900115,600,157,100,950 +19900115,600,157,100,925 +19900115,600,157,100,900 +19900115,600,157,100,875 +19900115,600,157,100,850 +19900115,600,157,100,825 +19900115,600,157,100,800 +19900115,600,157,100,775 +19900115,600,157,100,750 +19900115,600,157,100,740 +19900115,600,157,100,700 +19900115,600,157,100,650 +19900115,600,157,100,620 +19900115,600,157,100,600 +19900115,600,157,100,550 +19900115,600,157,100,500 +19900115,600,157,100,450 +19900115,600,157,100,400 +19900115,600,157,100,375 +19900115,600,157,100,350 +19900115,600,157,100,300 +19900115,600,157,100,250 +19900115,600,157,100,245 +19900115,600,157,100,225 +19900115,600,157,100,200 +19900115,600,157,100,175 +19900115,600,157,100,150 +19900115,600,157,100,125 +19900115,600,157,100,100 +19900115,600,157,100,70 +19900115,600,157,100,50 +19900115,600,157,100,30 +19900115,600,157,100,20 +19900115,600,157,100,10 +19900115,600,157,100,9 +19900115,600,157,100,7 +19900115,600,157,100,5 +19900115,600,157,100,3 +19900115,600,157,100,2 +19900115,600,157,100,1 +19900115,600,157,210,40 +19900115,600,135,100,1000 +19900115,600,135,100,975 +19900115,600,135,100,950 +19900115,600,135,100,925 +19900115,600,135,100,900 +19900115,600,135,100,875 +19900115,600,135,100,850 +19900115,600,135,100,825 +19900115,600,135,100,800 +19900115,600,135,100,775 +19900115,600,135,100,750 +19900115,600,135,100,740 +19900115,600,135,100,700 +19900115,600,135,100,650 +19900115,600,135,100,620 +19900115,600,135,100,600 +19900115,600,135,100,550 +19900115,600,135,100,500 +19900115,600,135,100,450 +19900115,600,135,100,400 +19900115,600,135,100,375 +19900115,600,135,100,350 +19900115,600,135,100,300 +19900115,600,135,100,250 +19900115,600,135,100,245 +19900115,600,135,100,225 +19900115,600,135,100,200 +19900115,600,135,100,175 +19900115,600,135,100,150 +19900115,600,135,100,125 +19900115,600,135,100,100 +19900115,600,135,100,70 +19900115,600,135,100,50 +19900115,600,135,100,30 +19900115,600,135,100,20 +19900115,600,135,100,10 +19900115,600,135,100,9 +19900115,600,135,100,7 +19900115,600,135,100,5 +19900115,600,135,100,3 +19900115,600,135,100,2 +19900115,600,135,100,1 +19900115,600,135,210,40 +19900115,600,138,100,1000 +19900115,600,138,100,975 +19900115,600,138,100,950 +19900115,600,138,100,925 +19900115,600,138,100,900 +19900115,600,138,100,875 +19900115,600,138,100,850 +19900115,600,138,100,825 +19900115,600,138,100,800 +19900115,600,138,100,775 +19900115,600,138,100,750 +19900115,600,138,100,740 +19900115,600,138,100,700 +19900115,600,138,100,650 +19900115,600,138,100,620 +19900115,600,138,100,600 +19900115,600,138,100,550 +19900115,600,138,100,500 +19900115,600,138,100,450 +19900115,600,138,100,400 +19900115,600,138,100,375 +19900115,600,138,100,350 +19900115,600,138,100,300 +19900115,600,138,100,250 +19900115,600,138,100,245 +19900115,600,138,100,225 +19900115,600,138,100,200 +19900115,600,138,100,175 +19900115,600,138,100,150 +19900115,600,138,100,125 +19900115,600,138,100,100 +19900115,600,138,100,70 +19900115,600,138,100,50 +19900115,600,138,100,30 +19900115,600,138,100,20 +19900115,600,138,100,10 +19900115,600,138,100,9 +19900115,600,138,100,7 +19900115,600,138,100,5 +19900115,600,138,100,3 +19900115,600,138,100,2 +19900115,600,138,100,1 +19900115,600,138,210,40 +19900115,600,131,109,1 +19900115,600,131,109,2 +19900115,600,131,109,3 +19900115,600,131,109,4 +19900115,600,131,109,5 +19900115,600,131,109,6 +19900115,600,131,109,7 +19900115,600,131,109,8 +19900115,600,131,109,9 +19900115,600,131,109,10 +19900115,600,132,109,1 +19900115,600,132,109,2 +19900115,600,132,109,3 +19900115,600,132,109,4 +19900115,600,132,109,5 +19900115,600,132,109,6 +19900115,600,132,109,7 +19900115,600,132,109,8 +19900115,600,132,109,9 +19900115,600,132,109,10 +19900115,600,130,109,1 +19900115,600,130,109,2 +19900115,600,130,109,3 +19900115,600,130,109,4 +19900115,600,130,109,5 +19900115,600,130,109,6 +19900115,600,130,109,7 +19900115,600,130,109,8 +19900115,600,130,109,9 +19900115,600,130,109,10 +19900115,600,157,109,1 +19900115,600,157,109,2 +19900115,600,157,109,3 +19900115,600,157,109,4 +19900115,600,157,109,5 +19900115,600,157,109,6 +19900115,600,157,109,7 +19900115,600,157,109,8 +19900115,600,157,109,9 +19900115,600,157,109,10 +19900115,600,54,109,1 +19900115,600,54,109,2 +19900115,600,54,109,3 +19900115,600,54,109,4 +19900115,600,54,109,5 +19900115,600,54,109,6 +19900115,600,54,109,7 +19900115,600,54,109,8 +19900115,600,54,109,9 +19900115,600,54,109,10 +19900115,600,135,109,1 +19900115,600,135,109,2 +19900115,600,135,109,3 +19900115,600,135,109,4 +19900115,600,135,109,5 +19900115,600,135,109,6 +19900115,600,135,109,7 +19900115,600,135,109,8 +19900115,600,135,109,9 +19900115,600,135,109,10 +19900115,600,134,109,1 +19900115,600,152,109,1 +19900115,600,131,100,850 +19900115,600,132,100,850 +19900115,600,134,100,1000 +19900115,600,152,100,1000 +19900115,900,131,100,850 +19900115,900,132,100,850 +19900115,900,134,100,1000 +19900115,900,152,100,1000 +19900115,1200,131,100,1000 +19900115,1200,131,100,975 +19900115,1200,131,100,950 +19900115,1200,131,100,925 +19900115,1200,131,100,900 +19900115,1200,131,100,875 +19900115,1200,131,100,825 +19900115,1200,131,100,800 +19900115,1200,131,100,775 +19900115,1200,131,100,750 +19900115,1200,131,100,740 +19900115,1200,131,100,700 +19900115,1200,131,100,650 +19900115,1200,131,100,620 +19900115,1200,131,100,600 +19900115,1200,131,100,550 +19900115,1200,131,100,500 +19900115,1200,131,100,450 +19900115,1200,131,100,400 +19900115,1200,131,100,375 +19900115,1200,131,100,350 +19900115,1200,131,100,300 +19900115,1200,131,100,250 +19900115,1200,131,100,245 +19900115,1200,131,100,225 +19900115,1200,131,100,200 +19900115,1200,131,100,175 +19900115,1200,131,100,150 +19900115,1200,131,100,125 +19900115,1200,131,100,100 +19900115,1200,131,100,70 +19900115,1200,131,100,50 +19900115,1200,131,100,30 +19900115,1200,131,100,20 +19900115,1200,131,100,10 +19900115,1200,131,100,9 +19900115,1200,131,100,7 +19900115,1200,131,100,5 +19900115,1200,131,100,3 +19900115,1200,131,100,2 +19900115,1200,131,100,1 +19900115,1200,131,210,40 +19900115,1200,132,100,1000 +19900115,1200,132,100,975 +19900115,1200,132,100,950 +19900115,1200,132,100,925 +19900115,1200,132,100,900 +19900115,1200,132,100,875 +19900115,1200,132,100,825 +19900115,1200,132,100,800 +19900115,1200,132,100,775 +19900115,1200,132,100,750 +19900115,1200,132,100,740 +19900115,1200,132,100,700 +19900115,1200,132,100,650 +19900115,1200,132,100,620 +19900115,1200,132,100,600 +19900115,1200,132,100,550 +19900115,1200,132,100,500 +19900115,1200,132,100,450 +19900115,1200,132,100,400 +19900115,1200,132,100,375 +19900115,1200,132,100,350 +19900115,1200,132,100,300 +19900115,1200,132,100,250 +19900115,1200,132,100,245 +19900115,1200,132,100,225 +19900115,1200,132,100,200 +19900115,1200,132,100,175 +19900115,1200,132,100,150 +19900115,1200,132,100,125 +19900115,1200,132,100,100 +19900115,1200,132,100,70 +19900115,1200,132,100,50 +19900115,1200,132,100,30 +19900115,1200,132,100,20 +19900115,1200,132,100,10 +19900115,1200,132,100,9 +19900115,1200,132,100,7 +19900115,1200,132,100,5 +19900115,1200,132,100,3 +19900115,1200,132,100,2 +19900115,1200,132,100,1 +19900115,1200,132,210,40 +19900115,1200,130,100,1000 +19900115,1200,130,100,975 +19900115,1200,130,100,950 +19900115,1200,130,100,925 +19900115,1200,130,100,900 +19900115,1200,130,100,875 +19900115,1200,130,100,850 +19900115,1200,130,100,825 +19900115,1200,130,100,800 +19900115,1200,130,100,775 +19900115,1200,130,100,750 +19900115,1200,130,100,740 +19900115,1200,130,100,700 +19900115,1200,130,100,650 +19900115,1200,130,100,620 +19900115,1200,130,100,600 +19900115,1200,130,100,550 +19900115,1200,130,100,500 +19900115,1200,130,100,450 +19900115,1200,130,100,400 +19900115,1200,130,100,375 +19900115,1200,130,100,350 +19900115,1200,130,100,300 +19900115,1200,130,100,250 +19900115,1200,130,100,245 +19900115,1200,130,100,225 +19900115,1200,130,100,200 +19900115,1200,130,100,175 +19900115,1200,130,100,150 +19900115,1200,130,100,125 +19900115,1200,130,100,100 +19900115,1200,130,100,70 +19900115,1200,130,100,50 +19900115,1200,130,100,30 +19900115,1200,130,100,20 +19900115,1200,130,100,10 +19900115,1200,130,100,9 +19900115,1200,130,100,7 +19900115,1200,130,100,5 +19900115,1200,130,100,3 +19900115,1200,130,100,2 +19900115,1200,130,100,1 +19900115,1200,130,210,40 +19900115,1200,129,100,1000 +19900115,1200,129,100,975 +19900115,1200,129,100,950 +19900115,1200,129,100,925 +19900115,1200,129,100,900 +19900115,1200,129,100,875 +19900115,1200,129,100,850 +19900115,1200,129,100,825 +19900115,1200,129,100,800 +19900115,1200,129,100,775 +19900115,1200,129,100,750 +19900115,1200,129,100,740 +19900115,1200,129,100,700 +19900115,1200,129,100,650 +19900115,1200,129,100,620 +19900115,1200,129,100,600 +19900115,1200,129,100,550 +19900115,1200,129,100,500 +19900115,1200,129,100,450 +19900115,1200,129,100,400 +19900115,1200,129,100,375 +19900115,1200,129,100,350 +19900115,1200,129,100,300 +19900115,1200,129,100,250 +19900115,1200,129,100,245 +19900115,1200,129,100,225 +19900115,1200,129,100,200 +19900115,1200,129,100,175 +19900115,1200,129,100,150 +19900115,1200,129,100,125 +19900115,1200,129,100,100 +19900115,1200,129,100,70 +19900115,1200,129,100,50 +19900115,1200,129,100,30 +19900115,1200,129,100,20 +19900115,1200,129,100,10 +19900115,1200,129,100,9 +19900115,1200,129,100,7 +19900115,1200,129,100,5 +19900115,1200,129,100,3 +19900115,1200,129,100,2 +19900115,1200,129,100,1 +19900115,1200,129,210,40 +19900115,1200,157,100,1000 +19900115,1200,157,100,975 +19900115,1200,157,100,950 +19900115,1200,157,100,925 +19900115,1200,157,100,900 +19900115,1200,157,100,875 +19900115,1200,157,100,850 +19900115,1200,157,100,825 +19900115,1200,157,100,800 +19900115,1200,157,100,775 +19900115,1200,157,100,750 +19900115,1200,157,100,740 +19900115,1200,157,100,700 +19900115,1200,157,100,650 +19900115,1200,157,100,620 +19900115,1200,157,100,600 +19900115,1200,157,100,550 +19900115,1200,157,100,500 +19900115,1200,157,100,450 +19900115,1200,157,100,400 +19900115,1200,157,100,375 +19900115,1200,157,100,350 +19900115,1200,157,100,300 +19900115,1200,157,100,250 +19900115,1200,157,100,245 +19900115,1200,157,100,225 +19900115,1200,157,100,200 +19900115,1200,157,100,175 +19900115,1200,157,100,150 +19900115,1200,157,100,125 +19900115,1200,157,100,100 +19900115,1200,157,100,70 +19900115,1200,157,100,50 +19900115,1200,157,100,30 +19900115,1200,157,100,20 +19900115,1200,157,100,10 +19900115,1200,157,100,9 +19900115,1200,157,100,7 +19900115,1200,157,100,5 +19900115,1200,157,100,3 +19900115,1200,157,100,2 +19900115,1200,157,100,1 +19900115,1200,157,210,40 +19900115,1200,135,100,1000 +19900115,1200,135,100,975 +19900115,1200,135,100,950 +19900115,1200,135,100,925 +19900115,1200,135,100,900 +19900115,1200,135,100,875 +19900115,1200,135,100,850 +19900115,1200,135,100,825 +19900115,1200,135,100,800 +19900115,1200,135,100,775 +19900115,1200,135,100,750 +19900115,1200,135,100,740 +19900115,1200,135,100,700 +19900115,1200,135,100,650 +19900115,1200,135,100,620 +19900115,1200,135,100,600 +19900115,1200,135,100,550 +19900115,1200,135,100,500 +19900115,1200,135,100,450 +19900115,1200,135,100,400 +19900115,1200,135,100,375 +19900115,1200,135,100,350 +19900115,1200,135,100,300 +19900115,1200,135,100,250 +19900115,1200,135,100,245 +19900115,1200,135,100,225 +19900115,1200,135,100,200 +19900115,1200,135,100,175 +19900115,1200,135,100,150 +19900115,1200,135,100,125 +19900115,1200,135,100,100 +19900115,1200,135,100,70 +19900115,1200,135,100,50 +19900115,1200,135,100,30 +19900115,1200,135,100,20 +19900115,1200,135,100,10 +19900115,1200,135,100,9 +19900115,1200,135,100,7 +19900115,1200,135,100,5 +19900115,1200,135,100,3 +19900115,1200,135,100,2 +19900115,1200,135,100,1 +19900115,1200,135,210,40 +19900115,1200,138,100,1000 +19900115,1200,138,100,975 +19900115,1200,138,100,950 +19900115,1200,138,100,925 +19900115,1200,138,100,900 +19900115,1200,138,100,875 +19900115,1200,138,100,850 +19900115,1200,138,100,825 +19900115,1200,138,100,800 +19900115,1200,138,100,775 +19900115,1200,138,100,750 +19900115,1200,138,100,740 +19900115,1200,138,100,700 +19900115,1200,138,100,650 +19900115,1200,138,100,620 +19900115,1200,138,100,600 +19900115,1200,138,100,550 +19900115,1200,138,100,500 +19900115,1200,138,100,450 +19900115,1200,138,100,400 +19900115,1200,138,100,375 +19900115,1200,138,100,350 +19900115,1200,138,100,300 +19900115,1200,138,100,250 +19900115,1200,138,100,245 +19900115,1200,138,100,225 +19900115,1200,138,100,200 +19900115,1200,138,100,175 +19900115,1200,138,100,150 +19900115,1200,138,100,125 +19900115,1200,138,100,100 +19900115,1200,138,100,70 +19900115,1200,138,100,50 +19900115,1200,138,100,30 +19900115,1200,138,100,20 +19900115,1200,138,100,10 +19900115,1200,138,100,9 +19900115,1200,138,100,7 +19900115,1200,138,100,5 +19900115,1200,138,100,3 +19900115,1200,138,100,2 +19900115,1200,138,100,1 +19900115,1200,138,210,40 +19900115,1200,131,109,1 +19900115,1200,131,109,2 +19900115,1200,131,109,3 +19900115,1200,131,109,4 +19900115,1200,131,109,5 +19900115,1200,131,109,6 +19900115,1200,131,109,7 +19900115,1200,131,109,8 +19900115,1200,131,109,9 +19900115,1200,131,109,10 +19900115,1200,132,109,1 +19900115,1200,132,109,2 +19900115,1200,132,109,3 +19900115,1200,132,109,4 +19900115,1200,132,109,5 +19900115,1200,132,109,6 +19900115,1200,132,109,7 +19900115,1200,132,109,8 +19900115,1200,132,109,9 +19900115,1200,132,109,10 +19900115,1200,130,109,1 +19900115,1200,130,109,2 +19900115,1200,130,109,3 +19900115,1200,130,109,4 +19900115,1200,130,109,5 +19900115,1200,130,109,6 +19900115,1200,130,109,7 +19900115,1200,130,109,8 +19900115,1200,130,109,9 +19900115,1200,130,109,10 +19900115,1200,157,109,1 +19900115,1200,157,109,2 +19900115,1200,157,109,3 +19900115,1200,157,109,4 +19900115,1200,157,109,5 +19900115,1200,157,109,6 +19900115,1200,157,109,7 +19900115,1200,157,109,8 +19900115,1200,157,109,9 +19900115,1200,157,109,10 +19900115,1200,54,109,1 +19900115,1200,54,109,2 +19900115,1200,54,109,3 +19900115,1200,54,109,4 +19900115,1200,54,109,5 +19900115,1200,54,109,6 +19900115,1200,54,109,7 +19900115,1200,54,109,8 +19900115,1200,54,109,9 +19900115,1200,54,109,10 +19900115,1200,135,109,1 +19900115,1200,135,109,2 +19900115,1200,135,109,3 +19900115,1200,135,109,4 +19900115,1200,135,109,5 +19900115,1200,135,109,6 +19900115,1200,135,109,7 +19900115,1200,135,109,8 +19900115,1200,135,109,9 +19900115,1200,135,109,10 +19900115,1200,134,109,1 +19900115,1200,152,109,1 +19900115,1200,131,100,850 +19900115,1200,132,100,850 +19900115,1200,134,100,1000 +19900115,1200,152,100,1000 +19900115,1500,131,100,850 +19900115,1500,132,100,850 +19900115,1500,134,100,1000 +19900115,1500,152,100,1000 +19900115,1800,131,100,1000 +19900115,1800,131,100,975 +19900115,1800,131,100,950 +19900115,1800,131,100,925 +19900115,1800,131,100,900 +19900115,1800,131,100,875 +19900115,1800,131,100,825 +19900115,1800,131,100,800 +19900115,1800,131,100,775 +19900115,1800,131,100,750 +19900115,1800,131,100,740 +19900115,1800,131,100,700 +19900115,1800,131,100,650 +19900115,1800,131,100,620 +19900115,1800,131,100,600 +19900115,1800,131,100,550 +19900115,1800,131,100,500 +19900115,1800,131,100,450 +19900115,1800,131,100,400 +19900115,1800,131,100,375 +19900115,1800,131,100,350 +19900115,1800,131,100,300 +19900115,1800,131,100,250 +19900115,1800,131,100,245 +19900115,1800,131,100,225 +19900115,1800,131,100,200 +19900115,1800,131,100,175 +19900115,1800,131,100,150 +19900115,1800,131,100,125 +19900115,1800,131,100,100 +19900115,1800,131,100,70 +19900115,1800,131,100,50 +19900115,1800,131,100,30 +19900115,1800,131,100,20 +19900115,1800,131,100,10 +19900115,1800,131,100,9 +19900115,1800,131,100,7 +19900115,1800,131,100,5 +19900115,1800,131,100,3 +19900115,1800,131,100,2 +19900115,1800,131,100,1 +19900115,1800,131,210,40 +19900115,1800,132,100,1000 +19900115,1800,132,100,975 +19900115,1800,132,100,950 +19900115,1800,132,100,925 +19900115,1800,132,100,900 +19900115,1800,132,100,875 +19900115,1800,132,100,825 +19900115,1800,132,100,800 +19900115,1800,132,100,775 +19900115,1800,132,100,750 +19900115,1800,132,100,740 +19900115,1800,132,100,700 +19900115,1800,132,100,650 +19900115,1800,132,100,620 +19900115,1800,132,100,600 +19900115,1800,132,100,550 +19900115,1800,132,100,500 +19900115,1800,132,100,450 +19900115,1800,132,100,400 +19900115,1800,132,100,375 +19900115,1800,132,100,350 +19900115,1800,132,100,300 +19900115,1800,132,100,250 +19900115,1800,132,100,245 +19900115,1800,132,100,225 +19900115,1800,132,100,200 +19900115,1800,132,100,175 +19900115,1800,132,100,150 +19900115,1800,132,100,125 +19900115,1800,132,100,100 +19900115,1800,132,100,70 +19900115,1800,132,100,50 +19900115,1800,132,100,30 +19900115,1800,132,100,20 +19900115,1800,132,100,10 +19900115,1800,132,100,9 +19900115,1800,132,100,7 +19900115,1800,132,100,5 +19900115,1800,132,100,3 +19900115,1800,132,100,2 +19900115,1800,132,100,1 +19900115,1800,132,210,40 +19900115,1800,130,100,1000 +19900115,1800,130,100,975 +19900115,1800,130,100,950 +19900115,1800,130,100,925 +19900115,1800,130,100,900 +19900115,1800,130,100,875 +19900115,1800,130,100,850 +19900115,1800,130,100,825 +19900115,1800,130,100,800 +19900115,1800,130,100,775 +19900115,1800,130,100,750 +19900115,1800,130,100,740 +19900115,1800,130,100,700 +19900115,1800,130,100,650 +19900115,1800,130,100,620 +19900115,1800,130,100,600 +19900115,1800,130,100,550 +19900115,1800,130,100,500 +19900115,1800,130,100,450 +19900115,1800,130,100,400 +19900115,1800,130,100,375 +19900115,1800,130,100,350 +19900115,1800,130,100,300 +19900115,1800,130,100,250 +19900115,1800,130,100,245 +19900115,1800,130,100,225 +19900115,1800,130,100,200 +19900115,1800,130,100,175 +19900115,1800,130,100,150 +19900115,1800,130,100,125 +19900115,1800,130,100,100 +19900115,1800,130,100,70 +19900115,1800,130,100,50 +19900115,1800,130,100,30 +19900115,1800,130,100,20 +19900115,1800,130,100,10 +19900115,1800,130,100,9 +19900115,1800,130,100,7 +19900115,1800,130,100,5 +19900115,1800,130,100,3 +19900115,1800,130,100,2 +19900115,1800,130,100,1 +19900115,1800,130,210,40 +19900115,1800,129,100,1000 +19900115,1800,129,100,975 +19900115,1800,129,100,950 +19900115,1800,129,100,925 +19900115,1800,129,100,900 +19900115,1800,129,100,875 +19900115,1800,129,100,850 +19900115,1800,129,100,825 +19900115,1800,129,100,800 +19900115,1800,129,100,775 +19900115,1800,129,100,750 +19900115,1800,129,100,740 +19900115,1800,129,100,700 +19900115,1800,129,100,650 +19900115,1800,129,100,620 +19900115,1800,129,100,600 +19900115,1800,129,100,550 +19900115,1800,129,100,500 +19900115,1800,129,100,450 +19900115,1800,129,100,400 +19900115,1800,129,100,375 +19900115,1800,129,100,350 +19900115,1800,129,100,300 +19900115,1800,129,100,250 +19900115,1800,129,100,245 +19900115,1800,129,100,225 +19900115,1800,129,100,200 +19900115,1800,129,100,175 +19900115,1800,129,100,150 +19900115,1800,129,100,125 +19900115,1800,129,100,100 +19900115,1800,129,100,70 +19900115,1800,129,100,50 +19900115,1800,129,100,30 +19900115,1800,129,100,20 +19900115,1800,129,100,10 +19900115,1800,129,100,9 +19900115,1800,129,100,7 +19900115,1800,129,100,5 +19900115,1800,129,100,3 +19900115,1800,129,100,2 +19900115,1800,129,100,1 +19900115,1800,129,210,40 +19900115,1800,157,100,1000 +19900115,1800,157,100,975 +19900115,1800,157,100,950 +19900115,1800,157,100,925 +19900115,1800,157,100,900 +19900115,1800,157,100,875 +19900115,1800,157,100,850 +19900115,1800,157,100,825 +19900115,1800,157,100,800 +19900115,1800,157,100,775 +19900115,1800,157,100,750 +19900115,1800,157,100,740 +19900115,1800,157,100,700 +19900115,1800,157,100,650 +19900115,1800,157,100,620 +19900115,1800,157,100,600 +19900115,1800,157,100,550 +19900115,1800,157,100,500 +19900115,1800,157,100,450 +19900115,1800,157,100,400 +19900115,1800,157,100,375 +19900115,1800,157,100,350 +19900115,1800,157,100,300 +19900115,1800,157,100,250 +19900115,1800,157,100,245 +19900115,1800,157,100,225 +19900115,1800,157,100,200 +19900115,1800,157,100,175 +19900115,1800,157,100,150 +19900115,1800,157,100,125 +19900115,1800,157,100,100 +19900115,1800,157,100,70 +19900115,1800,157,100,50 +19900115,1800,157,100,30 +19900115,1800,157,100,20 +19900115,1800,157,100,10 +19900115,1800,157,100,9 +19900115,1800,157,100,7 +19900115,1800,157,100,5 +19900115,1800,157,100,3 +19900115,1800,157,100,2 +19900115,1800,157,100,1 +19900115,1800,157,210,40 +19900115,1800,135,100,1000 +19900115,1800,135,100,975 +19900115,1800,135,100,950 +19900115,1800,135,100,925 +19900115,1800,135,100,900 +19900115,1800,135,100,875 +19900115,1800,135,100,850 +19900115,1800,135,100,825 +19900115,1800,135,100,800 +19900115,1800,135,100,775 +19900115,1800,135,100,750 +19900115,1800,135,100,740 +19900115,1800,135,100,700 +19900115,1800,135,100,650 +19900115,1800,135,100,620 +19900115,1800,135,100,600 +19900115,1800,135,100,550 +19900115,1800,135,100,500 +19900115,1800,135,100,450 +19900115,1800,135,100,400 +19900115,1800,135,100,375 +19900115,1800,135,100,350 +19900115,1800,135,100,300 +19900115,1800,135,100,250 +19900115,1800,135,100,245 +19900115,1800,135,100,225 +19900115,1800,135,100,200 +19900115,1800,135,100,175 +19900115,1800,135,100,150 +19900115,1800,135,100,125 +19900115,1800,135,100,100 +19900115,1800,135,100,70 +19900115,1800,135,100,50 +19900115,1800,135,100,30 +19900115,1800,135,100,20 +19900115,1800,135,100,10 +19900115,1800,135,100,9 +19900115,1800,135,100,7 +19900115,1800,135,100,5 +19900115,1800,135,100,3 +19900115,1800,135,100,2 +19900115,1800,135,100,1 +19900115,1800,135,210,40 +19900115,1800,138,100,1000 +19900115,1800,138,100,975 +19900115,1800,138,100,950 +19900115,1800,138,100,925 +19900115,1800,138,100,900 +19900115,1800,138,100,875 +19900115,1800,138,100,850 +19900115,1800,138,100,825 +19900115,1800,138,100,800 +19900115,1800,138,100,775 +19900115,1800,138,100,750 +19900115,1800,138,100,740 +19900115,1800,138,100,700 +19900115,1800,138,100,650 +19900115,1800,138,100,620 +19900115,1800,138,100,600 +19900115,1800,138,100,550 +19900115,1800,138,100,500 +19900115,1800,138,100,450 +19900115,1800,138,100,400 +19900115,1800,138,100,375 +19900115,1800,138,100,350 +19900115,1800,138,100,300 +19900115,1800,138,100,250 +19900115,1800,138,100,245 +19900115,1800,138,100,225 +19900115,1800,138,100,200 +19900115,1800,138,100,175 +19900115,1800,138,100,150 +19900115,1800,138,100,125 +19900115,1800,138,100,100 +19900115,1800,138,100,70 +19900115,1800,138,100,50 +19900115,1800,138,100,30 +19900115,1800,138,100,20 +19900115,1800,138,100,10 +19900115,1800,138,100,9 +19900115,1800,138,100,7 +19900115,1800,138,100,5 +19900115,1800,138,100,3 +19900115,1800,138,100,2 +19900115,1800,138,100,1 +19900115,1800,138,210,40 +19900115,1800,131,109,1 +19900115,1800,131,109,2 +19900115,1800,131,109,3 +19900115,1800,131,109,4 +19900115,1800,131,109,5 +19900115,1800,131,109,6 +19900115,1800,131,109,7 +19900115,1800,131,109,8 +19900115,1800,131,109,9 +19900115,1800,131,109,10 +19900115,1800,132,109,1 +19900115,1800,132,109,2 +19900115,1800,132,109,3 +19900115,1800,132,109,4 +19900115,1800,132,109,5 +19900115,1800,132,109,6 +19900115,1800,132,109,7 +19900115,1800,132,109,8 +19900115,1800,132,109,9 +19900115,1800,132,109,10 +19900115,1800,130,109,1 +19900115,1800,130,109,2 +19900115,1800,130,109,3 +19900115,1800,130,109,4 +19900115,1800,130,109,5 +19900115,1800,130,109,6 +19900115,1800,130,109,7 +19900115,1800,130,109,8 +19900115,1800,130,109,9 +19900115,1800,130,109,10 +19900115,1800,157,109,1 +19900115,1800,157,109,2 +19900115,1800,157,109,3 +19900115,1800,157,109,4 +19900115,1800,157,109,5 +19900115,1800,157,109,6 +19900115,1800,157,109,7 +19900115,1800,157,109,8 +19900115,1800,157,109,9 +19900115,1800,157,109,10 +19900115,1800,54,109,1 +19900115,1800,54,109,2 +19900115,1800,54,109,3 +19900115,1800,54,109,4 +19900115,1800,54,109,5 +19900115,1800,54,109,6 +19900115,1800,54,109,7 +19900115,1800,54,109,8 +19900115,1800,54,109,9 +19900115,1800,54,109,10 +19900115,1800,135,109,1 +19900115,1800,135,109,2 +19900115,1800,135,109,3 +19900115,1800,135,109,4 +19900115,1800,135,109,5 +19900115,1800,135,109,6 +19900115,1800,135,109,7 +19900115,1800,135,109,8 +19900115,1800,135,109,9 +19900115,1800,135,109,10 +19900115,1800,134,109,1 +19900115,1800,152,109,1 +19900115,1800,131,100,850 +19900115,1800,132,100,850 +19900115,1800,134,100,1000 +19900115,1800,152,100,1000 +19900115,2100,131,100,850 +19900115,2100,132,100,850 +19900115,2100,134,100,1000 +19900115,2100,152,100,1000 +19900116,0,131,100,1000 +19900116,0,131,100,975 +19900116,0,131,100,950 +19900116,0,131,100,925 +19900116,0,131,100,900 +19900116,0,131,100,875 +19900116,0,131,100,825 +19900116,0,131,100,800 +19900116,0,131,100,775 +19900116,0,131,100,750 +19900116,0,131,100,740 +19900116,0,131,100,700 +19900116,0,131,100,650 +19900116,0,131,100,620 +19900116,0,131,100,600 +19900116,0,131,100,550 +19900116,0,131,100,500 +19900116,0,131,100,450 +19900116,0,131,100,400 +19900116,0,131,100,375 +19900116,0,131,100,350 +19900116,0,131,100,300 +19900116,0,131,100,250 +19900116,0,131,100,245 +19900116,0,131,100,225 +19900116,0,131,100,200 +19900116,0,131,100,175 +19900116,0,131,100,150 +19900116,0,131,100,125 +19900116,0,131,100,100 +19900116,0,131,100,70 +19900116,0,131,100,50 +19900116,0,131,100,30 +19900116,0,131,100,20 +19900116,0,131,100,10 +19900116,0,131,100,9 +19900116,0,131,100,7 +19900116,0,131,100,5 +19900116,0,131,100,3 +19900116,0,131,100,2 +19900116,0,131,100,1 +19900116,0,131,210,40 +19900116,0,132,100,1000 +19900116,0,132,100,975 +19900116,0,132,100,950 +19900116,0,132,100,925 +19900116,0,132,100,900 +19900116,0,132,100,875 +19900116,0,132,100,825 +19900116,0,132,100,800 +19900116,0,132,100,775 +19900116,0,132,100,750 +19900116,0,132,100,740 +19900116,0,132,100,700 +19900116,0,132,100,650 +19900116,0,132,100,620 +19900116,0,132,100,600 +19900116,0,132,100,550 +19900116,0,132,100,500 +19900116,0,132,100,450 +19900116,0,132,100,400 +19900116,0,132,100,375 +19900116,0,132,100,350 +19900116,0,132,100,300 +19900116,0,132,100,250 +19900116,0,132,100,245 +19900116,0,132,100,225 +19900116,0,132,100,200 +19900116,0,132,100,175 +19900116,0,132,100,150 +19900116,0,132,100,125 +19900116,0,132,100,100 +19900116,0,132,100,70 +19900116,0,132,100,50 +19900116,0,132,100,30 +19900116,0,132,100,20 +19900116,0,132,100,10 +19900116,0,132,100,9 +19900116,0,132,100,7 +19900116,0,132,100,5 +19900116,0,132,100,3 +19900116,0,132,100,2 +19900116,0,132,100,1 +19900116,0,132,210,40 +19900116,0,130,100,1000 +19900116,0,130,100,975 +19900116,0,130,100,950 +19900116,0,130,100,925 +19900116,0,130,100,900 +19900116,0,130,100,875 +19900116,0,130,100,850 +19900116,0,130,100,825 +19900116,0,130,100,800 +19900116,0,130,100,775 +19900116,0,130,100,750 +19900116,0,130,100,740 +19900116,0,130,100,700 +19900116,0,130,100,650 +19900116,0,130,100,620 +19900116,0,130,100,600 +19900116,0,130,100,550 +19900116,0,130,100,500 +19900116,0,130,100,450 +19900116,0,130,100,400 +19900116,0,130,100,375 +19900116,0,130,100,350 +19900116,0,130,100,300 +19900116,0,130,100,250 +19900116,0,130,100,245 +19900116,0,130,100,225 +19900116,0,130,100,200 +19900116,0,130,100,175 +19900116,0,130,100,150 +19900116,0,130,100,125 +19900116,0,130,100,100 +19900116,0,130,100,70 +19900116,0,130,100,50 +19900116,0,130,100,30 +19900116,0,130,100,20 +19900116,0,130,100,10 +19900116,0,130,100,9 +19900116,0,130,100,7 +19900116,0,130,100,5 +19900116,0,130,100,3 +19900116,0,130,100,2 +19900116,0,130,100,1 +19900116,0,130,210,40 +19900116,0,129,100,1000 +19900116,0,129,100,975 +19900116,0,129,100,950 +19900116,0,129,100,925 +19900116,0,129,100,900 +19900116,0,129,100,875 +19900116,0,129,100,850 +19900116,0,129,100,825 +19900116,0,129,100,800 +19900116,0,129,100,775 +19900116,0,129,100,750 +19900116,0,129,100,740 +19900116,0,129,100,700 +19900116,0,129,100,650 +19900116,0,129,100,620 +19900116,0,129,100,600 +19900116,0,129,100,550 +19900116,0,129,100,500 +19900116,0,129,100,450 +19900116,0,129,100,400 +19900116,0,129,100,375 +19900116,0,129,100,350 +19900116,0,129,100,300 +19900116,0,129,100,250 +19900116,0,129,100,245 +19900116,0,129,100,225 +19900116,0,129,100,200 +19900116,0,129,100,175 +19900116,0,129,100,150 +19900116,0,129,100,125 +19900116,0,129,100,100 +19900116,0,129,100,70 +19900116,0,129,100,50 +19900116,0,129,100,30 +19900116,0,129,100,20 +19900116,0,129,100,10 +19900116,0,129,100,9 +19900116,0,129,100,7 +19900116,0,129,100,5 +19900116,0,129,100,3 +19900116,0,129,100,2 +19900116,0,129,100,1 +19900116,0,129,210,40 +19900116,0,157,100,1000 +19900116,0,157,100,975 +19900116,0,157,100,950 +19900116,0,157,100,925 +19900116,0,157,100,900 +19900116,0,157,100,875 +19900116,0,157,100,850 +19900116,0,157,100,825 +19900116,0,157,100,800 +19900116,0,157,100,775 +19900116,0,157,100,750 +19900116,0,157,100,740 +19900116,0,157,100,700 +19900116,0,157,100,650 +19900116,0,157,100,620 +19900116,0,157,100,600 +19900116,0,157,100,550 +19900116,0,157,100,500 +19900116,0,157,100,450 +19900116,0,157,100,400 +19900116,0,157,100,375 +19900116,0,157,100,350 +19900116,0,157,100,300 +19900116,0,157,100,250 +19900116,0,157,100,245 +19900116,0,157,100,225 +19900116,0,157,100,200 +19900116,0,157,100,175 +19900116,0,157,100,150 +19900116,0,157,100,125 +19900116,0,157,100,100 +19900116,0,157,100,70 +19900116,0,157,100,50 +19900116,0,157,100,30 +19900116,0,157,100,20 +19900116,0,157,100,10 +19900116,0,157,100,9 +19900116,0,157,100,7 +19900116,0,157,100,5 +19900116,0,157,100,3 +19900116,0,157,100,2 +19900116,0,157,100,1 +19900116,0,157,210,40 +19900116,0,135,100,1000 +19900116,0,135,100,975 +19900116,0,135,100,950 +19900116,0,135,100,925 +19900116,0,135,100,900 +19900116,0,135,100,875 +19900116,0,135,100,850 +19900116,0,135,100,825 +19900116,0,135,100,800 +19900116,0,135,100,775 +19900116,0,135,100,750 +19900116,0,135,100,740 +19900116,0,135,100,700 +19900116,0,135,100,650 +19900116,0,135,100,620 +19900116,0,135,100,600 +19900116,0,135,100,550 +19900116,0,135,100,500 +19900116,0,135,100,450 +19900116,0,135,100,400 +19900116,0,135,100,375 +19900116,0,135,100,350 +19900116,0,135,100,300 +19900116,0,135,100,250 +19900116,0,135,100,245 +19900116,0,135,100,225 +19900116,0,135,100,200 +19900116,0,135,100,175 +19900116,0,135,100,150 +19900116,0,135,100,125 +19900116,0,135,100,100 +19900116,0,135,100,70 +19900116,0,135,100,50 +19900116,0,135,100,30 +19900116,0,135,100,20 +19900116,0,135,100,10 +19900116,0,135,100,9 +19900116,0,135,100,7 +19900116,0,135,100,5 +19900116,0,135,100,3 +19900116,0,135,100,2 +19900116,0,135,100,1 +19900116,0,135,210,40 +19900116,0,138,100,1000 +19900116,0,138,100,975 +19900116,0,138,100,950 +19900116,0,138,100,925 +19900116,0,138,100,900 +19900116,0,138,100,875 +19900116,0,138,100,850 +19900116,0,138,100,825 +19900116,0,138,100,800 +19900116,0,138,100,775 +19900116,0,138,100,750 +19900116,0,138,100,740 +19900116,0,138,100,700 +19900116,0,138,100,650 +19900116,0,138,100,620 +19900116,0,138,100,600 +19900116,0,138,100,550 +19900116,0,138,100,500 +19900116,0,138,100,450 +19900116,0,138,100,400 +19900116,0,138,100,375 +19900116,0,138,100,350 +19900116,0,138,100,300 +19900116,0,138,100,250 +19900116,0,138,100,245 +19900116,0,138,100,225 +19900116,0,138,100,200 +19900116,0,138,100,175 +19900116,0,138,100,150 +19900116,0,138,100,125 +19900116,0,138,100,100 +19900116,0,138,100,70 +19900116,0,138,100,50 +19900116,0,138,100,30 +19900116,0,138,100,20 +19900116,0,138,100,10 +19900116,0,138,100,9 +19900116,0,138,100,7 +19900116,0,138,100,5 +19900116,0,138,100,3 +19900116,0,138,100,2 +19900116,0,138,100,1 +19900116,0,138,210,40 +19900116,0,131,109,1 +19900116,0,131,109,2 +19900116,0,131,109,3 +19900116,0,131,109,4 +19900116,0,131,109,5 +19900116,0,131,109,6 +19900116,0,131,109,7 +19900116,0,131,109,8 +19900116,0,131,109,9 +19900116,0,131,109,10 +19900116,0,132,109,1 +19900116,0,132,109,2 +19900116,0,132,109,3 +19900116,0,132,109,4 +19900116,0,132,109,5 +19900116,0,132,109,6 +19900116,0,132,109,7 +19900116,0,132,109,8 +19900116,0,132,109,9 +19900116,0,132,109,10 +19900116,0,130,109,1 +19900116,0,130,109,2 +19900116,0,130,109,3 +19900116,0,130,109,4 +19900116,0,130,109,5 +19900116,0,130,109,6 +19900116,0,130,109,7 +19900116,0,130,109,8 +19900116,0,130,109,9 +19900116,0,130,109,10 +19900116,0,157,109,1 +19900116,0,157,109,2 +19900116,0,157,109,3 +19900116,0,157,109,4 +19900116,0,157,109,5 +19900116,0,157,109,6 +19900116,0,157,109,7 +19900116,0,157,109,8 +19900116,0,157,109,9 +19900116,0,157,109,10 +19900116,0,54,109,1 +19900116,0,54,109,2 +19900116,0,54,109,3 +19900116,0,54,109,4 +19900116,0,54,109,5 +19900116,0,54,109,6 +19900116,0,54,109,7 +19900116,0,54,109,8 +19900116,0,54,109,9 +19900116,0,54,109,10 +19900116,0,135,109,1 +19900116,0,135,109,2 +19900116,0,135,109,3 +19900116,0,135,109,4 +19900116,0,135,109,5 +19900116,0,135,109,6 +19900116,0,135,109,7 +19900116,0,135,109,8 +19900116,0,135,109,9 +19900116,0,135,109,10 +19900116,0,134,109,1 +19900116,0,152,109,1 +19900116,0,131,100,850 +19900116,0,132,100,850 +19900116,0,134,100,1000 +19900116,0,152,100,1000 +19900116,300,131,100,850 +19900116,300,132,100,850 +19900116,300,134,100,1000 +19900116,300,152,100,1000 +19900116,600,131,100,1000 +19900116,600,131,100,975 +19900116,600,131,100,950 +19900116,600,131,100,925 +19900116,600,131,100,900 +19900116,600,131,100,875 +19900116,600,131,100,825 +19900116,600,131,100,800 +19900116,600,131,100,775 +19900116,600,131,100,750 +19900116,600,131,100,740 +19900116,600,131,100,700 +19900116,600,131,100,650 +19900116,600,131,100,620 +19900116,600,131,100,600 +19900116,600,131,100,550 +19900116,600,131,100,500 +19900116,600,131,100,450 +19900116,600,131,100,400 +19900116,600,131,100,375 +19900116,600,131,100,350 +19900116,600,131,100,300 +19900116,600,131,100,250 +19900116,600,131,100,245 +19900116,600,131,100,225 +19900116,600,131,100,200 +19900116,600,131,100,175 +19900116,600,131,100,150 +19900116,600,131,100,125 +19900116,600,131,100,100 +19900116,600,131,100,70 +19900116,600,131,100,50 +19900116,600,131,100,30 +19900116,600,131,100,20 +19900116,600,131,100,10 +19900116,600,131,100,9 +19900116,600,131,100,7 +19900116,600,131,100,5 +19900116,600,131,100,3 +19900116,600,131,100,2 +19900116,600,131,100,1 +19900116,600,131,210,40 +19900116,600,132,100,1000 +19900116,600,132,100,975 +19900116,600,132,100,950 +19900116,600,132,100,925 +19900116,600,132,100,900 +19900116,600,132,100,875 +19900116,600,132,100,825 +19900116,600,132,100,800 +19900116,600,132,100,775 +19900116,600,132,100,750 +19900116,600,132,100,740 +19900116,600,132,100,700 +19900116,600,132,100,650 +19900116,600,132,100,620 +19900116,600,132,100,600 +19900116,600,132,100,550 +19900116,600,132,100,500 +19900116,600,132,100,450 +19900116,600,132,100,400 +19900116,600,132,100,375 +19900116,600,132,100,350 +19900116,600,132,100,300 +19900116,600,132,100,250 +19900116,600,132,100,245 +19900116,600,132,100,225 +19900116,600,132,100,200 +19900116,600,132,100,175 +19900116,600,132,100,150 +19900116,600,132,100,125 +19900116,600,132,100,100 +19900116,600,132,100,70 +19900116,600,132,100,50 +19900116,600,132,100,30 +19900116,600,132,100,20 +19900116,600,132,100,10 +19900116,600,132,100,9 +19900116,600,132,100,7 +19900116,600,132,100,5 +19900116,600,132,100,3 +19900116,600,132,100,2 +19900116,600,132,100,1 +19900116,600,132,210,40 +19900116,600,130,100,1000 +19900116,600,130,100,975 +19900116,600,130,100,950 +19900116,600,130,100,925 +19900116,600,130,100,900 +19900116,600,130,100,875 +19900116,600,130,100,850 +19900116,600,130,100,825 +19900116,600,130,100,800 +19900116,600,130,100,775 +19900116,600,130,100,750 +19900116,600,130,100,740 +19900116,600,130,100,700 +19900116,600,130,100,650 +19900116,600,130,100,620 +19900116,600,130,100,600 +19900116,600,130,100,550 +19900116,600,130,100,500 +19900116,600,130,100,450 +19900116,600,130,100,400 +19900116,600,130,100,375 +19900116,600,130,100,350 +19900116,600,130,100,300 +19900116,600,130,100,250 +19900116,600,130,100,245 +19900116,600,130,100,225 +19900116,600,130,100,200 +19900116,600,130,100,175 +19900116,600,130,100,150 +19900116,600,130,100,125 +19900116,600,130,100,100 +19900116,600,130,100,70 +19900116,600,130,100,50 +19900116,600,130,100,30 +19900116,600,130,100,20 +19900116,600,130,100,10 +19900116,600,130,100,9 +19900116,600,130,100,7 +19900116,600,130,100,5 +19900116,600,130,100,3 +19900116,600,130,100,2 +19900116,600,130,100,1 +19900116,600,130,210,40 +19900116,600,129,100,1000 +19900116,600,129,100,975 +19900116,600,129,100,950 +19900116,600,129,100,925 +19900116,600,129,100,900 +19900116,600,129,100,875 +19900116,600,129,100,850 +19900116,600,129,100,825 +19900116,600,129,100,800 +19900116,600,129,100,775 +19900116,600,129,100,750 +19900116,600,129,100,740 +19900116,600,129,100,700 +19900116,600,129,100,650 +19900116,600,129,100,620 +19900116,600,129,100,600 +19900116,600,129,100,550 +19900116,600,129,100,500 +19900116,600,129,100,450 +19900116,600,129,100,400 +19900116,600,129,100,375 +19900116,600,129,100,350 +19900116,600,129,100,300 +19900116,600,129,100,250 +19900116,600,129,100,245 +19900116,600,129,100,225 +19900116,600,129,100,200 +19900116,600,129,100,175 +19900116,600,129,100,150 +19900116,600,129,100,125 +19900116,600,129,100,100 +19900116,600,129,100,70 +19900116,600,129,100,50 +19900116,600,129,100,30 +19900116,600,129,100,20 +19900116,600,129,100,10 +19900116,600,129,100,9 +19900116,600,129,100,7 +19900116,600,129,100,5 +19900116,600,129,100,3 +19900116,600,129,100,2 +19900116,600,129,100,1 +19900116,600,129,210,40 +19900116,600,157,100,1000 +19900116,600,157,100,975 +19900116,600,157,100,950 +19900116,600,157,100,925 +19900116,600,157,100,900 +19900116,600,157,100,875 +19900116,600,157,100,850 +19900116,600,157,100,825 +19900116,600,157,100,800 +19900116,600,157,100,775 +19900116,600,157,100,750 +19900116,600,157,100,740 +19900116,600,157,100,700 +19900116,600,157,100,650 +19900116,600,157,100,620 +19900116,600,157,100,600 +19900116,600,157,100,550 +19900116,600,157,100,500 +19900116,600,157,100,450 +19900116,600,157,100,400 +19900116,600,157,100,375 +19900116,600,157,100,350 +19900116,600,157,100,300 +19900116,600,157,100,250 +19900116,600,157,100,245 +19900116,600,157,100,225 +19900116,600,157,100,200 +19900116,600,157,100,175 +19900116,600,157,100,150 +19900116,600,157,100,125 +19900116,600,157,100,100 +19900116,600,157,100,70 +19900116,600,157,100,50 +19900116,600,157,100,30 +19900116,600,157,100,20 +19900116,600,157,100,10 +19900116,600,157,100,9 +19900116,600,157,100,7 +19900116,600,157,100,5 +19900116,600,157,100,3 +19900116,600,157,100,2 +19900116,600,157,100,1 +19900116,600,157,210,40 +19900116,600,135,100,1000 +19900116,600,135,100,975 +19900116,600,135,100,950 +19900116,600,135,100,925 +19900116,600,135,100,900 +19900116,600,135,100,875 +19900116,600,135,100,850 +19900116,600,135,100,825 +19900116,600,135,100,800 +19900116,600,135,100,775 +19900116,600,135,100,750 +19900116,600,135,100,740 +19900116,600,135,100,700 +19900116,600,135,100,650 +19900116,600,135,100,620 +19900116,600,135,100,600 +19900116,600,135,100,550 +19900116,600,135,100,500 +19900116,600,135,100,450 +19900116,600,135,100,400 +19900116,600,135,100,375 +19900116,600,135,100,350 +19900116,600,135,100,300 +19900116,600,135,100,250 +19900116,600,135,100,245 +19900116,600,135,100,225 +19900116,600,135,100,200 +19900116,600,135,100,175 +19900116,600,135,100,150 +19900116,600,135,100,125 +19900116,600,135,100,100 +19900116,600,135,100,70 +19900116,600,135,100,50 +19900116,600,135,100,30 +19900116,600,135,100,20 +19900116,600,135,100,10 +19900116,600,135,100,9 +19900116,600,135,100,7 +19900116,600,135,100,5 +19900116,600,135,100,3 +19900116,600,135,100,2 +19900116,600,135,100,1 +19900116,600,135,210,40 +19900116,600,138,100,1000 +19900116,600,138,100,975 +19900116,600,138,100,950 +19900116,600,138,100,925 +19900116,600,138,100,900 +19900116,600,138,100,875 +19900116,600,138,100,850 +19900116,600,138,100,825 +19900116,600,138,100,800 +19900116,600,138,100,775 +19900116,600,138,100,750 +19900116,600,138,100,740 +19900116,600,138,100,700 +19900116,600,138,100,650 +19900116,600,138,100,620 +19900116,600,138,100,600 +19900116,600,138,100,550 +19900116,600,138,100,500 +19900116,600,138,100,450 +19900116,600,138,100,400 +19900116,600,138,100,375 +19900116,600,138,100,350 +19900116,600,138,100,300 +19900116,600,138,100,250 +19900116,600,138,100,245 +19900116,600,138,100,225 +19900116,600,138,100,200 +19900116,600,138,100,175 +19900116,600,138,100,150 +19900116,600,138,100,125 +19900116,600,138,100,100 +19900116,600,138,100,70 +19900116,600,138,100,50 +19900116,600,138,100,30 +19900116,600,138,100,20 +19900116,600,138,100,10 +19900116,600,138,100,9 +19900116,600,138,100,7 +19900116,600,138,100,5 +19900116,600,138,100,3 +19900116,600,138,100,2 +19900116,600,138,100,1 +19900116,600,138,210,40 +19900116,600,131,109,1 +19900116,600,131,109,2 +19900116,600,131,109,3 +19900116,600,131,109,4 +19900116,600,131,109,5 +19900116,600,131,109,6 +19900116,600,131,109,7 +19900116,600,131,109,8 +19900116,600,131,109,9 +19900116,600,131,109,10 +19900116,600,132,109,1 +19900116,600,132,109,2 +19900116,600,132,109,3 +19900116,600,132,109,4 +19900116,600,132,109,5 +19900116,600,132,109,6 +19900116,600,132,109,7 +19900116,600,132,109,8 +19900116,600,132,109,9 +19900116,600,132,109,10 +19900116,600,130,109,1 +19900116,600,130,109,2 +19900116,600,130,109,3 +19900116,600,130,109,4 +19900116,600,130,109,5 +19900116,600,130,109,6 +19900116,600,130,109,7 +19900116,600,130,109,8 +19900116,600,130,109,9 +19900116,600,130,109,10 +19900116,600,157,109,1 +19900116,600,157,109,2 +19900116,600,157,109,3 +19900116,600,157,109,4 +19900116,600,157,109,5 +19900116,600,157,109,6 +19900116,600,157,109,7 +19900116,600,157,109,8 +19900116,600,157,109,9 +19900116,600,157,109,10 +19900116,600,54,109,1 +19900116,600,54,109,2 +19900116,600,54,109,3 +19900116,600,54,109,4 +19900116,600,54,109,5 +19900116,600,54,109,6 +19900116,600,54,109,7 +19900116,600,54,109,8 +19900116,600,54,109,9 +19900116,600,54,109,10 +19900116,600,135,109,1 +19900116,600,135,109,2 +19900116,600,135,109,3 +19900116,600,135,109,4 +19900116,600,135,109,5 +19900116,600,135,109,6 +19900116,600,135,109,7 +19900116,600,135,109,8 +19900116,600,135,109,9 +19900116,600,135,109,10 +19900116,600,134,109,1 +19900116,600,152,109,1 +19900116,600,131,100,850 +19900116,600,132,100,850 +19900116,600,134,100,1000 +19900116,600,152,100,1000 +19900116,900,131,100,850 +19900116,900,132,100,850 +19900116,900,134,100,1000 +19900116,900,152,100,1000 +19900116,1200,131,100,1000 +19900116,1200,131,100,975 +19900116,1200,131,100,950 +19900116,1200,131,100,925 +19900116,1200,131,100,900 +19900116,1200,131,100,875 +19900116,1200,131,100,825 +19900116,1200,131,100,800 +19900116,1200,131,100,775 +19900116,1200,131,100,750 +19900116,1200,131,100,740 +19900116,1200,131,100,700 +19900116,1200,131,100,650 +19900116,1200,131,100,620 +19900116,1200,131,100,600 +19900116,1200,131,100,550 +19900116,1200,131,100,500 +19900116,1200,131,100,450 +19900116,1200,131,100,400 +19900116,1200,131,100,375 +19900116,1200,131,100,350 +19900116,1200,131,100,300 +19900116,1200,131,100,250 +19900116,1200,131,100,245 +19900116,1200,131,100,225 +19900116,1200,131,100,200 +19900116,1200,131,100,175 +19900116,1200,131,100,150 +19900116,1200,131,100,125 +19900116,1200,131,100,100 +19900116,1200,131,100,70 +19900116,1200,131,100,50 +19900116,1200,131,100,30 +19900116,1200,131,100,20 +19900116,1200,131,100,10 +19900116,1200,131,100,9 +19900116,1200,131,100,7 +19900116,1200,131,100,5 +19900116,1200,131,100,3 +19900116,1200,131,100,2 +19900116,1200,131,100,1 +19900116,1200,131,210,40 +19900116,1200,132,100,1000 +19900116,1200,132,100,975 +19900116,1200,132,100,950 +19900116,1200,132,100,925 +19900116,1200,132,100,900 +19900116,1200,132,100,875 +19900116,1200,132,100,825 +19900116,1200,132,100,800 +19900116,1200,132,100,775 +19900116,1200,132,100,750 +19900116,1200,132,100,740 +19900116,1200,132,100,700 +19900116,1200,132,100,650 +19900116,1200,132,100,620 +19900116,1200,132,100,600 +19900116,1200,132,100,550 +19900116,1200,132,100,500 +19900116,1200,132,100,450 +19900116,1200,132,100,400 +19900116,1200,132,100,375 +19900116,1200,132,100,350 +19900116,1200,132,100,300 +19900116,1200,132,100,250 +19900116,1200,132,100,245 +19900116,1200,132,100,225 +19900116,1200,132,100,200 +19900116,1200,132,100,175 +19900116,1200,132,100,150 +19900116,1200,132,100,125 +19900116,1200,132,100,100 +19900116,1200,132,100,70 +19900116,1200,132,100,50 +19900116,1200,132,100,30 +19900116,1200,132,100,20 +19900116,1200,132,100,10 +19900116,1200,132,100,9 +19900116,1200,132,100,7 +19900116,1200,132,100,5 +19900116,1200,132,100,3 +19900116,1200,132,100,2 +19900116,1200,132,100,1 +19900116,1200,132,210,40 +19900116,1200,130,100,1000 +19900116,1200,130,100,975 +19900116,1200,130,100,950 +19900116,1200,130,100,925 +19900116,1200,130,100,900 +19900116,1200,130,100,875 +19900116,1200,130,100,850 +19900116,1200,130,100,825 +19900116,1200,130,100,800 +19900116,1200,130,100,775 +19900116,1200,130,100,750 +19900116,1200,130,100,740 +19900116,1200,130,100,700 +19900116,1200,130,100,650 +19900116,1200,130,100,620 +19900116,1200,130,100,600 +19900116,1200,130,100,550 +19900116,1200,130,100,500 +19900116,1200,130,100,450 +19900116,1200,130,100,400 +19900116,1200,130,100,375 +19900116,1200,130,100,350 +19900116,1200,130,100,300 +19900116,1200,130,100,250 +19900116,1200,130,100,245 +19900116,1200,130,100,225 +19900116,1200,130,100,200 +19900116,1200,130,100,175 +19900116,1200,130,100,150 +19900116,1200,130,100,125 +19900116,1200,130,100,100 +19900116,1200,130,100,70 +19900116,1200,130,100,50 +19900116,1200,130,100,30 +19900116,1200,130,100,20 +19900116,1200,130,100,10 +19900116,1200,130,100,9 +19900116,1200,130,100,7 +19900116,1200,130,100,5 +19900116,1200,130,100,3 +19900116,1200,130,100,2 +19900116,1200,130,100,1 +19900116,1200,130,210,40 +19900116,1200,129,100,1000 +19900116,1200,129,100,975 +19900116,1200,129,100,950 +19900116,1200,129,100,925 +19900116,1200,129,100,900 +19900116,1200,129,100,875 +19900116,1200,129,100,850 +19900116,1200,129,100,825 +19900116,1200,129,100,800 +19900116,1200,129,100,775 +19900116,1200,129,100,750 +19900116,1200,129,100,740 +19900116,1200,129,100,700 +19900116,1200,129,100,650 +19900116,1200,129,100,620 +19900116,1200,129,100,600 +19900116,1200,129,100,550 +19900116,1200,129,100,500 +19900116,1200,129,100,450 +19900116,1200,129,100,400 +19900116,1200,129,100,375 +19900116,1200,129,100,350 +19900116,1200,129,100,300 +19900116,1200,129,100,250 +19900116,1200,129,100,245 +19900116,1200,129,100,225 +19900116,1200,129,100,200 +19900116,1200,129,100,175 +19900116,1200,129,100,150 +19900116,1200,129,100,125 +19900116,1200,129,100,100 +19900116,1200,129,100,70 +19900116,1200,129,100,50 +19900116,1200,129,100,30 +19900116,1200,129,100,20 +19900116,1200,129,100,10 +19900116,1200,129,100,9 +19900116,1200,129,100,7 +19900116,1200,129,100,5 +19900116,1200,129,100,3 +19900116,1200,129,100,2 +19900116,1200,129,100,1 +19900116,1200,129,210,40 +19900116,1200,157,100,1000 +19900116,1200,157,100,975 +19900116,1200,157,100,950 +19900116,1200,157,100,925 +19900116,1200,157,100,900 +19900116,1200,157,100,875 +19900116,1200,157,100,850 +19900116,1200,157,100,825 +19900116,1200,157,100,800 +19900116,1200,157,100,775 +19900116,1200,157,100,750 +19900116,1200,157,100,740 +19900116,1200,157,100,700 +19900116,1200,157,100,650 +19900116,1200,157,100,620 +19900116,1200,157,100,600 +19900116,1200,157,100,550 +19900116,1200,157,100,500 +19900116,1200,157,100,450 +19900116,1200,157,100,400 +19900116,1200,157,100,375 +19900116,1200,157,100,350 +19900116,1200,157,100,300 +19900116,1200,157,100,250 +19900116,1200,157,100,245 +19900116,1200,157,100,225 +19900116,1200,157,100,200 +19900116,1200,157,100,175 +19900116,1200,157,100,150 +19900116,1200,157,100,125 +19900116,1200,157,100,100 +19900116,1200,157,100,70 +19900116,1200,157,100,50 +19900116,1200,157,100,30 +19900116,1200,157,100,20 +19900116,1200,157,100,10 +19900116,1200,157,100,9 +19900116,1200,157,100,7 +19900116,1200,157,100,5 +19900116,1200,157,100,3 +19900116,1200,157,100,2 +19900116,1200,157,100,1 +19900116,1200,157,210,40 +19900116,1200,135,100,1000 +19900116,1200,135,100,975 +19900116,1200,135,100,950 +19900116,1200,135,100,925 +19900116,1200,135,100,900 +19900116,1200,135,100,875 +19900116,1200,135,100,850 +19900116,1200,135,100,825 +19900116,1200,135,100,800 +19900116,1200,135,100,775 +19900116,1200,135,100,750 +19900116,1200,135,100,740 +19900116,1200,135,100,700 +19900116,1200,135,100,650 +19900116,1200,135,100,620 +19900116,1200,135,100,600 +19900116,1200,135,100,550 +19900116,1200,135,100,500 +19900116,1200,135,100,450 +19900116,1200,135,100,400 +19900116,1200,135,100,375 +19900116,1200,135,100,350 +19900116,1200,135,100,300 +19900116,1200,135,100,250 +19900116,1200,135,100,245 +19900116,1200,135,100,225 +19900116,1200,135,100,200 +19900116,1200,135,100,175 +19900116,1200,135,100,150 +19900116,1200,135,100,125 +19900116,1200,135,100,100 +19900116,1200,135,100,70 +19900116,1200,135,100,50 +19900116,1200,135,100,30 +19900116,1200,135,100,20 +19900116,1200,135,100,10 +19900116,1200,135,100,9 +19900116,1200,135,100,7 +19900116,1200,135,100,5 +19900116,1200,135,100,3 +19900116,1200,135,100,2 +19900116,1200,135,100,1 +19900116,1200,135,210,40 +19900116,1200,138,100,1000 +19900116,1200,138,100,975 +19900116,1200,138,100,950 +19900116,1200,138,100,925 +19900116,1200,138,100,900 +19900116,1200,138,100,875 +19900116,1200,138,100,850 +19900116,1200,138,100,825 +19900116,1200,138,100,800 +19900116,1200,138,100,775 +19900116,1200,138,100,750 +19900116,1200,138,100,740 +19900116,1200,138,100,700 +19900116,1200,138,100,650 +19900116,1200,138,100,620 +19900116,1200,138,100,600 +19900116,1200,138,100,550 +19900116,1200,138,100,500 +19900116,1200,138,100,450 +19900116,1200,138,100,400 +19900116,1200,138,100,375 +19900116,1200,138,100,350 +19900116,1200,138,100,300 +19900116,1200,138,100,250 +19900116,1200,138,100,245 +19900116,1200,138,100,225 +19900116,1200,138,100,200 +19900116,1200,138,100,175 +19900116,1200,138,100,150 +19900116,1200,138,100,125 +19900116,1200,138,100,100 +19900116,1200,138,100,70 +19900116,1200,138,100,50 +19900116,1200,138,100,30 +19900116,1200,138,100,20 +19900116,1200,138,100,10 +19900116,1200,138,100,9 +19900116,1200,138,100,7 +19900116,1200,138,100,5 +19900116,1200,138,100,3 +19900116,1200,138,100,2 +19900116,1200,138,100,1 +19900116,1200,138,210,40 +19900116,1200,131,109,1 +19900116,1200,131,109,2 +19900116,1200,131,109,3 +19900116,1200,131,109,4 +19900116,1200,131,109,5 +19900116,1200,131,109,6 +19900116,1200,131,109,7 +19900116,1200,131,109,8 +19900116,1200,131,109,9 +19900116,1200,131,109,10 +19900116,1200,132,109,1 +19900116,1200,132,109,2 +19900116,1200,132,109,3 +19900116,1200,132,109,4 +19900116,1200,132,109,5 +19900116,1200,132,109,6 +19900116,1200,132,109,7 +19900116,1200,132,109,8 +19900116,1200,132,109,9 +19900116,1200,132,109,10 +19900116,1200,130,109,1 +19900116,1200,130,109,2 +19900116,1200,130,109,3 +19900116,1200,130,109,4 +19900116,1200,130,109,5 +19900116,1200,130,109,6 +19900116,1200,130,109,7 +19900116,1200,130,109,8 +19900116,1200,130,109,9 +19900116,1200,130,109,10 +19900116,1200,157,109,1 +19900116,1200,157,109,2 +19900116,1200,157,109,3 +19900116,1200,157,109,4 +19900116,1200,157,109,5 +19900116,1200,157,109,6 +19900116,1200,157,109,7 +19900116,1200,157,109,8 +19900116,1200,157,109,9 +19900116,1200,157,109,10 +19900116,1200,54,109,1 +19900116,1200,54,109,2 +19900116,1200,54,109,3 +19900116,1200,54,109,4 +19900116,1200,54,109,5 +19900116,1200,54,109,6 +19900116,1200,54,109,7 +19900116,1200,54,109,8 +19900116,1200,54,109,9 +19900116,1200,54,109,10 +19900116,1200,135,109,1 +19900116,1200,135,109,2 +19900116,1200,135,109,3 +19900116,1200,135,109,4 +19900116,1200,135,109,5 +19900116,1200,135,109,6 +19900116,1200,135,109,7 +19900116,1200,135,109,8 +19900116,1200,135,109,9 +19900116,1200,135,109,10 +19900116,1200,134,109,1 +19900116,1200,152,109,1 +19900116,1200,131,100,850 +19900116,1200,132,100,850 +19900116,1200,134,100,1000 +19900116,1200,152,100,1000 +19900116,1500,131,100,850 +19900116,1500,132,100,850 +19900116,1500,134,100,1000 +19900116,1500,152,100,1000 +19900116,1800,131,100,1000 +19900116,1800,131,100,975 +19900116,1800,131,100,950 +19900116,1800,131,100,925 +19900116,1800,131,100,900 +19900116,1800,131,100,875 +19900116,1800,131,100,825 +19900116,1800,131,100,800 +19900116,1800,131,100,775 +19900116,1800,131,100,750 +19900116,1800,131,100,740 +19900116,1800,131,100,700 +19900116,1800,131,100,650 +19900116,1800,131,100,620 +19900116,1800,131,100,600 +19900116,1800,131,100,550 +19900116,1800,131,100,500 +19900116,1800,131,100,450 +19900116,1800,131,100,400 +19900116,1800,131,100,375 +19900116,1800,131,100,350 +19900116,1800,131,100,300 +19900116,1800,131,100,250 +19900116,1800,131,100,245 +19900116,1800,131,100,225 +19900116,1800,131,100,200 +19900116,1800,131,100,175 +19900116,1800,131,100,150 +19900116,1800,131,100,125 +19900116,1800,131,100,100 +19900116,1800,131,100,70 +19900116,1800,131,100,50 +19900116,1800,131,100,30 +19900116,1800,131,100,20 +19900116,1800,131,100,10 +19900116,1800,131,100,9 +19900116,1800,131,100,7 +19900116,1800,131,100,5 +19900116,1800,131,100,3 +19900116,1800,131,100,2 +19900116,1800,131,100,1 +19900116,1800,131,210,40 +19900116,1800,132,100,1000 +19900116,1800,132,100,975 +19900116,1800,132,100,950 +19900116,1800,132,100,925 +19900116,1800,132,100,900 +19900116,1800,132,100,875 +19900116,1800,132,100,825 +19900116,1800,132,100,800 +19900116,1800,132,100,775 +19900116,1800,132,100,750 +19900116,1800,132,100,740 +19900116,1800,132,100,700 +19900116,1800,132,100,650 +19900116,1800,132,100,620 +19900116,1800,132,100,600 +19900116,1800,132,100,550 +19900116,1800,132,100,500 +19900116,1800,132,100,450 +19900116,1800,132,100,400 +19900116,1800,132,100,375 +19900116,1800,132,100,350 +19900116,1800,132,100,300 +19900116,1800,132,100,250 +19900116,1800,132,100,245 +19900116,1800,132,100,225 +19900116,1800,132,100,200 +19900116,1800,132,100,175 +19900116,1800,132,100,150 +19900116,1800,132,100,125 +19900116,1800,132,100,100 +19900116,1800,132,100,70 +19900116,1800,132,100,50 +19900116,1800,132,100,30 +19900116,1800,132,100,20 +19900116,1800,132,100,10 +19900116,1800,132,100,9 +19900116,1800,132,100,7 +19900116,1800,132,100,5 +19900116,1800,132,100,3 +19900116,1800,132,100,2 +19900116,1800,132,100,1 +19900116,1800,132,210,40 +19900116,1800,130,100,1000 +19900116,1800,130,100,975 +19900116,1800,130,100,950 +19900116,1800,130,100,925 +19900116,1800,130,100,900 +19900116,1800,130,100,875 +19900116,1800,130,100,850 +19900116,1800,130,100,825 +19900116,1800,130,100,800 +19900116,1800,130,100,775 +19900116,1800,130,100,750 +19900116,1800,130,100,740 +19900116,1800,130,100,700 +19900116,1800,130,100,650 +19900116,1800,130,100,620 +19900116,1800,130,100,600 +19900116,1800,130,100,550 +19900116,1800,130,100,500 +19900116,1800,130,100,450 +19900116,1800,130,100,400 +19900116,1800,130,100,375 +19900116,1800,130,100,350 +19900116,1800,130,100,300 +19900116,1800,130,100,250 +19900116,1800,130,100,245 +19900116,1800,130,100,225 +19900116,1800,130,100,200 +19900116,1800,130,100,175 +19900116,1800,130,100,150 +19900116,1800,130,100,125 +19900116,1800,130,100,100 +19900116,1800,130,100,70 +19900116,1800,130,100,50 +19900116,1800,130,100,30 +19900116,1800,130,100,20 +19900116,1800,130,100,10 +19900116,1800,130,100,9 +19900116,1800,130,100,7 +19900116,1800,130,100,5 +19900116,1800,130,100,3 +19900116,1800,130,100,2 +19900116,1800,130,100,1 +19900116,1800,130,210,40 +19900116,1800,129,100,1000 +19900116,1800,129,100,975 +19900116,1800,129,100,950 +19900116,1800,129,100,925 +19900116,1800,129,100,900 +19900116,1800,129,100,875 +19900116,1800,129,100,850 +19900116,1800,129,100,825 +19900116,1800,129,100,800 +19900116,1800,129,100,775 +19900116,1800,129,100,750 +19900116,1800,129,100,740 +19900116,1800,129,100,700 +19900116,1800,129,100,650 +19900116,1800,129,100,620 +19900116,1800,129,100,600 +19900116,1800,129,100,550 +19900116,1800,129,100,500 +19900116,1800,129,100,450 +19900116,1800,129,100,400 +19900116,1800,129,100,375 +19900116,1800,129,100,350 +19900116,1800,129,100,300 +19900116,1800,129,100,250 +19900116,1800,129,100,245 +19900116,1800,129,100,225 +19900116,1800,129,100,200 +19900116,1800,129,100,175 +19900116,1800,129,100,150 +19900116,1800,129,100,125 +19900116,1800,129,100,100 +19900116,1800,129,100,70 +19900116,1800,129,100,50 +19900116,1800,129,100,30 +19900116,1800,129,100,20 +19900116,1800,129,100,10 +19900116,1800,129,100,9 +19900116,1800,129,100,7 +19900116,1800,129,100,5 +19900116,1800,129,100,3 +19900116,1800,129,100,2 +19900116,1800,129,100,1 +19900116,1800,129,210,40 +19900116,1800,157,100,1000 +19900116,1800,157,100,975 +19900116,1800,157,100,950 +19900116,1800,157,100,925 +19900116,1800,157,100,900 +19900116,1800,157,100,875 +19900116,1800,157,100,850 +19900116,1800,157,100,825 +19900116,1800,157,100,800 +19900116,1800,157,100,775 +19900116,1800,157,100,750 +19900116,1800,157,100,740 +19900116,1800,157,100,700 +19900116,1800,157,100,650 +19900116,1800,157,100,620 +19900116,1800,157,100,600 +19900116,1800,157,100,550 +19900116,1800,157,100,500 +19900116,1800,157,100,450 +19900116,1800,157,100,400 +19900116,1800,157,100,375 +19900116,1800,157,100,350 +19900116,1800,157,100,300 +19900116,1800,157,100,250 +19900116,1800,157,100,245 +19900116,1800,157,100,225 +19900116,1800,157,100,200 +19900116,1800,157,100,175 +19900116,1800,157,100,150 +19900116,1800,157,100,125 +19900116,1800,157,100,100 +19900116,1800,157,100,70 +19900116,1800,157,100,50 +19900116,1800,157,100,30 +19900116,1800,157,100,20 +19900116,1800,157,100,10 +19900116,1800,157,100,9 +19900116,1800,157,100,7 +19900116,1800,157,100,5 +19900116,1800,157,100,3 +19900116,1800,157,100,2 +19900116,1800,157,100,1 +19900116,1800,157,210,40 +19900116,1800,135,100,1000 +19900116,1800,135,100,975 +19900116,1800,135,100,950 +19900116,1800,135,100,925 +19900116,1800,135,100,900 +19900116,1800,135,100,875 +19900116,1800,135,100,850 +19900116,1800,135,100,825 +19900116,1800,135,100,800 +19900116,1800,135,100,775 +19900116,1800,135,100,750 +19900116,1800,135,100,740 +19900116,1800,135,100,700 +19900116,1800,135,100,650 +19900116,1800,135,100,620 +19900116,1800,135,100,600 +19900116,1800,135,100,550 +19900116,1800,135,100,500 +19900116,1800,135,100,450 +19900116,1800,135,100,400 +19900116,1800,135,100,375 +19900116,1800,135,100,350 +19900116,1800,135,100,300 +19900116,1800,135,100,250 +19900116,1800,135,100,245 +19900116,1800,135,100,225 +19900116,1800,135,100,200 +19900116,1800,135,100,175 +19900116,1800,135,100,150 +19900116,1800,135,100,125 +19900116,1800,135,100,100 +19900116,1800,135,100,70 +19900116,1800,135,100,50 +19900116,1800,135,100,30 +19900116,1800,135,100,20 +19900116,1800,135,100,10 +19900116,1800,135,100,9 +19900116,1800,135,100,7 +19900116,1800,135,100,5 +19900116,1800,135,100,3 +19900116,1800,135,100,2 +19900116,1800,135,100,1 +19900116,1800,135,210,40 +19900116,1800,138,100,1000 +19900116,1800,138,100,975 +19900116,1800,138,100,950 +19900116,1800,138,100,925 +19900116,1800,138,100,900 +19900116,1800,138,100,875 +19900116,1800,138,100,850 +19900116,1800,138,100,825 +19900116,1800,138,100,800 +19900116,1800,138,100,775 +19900116,1800,138,100,750 +19900116,1800,138,100,740 +19900116,1800,138,100,700 +19900116,1800,138,100,650 +19900116,1800,138,100,620 +19900116,1800,138,100,600 +19900116,1800,138,100,550 +19900116,1800,138,100,500 +19900116,1800,138,100,450 +19900116,1800,138,100,400 +19900116,1800,138,100,375 +19900116,1800,138,100,350 +19900116,1800,138,100,300 +19900116,1800,138,100,250 +19900116,1800,138,100,245 +19900116,1800,138,100,225 +19900116,1800,138,100,200 +19900116,1800,138,100,175 +19900116,1800,138,100,150 +19900116,1800,138,100,125 +19900116,1800,138,100,100 +19900116,1800,138,100,70 +19900116,1800,138,100,50 +19900116,1800,138,100,30 +19900116,1800,138,100,20 +19900116,1800,138,100,10 +19900116,1800,138,100,9 +19900116,1800,138,100,7 +19900116,1800,138,100,5 +19900116,1800,138,100,3 +19900116,1800,138,100,2 +19900116,1800,138,100,1 +19900116,1800,138,210,40 +19900116,1800,131,109,1 +19900116,1800,131,109,2 +19900116,1800,131,109,3 +19900116,1800,131,109,4 +19900116,1800,131,109,5 +19900116,1800,131,109,6 +19900116,1800,131,109,7 +19900116,1800,131,109,8 +19900116,1800,131,109,9 +19900116,1800,131,109,10 +19900116,1800,132,109,1 +19900116,1800,132,109,2 +19900116,1800,132,109,3 +19900116,1800,132,109,4 +19900116,1800,132,109,5 +19900116,1800,132,109,6 +19900116,1800,132,109,7 +19900116,1800,132,109,8 +19900116,1800,132,109,9 +19900116,1800,132,109,10 +19900116,1800,130,109,1 +19900116,1800,130,109,2 +19900116,1800,130,109,3 +19900116,1800,130,109,4 +19900116,1800,130,109,5 +19900116,1800,130,109,6 +19900116,1800,130,109,7 +19900116,1800,130,109,8 +19900116,1800,130,109,9 +19900116,1800,130,109,10 +19900116,1800,157,109,1 +19900116,1800,157,109,2 +19900116,1800,157,109,3 +19900116,1800,157,109,4 +19900116,1800,157,109,5 +19900116,1800,157,109,6 +19900116,1800,157,109,7 +19900116,1800,157,109,8 +19900116,1800,157,109,9 +19900116,1800,157,109,10 +19900116,1800,54,109,1 +19900116,1800,54,109,2 +19900116,1800,54,109,3 +19900116,1800,54,109,4 +19900116,1800,54,109,5 +19900116,1800,54,109,6 +19900116,1800,54,109,7 +19900116,1800,54,109,8 +19900116,1800,54,109,9 +19900116,1800,54,109,10 +19900116,1800,135,109,1 +19900116,1800,135,109,2 +19900116,1800,135,109,3 +19900116,1800,135,109,4 +19900116,1800,135,109,5 +19900116,1800,135,109,6 +19900116,1800,135,109,7 +19900116,1800,135,109,8 +19900116,1800,135,109,9 +19900116,1800,135,109,10 +19900116,1800,134,109,1 +19900116,1800,152,109,1 +19900116,1800,131,100,850 +19900116,1800,132,100,850 +19900116,1800,134,100,1000 +19900116,1800,152,100,1000 +19900116,2100,131,100,850 +19900116,2100,132,100,850 +19900116,2100,134,100,1000 +19900116,2100,152,100,1000 +19900117,0,131,100,1000 +19900117,0,131,100,975 +19900117,0,131,100,950 +19900117,0,131,100,925 +19900117,0,131,100,900 +19900117,0,131,100,875 +19900117,0,131,100,825 +19900117,0,131,100,800 +19900117,0,131,100,775 +19900117,0,131,100,750 +19900117,0,131,100,740 +19900117,0,131,100,700 +19900117,0,131,100,650 +19900117,0,131,100,620 +19900117,0,131,100,600 +19900117,0,131,100,550 +19900117,0,131,100,500 +19900117,0,131,100,450 +19900117,0,131,100,400 +19900117,0,131,100,375 +19900117,0,131,100,350 +19900117,0,131,100,300 +19900117,0,131,100,250 +19900117,0,131,100,245 +19900117,0,131,100,225 +19900117,0,131,100,200 +19900117,0,131,100,175 +19900117,0,131,100,150 +19900117,0,131,100,125 +19900117,0,131,100,100 +19900117,0,131,100,70 +19900117,0,131,100,50 +19900117,0,131,100,30 +19900117,0,131,100,20 +19900117,0,131,100,10 +19900117,0,131,100,9 +19900117,0,131,100,7 +19900117,0,131,100,5 +19900117,0,131,100,3 +19900117,0,131,100,2 +19900117,0,131,100,1 +19900117,0,131,210,40 +19900117,0,132,100,1000 +19900117,0,132,100,975 +19900117,0,132,100,950 +19900117,0,132,100,925 +19900117,0,132,100,900 +19900117,0,132,100,875 +19900117,0,132,100,825 +19900117,0,132,100,800 +19900117,0,132,100,775 +19900117,0,132,100,750 +19900117,0,132,100,740 +19900117,0,132,100,700 +19900117,0,132,100,650 +19900117,0,132,100,620 +19900117,0,132,100,600 +19900117,0,132,100,550 +19900117,0,132,100,500 +19900117,0,132,100,450 +19900117,0,132,100,400 +19900117,0,132,100,375 +19900117,0,132,100,350 +19900117,0,132,100,300 +19900117,0,132,100,250 +19900117,0,132,100,245 +19900117,0,132,100,225 +19900117,0,132,100,200 +19900117,0,132,100,175 +19900117,0,132,100,150 +19900117,0,132,100,125 +19900117,0,132,100,100 +19900117,0,132,100,70 +19900117,0,132,100,50 +19900117,0,132,100,30 +19900117,0,132,100,20 +19900117,0,132,100,10 +19900117,0,132,100,9 +19900117,0,132,100,7 +19900117,0,132,100,5 +19900117,0,132,100,3 +19900117,0,132,100,2 +19900117,0,132,100,1 +19900117,0,132,210,40 +19900117,0,130,100,1000 +19900117,0,130,100,975 +19900117,0,130,100,950 +19900117,0,130,100,925 +19900117,0,130,100,900 +19900117,0,130,100,875 +19900117,0,130,100,850 +19900117,0,130,100,825 +19900117,0,130,100,800 +19900117,0,130,100,775 +19900117,0,130,100,750 +19900117,0,130,100,740 +19900117,0,130,100,700 +19900117,0,130,100,650 +19900117,0,130,100,620 +19900117,0,130,100,600 +19900117,0,130,100,550 +19900117,0,130,100,500 +19900117,0,130,100,450 +19900117,0,130,100,400 +19900117,0,130,100,375 +19900117,0,130,100,350 +19900117,0,130,100,300 +19900117,0,130,100,250 +19900117,0,130,100,245 +19900117,0,130,100,225 +19900117,0,130,100,200 +19900117,0,130,100,175 +19900117,0,130,100,150 +19900117,0,130,100,125 +19900117,0,130,100,100 +19900117,0,130,100,70 +19900117,0,130,100,50 +19900117,0,130,100,30 +19900117,0,130,100,20 +19900117,0,130,100,10 +19900117,0,130,100,9 +19900117,0,130,100,7 +19900117,0,130,100,5 +19900117,0,130,100,3 +19900117,0,130,100,2 +19900117,0,130,100,1 +19900117,0,130,210,40 +19900117,0,129,100,1000 +19900117,0,129,100,975 +19900117,0,129,100,950 +19900117,0,129,100,925 +19900117,0,129,100,900 +19900117,0,129,100,875 +19900117,0,129,100,850 +19900117,0,129,100,825 +19900117,0,129,100,800 +19900117,0,129,100,775 +19900117,0,129,100,750 +19900117,0,129,100,740 +19900117,0,129,100,700 +19900117,0,129,100,650 +19900117,0,129,100,620 +19900117,0,129,100,600 +19900117,0,129,100,550 +19900117,0,129,100,500 +19900117,0,129,100,450 +19900117,0,129,100,400 +19900117,0,129,100,375 +19900117,0,129,100,350 +19900117,0,129,100,300 +19900117,0,129,100,250 +19900117,0,129,100,245 +19900117,0,129,100,225 +19900117,0,129,100,200 +19900117,0,129,100,175 +19900117,0,129,100,150 +19900117,0,129,100,125 +19900117,0,129,100,100 +19900117,0,129,100,70 +19900117,0,129,100,50 +19900117,0,129,100,30 +19900117,0,129,100,20 +19900117,0,129,100,10 +19900117,0,129,100,9 +19900117,0,129,100,7 +19900117,0,129,100,5 +19900117,0,129,100,3 +19900117,0,129,100,2 +19900117,0,129,100,1 +19900117,0,129,210,40 +19900117,0,157,100,1000 +19900117,0,157,100,975 +19900117,0,157,100,950 +19900117,0,157,100,925 +19900117,0,157,100,900 +19900117,0,157,100,875 +19900117,0,157,100,850 +19900117,0,157,100,825 +19900117,0,157,100,800 +19900117,0,157,100,775 +19900117,0,157,100,750 +19900117,0,157,100,740 +19900117,0,157,100,700 +19900117,0,157,100,650 +19900117,0,157,100,620 +19900117,0,157,100,600 +19900117,0,157,100,550 +19900117,0,157,100,500 +19900117,0,157,100,450 +19900117,0,157,100,400 +19900117,0,157,100,375 +19900117,0,157,100,350 +19900117,0,157,100,300 +19900117,0,157,100,250 +19900117,0,157,100,245 +19900117,0,157,100,225 +19900117,0,157,100,200 +19900117,0,157,100,175 +19900117,0,157,100,150 +19900117,0,157,100,125 +19900117,0,157,100,100 +19900117,0,157,100,70 +19900117,0,157,100,50 +19900117,0,157,100,30 +19900117,0,157,100,20 +19900117,0,157,100,10 +19900117,0,157,100,9 +19900117,0,157,100,7 +19900117,0,157,100,5 +19900117,0,157,100,3 +19900117,0,157,100,2 +19900117,0,157,100,1 +19900117,0,157,210,40 +19900117,0,135,100,1000 +19900117,0,135,100,975 +19900117,0,135,100,950 +19900117,0,135,100,925 +19900117,0,135,100,900 +19900117,0,135,100,875 +19900117,0,135,100,850 +19900117,0,135,100,825 +19900117,0,135,100,800 +19900117,0,135,100,775 +19900117,0,135,100,750 +19900117,0,135,100,740 +19900117,0,135,100,700 +19900117,0,135,100,650 +19900117,0,135,100,620 +19900117,0,135,100,600 +19900117,0,135,100,550 +19900117,0,135,100,500 +19900117,0,135,100,450 +19900117,0,135,100,400 +19900117,0,135,100,375 +19900117,0,135,100,350 +19900117,0,135,100,300 +19900117,0,135,100,250 +19900117,0,135,100,245 +19900117,0,135,100,225 +19900117,0,135,100,200 +19900117,0,135,100,175 +19900117,0,135,100,150 +19900117,0,135,100,125 +19900117,0,135,100,100 +19900117,0,135,100,70 +19900117,0,135,100,50 +19900117,0,135,100,30 +19900117,0,135,100,20 +19900117,0,135,100,10 +19900117,0,135,100,9 +19900117,0,135,100,7 +19900117,0,135,100,5 +19900117,0,135,100,3 +19900117,0,135,100,2 +19900117,0,135,100,1 +19900117,0,135,210,40 +19900117,0,138,100,1000 +19900117,0,138,100,975 +19900117,0,138,100,950 +19900117,0,138,100,925 +19900117,0,138,100,900 +19900117,0,138,100,875 +19900117,0,138,100,850 +19900117,0,138,100,825 +19900117,0,138,100,800 +19900117,0,138,100,775 +19900117,0,138,100,750 +19900117,0,138,100,740 +19900117,0,138,100,700 +19900117,0,138,100,650 +19900117,0,138,100,620 +19900117,0,138,100,600 +19900117,0,138,100,550 +19900117,0,138,100,500 +19900117,0,138,100,450 +19900117,0,138,100,400 +19900117,0,138,100,375 +19900117,0,138,100,350 +19900117,0,138,100,300 +19900117,0,138,100,250 +19900117,0,138,100,245 +19900117,0,138,100,225 +19900117,0,138,100,200 +19900117,0,138,100,175 +19900117,0,138,100,150 +19900117,0,138,100,125 +19900117,0,138,100,100 +19900117,0,138,100,70 +19900117,0,138,100,50 +19900117,0,138,100,30 +19900117,0,138,100,20 +19900117,0,138,100,10 +19900117,0,138,100,9 +19900117,0,138,100,7 +19900117,0,138,100,5 +19900117,0,138,100,3 +19900117,0,138,100,2 +19900117,0,138,100,1 +19900117,0,138,210,40 +19900117,0,131,109,1 +19900117,0,131,109,2 +19900117,0,131,109,3 +19900117,0,131,109,4 +19900117,0,131,109,5 +19900117,0,131,109,6 +19900117,0,131,109,7 +19900117,0,131,109,8 +19900117,0,131,109,9 +19900117,0,131,109,10 +19900117,0,132,109,1 +19900117,0,132,109,2 +19900117,0,132,109,3 +19900117,0,132,109,4 +19900117,0,132,109,5 +19900117,0,132,109,6 +19900117,0,132,109,7 +19900117,0,132,109,8 +19900117,0,132,109,9 +19900117,0,132,109,10 +19900117,0,130,109,1 +19900117,0,130,109,2 +19900117,0,130,109,3 +19900117,0,130,109,4 +19900117,0,130,109,5 +19900117,0,130,109,6 +19900117,0,130,109,7 +19900117,0,130,109,8 +19900117,0,130,109,9 +19900117,0,130,109,10 +19900117,0,157,109,1 +19900117,0,157,109,2 +19900117,0,157,109,3 +19900117,0,157,109,4 +19900117,0,157,109,5 +19900117,0,157,109,6 +19900117,0,157,109,7 +19900117,0,157,109,8 +19900117,0,157,109,9 +19900117,0,157,109,10 +19900117,0,54,109,1 +19900117,0,54,109,2 +19900117,0,54,109,3 +19900117,0,54,109,4 +19900117,0,54,109,5 +19900117,0,54,109,6 +19900117,0,54,109,7 +19900117,0,54,109,8 +19900117,0,54,109,9 +19900117,0,54,109,10 +19900117,0,135,109,1 +19900117,0,135,109,2 +19900117,0,135,109,3 +19900117,0,135,109,4 +19900117,0,135,109,5 +19900117,0,135,109,6 +19900117,0,135,109,7 +19900117,0,135,109,8 +19900117,0,135,109,9 +19900117,0,135,109,10 +19900117,0,134,109,1 +19900117,0,152,109,1 +19900117,0,131,100,850 +19900117,0,132,100,850 +19900117,0,134,100,1000 +19900117,0,152,100,1000 +19900117,300,131,100,850 +19900117,300,132,100,850 +19900117,300,134,100,1000 +19900117,300,152,100,1000 +19900117,600,131,100,1000 +19900117,600,131,100,975 +19900117,600,131,100,950 +19900117,600,131,100,925 +19900117,600,131,100,900 +19900117,600,131,100,875 +19900117,600,131,100,825 +19900117,600,131,100,800 +19900117,600,131,100,775 +19900117,600,131,100,750 +19900117,600,131,100,740 +19900117,600,131,100,700 +19900117,600,131,100,650 +19900117,600,131,100,620 +19900117,600,131,100,600 +19900117,600,131,100,550 +19900117,600,131,100,500 +19900117,600,131,100,450 +19900117,600,131,100,400 +19900117,600,131,100,375 +19900117,600,131,100,350 +19900117,600,131,100,300 +19900117,600,131,100,250 +19900117,600,131,100,245 +19900117,600,131,100,225 +19900117,600,131,100,200 +19900117,600,131,100,175 +19900117,600,131,100,150 +19900117,600,131,100,125 +19900117,600,131,100,100 +19900117,600,131,100,70 +19900117,600,131,100,50 +19900117,600,131,100,30 +19900117,600,131,100,20 +19900117,600,131,100,10 +19900117,600,131,100,9 +19900117,600,131,100,7 +19900117,600,131,100,5 +19900117,600,131,100,3 +19900117,600,131,100,2 +19900117,600,131,100,1 +19900117,600,131,210,40 +19900117,600,132,100,1000 +19900117,600,132,100,975 +19900117,600,132,100,950 +19900117,600,132,100,925 +19900117,600,132,100,900 +19900117,600,132,100,875 +19900117,600,132,100,825 +19900117,600,132,100,800 +19900117,600,132,100,775 +19900117,600,132,100,750 +19900117,600,132,100,740 +19900117,600,132,100,700 +19900117,600,132,100,650 +19900117,600,132,100,620 +19900117,600,132,100,600 +19900117,600,132,100,550 +19900117,600,132,100,500 +19900117,600,132,100,450 +19900117,600,132,100,400 +19900117,600,132,100,375 +19900117,600,132,100,350 +19900117,600,132,100,300 +19900117,600,132,100,250 +19900117,600,132,100,245 +19900117,600,132,100,225 +19900117,600,132,100,200 +19900117,600,132,100,175 +19900117,600,132,100,150 +19900117,600,132,100,125 +19900117,600,132,100,100 +19900117,600,132,100,70 +19900117,600,132,100,50 +19900117,600,132,100,30 +19900117,600,132,100,20 +19900117,600,132,100,10 +19900117,600,132,100,9 +19900117,600,132,100,7 +19900117,600,132,100,5 +19900117,600,132,100,3 +19900117,600,132,100,2 +19900117,600,132,100,1 +19900117,600,132,210,40 +19900117,600,130,100,1000 +19900117,600,130,100,975 +19900117,600,130,100,950 +19900117,600,130,100,925 +19900117,600,130,100,900 +19900117,600,130,100,875 +19900117,600,130,100,850 +19900117,600,130,100,825 +19900117,600,130,100,800 +19900117,600,130,100,775 +19900117,600,130,100,750 +19900117,600,130,100,740 +19900117,600,130,100,700 +19900117,600,130,100,650 +19900117,600,130,100,620 +19900117,600,130,100,600 +19900117,600,130,100,550 +19900117,600,130,100,500 +19900117,600,130,100,450 +19900117,600,130,100,400 +19900117,600,130,100,375 +19900117,600,130,100,350 +19900117,600,130,100,300 +19900117,600,130,100,250 +19900117,600,130,100,245 +19900117,600,130,100,225 +19900117,600,130,100,200 +19900117,600,130,100,175 +19900117,600,130,100,150 +19900117,600,130,100,125 +19900117,600,130,100,100 +19900117,600,130,100,70 +19900117,600,130,100,50 +19900117,600,130,100,30 +19900117,600,130,100,20 +19900117,600,130,100,10 +19900117,600,130,100,9 +19900117,600,130,100,7 +19900117,600,130,100,5 +19900117,600,130,100,3 +19900117,600,130,100,2 +19900117,600,130,100,1 +19900117,600,130,210,40 +19900117,600,129,100,1000 +19900117,600,129,100,975 +19900117,600,129,100,950 +19900117,600,129,100,925 +19900117,600,129,100,900 +19900117,600,129,100,875 +19900117,600,129,100,850 +19900117,600,129,100,825 +19900117,600,129,100,800 +19900117,600,129,100,775 +19900117,600,129,100,750 +19900117,600,129,100,740 +19900117,600,129,100,700 +19900117,600,129,100,650 +19900117,600,129,100,620 +19900117,600,129,100,600 +19900117,600,129,100,550 +19900117,600,129,100,500 +19900117,600,129,100,450 +19900117,600,129,100,400 +19900117,600,129,100,375 +19900117,600,129,100,350 +19900117,600,129,100,300 +19900117,600,129,100,250 +19900117,600,129,100,245 +19900117,600,129,100,225 +19900117,600,129,100,200 +19900117,600,129,100,175 +19900117,600,129,100,150 +19900117,600,129,100,125 +19900117,600,129,100,100 +19900117,600,129,100,70 +19900117,600,129,100,50 +19900117,600,129,100,30 +19900117,600,129,100,20 +19900117,600,129,100,10 +19900117,600,129,100,9 +19900117,600,129,100,7 +19900117,600,129,100,5 +19900117,600,129,100,3 +19900117,600,129,100,2 +19900117,600,129,100,1 +19900117,600,129,210,40 +19900117,600,157,100,1000 +19900117,600,157,100,975 +19900117,600,157,100,950 +19900117,600,157,100,925 +19900117,600,157,100,900 +19900117,600,157,100,875 +19900117,600,157,100,850 +19900117,600,157,100,825 +19900117,600,157,100,800 +19900117,600,157,100,775 +19900117,600,157,100,750 +19900117,600,157,100,740 +19900117,600,157,100,700 +19900117,600,157,100,650 +19900117,600,157,100,620 +19900117,600,157,100,600 +19900117,600,157,100,550 +19900117,600,157,100,500 +19900117,600,157,100,450 +19900117,600,157,100,400 +19900117,600,157,100,375 +19900117,600,157,100,350 +19900117,600,157,100,300 +19900117,600,157,100,250 +19900117,600,157,100,245 +19900117,600,157,100,225 +19900117,600,157,100,200 +19900117,600,157,100,175 +19900117,600,157,100,150 +19900117,600,157,100,125 +19900117,600,157,100,100 +19900117,600,157,100,70 +19900117,600,157,100,50 +19900117,600,157,100,30 +19900117,600,157,100,20 +19900117,600,157,100,10 +19900117,600,157,100,9 +19900117,600,157,100,7 +19900117,600,157,100,5 +19900117,600,157,100,3 +19900117,600,157,100,2 +19900117,600,157,100,1 +19900117,600,157,210,40 +19900117,600,135,100,1000 +19900117,600,135,100,975 +19900117,600,135,100,950 +19900117,600,135,100,925 +19900117,600,135,100,900 +19900117,600,135,100,875 +19900117,600,135,100,850 +19900117,600,135,100,825 +19900117,600,135,100,800 +19900117,600,135,100,775 +19900117,600,135,100,750 +19900117,600,135,100,740 +19900117,600,135,100,700 +19900117,600,135,100,650 +19900117,600,135,100,620 +19900117,600,135,100,600 +19900117,600,135,100,550 +19900117,600,135,100,500 +19900117,600,135,100,450 +19900117,600,135,100,400 +19900117,600,135,100,375 +19900117,600,135,100,350 +19900117,600,135,100,300 +19900117,600,135,100,250 +19900117,600,135,100,245 +19900117,600,135,100,225 +19900117,600,135,100,200 +19900117,600,135,100,175 +19900117,600,135,100,150 +19900117,600,135,100,125 +19900117,600,135,100,100 +19900117,600,135,100,70 +19900117,600,135,100,50 +19900117,600,135,100,30 +19900117,600,135,100,20 +19900117,600,135,100,10 +19900117,600,135,100,9 +19900117,600,135,100,7 +19900117,600,135,100,5 +19900117,600,135,100,3 +19900117,600,135,100,2 +19900117,600,135,100,1 +19900117,600,135,210,40 +19900117,600,138,100,1000 +19900117,600,138,100,975 +19900117,600,138,100,950 +19900117,600,138,100,925 +19900117,600,138,100,900 +19900117,600,138,100,875 +19900117,600,138,100,850 +19900117,600,138,100,825 +19900117,600,138,100,800 +19900117,600,138,100,775 +19900117,600,138,100,750 +19900117,600,138,100,740 +19900117,600,138,100,700 +19900117,600,138,100,650 +19900117,600,138,100,620 +19900117,600,138,100,600 +19900117,600,138,100,550 +19900117,600,138,100,500 +19900117,600,138,100,450 +19900117,600,138,100,400 +19900117,600,138,100,375 +19900117,600,138,100,350 +19900117,600,138,100,300 +19900117,600,138,100,250 +19900117,600,138,100,245 +19900117,600,138,100,225 +19900117,600,138,100,200 +19900117,600,138,100,175 +19900117,600,138,100,150 +19900117,600,138,100,125 +19900117,600,138,100,100 +19900117,600,138,100,70 +19900117,600,138,100,50 +19900117,600,138,100,30 +19900117,600,138,100,20 +19900117,600,138,100,10 +19900117,600,138,100,9 +19900117,600,138,100,7 +19900117,600,138,100,5 +19900117,600,138,100,3 +19900117,600,138,100,2 +19900117,600,138,100,1 +19900117,600,138,210,40 +19900117,600,131,109,1 +19900117,600,131,109,2 +19900117,600,131,109,3 +19900117,600,131,109,4 +19900117,600,131,109,5 +19900117,600,131,109,6 +19900117,600,131,109,7 +19900117,600,131,109,8 +19900117,600,131,109,9 +19900117,600,131,109,10 +19900117,600,132,109,1 +19900117,600,132,109,2 +19900117,600,132,109,3 +19900117,600,132,109,4 +19900117,600,132,109,5 +19900117,600,132,109,6 +19900117,600,132,109,7 +19900117,600,132,109,8 +19900117,600,132,109,9 +19900117,600,132,109,10 +19900117,600,130,109,1 +19900117,600,130,109,2 +19900117,600,130,109,3 +19900117,600,130,109,4 +19900117,600,130,109,5 +19900117,600,130,109,6 +19900117,600,130,109,7 +19900117,600,130,109,8 +19900117,600,130,109,9 +19900117,600,130,109,10 +19900117,600,157,109,1 +19900117,600,157,109,2 +19900117,600,157,109,3 +19900117,600,157,109,4 +19900117,600,157,109,5 +19900117,600,157,109,6 +19900117,600,157,109,7 +19900117,600,157,109,8 +19900117,600,157,109,9 +19900117,600,157,109,10 +19900117,600,54,109,1 +19900117,600,54,109,2 +19900117,600,54,109,3 +19900117,600,54,109,4 +19900117,600,54,109,5 +19900117,600,54,109,6 +19900117,600,54,109,7 +19900117,600,54,109,8 +19900117,600,54,109,9 +19900117,600,54,109,10 +19900117,600,135,109,1 +19900117,600,135,109,2 +19900117,600,135,109,3 +19900117,600,135,109,4 +19900117,600,135,109,5 +19900117,600,135,109,6 +19900117,600,135,109,7 +19900117,600,135,109,8 +19900117,600,135,109,9 +19900117,600,135,109,10 +19900117,600,134,109,1 +19900117,600,152,109,1 +19900117,600,131,100,850 +19900117,600,132,100,850 +19900117,600,134,100,1000 +19900117,600,152,100,1000 +19900117,900,131,100,850 +19900117,900,132,100,850 +19900117,900,134,100,1000 +19900117,900,152,100,1000 +19900117,1200,131,100,1000 +19900117,1200,131,100,975 +19900117,1200,131,100,950 +19900117,1200,131,100,925 +19900117,1200,131,100,900 +19900117,1200,131,100,875 +19900117,1200,131,100,825 +19900117,1200,131,100,800 +19900117,1200,131,100,775 +19900117,1200,131,100,750 +19900117,1200,131,100,740 +19900117,1200,131,100,700 +19900117,1200,131,100,650 +19900117,1200,131,100,620 +19900117,1200,131,100,600 +19900117,1200,131,100,550 +19900117,1200,131,100,500 +19900117,1200,131,100,450 +19900117,1200,131,100,400 +19900117,1200,131,100,375 +19900117,1200,131,100,350 +19900117,1200,131,100,300 +19900117,1200,131,100,250 +19900117,1200,131,100,245 +19900117,1200,131,100,225 +19900117,1200,131,100,200 +19900117,1200,131,100,175 +19900117,1200,131,100,150 +19900117,1200,131,100,125 +19900117,1200,131,100,100 +19900117,1200,131,100,70 +19900117,1200,131,100,50 +19900117,1200,131,100,30 +19900117,1200,131,100,20 +19900117,1200,131,100,10 +19900117,1200,131,100,9 +19900117,1200,131,100,7 +19900117,1200,131,100,5 +19900117,1200,131,100,3 +19900117,1200,131,100,2 +19900117,1200,131,100,1 +19900117,1200,131,210,40 +19900117,1200,132,100,1000 +19900117,1200,132,100,975 +19900117,1200,132,100,950 +19900117,1200,132,100,925 +19900117,1200,132,100,900 +19900117,1200,132,100,875 +19900117,1200,132,100,825 +19900117,1200,132,100,800 +19900117,1200,132,100,775 +19900117,1200,132,100,750 +19900117,1200,132,100,740 +19900117,1200,132,100,700 +19900117,1200,132,100,650 +19900117,1200,132,100,620 +19900117,1200,132,100,600 +19900117,1200,132,100,550 +19900117,1200,132,100,500 +19900117,1200,132,100,450 +19900117,1200,132,100,400 +19900117,1200,132,100,375 +19900117,1200,132,100,350 +19900117,1200,132,100,300 +19900117,1200,132,100,250 +19900117,1200,132,100,245 +19900117,1200,132,100,225 +19900117,1200,132,100,200 +19900117,1200,132,100,175 +19900117,1200,132,100,150 +19900117,1200,132,100,125 +19900117,1200,132,100,100 +19900117,1200,132,100,70 +19900117,1200,132,100,50 +19900117,1200,132,100,30 +19900117,1200,132,100,20 +19900117,1200,132,100,10 +19900117,1200,132,100,9 +19900117,1200,132,100,7 +19900117,1200,132,100,5 +19900117,1200,132,100,3 +19900117,1200,132,100,2 +19900117,1200,132,100,1 +19900117,1200,132,210,40 +19900117,1200,130,100,1000 +19900117,1200,130,100,975 +19900117,1200,130,100,950 +19900117,1200,130,100,925 +19900117,1200,130,100,900 +19900117,1200,130,100,875 +19900117,1200,130,100,850 +19900117,1200,130,100,825 +19900117,1200,130,100,800 +19900117,1200,130,100,775 +19900117,1200,130,100,750 +19900117,1200,130,100,740 +19900117,1200,130,100,700 +19900117,1200,130,100,650 +19900117,1200,130,100,620 +19900117,1200,130,100,600 +19900117,1200,130,100,550 +19900117,1200,130,100,500 +19900117,1200,130,100,450 +19900117,1200,130,100,400 +19900117,1200,130,100,375 +19900117,1200,130,100,350 +19900117,1200,130,100,300 +19900117,1200,130,100,250 +19900117,1200,130,100,245 +19900117,1200,130,100,225 +19900117,1200,130,100,200 +19900117,1200,130,100,175 +19900117,1200,130,100,150 +19900117,1200,130,100,125 +19900117,1200,130,100,100 +19900117,1200,130,100,70 +19900117,1200,130,100,50 +19900117,1200,130,100,30 +19900117,1200,130,100,20 +19900117,1200,130,100,10 +19900117,1200,130,100,9 +19900117,1200,130,100,7 +19900117,1200,130,100,5 +19900117,1200,130,100,3 +19900117,1200,130,100,2 +19900117,1200,130,100,1 +19900117,1200,130,210,40 +19900117,1200,129,100,1000 +19900117,1200,129,100,975 +19900117,1200,129,100,950 +19900117,1200,129,100,925 +19900117,1200,129,100,900 +19900117,1200,129,100,875 +19900117,1200,129,100,850 +19900117,1200,129,100,825 +19900117,1200,129,100,800 +19900117,1200,129,100,775 +19900117,1200,129,100,750 +19900117,1200,129,100,740 +19900117,1200,129,100,700 +19900117,1200,129,100,650 +19900117,1200,129,100,620 +19900117,1200,129,100,600 +19900117,1200,129,100,550 +19900117,1200,129,100,500 +19900117,1200,129,100,450 +19900117,1200,129,100,400 +19900117,1200,129,100,375 +19900117,1200,129,100,350 +19900117,1200,129,100,300 +19900117,1200,129,100,250 +19900117,1200,129,100,245 +19900117,1200,129,100,225 +19900117,1200,129,100,200 +19900117,1200,129,100,175 +19900117,1200,129,100,150 +19900117,1200,129,100,125 +19900117,1200,129,100,100 +19900117,1200,129,100,70 +19900117,1200,129,100,50 +19900117,1200,129,100,30 +19900117,1200,129,100,20 +19900117,1200,129,100,10 +19900117,1200,129,100,9 +19900117,1200,129,100,7 +19900117,1200,129,100,5 +19900117,1200,129,100,3 +19900117,1200,129,100,2 +19900117,1200,129,100,1 +19900117,1200,129,210,40 +19900117,1200,157,100,1000 +19900117,1200,157,100,975 +19900117,1200,157,100,950 +19900117,1200,157,100,925 +19900117,1200,157,100,900 +19900117,1200,157,100,875 +19900117,1200,157,100,850 +19900117,1200,157,100,825 +19900117,1200,157,100,800 +19900117,1200,157,100,775 +19900117,1200,157,100,750 +19900117,1200,157,100,740 +19900117,1200,157,100,700 +19900117,1200,157,100,650 +19900117,1200,157,100,620 +19900117,1200,157,100,600 +19900117,1200,157,100,550 +19900117,1200,157,100,500 +19900117,1200,157,100,450 +19900117,1200,157,100,400 +19900117,1200,157,100,375 +19900117,1200,157,100,350 +19900117,1200,157,100,300 +19900117,1200,157,100,250 +19900117,1200,157,100,245 +19900117,1200,157,100,225 +19900117,1200,157,100,200 +19900117,1200,157,100,175 +19900117,1200,157,100,150 +19900117,1200,157,100,125 +19900117,1200,157,100,100 +19900117,1200,157,100,70 +19900117,1200,157,100,50 +19900117,1200,157,100,30 +19900117,1200,157,100,20 +19900117,1200,157,100,10 +19900117,1200,157,100,9 +19900117,1200,157,100,7 +19900117,1200,157,100,5 +19900117,1200,157,100,3 +19900117,1200,157,100,2 +19900117,1200,157,100,1 +19900117,1200,157,210,40 +19900117,1200,135,100,1000 +19900117,1200,135,100,975 +19900117,1200,135,100,950 +19900117,1200,135,100,925 +19900117,1200,135,100,900 +19900117,1200,135,100,875 +19900117,1200,135,100,850 +19900117,1200,135,100,825 +19900117,1200,135,100,800 +19900117,1200,135,100,775 +19900117,1200,135,100,750 +19900117,1200,135,100,740 +19900117,1200,135,100,700 +19900117,1200,135,100,650 +19900117,1200,135,100,620 +19900117,1200,135,100,600 +19900117,1200,135,100,550 +19900117,1200,135,100,500 +19900117,1200,135,100,450 +19900117,1200,135,100,400 +19900117,1200,135,100,375 +19900117,1200,135,100,350 +19900117,1200,135,100,300 +19900117,1200,135,100,250 +19900117,1200,135,100,245 +19900117,1200,135,100,225 +19900117,1200,135,100,200 +19900117,1200,135,100,175 +19900117,1200,135,100,150 +19900117,1200,135,100,125 +19900117,1200,135,100,100 +19900117,1200,135,100,70 +19900117,1200,135,100,50 +19900117,1200,135,100,30 +19900117,1200,135,100,20 +19900117,1200,135,100,10 +19900117,1200,135,100,9 +19900117,1200,135,100,7 +19900117,1200,135,100,5 +19900117,1200,135,100,3 +19900117,1200,135,100,2 +19900117,1200,135,100,1 +19900117,1200,135,210,40 +19900117,1200,138,100,1000 +19900117,1200,138,100,975 +19900117,1200,138,100,950 +19900117,1200,138,100,925 +19900117,1200,138,100,900 +19900117,1200,138,100,875 +19900117,1200,138,100,850 +19900117,1200,138,100,825 +19900117,1200,138,100,800 +19900117,1200,138,100,775 +19900117,1200,138,100,750 +19900117,1200,138,100,740 +19900117,1200,138,100,700 +19900117,1200,138,100,650 +19900117,1200,138,100,620 +19900117,1200,138,100,600 +19900117,1200,138,100,550 +19900117,1200,138,100,500 +19900117,1200,138,100,450 +19900117,1200,138,100,400 +19900117,1200,138,100,375 +19900117,1200,138,100,350 +19900117,1200,138,100,300 +19900117,1200,138,100,250 +19900117,1200,138,100,245 +19900117,1200,138,100,225 +19900117,1200,138,100,200 +19900117,1200,138,100,175 +19900117,1200,138,100,150 +19900117,1200,138,100,125 +19900117,1200,138,100,100 +19900117,1200,138,100,70 +19900117,1200,138,100,50 +19900117,1200,138,100,30 +19900117,1200,138,100,20 +19900117,1200,138,100,10 +19900117,1200,138,100,9 +19900117,1200,138,100,7 +19900117,1200,138,100,5 +19900117,1200,138,100,3 +19900117,1200,138,100,2 +19900117,1200,138,100,1 +19900117,1200,138,210,40 +19900117,1200,131,109,1 +19900117,1200,131,109,2 +19900117,1200,131,109,3 +19900117,1200,131,109,4 +19900117,1200,131,109,5 +19900117,1200,131,109,6 +19900117,1200,131,109,7 +19900117,1200,131,109,8 +19900117,1200,131,109,9 +19900117,1200,131,109,10 +19900117,1200,132,109,1 +19900117,1200,132,109,2 +19900117,1200,132,109,3 +19900117,1200,132,109,4 +19900117,1200,132,109,5 +19900117,1200,132,109,6 +19900117,1200,132,109,7 +19900117,1200,132,109,8 +19900117,1200,132,109,9 +19900117,1200,132,109,10 +19900117,1200,130,109,1 +19900117,1200,130,109,2 +19900117,1200,130,109,3 +19900117,1200,130,109,4 +19900117,1200,130,109,5 +19900117,1200,130,109,6 +19900117,1200,130,109,7 +19900117,1200,130,109,8 +19900117,1200,130,109,9 +19900117,1200,130,109,10 +19900117,1200,157,109,1 +19900117,1200,157,109,2 +19900117,1200,157,109,3 +19900117,1200,157,109,4 +19900117,1200,157,109,5 +19900117,1200,157,109,6 +19900117,1200,157,109,7 +19900117,1200,157,109,8 +19900117,1200,157,109,9 +19900117,1200,157,109,10 +19900117,1200,54,109,1 +19900117,1200,54,109,2 +19900117,1200,54,109,3 +19900117,1200,54,109,4 +19900117,1200,54,109,5 +19900117,1200,54,109,6 +19900117,1200,54,109,7 +19900117,1200,54,109,8 +19900117,1200,54,109,9 +19900117,1200,54,109,10 +19900117,1200,135,109,1 +19900117,1200,135,109,2 +19900117,1200,135,109,3 +19900117,1200,135,109,4 +19900117,1200,135,109,5 +19900117,1200,135,109,6 +19900117,1200,135,109,7 +19900117,1200,135,109,8 +19900117,1200,135,109,9 +19900117,1200,135,109,10 +19900117,1200,134,109,1 +19900117,1200,152,109,1 +19900117,1200,131,100,850 +19900117,1200,132,100,850 +19900117,1200,134,100,1000 +19900117,1200,152,100,1000 +19900117,1500,131,100,850 +19900117,1500,132,100,850 +19900117,1500,134,100,1000 +19900117,1500,152,100,1000 +19900117,1800,131,100,1000 +19900117,1800,131,100,975 +19900117,1800,131,100,950 +19900117,1800,131,100,925 +19900117,1800,131,100,900 +19900117,1800,131,100,875 +19900117,1800,131,100,825 +19900117,1800,131,100,800 +19900117,1800,131,100,775 +19900117,1800,131,100,750 +19900117,1800,131,100,740 +19900117,1800,131,100,700 +19900117,1800,131,100,650 +19900117,1800,131,100,620 +19900117,1800,131,100,600 +19900117,1800,131,100,550 +19900117,1800,131,100,500 +19900117,1800,131,100,450 +19900117,1800,131,100,400 +19900117,1800,131,100,375 +19900117,1800,131,100,350 +19900117,1800,131,100,300 +19900117,1800,131,100,250 +19900117,1800,131,100,245 +19900117,1800,131,100,225 +19900117,1800,131,100,200 +19900117,1800,131,100,175 +19900117,1800,131,100,150 +19900117,1800,131,100,125 +19900117,1800,131,100,100 +19900117,1800,131,100,70 +19900117,1800,131,100,50 +19900117,1800,131,100,30 +19900117,1800,131,100,20 +19900117,1800,131,100,10 +19900117,1800,131,100,9 +19900117,1800,131,100,7 +19900117,1800,131,100,5 +19900117,1800,131,100,3 +19900117,1800,131,100,2 +19900117,1800,131,100,1 +19900117,1800,131,210,40 +19900117,1800,132,100,1000 +19900117,1800,132,100,975 +19900117,1800,132,100,950 +19900117,1800,132,100,925 +19900117,1800,132,100,900 +19900117,1800,132,100,875 +19900117,1800,132,100,825 +19900117,1800,132,100,800 +19900117,1800,132,100,775 +19900117,1800,132,100,750 +19900117,1800,132,100,740 +19900117,1800,132,100,700 +19900117,1800,132,100,650 +19900117,1800,132,100,620 +19900117,1800,132,100,600 +19900117,1800,132,100,550 +19900117,1800,132,100,500 +19900117,1800,132,100,450 +19900117,1800,132,100,400 +19900117,1800,132,100,375 +19900117,1800,132,100,350 +19900117,1800,132,100,300 +19900117,1800,132,100,250 +19900117,1800,132,100,245 +19900117,1800,132,100,225 +19900117,1800,132,100,200 +19900117,1800,132,100,175 +19900117,1800,132,100,150 +19900117,1800,132,100,125 +19900117,1800,132,100,100 +19900117,1800,132,100,70 +19900117,1800,132,100,50 +19900117,1800,132,100,30 +19900117,1800,132,100,20 +19900117,1800,132,100,10 +19900117,1800,132,100,9 +19900117,1800,132,100,7 +19900117,1800,132,100,5 +19900117,1800,132,100,3 +19900117,1800,132,100,2 +19900117,1800,132,100,1 +19900117,1800,132,210,40 +19900117,1800,130,100,1000 +19900117,1800,130,100,975 +19900117,1800,130,100,950 +19900117,1800,130,100,925 +19900117,1800,130,100,900 +19900117,1800,130,100,875 +19900117,1800,130,100,850 +19900117,1800,130,100,825 +19900117,1800,130,100,800 +19900117,1800,130,100,775 +19900117,1800,130,100,750 +19900117,1800,130,100,740 +19900117,1800,130,100,700 +19900117,1800,130,100,650 +19900117,1800,130,100,620 +19900117,1800,130,100,600 +19900117,1800,130,100,550 +19900117,1800,130,100,500 +19900117,1800,130,100,450 +19900117,1800,130,100,400 +19900117,1800,130,100,375 +19900117,1800,130,100,350 +19900117,1800,130,100,300 +19900117,1800,130,100,250 +19900117,1800,130,100,245 +19900117,1800,130,100,225 +19900117,1800,130,100,200 +19900117,1800,130,100,175 +19900117,1800,130,100,150 +19900117,1800,130,100,125 +19900117,1800,130,100,100 +19900117,1800,130,100,70 +19900117,1800,130,100,50 +19900117,1800,130,100,30 +19900117,1800,130,100,20 +19900117,1800,130,100,10 +19900117,1800,130,100,9 +19900117,1800,130,100,7 +19900117,1800,130,100,5 +19900117,1800,130,100,3 +19900117,1800,130,100,2 +19900117,1800,130,100,1 +19900117,1800,130,210,40 +19900117,1800,129,100,1000 +19900117,1800,129,100,975 +19900117,1800,129,100,950 +19900117,1800,129,100,925 +19900117,1800,129,100,900 +19900117,1800,129,100,875 +19900117,1800,129,100,850 +19900117,1800,129,100,825 +19900117,1800,129,100,800 +19900117,1800,129,100,775 +19900117,1800,129,100,750 +19900117,1800,129,100,740 +19900117,1800,129,100,700 +19900117,1800,129,100,650 +19900117,1800,129,100,620 +19900117,1800,129,100,600 +19900117,1800,129,100,550 +19900117,1800,129,100,500 +19900117,1800,129,100,450 +19900117,1800,129,100,400 +19900117,1800,129,100,375 +19900117,1800,129,100,350 +19900117,1800,129,100,300 +19900117,1800,129,100,250 +19900117,1800,129,100,245 +19900117,1800,129,100,225 +19900117,1800,129,100,200 +19900117,1800,129,100,175 +19900117,1800,129,100,150 +19900117,1800,129,100,125 +19900117,1800,129,100,100 +19900117,1800,129,100,70 +19900117,1800,129,100,50 +19900117,1800,129,100,30 +19900117,1800,129,100,20 +19900117,1800,129,100,10 +19900117,1800,129,100,9 +19900117,1800,129,100,7 +19900117,1800,129,100,5 +19900117,1800,129,100,3 +19900117,1800,129,100,2 +19900117,1800,129,100,1 +19900117,1800,129,210,40 +19900117,1800,157,100,1000 +19900117,1800,157,100,975 +19900117,1800,157,100,950 +19900117,1800,157,100,925 +19900117,1800,157,100,900 +19900117,1800,157,100,875 +19900117,1800,157,100,850 +19900117,1800,157,100,825 +19900117,1800,157,100,800 +19900117,1800,157,100,775 +19900117,1800,157,100,750 +19900117,1800,157,100,740 +19900117,1800,157,100,700 +19900117,1800,157,100,650 +19900117,1800,157,100,620 +19900117,1800,157,100,600 +19900117,1800,157,100,550 +19900117,1800,157,100,500 +19900117,1800,157,100,450 +19900117,1800,157,100,400 +19900117,1800,157,100,375 +19900117,1800,157,100,350 +19900117,1800,157,100,300 +19900117,1800,157,100,250 +19900117,1800,157,100,245 +19900117,1800,157,100,225 +19900117,1800,157,100,200 +19900117,1800,157,100,175 +19900117,1800,157,100,150 +19900117,1800,157,100,125 +19900117,1800,157,100,100 +19900117,1800,157,100,70 +19900117,1800,157,100,50 +19900117,1800,157,100,30 +19900117,1800,157,100,20 +19900117,1800,157,100,10 +19900117,1800,157,100,9 +19900117,1800,157,100,7 +19900117,1800,157,100,5 +19900117,1800,157,100,3 +19900117,1800,157,100,2 +19900117,1800,157,100,1 +19900117,1800,157,210,40 +19900117,1800,135,100,1000 +19900117,1800,135,100,975 +19900117,1800,135,100,950 +19900117,1800,135,100,925 +19900117,1800,135,100,900 +19900117,1800,135,100,875 +19900117,1800,135,100,850 +19900117,1800,135,100,825 +19900117,1800,135,100,800 +19900117,1800,135,100,775 +19900117,1800,135,100,750 +19900117,1800,135,100,740 +19900117,1800,135,100,700 +19900117,1800,135,100,650 +19900117,1800,135,100,620 +19900117,1800,135,100,600 +19900117,1800,135,100,550 +19900117,1800,135,100,500 +19900117,1800,135,100,450 +19900117,1800,135,100,400 +19900117,1800,135,100,375 +19900117,1800,135,100,350 +19900117,1800,135,100,300 +19900117,1800,135,100,250 +19900117,1800,135,100,245 +19900117,1800,135,100,225 +19900117,1800,135,100,200 +19900117,1800,135,100,175 +19900117,1800,135,100,150 +19900117,1800,135,100,125 +19900117,1800,135,100,100 +19900117,1800,135,100,70 +19900117,1800,135,100,50 +19900117,1800,135,100,30 +19900117,1800,135,100,20 +19900117,1800,135,100,10 +19900117,1800,135,100,9 +19900117,1800,135,100,7 +19900117,1800,135,100,5 +19900117,1800,135,100,3 +19900117,1800,135,100,2 +19900117,1800,135,100,1 +19900117,1800,135,210,40 +19900117,1800,138,100,1000 +19900117,1800,138,100,975 +19900117,1800,138,100,950 +19900117,1800,138,100,925 +19900117,1800,138,100,900 +19900117,1800,138,100,875 +19900117,1800,138,100,850 +19900117,1800,138,100,825 +19900117,1800,138,100,800 +19900117,1800,138,100,775 +19900117,1800,138,100,750 +19900117,1800,138,100,740 +19900117,1800,138,100,700 +19900117,1800,138,100,650 +19900117,1800,138,100,620 +19900117,1800,138,100,600 +19900117,1800,138,100,550 +19900117,1800,138,100,500 +19900117,1800,138,100,450 +19900117,1800,138,100,400 +19900117,1800,138,100,375 +19900117,1800,138,100,350 +19900117,1800,138,100,300 +19900117,1800,138,100,250 +19900117,1800,138,100,245 +19900117,1800,138,100,225 +19900117,1800,138,100,200 +19900117,1800,138,100,175 +19900117,1800,138,100,150 +19900117,1800,138,100,125 +19900117,1800,138,100,100 +19900117,1800,138,100,70 +19900117,1800,138,100,50 +19900117,1800,138,100,30 +19900117,1800,138,100,20 +19900117,1800,138,100,10 +19900117,1800,138,100,9 +19900117,1800,138,100,7 +19900117,1800,138,100,5 +19900117,1800,138,100,3 +19900117,1800,138,100,2 +19900117,1800,138,100,1 +19900117,1800,138,210,40 +19900117,1800,131,109,1 +19900117,1800,131,109,2 +19900117,1800,131,109,3 +19900117,1800,131,109,4 +19900117,1800,131,109,5 +19900117,1800,131,109,6 +19900117,1800,131,109,7 +19900117,1800,131,109,8 +19900117,1800,131,109,9 +19900117,1800,131,109,10 +19900117,1800,132,109,1 +19900117,1800,132,109,2 +19900117,1800,132,109,3 +19900117,1800,132,109,4 +19900117,1800,132,109,5 +19900117,1800,132,109,6 +19900117,1800,132,109,7 +19900117,1800,132,109,8 +19900117,1800,132,109,9 +19900117,1800,132,109,10 +19900117,1800,130,109,1 +19900117,1800,130,109,2 +19900117,1800,130,109,3 +19900117,1800,130,109,4 +19900117,1800,130,109,5 +19900117,1800,130,109,6 +19900117,1800,130,109,7 +19900117,1800,130,109,8 +19900117,1800,130,109,9 +19900117,1800,130,109,10 +19900117,1800,157,109,1 +19900117,1800,157,109,2 +19900117,1800,157,109,3 +19900117,1800,157,109,4 +19900117,1800,157,109,5 +19900117,1800,157,109,6 +19900117,1800,157,109,7 +19900117,1800,157,109,8 +19900117,1800,157,109,9 +19900117,1800,157,109,10 +19900117,1800,54,109,1 +19900117,1800,54,109,2 +19900117,1800,54,109,3 +19900117,1800,54,109,4 +19900117,1800,54,109,5 +19900117,1800,54,109,6 +19900117,1800,54,109,7 +19900117,1800,54,109,8 +19900117,1800,54,109,9 +19900117,1800,54,109,10 +19900117,1800,135,109,1 +19900117,1800,135,109,2 +19900117,1800,135,109,3 +19900117,1800,135,109,4 +19900117,1800,135,109,5 +19900117,1800,135,109,6 +19900117,1800,135,109,7 +19900117,1800,135,109,8 +19900117,1800,135,109,9 +19900117,1800,135,109,10 +19900117,1800,134,109,1 +19900117,1800,152,109,1 +19900117,1800,131,100,850 +19900117,1800,132,100,850 +19900117,1800,134,100,1000 +19900117,1800,152,100,1000 +19900117,2100,131,100,850 +19900117,2100,132,100,850 +19900117,2100,134,100,1000 +19900117,2100,152,100,1000 +19900118,0,131,100,1000 +19900118,0,131,100,975 +19900118,0,131,100,950 +19900118,0,131,100,925 +19900118,0,131,100,900 +19900118,0,131,100,875 +19900118,0,131,100,825 +19900118,0,131,100,800 +19900118,0,131,100,775 +19900118,0,131,100,750 +19900118,0,131,100,740 +19900118,0,131,100,700 +19900118,0,131,100,650 +19900118,0,131,100,620 +19900118,0,131,100,600 +19900118,0,131,100,550 +19900118,0,131,100,500 +19900118,0,131,100,450 +19900118,0,131,100,400 +19900118,0,131,100,375 +19900118,0,131,100,350 +19900118,0,131,100,300 +19900118,0,131,100,250 +19900118,0,131,100,245 +19900118,0,131,100,225 +19900118,0,131,100,200 +19900118,0,131,100,175 +19900118,0,131,100,150 +19900118,0,131,100,125 +19900118,0,131,100,100 +19900118,0,131,100,70 +19900118,0,131,100,50 +19900118,0,131,100,30 +19900118,0,131,100,20 +19900118,0,131,100,10 +19900118,0,131,100,9 +19900118,0,131,100,7 +19900118,0,131,100,5 +19900118,0,131,100,3 +19900118,0,131,100,2 +19900118,0,131,100,1 +19900118,0,131,210,40 +19900118,0,132,100,1000 +19900118,0,132,100,975 +19900118,0,132,100,950 +19900118,0,132,100,925 +19900118,0,132,100,900 +19900118,0,132,100,875 +19900118,0,132,100,825 +19900118,0,132,100,800 +19900118,0,132,100,775 +19900118,0,132,100,750 +19900118,0,132,100,740 +19900118,0,132,100,700 +19900118,0,132,100,650 +19900118,0,132,100,620 +19900118,0,132,100,600 +19900118,0,132,100,550 +19900118,0,132,100,500 +19900118,0,132,100,450 +19900118,0,132,100,400 +19900118,0,132,100,375 +19900118,0,132,100,350 +19900118,0,132,100,300 +19900118,0,132,100,250 +19900118,0,132,100,245 +19900118,0,132,100,225 +19900118,0,132,100,200 +19900118,0,132,100,175 +19900118,0,132,100,150 +19900118,0,132,100,125 +19900118,0,132,100,100 +19900118,0,132,100,70 +19900118,0,132,100,50 +19900118,0,132,100,30 +19900118,0,132,100,20 +19900118,0,132,100,10 +19900118,0,132,100,9 +19900118,0,132,100,7 +19900118,0,132,100,5 +19900118,0,132,100,3 +19900118,0,132,100,2 +19900118,0,132,100,1 +19900118,0,132,210,40 +19900118,0,130,100,1000 +19900118,0,130,100,975 +19900118,0,130,100,950 +19900118,0,130,100,925 +19900118,0,130,100,900 +19900118,0,130,100,875 +19900118,0,130,100,850 +19900118,0,130,100,825 +19900118,0,130,100,800 +19900118,0,130,100,775 +19900118,0,130,100,750 +19900118,0,130,100,740 +19900118,0,130,100,700 +19900118,0,130,100,650 +19900118,0,130,100,620 +19900118,0,130,100,600 +19900118,0,130,100,550 +19900118,0,130,100,500 +19900118,0,130,100,450 +19900118,0,130,100,400 +19900118,0,130,100,375 +19900118,0,130,100,350 +19900118,0,130,100,300 +19900118,0,130,100,250 +19900118,0,130,100,245 +19900118,0,130,100,225 +19900118,0,130,100,200 +19900118,0,130,100,175 +19900118,0,130,100,150 +19900118,0,130,100,125 +19900118,0,130,100,100 +19900118,0,130,100,70 +19900118,0,130,100,50 +19900118,0,130,100,30 +19900118,0,130,100,20 +19900118,0,130,100,10 +19900118,0,130,100,9 +19900118,0,130,100,7 +19900118,0,130,100,5 +19900118,0,130,100,3 +19900118,0,130,100,2 +19900118,0,130,100,1 +19900118,0,130,210,40 +19900118,0,129,100,1000 +19900118,0,129,100,975 +19900118,0,129,100,950 +19900118,0,129,100,925 +19900118,0,129,100,900 +19900118,0,129,100,875 +19900118,0,129,100,850 +19900118,0,129,100,825 +19900118,0,129,100,800 +19900118,0,129,100,775 +19900118,0,129,100,750 +19900118,0,129,100,740 +19900118,0,129,100,700 +19900118,0,129,100,650 +19900118,0,129,100,620 +19900118,0,129,100,600 +19900118,0,129,100,550 +19900118,0,129,100,500 +19900118,0,129,100,450 +19900118,0,129,100,400 +19900118,0,129,100,375 +19900118,0,129,100,350 +19900118,0,129,100,300 +19900118,0,129,100,250 +19900118,0,129,100,245 +19900118,0,129,100,225 +19900118,0,129,100,200 +19900118,0,129,100,175 +19900118,0,129,100,150 +19900118,0,129,100,125 +19900118,0,129,100,100 +19900118,0,129,100,70 +19900118,0,129,100,50 +19900118,0,129,100,30 +19900118,0,129,100,20 +19900118,0,129,100,10 +19900118,0,129,100,9 +19900118,0,129,100,7 +19900118,0,129,100,5 +19900118,0,129,100,3 +19900118,0,129,100,2 +19900118,0,129,100,1 +19900118,0,129,210,40 +19900118,0,157,100,1000 +19900118,0,157,100,975 +19900118,0,157,100,950 +19900118,0,157,100,925 +19900118,0,157,100,900 +19900118,0,157,100,875 +19900118,0,157,100,850 +19900118,0,157,100,825 +19900118,0,157,100,800 +19900118,0,157,100,775 +19900118,0,157,100,750 +19900118,0,157,100,740 +19900118,0,157,100,700 +19900118,0,157,100,650 +19900118,0,157,100,620 +19900118,0,157,100,600 +19900118,0,157,100,550 +19900118,0,157,100,500 +19900118,0,157,100,450 +19900118,0,157,100,400 +19900118,0,157,100,375 +19900118,0,157,100,350 +19900118,0,157,100,300 +19900118,0,157,100,250 +19900118,0,157,100,245 +19900118,0,157,100,225 +19900118,0,157,100,200 +19900118,0,157,100,175 +19900118,0,157,100,150 +19900118,0,157,100,125 +19900118,0,157,100,100 +19900118,0,157,100,70 +19900118,0,157,100,50 +19900118,0,157,100,30 +19900118,0,157,100,20 +19900118,0,157,100,10 +19900118,0,157,100,9 +19900118,0,157,100,7 +19900118,0,157,100,5 +19900118,0,157,100,3 +19900118,0,157,100,2 +19900118,0,157,100,1 +19900118,0,157,210,40 +19900118,0,135,100,1000 +19900118,0,135,100,975 +19900118,0,135,100,950 +19900118,0,135,100,925 +19900118,0,135,100,900 +19900118,0,135,100,875 +19900118,0,135,100,850 +19900118,0,135,100,825 +19900118,0,135,100,800 +19900118,0,135,100,775 +19900118,0,135,100,750 +19900118,0,135,100,740 +19900118,0,135,100,700 +19900118,0,135,100,650 +19900118,0,135,100,620 +19900118,0,135,100,600 +19900118,0,135,100,550 +19900118,0,135,100,500 +19900118,0,135,100,450 +19900118,0,135,100,400 +19900118,0,135,100,375 +19900118,0,135,100,350 +19900118,0,135,100,300 +19900118,0,135,100,250 +19900118,0,135,100,245 +19900118,0,135,100,225 +19900118,0,135,100,200 +19900118,0,135,100,175 +19900118,0,135,100,150 +19900118,0,135,100,125 +19900118,0,135,100,100 +19900118,0,135,100,70 +19900118,0,135,100,50 +19900118,0,135,100,30 +19900118,0,135,100,20 +19900118,0,135,100,10 +19900118,0,135,100,9 +19900118,0,135,100,7 +19900118,0,135,100,5 +19900118,0,135,100,3 +19900118,0,135,100,2 +19900118,0,135,100,1 +19900118,0,135,210,40 +19900118,0,138,100,1000 +19900118,0,138,100,975 +19900118,0,138,100,950 +19900118,0,138,100,925 +19900118,0,138,100,900 +19900118,0,138,100,875 +19900118,0,138,100,850 +19900118,0,138,100,825 +19900118,0,138,100,800 +19900118,0,138,100,775 +19900118,0,138,100,750 +19900118,0,138,100,740 +19900118,0,138,100,700 +19900118,0,138,100,650 +19900118,0,138,100,620 +19900118,0,138,100,600 +19900118,0,138,100,550 +19900118,0,138,100,500 +19900118,0,138,100,450 +19900118,0,138,100,400 +19900118,0,138,100,375 +19900118,0,138,100,350 +19900118,0,138,100,300 +19900118,0,138,100,250 +19900118,0,138,100,245 +19900118,0,138,100,225 +19900118,0,138,100,200 +19900118,0,138,100,175 +19900118,0,138,100,150 +19900118,0,138,100,125 +19900118,0,138,100,100 +19900118,0,138,100,70 +19900118,0,138,100,50 +19900118,0,138,100,30 +19900118,0,138,100,20 +19900118,0,138,100,10 +19900118,0,138,100,9 +19900118,0,138,100,7 +19900118,0,138,100,5 +19900118,0,138,100,3 +19900118,0,138,100,2 +19900118,0,138,100,1 +19900118,0,138,210,40 +19900118,0,131,109,1 +19900118,0,131,109,2 +19900118,0,131,109,3 +19900118,0,131,109,4 +19900118,0,131,109,5 +19900118,0,131,109,6 +19900118,0,131,109,7 +19900118,0,131,109,8 +19900118,0,131,109,9 +19900118,0,131,109,10 +19900118,0,132,109,1 +19900118,0,132,109,2 +19900118,0,132,109,3 +19900118,0,132,109,4 +19900118,0,132,109,5 +19900118,0,132,109,6 +19900118,0,132,109,7 +19900118,0,132,109,8 +19900118,0,132,109,9 +19900118,0,132,109,10 +19900118,0,130,109,1 +19900118,0,130,109,2 +19900118,0,130,109,3 +19900118,0,130,109,4 +19900118,0,130,109,5 +19900118,0,130,109,6 +19900118,0,130,109,7 +19900118,0,130,109,8 +19900118,0,130,109,9 +19900118,0,130,109,10 +19900118,0,157,109,1 +19900118,0,157,109,2 +19900118,0,157,109,3 +19900118,0,157,109,4 +19900118,0,157,109,5 +19900118,0,157,109,6 +19900118,0,157,109,7 +19900118,0,157,109,8 +19900118,0,157,109,9 +19900118,0,157,109,10 +19900118,0,54,109,1 +19900118,0,54,109,2 +19900118,0,54,109,3 +19900118,0,54,109,4 +19900118,0,54,109,5 +19900118,0,54,109,6 +19900118,0,54,109,7 +19900118,0,54,109,8 +19900118,0,54,109,9 +19900118,0,54,109,10 +19900118,0,135,109,1 +19900118,0,135,109,2 +19900118,0,135,109,3 +19900118,0,135,109,4 +19900118,0,135,109,5 +19900118,0,135,109,6 +19900118,0,135,109,7 +19900118,0,135,109,8 +19900118,0,135,109,9 +19900118,0,135,109,10 +19900118,0,134,109,1 +19900118,0,152,109,1 +19900118,0,131,100,850 +19900118,0,132,100,850 +19900118,0,134,100,1000 +19900118,0,152,100,1000 +19900118,300,131,100,850 +19900118,300,132,100,850 +19900118,300,134,100,1000 +19900118,300,152,100,1000 +19900118,600,131,100,1000 +19900118,600,131,100,975 +19900118,600,131,100,950 +19900118,600,131,100,925 +19900118,600,131,100,900 +19900118,600,131,100,875 +19900118,600,131,100,825 +19900118,600,131,100,800 +19900118,600,131,100,775 +19900118,600,131,100,750 +19900118,600,131,100,740 +19900118,600,131,100,700 +19900118,600,131,100,650 +19900118,600,131,100,620 +19900118,600,131,100,600 +19900118,600,131,100,550 +19900118,600,131,100,500 +19900118,600,131,100,450 +19900118,600,131,100,400 +19900118,600,131,100,375 +19900118,600,131,100,350 +19900118,600,131,100,300 +19900118,600,131,100,250 +19900118,600,131,100,245 +19900118,600,131,100,225 +19900118,600,131,100,200 +19900118,600,131,100,175 +19900118,600,131,100,150 +19900118,600,131,100,125 +19900118,600,131,100,100 +19900118,600,131,100,70 +19900118,600,131,100,50 +19900118,600,131,100,30 +19900118,600,131,100,20 +19900118,600,131,100,10 +19900118,600,131,100,9 +19900118,600,131,100,7 +19900118,600,131,100,5 +19900118,600,131,100,3 +19900118,600,131,100,2 +19900118,600,131,100,1 +19900118,600,131,210,40 +19900118,600,132,100,1000 +19900118,600,132,100,975 +19900118,600,132,100,950 +19900118,600,132,100,925 +19900118,600,132,100,900 +19900118,600,132,100,875 +19900118,600,132,100,825 +19900118,600,132,100,800 +19900118,600,132,100,775 +19900118,600,132,100,750 +19900118,600,132,100,740 +19900118,600,132,100,700 +19900118,600,132,100,650 +19900118,600,132,100,620 +19900118,600,132,100,600 +19900118,600,132,100,550 +19900118,600,132,100,500 +19900118,600,132,100,450 +19900118,600,132,100,400 +19900118,600,132,100,375 +19900118,600,132,100,350 +19900118,600,132,100,300 +19900118,600,132,100,250 +19900118,600,132,100,245 +19900118,600,132,100,225 +19900118,600,132,100,200 +19900118,600,132,100,175 +19900118,600,132,100,150 +19900118,600,132,100,125 +19900118,600,132,100,100 +19900118,600,132,100,70 +19900118,600,132,100,50 +19900118,600,132,100,30 +19900118,600,132,100,20 +19900118,600,132,100,10 +19900118,600,132,100,9 +19900118,600,132,100,7 +19900118,600,132,100,5 +19900118,600,132,100,3 +19900118,600,132,100,2 +19900118,600,132,100,1 +19900118,600,132,210,40 +19900118,600,130,100,1000 +19900118,600,130,100,975 +19900118,600,130,100,950 +19900118,600,130,100,925 +19900118,600,130,100,900 +19900118,600,130,100,875 +19900118,600,130,100,850 +19900118,600,130,100,825 +19900118,600,130,100,800 +19900118,600,130,100,775 +19900118,600,130,100,750 +19900118,600,130,100,740 +19900118,600,130,100,700 +19900118,600,130,100,650 +19900118,600,130,100,620 +19900118,600,130,100,600 +19900118,600,130,100,550 +19900118,600,130,100,500 +19900118,600,130,100,450 +19900118,600,130,100,400 +19900118,600,130,100,375 +19900118,600,130,100,350 +19900118,600,130,100,300 +19900118,600,130,100,250 +19900118,600,130,100,245 +19900118,600,130,100,225 +19900118,600,130,100,200 +19900118,600,130,100,175 +19900118,600,130,100,150 +19900118,600,130,100,125 +19900118,600,130,100,100 +19900118,600,130,100,70 +19900118,600,130,100,50 +19900118,600,130,100,30 +19900118,600,130,100,20 +19900118,600,130,100,10 +19900118,600,130,100,9 +19900118,600,130,100,7 +19900118,600,130,100,5 +19900118,600,130,100,3 +19900118,600,130,100,2 +19900118,600,130,100,1 +19900118,600,130,210,40 +19900118,600,129,100,1000 +19900118,600,129,100,975 +19900118,600,129,100,950 +19900118,600,129,100,925 +19900118,600,129,100,900 +19900118,600,129,100,875 +19900118,600,129,100,850 +19900118,600,129,100,825 +19900118,600,129,100,800 +19900118,600,129,100,775 +19900118,600,129,100,750 +19900118,600,129,100,740 +19900118,600,129,100,700 +19900118,600,129,100,650 +19900118,600,129,100,620 +19900118,600,129,100,600 +19900118,600,129,100,550 +19900118,600,129,100,500 +19900118,600,129,100,450 +19900118,600,129,100,400 +19900118,600,129,100,375 +19900118,600,129,100,350 +19900118,600,129,100,300 +19900118,600,129,100,250 +19900118,600,129,100,245 +19900118,600,129,100,225 +19900118,600,129,100,200 +19900118,600,129,100,175 +19900118,600,129,100,150 +19900118,600,129,100,125 +19900118,600,129,100,100 +19900118,600,129,100,70 +19900118,600,129,100,50 +19900118,600,129,100,30 +19900118,600,129,100,20 +19900118,600,129,100,10 +19900118,600,129,100,9 +19900118,600,129,100,7 +19900118,600,129,100,5 +19900118,600,129,100,3 +19900118,600,129,100,2 +19900118,600,129,100,1 +19900118,600,129,210,40 +19900118,600,157,100,1000 +19900118,600,157,100,975 +19900118,600,157,100,950 +19900118,600,157,100,925 +19900118,600,157,100,900 +19900118,600,157,100,875 +19900118,600,157,100,850 +19900118,600,157,100,825 +19900118,600,157,100,800 +19900118,600,157,100,775 +19900118,600,157,100,750 +19900118,600,157,100,740 +19900118,600,157,100,700 +19900118,600,157,100,650 +19900118,600,157,100,620 +19900118,600,157,100,600 +19900118,600,157,100,550 +19900118,600,157,100,500 +19900118,600,157,100,450 +19900118,600,157,100,400 +19900118,600,157,100,375 +19900118,600,157,100,350 +19900118,600,157,100,300 +19900118,600,157,100,250 +19900118,600,157,100,245 +19900118,600,157,100,225 +19900118,600,157,100,200 +19900118,600,157,100,175 +19900118,600,157,100,150 +19900118,600,157,100,125 +19900118,600,157,100,100 +19900118,600,157,100,70 +19900118,600,157,100,50 +19900118,600,157,100,30 +19900118,600,157,100,20 +19900118,600,157,100,10 +19900118,600,157,100,9 +19900118,600,157,100,7 +19900118,600,157,100,5 +19900118,600,157,100,3 +19900118,600,157,100,2 +19900118,600,157,100,1 +19900118,600,157,210,40 +19900118,600,135,100,1000 +19900118,600,135,100,975 +19900118,600,135,100,950 +19900118,600,135,100,925 +19900118,600,135,100,900 +19900118,600,135,100,875 +19900118,600,135,100,850 +19900118,600,135,100,825 +19900118,600,135,100,800 +19900118,600,135,100,775 +19900118,600,135,100,750 +19900118,600,135,100,740 +19900118,600,135,100,700 +19900118,600,135,100,650 +19900118,600,135,100,620 +19900118,600,135,100,600 +19900118,600,135,100,550 +19900118,600,135,100,500 +19900118,600,135,100,450 +19900118,600,135,100,400 +19900118,600,135,100,375 +19900118,600,135,100,350 +19900118,600,135,100,300 +19900118,600,135,100,250 +19900118,600,135,100,245 +19900118,600,135,100,225 +19900118,600,135,100,200 +19900118,600,135,100,175 +19900118,600,135,100,150 +19900118,600,135,100,125 +19900118,600,135,100,100 +19900118,600,135,100,70 +19900118,600,135,100,50 +19900118,600,135,100,30 +19900118,600,135,100,20 +19900118,600,135,100,10 +19900118,600,135,100,9 +19900118,600,135,100,7 +19900118,600,135,100,5 +19900118,600,135,100,3 +19900118,600,135,100,2 +19900118,600,135,100,1 +19900118,600,135,210,40 +19900118,600,138,100,1000 +19900118,600,138,100,975 +19900118,600,138,100,950 +19900118,600,138,100,925 +19900118,600,138,100,900 +19900118,600,138,100,875 +19900118,600,138,100,850 +19900118,600,138,100,825 +19900118,600,138,100,800 +19900118,600,138,100,775 +19900118,600,138,100,750 +19900118,600,138,100,740 +19900118,600,138,100,700 +19900118,600,138,100,650 +19900118,600,138,100,620 +19900118,600,138,100,600 +19900118,600,138,100,550 +19900118,600,138,100,500 +19900118,600,138,100,450 +19900118,600,138,100,400 +19900118,600,138,100,375 +19900118,600,138,100,350 +19900118,600,138,100,300 +19900118,600,138,100,250 +19900118,600,138,100,245 +19900118,600,138,100,225 +19900118,600,138,100,200 +19900118,600,138,100,175 +19900118,600,138,100,150 +19900118,600,138,100,125 +19900118,600,138,100,100 +19900118,600,138,100,70 +19900118,600,138,100,50 +19900118,600,138,100,30 +19900118,600,138,100,20 +19900118,600,138,100,10 +19900118,600,138,100,9 +19900118,600,138,100,7 +19900118,600,138,100,5 +19900118,600,138,100,3 +19900118,600,138,100,2 +19900118,600,138,100,1 +19900118,600,138,210,40 +19900118,600,131,109,1 +19900118,600,131,109,2 +19900118,600,131,109,3 +19900118,600,131,109,4 +19900118,600,131,109,5 +19900118,600,131,109,6 +19900118,600,131,109,7 +19900118,600,131,109,8 +19900118,600,131,109,9 +19900118,600,131,109,10 +19900118,600,132,109,1 +19900118,600,132,109,2 +19900118,600,132,109,3 +19900118,600,132,109,4 +19900118,600,132,109,5 +19900118,600,132,109,6 +19900118,600,132,109,7 +19900118,600,132,109,8 +19900118,600,132,109,9 +19900118,600,132,109,10 +19900118,600,130,109,1 +19900118,600,130,109,2 +19900118,600,130,109,3 +19900118,600,130,109,4 +19900118,600,130,109,5 +19900118,600,130,109,6 +19900118,600,130,109,7 +19900118,600,130,109,8 +19900118,600,130,109,9 +19900118,600,130,109,10 +19900118,600,157,109,1 +19900118,600,157,109,2 +19900118,600,157,109,3 +19900118,600,157,109,4 +19900118,600,157,109,5 +19900118,600,157,109,6 +19900118,600,157,109,7 +19900118,600,157,109,8 +19900118,600,157,109,9 +19900118,600,157,109,10 +19900118,600,54,109,1 +19900118,600,54,109,2 +19900118,600,54,109,3 +19900118,600,54,109,4 +19900118,600,54,109,5 +19900118,600,54,109,6 +19900118,600,54,109,7 +19900118,600,54,109,8 +19900118,600,54,109,9 +19900118,600,54,109,10 +19900118,600,135,109,1 +19900118,600,135,109,2 +19900118,600,135,109,3 +19900118,600,135,109,4 +19900118,600,135,109,5 +19900118,600,135,109,6 +19900118,600,135,109,7 +19900118,600,135,109,8 +19900118,600,135,109,9 +19900118,600,135,109,10 +19900118,600,134,109,1 +19900118,600,152,109,1 +19900118,600,131,100,850 +19900118,600,132,100,850 +19900118,600,134,100,1000 +19900118,600,152,100,1000 +19900118,900,131,100,850 +19900118,900,132,100,850 +19900118,900,134,100,1000 +19900118,900,152,100,1000 +19900118,1200,131,100,1000 +19900118,1200,131,100,975 +19900118,1200,131,100,950 +19900118,1200,131,100,925 +19900118,1200,131,100,900 +19900118,1200,131,100,875 +19900118,1200,131,100,825 +19900118,1200,131,100,800 +19900118,1200,131,100,775 +19900118,1200,131,100,750 +19900118,1200,131,100,740 +19900118,1200,131,100,700 +19900118,1200,131,100,650 +19900118,1200,131,100,620 +19900118,1200,131,100,600 +19900118,1200,131,100,550 +19900118,1200,131,100,500 +19900118,1200,131,100,450 +19900118,1200,131,100,400 +19900118,1200,131,100,375 +19900118,1200,131,100,350 +19900118,1200,131,100,300 +19900118,1200,131,100,250 +19900118,1200,131,100,245 +19900118,1200,131,100,225 +19900118,1200,131,100,200 +19900118,1200,131,100,175 +19900118,1200,131,100,150 +19900118,1200,131,100,125 +19900118,1200,131,100,100 +19900118,1200,131,100,70 +19900118,1200,131,100,50 +19900118,1200,131,100,30 +19900118,1200,131,100,20 +19900118,1200,131,100,10 +19900118,1200,131,100,9 +19900118,1200,131,100,7 +19900118,1200,131,100,5 +19900118,1200,131,100,3 +19900118,1200,131,100,2 +19900118,1200,131,100,1 +19900118,1200,131,210,40 +19900118,1200,132,100,1000 +19900118,1200,132,100,975 +19900118,1200,132,100,950 +19900118,1200,132,100,925 +19900118,1200,132,100,900 +19900118,1200,132,100,875 +19900118,1200,132,100,825 +19900118,1200,132,100,800 +19900118,1200,132,100,775 +19900118,1200,132,100,750 +19900118,1200,132,100,740 +19900118,1200,132,100,700 +19900118,1200,132,100,650 +19900118,1200,132,100,620 +19900118,1200,132,100,600 +19900118,1200,132,100,550 +19900118,1200,132,100,500 +19900118,1200,132,100,450 +19900118,1200,132,100,400 +19900118,1200,132,100,375 +19900118,1200,132,100,350 +19900118,1200,132,100,300 +19900118,1200,132,100,250 +19900118,1200,132,100,245 +19900118,1200,132,100,225 +19900118,1200,132,100,200 +19900118,1200,132,100,175 +19900118,1200,132,100,150 +19900118,1200,132,100,125 +19900118,1200,132,100,100 +19900118,1200,132,100,70 +19900118,1200,132,100,50 +19900118,1200,132,100,30 +19900118,1200,132,100,20 +19900118,1200,132,100,10 +19900118,1200,132,100,9 +19900118,1200,132,100,7 +19900118,1200,132,100,5 +19900118,1200,132,100,3 +19900118,1200,132,100,2 +19900118,1200,132,100,1 +19900118,1200,132,210,40 +19900118,1200,130,100,1000 +19900118,1200,130,100,975 +19900118,1200,130,100,950 +19900118,1200,130,100,925 +19900118,1200,130,100,900 +19900118,1200,130,100,875 +19900118,1200,130,100,850 +19900118,1200,130,100,825 +19900118,1200,130,100,800 +19900118,1200,130,100,775 +19900118,1200,130,100,750 +19900118,1200,130,100,740 +19900118,1200,130,100,700 +19900118,1200,130,100,650 +19900118,1200,130,100,620 +19900118,1200,130,100,600 +19900118,1200,130,100,550 +19900118,1200,130,100,500 +19900118,1200,130,100,450 +19900118,1200,130,100,400 +19900118,1200,130,100,375 +19900118,1200,130,100,350 +19900118,1200,130,100,300 +19900118,1200,130,100,250 +19900118,1200,130,100,245 +19900118,1200,130,100,225 +19900118,1200,130,100,200 +19900118,1200,130,100,175 +19900118,1200,130,100,150 +19900118,1200,130,100,125 +19900118,1200,130,100,100 +19900118,1200,130,100,70 +19900118,1200,130,100,50 +19900118,1200,130,100,30 +19900118,1200,130,100,20 +19900118,1200,130,100,10 +19900118,1200,130,100,9 +19900118,1200,130,100,7 +19900118,1200,130,100,5 +19900118,1200,130,100,3 +19900118,1200,130,100,2 +19900118,1200,130,100,1 +19900118,1200,130,210,40 +19900118,1200,129,100,1000 +19900118,1200,129,100,975 +19900118,1200,129,100,950 +19900118,1200,129,100,925 +19900118,1200,129,100,900 +19900118,1200,129,100,875 +19900118,1200,129,100,850 +19900118,1200,129,100,825 +19900118,1200,129,100,800 +19900118,1200,129,100,775 +19900118,1200,129,100,750 +19900118,1200,129,100,740 +19900118,1200,129,100,700 +19900118,1200,129,100,650 +19900118,1200,129,100,620 +19900118,1200,129,100,600 +19900118,1200,129,100,550 +19900118,1200,129,100,500 +19900118,1200,129,100,450 +19900118,1200,129,100,400 +19900118,1200,129,100,375 +19900118,1200,129,100,350 +19900118,1200,129,100,300 +19900118,1200,129,100,250 +19900118,1200,129,100,245 +19900118,1200,129,100,225 +19900118,1200,129,100,200 +19900118,1200,129,100,175 +19900118,1200,129,100,150 +19900118,1200,129,100,125 +19900118,1200,129,100,100 +19900118,1200,129,100,70 +19900118,1200,129,100,50 +19900118,1200,129,100,30 +19900118,1200,129,100,20 +19900118,1200,129,100,10 +19900118,1200,129,100,9 +19900118,1200,129,100,7 +19900118,1200,129,100,5 +19900118,1200,129,100,3 +19900118,1200,129,100,2 +19900118,1200,129,100,1 +19900118,1200,129,210,40 +19900118,1200,157,100,1000 +19900118,1200,157,100,975 +19900118,1200,157,100,950 +19900118,1200,157,100,925 +19900118,1200,157,100,900 +19900118,1200,157,100,875 +19900118,1200,157,100,850 +19900118,1200,157,100,825 +19900118,1200,157,100,800 +19900118,1200,157,100,775 +19900118,1200,157,100,750 +19900118,1200,157,100,740 +19900118,1200,157,100,700 +19900118,1200,157,100,650 +19900118,1200,157,100,620 +19900118,1200,157,100,600 +19900118,1200,157,100,550 +19900118,1200,157,100,500 +19900118,1200,157,100,450 +19900118,1200,157,100,400 +19900118,1200,157,100,375 +19900118,1200,157,100,350 +19900118,1200,157,100,300 +19900118,1200,157,100,250 +19900118,1200,157,100,245 +19900118,1200,157,100,225 +19900118,1200,157,100,200 +19900118,1200,157,100,175 +19900118,1200,157,100,150 +19900118,1200,157,100,125 +19900118,1200,157,100,100 +19900118,1200,157,100,70 +19900118,1200,157,100,50 +19900118,1200,157,100,30 +19900118,1200,157,100,20 +19900118,1200,157,100,10 +19900118,1200,157,100,9 +19900118,1200,157,100,7 +19900118,1200,157,100,5 +19900118,1200,157,100,3 +19900118,1200,157,100,2 +19900118,1200,157,100,1 +19900118,1200,157,210,40 +19900118,1200,135,100,1000 +19900118,1200,135,100,975 +19900118,1200,135,100,950 +19900118,1200,135,100,925 +19900118,1200,135,100,900 +19900118,1200,135,100,875 +19900118,1200,135,100,850 +19900118,1200,135,100,825 +19900118,1200,135,100,800 +19900118,1200,135,100,775 +19900118,1200,135,100,750 +19900118,1200,135,100,740 +19900118,1200,135,100,700 +19900118,1200,135,100,650 +19900118,1200,135,100,620 +19900118,1200,135,100,600 +19900118,1200,135,100,550 +19900118,1200,135,100,500 +19900118,1200,135,100,450 +19900118,1200,135,100,400 +19900118,1200,135,100,375 +19900118,1200,135,100,350 +19900118,1200,135,100,300 +19900118,1200,135,100,250 +19900118,1200,135,100,245 +19900118,1200,135,100,225 +19900118,1200,135,100,200 +19900118,1200,135,100,175 +19900118,1200,135,100,150 +19900118,1200,135,100,125 +19900118,1200,135,100,100 +19900118,1200,135,100,70 +19900118,1200,135,100,50 +19900118,1200,135,100,30 +19900118,1200,135,100,20 +19900118,1200,135,100,10 +19900118,1200,135,100,9 +19900118,1200,135,100,7 +19900118,1200,135,100,5 +19900118,1200,135,100,3 +19900118,1200,135,100,2 +19900118,1200,135,100,1 +19900118,1200,135,210,40 +19900118,1200,138,100,1000 +19900118,1200,138,100,975 +19900118,1200,138,100,950 +19900118,1200,138,100,925 +19900118,1200,138,100,900 +19900118,1200,138,100,875 +19900118,1200,138,100,850 +19900118,1200,138,100,825 +19900118,1200,138,100,800 +19900118,1200,138,100,775 +19900118,1200,138,100,750 +19900118,1200,138,100,740 +19900118,1200,138,100,700 +19900118,1200,138,100,650 +19900118,1200,138,100,620 +19900118,1200,138,100,600 +19900118,1200,138,100,550 +19900118,1200,138,100,500 +19900118,1200,138,100,450 +19900118,1200,138,100,400 +19900118,1200,138,100,375 +19900118,1200,138,100,350 +19900118,1200,138,100,300 +19900118,1200,138,100,250 +19900118,1200,138,100,245 +19900118,1200,138,100,225 +19900118,1200,138,100,200 +19900118,1200,138,100,175 +19900118,1200,138,100,150 +19900118,1200,138,100,125 +19900118,1200,138,100,100 +19900118,1200,138,100,70 +19900118,1200,138,100,50 +19900118,1200,138,100,30 +19900118,1200,138,100,20 +19900118,1200,138,100,10 +19900118,1200,138,100,9 +19900118,1200,138,100,7 +19900118,1200,138,100,5 +19900118,1200,138,100,3 +19900118,1200,138,100,2 +19900118,1200,138,100,1 +19900118,1200,138,210,40 +19900118,1200,131,109,1 +19900118,1200,131,109,2 +19900118,1200,131,109,3 +19900118,1200,131,109,4 +19900118,1200,131,109,5 +19900118,1200,131,109,6 +19900118,1200,131,109,7 +19900118,1200,131,109,8 +19900118,1200,131,109,9 +19900118,1200,131,109,10 +19900118,1200,132,109,1 +19900118,1200,132,109,2 +19900118,1200,132,109,3 +19900118,1200,132,109,4 +19900118,1200,132,109,5 +19900118,1200,132,109,6 +19900118,1200,132,109,7 +19900118,1200,132,109,8 +19900118,1200,132,109,9 +19900118,1200,132,109,10 +19900118,1200,130,109,1 +19900118,1200,130,109,2 +19900118,1200,130,109,3 +19900118,1200,130,109,4 +19900118,1200,130,109,5 +19900118,1200,130,109,6 +19900118,1200,130,109,7 +19900118,1200,130,109,8 +19900118,1200,130,109,9 +19900118,1200,130,109,10 +19900118,1200,157,109,1 +19900118,1200,157,109,2 +19900118,1200,157,109,3 +19900118,1200,157,109,4 +19900118,1200,157,109,5 +19900118,1200,157,109,6 +19900118,1200,157,109,7 +19900118,1200,157,109,8 +19900118,1200,157,109,9 +19900118,1200,157,109,10 +19900118,1200,54,109,1 +19900118,1200,54,109,2 +19900118,1200,54,109,3 +19900118,1200,54,109,4 +19900118,1200,54,109,5 +19900118,1200,54,109,6 +19900118,1200,54,109,7 +19900118,1200,54,109,8 +19900118,1200,54,109,9 +19900118,1200,54,109,10 +19900118,1200,135,109,1 +19900118,1200,135,109,2 +19900118,1200,135,109,3 +19900118,1200,135,109,4 +19900118,1200,135,109,5 +19900118,1200,135,109,6 +19900118,1200,135,109,7 +19900118,1200,135,109,8 +19900118,1200,135,109,9 +19900118,1200,135,109,10 +19900118,1200,134,109,1 +19900118,1200,152,109,1 +19900118,1200,131,100,850 +19900118,1200,132,100,850 +19900118,1200,134,100,1000 +19900118,1200,152,100,1000 +19900118,1500,131,100,850 +19900118,1500,132,100,850 +19900118,1500,134,100,1000 +19900118,1500,152,100,1000 +19900118,1800,131,100,1000 +19900118,1800,131,100,975 +19900118,1800,131,100,950 +19900118,1800,131,100,925 +19900118,1800,131,100,900 +19900118,1800,131,100,875 +19900118,1800,131,100,825 +19900118,1800,131,100,800 +19900118,1800,131,100,775 +19900118,1800,131,100,750 +19900118,1800,131,100,740 +19900118,1800,131,100,700 +19900118,1800,131,100,650 +19900118,1800,131,100,620 +19900118,1800,131,100,600 +19900118,1800,131,100,550 +19900118,1800,131,100,500 +19900118,1800,131,100,450 +19900118,1800,131,100,400 +19900118,1800,131,100,375 +19900118,1800,131,100,350 +19900118,1800,131,100,300 +19900118,1800,131,100,250 +19900118,1800,131,100,245 +19900118,1800,131,100,225 +19900118,1800,131,100,200 +19900118,1800,131,100,175 +19900118,1800,131,100,150 +19900118,1800,131,100,125 +19900118,1800,131,100,100 +19900118,1800,131,100,70 +19900118,1800,131,100,50 +19900118,1800,131,100,30 +19900118,1800,131,100,20 +19900118,1800,131,100,10 +19900118,1800,131,100,9 +19900118,1800,131,100,7 +19900118,1800,131,100,5 +19900118,1800,131,100,3 +19900118,1800,131,100,2 +19900118,1800,131,100,1 +19900118,1800,131,210,40 +19900118,1800,132,100,1000 +19900118,1800,132,100,975 +19900118,1800,132,100,950 +19900118,1800,132,100,925 +19900118,1800,132,100,900 +19900118,1800,132,100,875 +19900118,1800,132,100,825 +19900118,1800,132,100,800 +19900118,1800,132,100,775 +19900118,1800,132,100,750 +19900118,1800,132,100,740 +19900118,1800,132,100,700 +19900118,1800,132,100,650 +19900118,1800,132,100,620 +19900118,1800,132,100,600 +19900118,1800,132,100,550 +19900118,1800,132,100,500 +19900118,1800,132,100,450 +19900118,1800,132,100,400 +19900118,1800,132,100,375 +19900118,1800,132,100,350 +19900118,1800,132,100,300 +19900118,1800,132,100,250 +19900118,1800,132,100,245 +19900118,1800,132,100,225 +19900118,1800,132,100,200 +19900118,1800,132,100,175 +19900118,1800,132,100,150 +19900118,1800,132,100,125 +19900118,1800,132,100,100 +19900118,1800,132,100,70 +19900118,1800,132,100,50 +19900118,1800,132,100,30 +19900118,1800,132,100,20 +19900118,1800,132,100,10 +19900118,1800,132,100,9 +19900118,1800,132,100,7 +19900118,1800,132,100,5 +19900118,1800,132,100,3 +19900118,1800,132,100,2 +19900118,1800,132,100,1 +19900118,1800,132,210,40 +19900118,1800,130,100,1000 +19900118,1800,130,100,975 +19900118,1800,130,100,950 +19900118,1800,130,100,925 +19900118,1800,130,100,900 +19900118,1800,130,100,875 +19900118,1800,130,100,850 +19900118,1800,130,100,825 +19900118,1800,130,100,800 +19900118,1800,130,100,775 +19900118,1800,130,100,750 +19900118,1800,130,100,740 +19900118,1800,130,100,700 +19900118,1800,130,100,650 +19900118,1800,130,100,620 +19900118,1800,130,100,600 +19900118,1800,130,100,550 +19900118,1800,130,100,500 +19900118,1800,130,100,450 +19900118,1800,130,100,400 +19900118,1800,130,100,375 +19900118,1800,130,100,350 +19900118,1800,130,100,300 +19900118,1800,130,100,250 +19900118,1800,130,100,245 +19900118,1800,130,100,225 +19900118,1800,130,100,200 +19900118,1800,130,100,175 +19900118,1800,130,100,150 +19900118,1800,130,100,125 +19900118,1800,130,100,100 +19900118,1800,130,100,70 +19900118,1800,130,100,50 +19900118,1800,130,100,30 +19900118,1800,130,100,20 +19900118,1800,130,100,10 +19900118,1800,130,100,9 +19900118,1800,130,100,7 +19900118,1800,130,100,5 +19900118,1800,130,100,3 +19900118,1800,130,100,2 +19900118,1800,130,100,1 +19900118,1800,130,210,40 +19900118,1800,129,100,1000 +19900118,1800,129,100,975 +19900118,1800,129,100,950 +19900118,1800,129,100,925 +19900118,1800,129,100,900 +19900118,1800,129,100,875 +19900118,1800,129,100,850 +19900118,1800,129,100,825 +19900118,1800,129,100,800 +19900118,1800,129,100,775 +19900118,1800,129,100,750 +19900118,1800,129,100,740 +19900118,1800,129,100,700 +19900118,1800,129,100,650 +19900118,1800,129,100,620 +19900118,1800,129,100,600 +19900118,1800,129,100,550 +19900118,1800,129,100,500 +19900118,1800,129,100,450 +19900118,1800,129,100,400 +19900118,1800,129,100,375 +19900118,1800,129,100,350 +19900118,1800,129,100,300 +19900118,1800,129,100,250 +19900118,1800,129,100,245 +19900118,1800,129,100,225 +19900118,1800,129,100,200 +19900118,1800,129,100,175 +19900118,1800,129,100,150 +19900118,1800,129,100,125 +19900118,1800,129,100,100 +19900118,1800,129,100,70 +19900118,1800,129,100,50 +19900118,1800,129,100,30 +19900118,1800,129,100,20 +19900118,1800,129,100,10 +19900118,1800,129,100,9 +19900118,1800,129,100,7 +19900118,1800,129,100,5 +19900118,1800,129,100,3 +19900118,1800,129,100,2 +19900118,1800,129,100,1 +19900118,1800,129,210,40 +19900118,1800,157,100,1000 +19900118,1800,157,100,975 +19900118,1800,157,100,950 +19900118,1800,157,100,925 +19900118,1800,157,100,900 +19900118,1800,157,100,875 +19900118,1800,157,100,850 +19900118,1800,157,100,825 +19900118,1800,157,100,800 +19900118,1800,157,100,775 +19900118,1800,157,100,750 +19900118,1800,157,100,740 +19900118,1800,157,100,700 +19900118,1800,157,100,650 +19900118,1800,157,100,620 +19900118,1800,157,100,600 +19900118,1800,157,100,550 +19900118,1800,157,100,500 +19900118,1800,157,100,450 +19900118,1800,157,100,400 +19900118,1800,157,100,375 +19900118,1800,157,100,350 +19900118,1800,157,100,300 +19900118,1800,157,100,250 +19900118,1800,157,100,245 +19900118,1800,157,100,225 +19900118,1800,157,100,200 +19900118,1800,157,100,175 +19900118,1800,157,100,150 +19900118,1800,157,100,125 +19900118,1800,157,100,100 +19900118,1800,157,100,70 +19900118,1800,157,100,50 +19900118,1800,157,100,30 +19900118,1800,157,100,20 +19900118,1800,157,100,10 +19900118,1800,157,100,9 +19900118,1800,157,100,7 +19900118,1800,157,100,5 +19900118,1800,157,100,3 +19900118,1800,157,100,2 +19900118,1800,157,100,1 +19900118,1800,157,210,40 +19900118,1800,135,100,1000 +19900118,1800,135,100,975 +19900118,1800,135,100,950 +19900118,1800,135,100,925 +19900118,1800,135,100,900 +19900118,1800,135,100,875 +19900118,1800,135,100,850 +19900118,1800,135,100,825 +19900118,1800,135,100,800 +19900118,1800,135,100,775 +19900118,1800,135,100,750 +19900118,1800,135,100,740 +19900118,1800,135,100,700 +19900118,1800,135,100,650 +19900118,1800,135,100,620 +19900118,1800,135,100,600 +19900118,1800,135,100,550 +19900118,1800,135,100,500 +19900118,1800,135,100,450 +19900118,1800,135,100,400 +19900118,1800,135,100,375 +19900118,1800,135,100,350 +19900118,1800,135,100,300 +19900118,1800,135,100,250 +19900118,1800,135,100,245 +19900118,1800,135,100,225 +19900118,1800,135,100,200 +19900118,1800,135,100,175 +19900118,1800,135,100,150 +19900118,1800,135,100,125 +19900118,1800,135,100,100 +19900118,1800,135,100,70 +19900118,1800,135,100,50 +19900118,1800,135,100,30 +19900118,1800,135,100,20 +19900118,1800,135,100,10 +19900118,1800,135,100,9 +19900118,1800,135,100,7 +19900118,1800,135,100,5 +19900118,1800,135,100,3 +19900118,1800,135,100,2 +19900118,1800,135,100,1 +19900118,1800,135,210,40 +19900118,1800,138,100,1000 +19900118,1800,138,100,975 +19900118,1800,138,100,950 +19900118,1800,138,100,925 +19900118,1800,138,100,900 +19900118,1800,138,100,875 +19900118,1800,138,100,850 +19900118,1800,138,100,825 +19900118,1800,138,100,800 +19900118,1800,138,100,775 +19900118,1800,138,100,750 +19900118,1800,138,100,740 +19900118,1800,138,100,700 +19900118,1800,138,100,650 +19900118,1800,138,100,620 +19900118,1800,138,100,600 +19900118,1800,138,100,550 +19900118,1800,138,100,500 +19900118,1800,138,100,450 +19900118,1800,138,100,400 +19900118,1800,138,100,375 +19900118,1800,138,100,350 +19900118,1800,138,100,300 +19900118,1800,138,100,250 +19900118,1800,138,100,245 +19900118,1800,138,100,225 +19900118,1800,138,100,200 +19900118,1800,138,100,175 +19900118,1800,138,100,150 +19900118,1800,138,100,125 +19900118,1800,138,100,100 +19900118,1800,138,100,70 +19900118,1800,138,100,50 +19900118,1800,138,100,30 +19900118,1800,138,100,20 +19900118,1800,138,100,10 +19900118,1800,138,100,9 +19900118,1800,138,100,7 +19900118,1800,138,100,5 +19900118,1800,138,100,3 +19900118,1800,138,100,2 +19900118,1800,138,100,1 +19900118,1800,138,210,40 +19900118,1800,131,109,1 +19900118,1800,131,109,2 +19900118,1800,131,109,3 +19900118,1800,131,109,4 +19900118,1800,131,109,5 +19900118,1800,131,109,6 +19900118,1800,131,109,7 +19900118,1800,131,109,8 +19900118,1800,131,109,9 +19900118,1800,131,109,10 +19900118,1800,132,109,1 +19900118,1800,132,109,2 +19900118,1800,132,109,3 +19900118,1800,132,109,4 +19900118,1800,132,109,5 +19900118,1800,132,109,6 +19900118,1800,132,109,7 +19900118,1800,132,109,8 +19900118,1800,132,109,9 +19900118,1800,132,109,10 +19900118,1800,130,109,1 +19900118,1800,130,109,2 +19900118,1800,130,109,3 +19900118,1800,130,109,4 +19900118,1800,130,109,5 +19900118,1800,130,109,6 +19900118,1800,130,109,7 +19900118,1800,130,109,8 +19900118,1800,130,109,9 +19900118,1800,130,109,10 +19900118,1800,157,109,1 +19900118,1800,157,109,2 +19900118,1800,157,109,3 +19900118,1800,157,109,4 +19900118,1800,157,109,5 +19900118,1800,157,109,6 +19900118,1800,157,109,7 +19900118,1800,157,109,8 +19900118,1800,157,109,9 +19900118,1800,157,109,10 +19900118,1800,54,109,1 +19900118,1800,54,109,2 +19900118,1800,54,109,3 +19900118,1800,54,109,4 +19900118,1800,54,109,5 +19900118,1800,54,109,6 +19900118,1800,54,109,7 +19900118,1800,54,109,8 +19900118,1800,54,109,9 +19900118,1800,54,109,10 +19900118,1800,135,109,1 +19900118,1800,135,109,2 +19900118,1800,135,109,3 +19900118,1800,135,109,4 +19900118,1800,135,109,5 +19900118,1800,135,109,6 +19900118,1800,135,109,7 +19900118,1800,135,109,8 +19900118,1800,135,109,9 +19900118,1800,135,109,10 +19900118,1800,134,109,1 +19900118,1800,152,109,1 +19900118,1800,131,100,850 +19900118,1800,132,100,850 +19900118,1800,134,100,1000 +19900118,1800,152,100,1000 +19900118,2100,131,100,850 +19900118,2100,132,100,850 +19900118,2100,134,100,1000 +19900118,2100,152,100,1000 +19900119,0,131,100,1000 +19900119,0,131,100,975 +19900119,0,131,100,950 +19900119,0,131,100,925 +19900119,0,131,100,900 +19900119,0,131,100,875 +19900119,0,131,100,825 +19900119,0,131,100,800 +19900119,0,131,100,775 +19900119,0,131,100,750 +19900119,0,131,100,740 +19900119,0,131,100,700 +19900119,0,131,100,650 +19900119,0,131,100,620 +19900119,0,131,100,600 +19900119,0,131,100,550 +19900119,0,131,100,500 +19900119,0,131,100,450 +19900119,0,131,100,400 +19900119,0,131,100,375 +19900119,0,131,100,350 +19900119,0,131,100,300 +19900119,0,131,100,250 +19900119,0,131,100,245 +19900119,0,131,100,225 +19900119,0,131,100,200 +19900119,0,131,100,175 +19900119,0,131,100,150 +19900119,0,131,100,125 +19900119,0,131,100,100 +19900119,0,131,100,70 +19900119,0,131,100,50 +19900119,0,131,100,30 +19900119,0,131,100,20 +19900119,0,131,100,10 +19900119,0,131,100,9 +19900119,0,131,100,7 +19900119,0,131,100,5 +19900119,0,131,100,3 +19900119,0,131,100,2 +19900119,0,131,100,1 +19900119,0,131,210,40 +19900119,0,132,100,1000 +19900119,0,132,100,975 +19900119,0,132,100,950 +19900119,0,132,100,925 +19900119,0,132,100,900 +19900119,0,132,100,875 +19900119,0,132,100,825 +19900119,0,132,100,800 +19900119,0,132,100,775 +19900119,0,132,100,750 +19900119,0,132,100,740 +19900119,0,132,100,700 +19900119,0,132,100,650 +19900119,0,132,100,620 +19900119,0,132,100,600 +19900119,0,132,100,550 +19900119,0,132,100,500 +19900119,0,132,100,450 +19900119,0,132,100,400 +19900119,0,132,100,375 +19900119,0,132,100,350 +19900119,0,132,100,300 +19900119,0,132,100,250 +19900119,0,132,100,245 +19900119,0,132,100,225 +19900119,0,132,100,200 +19900119,0,132,100,175 +19900119,0,132,100,150 +19900119,0,132,100,125 +19900119,0,132,100,100 +19900119,0,132,100,70 +19900119,0,132,100,50 +19900119,0,132,100,30 +19900119,0,132,100,20 +19900119,0,132,100,10 +19900119,0,132,100,9 +19900119,0,132,100,7 +19900119,0,132,100,5 +19900119,0,132,100,3 +19900119,0,132,100,2 +19900119,0,132,100,1 +19900119,0,132,210,40 +19900119,0,130,100,1000 +19900119,0,130,100,975 +19900119,0,130,100,950 +19900119,0,130,100,925 +19900119,0,130,100,900 +19900119,0,130,100,875 +19900119,0,130,100,850 +19900119,0,130,100,825 +19900119,0,130,100,800 +19900119,0,130,100,775 +19900119,0,130,100,750 +19900119,0,130,100,740 +19900119,0,130,100,700 +19900119,0,130,100,650 +19900119,0,130,100,620 +19900119,0,130,100,600 +19900119,0,130,100,550 +19900119,0,130,100,500 +19900119,0,130,100,450 +19900119,0,130,100,400 +19900119,0,130,100,375 +19900119,0,130,100,350 +19900119,0,130,100,300 +19900119,0,130,100,250 +19900119,0,130,100,245 +19900119,0,130,100,225 +19900119,0,130,100,200 +19900119,0,130,100,175 +19900119,0,130,100,150 +19900119,0,130,100,125 +19900119,0,130,100,100 +19900119,0,130,100,70 +19900119,0,130,100,50 +19900119,0,130,100,30 +19900119,0,130,100,20 +19900119,0,130,100,10 +19900119,0,130,100,9 +19900119,0,130,100,7 +19900119,0,130,100,5 +19900119,0,130,100,3 +19900119,0,130,100,2 +19900119,0,130,100,1 +19900119,0,130,210,40 +19900119,0,129,100,1000 +19900119,0,129,100,975 +19900119,0,129,100,950 +19900119,0,129,100,925 +19900119,0,129,100,900 +19900119,0,129,100,875 +19900119,0,129,100,850 +19900119,0,129,100,825 +19900119,0,129,100,800 +19900119,0,129,100,775 +19900119,0,129,100,750 +19900119,0,129,100,740 +19900119,0,129,100,700 +19900119,0,129,100,650 +19900119,0,129,100,620 +19900119,0,129,100,600 +19900119,0,129,100,550 +19900119,0,129,100,500 +19900119,0,129,100,450 +19900119,0,129,100,400 +19900119,0,129,100,375 +19900119,0,129,100,350 +19900119,0,129,100,300 +19900119,0,129,100,250 +19900119,0,129,100,245 +19900119,0,129,100,225 +19900119,0,129,100,200 +19900119,0,129,100,175 +19900119,0,129,100,150 +19900119,0,129,100,125 +19900119,0,129,100,100 +19900119,0,129,100,70 +19900119,0,129,100,50 +19900119,0,129,100,30 +19900119,0,129,100,20 +19900119,0,129,100,10 +19900119,0,129,100,9 +19900119,0,129,100,7 +19900119,0,129,100,5 +19900119,0,129,100,3 +19900119,0,129,100,2 +19900119,0,129,100,1 +19900119,0,129,210,40 +19900119,0,157,100,1000 +19900119,0,157,100,975 +19900119,0,157,100,950 +19900119,0,157,100,925 +19900119,0,157,100,900 +19900119,0,157,100,875 +19900119,0,157,100,850 +19900119,0,157,100,825 +19900119,0,157,100,800 +19900119,0,157,100,775 +19900119,0,157,100,750 +19900119,0,157,100,740 +19900119,0,157,100,700 +19900119,0,157,100,650 +19900119,0,157,100,620 +19900119,0,157,100,600 +19900119,0,157,100,550 +19900119,0,157,100,500 +19900119,0,157,100,450 +19900119,0,157,100,400 +19900119,0,157,100,375 +19900119,0,157,100,350 +19900119,0,157,100,300 +19900119,0,157,100,250 +19900119,0,157,100,245 +19900119,0,157,100,225 +19900119,0,157,100,200 +19900119,0,157,100,175 +19900119,0,157,100,150 +19900119,0,157,100,125 +19900119,0,157,100,100 +19900119,0,157,100,70 +19900119,0,157,100,50 +19900119,0,157,100,30 +19900119,0,157,100,20 +19900119,0,157,100,10 +19900119,0,157,100,9 +19900119,0,157,100,7 +19900119,0,157,100,5 +19900119,0,157,100,3 +19900119,0,157,100,2 +19900119,0,157,100,1 +19900119,0,157,210,40 +19900119,0,135,100,1000 +19900119,0,135,100,975 +19900119,0,135,100,950 +19900119,0,135,100,925 +19900119,0,135,100,900 +19900119,0,135,100,875 +19900119,0,135,100,850 +19900119,0,135,100,825 +19900119,0,135,100,800 +19900119,0,135,100,775 +19900119,0,135,100,750 +19900119,0,135,100,740 +19900119,0,135,100,700 +19900119,0,135,100,650 +19900119,0,135,100,620 +19900119,0,135,100,600 +19900119,0,135,100,550 +19900119,0,135,100,500 +19900119,0,135,100,450 +19900119,0,135,100,400 +19900119,0,135,100,375 +19900119,0,135,100,350 +19900119,0,135,100,300 +19900119,0,135,100,250 +19900119,0,135,100,245 +19900119,0,135,100,225 +19900119,0,135,100,200 +19900119,0,135,100,175 +19900119,0,135,100,150 +19900119,0,135,100,125 +19900119,0,135,100,100 +19900119,0,135,100,70 +19900119,0,135,100,50 +19900119,0,135,100,30 +19900119,0,135,100,20 +19900119,0,135,100,10 +19900119,0,135,100,9 +19900119,0,135,100,7 +19900119,0,135,100,5 +19900119,0,135,100,3 +19900119,0,135,100,2 +19900119,0,135,100,1 +19900119,0,135,210,40 +19900119,0,138,100,1000 +19900119,0,138,100,975 +19900119,0,138,100,950 +19900119,0,138,100,925 +19900119,0,138,100,900 +19900119,0,138,100,875 +19900119,0,138,100,850 +19900119,0,138,100,825 +19900119,0,138,100,800 +19900119,0,138,100,775 +19900119,0,138,100,750 +19900119,0,138,100,740 +19900119,0,138,100,700 +19900119,0,138,100,650 +19900119,0,138,100,620 +19900119,0,138,100,600 +19900119,0,138,100,550 +19900119,0,138,100,500 +19900119,0,138,100,450 +19900119,0,138,100,400 +19900119,0,138,100,375 +19900119,0,138,100,350 +19900119,0,138,100,300 +19900119,0,138,100,250 +19900119,0,138,100,245 +19900119,0,138,100,225 +19900119,0,138,100,200 +19900119,0,138,100,175 +19900119,0,138,100,150 +19900119,0,138,100,125 +19900119,0,138,100,100 +19900119,0,138,100,70 +19900119,0,138,100,50 +19900119,0,138,100,30 +19900119,0,138,100,20 +19900119,0,138,100,10 +19900119,0,138,100,9 +19900119,0,138,100,7 +19900119,0,138,100,5 +19900119,0,138,100,3 +19900119,0,138,100,2 +19900119,0,138,100,1 +19900119,0,138,210,40 +19900119,0,131,109,1 +19900119,0,131,109,2 +19900119,0,131,109,3 +19900119,0,131,109,4 +19900119,0,131,109,5 +19900119,0,131,109,6 +19900119,0,131,109,7 +19900119,0,131,109,8 +19900119,0,131,109,9 +19900119,0,131,109,10 +19900119,0,132,109,1 +19900119,0,132,109,2 +19900119,0,132,109,3 +19900119,0,132,109,4 +19900119,0,132,109,5 +19900119,0,132,109,6 +19900119,0,132,109,7 +19900119,0,132,109,8 +19900119,0,132,109,9 +19900119,0,132,109,10 +19900119,0,130,109,1 +19900119,0,130,109,2 +19900119,0,130,109,3 +19900119,0,130,109,4 +19900119,0,130,109,5 +19900119,0,130,109,6 +19900119,0,130,109,7 +19900119,0,130,109,8 +19900119,0,130,109,9 +19900119,0,130,109,10 +19900119,0,157,109,1 +19900119,0,157,109,2 +19900119,0,157,109,3 +19900119,0,157,109,4 +19900119,0,157,109,5 +19900119,0,157,109,6 +19900119,0,157,109,7 +19900119,0,157,109,8 +19900119,0,157,109,9 +19900119,0,157,109,10 +19900119,0,54,109,1 +19900119,0,54,109,2 +19900119,0,54,109,3 +19900119,0,54,109,4 +19900119,0,54,109,5 +19900119,0,54,109,6 +19900119,0,54,109,7 +19900119,0,54,109,8 +19900119,0,54,109,9 +19900119,0,54,109,10 +19900119,0,135,109,1 +19900119,0,135,109,2 +19900119,0,135,109,3 +19900119,0,135,109,4 +19900119,0,135,109,5 +19900119,0,135,109,6 +19900119,0,135,109,7 +19900119,0,135,109,8 +19900119,0,135,109,9 +19900119,0,135,109,10 +19900119,0,134,109,1 +19900119,0,152,109,1 +19900119,0,131,100,850 +19900119,0,132,100,850 +19900119,0,134,100,1000 +19900119,0,152,100,1000 +19900119,300,131,100,850 +19900119,300,132,100,850 +19900119,300,134,100,1000 +19900119,300,152,100,1000 +19900119,600,131,100,1000 +19900119,600,131,100,975 +19900119,600,131,100,950 +19900119,600,131,100,925 +19900119,600,131,100,900 +19900119,600,131,100,875 +19900119,600,131,100,825 +19900119,600,131,100,800 +19900119,600,131,100,775 +19900119,600,131,100,750 +19900119,600,131,100,740 +19900119,600,131,100,700 +19900119,600,131,100,650 +19900119,600,131,100,620 +19900119,600,131,100,600 +19900119,600,131,100,550 +19900119,600,131,100,500 +19900119,600,131,100,450 +19900119,600,131,100,400 +19900119,600,131,100,375 +19900119,600,131,100,350 +19900119,600,131,100,300 +19900119,600,131,100,250 +19900119,600,131,100,245 +19900119,600,131,100,225 +19900119,600,131,100,200 +19900119,600,131,100,175 +19900119,600,131,100,150 +19900119,600,131,100,125 +19900119,600,131,100,100 +19900119,600,131,100,70 +19900119,600,131,100,50 +19900119,600,131,100,30 +19900119,600,131,100,20 +19900119,600,131,100,10 +19900119,600,131,100,9 +19900119,600,131,100,7 +19900119,600,131,100,5 +19900119,600,131,100,3 +19900119,600,131,100,2 +19900119,600,131,100,1 +19900119,600,131,210,40 +19900119,600,132,100,1000 +19900119,600,132,100,975 +19900119,600,132,100,950 +19900119,600,132,100,925 +19900119,600,132,100,900 +19900119,600,132,100,875 +19900119,600,132,100,825 +19900119,600,132,100,800 +19900119,600,132,100,775 +19900119,600,132,100,750 +19900119,600,132,100,740 +19900119,600,132,100,700 +19900119,600,132,100,650 +19900119,600,132,100,620 +19900119,600,132,100,600 +19900119,600,132,100,550 +19900119,600,132,100,500 +19900119,600,132,100,450 +19900119,600,132,100,400 +19900119,600,132,100,375 +19900119,600,132,100,350 +19900119,600,132,100,300 +19900119,600,132,100,250 +19900119,600,132,100,245 +19900119,600,132,100,225 +19900119,600,132,100,200 +19900119,600,132,100,175 +19900119,600,132,100,150 +19900119,600,132,100,125 +19900119,600,132,100,100 +19900119,600,132,100,70 +19900119,600,132,100,50 +19900119,600,132,100,30 +19900119,600,132,100,20 +19900119,600,132,100,10 +19900119,600,132,100,9 +19900119,600,132,100,7 +19900119,600,132,100,5 +19900119,600,132,100,3 +19900119,600,132,100,2 +19900119,600,132,100,1 +19900119,600,132,210,40 +19900119,600,130,100,1000 +19900119,600,130,100,975 +19900119,600,130,100,950 +19900119,600,130,100,925 +19900119,600,130,100,900 +19900119,600,130,100,875 +19900119,600,130,100,850 +19900119,600,130,100,825 +19900119,600,130,100,800 +19900119,600,130,100,775 +19900119,600,130,100,750 +19900119,600,130,100,740 +19900119,600,130,100,700 +19900119,600,130,100,650 +19900119,600,130,100,620 +19900119,600,130,100,600 +19900119,600,130,100,550 +19900119,600,130,100,500 +19900119,600,130,100,450 +19900119,600,130,100,400 +19900119,600,130,100,375 +19900119,600,130,100,350 +19900119,600,130,100,300 +19900119,600,130,100,250 +19900119,600,130,100,245 +19900119,600,130,100,225 +19900119,600,130,100,200 +19900119,600,130,100,175 +19900119,600,130,100,150 +19900119,600,130,100,125 +19900119,600,130,100,100 +19900119,600,130,100,70 +19900119,600,130,100,50 +19900119,600,130,100,30 +19900119,600,130,100,20 +19900119,600,130,100,10 +19900119,600,130,100,9 +19900119,600,130,100,7 +19900119,600,130,100,5 +19900119,600,130,100,3 +19900119,600,130,100,2 +19900119,600,130,100,1 +19900119,600,130,210,40 +19900119,600,129,100,1000 +19900119,600,129,100,975 +19900119,600,129,100,950 +19900119,600,129,100,925 +19900119,600,129,100,900 +19900119,600,129,100,875 +19900119,600,129,100,850 +19900119,600,129,100,825 +19900119,600,129,100,800 +19900119,600,129,100,775 +19900119,600,129,100,750 +19900119,600,129,100,740 +19900119,600,129,100,700 +19900119,600,129,100,650 +19900119,600,129,100,620 +19900119,600,129,100,600 +19900119,600,129,100,550 +19900119,600,129,100,500 +19900119,600,129,100,450 +19900119,600,129,100,400 +19900119,600,129,100,375 +19900119,600,129,100,350 +19900119,600,129,100,300 +19900119,600,129,100,250 +19900119,600,129,100,245 +19900119,600,129,100,225 +19900119,600,129,100,200 +19900119,600,129,100,175 +19900119,600,129,100,150 +19900119,600,129,100,125 +19900119,600,129,100,100 +19900119,600,129,100,70 +19900119,600,129,100,50 +19900119,600,129,100,30 +19900119,600,129,100,20 +19900119,600,129,100,10 +19900119,600,129,100,9 +19900119,600,129,100,7 +19900119,600,129,100,5 +19900119,600,129,100,3 +19900119,600,129,100,2 +19900119,600,129,100,1 +19900119,600,129,210,40 +19900119,600,157,100,1000 +19900119,600,157,100,975 +19900119,600,157,100,950 +19900119,600,157,100,925 +19900119,600,157,100,900 +19900119,600,157,100,875 +19900119,600,157,100,850 +19900119,600,157,100,825 +19900119,600,157,100,800 +19900119,600,157,100,775 +19900119,600,157,100,750 +19900119,600,157,100,740 +19900119,600,157,100,700 +19900119,600,157,100,650 +19900119,600,157,100,620 +19900119,600,157,100,600 +19900119,600,157,100,550 +19900119,600,157,100,500 +19900119,600,157,100,450 +19900119,600,157,100,400 +19900119,600,157,100,375 +19900119,600,157,100,350 +19900119,600,157,100,300 +19900119,600,157,100,250 +19900119,600,157,100,245 +19900119,600,157,100,225 +19900119,600,157,100,200 +19900119,600,157,100,175 +19900119,600,157,100,150 +19900119,600,157,100,125 +19900119,600,157,100,100 +19900119,600,157,100,70 +19900119,600,157,100,50 +19900119,600,157,100,30 +19900119,600,157,100,20 +19900119,600,157,100,10 +19900119,600,157,100,9 +19900119,600,157,100,7 +19900119,600,157,100,5 +19900119,600,157,100,3 +19900119,600,157,100,2 +19900119,600,157,100,1 +19900119,600,157,210,40 +19900119,600,135,100,1000 +19900119,600,135,100,975 +19900119,600,135,100,950 +19900119,600,135,100,925 +19900119,600,135,100,900 +19900119,600,135,100,875 +19900119,600,135,100,850 +19900119,600,135,100,825 +19900119,600,135,100,800 +19900119,600,135,100,775 +19900119,600,135,100,750 +19900119,600,135,100,740 +19900119,600,135,100,700 +19900119,600,135,100,650 +19900119,600,135,100,620 +19900119,600,135,100,600 +19900119,600,135,100,550 +19900119,600,135,100,500 +19900119,600,135,100,450 +19900119,600,135,100,400 +19900119,600,135,100,375 +19900119,600,135,100,350 +19900119,600,135,100,300 +19900119,600,135,100,250 +19900119,600,135,100,245 +19900119,600,135,100,225 +19900119,600,135,100,200 +19900119,600,135,100,175 +19900119,600,135,100,150 +19900119,600,135,100,125 +19900119,600,135,100,100 +19900119,600,135,100,70 +19900119,600,135,100,50 +19900119,600,135,100,30 +19900119,600,135,100,20 +19900119,600,135,100,10 +19900119,600,135,100,9 +19900119,600,135,100,7 +19900119,600,135,100,5 +19900119,600,135,100,3 +19900119,600,135,100,2 +19900119,600,135,100,1 +19900119,600,135,210,40 +19900119,600,138,100,1000 +19900119,600,138,100,975 +19900119,600,138,100,950 +19900119,600,138,100,925 +19900119,600,138,100,900 +19900119,600,138,100,875 +19900119,600,138,100,850 +19900119,600,138,100,825 +19900119,600,138,100,800 +19900119,600,138,100,775 +19900119,600,138,100,750 +19900119,600,138,100,740 +19900119,600,138,100,700 +19900119,600,138,100,650 +19900119,600,138,100,620 +19900119,600,138,100,600 +19900119,600,138,100,550 +19900119,600,138,100,500 +19900119,600,138,100,450 +19900119,600,138,100,400 +19900119,600,138,100,375 +19900119,600,138,100,350 +19900119,600,138,100,300 +19900119,600,138,100,250 +19900119,600,138,100,245 +19900119,600,138,100,225 +19900119,600,138,100,200 +19900119,600,138,100,175 +19900119,600,138,100,150 +19900119,600,138,100,125 +19900119,600,138,100,100 +19900119,600,138,100,70 +19900119,600,138,100,50 +19900119,600,138,100,30 +19900119,600,138,100,20 +19900119,600,138,100,10 +19900119,600,138,100,9 +19900119,600,138,100,7 +19900119,600,138,100,5 +19900119,600,138,100,3 +19900119,600,138,100,2 +19900119,600,138,100,1 +19900119,600,138,210,40 +19900119,600,131,109,1 +19900119,600,131,109,2 +19900119,600,131,109,3 +19900119,600,131,109,4 +19900119,600,131,109,5 +19900119,600,131,109,6 +19900119,600,131,109,7 +19900119,600,131,109,8 +19900119,600,131,109,9 +19900119,600,131,109,10 +19900119,600,132,109,1 +19900119,600,132,109,2 +19900119,600,132,109,3 +19900119,600,132,109,4 +19900119,600,132,109,5 +19900119,600,132,109,6 +19900119,600,132,109,7 +19900119,600,132,109,8 +19900119,600,132,109,9 +19900119,600,132,109,10 +19900119,600,130,109,1 +19900119,600,130,109,2 +19900119,600,130,109,3 +19900119,600,130,109,4 +19900119,600,130,109,5 +19900119,600,130,109,6 +19900119,600,130,109,7 +19900119,600,130,109,8 +19900119,600,130,109,9 +19900119,600,130,109,10 +19900119,600,157,109,1 +19900119,600,157,109,2 +19900119,600,157,109,3 +19900119,600,157,109,4 +19900119,600,157,109,5 +19900119,600,157,109,6 +19900119,600,157,109,7 +19900119,600,157,109,8 +19900119,600,157,109,9 +19900119,600,157,109,10 +19900119,600,54,109,1 +19900119,600,54,109,2 +19900119,600,54,109,3 +19900119,600,54,109,4 +19900119,600,54,109,5 +19900119,600,54,109,6 +19900119,600,54,109,7 +19900119,600,54,109,8 +19900119,600,54,109,9 +19900119,600,54,109,10 +19900119,600,135,109,1 +19900119,600,135,109,2 +19900119,600,135,109,3 +19900119,600,135,109,4 +19900119,600,135,109,5 +19900119,600,135,109,6 +19900119,600,135,109,7 +19900119,600,135,109,8 +19900119,600,135,109,9 +19900119,600,135,109,10 +19900119,600,134,109,1 +19900119,600,152,109,1 +19900119,600,131,100,850 +19900119,600,132,100,850 +19900119,600,134,100,1000 +19900119,600,152,100,1000 +19900119,900,131,100,850 +19900119,900,132,100,850 +19900119,900,134,100,1000 +19900119,900,152,100,1000 +19900119,1200,131,100,1000 +19900119,1200,131,100,975 +19900119,1200,131,100,950 +19900119,1200,131,100,925 +19900119,1200,131,100,900 +19900119,1200,131,100,875 +19900119,1200,131,100,825 +19900119,1200,131,100,800 +19900119,1200,131,100,775 +19900119,1200,131,100,750 +19900119,1200,131,100,740 +19900119,1200,131,100,700 +19900119,1200,131,100,650 +19900119,1200,131,100,620 +19900119,1200,131,100,600 +19900119,1200,131,100,550 +19900119,1200,131,100,500 +19900119,1200,131,100,450 +19900119,1200,131,100,400 +19900119,1200,131,100,375 +19900119,1200,131,100,350 +19900119,1200,131,100,300 +19900119,1200,131,100,250 +19900119,1200,131,100,245 +19900119,1200,131,100,225 +19900119,1200,131,100,200 +19900119,1200,131,100,175 +19900119,1200,131,100,150 +19900119,1200,131,100,125 +19900119,1200,131,100,100 +19900119,1200,131,100,70 +19900119,1200,131,100,50 +19900119,1200,131,100,30 +19900119,1200,131,100,20 +19900119,1200,131,100,10 +19900119,1200,131,100,9 +19900119,1200,131,100,7 +19900119,1200,131,100,5 +19900119,1200,131,100,3 +19900119,1200,131,100,2 +19900119,1200,131,100,1 +19900119,1200,131,210,40 +19900119,1200,132,100,1000 +19900119,1200,132,100,975 +19900119,1200,132,100,950 +19900119,1200,132,100,925 +19900119,1200,132,100,900 +19900119,1200,132,100,875 +19900119,1200,132,100,825 +19900119,1200,132,100,800 +19900119,1200,132,100,775 +19900119,1200,132,100,750 +19900119,1200,132,100,740 +19900119,1200,132,100,700 +19900119,1200,132,100,650 +19900119,1200,132,100,620 +19900119,1200,132,100,600 +19900119,1200,132,100,550 +19900119,1200,132,100,500 +19900119,1200,132,100,450 +19900119,1200,132,100,400 +19900119,1200,132,100,375 +19900119,1200,132,100,350 +19900119,1200,132,100,300 +19900119,1200,132,100,250 +19900119,1200,132,100,245 +19900119,1200,132,100,225 +19900119,1200,132,100,200 +19900119,1200,132,100,175 +19900119,1200,132,100,150 +19900119,1200,132,100,125 +19900119,1200,132,100,100 +19900119,1200,132,100,70 +19900119,1200,132,100,50 +19900119,1200,132,100,30 +19900119,1200,132,100,20 +19900119,1200,132,100,10 +19900119,1200,132,100,9 +19900119,1200,132,100,7 +19900119,1200,132,100,5 +19900119,1200,132,100,3 +19900119,1200,132,100,2 +19900119,1200,132,100,1 +19900119,1200,132,210,40 +19900119,1200,130,100,1000 +19900119,1200,130,100,975 +19900119,1200,130,100,950 +19900119,1200,130,100,925 +19900119,1200,130,100,900 +19900119,1200,130,100,875 +19900119,1200,130,100,850 +19900119,1200,130,100,825 +19900119,1200,130,100,800 +19900119,1200,130,100,775 +19900119,1200,130,100,750 +19900119,1200,130,100,740 +19900119,1200,130,100,700 +19900119,1200,130,100,650 +19900119,1200,130,100,620 +19900119,1200,130,100,600 +19900119,1200,130,100,550 +19900119,1200,130,100,500 +19900119,1200,130,100,450 +19900119,1200,130,100,400 +19900119,1200,130,100,375 +19900119,1200,130,100,350 +19900119,1200,130,100,300 +19900119,1200,130,100,250 +19900119,1200,130,100,245 +19900119,1200,130,100,225 +19900119,1200,130,100,200 +19900119,1200,130,100,175 +19900119,1200,130,100,150 +19900119,1200,130,100,125 +19900119,1200,130,100,100 +19900119,1200,130,100,70 +19900119,1200,130,100,50 +19900119,1200,130,100,30 +19900119,1200,130,100,20 +19900119,1200,130,100,10 +19900119,1200,130,100,9 +19900119,1200,130,100,7 +19900119,1200,130,100,5 +19900119,1200,130,100,3 +19900119,1200,130,100,2 +19900119,1200,130,100,1 +19900119,1200,130,210,40 +19900119,1200,129,100,1000 +19900119,1200,129,100,975 +19900119,1200,129,100,950 +19900119,1200,129,100,925 +19900119,1200,129,100,900 +19900119,1200,129,100,875 +19900119,1200,129,100,850 +19900119,1200,129,100,825 +19900119,1200,129,100,800 +19900119,1200,129,100,775 +19900119,1200,129,100,750 +19900119,1200,129,100,740 +19900119,1200,129,100,700 +19900119,1200,129,100,650 +19900119,1200,129,100,620 +19900119,1200,129,100,600 +19900119,1200,129,100,550 +19900119,1200,129,100,500 +19900119,1200,129,100,450 +19900119,1200,129,100,400 +19900119,1200,129,100,375 +19900119,1200,129,100,350 +19900119,1200,129,100,300 +19900119,1200,129,100,250 +19900119,1200,129,100,245 +19900119,1200,129,100,225 +19900119,1200,129,100,200 +19900119,1200,129,100,175 +19900119,1200,129,100,150 +19900119,1200,129,100,125 +19900119,1200,129,100,100 +19900119,1200,129,100,70 +19900119,1200,129,100,50 +19900119,1200,129,100,30 +19900119,1200,129,100,20 +19900119,1200,129,100,10 +19900119,1200,129,100,9 +19900119,1200,129,100,7 +19900119,1200,129,100,5 +19900119,1200,129,100,3 +19900119,1200,129,100,2 +19900119,1200,129,100,1 +19900119,1200,129,210,40 +19900119,1200,157,100,1000 +19900119,1200,157,100,975 +19900119,1200,157,100,950 +19900119,1200,157,100,925 +19900119,1200,157,100,900 +19900119,1200,157,100,875 +19900119,1200,157,100,850 +19900119,1200,157,100,825 +19900119,1200,157,100,800 +19900119,1200,157,100,775 +19900119,1200,157,100,750 +19900119,1200,157,100,740 +19900119,1200,157,100,700 +19900119,1200,157,100,650 +19900119,1200,157,100,620 +19900119,1200,157,100,600 +19900119,1200,157,100,550 +19900119,1200,157,100,500 +19900119,1200,157,100,450 +19900119,1200,157,100,400 +19900119,1200,157,100,375 +19900119,1200,157,100,350 +19900119,1200,157,100,300 +19900119,1200,157,100,250 +19900119,1200,157,100,245 +19900119,1200,157,100,225 +19900119,1200,157,100,200 +19900119,1200,157,100,175 +19900119,1200,157,100,150 +19900119,1200,157,100,125 +19900119,1200,157,100,100 +19900119,1200,157,100,70 +19900119,1200,157,100,50 +19900119,1200,157,100,30 +19900119,1200,157,100,20 +19900119,1200,157,100,10 +19900119,1200,157,100,9 +19900119,1200,157,100,7 +19900119,1200,157,100,5 +19900119,1200,157,100,3 +19900119,1200,157,100,2 +19900119,1200,157,100,1 +19900119,1200,157,210,40 +19900119,1200,135,100,1000 +19900119,1200,135,100,975 +19900119,1200,135,100,950 +19900119,1200,135,100,925 +19900119,1200,135,100,900 +19900119,1200,135,100,875 +19900119,1200,135,100,850 +19900119,1200,135,100,825 +19900119,1200,135,100,800 +19900119,1200,135,100,775 +19900119,1200,135,100,750 +19900119,1200,135,100,740 +19900119,1200,135,100,700 +19900119,1200,135,100,650 +19900119,1200,135,100,620 +19900119,1200,135,100,600 +19900119,1200,135,100,550 +19900119,1200,135,100,500 +19900119,1200,135,100,450 +19900119,1200,135,100,400 +19900119,1200,135,100,375 +19900119,1200,135,100,350 +19900119,1200,135,100,300 +19900119,1200,135,100,250 +19900119,1200,135,100,245 +19900119,1200,135,100,225 +19900119,1200,135,100,200 +19900119,1200,135,100,175 +19900119,1200,135,100,150 +19900119,1200,135,100,125 +19900119,1200,135,100,100 +19900119,1200,135,100,70 +19900119,1200,135,100,50 +19900119,1200,135,100,30 +19900119,1200,135,100,20 +19900119,1200,135,100,10 +19900119,1200,135,100,9 +19900119,1200,135,100,7 +19900119,1200,135,100,5 +19900119,1200,135,100,3 +19900119,1200,135,100,2 +19900119,1200,135,100,1 +19900119,1200,135,210,40 +19900119,1200,138,100,1000 +19900119,1200,138,100,975 +19900119,1200,138,100,950 +19900119,1200,138,100,925 +19900119,1200,138,100,900 +19900119,1200,138,100,875 +19900119,1200,138,100,850 +19900119,1200,138,100,825 +19900119,1200,138,100,800 +19900119,1200,138,100,775 +19900119,1200,138,100,750 +19900119,1200,138,100,740 +19900119,1200,138,100,700 +19900119,1200,138,100,650 +19900119,1200,138,100,620 +19900119,1200,138,100,600 +19900119,1200,138,100,550 +19900119,1200,138,100,500 +19900119,1200,138,100,450 +19900119,1200,138,100,400 +19900119,1200,138,100,375 +19900119,1200,138,100,350 +19900119,1200,138,100,300 +19900119,1200,138,100,250 +19900119,1200,138,100,245 +19900119,1200,138,100,225 +19900119,1200,138,100,200 +19900119,1200,138,100,175 +19900119,1200,138,100,150 +19900119,1200,138,100,125 +19900119,1200,138,100,100 +19900119,1200,138,100,70 +19900119,1200,138,100,50 +19900119,1200,138,100,30 +19900119,1200,138,100,20 +19900119,1200,138,100,10 +19900119,1200,138,100,9 +19900119,1200,138,100,7 +19900119,1200,138,100,5 +19900119,1200,138,100,3 +19900119,1200,138,100,2 +19900119,1200,138,100,1 +19900119,1200,138,210,40 +19900119,1200,131,109,1 +19900119,1200,131,109,2 +19900119,1200,131,109,3 +19900119,1200,131,109,4 +19900119,1200,131,109,5 +19900119,1200,131,109,6 +19900119,1200,131,109,7 +19900119,1200,131,109,8 +19900119,1200,131,109,9 +19900119,1200,131,109,10 +19900119,1200,132,109,1 +19900119,1200,132,109,2 +19900119,1200,132,109,3 +19900119,1200,132,109,4 +19900119,1200,132,109,5 +19900119,1200,132,109,6 +19900119,1200,132,109,7 +19900119,1200,132,109,8 +19900119,1200,132,109,9 +19900119,1200,132,109,10 +19900119,1200,130,109,1 +19900119,1200,130,109,2 +19900119,1200,130,109,3 +19900119,1200,130,109,4 +19900119,1200,130,109,5 +19900119,1200,130,109,6 +19900119,1200,130,109,7 +19900119,1200,130,109,8 +19900119,1200,130,109,9 +19900119,1200,130,109,10 +19900119,1200,157,109,1 +19900119,1200,157,109,2 +19900119,1200,157,109,3 +19900119,1200,157,109,4 +19900119,1200,157,109,5 +19900119,1200,157,109,6 +19900119,1200,157,109,7 +19900119,1200,157,109,8 +19900119,1200,157,109,9 +19900119,1200,157,109,10 +19900119,1200,54,109,1 +19900119,1200,54,109,2 +19900119,1200,54,109,3 +19900119,1200,54,109,4 +19900119,1200,54,109,5 +19900119,1200,54,109,6 +19900119,1200,54,109,7 +19900119,1200,54,109,8 +19900119,1200,54,109,9 +19900119,1200,54,109,10 +19900119,1200,135,109,1 +19900119,1200,135,109,2 +19900119,1200,135,109,3 +19900119,1200,135,109,4 +19900119,1200,135,109,5 +19900119,1200,135,109,6 +19900119,1200,135,109,7 +19900119,1200,135,109,8 +19900119,1200,135,109,9 +19900119,1200,135,109,10 +19900119,1200,134,109,1 +19900119,1200,152,109,1 +19900119,1200,131,100,850 +19900119,1200,132,100,850 +19900119,1200,134,100,1000 +19900119,1200,152,100,1000 +19900119,1500,131,100,850 +19900119,1500,132,100,850 +19900119,1500,134,100,1000 +19900119,1500,152,100,1000 +19900119,1800,131,100,1000 +19900119,1800,131,100,975 +19900119,1800,131,100,950 +19900119,1800,131,100,925 +19900119,1800,131,100,900 +19900119,1800,131,100,875 +19900119,1800,131,100,825 +19900119,1800,131,100,800 +19900119,1800,131,100,775 +19900119,1800,131,100,750 +19900119,1800,131,100,740 +19900119,1800,131,100,700 +19900119,1800,131,100,650 +19900119,1800,131,100,620 +19900119,1800,131,100,600 +19900119,1800,131,100,550 +19900119,1800,131,100,500 +19900119,1800,131,100,450 +19900119,1800,131,100,400 +19900119,1800,131,100,375 +19900119,1800,131,100,350 +19900119,1800,131,100,300 +19900119,1800,131,100,250 +19900119,1800,131,100,245 +19900119,1800,131,100,225 +19900119,1800,131,100,200 +19900119,1800,131,100,175 +19900119,1800,131,100,150 +19900119,1800,131,100,125 +19900119,1800,131,100,100 +19900119,1800,131,100,70 +19900119,1800,131,100,50 +19900119,1800,131,100,30 +19900119,1800,131,100,20 +19900119,1800,131,100,10 +19900119,1800,131,100,9 +19900119,1800,131,100,7 +19900119,1800,131,100,5 +19900119,1800,131,100,3 +19900119,1800,131,100,2 +19900119,1800,131,100,1 +19900119,1800,131,210,40 +19900119,1800,132,100,1000 +19900119,1800,132,100,975 +19900119,1800,132,100,950 +19900119,1800,132,100,925 +19900119,1800,132,100,900 +19900119,1800,132,100,875 +19900119,1800,132,100,825 +19900119,1800,132,100,800 +19900119,1800,132,100,775 +19900119,1800,132,100,750 +19900119,1800,132,100,740 +19900119,1800,132,100,700 +19900119,1800,132,100,650 +19900119,1800,132,100,620 +19900119,1800,132,100,600 +19900119,1800,132,100,550 +19900119,1800,132,100,500 +19900119,1800,132,100,450 +19900119,1800,132,100,400 +19900119,1800,132,100,375 +19900119,1800,132,100,350 +19900119,1800,132,100,300 +19900119,1800,132,100,250 +19900119,1800,132,100,245 +19900119,1800,132,100,225 +19900119,1800,132,100,200 +19900119,1800,132,100,175 +19900119,1800,132,100,150 +19900119,1800,132,100,125 +19900119,1800,132,100,100 +19900119,1800,132,100,70 +19900119,1800,132,100,50 +19900119,1800,132,100,30 +19900119,1800,132,100,20 +19900119,1800,132,100,10 +19900119,1800,132,100,9 +19900119,1800,132,100,7 +19900119,1800,132,100,5 +19900119,1800,132,100,3 +19900119,1800,132,100,2 +19900119,1800,132,100,1 +19900119,1800,132,210,40 +19900119,1800,130,100,1000 +19900119,1800,130,100,975 +19900119,1800,130,100,950 +19900119,1800,130,100,925 +19900119,1800,130,100,900 +19900119,1800,130,100,875 +19900119,1800,130,100,850 +19900119,1800,130,100,825 +19900119,1800,130,100,800 +19900119,1800,130,100,775 +19900119,1800,130,100,750 +19900119,1800,130,100,740 +19900119,1800,130,100,700 +19900119,1800,130,100,650 +19900119,1800,130,100,620 +19900119,1800,130,100,600 +19900119,1800,130,100,550 +19900119,1800,130,100,500 +19900119,1800,130,100,450 +19900119,1800,130,100,400 +19900119,1800,130,100,375 +19900119,1800,130,100,350 +19900119,1800,130,100,300 +19900119,1800,130,100,250 +19900119,1800,130,100,245 +19900119,1800,130,100,225 +19900119,1800,130,100,200 +19900119,1800,130,100,175 +19900119,1800,130,100,150 +19900119,1800,130,100,125 +19900119,1800,130,100,100 +19900119,1800,130,100,70 +19900119,1800,130,100,50 +19900119,1800,130,100,30 +19900119,1800,130,100,20 +19900119,1800,130,100,10 +19900119,1800,130,100,9 +19900119,1800,130,100,7 +19900119,1800,130,100,5 +19900119,1800,130,100,3 +19900119,1800,130,100,2 +19900119,1800,130,100,1 +19900119,1800,130,210,40 +19900119,1800,129,100,1000 +19900119,1800,129,100,975 +19900119,1800,129,100,950 +19900119,1800,129,100,925 +19900119,1800,129,100,900 +19900119,1800,129,100,875 +19900119,1800,129,100,850 +19900119,1800,129,100,825 +19900119,1800,129,100,800 +19900119,1800,129,100,775 +19900119,1800,129,100,750 +19900119,1800,129,100,740 +19900119,1800,129,100,700 +19900119,1800,129,100,650 +19900119,1800,129,100,620 +19900119,1800,129,100,600 +19900119,1800,129,100,550 +19900119,1800,129,100,500 +19900119,1800,129,100,450 +19900119,1800,129,100,400 +19900119,1800,129,100,375 +19900119,1800,129,100,350 +19900119,1800,129,100,300 +19900119,1800,129,100,250 +19900119,1800,129,100,245 +19900119,1800,129,100,225 +19900119,1800,129,100,200 +19900119,1800,129,100,175 +19900119,1800,129,100,150 +19900119,1800,129,100,125 +19900119,1800,129,100,100 +19900119,1800,129,100,70 +19900119,1800,129,100,50 +19900119,1800,129,100,30 +19900119,1800,129,100,20 +19900119,1800,129,100,10 +19900119,1800,129,100,9 +19900119,1800,129,100,7 +19900119,1800,129,100,5 +19900119,1800,129,100,3 +19900119,1800,129,100,2 +19900119,1800,129,100,1 +19900119,1800,129,210,40 +19900119,1800,157,100,1000 +19900119,1800,157,100,975 +19900119,1800,157,100,950 +19900119,1800,157,100,925 +19900119,1800,157,100,900 +19900119,1800,157,100,875 +19900119,1800,157,100,850 +19900119,1800,157,100,825 +19900119,1800,157,100,800 +19900119,1800,157,100,775 +19900119,1800,157,100,750 +19900119,1800,157,100,740 +19900119,1800,157,100,700 +19900119,1800,157,100,650 +19900119,1800,157,100,620 +19900119,1800,157,100,600 +19900119,1800,157,100,550 +19900119,1800,157,100,500 +19900119,1800,157,100,450 +19900119,1800,157,100,400 +19900119,1800,157,100,375 +19900119,1800,157,100,350 +19900119,1800,157,100,300 +19900119,1800,157,100,250 +19900119,1800,157,100,245 +19900119,1800,157,100,225 +19900119,1800,157,100,200 +19900119,1800,157,100,175 +19900119,1800,157,100,150 +19900119,1800,157,100,125 +19900119,1800,157,100,100 +19900119,1800,157,100,70 +19900119,1800,157,100,50 +19900119,1800,157,100,30 +19900119,1800,157,100,20 +19900119,1800,157,100,10 +19900119,1800,157,100,9 +19900119,1800,157,100,7 +19900119,1800,157,100,5 +19900119,1800,157,100,3 +19900119,1800,157,100,2 +19900119,1800,157,100,1 +19900119,1800,157,210,40 +19900119,1800,135,100,1000 +19900119,1800,135,100,975 +19900119,1800,135,100,950 +19900119,1800,135,100,925 +19900119,1800,135,100,900 +19900119,1800,135,100,875 +19900119,1800,135,100,850 +19900119,1800,135,100,825 +19900119,1800,135,100,800 +19900119,1800,135,100,775 +19900119,1800,135,100,750 +19900119,1800,135,100,740 +19900119,1800,135,100,700 +19900119,1800,135,100,650 +19900119,1800,135,100,620 +19900119,1800,135,100,600 +19900119,1800,135,100,550 +19900119,1800,135,100,500 +19900119,1800,135,100,450 +19900119,1800,135,100,400 +19900119,1800,135,100,375 +19900119,1800,135,100,350 +19900119,1800,135,100,300 +19900119,1800,135,100,250 +19900119,1800,135,100,245 +19900119,1800,135,100,225 +19900119,1800,135,100,200 +19900119,1800,135,100,175 +19900119,1800,135,100,150 +19900119,1800,135,100,125 +19900119,1800,135,100,100 +19900119,1800,135,100,70 +19900119,1800,135,100,50 +19900119,1800,135,100,30 +19900119,1800,135,100,20 +19900119,1800,135,100,10 +19900119,1800,135,100,9 +19900119,1800,135,100,7 +19900119,1800,135,100,5 +19900119,1800,135,100,3 +19900119,1800,135,100,2 +19900119,1800,135,100,1 +19900119,1800,135,210,40 +19900119,1800,138,100,1000 +19900119,1800,138,100,975 +19900119,1800,138,100,950 +19900119,1800,138,100,925 +19900119,1800,138,100,900 +19900119,1800,138,100,875 +19900119,1800,138,100,850 +19900119,1800,138,100,825 +19900119,1800,138,100,800 +19900119,1800,138,100,775 +19900119,1800,138,100,750 +19900119,1800,138,100,740 +19900119,1800,138,100,700 +19900119,1800,138,100,650 +19900119,1800,138,100,620 +19900119,1800,138,100,600 +19900119,1800,138,100,550 +19900119,1800,138,100,500 +19900119,1800,138,100,450 +19900119,1800,138,100,400 +19900119,1800,138,100,375 +19900119,1800,138,100,350 +19900119,1800,138,100,300 +19900119,1800,138,100,250 +19900119,1800,138,100,245 +19900119,1800,138,100,225 +19900119,1800,138,100,200 +19900119,1800,138,100,175 +19900119,1800,138,100,150 +19900119,1800,138,100,125 +19900119,1800,138,100,100 +19900119,1800,138,100,70 +19900119,1800,138,100,50 +19900119,1800,138,100,30 +19900119,1800,138,100,20 +19900119,1800,138,100,10 +19900119,1800,138,100,9 +19900119,1800,138,100,7 +19900119,1800,138,100,5 +19900119,1800,138,100,3 +19900119,1800,138,100,2 +19900119,1800,138,100,1 +19900119,1800,138,210,40 +19900119,1800,131,109,1 +19900119,1800,131,109,2 +19900119,1800,131,109,3 +19900119,1800,131,109,4 +19900119,1800,131,109,5 +19900119,1800,131,109,6 +19900119,1800,131,109,7 +19900119,1800,131,109,8 +19900119,1800,131,109,9 +19900119,1800,131,109,10 +19900119,1800,132,109,1 +19900119,1800,132,109,2 +19900119,1800,132,109,3 +19900119,1800,132,109,4 +19900119,1800,132,109,5 +19900119,1800,132,109,6 +19900119,1800,132,109,7 +19900119,1800,132,109,8 +19900119,1800,132,109,9 +19900119,1800,132,109,10 +19900119,1800,130,109,1 +19900119,1800,130,109,2 +19900119,1800,130,109,3 +19900119,1800,130,109,4 +19900119,1800,130,109,5 +19900119,1800,130,109,6 +19900119,1800,130,109,7 +19900119,1800,130,109,8 +19900119,1800,130,109,9 +19900119,1800,130,109,10 +19900119,1800,157,109,1 +19900119,1800,157,109,2 +19900119,1800,157,109,3 +19900119,1800,157,109,4 +19900119,1800,157,109,5 +19900119,1800,157,109,6 +19900119,1800,157,109,7 +19900119,1800,157,109,8 +19900119,1800,157,109,9 +19900119,1800,157,109,10 +19900119,1800,54,109,1 +19900119,1800,54,109,2 +19900119,1800,54,109,3 +19900119,1800,54,109,4 +19900119,1800,54,109,5 +19900119,1800,54,109,6 +19900119,1800,54,109,7 +19900119,1800,54,109,8 +19900119,1800,54,109,9 +19900119,1800,54,109,10 +19900119,1800,135,109,1 +19900119,1800,135,109,2 +19900119,1800,135,109,3 +19900119,1800,135,109,4 +19900119,1800,135,109,5 +19900119,1800,135,109,6 +19900119,1800,135,109,7 +19900119,1800,135,109,8 +19900119,1800,135,109,9 +19900119,1800,135,109,10 +19900119,1800,134,109,1 +19900119,1800,152,109,1 +19900119,1800,131,100,850 +19900119,1800,132,100,850 +19900119,1800,134,100,1000 +19900119,1800,152,100,1000 +19900119,2100,131,100,850 +19900119,2100,132,100,850 +19900119,2100,134,100,1000 +19900119,2100,152,100,1000 +19900120,0,131,100,1000 +19900120,0,131,100,975 +19900120,0,131,100,950 +19900120,0,131,100,925 +19900120,0,131,100,900 +19900120,0,131,100,875 +19900120,0,131,100,825 +19900120,0,131,100,800 +19900120,0,131,100,775 +19900120,0,131,100,750 +19900120,0,131,100,740 +19900120,0,131,100,700 +19900120,0,131,100,650 +19900120,0,131,100,620 +19900120,0,131,100,600 +19900120,0,131,100,550 +19900120,0,131,100,500 +19900120,0,131,100,450 +19900120,0,131,100,400 +19900120,0,131,100,375 +19900120,0,131,100,350 +19900120,0,131,100,300 +19900120,0,131,100,250 +19900120,0,131,100,245 +19900120,0,131,100,225 +19900120,0,131,100,200 +19900120,0,131,100,175 +19900120,0,131,100,150 +19900120,0,131,100,125 +19900120,0,131,100,100 +19900120,0,131,100,70 +19900120,0,131,100,50 +19900120,0,131,100,30 +19900120,0,131,100,20 +19900120,0,131,100,10 +19900120,0,131,100,9 +19900120,0,131,100,7 +19900120,0,131,100,5 +19900120,0,131,100,3 +19900120,0,131,100,2 +19900120,0,131,100,1 +19900120,0,131,210,40 +19900120,0,132,100,1000 +19900120,0,132,100,975 +19900120,0,132,100,950 +19900120,0,132,100,925 +19900120,0,132,100,900 +19900120,0,132,100,875 +19900120,0,132,100,825 +19900120,0,132,100,800 +19900120,0,132,100,775 +19900120,0,132,100,750 +19900120,0,132,100,740 +19900120,0,132,100,700 +19900120,0,132,100,650 +19900120,0,132,100,620 +19900120,0,132,100,600 +19900120,0,132,100,550 +19900120,0,132,100,500 +19900120,0,132,100,450 +19900120,0,132,100,400 +19900120,0,132,100,375 +19900120,0,132,100,350 +19900120,0,132,100,300 +19900120,0,132,100,250 +19900120,0,132,100,245 +19900120,0,132,100,225 +19900120,0,132,100,200 +19900120,0,132,100,175 +19900120,0,132,100,150 +19900120,0,132,100,125 +19900120,0,132,100,100 +19900120,0,132,100,70 +19900120,0,132,100,50 +19900120,0,132,100,30 +19900120,0,132,100,20 +19900120,0,132,100,10 +19900120,0,132,100,9 +19900120,0,132,100,7 +19900120,0,132,100,5 +19900120,0,132,100,3 +19900120,0,132,100,2 +19900120,0,132,100,1 +19900120,0,132,210,40 +19900120,0,130,100,1000 +19900120,0,130,100,975 +19900120,0,130,100,950 +19900120,0,130,100,925 +19900120,0,130,100,900 +19900120,0,130,100,875 +19900120,0,130,100,850 +19900120,0,130,100,825 +19900120,0,130,100,800 +19900120,0,130,100,775 +19900120,0,130,100,750 +19900120,0,130,100,740 +19900120,0,130,100,700 +19900120,0,130,100,650 +19900120,0,130,100,620 +19900120,0,130,100,600 +19900120,0,130,100,550 +19900120,0,130,100,500 +19900120,0,130,100,450 +19900120,0,130,100,400 +19900120,0,130,100,375 +19900120,0,130,100,350 +19900120,0,130,100,300 +19900120,0,130,100,250 +19900120,0,130,100,245 +19900120,0,130,100,225 +19900120,0,130,100,200 +19900120,0,130,100,175 +19900120,0,130,100,150 +19900120,0,130,100,125 +19900120,0,130,100,100 +19900120,0,130,100,70 +19900120,0,130,100,50 +19900120,0,130,100,30 +19900120,0,130,100,20 +19900120,0,130,100,10 +19900120,0,130,100,9 +19900120,0,130,100,7 +19900120,0,130,100,5 +19900120,0,130,100,3 +19900120,0,130,100,2 +19900120,0,130,100,1 +19900120,0,130,210,40 +19900120,0,129,100,1000 +19900120,0,129,100,975 +19900120,0,129,100,950 +19900120,0,129,100,925 +19900120,0,129,100,900 +19900120,0,129,100,875 +19900120,0,129,100,850 +19900120,0,129,100,825 +19900120,0,129,100,800 +19900120,0,129,100,775 +19900120,0,129,100,750 +19900120,0,129,100,740 +19900120,0,129,100,700 +19900120,0,129,100,650 +19900120,0,129,100,620 +19900120,0,129,100,600 +19900120,0,129,100,550 +19900120,0,129,100,500 +19900120,0,129,100,450 +19900120,0,129,100,400 +19900120,0,129,100,375 +19900120,0,129,100,350 +19900120,0,129,100,300 +19900120,0,129,100,250 +19900120,0,129,100,245 +19900120,0,129,100,225 +19900120,0,129,100,200 +19900120,0,129,100,175 +19900120,0,129,100,150 +19900120,0,129,100,125 +19900120,0,129,100,100 +19900120,0,129,100,70 +19900120,0,129,100,50 +19900120,0,129,100,30 +19900120,0,129,100,20 +19900120,0,129,100,10 +19900120,0,129,100,9 +19900120,0,129,100,7 +19900120,0,129,100,5 +19900120,0,129,100,3 +19900120,0,129,100,2 +19900120,0,129,100,1 +19900120,0,129,210,40 +19900120,0,157,100,1000 +19900120,0,157,100,975 +19900120,0,157,100,950 +19900120,0,157,100,925 +19900120,0,157,100,900 +19900120,0,157,100,875 +19900120,0,157,100,850 +19900120,0,157,100,825 +19900120,0,157,100,800 +19900120,0,157,100,775 +19900120,0,157,100,750 +19900120,0,157,100,740 +19900120,0,157,100,700 +19900120,0,157,100,650 +19900120,0,157,100,620 +19900120,0,157,100,600 +19900120,0,157,100,550 +19900120,0,157,100,500 +19900120,0,157,100,450 +19900120,0,157,100,400 +19900120,0,157,100,375 +19900120,0,157,100,350 +19900120,0,157,100,300 +19900120,0,157,100,250 +19900120,0,157,100,245 +19900120,0,157,100,225 +19900120,0,157,100,200 +19900120,0,157,100,175 +19900120,0,157,100,150 +19900120,0,157,100,125 +19900120,0,157,100,100 +19900120,0,157,100,70 +19900120,0,157,100,50 +19900120,0,157,100,30 +19900120,0,157,100,20 +19900120,0,157,100,10 +19900120,0,157,100,9 +19900120,0,157,100,7 +19900120,0,157,100,5 +19900120,0,157,100,3 +19900120,0,157,100,2 +19900120,0,157,100,1 +19900120,0,157,210,40 +19900120,0,135,100,1000 +19900120,0,135,100,975 +19900120,0,135,100,950 +19900120,0,135,100,925 +19900120,0,135,100,900 +19900120,0,135,100,875 +19900120,0,135,100,850 +19900120,0,135,100,825 +19900120,0,135,100,800 +19900120,0,135,100,775 +19900120,0,135,100,750 +19900120,0,135,100,740 +19900120,0,135,100,700 +19900120,0,135,100,650 +19900120,0,135,100,620 +19900120,0,135,100,600 +19900120,0,135,100,550 +19900120,0,135,100,500 +19900120,0,135,100,450 +19900120,0,135,100,400 +19900120,0,135,100,375 +19900120,0,135,100,350 +19900120,0,135,100,300 +19900120,0,135,100,250 +19900120,0,135,100,245 +19900120,0,135,100,225 +19900120,0,135,100,200 +19900120,0,135,100,175 +19900120,0,135,100,150 +19900120,0,135,100,125 +19900120,0,135,100,100 +19900120,0,135,100,70 +19900120,0,135,100,50 +19900120,0,135,100,30 +19900120,0,135,100,20 +19900120,0,135,100,10 +19900120,0,135,100,9 +19900120,0,135,100,7 +19900120,0,135,100,5 +19900120,0,135,100,3 +19900120,0,135,100,2 +19900120,0,135,100,1 +19900120,0,135,210,40 +19900120,0,138,100,1000 +19900120,0,138,100,975 +19900120,0,138,100,950 +19900120,0,138,100,925 +19900120,0,138,100,900 +19900120,0,138,100,875 +19900120,0,138,100,850 +19900120,0,138,100,825 +19900120,0,138,100,800 +19900120,0,138,100,775 +19900120,0,138,100,750 +19900120,0,138,100,740 +19900120,0,138,100,700 +19900120,0,138,100,650 +19900120,0,138,100,620 +19900120,0,138,100,600 +19900120,0,138,100,550 +19900120,0,138,100,500 +19900120,0,138,100,450 +19900120,0,138,100,400 +19900120,0,138,100,375 +19900120,0,138,100,350 +19900120,0,138,100,300 +19900120,0,138,100,250 +19900120,0,138,100,245 +19900120,0,138,100,225 +19900120,0,138,100,200 +19900120,0,138,100,175 +19900120,0,138,100,150 +19900120,0,138,100,125 +19900120,0,138,100,100 +19900120,0,138,100,70 +19900120,0,138,100,50 +19900120,0,138,100,30 +19900120,0,138,100,20 +19900120,0,138,100,10 +19900120,0,138,100,9 +19900120,0,138,100,7 +19900120,0,138,100,5 +19900120,0,138,100,3 +19900120,0,138,100,2 +19900120,0,138,100,1 +19900120,0,138,210,40 +19900120,0,131,109,1 +19900120,0,131,109,2 +19900120,0,131,109,3 +19900120,0,131,109,4 +19900120,0,131,109,5 +19900120,0,131,109,6 +19900120,0,131,109,7 +19900120,0,131,109,8 +19900120,0,131,109,9 +19900120,0,131,109,10 +19900120,0,132,109,1 +19900120,0,132,109,2 +19900120,0,132,109,3 +19900120,0,132,109,4 +19900120,0,132,109,5 +19900120,0,132,109,6 +19900120,0,132,109,7 +19900120,0,132,109,8 +19900120,0,132,109,9 +19900120,0,132,109,10 +19900120,0,130,109,1 +19900120,0,130,109,2 +19900120,0,130,109,3 +19900120,0,130,109,4 +19900120,0,130,109,5 +19900120,0,130,109,6 +19900120,0,130,109,7 +19900120,0,130,109,8 +19900120,0,130,109,9 +19900120,0,130,109,10 +19900120,0,157,109,1 +19900120,0,157,109,2 +19900120,0,157,109,3 +19900120,0,157,109,4 +19900120,0,157,109,5 +19900120,0,157,109,6 +19900120,0,157,109,7 +19900120,0,157,109,8 +19900120,0,157,109,9 +19900120,0,157,109,10 +19900120,0,54,109,1 +19900120,0,54,109,2 +19900120,0,54,109,3 +19900120,0,54,109,4 +19900120,0,54,109,5 +19900120,0,54,109,6 +19900120,0,54,109,7 +19900120,0,54,109,8 +19900120,0,54,109,9 +19900120,0,54,109,10 +19900120,0,135,109,1 +19900120,0,135,109,2 +19900120,0,135,109,3 +19900120,0,135,109,4 +19900120,0,135,109,5 +19900120,0,135,109,6 +19900120,0,135,109,7 +19900120,0,135,109,8 +19900120,0,135,109,9 +19900120,0,135,109,10 +19900120,0,134,109,1 +19900120,0,152,109,1 +19900120,0,131,100,850 +19900120,0,132,100,850 +19900120,0,134,100,1000 +19900120,0,152,100,1000 +19900120,300,131,100,850 +19900120,300,132,100,850 +19900120,300,134,100,1000 +19900120,300,152,100,1000 +19900120,600,131,100,1000 +19900120,600,131,100,975 +19900120,600,131,100,950 +19900120,600,131,100,925 +19900120,600,131,100,900 +19900120,600,131,100,875 +19900120,600,131,100,825 +19900120,600,131,100,800 +19900120,600,131,100,775 +19900120,600,131,100,750 +19900120,600,131,100,740 +19900120,600,131,100,700 +19900120,600,131,100,650 +19900120,600,131,100,620 +19900120,600,131,100,600 +19900120,600,131,100,550 +19900120,600,131,100,500 +19900120,600,131,100,450 +19900120,600,131,100,400 +19900120,600,131,100,375 +19900120,600,131,100,350 +19900120,600,131,100,300 +19900120,600,131,100,250 +19900120,600,131,100,245 +19900120,600,131,100,225 +19900120,600,131,100,200 +19900120,600,131,100,175 +19900120,600,131,100,150 +19900120,600,131,100,125 +19900120,600,131,100,100 +19900120,600,131,100,70 +19900120,600,131,100,50 +19900120,600,131,100,30 +19900120,600,131,100,20 +19900120,600,131,100,10 +19900120,600,131,100,9 +19900120,600,131,100,7 +19900120,600,131,100,5 +19900120,600,131,100,3 +19900120,600,131,100,2 +19900120,600,131,100,1 +19900120,600,131,210,40 +19900120,600,132,100,1000 +19900120,600,132,100,975 +19900120,600,132,100,950 +19900120,600,132,100,925 +19900120,600,132,100,900 +19900120,600,132,100,875 +19900120,600,132,100,825 +19900120,600,132,100,800 +19900120,600,132,100,775 +19900120,600,132,100,750 +19900120,600,132,100,740 +19900120,600,132,100,700 +19900120,600,132,100,650 +19900120,600,132,100,620 +19900120,600,132,100,600 +19900120,600,132,100,550 +19900120,600,132,100,500 +19900120,600,132,100,450 +19900120,600,132,100,400 +19900120,600,132,100,375 +19900120,600,132,100,350 +19900120,600,132,100,300 +19900120,600,132,100,250 +19900120,600,132,100,245 +19900120,600,132,100,225 +19900120,600,132,100,200 +19900120,600,132,100,175 +19900120,600,132,100,150 +19900120,600,132,100,125 +19900120,600,132,100,100 +19900120,600,132,100,70 +19900120,600,132,100,50 +19900120,600,132,100,30 +19900120,600,132,100,20 +19900120,600,132,100,10 +19900120,600,132,100,9 +19900120,600,132,100,7 +19900120,600,132,100,5 +19900120,600,132,100,3 +19900120,600,132,100,2 +19900120,600,132,100,1 +19900120,600,132,210,40 +19900120,600,130,100,1000 +19900120,600,130,100,975 +19900120,600,130,100,950 +19900120,600,130,100,925 +19900120,600,130,100,900 +19900120,600,130,100,875 +19900120,600,130,100,850 +19900120,600,130,100,825 +19900120,600,130,100,800 +19900120,600,130,100,775 +19900120,600,130,100,750 +19900120,600,130,100,740 +19900120,600,130,100,700 +19900120,600,130,100,650 +19900120,600,130,100,620 +19900120,600,130,100,600 +19900120,600,130,100,550 +19900120,600,130,100,500 +19900120,600,130,100,450 +19900120,600,130,100,400 +19900120,600,130,100,375 +19900120,600,130,100,350 +19900120,600,130,100,300 +19900120,600,130,100,250 +19900120,600,130,100,245 +19900120,600,130,100,225 +19900120,600,130,100,200 +19900120,600,130,100,175 +19900120,600,130,100,150 +19900120,600,130,100,125 +19900120,600,130,100,100 +19900120,600,130,100,70 +19900120,600,130,100,50 +19900120,600,130,100,30 +19900120,600,130,100,20 +19900120,600,130,100,10 +19900120,600,130,100,9 +19900120,600,130,100,7 +19900120,600,130,100,5 +19900120,600,130,100,3 +19900120,600,130,100,2 +19900120,600,130,100,1 +19900120,600,130,210,40 +19900120,600,129,100,1000 +19900120,600,129,100,975 +19900120,600,129,100,950 +19900120,600,129,100,925 +19900120,600,129,100,900 +19900120,600,129,100,875 +19900120,600,129,100,850 +19900120,600,129,100,825 +19900120,600,129,100,800 +19900120,600,129,100,775 +19900120,600,129,100,750 +19900120,600,129,100,740 +19900120,600,129,100,700 +19900120,600,129,100,650 +19900120,600,129,100,620 +19900120,600,129,100,600 +19900120,600,129,100,550 +19900120,600,129,100,500 +19900120,600,129,100,450 +19900120,600,129,100,400 +19900120,600,129,100,375 +19900120,600,129,100,350 +19900120,600,129,100,300 +19900120,600,129,100,250 +19900120,600,129,100,245 +19900120,600,129,100,225 +19900120,600,129,100,200 +19900120,600,129,100,175 +19900120,600,129,100,150 +19900120,600,129,100,125 +19900120,600,129,100,100 +19900120,600,129,100,70 +19900120,600,129,100,50 +19900120,600,129,100,30 +19900120,600,129,100,20 +19900120,600,129,100,10 +19900120,600,129,100,9 +19900120,600,129,100,7 +19900120,600,129,100,5 +19900120,600,129,100,3 +19900120,600,129,100,2 +19900120,600,129,100,1 +19900120,600,129,210,40 +19900120,600,157,100,1000 +19900120,600,157,100,975 +19900120,600,157,100,950 +19900120,600,157,100,925 +19900120,600,157,100,900 +19900120,600,157,100,875 +19900120,600,157,100,850 +19900120,600,157,100,825 +19900120,600,157,100,800 +19900120,600,157,100,775 +19900120,600,157,100,750 +19900120,600,157,100,740 +19900120,600,157,100,700 +19900120,600,157,100,650 +19900120,600,157,100,620 +19900120,600,157,100,600 +19900120,600,157,100,550 +19900120,600,157,100,500 +19900120,600,157,100,450 +19900120,600,157,100,400 +19900120,600,157,100,375 +19900120,600,157,100,350 +19900120,600,157,100,300 +19900120,600,157,100,250 +19900120,600,157,100,245 +19900120,600,157,100,225 +19900120,600,157,100,200 +19900120,600,157,100,175 +19900120,600,157,100,150 +19900120,600,157,100,125 +19900120,600,157,100,100 +19900120,600,157,100,70 +19900120,600,157,100,50 +19900120,600,157,100,30 +19900120,600,157,100,20 +19900120,600,157,100,10 +19900120,600,157,100,9 +19900120,600,157,100,7 +19900120,600,157,100,5 +19900120,600,157,100,3 +19900120,600,157,100,2 +19900120,600,157,100,1 +19900120,600,157,210,40 +19900120,600,135,100,1000 +19900120,600,135,100,975 +19900120,600,135,100,950 +19900120,600,135,100,925 +19900120,600,135,100,900 +19900120,600,135,100,875 +19900120,600,135,100,850 +19900120,600,135,100,825 +19900120,600,135,100,800 +19900120,600,135,100,775 +19900120,600,135,100,750 +19900120,600,135,100,740 +19900120,600,135,100,700 +19900120,600,135,100,650 +19900120,600,135,100,620 +19900120,600,135,100,600 +19900120,600,135,100,550 +19900120,600,135,100,500 +19900120,600,135,100,450 +19900120,600,135,100,400 +19900120,600,135,100,375 +19900120,600,135,100,350 +19900120,600,135,100,300 +19900120,600,135,100,250 +19900120,600,135,100,245 +19900120,600,135,100,225 +19900120,600,135,100,200 +19900120,600,135,100,175 +19900120,600,135,100,150 +19900120,600,135,100,125 +19900120,600,135,100,100 +19900120,600,135,100,70 +19900120,600,135,100,50 +19900120,600,135,100,30 +19900120,600,135,100,20 +19900120,600,135,100,10 +19900120,600,135,100,9 +19900120,600,135,100,7 +19900120,600,135,100,5 +19900120,600,135,100,3 +19900120,600,135,100,2 +19900120,600,135,100,1 +19900120,600,135,210,40 +19900120,600,138,100,1000 +19900120,600,138,100,975 +19900120,600,138,100,950 +19900120,600,138,100,925 +19900120,600,138,100,900 +19900120,600,138,100,875 +19900120,600,138,100,850 +19900120,600,138,100,825 +19900120,600,138,100,800 +19900120,600,138,100,775 +19900120,600,138,100,750 +19900120,600,138,100,740 +19900120,600,138,100,700 +19900120,600,138,100,650 +19900120,600,138,100,620 +19900120,600,138,100,600 +19900120,600,138,100,550 +19900120,600,138,100,500 +19900120,600,138,100,450 +19900120,600,138,100,400 +19900120,600,138,100,375 +19900120,600,138,100,350 +19900120,600,138,100,300 +19900120,600,138,100,250 +19900120,600,138,100,245 +19900120,600,138,100,225 +19900120,600,138,100,200 +19900120,600,138,100,175 +19900120,600,138,100,150 +19900120,600,138,100,125 +19900120,600,138,100,100 +19900120,600,138,100,70 +19900120,600,138,100,50 +19900120,600,138,100,30 +19900120,600,138,100,20 +19900120,600,138,100,10 +19900120,600,138,100,9 +19900120,600,138,100,7 +19900120,600,138,100,5 +19900120,600,138,100,3 +19900120,600,138,100,2 +19900120,600,138,100,1 +19900120,600,138,210,40 +19900120,600,131,109,1 +19900120,600,131,109,2 +19900120,600,131,109,3 +19900120,600,131,109,4 +19900120,600,131,109,5 +19900120,600,131,109,6 +19900120,600,131,109,7 +19900120,600,131,109,8 +19900120,600,131,109,9 +19900120,600,131,109,10 +19900120,600,132,109,1 +19900120,600,132,109,2 +19900120,600,132,109,3 +19900120,600,132,109,4 +19900120,600,132,109,5 +19900120,600,132,109,6 +19900120,600,132,109,7 +19900120,600,132,109,8 +19900120,600,132,109,9 +19900120,600,132,109,10 +19900120,600,130,109,1 +19900120,600,130,109,2 +19900120,600,130,109,3 +19900120,600,130,109,4 +19900120,600,130,109,5 +19900120,600,130,109,6 +19900120,600,130,109,7 +19900120,600,130,109,8 +19900120,600,130,109,9 +19900120,600,130,109,10 +19900120,600,157,109,1 +19900120,600,157,109,2 +19900120,600,157,109,3 +19900120,600,157,109,4 +19900120,600,157,109,5 +19900120,600,157,109,6 +19900120,600,157,109,7 +19900120,600,157,109,8 +19900120,600,157,109,9 +19900120,600,157,109,10 +19900120,600,54,109,1 +19900120,600,54,109,2 +19900120,600,54,109,3 +19900120,600,54,109,4 +19900120,600,54,109,5 +19900120,600,54,109,6 +19900120,600,54,109,7 +19900120,600,54,109,8 +19900120,600,54,109,9 +19900120,600,54,109,10 +19900120,600,135,109,1 +19900120,600,135,109,2 +19900120,600,135,109,3 +19900120,600,135,109,4 +19900120,600,135,109,5 +19900120,600,135,109,6 +19900120,600,135,109,7 +19900120,600,135,109,8 +19900120,600,135,109,9 +19900120,600,135,109,10 +19900120,600,134,109,1 +19900120,600,152,109,1 +19900120,600,131,100,850 +19900120,600,132,100,850 +19900120,600,134,100,1000 +19900120,600,152,100,1000 +19900120,900,131,100,850 +19900120,900,132,100,850 +19900120,900,134,100,1000 +19900120,900,152,100,1000 +19900120,1200,131,100,1000 +19900120,1200,131,100,975 +19900120,1200,131,100,950 +19900120,1200,131,100,925 +19900120,1200,131,100,900 +19900120,1200,131,100,875 +19900120,1200,131,100,825 +19900120,1200,131,100,800 +19900120,1200,131,100,775 +19900120,1200,131,100,750 +19900120,1200,131,100,740 +19900120,1200,131,100,700 +19900120,1200,131,100,650 +19900120,1200,131,100,620 +19900120,1200,131,100,600 +19900120,1200,131,100,550 +19900120,1200,131,100,500 +19900120,1200,131,100,450 +19900120,1200,131,100,400 +19900120,1200,131,100,375 +19900120,1200,131,100,350 +19900120,1200,131,100,300 +19900120,1200,131,100,250 +19900120,1200,131,100,245 +19900120,1200,131,100,225 +19900120,1200,131,100,200 +19900120,1200,131,100,175 +19900120,1200,131,100,150 +19900120,1200,131,100,125 +19900120,1200,131,100,100 +19900120,1200,131,100,70 +19900120,1200,131,100,50 +19900120,1200,131,100,30 +19900120,1200,131,100,20 +19900120,1200,131,100,10 +19900120,1200,131,100,9 +19900120,1200,131,100,7 +19900120,1200,131,100,5 +19900120,1200,131,100,3 +19900120,1200,131,100,2 +19900120,1200,131,100,1 +19900120,1200,131,210,40 +19900120,1200,132,100,1000 +19900120,1200,132,100,975 +19900120,1200,132,100,950 +19900120,1200,132,100,925 +19900120,1200,132,100,900 +19900120,1200,132,100,875 +19900120,1200,132,100,825 +19900120,1200,132,100,800 +19900120,1200,132,100,775 +19900120,1200,132,100,750 +19900120,1200,132,100,740 +19900120,1200,132,100,700 +19900120,1200,132,100,650 +19900120,1200,132,100,620 +19900120,1200,132,100,600 +19900120,1200,132,100,550 +19900120,1200,132,100,500 +19900120,1200,132,100,450 +19900120,1200,132,100,400 +19900120,1200,132,100,375 +19900120,1200,132,100,350 +19900120,1200,132,100,300 +19900120,1200,132,100,250 +19900120,1200,132,100,245 +19900120,1200,132,100,225 +19900120,1200,132,100,200 +19900120,1200,132,100,175 +19900120,1200,132,100,150 +19900120,1200,132,100,125 +19900120,1200,132,100,100 +19900120,1200,132,100,70 +19900120,1200,132,100,50 +19900120,1200,132,100,30 +19900120,1200,132,100,20 +19900120,1200,132,100,10 +19900120,1200,132,100,9 +19900120,1200,132,100,7 +19900120,1200,132,100,5 +19900120,1200,132,100,3 +19900120,1200,132,100,2 +19900120,1200,132,100,1 +19900120,1200,132,210,40 +19900120,1200,130,100,1000 +19900120,1200,130,100,975 +19900120,1200,130,100,950 +19900120,1200,130,100,925 +19900120,1200,130,100,900 +19900120,1200,130,100,875 +19900120,1200,130,100,850 +19900120,1200,130,100,825 +19900120,1200,130,100,800 +19900120,1200,130,100,775 +19900120,1200,130,100,750 +19900120,1200,130,100,740 +19900120,1200,130,100,700 +19900120,1200,130,100,650 +19900120,1200,130,100,620 +19900120,1200,130,100,600 +19900120,1200,130,100,550 +19900120,1200,130,100,500 +19900120,1200,130,100,450 +19900120,1200,130,100,400 +19900120,1200,130,100,375 +19900120,1200,130,100,350 +19900120,1200,130,100,300 +19900120,1200,130,100,250 +19900120,1200,130,100,245 +19900120,1200,130,100,225 +19900120,1200,130,100,200 +19900120,1200,130,100,175 +19900120,1200,130,100,150 +19900120,1200,130,100,125 +19900120,1200,130,100,100 +19900120,1200,130,100,70 +19900120,1200,130,100,50 +19900120,1200,130,100,30 +19900120,1200,130,100,20 +19900120,1200,130,100,10 +19900120,1200,130,100,9 +19900120,1200,130,100,7 +19900120,1200,130,100,5 +19900120,1200,130,100,3 +19900120,1200,130,100,2 +19900120,1200,130,100,1 +19900120,1200,130,210,40 +19900120,1200,129,100,1000 +19900120,1200,129,100,975 +19900120,1200,129,100,950 +19900120,1200,129,100,925 +19900120,1200,129,100,900 +19900120,1200,129,100,875 +19900120,1200,129,100,850 +19900120,1200,129,100,825 +19900120,1200,129,100,800 +19900120,1200,129,100,775 +19900120,1200,129,100,750 +19900120,1200,129,100,740 +19900120,1200,129,100,700 +19900120,1200,129,100,650 +19900120,1200,129,100,620 +19900120,1200,129,100,600 +19900120,1200,129,100,550 +19900120,1200,129,100,500 +19900120,1200,129,100,450 +19900120,1200,129,100,400 +19900120,1200,129,100,375 +19900120,1200,129,100,350 +19900120,1200,129,100,300 +19900120,1200,129,100,250 +19900120,1200,129,100,245 +19900120,1200,129,100,225 +19900120,1200,129,100,200 +19900120,1200,129,100,175 +19900120,1200,129,100,150 +19900120,1200,129,100,125 +19900120,1200,129,100,100 +19900120,1200,129,100,70 +19900120,1200,129,100,50 +19900120,1200,129,100,30 +19900120,1200,129,100,20 +19900120,1200,129,100,10 +19900120,1200,129,100,9 +19900120,1200,129,100,7 +19900120,1200,129,100,5 +19900120,1200,129,100,3 +19900120,1200,129,100,2 +19900120,1200,129,100,1 +19900120,1200,129,210,40 +19900120,1200,157,100,1000 +19900120,1200,157,100,975 +19900120,1200,157,100,950 +19900120,1200,157,100,925 +19900120,1200,157,100,900 +19900120,1200,157,100,875 +19900120,1200,157,100,850 +19900120,1200,157,100,825 +19900120,1200,157,100,800 +19900120,1200,157,100,775 +19900120,1200,157,100,750 +19900120,1200,157,100,740 +19900120,1200,157,100,700 +19900120,1200,157,100,650 +19900120,1200,157,100,620 +19900120,1200,157,100,600 +19900120,1200,157,100,550 +19900120,1200,157,100,500 +19900120,1200,157,100,450 +19900120,1200,157,100,400 +19900120,1200,157,100,375 +19900120,1200,157,100,350 +19900120,1200,157,100,300 +19900120,1200,157,100,250 +19900120,1200,157,100,245 +19900120,1200,157,100,225 +19900120,1200,157,100,200 +19900120,1200,157,100,175 +19900120,1200,157,100,150 +19900120,1200,157,100,125 +19900120,1200,157,100,100 +19900120,1200,157,100,70 +19900120,1200,157,100,50 +19900120,1200,157,100,30 +19900120,1200,157,100,20 +19900120,1200,157,100,10 +19900120,1200,157,100,9 +19900120,1200,157,100,7 +19900120,1200,157,100,5 +19900120,1200,157,100,3 +19900120,1200,157,100,2 +19900120,1200,157,100,1 +19900120,1200,157,210,40 +19900120,1200,135,100,1000 +19900120,1200,135,100,975 +19900120,1200,135,100,950 +19900120,1200,135,100,925 +19900120,1200,135,100,900 +19900120,1200,135,100,875 +19900120,1200,135,100,850 +19900120,1200,135,100,825 +19900120,1200,135,100,800 +19900120,1200,135,100,775 +19900120,1200,135,100,750 +19900120,1200,135,100,740 +19900120,1200,135,100,700 +19900120,1200,135,100,650 +19900120,1200,135,100,620 +19900120,1200,135,100,600 +19900120,1200,135,100,550 +19900120,1200,135,100,500 +19900120,1200,135,100,450 +19900120,1200,135,100,400 +19900120,1200,135,100,375 +19900120,1200,135,100,350 +19900120,1200,135,100,300 +19900120,1200,135,100,250 +19900120,1200,135,100,245 +19900120,1200,135,100,225 +19900120,1200,135,100,200 +19900120,1200,135,100,175 +19900120,1200,135,100,150 +19900120,1200,135,100,125 +19900120,1200,135,100,100 +19900120,1200,135,100,70 +19900120,1200,135,100,50 +19900120,1200,135,100,30 +19900120,1200,135,100,20 +19900120,1200,135,100,10 +19900120,1200,135,100,9 +19900120,1200,135,100,7 +19900120,1200,135,100,5 +19900120,1200,135,100,3 +19900120,1200,135,100,2 +19900120,1200,135,100,1 +19900120,1200,135,210,40 +19900120,1200,138,100,1000 +19900120,1200,138,100,975 +19900120,1200,138,100,950 +19900120,1200,138,100,925 +19900120,1200,138,100,900 +19900120,1200,138,100,875 +19900120,1200,138,100,850 +19900120,1200,138,100,825 +19900120,1200,138,100,800 +19900120,1200,138,100,775 +19900120,1200,138,100,750 +19900120,1200,138,100,740 +19900120,1200,138,100,700 +19900120,1200,138,100,650 +19900120,1200,138,100,620 +19900120,1200,138,100,600 +19900120,1200,138,100,550 +19900120,1200,138,100,500 +19900120,1200,138,100,450 +19900120,1200,138,100,400 +19900120,1200,138,100,375 +19900120,1200,138,100,350 +19900120,1200,138,100,300 +19900120,1200,138,100,250 +19900120,1200,138,100,245 +19900120,1200,138,100,225 +19900120,1200,138,100,200 +19900120,1200,138,100,175 +19900120,1200,138,100,150 +19900120,1200,138,100,125 +19900120,1200,138,100,100 +19900120,1200,138,100,70 +19900120,1200,138,100,50 +19900120,1200,138,100,30 +19900120,1200,138,100,20 +19900120,1200,138,100,10 +19900120,1200,138,100,9 +19900120,1200,138,100,7 +19900120,1200,138,100,5 +19900120,1200,138,100,3 +19900120,1200,138,100,2 +19900120,1200,138,100,1 +19900120,1200,138,210,40 +19900120,1200,131,109,1 +19900120,1200,131,109,2 +19900120,1200,131,109,3 +19900120,1200,131,109,4 +19900120,1200,131,109,5 +19900120,1200,131,109,6 +19900120,1200,131,109,7 +19900120,1200,131,109,8 +19900120,1200,131,109,9 +19900120,1200,131,109,10 +19900120,1200,132,109,1 +19900120,1200,132,109,2 +19900120,1200,132,109,3 +19900120,1200,132,109,4 +19900120,1200,132,109,5 +19900120,1200,132,109,6 +19900120,1200,132,109,7 +19900120,1200,132,109,8 +19900120,1200,132,109,9 +19900120,1200,132,109,10 +19900120,1200,130,109,1 +19900120,1200,130,109,2 +19900120,1200,130,109,3 +19900120,1200,130,109,4 +19900120,1200,130,109,5 +19900120,1200,130,109,6 +19900120,1200,130,109,7 +19900120,1200,130,109,8 +19900120,1200,130,109,9 +19900120,1200,130,109,10 +19900120,1200,157,109,1 +19900120,1200,157,109,2 +19900120,1200,157,109,3 +19900120,1200,157,109,4 +19900120,1200,157,109,5 +19900120,1200,157,109,6 +19900120,1200,157,109,7 +19900120,1200,157,109,8 +19900120,1200,157,109,9 +19900120,1200,157,109,10 +19900120,1200,54,109,1 +19900120,1200,54,109,2 +19900120,1200,54,109,3 +19900120,1200,54,109,4 +19900120,1200,54,109,5 +19900120,1200,54,109,6 +19900120,1200,54,109,7 +19900120,1200,54,109,8 +19900120,1200,54,109,9 +19900120,1200,54,109,10 +19900120,1200,135,109,1 +19900120,1200,135,109,2 +19900120,1200,135,109,3 +19900120,1200,135,109,4 +19900120,1200,135,109,5 +19900120,1200,135,109,6 +19900120,1200,135,109,7 +19900120,1200,135,109,8 +19900120,1200,135,109,9 +19900120,1200,135,109,10 +19900120,1200,134,109,1 +19900120,1200,152,109,1 +19900120,1200,131,100,850 +19900120,1200,132,100,850 +19900120,1200,134,100,1000 +19900120,1200,152,100,1000 +19900120,1500,131,100,850 +19900120,1500,132,100,850 +19900120,1500,134,100,1000 +19900120,1500,152,100,1000 +19900120,1800,131,100,1000 +19900120,1800,131,100,975 +19900120,1800,131,100,950 +19900120,1800,131,100,925 +19900120,1800,131,100,900 +19900120,1800,131,100,875 +19900120,1800,131,100,825 +19900120,1800,131,100,800 +19900120,1800,131,100,775 +19900120,1800,131,100,750 +19900120,1800,131,100,740 +19900120,1800,131,100,700 +19900120,1800,131,100,650 +19900120,1800,131,100,620 +19900120,1800,131,100,600 +19900120,1800,131,100,550 +19900120,1800,131,100,500 +19900120,1800,131,100,450 +19900120,1800,131,100,400 +19900120,1800,131,100,375 +19900120,1800,131,100,350 +19900120,1800,131,100,300 +19900120,1800,131,100,250 +19900120,1800,131,100,245 +19900120,1800,131,100,225 +19900120,1800,131,100,200 +19900120,1800,131,100,175 +19900120,1800,131,100,150 +19900120,1800,131,100,125 +19900120,1800,131,100,100 +19900120,1800,131,100,70 +19900120,1800,131,100,50 +19900120,1800,131,100,30 +19900120,1800,131,100,20 +19900120,1800,131,100,10 +19900120,1800,131,100,9 +19900120,1800,131,100,7 +19900120,1800,131,100,5 +19900120,1800,131,100,3 +19900120,1800,131,100,2 +19900120,1800,131,100,1 +19900120,1800,131,210,40 +19900120,1800,132,100,1000 +19900120,1800,132,100,975 +19900120,1800,132,100,950 +19900120,1800,132,100,925 +19900120,1800,132,100,900 +19900120,1800,132,100,875 +19900120,1800,132,100,825 +19900120,1800,132,100,800 +19900120,1800,132,100,775 +19900120,1800,132,100,750 +19900120,1800,132,100,740 +19900120,1800,132,100,700 +19900120,1800,132,100,650 +19900120,1800,132,100,620 +19900120,1800,132,100,600 +19900120,1800,132,100,550 +19900120,1800,132,100,500 +19900120,1800,132,100,450 +19900120,1800,132,100,400 +19900120,1800,132,100,375 +19900120,1800,132,100,350 +19900120,1800,132,100,300 +19900120,1800,132,100,250 +19900120,1800,132,100,245 +19900120,1800,132,100,225 +19900120,1800,132,100,200 +19900120,1800,132,100,175 +19900120,1800,132,100,150 +19900120,1800,132,100,125 +19900120,1800,132,100,100 +19900120,1800,132,100,70 +19900120,1800,132,100,50 +19900120,1800,132,100,30 +19900120,1800,132,100,20 +19900120,1800,132,100,10 +19900120,1800,132,100,9 +19900120,1800,132,100,7 +19900120,1800,132,100,5 +19900120,1800,132,100,3 +19900120,1800,132,100,2 +19900120,1800,132,100,1 +19900120,1800,132,210,40 +19900120,1800,130,100,1000 +19900120,1800,130,100,975 +19900120,1800,130,100,950 +19900120,1800,130,100,925 +19900120,1800,130,100,900 +19900120,1800,130,100,875 +19900120,1800,130,100,850 +19900120,1800,130,100,825 +19900120,1800,130,100,800 +19900120,1800,130,100,775 +19900120,1800,130,100,750 +19900120,1800,130,100,740 +19900120,1800,130,100,700 +19900120,1800,130,100,650 +19900120,1800,130,100,620 +19900120,1800,130,100,600 +19900120,1800,130,100,550 +19900120,1800,130,100,500 +19900120,1800,130,100,450 +19900120,1800,130,100,400 +19900120,1800,130,100,375 +19900120,1800,130,100,350 +19900120,1800,130,100,300 +19900120,1800,130,100,250 +19900120,1800,130,100,245 +19900120,1800,130,100,225 +19900120,1800,130,100,200 +19900120,1800,130,100,175 +19900120,1800,130,100,150 +19900120,1800,130,100,125 +19900120,1800,130,100,100 +19900120,1800,130,100,70 +19900120,1800,130,100,50 +19900120,1800,130,100,30 +19900120,1800,130,100,20 +19900120,1800,130,100,10 +19900120,1800,130,100,9 +19900120,1800,130,100,7 +19900120,1800,130,100,5 +19900120,1800,130,100,3 +19900120,1800,130,100,2 +19900120,1800,130,100,1 +19900120,1800,130,210,40 +19900120,1800,129,100,1000 +19900120,1800,129,100,975 +19900120,1800,129,100,950 +19900120,1800,129,100,925 +19900120,1800,129,100,900 +19900120,1800,129,100,875 +19900120,1800,129,100,850 +19900120,1800,129,100,825 +19900120,1800,129,100,800 +19900120,1800,129,100,775 +19900120,1800,129,100,750 +19900120,1800,129,100,740 +19900120,1800,129,100,700 +19900120,1800,129,100,650 +19900120,1800,129,100,620 +19900120,1800,129,100,600 +19900120,1800,129,100,550 +19900120,1800,129,100,500 +19900120,1800,129,100,450 +19900120,1800,129,100,400 +19900120,1800,129,100,375 +19900120,1800,129,100,350 +19900120,1800,129,100,300 +19900120,1800,129,100,250 +19900120,1800,129,100,245 +19900120,1800,129,100,225 +19900120,1800,129,100,200 +19900120,1800,129,100,175 +19900120,1800,129,100,150 +19900120,1800,129,100,125 +19900120,1800,129,100,100 +19900120,1800,129,100,70 +19900120,1800,129,100,50 +19900120,1800,129,100,30 +19900120,1800,129,100,20 +19900120,1800,129,100,10 +19900120,1800,129,100,9 +19900120,1800,129,100,7 +19900120,1800,129,100,5 +19900120,1800,129,100,3 +19900120,1800,129,100,2 +19900120,1800,129,100,1 +19900120,1800,129,210,40 +19900120,1800,157,100,1000 +19900120,1800,157,100,975 +19900120,1800,157,100,950 +19900120,1800,157,100,925 +19900120,1800,157,100,900 +19900120,1800,157,100,875 +19900120,1800,157,100,850 +19900120,1800,157,100,825 +19900120,1800,157,100,800 +19900120,1800,157,100,775 +19900120,1800,157,100,750 +19900120,1800,157,100,740 +19900120,1800,157,100,700 +19900120,1800,157,100,650 +19900120,1800,157,100,620 +19900120,1800,157,100,600 +19900120,1800,157,100,550 +19900120,1800,157,100,500 +19900120,1800,157,100,450 +19900120,1800,157,100,400 +19900120,1800,157,100,375 +19900120,1800,157,100,350 +19900120,1800,157,100,300 +19900120,1800,157,100,250 +19900120,1800,157,100,245 +19900120,1800,157,100,225 +19900120,1800,157,100,200 +19900120,1800,157,100,175 +19900120,1800,157,100,150 +19900120,1800,157,100,125 +19900120,1800,157,100,100 +19900120,1800,157,100,70 +19900120,1800,157,100,50 +19900120,1800,157,100,30 +19900120,1800,157,100,20 +19900120,1800,157,100,10 +19900120,1800,157,100,9 +19900120,1800,157,100,7 +19900120,1800,157,100,5 +19900120,1800,157,100,3 +19900120,1800,157,100,2 +19900120,1800,157,100,1 +19900120,1800,157,210,40 +19900120,1800,135,100,1000 +19900120,1800,135,100,975 +19900120,1800,135,100,950 +19900120,1800,135,100,925 +19900120,1800,135,100,900 +19900120,1800,135,100,875 +19900120,1800,135,100,850 +19900120,1800,135,100,825 +19900120,1800,135,100,800 +19900120,1800,135,100,775 +19900120,1800,135,100,750 +19900120,1800,135,100,740 +19900120,1800,135,100,700 +19900120,1800,135,100,650 +19900120,1800,135,100,620 +19900120,1800,135,100,600 +19900120,1800,135,100,550 +19900120,1800,135,100,500 +19900120,1800,135,100,450 +19900120,1800,135,100,400 +19900120,1800,135,100,375 +19900120,1800,135,100,350 +19900120,1800,135,100,300 +19900120,1800,135,100,250 +19900120,1800,135,100,245 +19900120,1800,135,100,225 +19900120,1800,135,100,200 +19900120,1800,135,100,175 +19900120,1800,135,100,150 +19900120,1800,135,100,125 +19900120,1800,135,100,100 +19900120,1800,135,100,70 +19900120,1800,135,100,50 +19900120,1800,135,100,30 +19900120,1800,135,100,20 +19900120,1800,135,100,10 +19900120,1800,135,100,9 +19900120,1800,135,100,7 +19900120,1800,135,100,5 +19900120,1800,135,100,3 +19900120,1800,135,100,2 +19900120,1800,135,100,1 +19900120,1800,135,210,40 +19900120,1800,138,100,1000 +19900120,1800,138,100,975 +19900120,1800,138,100,950 +19900120,1800,138,100,925 +19900120,1800,138,100,900 +19900120,1800,138,100,875 +19900120,1800,138,100,850 +19900120,1800,138,100,825 +19900120,1800,138,100,800 +19900120,1800,138,100,775 +19900120,1800,138,100,750 +19900120,1800,138,100,740 +19900120,1800,138,100,700 +19900120,1800,138,100,650 +19900120,1800,138,100,620 +19900120,1800,138,100,600 +19900120,1800,138,100,550 +19900120,1800,138,100,500 +19900120,1800,138,100,450 +19900120,1800,138,100,400 +19900120,1800,138,100,375 +19900120,1800,138,100,350 +19900120,1800,138,100,300 +19900120,1800,138,100,250 +19900120,1800,138,100,245 +19900120,1800,138,100,225 +19900120,1800,138,100,200 +19900120,1800,138,100,175 +19900120,1800,138,100,150 +19900120,1800,138,100,125 +19900120,1800,138,100,100 +19900120,1800,138,100,70 +19900120,1800,138,100,50 +19900120,1800,138,100,30 +19900120,1800,138,100,20 +19900120,1800,138,100,10 +19900120,1800,138,100,9 +19900120,1800,138,100,7 +19900120,1800,138,100,5 +19900120,1800,138,100,3 +19900120,1800,138,100,2 +19900120,1800,138,100,1 +19900120,1800,138,210,40 +19900120,1800,131,109,1 +19900120,1800,131,109,2 +19900120,1800,131,109,3 +19900120,1800,131,109,4 +19900120,1800,131,109,5 +19900120,1800,131,109,6 +19900120,1800,131,109,7 +19900120,1800,131,109,8 +19900120,1800,131,109,9 +19900120,1800,131,109,10 +19900120,1800,132,109,1 +19900120,1800,132,109,2 +19900120,1800,132,109,3 +19900120,1800,132,109,4 +19900120,1800,132,109,5 +19900120,1800,132,109,6 +19900120,1800,132,109,7 +19900120,1800,132,109,8 +19900120,1800,132,109,9 +19900120,1800,132,109,10 +19900120,1800,130,109,1 +19900120,1800,130,109,2 +19900120,1800,130,109,3 +19900120,1800,130,109,4 +19900120,1800,130,109,5 +19900120,1800,130,109,6 +19900120,1800,130,109,7 +19900120,1800,130,109,8 +19900120,1800,130,109,9 +19900120,1800,130,109,10 +19900120,1800,157,109,1 +19900120,1800,157,109,2 +19900120,1800,157,109,3 +19900120,1800,157,109,4 +19900120,1800,157,109,5 +19900120,1800,157,109,6 +19900120,1800,157,109,7 +19900120,1800,157,109,8 +19900120,1800,157,109,9 +19900120,1800,157,109,10 +19900120,1800,54,109,1 +19900120,1800,54,109,2 +19900120,1800,54,109,3 +19900120,1800,54,109,4 +19900120,1800,54,109,5 +19900120,1800,54,109,6 +19900120,1800,54,109,7 +19900120,1800,54,109,8 +19900120,1800,54,109,9 +19900120,1800,54,109,10 +19900120,1800,135,109,1 +19900120,1800,135,109,2 +19900120,1800,135,109,3 +19900120,1800,135,109,4 +19900120,1800,135,109,5 +19900120,1800,135,109,6 +19900120,1800,135,109,7 +19900120,1800,135,109,8 +19900120,1800,135,109,9 +19900120,1800,135,109,10 +19900120,1800,134,109,1 +19900120,1800,152,109,1 +19900120,1800,131,100,850 +19900120,1800,132,100,850 +19900120,1800,134,100,1000 +19900120,1800,152,100,1000 +19900120,2100,131,100,850 +19900120,2100,132,100,850 +19900120,2100,134,100,1000 +19900120,2100,152,100,1000 +19900121,0,131,100,1000 +19900121,0,131,100,975 +19900121,0,131,100,950 +19900121,0,131,100,925 +19900121,0,131,100,900 +19900121,0,131,100,875 +19900121,0,131,100,825 +19900121,0,131,100,800 +19900121,0,131,100,775 +19900121,0,131,100,750 +19900121,0,131,100,740 +19900121,0,131,100,700 +19900121,0,131,100,650 +19900121,0,131,100,620 +19900121,0,131,100,600 +19900121,0,131,100,550 +19900121,0,131,100,500 +19900121,0,131,100,450 +19900121,0,131,100,400 +19900121,0,131,100,375 +19900121,0,131,100,350 +19900121,0,131,100,300 +19900121,0,131,100,250 +19900121,0,131,100,245 +19900121,0,131,100,225 +19900121,0,131,100,200 +19900121,0,131,100,175 +19900121,0,131,100,150 +19900121,0,131,100,125 +19900121,0,131,100,100 +19900121,0,131,100,70 +19900121,0,131,100,50 +19900121,0,131,100,30 +19900121,0,131,100,20 +19900121,0,131,100,10 +19900121,0,131,100,9 +19900121,0,131,100,7 +19900121,0,131,100,5 +19900121,0,131,100,3 +19900121,0,131,100,2 +19900121,0,131,100,1 +19900121,0,131,210,40 +19900121,0,132,100,1000 +19900121,0,132,100,975 +19900121,0,132,100,950 +19900121,0,132,100,925 +19900121,0,132,100,900 +19900121,0,132,100,875 +19900121,0,132,100,825 +19900121,0,132,100,800 +19900121,0,132,100,775 +19900121,0,132,100,750 +19900121,0,132,100,740 +19900121,0,132,100,700 +19900121,0,132,100,650 +19900121,0,132,100,620 +19900121,0,132,100,600 +19900121,0,132,100,550 +19900121,0,132,100,500 +19900121,0,132,100,450 +19900121,0,132,100,400 +19900121,0,132,100,375 +19900121,0,132,100,350 +19900121,0,132,100,300 +19900121,0,132,100,250 +19900121,0,132,100,245 +19900121,0,132,100,225 +19900121,0,132,100,200 +19900121,0,132,100,175 +19900121,0,132,100,150 +19900121,0,132,100,125 +19900121,0,132,100,100 +19900121,0,132,100,70 +19900121,0,132,100,50 +19900121,0,132,100,30 +19900121,0,132,100,20 +19900121,0,132,100,10 +19900121,0,132,100,9 +19900121,0,132,100,7 +19900121,0,132,100,5 +19900121,0,132,100,3 +19900121,0,132,100,2 +19900121,0,132,100,1 +19900121,0,132,210,40 +19900121,0,130,100,1000 +19900121,0,130,100,975 +19900121,0,130,100,950 +19900121,0,130,100,925 +19900121,0,130,100,900 +19900121,0,130,100,875 +19900121,0,130,100,850 +19900121,0,130,100,825 +19900121,0,130,100,800 +19900121,0,130,100,775 +19900121,0,130,100,750 +19900121,0,130,100,740 +19900121,0,130,100,700 +19900121,0,130,100,650 +19900121,0,130,100,620 +19900121,0,130,100,600 +19900121,0,130,100,550 +19900121,0,130,100,500 +19900121,0,130,100,450 +19900121,0,130,100,400 +19900121,0,130,100,375 +19900121,0,130,100,350 +19900121,0,130,100,300 +19900121,0,130,100,250 +19900121,0,130,100,245 +19900121,0,130,100,225 +19900121,0,130,100,200 +19900121,0,130,100,175 +19900121,0,130,100,150 +19900121,0,130,100,125 +19900121,0,130,100,100 +19900121,0,130,100,70 +19900121,0,130,100,50 +19900121,0,130,100,30 +19900121,0,130,100,20 +19900121,0,130,100,10 +19900121,0,130,100,9 +19900121,0,130,100,7 +19900121,0,130,100,5 +19900121,0,130,100,3 +19900121,0,130,100,2 +19900121,0,130,100,1 +19900121,0,130,210,40 +19900121,0,129,100,1000 +19900121,0,129,100,975 +19900121,0,129,100,950 +19900121,0,129,100,925 +19900121,0,129,100,900 +19900121,0,129,100,875 +19900121,0,129,100,850 +19900121,0,129,100,825 +19900121,0,129,100,800 +19900121,0,129,100,775 +19900121,0,129,100,750 +19900121,0,129,100,740 +19900121,0,129,100,700 +19900121,0,129,100,650 +19900121,0,129,100,620 +19900121,0,129,100,600 +19900121,0,129,100,550 +19900121,0,129,100,500 +19900121,0,129,100,450 +19900121,0,129,100,400 +19900121,0,129,100,375 +19900121,0,129,100,350 +19900121,0,129,100,300 +19900121,0,129,100,250 +19900121,0,129,100,245 +19900121,0,129,100,225 +19900121,0,129,100,200 +19900121,0,129,100,175 +19900121,0,129,100,150 +19900121,0,129,100,125 +19900121,0,129,100,100 +19900121,0,129,100,70 +19900121,0,129,100,50 +19900121,0,129,100,30 +19900121,0,129,100,20 +19900121,0,129,100,10 +19900121,0,129,100,9 +19900121,0,129,100,7 +19900121,0,129,100,5 +19900121,0,129,100,3 +19900121,0,129,100,2 +19900121,0,129,100,1 +19900121,0,129,210,40 +19900121,0,157,100,1000 +19900121,0,157,100,975 +19900121,0,157,100,950 +19900121,0,157,100,925 +19900121,0,157,100,900 +19900121,0,157,100,875 +19900121,0,157,100,850 +19900121,0,157,100,825 +19900121,0,157,100,800 +19900121,0,157,100,775 +19900121,0,157,100,750 +19900121,0,157,100,740 +19900121,0,157,100,700 +19900121,0,157,100,650 +19900121,0,157,100,620 +19900121,0,157,100,600 +19900121,0,157,100,550 +19900121,0,157,100,500 +19900121,0,157,100,450 +19900121,0,157,100,400 +19900121,0,157,100,375 +19900121,0,157,100,350 +19900121,0,157,100,300 +19900121,0,157,100,250 +19900121,0,157,100,245 +19900121,0,157,100,225 +19900121,0,157,100,200 +19900121,0,157,100,175 +19900121,0,157,100,150 +19900121,0,157,100,125 +19900121,0,157,100,100 +19900121,0,157,100,70 +19900121,0,157,100,50 +19900121,0,157,100,30 +19900121,0,157,100,20 +19900121,0,157,100,10 +19900121,0,157,100,9 +19900121,0,157,100,7 +19900121,0,157,100,5 +19900121,0,157,100,3 +19900121,0,157,100,2 +19900121,0,157,100,1 +19900121,0,157,210,40 +19900121,0,135,100,1000 +19900121,0,135,100,975 +19900121,0,135,100,950 +19900121,0,135,100,925 +19900121,0,135,100,900 +19900121,0,135,100,875 +19900121,0,135,100,850 +19900121,0,135,100,825 +19900121,0,135,100,800 +19900121,0,135,100,775 +19900121,0,135,100,750 +19900121,0,135,100,740 +19900121,0,135,100,700 +19900121,0,135,100,650 +19900121,0,135,100,620 +19900121,0,135,100,600 +19900121,0,135,100,550 +19900121,0,135,100,500 +19900121,0,135,100,450 +19900121,0,135,100,400 +19900121,0,135,100,375 +19900121,0,135,100,350 +19900121,0,135,100,300 +19900121,0,135,100,250 +19900121,0,135,100,245 +19900121,0,135,100,225 +19900121,0,135,100,200 +19900121,0,135,100,175 +19900121,0,135,100,150 +19900121,0,135,100,125 +19900121,0,135,100,100 +19900121,0,135,100,70 +19900121,0,135,100,50 +19900121,0,135,100,30 +19900121,0,135,100,20 +19900121,0,135,100,10 +19900121,0,135,100,9 +19900121,0,135,100,7 +19900121,0,135,100,5 +19900121,0,135,100,3 +19900121,0,135,100,2 +19900121,0,135,100,1 +19900121,0,135,210,40 +19900121,0,138,100,1000 +19900121,0,138,100,975 +19900121,0,138,100,950 +19900121,0,138,100,925 +19900121,0,138,100,900 +19900121,0,138,100,875 +19900121,0,138,100,850 +19900121,0,138,100,825 +19900121,0,138,100,800 +19900121,0,138,100,775 +19900121,0,138,100,750 +19900121,0,138,100,740 +19900121,0,138,100,700 +19900121,0,138,100,650 +19900121,0,138,100,620 +19900121,0,138,100,600 +19900121,0,138,100,550 +19900121,0,138,100,500 +19900121,0,138,100,450 +19900121,0,138,100,400 +19900121,0,138,100,375 +19900121,0,138,100,350 +19900121,0,138,100,300 +19900121,0,138,100,250 +19900121,0,138,100,245 +19900121,0,138,100,225 +19900121,0,138,100,200 +19900121,0,138,100,175 +19900121,0,138,100,150 +19900121,0,138,100,125 +19900121,0,138,100,100 +19900121,0,138,100,70 +19900121,0,138,100,50 +19900121,0,138,100,30 +19900121,0,138,100,20 +19900121,0,138,100,10 +19900121,0,138,100,9 +19900121,0,138,100,7 +19900121,0,138,100,5 +19900121,0,138,100,3 +19900121,0,138,100,2 +19900121,0,138,100,1 +19900121,0,138,210,40 +19900121,0,131,109,1 +19900121,0,131,109,2 +19900121,0,131,109,3 +19900121,0,131,109,4 +19900121,0,131,109,5 +19900121,0,131,109,6 +19900121,0,131,109,7 +19900121,0,131,109,8 +19900121,0,131,109,9 +19900121,0,131,109,10 +19900121,0,132,109,1 +19900121,0,132,109,2 +19900121,0,132,109,3 +19900121,0,132,109,4 +19900121,0,132,109,5 +19900121,0,132,109,6 +19900121,0,132,109,7 +19900121,0,132,109,8 +19900121,0,132,109,9 +19900121,0,132,109,10 +19900121,0,130,109,1 +19900121,0,130,109,2 +19900121,0,130,109,3 +19900121,0,130,109,4 +19900121,0,130,109,5 +19900121,0,130,109,6 +19900121,0,130,109,7 +19900121,0,130,109,8 +19900121,0,130,109,9 +19900121,0,130,109,10 +19900121,0,157,109,1 +19900121,0,157,109,2 +19900121,0,157,109,3 +19900121,0,157,109,4 +19900121,0,157,109,5 +19900121,0,157,109,6 +19900121,0,157,109,7 +19900121,0,157,109,8 +19900121,0,157,109,9 +19900121,0,157,109,10 +19900121,0,54,109,1 +19900121,0,54,109,2 +19900121,0,54,109,3 +19900121,0,54,109,4 +19900121,0,54,109,5 +19900121,0,54,109,6 +19900121,0,54,109,7 +19900121,0,54,109,8 +19900121,0,54,109,9 +19900121,0,54,109,10 +19900121,0,135,109,1 +19900121,0,135,109,2 +19900121,0,135,109,3 +19900121,0,135,109,4 +19900121,0,135,109,5 +19900121,0,135,109,6 +19900121,0,135,109,7 +19900121,0,135,109,8 +19900121,0,135,109,9 +19900121,0,135,109,10 +19900121,0,134,109,1 +19900121,0,152,109,1 +19900121,0,131,100,850 +19900121,0,132,100,850 +19900121,0,134,100,1000 +19900121,0,152,100,1000 +19900121,300,131,100,850 +19900121,300,132,100,850 +19900121,300,134,100,1000 +19900121,300,152,100,1000 +19900121,600,131,100,1000 +19900121,600,131,100,975 +19900121,600,131,100,950 +19900121,600,131,100,925 +19900121,600,131,100,900 +19900121,600,131,100,875 +19900121,600,131,100,825 +19900121,600,131,100,800 +19900121,600,131,100,775 +19900121,600,131,100,750 +19900121,600,131,100,740 +19900121,600,131,100,700 +19900121,600,131,100,650 +19900121,600,131,100,620 +19900121,600,131,100,600 +19900121,600,131,100,550 +19900121,600,131,100,500 +19900121,600,131,100,450 +19900121,600,131,100,400 +19900121,600,131,100,375 +19900121,600,131,100,350 +19900121,600,131,100,300 +19900121,600,131,100,250 +19900121,600,131,100,245 +19900121,600,131,100,225 +19900121,600,131,100,200 +19900121,600,131,100,175 +19900121,600,131,100,150 +19900121,600,131,100,125 +19900121,600,131,100,100 +19900121,600,131,100,70 +19900121,600,131,100,50 +19900121,600,131,100,30 +19900121,600,131,100,20 +19900121,600,131,100,10 +19900121,600,131,100,9 +19900121,600,131,100,7 +19900121,600,131,100,5 +19900121,600,131,100,3 +19900121,600,131,100,2 +19900121,600,131,100,1 +19900121,600,131,210,40 +19900121,600,132,100,1000 +19900121,600,132,100,975 +19900121,600,132,100,950 +19900121,600,132,100,925 +19900121,600,132,100,900 +19900121,600,132,100,875 +19900121,600,132,100,825 +19900121,600,132,100,800 +19900121,600,132,100,775 +19900121,600,132,100,750 +19900121,600,132,100,740 +19900121,600,132,100,700 +19900121,600,132,100,650 +19900121,600,132,100,620 +19900121,600,132,100,600 +19900121,600,132,100,550 +19900121,600,132,100,500 +19900121,600,132,100,450 +19900121,600,132,100,400 +19900121,600,132,100,375 +19900121,600,132,100,350 +19900121,600,132,100,300 +19900121,600,132,100,250 +19900121,600,132,100,245 +19900121,600,132,100,225 +19900121,600,132,100,200 +19900121,600,132,100,175 +19900121,600,132,100,150 +19900121,600,132,100,125 +19900121,600,132,100,100 +19900121,600,132,100,70 +19900121,600,132,100,50 +19900121,600,132,100,30 +19900121,600,132,100,20 +19900121,600,132,100,10 +19900121,600,132,100,9 +19900121,600,132,100,7 +19900121,600,132,100,5 +19900121,600,132,100,3 +19900121,600,132,100,2 +19900121,600,132,100,1 +19900121,600,132,210,40 +19900121,600,130,100,1000 +19900121,600,130,100,975 +19900121,600,130,100,950 +19900121,600,130,100,925 +19900121,600,130,100,900 +19900121,600,130,100,875 +19900121,600,130,100,850 +19900121,600,130,100,825 +19900121,600,130,100,800 +19900121,600,130,100,775 +19900121,600,130,100,750 +19900121,600,130,100,740 +19900121,600,130,100,700 +19900121,600,130,100,650 +19900121,600,130,100,620 +19900121,600,130,100,600 +19900121,600,130,100,550 +19900121,600,130,100,500 +19900121,600,130,100,450 +19900121,600,130,100,400 +19900121,600,130,100,375 +19900121,600,130,100,350 +19900121,600,130,100,300 +19900121,600,130,100,250 +19900121,600,130,100,245 +19900121,600,130,100,225 +19900121,600,130,100,200 +19900121,600,130,100,175 +19900121,600,130,100,150 +19900121,600,130,100,125 +19900121,600,130,100,100 +19900121,600,130,100,70 +19900121,600,130,100,50 +19900121,600,130,100,30 +19900121,600,130,100,20 +19900121,600,130,100,10 +19900121,600,130,100,9 +19900121,600,130,100,7 +19900121,600,130,100,5 +19900121,600,130,100,3 +19900121,600,130,100,2 +19900121,600,130,100,1 +19900121,600,130,210,40 +19900121,600,129,100,1000 +19900121,600,129,100,975 +19900121,600,129,100,950 +19900121,600,129,100,925 +19900121,600,129,100,900 +19900121,600,129,100,875 +19900121,600,129,100,850 +19900121,600,129,100,825 +19900121,600,129,100,800 +19900121,600,129,100,775 +19900121,600,129,100,750 +19900121,600,129,100,740 +19900121,600,129,100,700 +19900121,600,129,100,650 +19900121,600,129,100,620 +19900121,600,129,100,600 +19900121,600,129,100,550 +19900121,600,129,100,500 +19900121,600,129,100,450 +19900121,600,129,100,400 +19900121,600,129,100,375 +19900121,600,129,100,350 +19900121,600,129,100,300 +19900121,600,129,100,250 +19900121,600,129,100,245 +19900121,600,129,100,225 +19900121,600,129,100,200 +19900121,600,129,100,175 +19900121,600,129,100,150 +19900121,600,129,100,125 +19900121,600,129,100,100 +19900121,600,129,100,70 +19900121,600,129,100,50 +19900121,600,129,100,30 +19900121,600,129,100,20 +19900121,600,129,100,10 +19900121,600,129,100,9 +19900121,600,129,100,7 +19900121,600,129,100,5 +19900121,600,129,100,3 +19900121,600,129,100,2 +19900121,600,129,100,1 +19900121,600,129,210,40 +19900121,600,157,100,1000 +19900121,600,157,100,975 +19900121,600,157,100,950 +19900121,600,157,100,925 +19900121,600,157,100,900 +19900121,600,157,100,875 +19900121,600,157,100,850 +19900121,600,157,100,825 +19900121,600,157,100,800 +19900121,600,157,100,775 +19900121,600,157,100,750 +19900121,600,157,100,740 +19900121,600,157,100,700 +19900121,600,157,100,650 +19900121,600,157,100,620 +19900121,600,157,100,600 +19900121,600,157,100,550 +19900121,600,157,100,500 +19900121,600,157,100,450 +19900121,600,157,100,400 +19900121,600,157,100,375 +19900121,600,157,100,350 +19900121,600,157,100,300 +19900121,600,157,100,250 +19900121,600,157,100,245 +19900121,600,157,100,225 +19900121,600,157,100,200 +19900121,600,157,100,175 +19900121,600,157,100,150 +19900121,600,157,100,125 +19900121,600,157,100,100 +19900121,600,157,100,70 +19900121,600,157,100,50 +19900121,600,157,100,30 +19900121,600,157,100,20 +19900121,600,157,100,10 +19900121,600,157,100,9 +19900121,600,157,100,7 +19900121,600,157,100,5 +19900121,600,157,100,3 +19900121,600,157,100,2 +19900121,600,157,100,1 +19900121,600,157,210,40 +19900121,600,135,100,1000 +19900121,600,135,100,975 +19900121,600,135,100,950 +19900121,600,135,100,925 +19900121,600,135,100,900 +19900121,600,135,100,875 +19900121,600,135,100,850 +19900121,600,135,100,825 +19900121,600,135,100,800 +19900121,600,135,100,775 +19900121,600,135,100,750 +19900121,600,135,100,740 +19900121,600,135,100,700 +19900121,600,135,100,650 +19900121,600,135,100,620 +19900121,600,135,100,600 +19900121,600,135,100,550 +19900121,600,135,100,500 +19900121,600,135,100,450 +19900121,600,135,100,400 +19900121,600,135,100,375 +19900121,600,135,100,350 +19900121,600,135,100,300 +19900121,600,135,100,250 +19900121,600,135,100,245 +19900121,600,135,100,225 +19900121,600,135,100,200 +19900121,600,135,100,175 +19900121,600,135,100,150 +19900121,600,135,100,125 +19900121,600,135,100,100 +19900121,600,135,100,70 +19900121,600,135,100,50 +19900121,600,135,100,30 +19900121,600,135,100,20 +19900121,600,135,100,10 +19900121,600,135,100,9 +19900121,600,135,100,7 +19900121,600,135,100,5 +19900121,600,135,100,3 +19900121,600,135,100,2 +19900121,600,135,100,1 +19900121,600,135,210,40 +19900121,600,138,100,1000 +19900121,600,138,100,975 +19900121,600,138,100,950 +19900121,600,138,100,925 +19900121,600,138,100,900 +19900121,600,138,100,875 +19900121,600,138,100,850 +19900121,600,138,100,825 +19900121,600,138,100,800 +19900121,600,138,100,775 +19900121,600,138,100,750 +19900121,600,138,100,740 +19900121,600,138,100,700 +19900121,600,138,100,650 +19900121,600,138,100,620 +19900121,600,138,100,600 +19900121,600,138,100,550 +19900121,600,138,100,500 +19900121,600,138,100,450 +19900121,600,138,100,400 +19900121,600,138,100,375 +19900121,600,138,100,350 +19900121,600,138,100,300 +19900121,600,138,100,250 +19900121,600,138,100,245 +19900121,600,138,100,225 +19900121,600,138,100,200 +19900121,600,138,100,175 +19900121,600,138,100,150 +19900121,600,138,100,125 +19900121,600,138,100,100 +19900121,600,138,100,70 +19900121,600,138,100,50 +19900121,600,138,100,30 +19900121,600,138,100,20 +19900121,600,138,100,10 +19900121,600,138,100,9 +19900121,600,138,100,7 +19900121,600,138,100,5 +19900121,600,138,100,3 +19900121,600,138,100,2 +19900121,600,138,100,1 +19900121,600,138,210,40 +19900121,600,131,109,1 +19900121,600,131,109,2 +19900121,600,131,109,3 +19900121,600,131,109,4 +19900121,600,131,109,5 +19900121,600,131,109,6 +19900121,600,131,109,7 +19900121,600,131,109,8 +19900121,600,131,109,9 +19900121,600,131,109,10 +19900121,600,132,109,1 +19900121,600,132,109,2 +19900121,600,132,109,3 +19900121,600,132,109,4 +19900121,600,132,109,5 +19900121,600,132,109,6 +19900121,600,132,109,7 +19900121,600,132,109,8 +19900121,600,132,109,9 +19900121,600,132,109,10 +19900121,600,130,109,1 +19900121,600,130,109,2 +19900121,600,130,109,3 +19900121,600,130,109,4 +19900121,600,130,109,5 +19900121,600,130,109,6 +19900121,600,130,109,7 +19900121,600,130,109,8 +19900121,600,130,109,9 +19900121,600,130,109,10 +19900121,600,157,109,1 +19900121,600,157,109,2 +19900121,600,157,109,3 +19900121,600,157,109,4 +19900121,600,157,109,5 +19900121,600,157,109,6 +19900121,600,157,109,7 +19900121,600,157,109,8 +19900121,600,157,109,9 +19900121,600,157,109,10 +19900121,600,54,109,1 +19900121,600,54,109,2 +19900121,600,54,109,3 +19900121,600,54,109,4 +19900121,600,54,109,5 +19900121,600,54,109,6 +19900121,600,54,109,7 +19900121,600,54,109,8 +19900121,600,54,109,9 +19900121,600,54,109,10 +19900121,600,135,109,1 +19900121,600,135,109,2 +19900121,600,135,109,3 +19900121,600,135,109,4 +19900121,600,135,109,5 +19900121,600,135,109,6 +19900121,600,135,109,7 +19900121,600,135,109,8 +19900121,600,135,109,9 +19900121,600,135,109,10 +19900121,600,134,109,1 +19900121,600,152,109,1 +19900121,600,131,100,850 +19900121,600,132,100,850 +19900121,600,134,100,1000 +19900121,600,152,100,1000 +19900121,900,131,100,850 +19900121,900,132,100,850 +19900121,900,134,100,1000 +19900121,900,152,100,1000 +19900121,1200,131,100,1000 +19900121,1200,131,100,975 +19900121,1200,131,100,950 +19900121,1200,131,100,925 +19900121,1200,131,100,900 +19900121,1200,131,100,875 +19900121,1200,131,100,825 +19900121,1200,131,100,800 +19900121,1200,131,100,775 +19900121,1200,131,100,750 +19900121,1200,131,100,740 +19900121,1200,131,100,700 +19900121,1200,131,100,650 +19900121,1200,131,100,620 +19900121,1200,131,100,600 +19900121,1200,131,100,550 +19900121,1200,131,100,500 +19900121,1200,131,100,450 +19900121,1200,131,100,400 +19900121,1200,131,100,375 +19900121,1200,131,100,350 +19900121,1200,131,100,300 +19900121,1200,131,100,250 +19900121,1200,131,100,245 +19900121,1200,131,100,225 +19900121,1200,131,100,200 +19900121,1200,131,100,175 +19900121,1200,131,100,150 +19900121,1200,131,100,125 +19900121,1200,131,100,100 +19900121,1200,131,100,70 +19900121,1200,131,100,50 +19900121,1200,131,100,30 +19900121,1200,131,100,20 +19900121,1200,131,100,10 +19900121,1200,131,100,9 +19900121,1200,131,100,7 +19900121,1200,131,100,5 +19900121,1200,131,100,3 +19900121,1200,131,100,2 +19900121,1200,131,100,1 +19900121,1200,131,210,40 +19900121,1200,132,100,1000 +19900121,1200,132,100,975 +19900121,1200,132,100,950 +19900121,1200,132,100,925 +19900121,1200,132,100,900 +19900121,1200,132,100,875 +19900121,1200,132,100,825 +19900121,1200,132,100,800 +19900121,1200,132,100,775 +19900121,1200,132,100,750 +19900121,1200,132,100,740 +19900121,1200,132,100,700 +19900121,1200,132,100,650 +19900121,1200,132,100,620 +19900121,1200,132,100,600 +19900121,1200,132,100,550 +19900121,1200,132,100,500 +19900121,1200,132,100,450 +19900121,1200,132,100,400 +19900121,1200,132,100,375 +19900121,1200,132,100,350 +19900121,1200,132,100,300 +19900121,1200,132,100,250 +19900121,1200,132,100,245 +19900121,1200,132,100,225 +19900121,1200,132,100,200 +19900121,1200,132,100,175 +19900121,1200,132,100,150 +19900121,1200,132,100,125 +19900121,1200,132,100,100 +19900121,1200,132,100,70 +19900121,1200,132,100,50 +19900121,1200,132,100,30 +19900121,1200,132,100,20 +19900121,1200,132,100,10 +19900121,1200,132,100,9 +19900121,1200,132,100,7 +19900121,1200,132,100,5 +19900121,1200,132,100,3 +19900121,1200,132,100,2 +19900121,1200,132,100,1 +19900121,1200,132,210,40 +19900121,1200,130,100,1000 +19900121,1200,130,100,975 +19900121,1200,130,100,950 +19900121,1200,130,100,925 +19900121,1200,130,100,900 +19900121,1200,130,100,875 +19900121,1200,130,100,850 +19900121,1200,130,100,825 +19900121,1200,130,100,800 +19900121,1200,130,100,775 +19900121,1200,130,100,750 +19900121,1200,130,100,740 +19900121,1200,130,100,700 +19900121,1200,130,100,650 +19900121,1200,130,100,620 +19900121,1200,130,100,600 +19900121,1200,130,100,550 +19900121,1200,130,100,500 +19900121,1200,130,100,450 +19900121,1200,130,100,400 +19900121,1200,130,100,375 +19900121,1200,130,100,350 +19900121,1200,130,100,300 +19900121,1200,130,100,250 +19900121,1200,130,100,245 +19900121,1200,130,100,225 +19900121,1200,130,100,200 +19900121,1200,130,100,175 +19900121,1200,130,100,150 +19900121,1200,130,100,125 +19900121,1200,130,100,100 +19900121,1200,130,100,70 +19900121,1200,130,100,50 +19900121,1200,130,100,30 +19900121,1200,130,100,20 +19900121,1200,130,100,10 +19900121,1200,130,100,9 +19900121,1200,130,100,7 +19900121,1200,130,100,5 +19900121,1200,130,100,3 +19900121,1200,130,100,2 +19900121,1200,130,100,1 +19900121,1200,130,210,40 +19900121,1200,129,100,1000 +19900121,1200,129,100,975 +19900121,1200,129,100,950 +19900121,1200,129,100,925 +19900121,1200,129,100,900 +19900121,1200,129,100,875 +19900121,1200,129,100,850 +19900121,1200,129,100,825 +19900121,1200,129,100,800 +19900121,1200,129,100,775 +19900121,1200,129,100,750 +19900121,1200,129,100,740 +19900121,1200,129,100,700 +19900121,1200,129,100,650 +19900121,1200,129,100,620 +19900121,1200,129,100,600 +19900121,1200,129,100,550 +19900121,1200,129,100,500 +19900121,1200,129,100,450 +19900121,1200,129,100,400 +19900121,1200,129,100,375 +19900121,1200,129,100,350 +19900121,1200,129,100,300 +19900121,1200,129,100,250 +19900121,1200,129,100,245 +19900121,1200,129,100,225 +19900121,1200,129,100,200 +19900121,1200,129,100,175 +19900121,1200,129,100,150 +19900121,1200,129,100,125 +19900121,1200,129,100,100 +19900121,1200,129,100,70 +19900121,1200,129,100,50 +19900121,1200,129,100,30 +19900121,1200,129,100,20 +19900121,1200,129,100,10 +19900121,1200,129,100,9 +19900121,1200,129,100,7 +19900121,1200,129,100,5 +19900121,1200,129,100,3 +19900121,1200,129,100,2 +19900121,1200,129,100,1 +19900121,1200,129,210,40 +19900121,1200,157,100,1000 +19900121,1200,157,100,975 +19900121,1200,157,100,950 +19900121,1200,157,100,925 +19900121,1200,157,100,900 +19900121,1200,157,100,875 +19900121,1200,157,100,850 +19900121,1200,157,100,825 +19900121,1200,157,100,800 +19900121,1200,157,100,775 +19900121,1200,157,100,750 +19900121,1200,157,100,740 +19900121,1200,157,100,700 +19900121,1200,157,100,650 +19900121,1200,157,100,620 +19900121,1200,157,100,600 +19900121,1200,157,100,550 +19900121,1200,157,100,500 +19900121,1200,157,100,450 +19900121,1200,157,100,400 +19900121,1200,157,100,375 +19900121,1200,157,100,350 +19900121,1200,157,100,300 +19900121,1200,157,100,250 +19900121,1200,157,100,245 +19900121,1200,157,100,225 +19900121,1200,157,100,200 +19900121,1200,157,100,175 +19900121,1200,157,100,150 +19900121,1200,157,100,125 +19900121,1200,157,100,100 +19900121,1200,157,100,70 +19900121,1200,157,100,50 +19900121,1200,157,100,30 +19900121,1200,157,100,20 +19900121,1200,157,100,10 +19900121,1200,157,100,9 +19900121,1200,157,100,7 +19900121,1200,157,100,5 +19900121,1200,157,100,3 +19900121,1200,157,100,2 +19900121,1200,157,100,1 +19900121,1200,157,210,40 +19900121,1200,135,100,1000 +19900121,1200,135,100,975 +19900121,1200,135,100,950 +19900121,1200,135,100,925 +19900121,1200,135,100,900 +19900121,1200,135,100,875 +19900121,1200,135,100,850 +19900121,1200,135,100,825 +19900121,1200,135,100,800 +19900121,1200,135,100,775 +19900121,1200,135,100,750 +19900121,1200,135,100,740 +19900121,1200,135,100,700 +19900121,1200,135,100,650 +19900121,1200,135,100,620 +19900121,1200,135,100,600 +19900121,1200,135,100,550 +19900121,1200,135,100,500 +19900121,1200,135,100,450 +19900121,1200,135,100,400 +19900121,1200,135,100,375 +19900121,1200,135,100,350 +19900121,1200,135,100,300 +19900121,1200,135,100,250 +19900121,1200,135,100,245 +19900121,1200,135,100,225 +19900121,1200,135,100,200 +19900121,1200,135,100,175 +19900121,1200,135,100,150 +19900121,1200,135,100,125 +19900121,1200,135,100,100 +19900121,1200,135,100,70 +19900121,1200,135,100,50 +19900121,1200,135,100,30 +19900121,1200,135,100,20 +19900121,1200,135,100,10 +19900121,1200,135,100,9 +19900121,1200,135,100,7 +19900121,1200,135,100,5 +19900121,1200,135,100,3 +19900121,1200,135,100,2 +19900121,1200,135,100,1 +19900121,1200,135,210,40 +19900121,1200,138,100,1000 +19900121,1200,138,100,975 +19900121,1200,138,100,950 +19900121,1200,138,100,925 +19900121,1200,138,100,900 +19900121,1200,138,100,875 +19900121,1200,138,100,850 +19900121,1200,138,100,825 +19900121,1200,138,100,800 +19900121,1200,138,100,775 +19900121,1200,138,100,750 +19900121,1200,138,100,740 +19900121,1200,138,100,700 +19900121,1200,138,100,650 +19900121,1200,138,100,620 +19900121,1200,138,100,600 +19900121,1200,138,100,550 +19900121,1200,138,100,500 +19900121,1200,138,100,450 +19900121,1200,138,100,400 +19900121,1200,138,100,375 +19900121,1200,138,100,350 +19900121,1200,138,100,300 +19900121,1200,138,100,250 +19900121,1200,138,100,245 +19900121,1200,138,100,225 +19900121,1200,138,100,200 +19900121,1200,138,100,175 +19900121,1200,138,100,150 +19900121,1200,138,100,125 +19900121,1200,138,100,100 +19900121,1200,138,100,70 +19900121,1200,138,100,50 +19900121,1200,138,100,30 +19900121,1200,138,100,20 +19900121,1200,138,100,10 +19900121,1200,138,100,9 +19900121,1200,138,100,7 +19900121,1200,138,100,5 +19900121,1200,138,100,3 +19900121,1200,138,100,2 +19900121,1200,138,100,1 +19900121,1200,138,210,40 +19900121,1200,131,109,1 +19900121,1200,131,109,2 +19900121,1200,131,109,3 +19900121,1200,131,109,4 +19900121,1200,131,109,5 +19900121,1200,131,109,6 +19900121,1200,131,109,7 +19900121,1200,131,109,8 +19900121,1200,131,109,9 +19900121,1200,131,109,10 +19900121,1200,132,109,1 +19900121,1200,132,109,2 +19900121,1200,132,109,3 +19900121,1200,132,109,4 +19900121,1200,132,109,5 +19900121,1200,132,109,6 +19900121,1200,132,109,7 +19900121,1200,132,109,8 +19900121,1200,132,109,9 +19900121,1200,132,109,10 +19900121,1200,130,109,1 +19900121,1200,130,109,2 +19900121,1200,130,109,3 +19900121,1200,130,109,4 +19900121,1200,130,109,5 +19900121,1200,130,109,6 +19900121,1200,130,109,7 +19900121,1200,130,109,8 +19900121,1200,130,109,9 +19900121,1200,130,109,10 +19900121,1200,157,109,1 +19900121,1200,157,109,2 +19900121,1200,157,109,3 +19900121,1200,157,109,4 +19900121,1200,157,109,5 +19900121,1200,157,109,6 +19900121,1200,157,109,7 +19900121,1200,157,109,8 +19900121,1200,157,109,9 +19900121,1200,157,109,10 +19900121,1200,54,109,1 +19900121,1200,54,109,2 +19900121,1200,54,109,3 +19900121,1200,54,109,4 +19900121,1200,54,109,5 +19900121,1200,54,109,6 +19900121,1200,54,109,7 +19900121,1200,54,109,8 +19900121,1200,54,109,9 +19900121,1200,54,109,10 +19900121,1200,135,109,1 +19900121,1200,135,109,2 +19900121,1200,135,109,3 +19900121,1200,135,109,4 +19900121,1200,135,109,5 +19900121,1200,135,109,6 +19900121,1200,135,109,7 +19900121,1200,135,109,8 +19900121,1200,135,109,9 +19900121,1200,135,109,10 +19900121,1200,134,109,1 +19900121,1200,152,109,1 +19900121,1200,131,100,850 +19900121,1200,132,100,850 +19900121,1200,134,100,1000 +19900121,1200,152,100,1000 +19900121,1500,131,100,850 +19900121,1500,132,100,850 +19900121,1500,134,100,1000 +19900121,1500,152,100,1000 +19900121,1800,131,100,1000 +19900121,1800,131,100,975 +19900121,1800,131,100,950 +19900121,1800,131,100,925 +19900121,1800,131,100,900 +19900121,1800,131,100,875 +19900121,1800,131,100,825 +19900121,1800,131,100,800 +19900121,1800,131,100,775 +19900121,1800,131,100,750 +19900121,1800,131,100,740 +19900121,1800,131,100,700 +19900121,1800,131,100,650 +19900121,1800,131,100,620 +19900121,1800,131,100,600 +19900121,1800,131,100,550 +19900121,1800,131,100,500 +19900121,1800,131,100,450 +19900121,1800,131,100,400 +19900121,1800,131,100,375 +19900121,1800,131,100,350 +19900121,1800,131,100,300 +19900121,1800,131,100,250 +19900121,1800,131,100,245 +19900121,1800,131,100,225 +19900121,1800,131,100,200 +19900121,1800,131,100,175 +19900121,1800,131,100,150 +19900121,1800,131,100,125 +19900121,1800,131,100,100 +19900121,1800,131,100,70 +19900121,1800,131,100,50 +19900121,1800,131,100,30 +19900121,1800,131,100,20 +19900121,1800,131,100,10 +19900121,1800,131,100,9 +19900121,1800,131,100,7 +19900121,1800,131,100,5 +19900121,1800,131,100,3 +19900121,1800,131,100,2 +19900121,1800,131,100,1 +19900121,1800,131,210,40 +19900121,1800,132,100,1000 +19900121,1800,132,100,975 +19900121,1800,132,100,950 +19900121,1800,132,100,925 +19900121,1800,132,100,900 +19900121,1800,132,100,875 +19900121,1800,132,100,825 +19900121,1800,132,100,800 +19900121,1800,132,100,775 +19900121,1800,132,100,750 +19900121,1800,132,100,740 +19900121,1800,132,100,700 +19900121,1800,132,100,650 +19900121,1800,132,100,620 +19900121,1800,132,100,600 +19900121,1800,132,100,550 +19900121,1800,132,100,500 +19900121,1800,132,100,450 +19900121,1800,132,100,400 +19900121,1800,132,100,375 +19900121,1800,132,100,350 +19900121,1800,132,100,300 +19900121,1800,132,100,250 +19900121,1800,132,100,245 +19900121,1800,132,100,225 +19900121,1800,132,100,200 +19900121,1800,132,100,175 +19900121,1800,132,100,150 +19900121,1800,132,100,125 +19900121,1800,132,100,100 +19900121,1800,132,100,70 +19900121,1800,132,100,50 +19900121,1800,132,100,30 +19900121,1800,132,100,20 +19900121,1800,132,100,10 +19900121,1800,132,100,9 +19900121,1800,132,100,7 +19900121,1800,132,100,5 +19900121,1800,132,100,3 +19900121,1800,132,100,2 +19900121,1800,132,100,1 +19900121,1800,132,210,40 +19900121,1800,130,100,1000 +19900121,1800,130,100,975 +19900121,1800,130,100,950 +19900121,1800,130,100,925 +19900121,1800,130,100,900 +19900121,1800,130,100,875 +19900121,1800,130,100,850 +19900121,1800,130,100,825 +19900121,1800,130,100,800 +19900121,1800,130,100,775 +19900121,1800,130,100,750 +19900121,1800,130,100,740 +19900121,1800,130,100,700 +19900121,1800,130,100,650 +19900121,1800,130,100,620 +19900121,1800,130,100,600 +19900121,1800,130,100,550 +19900121,1800,130,100,500 +19900121,1800,130,100,450 +19900121,1800,130,100,400 +19900121,1800,130,100,375 +19900121,1800,130,100,350 +19900121,1800,130,100,300 +19900121,1800,130,100,250 +19900121,1800,130,100,245 +19900121,1800,130,100,225 +19900121,1800,130,100,200 +19900121,1800,130,100,175 +19900121,1800,130,100,150 +19900121,1800,130,100,125 +19900121,1800,130,100,100 +19900121,1800,130,100,70 +19900121,1800,130,100,50 +19900121,1800,130,100,30 +19900121,1800,130,100,20 +19900121,1800,130,100,10 +19900121,1800,130,100,9 +19900121,1800,130,100,7 +19900121,1800,130,100,5 +19900121,1800,130,100,3 +19900121,1800,130,100,2 +19900121,1800,130,100,1 +19900121,1800,130,210,40 +19900121,1800,129,100,1000 +19900121,1800,129,100,975 +19900121,1800,129,100,950 +19900121,1800,129,100,925 +19900121,1800,129,100,900 +19900121,1800,129,100,875 +19900121,1800,129,100,850 +19900121,1800,129,100,825 +19900121,1800,129,100,800 +19900121,1800,129,100,775 +19900121,1800,129,100,750 +19900121,1800,129,100,740 +19900121,1800,129,100,700 +19900121,1800,129,100,650 +19900121,1800,129,100,620 +19900121,1800,129,100,600 +19900121,1800,129,100,550 +19900121,1800,129,100,500 +19900121,1800,129,100,450 +19900121,1800,129,100,400 +19900121,1800,129,100,375 +19900121,1800,129,100,350 +19900121,1800,129,100,300 +19900121,1800,129,100,250 +19900121,1800,129,100,245 +19900121,1800,129,100,225 +19900121,1800,129,100,200 +19900121,1800,129,100,175 +19900121,1800,129,100,150 +19900121,1800,129,100,125 +19900121,1800,129,100,100 +19900121,1800,129,100,70 +19900121,1800,129,100,50 +19900121,1800,129,100,30 +19900121,1800,129,100,20 +19900121,1800,129,100,10 +19900121,1800,129,100,9 +19900121,1800,129,100,7 +19900121,1800,129,100,5 +19900121,1800,129,100,3 +19900121,1800,129,100,2 +19900121,1800,129,100,1 +19900121,1800,129,210,40 +19900121,1800,157,100,1000 +19900121,1800,157,100,975 +19900121,1800,157,100,950 +19900121,1800,157,100,925 +19900121,1800,157,100,900 +19900121,1800,157,100,875 +19900121,1800,157,100,850 +19900121,1800,157,100,825 +19900121,1800,157,100,800 +19900121,1800,157,100,775 +19900121,1800,157,100,750 +19900121,1800,157,100,740 +19900121,1800,157,100,700 +19900121,1800,157,100,650 +19900121,1800,157,100,620 +19900121,1800,157,100,600 +19900121,1800,157,100,550 +19900121,1800,157,100,500 +19900121,1800,157,100,450 +19900121,1800,157,100,400 +19900121,1800,157,100,375 +19900121,1800,157,100,350 +19900121,1800,157,100,300 +19900121,1800,157,100,250 +19900121,1800,157,100,245 +19900121,1800,157,100,225 +19900121,1800,157,100,200 +19900121,1800,157,100,175 +19900121,1800,157,100,150 +19900121,1800,157,100,125 +19900121,1800,157,100,100 +19900121,1800,157,100,70 +19900121,1800,157,100,50 +19900121,1800,157,100,30 +19900121,1800,157,100,20 +19900121,1800,157,100,10 +19900121,1800,157,100,9 +19900121,1800,157,100,7 +19900121,1800,157,100,5 +19900121,1800,157,100,3 +19900121,1800,157,100,2 +19900121,1800,157,100,1 +19900121,1800,157,210,40 +19900121,1800,135,100,1000 +19900121,1800,135,100,975 +19900121,1800,135,100,950 +19900121,1800,135,100,925 +19900121,1800,135,100,900 +19900121,1800,135,100,875 +19900121,1800,135,100,850 +19900121,1800,135,100,825 +19900121,1800,135,100,800 +19900121,1800,135,100,775 +19900121,1800,135,100,750 +19900121,1800,135,100,740 +19900121,1800,135,100,700 +19900121,1800,135,100,650 +19900121,1800,135,100,620 +19900121,1800,135,100,600 +19900121,1800,135,100,550 +19900121,1800,135,100,500 +19900121,1800,135,100,450 +19900121,1800,135,100,400 +19900121,1800,135,100,375 +19900121,1800,135,100,350 +19900121,1800,135,100,300 +19900121,1800,135,100,250 +19900121,1800,135,100,245 +19900121,1800,135,100,225 +19900121,1800,135,100,200 +19900121,1800,135,100,175 +19900121,1800,135,100,150 +19900121,1800,135,100,125 +19900121,1800,135,100,100 +19900121,1800,135,100,70 +19900121,1800,135,100,50 +19900121,1800,135,100,30 +19900121,1800,135,100,20 +19900121,1800,135,100,10 +19900121,1800,135,100,9 +19900121,1800,135,100,7 +19900121,1800,135,100,5 +19900121,1800,135,100,3 +19900121,1800,135,100,2 +19900121,1800,135,100,1 +19900121,1800,135,210,40 +19900121,1800,138,100,1000 +19900121,1800,138,100,975 +19900121,1800,138,100,950 +19900121,1800,138,100,925 +19900121,1800,138,100,900 +19900121,1800,138,100,875 +19900121,1800,138,100,850 +19900121,1800,138,100,825 +19900121,1800,138,100,800 +19900121,1800,138,100,775 +19900121,1800,138,100,750 +19900121,1800,138,100,740 +19900121,1800,138,100,700 +19900121,1800,138,100,650 +19900121,1800,138,100,620 +19900121,1800,138,100,600 +19900121,1800,138,100,550 +19900121,1800,138,100,500 +19900121,1800,138,100,450 +19900121,1800,138,100,400 +19900121,1800,138,100,375 +19900121,1800,138,100,350 +19900121,1800,138,100,300 +19900121,1800,138,100,250 +19900121,1800,138,100,245 +19900121,1800,138,100,225 +19900121,1800,138,100,200 +19900121,1800,138,100,175 +19900121,1800,138,100,150 +19900121,1800,138,100,125 +19900121,1800,138,100,100 +19900121,1800,138,100,70 +19900121,1800,138,100,50 +19900121,1800,138,100,30 +19900121,1800,138,100,20 +19900121,1800,138,100,10 +19900121,1800,138,100,9 +19900121,1800,138,100,7 +19900121,1800,138,100,5 +19900121,1800,138,100,3 +19900121,1800,138,100,2 +19900121,1800,138,100,1 +19900121,1800,138,210,40 +19900121,1800,131,109,1 +19900121,1800,131,109,2 +19900121,1800,131,109,3 +19900121,1800,131,109,4 +19900121,1800,131,109,5 +19900121,1800,131,109,6 +19900121,1800,131,109,7 +19900121,1800,131,109,8 +19900121,1800,131,109,9 +19900121,1800,131,109,10 +19900121,1800,132,109,1 +19900121,1800,132,109,2 +19900121,1800,132,109,3 +19900121,1800,132,109,4 +19900121,1800,132,109,5 +19900121,1800,132,109,6 +19900121,1800,132,109,7 +19900121,1800,132,109,8 +19900121,1800,132,109,9 +19900121,1800,132,109,10 +19900121,1800,130,109,1 +19900121,1800,130,109,2 +19900121,1800,130,109,3 +19900121,1800,130,109,4 +19900121,1800,130,109,5 +19900121,1800,130,109,6 +19900121,1800,130,109,7 +19900121,1800,130,109,8 +19900121,1800,130,109,9 +19900121,1800,130,109,10 +19900121,1800,157,109,1 +19900121,1800,157,109,2 +19900121,1800,157,109,3 +19900121,1800,157,109,4 +19900121,1800,157,109,5 +19900121,1800,157,109,6 +19900121,1800,157,109,7 +19900121,1800,157,109,8 +19900121,1800,157,109,9 +19900121,1800,157,109,10 +19900121,1800,54,109,1 +19900121,1800,54,109,2 +19900121,1800,54,109,3 +19900121,1800,54,109,4 +19900121,1800,54,109,5 +19900121,1800,54,109,6 +19900121,1800,54,109,7 +19900121,1800,54,109,8 +19900121,1800,54,109,9 +19900121,1800,54,109,10 +19900121,1800,135,109,1 +19900121,1800,135,109,2 +19900121,1800,135,109,3 +19900121,1800,135,109,4 +19900121,1800,135,109,5 +19900121,1800,135,109,6 +19900121,1800,135,109,7 +19900121,1800,135,109,8 +19900121,1800,135,109,9 +19900121,1800,135,109,10 +19900121,1800,134,109,1 +19900121,1800,152,109,1 +19900121,1800,131,100,850 +19900121,1800,132,100,850 +19900121,1800,134,100,1000 +19900121,1800,152,100,1000 +19900121,2100,131,100,850 +19900121,2100,132,100,850 +19900121,2100,134,100,1000 +19900121,2100,152,100,1000 +19900122,0,131,100,1000 +19900122,0,131,100,975 +19900122,0,131,100,950 +19900122,0,131,100,925 +19900122,0,131,100,900 +19900122,0,131,100,875 +19900122,0,131,100,825 +19900122,0,131,100,800 +19900122,0,131,100,775 +19900122,0,131,100,750 +19900122,0,131,100,740 +19900122,0,131,100,700 +19900122,0,131,100,650 +19900122,0,131,100,620 +19900122,0,131,100,600 +19900122,0,131,100,550 +19900122,0,131,100,500 +19900122,0,131,100,450 +19900122,0,131,100,400 +19900122,0,131,100,375 +19900122,0,131,100,350 +19900122,0,131,100,300 +19900122,0,131,100,250 +19900122,0,131,100,245 +19900122,0,131,100,225 +19900122,0,131,100,200 +19900122,0,131,100,175 +19900122,0,131,100,150 +19900122,0,131,100,125 +19900122,0,131,100,100 +19900122,0,131,100,70 +19900122,0,131,100,50 +19900122,0,131,100,30 +19900122,0,131,100,20 +19900122,0,131,100,10 +19900122,0,131,100,9 +19900122,0,131,100,7 +19900122,0,131,100,5 +19900122,0,131,100,3 +19900122,0,131,100,2 +19900122,0,131,100,1 +19900122,0,131,210,40 +19900122,0,132,100,1000 +19900122,0,132,100,975 +19900122,0,132,100,950 +19900122,0,132,100,925 +19900122,0,132,100,900 +19900122,0,132,100,875 +19900122,0,132,100,825 +19900122,0,132,100,800 +19900122,0,132,100,775 +19900122,0,132,100,750 +19900122,0,132,100,740 +19900122,0,132,100,700 +19900122,0,132,100,650 +19900122,0,132,100,620 +19900122,0,132,100,600 +19900122,0,132,100,550 +19900122,0,132,100,500 +19900122,0,132,100,450 +19900122,0,132,100,400 +19900122,0,132,100,375 +19900122,0,132,100,350 +19900122,0,132,100,300 +19900122,0,132,100,250 +19900122,0,132,100,245 +19900122,0,132,100,225 +19900122,0,132,100,200 +19900122,0,132,100,175 +19900122,0,132,100,150 +19900122,0,132,100,125 +19900122,0,132,100,100 +19900122,0,132,100,70 +19900122,0,132,100,50 +19900122,0,132,100,30 +19900122,0,132,100,20 +19900122,0,132,100,10 +19900122,0,132,100,9 +19900122,0,132,100,7 +19900122,0,132,100,5 +19900122,0,132,100,3 +19900122,0,132,100,2 +19900122,0,132,100,1 +19900122,0,132,210,40 +19900122,0,130,100,1000 +19900122,0,130,100,975 +19900122,0,130,100,950 +19900122,0,130,100,925 +19900122,0,130,100,900 +19900122,0,130,100,875 +19900122,0,130,100,850 +19900122,0,130,100,825 +19900122,0,130,100,800 +19900122,0,130,100,775 +19900122,0,130,100,750 +19900122,0,130,100,740 +19900122,0,130,100,700 +19900122,0,130,100,650 +19900122,0,130,100,620 +19900122,0,130,100,600 +19900122,0,130,100,550 +19900122,0,130,100,500 +19900122,0,130,100,450 +19900122,0,130,100,400 +19900122,0,130,100,375 +19900122,0,130,100,350 +19900122,0,130,100,300 +19900122,0,130,100,250 +19900122,0,130,100,245 +19900122,0,130,100,225 +19900122,0,130,100,200 +19900122,0,130,100,175 +19900122,0,130,100,150 +19900122,0,130,100,125 +19900122,0,130,100,100 +19900122,0,130,100,70 +19900122,0,130,100,50 +19900122,0,130,100,30 +19900122,0,130,100,20 +19900122,0,130,100,10 +19900122,0,130,100,9 +19900122,0,130,100,7 +19900122,0,130,100,5 +19900122,0,130,100,3 +19900122,0,130,100,2 +19900122,0,130,100,1 +19900122,0,130,210,40 +19900122,0,129,100,1000 +19900122,0,129,100,975 +19900122,0,129,100,950 +19900122,0,129,100,925 +19900122,0,129,100,900 +19900122,0,129,100,875 +19900122,0,129,100,850 +19900122,0,129,100,825 +19900122,0,129,100,800 +19900122,0,129,100,775 +19900122,0,129,100,750 +19900122,0,129,100,740 +19900122,0,129,100,700 +19900122,0,129,100,650 +19900122,0,129,100,620 +19900122,0,129,100,600 +19900122,0,129,100,550 +19900122,0,129,100,500 +19900122,0,129,100,450 +19900122,0,129,100,400 +19900122,0,129,100,375 +19900122,0,129,100,350 +19900122,0,129,100,300 +19900122,0,129,100,250 +19900122,0,129,100,245 +19900122,0,129,100,225 +19900122,0,129,100,200 +19900122,0,129,100,175 +19900122,0,129,100,150 +19900122,0,129,100,125 +19900122,0,129,100,100 +19900122,0,129,100,70 +19900122,0,129,100,50 +19900122,0,129,100,30 +19900122,0,129,100,20 +19900122,0,129,100,10 +19900122,0,129,100,9 +19900122,0,129,100,7 +19900122,0,129,100,5 +19900122,0,129,100,3 +19900122,0,129,100,2 +19900122,0,129,100,1 +19900122,0,129,210,40 +19900122,0,157,100,1000 +19900122,0,157,100,975 +19900122,0,157,100,950 +19900122,0,157,100,925 +19900122,0,157,100,900 +19900122,0,157,100,875 +19900122,0,157,100,850 +19900122,0,157,100,825 +19900122,0,157,100,800 +19900122,0,157,100,775 +19900122,0,157,100,750 +19900122,0,157,100,740 +19900122,0,157,100,700 +19900122,0,157,100,650 +19900122,0,157,100,620 +19900122,0,157,100,600 +19900122,0,157,100,550 +19900122,0,157,100,500 +19900122,0,157,100,450 +19900122,0,157,100,400 +19900122,0,157,100,375 +19900122,0,157,100,350 +19900122,0,157,100,300 +19900122,0,157,100,250 +19900122,0,157,100,245 +19900122,0,157,100,225 +19900122,0,157,100,200 +19900122,0,157,100,175 +19900122,0,157,100,150 +19900122,0,157,100,125 +19900122,0,157,100,100 +19900122,0,157,100,70 +19900122,0,157,100,50 +19900122,0,157,100,30 +19900122,0,157,100,20 +19900122,0,157,100,10 +19900122,0,157,100,9 +19900122,0,157,100,7 +19900122,0,157,100,5 +19900122,0,157,100,3 +19900122,0,157,100,2 +19900122,0,157,100,1 +19900122,0,157,210,40 +19900122,0,135,100,1000 +19900122,0,135,100,975 +19900122,0,135,100,950 +19900122,0,135,100,925 +19900122,0,135,100,900 +19900122,0,135,100,875 +19900122,0,135,100,850 +19900122,0,135,100,825 +19900122,0,135,100,800 +19900122,0,135,100,775 +19900122,0,135,100,750 +19900122,0,135,100,740 +19900122,0,135,100,700 +19900122,0,135,100,650 +19900122,0,135,100,620 +19900122,0,135,100,600 +19900122,0,135,100,550 +19900122,0,135,100,500 +19900122,0,135,100,450 +19900122,0,135,100,400 +19900122,0,135,100,375 +19900122,0,135,100,350 +19900122,0,135,100,300 +19900122,0,135,100,250 +19900122,0,135,100,245 +19900122,0,135,100,225 +19900122,0,135,100,200 +19900122,0,135,100,175 +19900122,0,135,100,150 +19900122,0,135,100,125 +19900122,0,135,100,100 +19900122,0,135,100,70 +19900122,0,135,100,50 +19900122,0,135,100,30 +19900122,0,135,100,20 +19900122,0,135,100,10 +19900122,0,135,100,9 +19900122,0,135,100,7 +19900122,0,135,100,5 +19900122,0,135,100,3 +19900122,0,135,100,2 +19900122,0,135,100,1 +19900122,0,135,210,40 +19900122,0,138,100,1000 +19900122,0,138,100,975 +19900122,0,138,100,950 +19900122,0,138,100,925 +19900122,0,138,100,900 +19900122,0,138,100,875 +19900122,0,138,100,850 +19900122,0,138,100,825 +19900122,0,138,100,800 +19900122,0,138,100,775 +19900122,0,138,100,750 +19900122,0,138,100,740 +19900122,0,138,100,700 +19900122,0,138,100,650 +19900122,0,138,100,620 +19900122,0,138,100,600 +19900122,0,138,100,550 +19900122,0,138,100,500 +19900122,0,138,100,450 +19900122,0,138,100,400 +19900122,0,138,100,375 +19900122,0,138,100,350 +19900122,0,138,100,300 +19900122,0,138,100,250 +19900122,0,138,100,245 +19900122,0,138,100,225 +19900122,0,138,100,200 +19900122,0,138,100,175 +19900122,0,138,100,150 +19900122,0,138,100,125 +19900122,0,138,100,100 +19900122,0,138,100,70 +19900122,0,138,100,50 +19900122,0,138,100,30 +19900122,0,138,100,20 +19900122,0,138,100,10 +19900122,0,138,100,9 +19900122,0,138,100,7 +19900122,0,138,100,5 +19900122,0,138,100,3 +19900122,0,138,100,2 +19900122,0,138,100,1 +19900122,0,138,210,40 +19900122,0,131,109,1 +19900122,0,131,109,2 +19900122,0,131,109,3 +19900122,0,131,109,4 +19900122,0,131,109,5 +19900122,0,131,109,6 +19900122,0,131,109,7 +19900122,0,131,109,8 +19900122,0,131,109,9 +19900122,0,131,109,10 +19900122,0,132,109,1 +19900122,0,132,109,2 +19900122,0,132,109,3 +19900122,0,132,109,4 +19900122,0,132,109,5 +19900122,0,132,109,6 +19900122,0,132,109,7 +19900122,0,132,109,8 +19900122,0,132,109,9 +19900122,0,132,109,10 +19900122,0,130,109,1 +19900122,0,130,109,2 +19900122,0,130,109,3 +19900122,0,130,109,4 +19900122,0,130,109,5 +19900122,0,130,109,6 +19900122,0,130,109,7 +19900122,0,130,109,8 +19900122,0,130,109,9 +19900122,0,130,109,10 +19900122,0,157,109,1 +19900122,0,157,109,2 +19900122,0,157,109,3 +19900122,0,157,109,4 +19900122,0,157,109,5 +19900122,0,157,109,6 +19900122,0,157,109,7 +19900122,0,157,109,8 +19900122,0,157,109,9 +19900122,0,157,109,10 +19900122,0,54,109,1 +19900122,0,54,109,2 +19900122,0,54,109,3 +19900122,0,54,109,4 +19900122,0,54,109,5 +19900122,0,54,109,6 +19900122,0,54,109,7 +19900122,0,54,109,8 +19900122,0,54,109,9 +19900122,0,54,109,10 +19900122,0,135,109,1 +19900122,0,135,109,2 +19900122,0,135,109,3 +19900122,0,135,109,4 +19900122,0,135,109,5 +19900122,0,135,109,6 +19900122,0,135,109,7 +19900122,0,135,109,8 +19900122,0,135,109,9 +19900122,0,135,109,10 +19900122,0,134,109,1 +19900122,0,152,109,1 +19900122,0,131,100,850 +19900122,0,132,100,850 +19900122,0,134,100,1000 +19900122,0,152,100,1000 +19900122,300,131,100,850 +19900122,300,132,100,850 +19900122,300,134,100,1000 +19900122,300,152,100,1000 +19900122,600,131,100,1000 +19900122,600,131,100,975 +19900122,600,131,100,950 +19900122,600,131,100,925 +19900122,600,131,100,900 +19900122,600,131,100,875 +19900122,600,131,100,825 +19900122,600,131,100,800 +19900122,600,131,100,775 +19900122,600,131,100,750 +19900122,600,131,100,740 +19900122,600,131,100,700 +19900122,600,131,100,650 +19900122,600,131,100,620 +19900122,600,131,100,600 +19900122,600,131,100,550 +19900122,600,131,100,500 +19900122,600,131,100,450 +19900122,600,131,100,400 +19900122,600,131,100,375 +19900122,600,131,100,350 +19900122,600,131,100,300 +19900122,600,131,100,250 +19900122,600,131,100,245 +19900122,600,131,100,225 +19900122,600,131,100,200 +19900122,600,131,100,175 +19900122,600,131,100,150 +19900122,600,131,100,125 +19900122,600,131,100,100 +19900122,600,131,100,70 +19900122,600,131,100,50 +19900122,600,131,100,30 +19900122,600,131,100,20 +19900122,600,131,100,10 +19900122,600,131,100,9 +19900122,600,131,100,7 +19900122,600,131,100,5 +19900122,600,131,100,3 +19900122,600,131,100,2 +19900122,600,131,100,1 +19900122,600,131,210,40 +19900122,600,132,100,1000 +19900122,600,132,100,975 +19900122,600,132,100,950 +19900122,600,132,100,925 +19900122,600,132,100,900 +19900122,600,132,100,875 +19900122,600,132,100,825 +19900122,600,132,100,800 +19900122,600,132,100,775 +19900122,600,132,100,750 +19900122,600,132,100,740 +19900122,600,132,100,700 +19900122,600,132,100,650 +19900122,600,132,100,620 +19900122,600,132,100,600 +19900122,600,132,100,550 +19900122,600,132,100,500 +19900122,600,132,100,450 +19900122,600,132,100,400 +19900122,600,132,100,375 +19900122,600,132,100,350 +19900122,600,132,100,300 +19900122,600,132,100,250 +19900122,600,132,100,245 +19900122,600,132,100,225 +19900122,600,132,100,200 +19900122,600,132,100,175 +19900122,600,132,100,150 +19900122,600,132,100,125 +19900122,600,132,100,100 +19900122,600,132,100,70 +19900122,600,132,100,50 +19900122,600,132,100,30 +19900122,600,132,100,20 +19900122,600,132,100,10 +19900122,600,132,100,9 +19900122,600,132,100,7 +19900122,600,132,100,5 +19900122,600,132,100,3 +19900122,600,132,100,2 +19900122,600,132,100,1 +19900122,600,132,210,40 +19900122,600,130,100,1000 +19900122,600,130,100,975 +19900122,600,130,100,950 +19900122,600,130,100,925 +19900122,600,130,100,900 +19900122,600,130,100,875 +19900122,600,130,100,850 +19900122,600,130,100,825 +19900122,600,130,100,800 +19900122,600,130,100,775 +19900122,600,130,100,750 +19900122,600,130,100,740 +19900122,600,130,100,700 +19900122,600,130,100,650 +19900122,600,130,100,620 +19900122,600,130,100,600 +19900122,600,130,100,550 +19900122,600,130,100,500 +19900122,600,130,100,450 +19900122,600,130,100,400 +19900122,600,130,100,375 +19900122,600,130,100,350 +19900122,600,130,100,300 +19900122,600,130,100,250 +19900122,600,130,100,245 +19900122,600,130,100,225 +19900122,600,130,100,200 +19900122,600,130,100,175 +19900122,600,130,100,150 +19900122,600,130,100,125 +19900122,600,130,100,100 +19900122,600,130,100,70 +19900122,600,130,100,50 +19900122,600,130,100,30 +19900122,600,130,100,20 +19900122,600,130,100,10 +19900122,600,130,100,9 +19900122,600,130,100,7 +19900122,600,130,100,5 +19900122,600,130,100,3 +19900122,600,130,100,2 +19900122,600,130,100,1 +19900122,600,130,210,40 +19900122,600,129,100,1000 +19900122,600,129,100,975 +19900122,600,129,100,950 +19900122,600,129,100,925 +19900122,600,129,100,900 +19900122,600,129,100,875 +19900122,600,129,100,850 +19900122,600,129,100,825 +19900122,600,129,100,800 +19900122,600,129,100,775 +19900122,600,129,100,750 +19900122,600,129,100,740 +19900122,600,129,100,700 +19900122,600,129,100,650 +19900122,600,129,100,620 +19900122,600,129,100,600 +19900122,600,129,100,550 +19900122,600,129,100,500 +19900122,600,129,100,450 +19900122,600,129,100,400 +19900122,600,129,100,375 +19900122,600,129,100,350 +19900122,600,129,100,300 +19900122,600,129,100,250 +19900122,600,129,100,245 +19900122,600,129,100,225 +19900122,600,129,100,200 +19900122,600,129,100,175 +19900122,600,129,100,150 +19900122,600,129,100,125 +19900122,600,129,100,100 +19900122,600,129,100,70 +19900122,600,129,100,50 +19900122,600,129,100,30 +19900122,600,129,100,20 +19900122,600,129,100,10 +19900122,600,129,100,9 +19900122,600,129,100,7 +19900122,600,129,100,5 +19900122,600,129,100,3 +19900122,600,129,100,2 +19900122,600,129,100,1 +19900122,600,129,210,40 +19900122,600,157,100,1000 +19900122,600,157,100,975 +19900122,600,157,100,950 +19900122,600,157,100,925 +19900122,600,157,100,900 +19900122,600,157,100,875 +19900122,600,157,100,850 +19900122,600,157,100,825 +19900122,600,157,100,800 +19900122,600,157,100,775 +19900122,600,157,100,750 +19900122,600,157,100,740 +19900122,600,157,100,700 +19900122,600,157,100,650 +19900122,600,157,100,620 +19900122,600,157,100,600 +19900122,600,157,100,550 +19900122,600,157,100,500 +19900122,600,157,100,450 +19900122,600,157,100,400 +19900122,600,157,100,375 +19900122,600,157,100,350 +19900122,600,157,100,300 +19900122,600,157,100,250 +19900122,600,157,100,245 +19900122,600,157,100,225 +19900122,600,157,100,200 +19900122,600,157,100,175 +19900122,600,157,100,150 +19900122,600,157,100,125 +19900122,600,157,100,100 +19900122,600,157,100,70 +19900122,600,157,100,50 +19900122,600,157,100,30 +19900122,600,157,100,20 +19900122,600,157,100,10 +19900122,600,157,100,9 +19900122,600,157,100,7 +19900122,600,157,100,5 +19900122,600,157,100,3 +19900122,600,157,100,2 +19900122,600,157,100,1 +19900122,600,157,210,40 +19900122,600,135,100,1000 +19900122,600,135,100,975 +19900122,600,135,100,950 +19900122,600,135,100,925 +19900122,600,135,100,900 +19900122,600,135,100,875 +19900122,600,135,100,850 +19900122,600,135,100,825 +19900122,600,135,100,800 +19900122,600,135,100,775 +19900122,600,135,100,750 +19900122,600,135,100,740 +19900122,600,135,100,700 +19900122,600,135,100,650 +19900122,600,135,100,620 +19900122,600,135,100,600 +19900122,600,135,100,550 +19900122,600,135,100,500 +19900122,600,135,100,450 +19900122,600,135,100,400 +19900122,600,135,100,375 +19900122,600,135,100,350 +19900122,600,135,100,300 +19900122,600,135,100,250 +19900122,600,135,100,245 +19900122,600,135,100,225 +19900122,600,135,100,200 +19900122,600,135,100,175 +19900122,600,135,100,150 +19900122,600,135,100,125 +19900122,600,135,100,100 +19900122,600,135,100,70 +19900122,600,135,100,50 +19900122,600,135,100,30 +19900122,600,135,100,20 +19900122,600,135,100,10 +19900122,600,135,100,9 +19900122,600,135,100,7 +19900122,600,135,100,5 +19900122,600,135,100,3 +19900122,600,135,100,2 +19900122,600,135,100,1 +19900122,600,135,210,40 +19900122,600,138,100,1000 +19900122,600,138,100,975 +19900122,600,138,100,950 +19900122,600,138,100,925 +19900122,600,138,100,900 +19900122,600,138,100,875 +19900122,600,138,100,850 +19900122,600,138,100,825 +19900122,600,138,100,800 +19900122,600,138,100,775 +19900122,600,138,100,750 +19900122,600,138,100,740 +19900122,600,138,100,700 +19900122,600,138,100,650 +19900122,600,138,100,620 +19900122,600,138,100,600 +19900122,600,138,100,550 +19900122,600,138,100,500 +19900122,600,138,100,450 +19900122,600,138,100,400 +19900122,600,138,100,375 +19900122,600,138,100,350 +19900122,600,138,100,300 +19900122,600,138,100,250 +19900122,600,138,100,245 +19900122,600,138,100,225 +19900122,600,138,100,200 +19900122,600,138,100,175 +19900122,600,138,100,150 +19900122,600,138,100,125 +19900122,600,138,100,100 +19900122,600,138,100,70 +19900122,600,138,100,50 +19900122,600,138,100,30 +19900122,600,138,100,20 +19900122,600,138,100,10 +19900122,600,138,100,9 +19900122,600,138,100,7 +19900122,600,138,100,5 +19900122,600,138,100,3 +19900122,600,138,100,2 +19900122,600,138,100,1 +19900122,600,138,210,40 +19900122,600,131,109,1 +19900122,600,131,109,2 +19900122,600,131,109,3 +19900122,600,131,109,4 +19900122,600,131,109,5 +19900122,600,131,109,6 +19900122,600,131,109,7 +19900122,600,131,109,8 +19900122,600,131,109,9 +19900122,600,131,109,10 +19900122,600,132,109,1 +19900122,600,132,109,2 +19900122,600,132,109,3 +19900122,600,132,109,4 +19900122,600,132,109,5 +19900122,600,132,109,6 +19900122,600,132,109,7 +19900122,600,132,109,8 +19900122,600,132,109,9 +19900122,600,132,109,10 +19900122,600,130,109,1 +19900122,600,130,109,2 +19900122,600,130,109,3 +19900122,600,130,109,4 +19900122,600,130,109,5 +19900122,600,130,109,6 +19900122,600,130,109,7 +19900122,600,130,109,8 +19900122,600,130,109,9 +19900122,600,130,109,10 +19900122,600,157,109,1 +19900122,600,157,109,2 +19900122,600,157,109,3 +19900122,600,157,109,4 +19900122,600,157,109,5 +19900122,600,157,109,6 +19900122,600,157,109,7 +19900122,600,157,109,8 +19900122,600,157,109,9 +19900122,600,157,109,10 +19900122,600,54,109,1 +19900122,600,54,109,2 +19900122,600,54,109,3 +19900122,600,54,109,4 +19900122,600,54,109,5 +19900122,600,54,109,6 +19900122,600,54,109,7 +19900122,600,54,109,8 +19900122,600,54,109,9 +19900122,600,54,109,10 +19900122,600,135,109,1 +19900122,600,135,109,2 +19900122,600,135,109,3 +19900122,600,135,109,4 +19900122,600,135,109,5 +19900122,600,135,109,6 +19900122,600,135,109,7 +19900122,600,135,109,8 +19900122,600,135,109,9 +19900122,600,135,109,10 +19900122,600,134,109,1 +19900122,600,152,109,1 +19900122,600,131,100,850 +19900122,600,132,100,850 +19900122,600,134,100,1000 +19900122,600,152,100,1000 +19900122,900,131,100,850 +19900122,900,132,100,850 +19900122,900,134,100,1000 +19900122,900,152,100,1000 +19900122,1200,131,100,1000 +19900122,1200,131,100,975 +19900122,1200,131,100,950 +19900122,1200,131,100,925 +19900122,1200,131,100,900 +19900122,1200,131,100,875 +19900122,1200,131,100,825 +19900122,1200,131,100,800 +19900122,1200,131,100,775 +19900122,1200,131,100,750 +19900122,1200,131,100,740 +19900122,1200,131,100,700 +19900122,1200,131,100,650 +19900122,1200,131,100,620 +19900122,1200,131,100,600 +19900122,1200,131,100,550 +19900122,1200,131,100,500 +19900122,1200,131,100,450 +19900122,1200,131,100,400 +19900122,1200,131,100,375 +19900122,1200,131,100,350 +19900122,1200,131,100,300 +19900122,1200,131,100,250 +19900122,1200,131,100,245 +19900122,1200,131,100,225 +19900122,1200,131,100,200 +19900122,1200,131,100,175 +19900122,1200,131,100,150 +19900122,1200,131,100,125 +19900122,1200,131,100,100 +19900122,1200,131,100,70 +19900122,1200,131,100,50 +19900122,1200,131,100,30 +19900122,1200,131,100,20 +19900122,1200,131,100,10 +19900122,1200,131,100,9 +19900122,1200,131,100,7 +19900122,1200,131,100,5 +19900122,1200,131,100,3 +19900122,1200,131,100,2 +19900122,1200,131,100,1 +19900122,1200,131,210,40 +19900122,1200,132,100,1000 +19900122,1200,132,100,975 +19900122,1200,132,100,950 +19900122,1200,132,100,925 +19900122,1200,132,100,900 +19900122,1200,132,100,875 +19900122,1200,132,100,825 +19900122,1200,132,100,800 +19900122,1200,132,100,775 +19900122,1200,132,100,750 +19900122,1200,132,100,740 +19900122,1200,132,100,700 +19900122,1200,132,100,650 +19900122,1200,132,100,620 +19900122,1200,132,100,600 +19900122,1200,132,100,550 +19900122,1200,132,100,500 +19900122,1200,132,100,450 +19900122,1200,132,100,400 +19900122,1200,132,100,375 +19900122,1200,132,100,350 +19900122,1200,132,100,300 +19900122,1200,132,100,250 +19900122,1200,132,100,245 +19900122,1200,132,100,225 +19900122,1200,132,100,200 +19900122,1200,132,100,175 +19900122,1200,132,100,150 +19900122,1200,132,100,125 +19900122,1200,132,100,100 +19900122,1200,132,100,70 +19900122,1200,132,100,50 +19900122,1200,132,100,30 +19900122,1200,132,100,20 +19900122,1200,132,100,10 +19900122,1200,132,100,9 +19900122,1200,132,100,7 +19900122,1200,132,100,5 +19900122,1200,132,100,3 +19900122,1200,132,100,2 +19900122,1200,132,100,1 +19900122,1200,132,210,40 +19900122,1200,130,100,1000 +19900122,1200,130,100,975 +19900122,1200,130,100,950 +19900122,1200,130,100,925 +19900122,1200,130,100,900 +19900122,1200,130,100,875 +19900122,1200,130,100,850 +19900122,1200,130,100,825 +19900122,1200,130,100,800 +19900122,1200,130,100,775 +19900122,1200,130,100,750 +19900122,1200,130,100,740 +19900122,1200,130,100,700 +19900122,1200,130,100,650 +19900122,1200,130,100,620 +19900122,1200,130,100,600 +19900122,1200,130,100,550 +19900122,1200,130,100,500 +19900122,1200,130,100,450 +19900122,1200,130,100,400 +19900122,1200,130,100,375 +19900122,1200,130,100,350 +19900122,1200,130,100,300 +19900122,1200,130,100,250 +19900122,1200,130,100,245 +19900122,1200,130,100,225 +19900122,1200,130,100,200 +19900122,1200,130,100,175 +19900122,1200,130,100,150 +19900122,1200,130,100,125 +19900122,1200,130,100,100 +19900122,1200,130,100,70 +19900122,1200,130,100,50 +19900122,1200,130,100,30 +19900122,1200,130,100,20 +19900122,1200,130,100,10 +19900122,1200,130,100,9 +19900122,1200,130,100,7 +19900122,1200,130,100,5 +19900122,1200,130,100,3 +19900122,1200,130,100,2 +19900122,1200,130,100,1 +19900122,1200,130,210,40 +19900122,1200,129,100,1000 +19900122,1200,129,100,975 +19900122,1200,129,100,950 +19900122,1200,129,100,925 +19900122,1200,129,100,900 +19900122,1200,129,100,875 +19900122,1200,129,100,850 +19900122,1200,129,100,825 +19900122,1200,129,100,800 +19900122,1200,129,100,775 +19900122,1200,129,100,750 +19900122,1200,129,100,740 +19900122,1200,129,100,700 +19900122,1200,129,100,650 +19900122,1200,129,100,620 +19900122,1200,129,100,600 +19900122,1200,129,100,550 +19900122,1200,129,100,500 +19900122,1200,129,100,450 +19900122,1200,129,100,400 +19900122,1200,129,100,375 +19900122,1200,129,100,350 +19900122,1200,129,100,300 +19900122,1200,129,100,250 +19900122,1200,129,100,245 +19900122,1200,129,100,225 +19900122,1200,129,100,200 +19900122,1200,129,100,175 +19900122,1200,129,100,150 +19900122,1200,129,100,125 +19900122,1200,129,100,100 +19900122,1200,129,100,70 +19900122,1200,129,100,50 +19900122,1200,129,100,30 +19900122,1200,129,100,20 +19900122,1200,129,100,10 +19900122,1200,129,100,9 +19900122,1200,129,100,7 +19900122,1200,129,100,5 +19900122,1200,129,100,3 +19900122,1200,129,100,2 +19900122,1200,129,100,1 +19900122,1200,129,210,40 +19900122,1200,157,100,1000 +19900122,1200,157,100,975 +19900122,1200,157,100,950 +19900122,1200,157,100,925 +19900122,1200,157,100,900 +19900122,1200,157,100,875 +19900122,1200,157,100,850 +19900122,1200,157,100,825 +19900122,1200,157,100,800 +19900122,1200,157,100,775 +19900122,1200,157,100,750 +19900122,1200,157,100,740 +19900122,1200,157,100,700 +19900122,1200,157,100,650 +19900122,1200,157,100,620 +19900122,1200,157,100,600 +19900122,1200,157,100,550 +19900122,1200,157,100,500 +19900122,1200,157,100,450 +19900122,1200,157,100,400 +19900122,1200,157,100,375 +19900122,1200,157,100,350 +19900122,1200,157,100,300 +19900122,1200,157,100,250 +19900122,1200,157,100,245 +19900122,1200,157,100,225 +19900122,1200,157,100,200 +19900122,1200,157,100,175 +19900122,1200,157,100,150 +19900122,1200,157,100,125 +19900122,1200,157,100,100 +19900122,1200,157,100,70 +19900122,1200,157,100,50 +19900122,1200,157,100,30 +19900122,1200,157,100,20 +19900122,1200,157,100,10 +19900122,1200,157,100,9 +19900122,1200,157,100,7 +19900122,1200,157,100,5 +19900122,1200,157,100,3 +19900122,1200,157,100,2 +19900122,1200,157,100,1 +19900122,1200,157,210,40 +19900122,1200,135,100,1000 +19900122,1200,135,100,975 +19900122,1200,135,100,950 +19900122,1200,135,100,925 +19900122,1200,135,100,900 +19900122,1200,135,100,875 +19900122,1200,135,100,850 +19900122,1200,135,100,825 +19900122,1200,135,100,800 +19900122,1200,135,100,775 +19900122,1200,135,100,750 +19900122,1200,135,100,740 +19900122,1200,135,100,700 +19900122,1200,135,100,650 +19900122,1200,135,100,620 +19900122,1200,135,100,600 +19900122,1200,135,100,550 +19900122,1200,135,100,500 +19900122,1200,135,100,450 +19900122,1200,135,100,400 +19900122,1200,135,100,375 +19900122,1200,135,100,350 +19900122,1200,135,100,300 +19900122,1200,135,100,250 +19900122,1200,135,100,245 +19900122,1200,135,100,225 +19900122,1200,135,100,200 +19900122,1200,135,100,175 +19900122,1200,135,100,150 +19900122,1200,135,100,125 +19900122,1200,135,100,100 +19900122,1200,135,100,70 +19900122,1200,135,100,50 +19900122,1200,135,100,30 +19900122,1200,135,100,20 +19900122,1200,135,100,10 +19900122,1200,135,100,9 +19900122,1200,135,100,7 +19900122,1200,135,100,5 +19900122,1200,135,100,3 +19900122,1200,135,100,2 +19900122,1200,135,100,1 +19900122,1200,135,210,40 +19900122,1200,138,100,1000 +19900122,1200,138,100,975 +19900122,1200,138,100,950 +19900122,1200,138,100,925 +19900122,1200,138,100,900 +19900122,1200,138,100,875 +19900122,1200,138,100,850 +19900122,1200,138,100,825 +19900122,1200,138,100,800 +19900122,1200,138,100,775 +19900122,1200,138,100,750 +19900122,1200,138,100,740 +19900122,1200,138,100,700 +19900122,1200,138,100,650 +19900122,1200,138,100,620 +19900122,1200,138,100,600 +19900122,1200,138,100,550 +19900122,1200,138,100,500 +19900122,1200,138,100,450 +19900122,1200,138,100,400 +19900122,1200,138,100,375 +19900122,1200,138,100,350 +19900122,1200,138,100,300 +19900122,1200,138,100,250 +19900122,1200,138,100,245 +19900122,1200,138,100,225 +19900122,1200,138,100,200 +19900122,1200,138,100,175 +19900122,1200,138,100,150 +19900122,1200,138,100,125 +19900122,1200,138,100,100 +19900122,1200,138,100,70 +19900122,1200,138,100,50 +19900122,1200,138,100,30 +19900122,1200,138,100,20 +19900122,1200,138,100,10 +19900122,1200,138,100,9 +19900122,1200,138,100,7 +19900122,1200,138,100,5 +19900122,1200,138,100,3 +19900122,1200,138,100,2 +19900122,1200,138,100,1 +19900122,1200,138,210,40 +19900122,1200,131,109,1 +19900122,1200,131,109,2 +19900122,1200,131,109,3 +19900122,1200,131,109,4 +19900122,1200,131,109,5 +19900122,1200,131,109,6 +19900122,1200,131,109,7 +19900122,1200,131,109,8 +19900122,1200,131,109,9 +19900122,1200,131,109,10 +19900122,1200,132,109,1 +19900122,1200,132,109,2 +19900122,1200,132,109,3 +19900122,1200,132,109,4 +19900122,1200,132,109,5 +19900122,1200,132,109,6 +19900122,1200,132,109,7 +19900122,1200,132,109,8 +19900122,1200,132,109,9 +19900122,1200,132,109,10 +19900122,1200,130,109,1 +19900122,1200,130,109,2 +19900122,1200,130,109,3 +19900122,1200,130,109,4 +19900122,1200,130,109,5 +19900122,1200,130,109,6 +19900122,1200,130,109,7 +19900122,1200,130,109,8 +19900122,1200,130,109,9 +19900122,1200,130,109,10 +19900122,1200,157,109,1 +19900122,1200,157,109,2 +19900122,1200,157,109,3 +19900122,1200,157,109,4 +19900122,1200,157,109,5 +19900122,1200,157,109,6 +19900122,1200,157,109,7 +19900122,1200,157,109,8 +19900122,1200,157,109,9 +19900122,1200,157,109,10 +19900122,1200,54,109,1 +19900122,1200,54,109,2 +19900122,1200,54,109,3 +19900122,1200,54,109,4 +19900122,1200,54,109,5 +19900122,1200,54,109,6 +19900122,1200,54,109,7 +19900122,1200,54,109,8 +19900122,1200,54,109,9 +19900122,1200,54,109,10 +19900122,1200,135,109,1 +19900122,1200,135,109,2 +19900122,1200,135,109,3 +19900122,1200,135,109,4 +19900122,1200,135,109,5 +19900122,1200,135,109,6 +19900122,1200,135,109,7 +19900122,1200,135,109,8 +19900122,1200,135,109,9 +19900122,1200,135,109,10 +19900122,1200,134,109,1 +19900122,1200,152,109,1 +19900122,1200,131,100,850 +19900122,1200,132,100,850 +19900122,1200,134,100,1000 +19900122,1200,152,100,1000 +19900122,1500,131,100,850 +19900122,1500,132,100,850 +19900122,1500,134,100,1000 +19900122,1500,152,100,1000 +19900122,1800,131,100,1000 +19900122,1800,131,100,975 +19900122,1800,131,100,950 +19900122,1800,131,100,925 +19900122,1800,131,100,900 +19900122,1800,131,100,875 +19900122,1800,131,100,825 +19900122,1800,131,100,800 +19900122,1800,131,100,775 +19900122,1800,131,100,750 +19900122,1800,131,100,740 +19900122,1800,131,100,700 +19900122,1800,131,100,650 +19900122,1800,131,100,620 +19900122,1800,131,100,600 +19900122,1800,131,100,550 +19900122,1800,131,100,500 +19900122,1800,131,100,450 +19900122,1800,131,100,400 +19900122,1800,131,100,375 +19900122,1800,131,100,350 +19900122,1800,131,100,300 +19900122,1800,131,100,250 +19900122,1800,131,100,245 +19900122,1800,131,100,225 +19900122,1800,131,100,200 +19900122,1800,131,100,175 +19900122,1800,131,100,150 +19900122,1800,131,100,125 +19900122,1800,131,100,100 +19900122,1800,131,100,70 +19900122,1800,131,100,50 +19900122,1800,131,100,30 +19900122,1800,131,100,20 +19900122,1800,131,100,10 +19900122,1800,131,100,9 +19900122,1800,131,100,7 +19900122,1800,131,100,5 +19900122,1800,131,100,3 +19900122,1800,131,100,2 +19900122,1800,131,100,1 +19900122,1800,131,210,40 +19900122,1800,132,100,1000 +19900122,1800,132,100,975 +19900122,1800,132,100,950 +19900122,1800,132,100,925 +19900122,1800,132,100,900 +19900122,1800,132,100,875 +19900122,1800,132,100,825 +19900122,1800,132,100,800 +19900122,1800,132,100,775 +19900122,1800,132,100,750 +19900122,1800,132,100,740 +19900122,1800,132,100,700 +19900122,1800,132,100,650 +19900122,1800,132,100,620 +19900122,1800,132,100,600 +19900122,1800,132,100,550 +19900122,1800,132,100,500 +19900122,1800,132,100,450 +19900122,1800,132,100,400 +19900122,1800,132,100,375 +19900122,1800,132,100,350 +19900122,1800,132,100,300 +19900122,1800,132,100,250 +19900122,1800,132,100,245 +19900122,1800,132,100,225 +19900122,1800,132,100,200 +19900122,1800,132,100,175 +19900122,1800,132,100,150 +19900122,1800,132,100,125 +19900122,1800,132,100,100 +19900122,1800,132,100,70 +19900122,1800,132,100,50 +19900122,1800,132,100,30 +19900122,1800,132,100,20 +19900122,1800,132,100,10 +19900122,1800,132,100,9 +19900122,1800,132,100,7 +19900122,1800,132,100,5 +19900122,1800,132,100,3 +19900122,1800,132,100,2 +19900122,1800,132,100,1 +19900122,1800,132,210,40 +19900122,1800,130,100,1000 +19900122,1800,130,100,975 +19900122,1800,130,100,950 +19900122,1800,130,100,925 +19900122,1800,130,100,900 +19900122,1800,130,100,875 +19900122,1800,130,100,850 +19900122,1800,130,100,825 +19900122,1800,130,100,800 +19900122,1800,130,100,775 +19900122,1800,130,100,750 +19900122,1800,130,100,740 +19900122,1800,130,100,700 +19900122,1800,130,100,650 +19900122,1800,130,100,620 +19900122,1800,130,100,600 +19900122,1800,130,100,550 +19900122,1800,130,100,500 +19900122,1800,130,100,450 +19900122,1800,130,100,400 +19900122,1800,130,100,375 +19900122,1800,130,100,350 +19900122,1800,130,100,300 +19900122,1800,130,100,250 +19900122,1800,130,100,245 +19900122,1800,130,100,225 +19900122,1800,130,100,200 +19900122,1800,130,100,175 +19900122,1800,130,100,150 +19900122,1800,130,100,125 +19900122,1800,130,100,100 +19900122,1800,130,100,70 +19900122,1800,130,100,50 +19900122,1800,130,100,30 +19900122,1800,130,100,20 +19900122,1800,130,100,10 +19900122,1800,130,100,9 +19900122,1800,130,100,7 +19900122,1800,130,100,5 +19900122,1800,130,100,3 +19900122,1800,130,100,2 +19900122,1800,130,100,1 +19900122,1800,130,210,40 +19900122,1800,129,100,1000 +19900122,1800,129,100,975 +19900122,1800,129,100,950 +19900122,1800,129,100,925 +19900122,1800,129,100,900 +19900122,1800,129,100,875 +19900122,1800,129,100,850 +19900122,1800,129,100,825 +19900122,1800,129,100,800 +19900122,1800,129,100,775 +19900122,1800,129,100,750 +19900122,1800,129,100,740 +19900122,1800,129,100,700 +19900122,1800,129,100,650 +19900122,1800,129,100,620 +19900122,1800,129,100,600 +19900122,1800,129,100,550 +19900122,1800,129,100,500 +19900122,1800,129,100,450 +19900122,1800,129,100,400 +19900122,1800,129,100,375 +19900122,1800,129,100,350 +19900122,1800,129,100,300 +19900122,1800,129,100,250 +19900122,1800,129,100,245 +19900122,1800,129,100,225 +19900122,1800,129,100,200 +19900122,1800,129,100,175 +19900122,1800,129,100,150 +19900122,1800,129,100,125 +19900122,1800,129,100,100 +19900122,1800,129,100,70 +19900122,1800,129,100,50 +19900122,1800,129,100,30 +19900122,1800,129,100,20 +19900122,1800,129,100,10 +19900122,1800,129,100,9 +19900122,1800,129,100,7 +19900122,1800,129,100,5 +19900122,1800,129,100,3 +19900122,1800,129,100,2 +19900122,1800,129,100,1 +19900122,1800,129,210,40 +19900122,1800,157,100,1000 +19900122,1800,157,100,975 +19900122,1800,157,100,950 +19900122,1800,157,100,925 +19900122,1800,157,100,900 +19900122,1800,157,100,875 +19900122,1800,157,100,850 +19900122,1800,157,100,825 +19900122,1800,157,100,800 +19900122,1800,157,100,775 +19900122,1800,157,100,750 +19900122,1800,157,100,740 +19900122,1800,157,100,700 +19900122,1800,157,100,650 +19900122,1800,157,100,620 +19900122,1800,157,100,600 +19900122,1800,157,100,550 +19900122,1800,157,100,500 +19900122,1800,157,100,450 +19900122,1800,157,100,400 +19900122,1800,157,100,375 +19900122,1800,157,100,350 +19900122,1800,157,100,300 +19900122,1800,157,100,250 +19900122,1800,157,100,245 +19900122,1800,157,100,225 +19900122,1800,157,100,200 +19900122,1800,157,100,175 +19900122,1800,157,100,150 +19900122,1800,157,100,125 +19900122,1800,157,100,100 +19900122,1800,157,100,70 +19900122,1800,157,100,50 +19900122,1800,157,100,30 +19900122,1800,157,100,20 +19900122,1800,157,100,10 +19900122,1800,157,100,9 +19900122,1800,157,100,7 +19900122,1800,157,100,5 +19900122,1800,157,100,3 +19900122,1800,157,100,2 +19900122,1800,157,100,1 +19900122,1800,157,210,40 +19900122,1800,135,100,1000 +19900122,1800,135,100,975 +19900122,1800,135,100,950 +19900122,1800,135,100,925 +19900122,1800,135,100,900 +19900122,1800,135,100,875 +19900122,1800,135,100,850 +19900122,1800,135,100,825 +19900122,1800,135,100,800 +19900122,1800,135,100,775 +19900122,1800,135,100,750 +19900122,1800,135,100,740 +19900122,1800,135,100,700 +19900122,1800,135,100,650 +19900122,1800,135,100,620 +19900122,1800,135,100,600 +19900122,1800,135,100,550 +19900122,1800,135,100,500 +19900122,1800,135,100,450 +19900122,1800,135,100,400 +19900122,1800,135,100,375 +19900122,1800,135,100,350 +19900122,1800,135,100,300 +19900122,1800,135,100,250 +19900122,1800,135,100,245 +19900122,1800,135,100,225 +19900122,1800,135,100,200 +19900122,1800,135,100,175 +19900122,1800,135,100,150 +19900122,1800,135,100,125 +19900122,1800,135,100,100 +19900122,1800,135,100,70 +19900122,1800,135,100,50 +19900122,1800,135,100,30 +19900122,1800,135,100,20 +19900122,1800,135,100,10 +19900122,1800,135,100,9 +19900122,1800,135,100,7 +19900122,1800,135,100,5 +19900122,1800,135,100,3 +19900122,1800,135,100,2 +19900122,1800,135,100,1 +19900122,1800,135,210,40 +19900122,1800,138,100,1000 +19900122,1800,138,100,975 +19900122,1800,138,100,950 +19900122,1800,138,100,925 +19900122,1800,138,100,900 +19900122,1800,138,100,875 +19900122,1800,138,100,850 +19900122,1800,138,100,825 +19900122,1800,138,100,800 +19900122,1800,138,100,775 +19900122,1800,138,100,750 +19900122,1800,138,100,740 +19900122,1800,138,100,700 +19900122,1800,138,100,650 +19900122,1800,138,100,620 +19900122,1800,138,100,600 +19900122,1800,138,100,550 +19900122,1800,138,100,500 +19900122,1800,138,100,450 +19900122,1800,138,100,400 +19900122,1800,138,100,375 +19900122,1800,138,100,350 +19900122,1800,138,100,300 +19900122,1800,138,100,250 +19900122,1800,138,100,245 +19900122,1800,138,100,225 +19900122,1800,138,100,200 +19900122,1800,138,100,175 +19900122,1800,138,100,150 +19900122,1800,138,100,125 +19900122,1800,138,100,100 +19900122,1800,138,100,70 +19900122,1800,138,100,50 +19900122,1800,138,100,30 +19900122,1800,138,100,20 +19900122,1800,138,100,10 +19900122,1800,138,100,9 +19900122,1800,138,100,7 +19900122,1800,138,100,5 +19900122,1800,138,100,3 +19900122,1800,138,100,2 +19900122,1800,138,100,1 +19900122,1800,138,210,40 +19900122,1800,131,109,1 +19900122,1800,131,109,2 +19900122,1800,131,109,3 +19900122,1800,131,109,4 +19900122,1800,131,109,5 +19900122,1800,131,109,6 +19900122,1800,131,109,7 +19900122,1800,131,109,8 +19900122,1800,131,109,9 +19900122,1800,131,109,10 +19900122,1800,132,109,1 +19900122,1800,132,109,2 +19900122,1800,132,109,3 +19900122,1800,132,109,4 +19900122,1800,132,109,5 +19900122,1800,132,109,6 +19900122,1800,132,109,7 +19900122,1800,132,109,8 +19900122,1800,132,109,9 +19900122,1800,132,109,10 +19900122,1800,130,109,1 +19900122,1800,130,109,2 +19900122,1800,130,109,3 +19900122,1800,130,109,4 +19900122,1800,130,109,5 +19900122,1800,130,109,6 +19900122,1800,130,109,7 +19900122,1800,130,109,8 +19900122,1800,130,109,9 +19900122,1800,130,109,10 +19900122,1800,157,109,1 +19900122,1800,157,109,2 +19900122,1800,157,109,3 +19900122,1800,157,109,4 +19900122,1800,157,109,5 +19900122,1800,157,109,6 +19900122,1800,157,109,7 +19900122,1800,157,109,8 +19900122,1800,157,109,9 +19900122,1800,157,109,10 +19900122,1800,54,109,1 +19900122,1800,54,109,2 +19900122,1800,54,109,3 +19900122,1800,54,109,4 +19900122,1800,54,109,5 +19900122,1800,54,109,6 +19900122,1800,54,109,7 +19900122,1800,54,109,8 +19900122,1800,54,109,9 +19900122,1800,54,109,10 +19900122,1800,135,109,1 +19900122,1800,135,109,2 +19900122,1800,135,109,3 +19900122,1800,135,109,4 +19900122,1800,135,109,5 +19900122,1800,135,109,6 +19900122,1800,135,109,7 +19900122,1800,135,109,8 +19900122,1800,135,109,9 +19900122,1800,135,109,10 +19900122,1800,134,109,1 +19900122,1800,152,109,1 +19900122,1800,131,100,850 +19900122,1800,132,100,850 +19900122,1800,134,100,1000 +19900122,1800,152,100,1000 +19900122,2100,131,100,850 +19900122,2100,132,100,850 +19900122,2100,134,100,1000 +19900122,2100,152,100,1000 +19900123,0,131,100,1000 +19900123,0,131,100,975 +19900123,0,131,100,950 +19900123,0,131,100,925 +19900123,0,131,100,900 +19900123,0,131,100,875 +19900123,0,131,100,825 +19900123,0,131,100,800 +19900123,0,131,100,775 +19900123,0,131,100,750 +19900123,0,131,100,740 +19900123,0,131,100,700 +19900123,0,131,100,650 +19900123,0,131,100,620 +19900123,0,131,100,600 +19900123,0,131,100,550 +19900123,0,131,100,500 +19900123,0,131,100,450 +19900123,0,131,100,400 +19900123,0,131,100,375 +19900123,0,131,100,350 +19900123,0,131,100,300 +19900123,0,131,100,250 +19900123,0,131,100,245 +19900123,0,131,100,225 +19900123,0,131,100,200 +19900123,0,131,100,175 +19900123,0,131,100,150 +19900123,0,131,100,125 +19900123,0,131,100,100 +19900123,0,131,100,70 +19900123,0,131,100,50 +19900123,0,131,100,30 +19900123,0,131,100,20 +19900123,0,131,100,10 +19900123,0,131,100,9 +19900123,0,131,100,7 +19900123,0,131,100,5 +19900123,0,131,100,3 +19900123,0,131,100,2 +19900123,0,131,100,1 +19900123,0,131,210,40 +19900123,0,132,100,1000 +19900123,0,132,100,975 +19900123,0,132,100,950 +19900123,0,132,100,925 +19900123,0,132,100,900 +19900123,0,132,100,875 +19900123,0,132,100,825 +19900123,0,132,100,800 +19900123,0,132,100,775 +19900123,0,132,100,750 +19900123,0,132,100,740 +19900123,0,132,100,700 +19900123,0,132,100,650 +19900123,0,132,100,620 +19900123,0,132,100,600 +19900123,0,132,100,550 +19900123,0,132,100,500 +19900123,0,132,100,450 +19900123,0,132,100,400 +19900123,0,132,100,375 +19900123,0,132,100,350 +19900123,0,132,100,300 +19900123,0,132,100,250 +19900123,0,132,100,245 +19900123,0,132,100,225 +19900123,0,132,100,200 +19900123,0,132,100,175 +19900123,0,132,100,150 +19900123,0,132,100,125 +19900123,0,132,100,100 +19900123,0,132,100,70 +19900123,0,132,100,50 +19900123,0,132,100,30 +19900123,0,132,100,20 +19900123,0,132,100,10 +19900123,0,132,100,9 +19900123,0,132,100,7 +19900123,0,132,100,5 +19900123,0,132,100,3 +19900123,0,132,100,2 +19900123,0,132,100,1 +19900123,0,132,210,40 +19900123,0,130,100,1000 +19900123,0,130,100,975 +19900123,0,130,100,950 +19900123,0,130,100,925 +19900123,0,130,100,900 +19900123,0,130,100,875 +19900123,0,130,100,850 +19900123,0,130,100,825 +19900123,0,130,100,800 +19900123,0,130,100,775 +19900123,0,130,100,750 +19900123,0,130,100,740 +19900123,0,130,100,700 +19900123,0,130,100,650 +19900123,0,130,100,620 +19900123,0,130,100,600 +19900123,0,130,100,550 +19900123,0,130,100,500 +19900123,0,130,100,450 +19900123,0,130,100,400 +19900123,0,130,100,375 +19900123,0,130,100,350 +19900123,0,130,100,300 +19900123,0,130,100,250 +19900123,0,130,100,245 +19900123,0,130,100,225 +19900123,0,130,100,200 +19900123,0,130,100,175 +19900123,0,130,100,150 +19900123,0,130,100,125 +19900123,0,130,100,100 +19900123,0,130,100,70 +19900123,0,130,100,50 +19900123,0,130,100,30 +19900123,0,130,100,20 +19900123,0,130,100,10 +19900123,0,130,100,9 +19900123,0,130,100,7 +19900123,0,130,100,5 +19900123,0,130,100,3 +19900123,0,130,100,2 +19900123,0,130,100,1 +19900123,0,130,210,40 +19900123,0,129,100,1000 +19900123,0,129,100,975 +19900123,0,129,100,950 +19900123,0,129,100,925 +19900123,0,129,100,900 +19900123,0,129,100,875 +19900123,0,129,100,850 +19900123,0,129,100,825 +19900123,0,129,100,800 +19900123,0,129,100,775 +19900123,0,129,100,750 +19900123,0,129,100,740 +19900123,0,129,100,700 +19900123,0,129,100,650 +19900123,0,129,100,620 +19900123,0,129,100,600 +19900123,0,129,100,550 +19900123,0,129,100,500 +19900123,0,129,100,450 +19900123,0,129,100,400 +19900123,0,129,100,375 +19900123,0,129,100,350 +19900123,0,129,100,300 +19900123,0,129,100,250 +19900123,0,129,100,245 +19900123,0,129,100,225 +19900123,0,129,100,200 +19900123,0,129,100,175 +19900123,0,129,100,150 +19900123,0,129,100,125 +19900123,0,129,100,100 +19900123,0,129,100,70 +19900123,0,129,100,50 +19900123,0,129,100,30 +19900123,0,129,100,20 +19900123,0,129,100,10 +19900123,0,129,100,9 +19900123,0,129,100,7 +19900123,0,129,100,5 +19900123,0,129,100,3 +19900123,0,129,100,2 +19900123,0,129,100,1 +19900123,0,129,210,40 +19900123,0,157,100,1000 +19900123,0,157,100,975 +19900123,0,157,100,950 +19900123,0,157,100,925 +19900123,0,157,100,900 +19900123,0,157,100,875 +19900123,0,157,100,850 +19900123,0,157,100,825 +19900123,0,157,100,800 +19900123,0,157,100,775 +19900123,0,157,100,750 +19900123,0,157,100,740 +19900123,0,157,100,700 +19900123,0,157,100,650 +19900123,0,157,100,620 +19900123,0,157,100,600 +19900123,0,157,100,550 +19900123,0,157,100,500 +19900123,0,157,100,450 +19900123,0,157,100,400 +19900123,0,157,100,375 +19900123,0,157,100,350 +19900123,0,157,100,300 +19900123,0,157,100,250 +19900123,0,157,100,245 +19900123,0,157,100,225 +19900123,0,157,100,200 +19900123,0,157,100,175 +19900123,0,157,100,150 +19900123,0,157,100,125 +19900123,0,157,100,100 +19900123,0,157,100,70 +19900123,0,157,100,50 +19900123,0,157,100,30 +19900123,0,157,100,20 +19900123,0,157,100,10 +19900123,0,157,100,9 +19900123,0,157,100,7 +19900123,0,157,100,5 +19900123,0,157,100,3 +19900123,0,157,100,2 +19900123,0,157,100,1 +19900123,0,157,210,40 +19900123,0,135,100,1000 +19900123,0,135,100,975 +19900123,0,135,100,950 +19900123,0,135,100,925 +19900123,0,135,100,900 +19900123,0,135,100,875 +19900123,0,135,100,850 +19900123,0,135,100,825 +19900123,0,135,100,800 +19900123,0,135,100,775 +19900123,0,135,100,750 +19900123,0,135,100,740 +19900123,0,135,100,700 +19900123,0,135,100,650 +19900123,0,135,100,620 +19900123,0,135,100,600 +19900123,0,135,100,550 +19900123,0,135,100,500 +19900123,0,135,100,450 +19900123,0,135,100,400 +19900123,0,135,100,375 +19900123,0,135,100,350 +19900123,0,135,100,300 +19900123,0,135,100,250 +19900123,0,135,100,245 +19900123,0,135,100,225 +19900123,0,135,100,200 +19900123,0,135,100,175 +19900123,0,135,100,150 +19900123,0,135,100,125 +19900123,0,135,100,100 +19900123,0,135,100,70 +19900123,0,135,100,50 +19900123,0,135,100,30 +19900123,0,135,100,20 +19900123,0,135,100,10 +19900123,0,135,100,9 +19900123,0,135,100,7 +19900123,0,135,100,5 +19900123,0,135,100,3 +19900123,0,135,100,2 +19900123,0,135,100,1 +19900123,0,135,210,40 +19900123,0,138,100,1000 +19900123,0,138,100,975 +19900123,0,138,100,950 +19900123,0,138,100,925 +19900123,0,138,100,900 +19900123,0,138,100,875 +19900123,0,138,100,850 +19900123,0,138,100,825 +19900123,0,138,100,800 +19900123,0,138,100,775 +19900123,0,138,100,750 +19900123,0,138,100,740 +19900123,0,138,100,700 +19900123,0,138,100,650 +19900123,0,138,100,620 +19900123,0,138,100,600 +19900123,0,138,100,550 +19900123,0,138,100,500 +19900123,0,138,100,450 +19900123,0,138,100,400 +19900123,0,138,100,375 +19900123,0,138,100,350 +19900123,0,138,100,300 +19900123,0,138,100,250 +19900123,0,138,100,245 +19900123,0,138,100,225 +19900123,0,138,100,200 +19900123,0,138,100,175 +19900123,0,138,100,150 +19900123,0,138,100,125 +19900123,0,138,100,100 +19900123,0,138,100,70 +19900123,0,138,100,50 +19900123,0,138,100,30 +19900123,0,138,100,20 +19900123,0,138,100,10 +19900123,0,138,100,9 +19900123,0,138,100,7 +19900123,0,138,100,5 +19900123,0,138,100,3 +19900123,0,138,100,2 +19900123,0,138,100,1 +19900123,0,138,210,40 +19900123,0,131,109,1 +19900123,0,131,109,2 +19900123,0,131,109,3 +19900123,0,131,109,4 +19900123,0,131,109,5 +19900123,0,131,109,6 +19900123,0,131,109,7 +19900123,0,131,109,8 +19900123,0,131,109,9 +19900123,0,131,109,10 +19900123,0,132,109,1 +19900123,0,132,109,2 +19900123,0,132,109,3 +19900123,0,132,109,4 +19900123,0,132,109,5 +19900123,0,132,109,6 +19900123,0,132,109,7 +19900123,0,132,109,8 +19900123,0,132,109,9 +19900123,0,132,109,10 +19900123,0,130,109,1 +19900123,0,130,109,2 +19900123,0,130,109,3 +19900123,0,130,109,4 +19900123,0,130,109,5 +19900123,0,130,109,6 +19900123,0,130,109,7 +19900123,0,130,109,8 +19900123,0,130,109,9 +19900123,0,130,109,10 +19900123,0,157,109,1 +19900123,0,157,109,2 +19900123,0,157,109,3 +19900123,0,157,109,4 +19900123,0,157,109,5 +19900123,0,157,109,6 +19900123,0,157,109,7 +19900123,0,157,109,8 +19900123,0,157,109,9 +19900123,0,157,109,10 +19900123,0,54,109,1 +19900123,0,54,109,2 +19900123,0,54,109,3 +19900123,0,54,109,4 +19900123,0,54,109,5 +19900123,0,54,109,6 +19900123,0,54,109,7 +19900123,0,54,109,8 +19900123,0,54,109,9 +19900123,0,54,109,10 +19900123,0,135,109,1 +19900123,0,135,109,2 +19900123,0,135,109,3 +19900123,0,135,109,4 +19900123,0,135,109,5 +19900123,0,135,109,6 +19900123,0,135,109,7 +19900123,0,135,109,8 +19900123,0,135,109,9 +19900123,0,135,109,10 +19900123,0,134,109,1 +19900123,0,152,109,1 +19900123,0,131,100,850 +19900123,0,132,100,850 +19900123,0,134,100,1000 +19900123,0,152,100,1000 +19900123,300,131,100,850 +19900123,300,132,100,850 +19900123,300,134,100,1000 +19900123,300,152,100,1000 +19900123,600,131,100,1000 +19900123,600,131,100,975 +19900123,600,131,100,950 +19900123,600,131,100,925 +19900123,600,131,100,900 +19900123,600,131,100,875 +19900123,600,131,100,825 +19900123,600,131,100,800 +19900123,600,131,100,775 +19900123,600,131,100,750 +19900123,600,131,100,740 +19900123,600,131,100,700 +19900123,600,131,100,650 +19900123,600,131,100,620 +19900123,600,131,100,600 +19900123,600,131,100,550 +19900123,600,131,100,500 +19900123,600,131,100,450 +19900123,600,131,100,400 +19900123,600,131,100,375 +19900123,600,131,100,350 +19900123,600,131,100,300 +19900123,600,131,100,250 +19900123,600,131,100,245 +19900123,600,131,100,225 +19900123,600,131,100,200 +19900123,600,131,100,175 +19900123,600,131,100,150 +19900123,600,131,100,125 +19900123,600,131,100,100 +19900123,600,131,100,70 +19900123,600,131,100,50 +19900123,600,131,100,30 +19900123,600,131,100,20 +19900123,600,131,100,10 +19900123,600,131,100,9 +19900123,600,131,100,7 +19900123,600,131,100,5 +19900123,600,131,100,3 +19900123,600,131,100,2 +19900123,600,131,100,1 +19900123,600,131,210,40 +19900123,600,132,100,1000 +19900123,600,132,100,975 +19900123,600,132,100,950 +19900123,600,132,100,925 +19900123,600,132,100,900 +19900123,600,132,100,875 +19900123,600,132,100,825 +19900123,600,132,100,800 +19900123,600,132,100,775 +19900123,600,132,100,750 +19900123,600,132,100,740 +19900123,600,132,100,700 +19900123,600,132,100,650 +19900123,600,132,100,620 +19900123,600,132,100,600 +19900123,600,132,100,550 +19900123,600,132,100,500 +19900123,600,132,100,450 +19900123,600,132,100,400 +19900123,600,132,100,375 +19900123,600,132,100,350 +19900123,600,132,100,300 +19900123,600,132,100,250 +19900123,600,132,100,245 +19900123,600,132,100,225 +19900123,600,132,100,200 +19900123,600,132,100,175 +19900123,600,132,100,150 +19900123,600,132,100,125 +19900123,600,132,100,100 +19900123,600,132,100,70 +19900123,600,132,100,50 +19900123,600,132,100,30 +19900123,600,132,100,20 +19900123,600,132,100,10 +19900123,600,132,100,9 +19900123,600,132,100,7 +19900123,600,132,100,5 +19900123,600,132,100,3 +19900123,600,132,100,2 +19900123,600,132,100,1 +19900123,600,132,210,40 +19900123,600,130,100,1000 +19900123,600,130,100,975 +19900123,600,130,100,950 +19900123,600,130,100,925 +19900123,600,130,100,900 +19900123,600,130,100,875 +19900123,600,130,100,850 +19900123,600,130,100,825 +19900123,600,130,100,800 +19900123,600,130,100,775 +19900123,600,130,100,750 +19900123,600,130,100,740 +19900123,600,130,100,700 +19900123,600,130,100,650 +19900123,600,130,100,620 +19900123,600,130,100,600 +19900123,600,130,100,550 +19900123,600,130,100,500 +19900123,600,130,100,450 +19900123,600,130,100,400 +19900123,600,130,100,375 +19900123,600,130,100,350 +19900123,600,130,100,300 +19900123,600,130,100,250 +19900123,600,130,100,245 +19900123,600,130,100,225 +19900123,600,130,100,200 +19900123,600,130,100,175 +19900123,600,130,100,150 +19900123,600,130,100,125 +19900123,600,130,100,100 +19900123,600,130,100,70 +19900123,600,130,100,50 +19900123,600,130,100,30 +19900123,600,130,100,20 +19900123,600,130,100,10 +19900123,600,130,100,9 +19900123,600,130,100,7 +19900123,600,130,100,5 +19900123,600,130,100,3 +19900123,600,130,100,2 +19900123,600,130,100,1 +19900123,600,130,210,40 +19900123,600,129,100,1000 +19900123,600,129,100,975 +19900123,600,129,100,950 +19900123,600,129,100,925 +19900123,600,129,100,900 +19900123,600,129,100,875 +19900123,600,129,100,850 +19900123,600,129,100,825 +19900123,600,129,100,800 +19900123,600,129,100,775 +19900123,600,129,100,750 +19900123,600,129,100,740 +19900123,600,129,100,700 +19900123,600,129,100,650 +19900123,600,129,100,620 +19900123,600,129,100,600 +19900123,600,129,100,550 +19900123,600,129,100,500 +19900123,600,129,100,450 +19900123,600,129,100,400 +19900123,600,129,100,375 +19900123,600,129,100,350 +19900123,600,129,100,300 +19900123,600,129,100,250 +19900123,600,129,100,245 +19900123,600,129,100,225 +19900123,600,129,100,200 +19900123,600,129,100,175 +19900123,600,129,100,150 +19900123,600,129,100,125 +19900123,600,129,100,100 +19900123,600,129,100,70 +19900123,600,129,100,50 +19900123,600,129,100,30 +19900123,600,129,100,20 +19900123,600,129,100,10 +19900123,600,129,100,9 +19900123,600,129,100,7 +19900123,600,129,100,5 +19900123,600,129,100,3 +19900123,600,129,100,2 +19900123,600,129,100,1 +19900123,600,129,210,40 +19900123,600,157,100,1000 +19900123,600,157,100,975 +19900123,600,157,100,950 +19900123,600,157,100,925 +19900123,600,157,100,900 +19900123,600,157,100,875 +19900123,600,157,100,850 +19900123,600,157,100,825 +19900123,600,157,100,800 +19900123,600,157,100,775 +19900123,600,157,100,750 +19900123,600,157,100,740 +19900123,600,157,100,700 +19900123,600,157,100,650 +19900123,600,157,100,620 +19900123,600,157,100,600 +19900123,600,157,100,550 +19900123,600,157,100,500 +19900123,600,157,100,450 +19900123,600,157,100,400 +19900123,600,157,100,375 +19900123,600,157,100,350 +19900123,600,157,100,300 +19900123,600,157,100,250 +19900123,600,157,100,245 +19900123,600,157,100,225 +19900123,600,157,100,200 +19900123,600,157,100,175 +19900123,600,157,100,150 +19900123,600,157,100,125 +19900123,600,157,100,100 +19900123,600,157,100,70 +19900123,600,157,100,50 +19900123,600,157,100,30 +19900123,600,157,100,20 +19900123,600,157,100,10 +19900123,600,157,100,9 +19900123,600,157,100,7 +19900123,600,157,100,5 +19900123,600,157,100,3 +19900123,600,157,100,2 +19900123,600,157,100,1 +19900123,600,157,210,40 +19900123,600,135,100,1000 +19900123,600,135,100,975 +19900123,600,135,100,950 +19900123,600,135,100,925 +19900123,600,135,100,900 +19900123,600,135,100,875 +19900123,600,135,100,850 +19900123,600,135,100,825 +19900123,600,135,100,800 +19900123,600,135,100,775 +19900123,600,135,100,750 +19900123,600,135,100,740 +19900123,600,135,100,700 +19900123,600,135,100,650 +19900123,600,135,100,620 +19900123,600,135,100,600 +19900123,600,135,100,550 +19900123,600,135,100,500 +19900123,600,135,100,450 +19900123,600,135,100,400 +19900123,600,135,100,375 +19900123,600,135,100,350 +19900123,600,135,100,300 +19900123,600,135,100,250 +19900123,600,135,100,245 +19900123,600,135,100,225 +19900123,600,135,100,200 +19900123,600,135,100,175 +19900123,600,135,100,150 +19900123,600,135,100,125 +19900123,600,135,100,100 +19900123,600,135,100,70 +19900123,600,135,100,50 +19900123,600,135,100,30 +19900123,600,135,100,20 +19900123,600,135,100,10 +19900123,600,135,100,9 +19900123,600,135,100,7 +19900123,600,135,100,5 +19900123,600,135,100,3 +19900123,600,135,100,2 +19900123,600,135,100,1 +19900123,600,135,210,40 +19900123,600,138,100,1000 +19900123,600,138,100,975 +19900123,600,138,100,950 +19900123,600,138,100,925 +19900123,600,138,100,900 +19900123,600,138,100,875 +19900123,600,138,100,850 +19900123,600,138,100,825 +19900123,600,138,100,800 +19900123,600,138,100,775 +19900123,600,138,100,750 +19900123,600,138,100,740 +19900123,600,138,100,700 +19900123,600,138,100,650 +19900123,600,138,100,620 +19900123,600,138,100,600 +19900123,600,138,100,550 +19900123,600,138,100,500 +19900123,600,138,100,450 +19900123,600,138,100,400 +19900123,600,138,100,375 +19900123,600,138,100,350 +19900123,600,138,100,300 +19900123,600,138,100,250 +19900123,600,138,100,245 +19900123,600,138,100,225 +19900123,600,138,100,200 +19900123,600,138,100,175 +19900123,600,138,100,150 +19900123,600,138,100,125 +19900123,600,138,100,100 +19900123,600,138,100,70 +19900123,600,138,100,50 +19900123,600,138,100,30 +19900123,600,138,100,20 +19900123,600,138,100,10 +19900123,600,138,100,9 +19900123,600,138,100,7 +19900123,600,138,100,5 +19900123,600,138,100,3 +19900123,600,138,100,2 +19900123,600,138,100,1 +19900123,600,138,210,40 +19900123,600,131,109,1 +19900123,600,131,109,2 +19900123,600,131,109,3 +19900123,600,131,109,4 +19900123,600,131,109,5 +19900123,600,131,109,6 +19900123,600,131,109,7 +19900123,600,131,109,8 +19900123,600,131,109,9 +19900123,600,131,109,10 +19900123,600,132,109,1 +19900123,600,132,109,2 +19900123,600,132,109,3 +19900123,600,132,109,4 +19900123,600,132,109,5 +19900123,600,132,109,6 +19900123,600,132,109,7 +19900123,600,132,109,8 +19900123,600,132,109,9 +19900123,600,132,109,10 +19900123,600,130,109,1 +19900123,600,130,109,2 +19900123,600,130,109,3 +19900123,600,130,109,4 +19900123,600,130,109,5 +19900123,600,130,109,6 +19900123,600,130,109,7 +19900123,600,130,109,8 +19900123,600,130,109,9 +19900123,600,130,109,10 +19900123,600,157,109,1 +19900123,600,157,109,2 +19900123,600,157,109,3 +19900123,600,157,109,4 +19900123,600,157,109,5 +19900123,600,157,109,6 +19900123,600,157,109,7 +19900123,600,157,109,8 +19900123,600,157,109,9 +19900123,600,157,109,10 +19900123,600,54,109,1 +19900123,600,54,109,2 +19900123,600,54,109,3 +19900123,600,54,109,4 +19900123,600,54,109,5 +19900123,600,54,109,6 +19900123,600,54,109,7 +19900123,600,54,109,8 +19900123,600,54,109,9 +19900123,600,54,109,10 +19900123,600,135,109,1 +19900123,600,135,109,2 +19900123,600,135,109,3 +19900123,600,135,109,4 +19900123,600,135,109,5 +19900123,600,135,109,6 +19900123,600,135,109,7 +19900123,600,135,109,8 +19900123,600,135,109,9 +19900123,600,135,109,10 +19900123,600,134,109,1 +19900123,600,152,109,1 +19900123,600,131,100,850 +19900123,600,132,100,850 +19900123,600,134,100,1000 +19900123,600,152,100,1000 +19900123,900,131,100,850 +19900123,900,132,100,850 +19900123,900,134,100,1000 +19900123,900,152,100,1000 +19900123,1200,131,100,1000 +19900123,1200,131,100,975 +19900123,1200,131,100,950 +19900123,1200,131,100,925 +19900123,1200,131,100,900 +19900123,1200,131,100,875 +19900123,1200,131,100,825 +19900123,1200,131,100,800 +19900123,1200,131,100,775 +19900123,1200,131,100,750 +19900123,1200,131,100,740 +19900123,1200,131,100,700 +19900123,1200,131,100,650 +19900123,1200,131,100,620 +19900123,1200,131,100,600 +19900123,1200,131,100,550 +19900123,1200,131,100,500 +19900123,1200,131,100,450 +19900123,1200,131,100,400 +19900123,1200,131,100,375 +19900123,1200,131,100,350 +19900123,1200,131,100,300 +19900123,1200,131,100,250 +19900123,1200,131,100,245 +19900123,1200,131,100,225 +19900123,1200,131,100,200 +19900123,1200,131,100,175 +19900123,1200,131,100,150 +19900123,1200,131,100,125 +19900123,1200,131,100,100 +19900123,1200,131,100,70 +19900123,1200,131,100,50 +19900123,1200,131,100,30 +19900123,1200,131,100,20 +19900123,1200,131,100,10 +19900123,1200,131,100,9 +19900123,1200,131,100,7 +19900123,1200,131,100,5 +19900123,1200,131,100,3 +19900123,1200,131,100,2 +19900123,1200,131,100,1 +19900123,1200,131,210,40 +19900123,1200,132,100,1000 +19900123,1200,132,100,975 +19900123,1200,132,100,950 +19900123,1200,132,100,925 +19900123,1200,132,100,900 +19900123,1200,132,100,875 +19900123,1200,132,100,825 +19900123,1200,132,100,800 +19900123,1200,132,100,775 +19900123,1200,132,100,750 +19900123,1200,132,100,740 +19900123,1200,132,100,700 +19900123,1200,132,100,650 +19900123,1200,132,100,620 +19900123,1200,132,100,600 +19900123,1200,132,100,550 +19900123,1200,132,100,500 +19900123,1200,132,100,450 +19900123,1200,132,100,400 +19900123,1200,132,100,375 +19900123,1200,132,100,350 +19900123,1200,132,100,300 +19900123,1200,132,100,250 +19900123,1200,132,100,245 +19900123,1200,132,100,225 +19900123,1200,132,100,200 +19900123,1200,132,100,175 +19900123,1200,132,100,150 +19900123,1200,132,100,125 +19900123,1200,132,100,100 +19900123,1200,132,100,70 +19900123,1200,132,100,50 +19900123,1200,132,100,30 +19900123,1200,132,100,20 +19900123,1200,132,100,10 +19900123,1200,132,100,9 +19900123,1200,132,100,7 +19900123,1200,132,100,5 +19900123,1200,132,100,3 +19900123,1200,132,100,2 +19900123,1200,132,100,1 +19900123,1200,132,210,40 +19900123,1200,130,100,1000 +19900123,1200,130,100,975 +19900123,1200,130,100,950 +19900123,1200,130,100,925 +19900123,1200,130,100,900 +19900123,1200,130,100,875 +19900123,1200,130,100,850 +19900123,1200,130,100,825 +19900123,1200,130,100,800 +19900123,1200,130,100,775 +19900123,1200,130,100,750 +19900123,1200,130,100,740 +19900123,1200,130,100,700 +19900123,1200,130,100,650 +19900123,1200,130,100,620 +19900123,1200,130,100,600 +19900123,1200,130,100,550 +19900123,1200,130,100,500 +19900123,1200,130,100,450 +19900123,1200,130,100,400 +19900123,1200,130,100,375 +19900123,1200,130,100,350 +19900123,1200,130,100,300 +19900123,1200,130,100,250 +19900123,1200,130,100,245 +19900123,1200,130,100,225 +19900123,1200,130,100,200 +19900123,1200,130,100,175 +19900123,1200,130,100,150 +19900123,1200,130,100,125 +19900123,1200,130,100,100 +19900123,1200,130,100,70 +19900123,1200,130,100,50 +19900123,1200,130,100,30 +19900123,1200,130,100,20 +19900123,1200,130,100,10 +19900123,1200,130,100,9 +19900123,1200,130,100,7 +19900123,1200,130,100,5 +19900123,1200,130,100,3 +19900123,1200,130,100,2 +19900123,1200,130,100,1 +19900123,1200,130,210,40 +19900123,1200,129,100,1000 +19900123,1200,129,100,975 +19900123,1200,129,100,950 +19900123,1200,129,100,925 +19900123,1200,129,100,900 +19900123,1200,129,100,875 +19900123,1200,129,100,850 +19900123,1200,129,100,825 +19900123,1200,129,100,800 +19900123,1200,129,100,775 +19900123,1200,129,100,750 +19900123,1200,129,100,740 +19900123,1200,129,100,700 +19900123,1200,129,100,650 +19900123,1200,129,100,620 +19900123,1200,129,100,600 +19900123,1200,129,100,550 +19900123,1200,129,100,500 +19900123,1200,129,100,450 +19900123,1200,129,100,400 +19900123,1200,129,100,375 +19900123,1200,129,100,350 +19900123,1200,129,100,300 +19900123,1200,129,100,250 +19900123,1200,129,100,245 +19900123,1200,129,100,225 +19900123,1200,129,100,200 +19900123,1200,129,100,175 +19900123,1200,129,100,150 +19900123,1200,129,100,125 +19900123,1200,129,100,100 +19900123,1200,129,100,70 +19900123,1200,129,100,50 +19900123,1200,129,100,30 +19900123,1200,129,100,20 +19900123,1200,129,100,10 +19900123,1200,129,100,9 +19900123,1200,129,100,7 +19900123,1200,129,100,5 +19900123,1200,129,100,3 +19900123,1200,129,100,2 +19900123,1200,129,100,1 +19900123,1200,129,210,40 +19900123,1200,157,100,1000 +19900123,1200,157,100,975 +19900123,1200,157,100,950 +19900123,1200,157,100,925 +19900123,1200,157,100,900 +19900123,1200,157,100,875 +19900123,1200,157,100,850 +19900123,1200,157,100,825 +19900123,1200,157,100,800 +19900123,1200,157,100,775 +19900123,1200,157,100,750 +19900123,1200,157,100,740 +19900123,1200,157,100,700 +19900123,1200,157,100,650 +19900123,1200,157,100,620 +19900123,1200,157,100,600 +19900123,1200,157,100,550 +19900123,1200,157,100,500 +19900123,1200,157,100,450 +19900123,1200,157,100,400 +19900123,1200,157,100,375 +19900123,1200,157,100,350 +19900123,1200,157,100,300 +19900123,1200,157,100,250 +19900123,1200,157,100,245 +19900123,1200,157,100,225 +19900123,1200,157,100,200 +19900123,1200,157,100,175 +19900123,1200,157,100,150 +19900123,1200,157,100,125 +19900123,1200,157,100,100 +19900123,1200,157,100,70 +19900123,1200,157,100,50 +19900123,1200,157,100,30 +19900123,1200,157,100,20 +19900123,1200,157,100,10 +19900123,1200,157,100,9 +19900123,1200,157,100,7 +19900123,1200,157,100,5 +19900123,1200,157,100,3 +19900123,1200,157,100,2 +19900123,1200,157,100,1 +19900123,1200,157,210,40 +19900123,1200,135,100,1000 +19900123,1200,135,100,975 +19900123,1200,135,100,950 +19900123,1200,135,100,925 +19900123,1200,135,100,900 +19900123,1200,135,100,875 +19900123,1200,135,100,850 +19900123,1200,135,100,825 +19900123,1200,135,100,800 +19900123,1200,135,100,775 +19900123,1200,135,100,750 +19900123,1200,135,100,740 +19900123,1200,135,100,700 +19900123,1200,135,100,650 +19900123,1200,135,100,620 +19900123,1200,135,100,600 +19900123,1200,135,100,550 +19900123,1200,135,100,500 +19900123,1200,135,100,450 +19900123,1200,135,100,400 +19900123,1200,135,100,375 +19900123,1200,135,100,350 +19900123,1200,135,100,300 +19900123,1200,135,100,250 +19900123,1200,135,100,245 +19900123,1200,135,100,225 +19900123,1200,135,100,200 +19900123,1200,135,100,175 +19900123,1200,135,100,150 +19900123,1200,135,100,125 +19900123,1200,135,100,100 +19900123,1200,135,100,70 +19900123,1200,135,100,50 +19900123,1200,135,100,30 +19900123,1200,135,100,20 +19900123,1200,135,100,10 +19900123,1200,135,100,9 +19900123,1200,135,100,7 +19900123,1200,135,100,5 +19900123,1200,135,100,3 +19900123,1200,135,100,2 +19900123,1200,135,100,1 +19900123,1200,135,210,40 +19900123,1200,138,100,1000 +19900123,1200,138,100,975 +19900123,1200,138,100,950 +19900123,1200,138,100,925 +19900123,1200,138,100,900 +19900123,1200,138,100,875 +19900123,1200,138,100,850 +19900123,1200,138,100,825 +19900123,1200,138,100,800 +19900123,1200,138,100,775 +19900123,1200,138,100,750 +19900123,1200,138,100,740 +19900123,1200,138,100,700 +19900123,1200,138,100,650 +19900123,1200,138,100,620 +19900123,1200,138,100,600 +19900123,1200,138,100,550 +19900123,1200,138,100,500 +19900123,1200,138,100,450 +19900123,1200,138,100,400 +19900123,1200,138,100,375 +19900123,1200,138,100,350 +19900123,1200,138,100,300 +19900123,1200,138,100,250 +19900123,1200,138,100,245 +19900123,1200,138,100,225 +19900123,1200,138,100,200 +19900123,1200,138,100,175 +19900123,1200,138,100,150 +19900123,1200,138,100,125 +19900123,1200,138,100,100 +19900123,1200,138,100,70 +19900123,1200,138,100,50 +19900123,1200,138,100,30 +19900123,1200,138,100,20 +19900123,1200,138,100,10 +19900123,1200,138,100,9 +19900123,1200,138,100,7 +19900123,1200,138,100,5 +19900123,1200,138,100,3 +19900123,1200,138,100,2 +19900123,1200,138,100,1 +19900123,1200,138,210,40 +19900123,1200,131,109,1 +19900123,1200,131,109,2 +19900123,1200,131,109,3 +19900123,1200,131,109,4 +19900123,1200,131,109,5 +19900123,1200,131,109,6 +19900123,1200,131,109,7 +19900123,1200,131,109,8 +19900123,1200,131,109,9 +19900123,1200,131,109,10 +19900123,1200,132,109,1 +19900123,1200,132,109,2 +19900123,1200,132,109,3 +19900123,1200,132,109,4 +19900123,1200,132,109,5 +19900123,1200,132,109,6 +19900123,1200,132,109,7 +19900123,1200,132,109,8 +19900123,1200,132,109,9 +19900123,1200,132,109,10 +19900123,1200,130,109,1 +19900123,1200,130,109,2 +19900123,1200,130,109,3 +19900123,1200,130,109,4 +19900123,1200,130,109,5 +19900123,1200,130,109,6 +19900123,1200,130,109,7 +19900123,1200,130,109,8 +19900123,1200,130,109,9 +19900123,1200,130,109,10 +19900123,1200,157,109,1 +19900123,1200,157,109,2 +19900123,1200,157,109,3 +19900123,1200,157,109,4 +19900123,1200,157,109,5 +19900123,1200,157,109,6 +19900123,1200,157,109,7 +19900123,1200,157,109,8 +19900123,1200,157,109,9 +19900123,1200,157,109,10 +19900123,1200,54,109,1 +19900123,1200,54,109,2 +19900123,1200,54,109,3 +19900123,1200,54,109,4 +19900123,1200,54,109,5 +19900123,1200,54,109,6 +19900123,1200,54,109,7 +19900123,1200,54,109,8 +19900123,1200,54,109,9 +19900123,1200,54,109,10 +19900123,1200,135,109,1 +19900123,1200,135,109,2 +19900123,1200,135,109,3 +19900123,1200,135,109,4 +19900123,1200,135,109,5 +19900123,1200,135,109,6 +19900123,1200,135,109,7 +19900123,1200,135,109,8 +19900123,1200,135,109,9 +19900123,1200,135,109,10 +19900123,1200,134,109,1 +19900123,1200,152,109,1 +19900123,1200,131,100,850 +19900123,1200,132,100,850 +19900123,1200,134,100,1000 +19900123,1200,152,100,1000 +19900123,1500,131,100,850 +19900123,1500,132,100,850 +19900123,1500,134,100,1000 +19900123,1500,152,100,1000 +19900123,1800,131,100,1000 +19900123,1800,131,100,975 +19900123,1800,131,100,950 +19900123,1800,131,100,925 +19900123,1800,131,100,900 +19900123,1800,131,100,875 +19900123,1800,131,100,825 +19900123,1800,131,100,800 +19900123,1800,131,100,775 +19900123,1800,131,100,750 +19900123,1800,131,100,740 +19900123,1800,131,100,700 +19900123,1800,131,100,650 +19900123,1800,131,100,620 +19900123,1800,131,100,600 +19900123,1800,131,100,550 +19900123,1800,131,100,500 +19900123,1800,131,100,450 +19900123,1800,131,100,400 +19900123,1800,131,100,375 +19900123,1800,131,100,350 +19900123,1800,131,100,300 +19900123,1800,131,100,250 +19900123,1800,131,100,245 +19900123,1800,131,100,225 +19900123,1800,131,100,200 +19900123,1800,131,100,175 +19900123,1800,131,100,150 +19900123,1800,131,100,125 +19900123,1800,131,100,100 +19900123,1800,131,100,70 +19900123,1800,131,100,50 +19900123,1800,131,100,30 +19900123,1800,131,100,20 +19900123,1800,131,100,10 +19900123,1800,131,100,9 +19900123,1800,131,100,7 +19900123,1800,131,100,5 +19900123,1800,131,100,3 +19900123,1800,131,100,2 +19900123,1800,131,100,1 +19900123,1800,131,210,40 +19900123,1800,132,100,1000 +19900123,1800,132,100,975 +19900123,1800,132,100,950 +19900123,1800,132,100,925 +19900123,1800,132,100,900 +19900123,1800,132,100,875 +19900123,1800,132,100,825 +19900123,1800,132,100,800 +19900123,1800,132,100,775 +19900123,1800,132,100,750 +19900123,1800,132,100,740 +19900123,1800,132,100,700 +19900123,1800,132,100,650 +19900123,1800,132,100,620 +19900123,1800,132,100,600 +19900123,1800,132,100,550 +19900123,1800,132,100,500 +19900123,1800,132,100,450 +19900123,1800,132,100,400 +19900123,1800,132,100,375 +19900123,1800,132,100,350 +19900123,1800,132,100,300 +19900123,1800,132,100,250 +19900123,1800,132,100,245 +19900123,1800,132,100,225 +19900123,1800,132,100,200 +19900123,1800,132,100,175 +19900123,1800,132,100,150 +19900123,1800,132,100,125 +19900123,1800,132,100,100 +19900123,1800,132,100,70 +19900123,1800,132,100,50 +19900123,1800,132,100,30 +19900123,1800,132,100,20 +19900123,1800,132,100,10 +19900123,1800,132,100,9 +19900123,1800,132,100,7 +19900123,1800,132,100,5 +19900123,1800,132,100,3 +19900123,1800,132,100,2 +19900123,1800,132,100,1 +19900123,1800,132,210,40 +19900123,1800,130,100,1000 +19900123,1800,130,100,975 +19900123,1800,130,100,950 +19900123,1800,130,100,925 +19900123,1800,130,100,900 +19900123,1800,130,100,875 +19900123,1800,130,100,850 +19900123,1800,130,100,825 +19900123,1800,130,100,800 +19900123,1800,130,100,775 +19900123,1800,130,100,750 +19900123,1800,130,100,740 +19900123,1800,130,100,700 +19900123,1800,130,100,650 +19900123,1800,130,100,620 +19900123,1800,130,100,600 +19900123,1800,130,100,550 +19900123,1800,130,100,500 +19900123,1800,130,100,450 +19900123,1800,130,100,400 +19900123,1800,130,100,375 +19900123,1800,130,100,350 +19900123,1800,130,100,300 +19900123,1800,130,100,250 +19900123,1800,130,100,245 +19900123,1800,130,100,225 +19900123,1800,130,100,200 +19900123,1800,130,100,175 +19900123,1800,130,100,150 +19900123,1800,130,100,125 +19900123,1800,130,100,100 +19900123,1800,130,100,70 +19900123,1800,130,100,50 +19900123,1800,130,100,30 +19900123,1800,130,100,20 +19900123,1800,130,100,10 +19900123,1800,130,100,9 +19900123,1800,130,100,7 +19900123,1800,130,100,5 +19900123,1800,130,100,3 +19900123,1800,130,100,2 +19900123,1800,130,100,1 +19900123,1800,130,210,40 +19900123,1800,129,100,1000 +19900123,1800,129,100,975 +19900123,1800,129,100,950 +19900123,1800,129,100,925 +19900123,1800,129,100,900 +19900123,1800,129,100,875 +19900123,1800,129,100,850 +19900123,1800,129,100,825 +19900123,1800,129,100,800 +19900123,1800,129,100,775 +19900123,1800,129,100,750 +19900123,1800,129,100,740 +19900123,1800,129,100,700 +19900123,1800,129,100,650 +19900123,1800,129,100,620 +19900123,1800,129,100,600 +19900123,1800,129,100,550 +19900123,1800,129,100,500 +19900123,1800,129,100,450 +19900123,1800,129,100,400 +19900123,1800,129,100,375 +19900123,1800,129,100,350 +19900123,1800,129,100,300 +19900123,1800,129,100,250 +19900123,1800,129,100,245 +19900123,1800,129,100,225 +19900123,1800,129,100,200 +19900123,1800,129,100,175 +19900123,1800,129,100,150 +19900123,1800,129,100,125 +19900123,1800,129,100,100 +19900123,1800,129,100,70 +19900123,1800,129,100,50 +19900123,1800,129,100,30 +19900123,1800,129,100,20 +19900123,1800,129,100,10 +19900123,1800,129,100,9 +19900123,1800,129,100,7 +19900123,1800,129,100,5 +19900123,1800,129,100,3 +19900123,1800,129,100,2 +19900123,1800,129,100,1 +19900123,1800,129,210,40 +19900123,1800,157,100,1000 +19900123,1800,157,100,975 +19900123,1800,157,100,950 +19900123,1800,157,100,925 +19900123,1800,157,100,900 +19900123,1800,157,100,875 +19900123,1800,157,100,850 +19900123,1800,157,100,825 +19900123,1800,157,100,800 +19900123,1800,157,100,775 +19900123,1800,157,100,750 +19900123,1800,157,100,740 +19900123,1800,157,100,700 +19900123,1800,157,100,650 +19900123,1800,157,100,620 +19900123,1800,157,100,600 +19900123,1800,157,100,550 +19900123,1800,157,100,500 +19900123,1800,157,100,450 +19900123,1800,157,100,400 +19900123,1800,157,100,375 +19900123,1800,157,100,350 +19900123,1800,157,100,300 +19900123,1800,157,100,250 +19900123,1800,157,100,245 +19900123,1800,157,100,225 +19900123,1800,157,100,200 +19900123,1800,157,100,175 +19900123,1800,157,100,150 +19900123,1800,157,100,125 +19900123,1800,157,100,100 +19900123,1800,157,100,70 +19900123,1800,157,100,50 +19900123,1800,157,100,30 +19900123,1800,157,100,20 +19900123,1800,157,100,10 +19900123,1800,157,100,9 +19900123,1800,157,100,7 +19900123,1800,157,100,5 +19900123,1800,157,100,3 +19900123,1800,157,100,2 +19900123,1800,157,100,1 +19900123,1800,157,210,40 +19900123,1800,135,100,1000 +19900123,1800,135,100,975 +19900123,1800,135,100,950 +19900123,1800,135,100,925 +19900123,1800,135,100,900 +19900123,1800,135,100,875 +19900123,1800,135,100,850 +19900123,1800,135,100,825 +19900123,1800,135,100,800 +19900123,1800,135,100,775 +19900123,1800,135,100,750 +19900123,1800,135,100,740 +19900123,1800,135,100,700 +19900123,1800,135,100,650 +19900123,1800,135,100,620 +19900123,1800,135,100,600 +19900123,1800,135,100,550 +19900123,1800,135,100,500 +19900123,1800,135,100,450 +19900123,1800,135,100,400 +19900123,1800,135,100,375 +19900123,1800,135,100,350 +19900123,1800,135,100,300 +19900123,1800,135,100,250 +19900123,1800,135,100,245 +19900123,1800,135,100,225 +19900123,1800,135,100,200 +19900123,1800,135,100,175 +19900123,1800,135,100,150 +19900123,1800,135,100,125 +19900123,1800,135,100,100 +19900123,1800,135,100,70 +19900123,1800,135,100,50 +19900123,1800,135,100,30 +19900123,1800,135,100,20 +19900123,1800,135,100,10 +19900123,1800,135,100,9 +19900123,1800,135,100,7 +19900123,1800,135,100,5 +19900123,1800,135,100,3 +19900123,1800,135,100,2 +19900123,1800,135,100,1 +19900123,1800,135,210,40 +19900123,1800,138,100,1000 +19900123,1800,138,100,975 +19900123,1800,138,100,950 +19900123,1800,138,100,925 +19900123,1800,138,100,900 +19900123,1800,138,100,875 +19900123,1800,138,100,850 +19900123,1800,138,100,825 +19900123,1800,138,100,800 +19900123,1800,138,100,775 +19900123,1800,138,100,750 +19900123,1800,138,100,740 +19900123,1800,138,100,700 +19900123,1800,138,100,650 +19900123,1800,138,100,620 +19900123,1800,138,100,600 +19900123,1800,138,100,550 +19900123,1800,138,100,500 +19900123,1800,138,100,450 +19900123,1800,138,100,400 +19900123,1800,138,100,375 +19900123,1800,138,100,350 +19900123,1800,138,100,300 +19900123,1800,138,100,250 +19900123,1800,138,100,245 +19900123,1800,138,100,225 +19900123,1800,138,100,200 +19900123,1800,138,100,175 +19900123,1800,138,100,150 +19900123,1800,138,100,125 +19900123,1800,138,100,100 +19900123,1800,138,100,70 +19900123,1800,138,100,50 +19900123,1800,138,100,30 +19900123,1800,138,100,20 +19900123,1800,138,100,10 +19900123,1800,138,100,9 +19900123,1800,138,100,7 +19900123,1800,138,100,5 +19900123,1800,138,100,3 +19900123,1800,138,100,2 +19900123,1800,138,100,1 +19900123,1800,138,210,40 +19900123,1800,131,109,1 +19900123,1800,131,109,2 +19900123,1800,131,109,3 +19900123,1800,131,109,4 +19900123,1800,131,109,5 +19900123,1800,131,109,6 +19900123,1800,131,109,7 +19900123,1800,131,109,8 +19900123,1800,131,109,9 +19900123,1800,131,109,10 +19900123,1800,132,109,1 +19900123,1800,132,109,2 +19900123,1800,132,109,3 +19900123,1800,132,109,4 +19900123,1800,132,109,5 +19900123,1800,132,109,6 +19900123,1800,132,109,7 +19900123,1800,132,109,8 +19900123,1800,132,109,9 +19900123,1800,132,109,10 +19900123,1800,130,109,1 +19900123,1800,130,109,2 +19900123,1800,130,109,3 +19900123,1800,130,109,4 +19900123,1800,130,109,5 +19900123,1800,130,109,6 +19900123,1800,130,109,7 +19900123,1800,130,109,8 +19900123,1800,130,109,9 +19900123,1800,130,109,10 +19900123,1800,157,109,1 +19900123,1800,157,109,2 +19900123,1800,157,109,3 +19900123,1800,157,109,4 +19900123,1800,157,109,5 +19900123,1800,157,109,6 +19900123,1800,157,109,7 +19900123,1800,157,109,8 +19900123,1800,157,109,9 +19900123,1800,157,109,10 +19900123,1800,54,109,1 +19900123,1800,54,109,2 +19900123,1800,54,109,3 +19900123,1800,54,109,4 +19900123,1800,54,109,5 +19900123,1800,54,109,6 +19900123,1800,54,109,7 +19900123,1800,54,109,8 +19900123,1800,54,109,9 +19900123,1800,54,109,10 +19900123,1800,135,109,1 +19900123,1800,135,109,2 +19900123,1800,135,109,3 +19900123,1800,135,109,4 +19900123,1800,135,109,5 +19900123,1800,135,109,6 +19900123,1800,135,109,7 +19900123,1800,135,109,8 +19900123,1800,135,109,9 +19900123,1800,135,109,10 +19900123,1800,134,109,1 +19900123,1800,152,109,1 +19900123,1800,131,100,850 +19900123,1800,132,100,850 +19900123,1800,134,100,1000 +19900123,1800,152,100,1000 +19900123,2100,131,100,850 +19900123,2100,132,100,850 +19900123,2100,134,100,1000 +19900123,2100,152,100,1000 +19900124,0,131,100,1000 +19900124,0,131,100,975 +19900124,0,131,100,950 +19900124,0,131,100,925 +19900124,0,131,100,900 +19900124,0,131,100,875 +19900124,0,131,100,825 +19900124,0,131,100,800 +19900124,0,131,100,775 +19900124,0,131,100,750 +19900124,0,131,100,740 +19900124,0,131,100,700 +19900124,0,131,100,650 +19900124,0,131,100,620 +19900124,0,131,100,600 +19900124,0,131,100,550 +19900124,0,131,100,500 +19900124,0,131,100,450 +19900124,0,131,100,400 +19900124,0,131,100,375 +19900124,0,131,100,350 +19900124,0,131,100,300 +19900124,0,131,100,250 +19900124,0,131,100,245 +19900124,0,131,100,225 +19900124,0,131,100,200 +19900124,0,131,100,175 +19900124,0,131,100,150 +19900124,0,131,100,125 +19900124,0,131,100,100 +19900124,0,131,100,70 +19900124,0,131,100,50 +19900124,0,131,100,30 +19900124,0,131,100,20 +19900124,0,131,100,10 +19900124,0,131,100,9 +19900124,0,131,100,7 +19900124,0,131,100,5 +19900124,0,131,100,3 +19900124,0,131,100,2 +19900124,0,131,100,1 +19900124,0,131,210,40 +19900124,0,132,100,1000 +19900124,0,132,100,975 +19900124,0,132,100,950 +19900124,0,132,100,925 +19900124,0,132,100,900 +19900124,0,132,100,875 +19900124,0,132,100,825 +19900124,0,132,100,800 +19900124,0,132,100,775 +19900124,0,132,100,750 +19900124,0,132,100,740 +19900124,0,132,100,700 +19900124,0,132,100,650 +19900124,0,132,100,620 +19900124,0,132,100,600 +19900124,0,132,100,550 +19900124,0,132,100,500 +19900124,0,132,100,450 +19900124,0,132,100,400 +19900124,0,132,100,375 +19900124,0,132,100,350 +19900124,0,132,100,300 +19900124,0,132,100,250 +19900124,0,132,100,245 +19900124,0,132,100,225 +19900124,0,132,100,200 +19900124,0,132,100,175 +19900124,0,132,100,150 +19900124,0,132,100,125 +19900124,0,132,100,100 +19900124,0,132,100,70 +19900124,0,132,100,50 +19900124,0,132,100,30 +19900124,0,132,100,20 +19900124,0,132,100,10 +19900124,0,132,100,9 +19900124,0,132,100,7 +19900124,0,132,100,5 +19900124,0,132,100,3 +19900124,0,132,100,2 +19900124,0,132,100,1 +19900124,0,132,210,40 +19900124,0,130,100,1000 +19900124,0,130,100,975 +19900124,0,130,100,950 +19900124,0,130,100,925 +19900124,0,130,100,900 +19900124,0,130,100,875 +19900124,0,130,100,850 +19900124,0,130,100,825 +19900124,0,130,100,800 +19900124,0,130,100,775 +19900124,0,130,100,750 +19900124,0,130,100,740 +19900124,0,130,100,700 +19900124,0,130,100,650 +19900124,0,130,100,620 +19900124,0,130,100,600 +19900124,0,130,100,550 +19900124,0,130,100,500 +19900124,0,130,100,450 +19900124,0,130,100,400 +19900124,0,130,100,375 +19900124,0,130,100,350 +19900124,0,130,100,300 +19900124,0,130,100,250 +19900124,0,130,100,245 +19900124,0,130,100,225 +19900124,0,130,100,200 +19900124,0,130,100,175 +19900124,0,130,100,150 +19900124,0,130,100,125 +19900124,0,130,100,100 +19900124,0,130,100,70 +19900124,0,130,100,50 +19900124,0,130,100,30 +19900124,0,130,100,20 +19900124,0,130,100,10 +19900124,0,130,100,9 +19900124,0,130,100,7 +19900124,0,130,100,5 +19900124,0,130,100,3 +19900124,0,130,100,2 +19900124,0,130,100,1 +19900124,0,130,210,40 +19900124,0,129,100,1000 +19900124,0,129,100,975 +19900124,0,129,100,950 +19900124,0,129,100,925 +19900124,0,129,100,900 +19900124,0,129,100,875 +19900124,0,129,100,850 +19900124,0,129,100,825 +19900124,0,129,100,800 +19900124,0,129,100,775 +19900124,0,129,100,750 +19900124,0,129,100,740 +19900124,0,129,100,700 +19900124,0,129,100,650 +19900124,0,129,100,620 +19900124,0,129,100,600 +19900124,0,129,100,550 +19900124,0,129,100,500 +19900124,0,129,100,450 +19900124,0,129,100,400 +19900124,0,129,100,375 +19900124,0,129,100,350 +19900124,0,129,100,300 +19900124,0,129,100,250 +19900124,0,129,100,245 +19900124,0,129,100,225 +19900124,0,129,100,200 +19900124,0,129,100,175 +19900124,0,129,100,150 +19900124,0,129,100,125 +19900124,0,129,100,100 +19900124,0,129,100,70 +19900124,0,129,100,50 +19900124,0,129,100,30 +19900124,0,129,100,20 +19900124,0,129,100,10 +19900124,0,129,100,9 +19900124,0,129,100,7 +19900124,0,129,100,5 +19900124,0,129,100,3 +19900124,0,129,100,2 +19900124,0,129,100,1 +19900124,0,129,210,40 +19900124,0,157,100,1000 +19900124,0,157,100,975 +19900124,0,157,100,950 +19900124,0,157,100,925 +19900124,0,157,100,900 +19900124,0,157,100,875 +19900124,0,157,100,850 +19900124,0,157,100,825 +19900124,0,157,100,800 +19900124,0,157,100,775 +19900124,0,157,100,750 +19900124,0,157,100,740 +19900124,0,157,100,700 +19900124,0,157,100,650 +19900124,0,157,100,620 +19900124,0,157,100,600 +19900124,0,157,100,550 +19900124,0,157,100,500 +19900124,0,157,100,450 +19900124,0,157,100,400 +19900124,0,157,100,375 +19900124,0,157,100,350 +19900124,0,157,100,300 +19900124,0,157,100,250 +19900124,0,157,100,245 +19900124,0,157,100,225 +19900124,0,157,100,200 +19900124,0,157,100,175 +19900124,0,157,100,150 +19900124,0,157,100,125 +19900124,0,157,100,100 +19900124,0,157,100,70 +19900124,0,157,100,50 +19900124,0,157,100,30 +19900124,0,157,100,20 +19900124,0,157,100,10 +19900124,0,157,100,9 +19900124,0,157,100,7 +19900124,0,157,100,5 +19900124,0,157,100,3 +19900124,0,157,100,2 +19900124,0,157,100,1 +19900124,0,157,210,40 +19900124,0,135,100,1000 +19900124,0,135,100,975 +19900124,0,135,100,950 +19900124,0,135,100,925 +19900124,0,135,100,900 +19900124,0,135,100,875 +19900124,0,135,100,850 +19900124,0,135,100,825 +19900124,0,135,100,800 +19900124,0,135,100,775 +19900124,0,135,100,750 +19900124,0,135,100,740 +19900124,0,135,100,700 +19900124,0,135,100,650 +19900124,0,135,100,620 +19900124,0,135,100,600 +19900124,0,135,100,550 +19900124,0,135,100,500 +19900124,0,135,100,450 +19900124,0,135,100,400 +19900124,0,135,100,375 +19900124,0,135,100,350 +19900124,0,135,100,300 +19900124,0,135,100,250 +19900124,0,135,100,245 +19900124,0,135,100,225 +19900124,0,135,100,200 +19900124,0,135,100,175 +19900124,0,135,100,150 +19900124,0,135,100,125 +19900124,0,135,100,100 +19900124,0,135,100,70 +19900124,0,135,100,50 +19900124,0,135,100,30 +19900124,0,135,100,20 +19900124,0,135,100,10 +19900124,0,135,100,9 +19900124,0,135,100,7 +19900124,0,135,100,5 +19900124,0,135,100,3 +19900124,0,135,100,2 +19900124,0,135,100,1 +19900124,0,135,210,40 +19900124,0,138,100,1000 +19900124,0,138,100,975 +19900124,0,138,100,950 +19900124,0,138,100,925 +19900124,0,138,100,900 +19900124,0,138,100,875 +19900124,0,138,100,850 +19900124,0,138,100,825 +19900124,0,138,100,800 +19900124,0,138,100,775 +19900124,0,138,100,750 +19900124,0,138,100,740 +19900124,0,138,100,700 +19900124,0,138,100,650 +19900124,0,138,100,620 +19900124,0,138,100,600 +19900124,0,138,100,550 +19900124,0,138,100,500 +19900124,0,138,100,450 +19900124,0,138,100,400 +19900124,0,138,100,375 +19900124,0,138,100,350 +19900124,0,138,100,300 +19900124,0,138,100,250 +19900124,0,138,100,245 +19900124,0,138,100,225 +19900124,0,138,100,200 +19900124,0,138,100,175 +19900124,0,138,100,150 +19900124,0,138,100,125 +19900124,0,138,100,100 +19900124,0,138,100,70 +19900124,0,138,100,50 +19900124,0,138,100,30 +19900124,0,138,100,20 +19900124,0,138,100,10 +19900124,0,138,100,9 +19900124,0,138,100,7 +19900124,0,138,100,5 +19900124,0,138,100,3 +19900124,0,138,100,2 +19900124,0,138,100,1 +19900124,0,138,210,40 +19900124,0,131,109,1 +19900124,0,131,109,2 +19900124,0,131,109,3 +19900124,0,131,109,4 +19900124,0,131,109,5 +19900124,0,131,109,6 +19900124,0,131,109,7 +19900124,0,131,109,8 +19900124,0,131,109,9 +19900124,0,131,109,10 +19900124,0,132,109,1 +19900124,0,132,109,2 +19900124,0,132,109,3 +19900124,0,132,109,4 +19900124,0,132,109,5 +19900124,0,132,109,6 +19900124,0,132,109,7 +19900124,0,132,109,8 +19900124,0,132,109,9 +19900124,0,132,109,10 +19900124,0,130,109,1 +19900124,0,130,109,2 +19900124,0,130,109,3 +19900124,0,130,109,4 +19900124,0,130,109,5 +19900124,0,130,109,6 +19900124,0,130,109,7 +19900124,0,130,109,8 +19900124,0,130,109,9 +19900124,0,130,109,10 +19900124,0,157,109,1 +19900124,0,157,109,2 +19900124,0,157,109,3 +19900124,0,157,109,4 +19900124,0,157,109,5 +19900124,0,157,109,6 +19900124,0,157,109,7 +19900124,0,157,109,8 +19900124,0,157,109,9 +19900124,0,157,109,10 +19900124,0,54,109,1 +19900124,0,54,109,2 +19900124,0,54,109,3 +19900124,0,54,109,4 +19900124,0,54,109,5 +19900124,0,54,109,6 +19900124,0,54,109,7 +19900124,0,54,109,8 +19900124,0,54,109,9 +19900124,0,54,109,10 +19900124,0,135,109,1 +19900124,0,135,109,2 +19900124,0,135,109,3 +19900124,0,135,109,4 +19900124,0,135,109,5 +19900124,0,135,109,6 +19900124,0,135,109,7 +19900124,0,135,109,8 +19900124,0,135,109,9 +19900124,0,135,109,10 +19900124,0,134,109,1 +19900124,0,152,109,1 +19900124,0,131,100,850 +19900124,0,132,100,850 +19900124,0,134,100,1000 +19900124,0,152,100,1000 +19900124,300,131,100,850 +19900124,300,132,100,850 +19900124,300,134,100,1000 +19900124,300,152,100,1000 +19900124,600,131,100,1000 +19900124,600,131,100,975 +19900124,600,131,100,950 +19900124,600,131,100,925 +19900124,600,131,100,900 +19900124,600,131,100,875 +19900124,600,131,100,825 +19900124,600,131,100,800 +19900124,600,131,100,775 +19900124,600,131,100,750 +19900124,600,131,100,740 +19900124,600,131,100,700 +19900124,600,131,100,650 +19900124,600,131,100,620 +19900124,600,131,100,600 +19900124,600,131,100,550 +19900124,600,131,100,500 +19900124,600,131,100,450 +19900124,600,131,100,400 +19900124,600,131,100,375 +19900124,600,131,100,350 +19900124,600,131,100,300 +19900124,600,131,100,250 +19900124,600,131,100,245 +19900124,600,131,100,225 +19900124,600,131,100,200 +19900124,600,131,100,175 +19900124,600,131,100,150 +19900124,600,131,100,125 +19900124,600,131,100,100 +19900124,600,131,100,70 +19900124,600,131,100,50 +19900124,600,131,100,30 +19900124,600,131,100,20 +19900124,600,131,100,10 +19900124,600,131,100,9 +19900124,600,131,100,7 +19900124,600,131,100,5 +19900124,600,131,100,3 +19900124,600,131,100,2 +19900124,600,131,100,1 +19900124,600,131,210,40 +19900124,600,132,100,1000 +19900124,600,132,100,975 +19900124,600,132,100,950 +19900124,600,132,100,925 +19900124,600,132,100,900 +19900124,600,132,100,875 +19900124,600,132,100,825 +19900124,600,132,100,800 +19900124,600,132,100,775 +19900124,600,132,100,750 +19900124,600,132,100,740 +19900124,600,132,100,700 +19900124,600,132,100,650 +19900124,600,132,100,620 +19900124,600,132,100,600 +19900124,600,132,100,550 +19900124,600,132,100,500 +19900124,600,132,100,450 +19900124,600,132,100,400 +19900124,600,132,100,375 +19900124,600,132,100,350 +19900124,600,132,100,300 +19900124,600,132,100,250 +19900124,600,132,100,245 +19900124,600,132,100,225 +19900124,600,132,100,200 +19900124,600,132,100,175 +19900124,600,132,100,150 +19900124,600,132,100,125 +19900124,600,132,100,100 +19900124,600,132,100,70 +19900124,600,132,100,50 +19900124,600,132,100,30 +19900124,600,132,100,20 +19900124,600,132,100,10 +19900124,600,132,100,9 +19900124,600,132,100,7 +19900124,600,132,100,5 +19900124,600,132,100,3 +19900124,600,132,100,2 +19900124,600,132,100,1 +19900124,600,132,210,40 +19900124,600,130,100,1000 +19900124,600,130,100,975 +19900124,600,130,100,950 +19900124,600,130,100,925 +19900124,600,130,100,900 +19900124,600,130,100,875 +19900124,600,130,100,850 +19900124,600,130,100,825 +19900124,600,130,100,800 +19900124,600,130,100,775 +19900124,600,130,100,750 +19900124,600,130,100,740 +19900124,600,130,100,700 +19900124,600,130,100,650 +19900124,600,130,100,620 +19900124,600,130,100,600 +19900124,600,130,100,550 +19900124,600,130,100,500 +19900124,600,130,100,450 +19900124,600,130,100,400 +19900124,600,130,100,375 +19900124,600,130,100,350 +19900124,600,130,100,300 +19900124,600,130,100,250 +19900124,600,130,100,245 +19900124,600,130,100,225 +19900124,600,130,100,200 +19900124,600,130,100,175 +19900124,600,130,100,150 +19900124,600,130,100,125 +19900124,600,130,100,100 +19900124,600,130,100,70 +19900124,600,130,100,50 +19900124,600,130,100,30 +19900124,600,130,100,20 +19900124,600,130,100,10 +19900124,600,130,100,9 +19900124,600,130,100,7 +19900124,600,130,100,5 +19900124,600,130,100,3 +19900124,600,130,100,2 +19900124,600,130,100,1 +19900124,600,130,210,40 +19900124,600,129,100,1000 +19900124,600,129,100,975 +19900124,600,129,100,950 +19900124,600,129,100,925 +19900124,600,129,100,900 +19900124,600,129,100,875 +19900124,600,129,100,850 +19900124,600,129,100,825 +19900124,600,129,100,800 +19900124,600,129,100,775 +19900124,600,129,100,750 +19900124,600,129,100,740 +19900124,600,129,100,700 +19900124,600,129,100,650 +19900124,600,129,100,620 +19900124,600,129,100,600 +19900124,600,129,100,550 +19900124,600,129,100,500 +19900124,600,129,100,450 +19900124,600,129,100,400 +19900124,600,129,100,375 +19900124,600,129,100,350 +19900124,600,129,100,300 +19900124,600,129,100,250 +19900124,600,129,100,245 +19900124,600,129,100,225 +19900124,600,129,100,200 +19900124,600,129,100,175 +19900124,600,129,100,150 +19900124,600,129,100,125 +19900124,600,129,100,100 +19900124,600,129,100,70 +19900124,600,129,100,50 +19900124,600,129,100,30 +19900124,600,129,100,20 +19900124,600,129,100,10 +19900124,600,129,100,9 +19900124,600,129,100,7 +19900124,600,129,100,5 +19900124,600,129,100,3 +19900124,600,129,100,2 +19900124,600,129,100,1 +19900124,600,129,210,40 +19900124,600,157,100,1000 +19900124,600,157,100,975 +19900124,600,157,100,950 +19900124,600,157,100,925 +19900124,600,157,100,900 +19900124,600,157,100,875 +19900124,600,157,100,850 +19900124,600,157,100,825 +19900124,600,157,100,800 +19900124,600,157,100,775 +19900124,600,157,100,750 +19900124,600,157,100,740 +19900124,600,157,100,700 +19900124,600,157,100,650 +19900124,600,157,100,620 +19900124,600,157,100,600 +19900124,600,157,100,550 +19900124,600,157,100,500 +19900124,600,157,100,450 +19900124,600,157,100,400 +19900124,600,157,100,375 +19900124,600,157,100,350 +19900124,600,157,100,300 +19900124,600,157,100,250 +19900124,600,157,100,245 +19900124,600,157,100,225 +19900124,600,157,100,200 +19900124,600,157,100,175 +19900124,600,157,100,150 +19900124,600,157,100,125 +19900124,600,157,100,100 +19900124,600,157,100,70 +19900124,600,157,100,50 +19900124,600,157,100,30 +19900124,600,157,100,20 +19900124,600,157,100,10 +19900124,600,157,100,9 +19900124,600,157,100,7 +19900124,600,157,100,5 +19900124,600,157,100,3 +19900124,600,157,100,2 +19900124,600,157,100,1 +19900124,600,157,210,40 +19900124,600,135,100,1000 +19900124,600,135,100,975 +19900124,600,135,100,950 +19900124,600,135,100,925 +19900124,600,135,100,900 +19900124,600,135,100,875 +19900124,600,135,100,850 +19900124,600,135,100,825 +19900124,600,135,100,800 +19900124,600,135,100,775 +19900124,600,135,100,750 +19900124,600,135,100,740 +19900124,600,135,100,700 +19900124,600,135,100,650 +19900124,600,135,100,620 +19900124,600,135,100,600 +19900124,600,135,100,550 +19900124,600,135,100,500 +19900124,600,135,100,450 +19900124,600,135,100,400 +19900124,600,135,100,375 +19900124,600,135,100,350 +19900124,600,135,100,300 +19900124,600,135,100,250 +19900124,600,135,100,245 +19900124,600,135,100,225 +19900124,600,135,100,200 +19900124,600,135,100,175 +19900124,600,135,100,150 +19900124,600,135,100,125 +19900124,600,135,100,100 +19900124,600,135,100,70 +19900124,600,135,100,50 +19900124,600,135,100,30 +19900124,600,135,100,20 +19900124,600,135,100,10 +19900124,600,135,100,9 +19900124,600,135,100,7 +19900124,600,135,100,5 +19900124,600,135,100,3 +19900124,600,135,100,2 +19900124,600,135,100,1 +19900124,600,135,210,40 +19900124,600,138,100,1000 +19900124,600,138,100,975 +19900124,600,138,100,950 +19900124,600,138,100,925 +19900124,600,138,100,900 +19900124,600,138,100,875 +19900124,600,138,100,850 +19900124,600,138,100,825 +19900124,600,138,100,800 +19900124,600,138,100,775 +19900124,600,138,100,750 +19900124,600,138,100,740 +19900124,600,138,100,700 +19900124,600,138,100,650 +19900124,600,138,100,620 +19900124,600,138,100,600 +19900124,600,138,100,550 +19900124,600,138,100,500 +19900124,600,138,100,450 +19900124,600,138,100,400 +19900124,600,138,100,375 +19900124,600,138,100,350 +19900124,600,138,100,300 +19900124,600,138,100,250 +19900124,600,138,100,245 +19900124,600,138,100,225 +19900124,600,138,100,200 +19900124,600,138,100,175 +19900124,600,138,100,150 +19900124,600,138,100,125 +19900124,600,138,100,100 +19900124,600,138,100,70 +19900124,600,138,100,50 +19900124,600,138,100,30 +19900124,600,138,100,20 +19900124,600,138,100,10 +19900124,600,138,100,9 +19900124,600,138,100,7 +19900124,600,138,100,5 +19900124,600,138,100,3 +19900124,600,138,100,2 +19900124,600,138,100,1 +19900124,600,138,210,40 +19900124,600,131,109,1 +19900124,600,131,109,2 +19900124,600,131,109,3 +19900124,600,131,109,4 +19900124,600,131,109,5 +19900124,600,131,109,6 +19900124,600,131,109,7 +19900124,600,131,109,8 +19900124,600,131,109,9 +19900124,600,131,109,10 +19900124,600,132,109,1 +19900124,600,132,109,2 +19900124,600,132,109,3 +19900124,600,132,109,4 +19900124,600,132,109,5 +19900124,600,132,109,6 +19900124,600,132,109,7 +19900124,600,132,109,8 +19900124,600,132,109,9 +19900124,600,132,109,10 +19900124,600,130,109,1 +19900124,600,130,109,2 +19900124,600,130,109,3 +19900124,600,130,109,4 +19900124,600,130,109,5 +19900124,600,130,109,6 +19900124,600,130,109,7 +19900124,600,130,109,8 +19900124,600,130,109,9 +19900124,600,130,109,10 +19900124,600,157,109,1 +19900124,600,157,109,2 +19900124,600,157,109,3 +19900124,600,157,109,4 +19900124,600,157,109,5 +19900124,600,157,109,6 +19900124,600,157,109,7 +19900124,600,157,109,8 +19900124,600,157,109,9 +19900124,600,157,109,10 +19900124,600,54,109,1 +19900124,600,54,109,2 +19900124,600,54,109,3 +19900124,600,54,109,4 +19900124,600,54,109,5 +19900124,600,54,109,6 +19900124,600,54,109,7 +19900124,600,54,109,8 +19900124,600,54,109,9 +19900124,600,54,109,10 +19900124,600,135,109,1 +19900124,600,135,109,2 +19900124,600,135,109,3 +19900124,600,135,109,4 +19900124,600,135,109,5 +19900124,600,135,109,6 +19900124,600,135,109,7 +19900124,600,135,109,8 +19900124,600,135,109,9 +19900124,600,135,109,10 +19900124,600,134,109,1 +19900124,600,152,109,1 +19900124,600,131,100,850 +19900124,600,132,100,850 +19900124,600,134,100,1000 +19900124,600,152,100,1000 +19900124,900,131,100,850 +19900124,900,132,100,850 +19900124,900,134,100,1000 +19900124,900,152,100,1000 +19900124,1200,131,100,1000 +19900124,1200,131,100,975 +19900124,1200,131,100,950 +19900124,1200,131,100,925 +19900124,1200,131,100,900 +19900124,1200,131,100,875 +19900124,1200,131,100,825 +19900124,1200,131,100,800 +19900124,1200,131,100,775 +19900124,1200,131,100,750 +19900124,1200,131,100,740 +19900124,1200,131,100,700 +19900124,1200,131,100,650 +19900124,1200,131,100,620 +19900124,1200,131,100,600 +19900124,1200,131,100,550 +19900124,1200,131,100,500 +19900124,1200,131,100,450 +19900124,1200,131,100,400 +19900124,1200,131,100,375 +19900124,1200,131,100,350 +19900124,1200,131,100,300 +19900124,1200,131,100,250 +19900124,1200,131,100,245 +19900124,1200,131,100,225 +19900124,1200,131,100,200 +19900124,1200,131,100,175 +19900124,1200,131,100,150 +19900124,1200,131,100,125 +19900124,1200,131,100,100 +19900124,1200,131,100,70 +19900124,1200,131,100,50 +19900124,1200,131,100,30 +19900124,1200,131,100,20 +19900124,1200,131,100,10 +19900124,1200,131,100,9 +19900124,1200,131,100,7 +19900124,1200,131,100,5 +19900124,1200,131,100,3 +19900124,1200,131,100,2 +19900124,1200,131,100,1 +19900124,1200,131,210,40 +19900124,1200,132,100,1000 +19900124,1200,132,100,975 +19900124,1200,132,100,950 +19900124,1200,132,100,925 +19900124,1200,132,100,900 +19900124,1200,132,100,875 +19900124,1200,132,100,825 +19900124,1200,132,100,800 +19900124,1200,132,100,775 +19900124,1200,132,100,750 +19900124,1200,132,100,740 +19900124,1200,132,100,700 +19900124,1200,132,100,650 +19900124,1200,132,100,620 +19900124,1200,132,100,600 +19900124,1200,132,100,550 +19900124,1200,132,100,500 +19900124,1200,132,100,450 +19900124,1200,132,100,400 +19900124,1200,132,100,375 +19900124,1200,132,100,350 +19900124,1200,132,100,300 +19900124,1200,132,100,250 +19900124,1200,132,100,245 +19900124,1200,132,100,225 +19900124,1200,132,100,200 +19900124,1200,132,100,175 +19900124,1200,132,100,150 +19900124,1200,132,100,125 +19900124,1200,132,100,100 +19900124,1200,132,100,70 +19900124,1200,132,100,50 +19900124,1200,132,100,30 +19900124,1200,132,100,20 +19900124,1200,132,100,10 +19900124,1200,132,100,9 +19900124,1200,132,100,7 +19900124,1200,132,100,5 +19900124,1200,132,100,3 +19900124,1200,132,100,2 +19900124,1200,132,100,1 +19900124,1200,132,210,40 +19900124,1200,130,100,1000 +19900124,1200,130,100,975 +19900124,1200,130,100,950 +19900124,1200,130,100,925 +19900124,1200,130,100,900 +19900124,1200,130,100,875 +19900124,1200,130,100,850 +19900124,1200,130,100,825 +19900124,1200,130,100,800 +19900124,1200,130,100,775 +19900124,1200,130,100,750 +19900124,1200,130,100,740 +19900124,1200,130,100,700 +19900124,1200,130,100,650 +19900124,1200,130,100,620 +19900124,1200,130,100,600 +19900124,1200,130,100,550 +19900124,1200,130,100,500 +19900124,1200,130,100,450 +19900124,1200,130,100,400 +19900124,1200,130,100,375 +19900124,1200,130,100,350 +19900124,1200,130,100,300 +19900124,1200,130,100,250 +19900124,1200,130,100,245 +19900124,1200,130,100,225 +19900124,1200,130,100,200 +19900124,1200,130,100,175 +19900124,1200,130,100,150 +19900124,1200,130,100,125 +19900124,1200,130,100,100 +19900124,1200,130,100,70 +19900124,1200,130,100,50 +19900124,1200,130,100,30 +19900124,1200,130,100,20 +19900124,1200,130,100,10 +19900124,1200,130,100,9 +19900124,1200,130,100,7 +19900124,1200,130,100,5 +19900124,1200,130,100,3 +19900124,1200,130,100,2 +19900124,1200,130,100,1 +19900124,1200,130,210,40 +19900124,1200,129,100,1000 +19900124,1200,129,100,975 +19900124,1200,129,100,950 +19900124,1200,129,100,925 +19900124,1200,129,100,900 +19900124,1200,129,100,875 +19900124,1200,129,100,850 +19900124,1200,129,100,825 +19900124,1200,129,100,800 +19900124,1200,129,100,775 +19900124,1200,129,100,750 +19900124,1200,129,100,740 +19900124,1200,129,100,700 +19900124,1200,129,100,650 +19900124,1200,129,100,620 +19900124,1200,129,100,600 +19900124,1200,129,100,550 +19900124,1200,129,100,500 +19900124,1200,129,100,450 +19900124,1200,129,100,400 +19900124,1200,129,100,375 +19900124,1200,129,100,350 +19900124,1200,129,100,300 +19900124,1200,129,100,250 +19900124,1200,129,100,245 +19900124,1200,129,100,225 +19900124,1200,129,100,200 +19900124,1200,129,100,175 +19900124,1200,129,100,150 +19900124,1200,129,100,125 +19900124,1200,129,100,100 +19900124,1200,129,100,70 +19900124,1200,129,100,50 +19900124,1200,129,100,30 +19900124,1200,129,100,20 +19900124,1200,129,100,10 +19900124,1200,129,100,9 +19900124,1200,129,100,7 +19900124,1200,129,100,5 +19900124,1200,129,100,3 +19900124,1200,129,100,2 +19900124,1200,129,100,1 +19900124,1200,129,210,40 +19900124,1200,157,100,1000 +19900124,1200,157,100,975 +19900124,1200,157,100,950 +19900124,1200,157,100,925 +19900124,1200,157,100,900 +19900124,1200,157,100,875 +19900124,1200,157,100,850 +19900124,1200,157,100,825 +19900124,1200,157,100,800 +19900124,1200,157,100,775 +19900124,1200,157,100,750 +19900124,1200,157,100,740 +19900124,1200,157,100,700 +19900124,1200,157,100,650 +19900124,1200,157,100,620 +19900124,1200,157,100,600 +19900124,1200,157,100,550 +19900124,1200,157,100,500 +19900124,1200,157,100,450 +19900124,1200,157,100,400 +19900124,1200,157,100,375 +19900124,1200,157,100,350 +19900124,1200,157,100,300 +19900124,1200,157,100,250 +19900124,1200,157,100,245 +19900124,1200,157,100,225 +19900124,1200,157,100,200 +19900124,1200,157,100,175 +19900124,1200,157,100,150 +19900124,1200,157,100,125 +19900124,1200,157,100,100 +19900124,1200,157,100,70 +19900124,1200,157,100,50 +19900124,1200,157,100,30 +19900124,1200,157,100,20 +19900124,1200,157,100,10 +19900124,1200,157,100,9 +19900124,1200,157,100,7 +19900124,1200,157,100,5 +19900124,1200,157,100,3 +19900124,1200,157,100,2 +19900124,1200,157,100,1 +19900124,1200,157,210,40 +19900124,1200,135,100,1000 +19900124,1200,135,100,975 +19900124,1200,135,100,950 +19900124,1200,135,100,925 +19900124,1200,135,100,900 +19900124,1200,135,100,875 +19900124,1200,135,100,850 +19900124,1200,135,100,825 +19900124,1200,135,100,800 +19900124,1200,135,100,775 +19900124,1200,135,100,750 +19900124,1200,135,100,740 +19900124,1200,135,100,700 +19900124,1200,135,100,650 +19900124,1200,135,100,620 +19900124,1200,135,100,600 +19900124,1200,135,100,550 +19900124,1200,135,100,500 +19900124,1200,135,100,450 +19900124,1200,135,100,400 +19900124,1200,135,100,375 +19900124,1200,135,100,350 +19900124,1200,135,100,300 +19900124,1200,135,100,250 +19900124,1200,135,100,245 +19900124,1200,135,100,225 +19900124,1200,135,100,200 +19900124,1200,135,100,175 +19900124,1200,135,100,150 +19900124,1200,135,100,125 +19900124,1200,135,100,100 +19900124,1200,135,100,70 +19900124,1200,135,100,50 +19900124,1200,135,100,30 +19900124,1200,135,100,20 +19900124,1200,135,100,10 +19900124,1200,135,100,9 +19900124,1200,135,100,7 +19900124,1200,135,100,5 +19900124,1200,135,100,3 +19900124,1200,135,100,2 +19900124,1200,135,100,1 +19900124,1200,135,210,40 +19900124,1200,138,100,1000 +19900124,1200,138,100,975 +19900124,1200,138,100,950 +19900124,1200,138,100,925 +19900124,1200,138,100,900 +19900124,1200,138,100,875 +19900124,1200,138,100,850 +19900124,1200,138,100,825 +19900124,1200,138,100,800 +19900124,1200,138,100,775 +19900124,1200,138,100,750 +19900124,1200,138,100,740 +19900124,1200,138,100,700 +19900124,1200,138,100,650 +19900124,1200,138,100,620 +19900124,1200,138,100,600 +19900124,1200,138,100,550 +19900124,1200,138,100,500 +19900124,1200,138,100,450 +19900124,1200,138,100,400 +19900124,1200,138,100,375 +19900124,1200,138,100,350 +19900124,1200,138,100,300 +19900124,1200,138,100,250 +19900124,1200,138,100,245 +19900124,1200,138,100,225 +19900124,1200,138,100,200 +19900124,1200,138,100,175 +19900124,1200,138,100,150 +19900124,1200,138,100,125 +19900124,1200,138,100,100 +19900124,1200,138,100,70 +19900124,1200,138,100,50 +19900124,1200,138,100,30 +19900124,1200,138,100,20 +19900124,1200,138,100,10 +19900124,1200,138,100,9 +19900124,1200,138,100,7 +19900124,1200,138,100,5 +19900124,1200,138,100,3 +19900124,1200,138,100,2 +19900124,1200,138,100,1 +19900124,1200,138,210,40 +19900124,1200,131,109,1 +19900124,1200,131,109,2 +19900124,1200,131,109,3 +19900124,1200,131,109,4 +19900124,1200,131,109,5 +19900124,1200,131,109,6 +19900124,1200,131,109,7 +19900124,1200,131,109,8 +19900124,1200,131,109,9 +19900124,1200,131,109,10 +19900124,1200,132,109,1 +19900124,1200,132,109,2 +19900124,1200,132,109,3 +19900124,1200,132,109,4 +19900124,1200,132,109,5 +19900124,1200,132,109,6 +19900124,1200,132,109,7 +19900124,1200,132,109,8 +19900124,1200,132,109,9 +19900124,1200,132,109,10 +19900124,1200,130,109,1 +19900124,1200,130,109,2 +19900124,1200,130,109,3 +19900124,1200,130,109,4 +19900124,1200,130,109,5 +19900124,1200,130,109,6 +19900124,1200,130,109,7 +19900124,1200,130,109,8 +19900124,1200,130,109,9 +19900124,1200,130,109,10 +19900124,1200,157,109,1 +19900124,1200,157,109,2 +19900124,1200,157,109,3 +19900124,1200,157,109,4 +19900124,1200,157,109,5 +19900124,1200,157,109,6 +19900124,1200,157,109,7 +19900124,1200,157,109,8 +19900124,1200,157,109,9 +19900124,1200,157,109,10 +19900124,1200,54,109,1 +19900124,1200,54,109,2 +19900124,1200,54,109,3 +19900124,1200,54,109,4 +19900124,1200,54,109,5 +19900124,1200,54,109,6 +19900124,1200,54,109,7 +19900124,1200,54,109,8 +19900124,1200,54,109,9 +19900124,1200,54,109,10 +19900124,1200,135,109,1 +19900124,1200,135,109,2 +19900124,1200,135,109,3 +19900124,1200,135,109,4 +19900124,1200,135,109,5 +19900124,1200,135,109,6 +19900124,1200,135,109,7 +19900124,1200,135,109,8 +19900124,1200,135,109,9 +19900124,1200,135,109,10 +19900124,1200,134,109,1 +19900124,1200,152,109,1 +19900124,1200,131,100,850 +19900124,1200,132,100,850 +19900124,1200,134,100,1000 +19900124,1200,152,100,1000 +19900124,1500,131,100,850 +19900124,1500,132,100,850 +19900124,1500,134,100,1000 +19900124,1500,152,100,1000 +19900124,1800,131,100,1000 +19900124,1800,131,100,975 +19900124,1800,131,100,950 +19900124,1800,131,100,925 +19900124,1800,131,100,900 +19900124,1800,131,100,875 +19900124,1800,131,100,825 +19900124,1800,131,100,800 +19900124,1800,131,100,775 +19900124,1800,131,100,750 +19900124,1800,131,100,740 +19900124,1800,131,100,700 +19900124,1800,131,100,650 +19900124,1800,131,100,620 +19900124,1800,131,100,600 +19900124,1800,131,100,550 +19900124,1800,131,100,500 +19900124,1800,131,100,450 +19900124,1800,131,100,400 +19900124,1800,131,100,375 +19900124,1800,131,100,350 +19900124,1800,131,100,300 +19900124,1800,131,100,250 +19900124,1800,131,100,245 +19900124,1800,131,100,225 +19900124,1800,131,100,200 +19900124,1800,131,100,175 +19900124,1800,131,100,150 +19900124,1800,131,100,125 +19900124,1800,131,100,100 +19900124,1800,131,100,70 +19900124,1800,131,100,50 +19900124,1800,131,100,30 +19900124,1800,131,100,20 +19900124,1800,131,100,10 +19900124,1800,131,100,9 +19900124,1800,131,100,7 +19900124,1800,131,100,5 +19900124,1800,131,100,3 +19900124,1800,131,100,2 +19900124,1800,131,100,1 +19900124,1800,131,210,40 +19900124,1800,132,100,1000 +19900124,1800,132,100,975 +19900124,1800,132,100,950 +19900124,1800,132,100,925 +19900124,1800,132,100,900 +19900124,1800,132,100,875 +19900124,1800,132,100,825 +19900124,1800,132,100,800 +19900124,1800,132,100,775 +19900124,1800,132,100,750 +19900124,1800,132,100,740 +19900124,1800,132,100,700 +19900124,1800,132,100,650 +19900124,1800,132,100,620 +19900124,1800,132,100,600 +19900124,1800,132,100,550 +19900124,1800,132,100,500 +19900124,1800,132,100,450 +19900124,1800,132,100,400 +19900124,1800,132,100,375 +19900124,1800,132,100,350 +19900124,1800,132,100,300 +19900124,1800,132,100,250 +19900124,1800,132,100,245 +19900124,1800,132,100,225 +19900124,1800,132,100,200 +19900124,1800,132,100,175 +19900124,1800,132,100,150 +19900124,1800,132,100,125 +19900124,1800,132,100,100 +19900124,1800,132,100,70 +19900124,1800,132,100,50 +19900124,1800,132,100,30 +19900124,1800,132,100,20 +19900124,1800,132,100,10 +19900124,1800,132,100,9 +19900124,1800,132,100,7 +19900124,1800,132,100,5 +19900124,1800,132,100,3 +19900124,1800,132,100,2 +19900124,1800,132,100,1 +19900124,1800,132,210,40 +19900124,1800,130,100,1000 +19900124,1800,130,100,975 +19900124,1800,130,100,950 +19900124,1800,130,100,925 +19900124,1800,130,100,900 +19900124,1800,130,100,875 +19900124,1800,130,100,850 +19900124,1800,130,100,825 +19900124,1800,130,100,800 +19900124,1800,130,100,775 +19900124,1800,130,100,750 +19900124,1800,130,100,740 +19900124,1800,130,100,700 +19900124,1800,130,100,650 +19900124,1800,130,100,620 +19900124,1800,130,100,600 +19900124,1800,130,100,550 +19900124,1800,130,100,500 +19900124,1800,130,100,450 +19900124,1800,130,100,400 +19900124,1800,130,100,375 +19900124,1800,130,100,350 +19900124,1800,130,100,300 +19900124,1800,130,100,250 +19900124,1800,130,100,245 +19900124,1800,130,100,225 +19900124,1800,130,100,200 +19900124,1800,130,100,175 +19900124,1800,130,100,150 +19900124,1800,130,100,125 +19900124,1800,130,100,100 +19900124,1800,130,100,70 +19900124,1800,130,100,50 +19900124,1800,130,100,30 +19900124,1800,130,100,20 +19900124,1800,130,100,10 +19900124,1800,130,100,9 +19900124,1800,130,100,7 +19900124,1800,130,100,5 +19900124,1800,130,100,3 +19900124,1800,130,100,2 +19900124,1800,130,100,1 +19900124,1800,130,210,40 +19900124,1800,129,100,1000 +19900124,1800,129,100,975 +19900124,1800,129,100,950 +19900124,1800,129,100,925 +19900124,1800,129,100,900 +19900124,1800,129,100,875 +19900124,1800,129,100,850 +19900124,1800,129,100,825 +19900124,1800,129,100,800 +19900124,1800,129,100,775 +19900124,1800,129,100,750 +19900124,1800,129,100,740 +19900124,1800,129,100,700 +19900124,1800,129,100,650 +19900124,1800,129,100,620 +19900124,1800,129,100,600 +19900124,1800,129,100,550 +19900124,1800,129,100,500 +19900124,1800,129,100,450 +19900124,1800,129,100,400 +19900124,1800,129,100,375 +19900124,1800,129,100,350 +19900124,1800,129,100,300 +19900124,1800,129,100,250 +19900124,1800,129,100,245 +19900124,1800,129,100,225 +19900124,1800,129,100,200 +19900124,1800,129,100,175 +19900124,1800,129,100,150 +19900124,1800,129,100,125 +19900124,1800,129,100,100 +19900124,1800,129,100,70 +19900124,1800,129,100,50 +19900124,1800,129,100,30 +19900124,1800,129,100,20 +19900124,1800,129,100,10 +19900124,1800,129,100,9 +19900124,1800,129,100,7 +19900124,1800,129,100,5 +19900124,1800,129,100,3 +19900124,1800,129,100,2 +19900124,1800,129,100,1 +19900124,1800,129,210,40 +19900124,1800,157,100,1000 +19900124,1800,157,100,975 +19900124,1800,157,100,950 +19900124,1800,157,100,925 +19900124,1800,157,100,900 +19900124,1800,157,100,875 +19900124,1800,157,100,850 +19900124,1800,157,100,825 +19900124,1800,157,100,800 +19900124,1800,157,100,775 +19900124,1800,157,100,750 +19900124,1800,157,100,740 +19900124,1800,157,100,700 +19900124,1800,157,100,650 +19900124,1800,157,100,620 +19900124,1800,157,100,600 +19900124,1800,157,100,550 +19900124,1800,157,100,500 +19900124,1800,157,100,450 +19900124,1800,157,100,400 +19900124,1800,157,100,375 +19900124,1800,157,100,350 +19900124,1800,157,100,300 +19900124,1800,157,100,250 +19900124,1800,157,100,245 +19900124,1800,157,100,225 +19900124,1800,157,100,200 +19900124,1800,157,100,175 +19900124,1800,157,100,150 +19900124,1800,157,100,125 +19900124,1800,157,100,100 +19900124,1800,157,100,70 +19900124,1800,157,100,50 +19900124,1800,157,100,30 +19900124,1800,157,100,20 +19900124,1800,157,100,10 +19900124,1800,157,100,9 +19900124,1800,157,100,7 +19900124,1800,157,100,5 +19900124,1800,157,100,3 +19900124,1800,157,100,2 +19900124,1800,157,100,1 +19900124,1800,157,210,40 +19900124,1800,135,100,1000 +19900124,1800,135,100,975 +19900124,1800,135,100,950 +19900124,1800,135,100,925 +19900124,1800,135,100,900 +19900124,1800,135,100,875 +19900124,1800,135,100,850 +19900124,1800,135,100,825 +19900124,1800,135,100,800 +19900124,1800,135,100,775 +19900124,1800,135,100,750 +19900124,1800,135,100,740 +19900124,1800,135,100,700 +19900124,1800,135,100,650 +19900124,1800,135,100,620 +19900124,1800,135,100,600 +19900124,1800,135,100,550 +19900124,1800,135,100,500 +19900124,1800,135,100,450 +19900124,1800,135,100,400 +19900124,1800,135,100,375 +19900124,1800,135,100,350 +19900124,1800,135,100,300 +19900124,1800,135,100,250 +19900124,1800,135,100,245 +19900124,1800,135,100,225 +19900124,1800,135,100,200 +19900124,1800,135,100,175 +19900124,1800,135,100,150 +19900124,1800,135,100,125 +19900124,1800,135,100,100 +19900124,1800,135,100,70 +19900124,1800,135,100,50 +19900124,1800,135,100,30 +19900124,1800,135,100,20 +19900124,1800,135,100,10 +19900124,1800,135,100,9 +19900124,1800,135,100,7 +19900124,1800,135,100,5 +19900124,1800,135,100,3 +19900124,1800,135,100,2 +19900124,1800,135,100,1 +19900124,1800,135,210,40 +19900124,1800,138,100,1000 +19900124,1800,138,100,975 +19900124,1800,138,100,950 +19900124,1800,138,100,925 +19900124,1800,138,100,900 +19900124,1800,138,100,875 +19900124,1800,138,100,850 +19900124,1800,138,100,825 +19900124,1800,138,100,800 +19900124,1800,138,100,775 +19900124,1800,138,100,750 +19900124,1800,138,100,740 +19900124,1800,138,100,700 +19900124,1800,138,100,650 +19900124,1800,138,100,620 +19900124,1800,138,100,600 +19900124,1800,138,100,550 +19900124,1800,138,100,500 +19900124,1800,138,100,450 +19900124,1800,138,100,400 +19900124,1800,138,100,375 +19900124,1800,138,100,350 +19900124,1800,138,100,300 +19900124,1800,138,100,250 +19900124,1800,138,100,245 +19900124,1800,138,100,225 +19900124,1800,138,100,200 +19900124,1800,138,100,175 +19900124,1800,138,100,150 +19900124,1800,138,100,125 +19900124,1800,138,100,100 +19900124,1800,138,100,70 +19900124,1800,138,100,50 +19900124,1800,138,100,30 +19900124,1800,138,100,20 +19900124,1800,138,100,10 +19900124,1800,138,100,9 +19900124,1800,138,100,7 +19900124,1800,138,100,5 +19900124,1800,138,100,3 +19900124,1800,138,100,2 +19900124,1800,138,100,1 +19900124,1800,138,210,40 +19900124,1800,131,109,1 +19900124,1800,131,109,2 +19900124,1800,131,109,3 +19900124,1800,131,109,4 +19900124,1800,131,109,5 +19900124,1800,131,109,6 +19900124,1800,131,109,7 +19900124,1800,131,109,8 +19900124,1800,131,109,9 +19900124,1800,131,109,10 +19900124,1800,132,109,1 +19900124,1800,132,109,2 +19900124,1800,132,109,3 +19900124,1800,132,109,4 +19900124,1800,132,109,5 +19900124,1800,132,109,6 +19900124,1800,132,109,7 +19900124,1800,132,109,8 +19900124,1800,132,109,9 +19900124,1800,132,109,10 +19900124,1800,130,109,1 +19900124,1800,130,109,2 +19900124,1800,130,109,3 +19900124,1800,130,109,4 +19900124,1800,130,109,5 +19900124,1800,130,109,6 +19900124,1800,130,109,7 +19900124,1800,130,109,8 +19900124,1800,130,109,9 +19900124,1800,130,109,10 +19900124,1800,157,109,1 +19900124,1800,157,109,2 +19900124,1800,157,109,3 +19900124,1800,157,109,4 +19900124,1800,157,109,5 +19900124,1800,157,109,6 +19900124,1800,157,109,7 +19900124,1800,157,109,8 +19900124,1800,157,109,9 +19900124,1800,157,109,10 +19900124,1800,54,109,1 +19900124,1800,54,109,2 +19900124,1800,54,109,3 +19900124,1800,54,109,4 +19900124,1800,54,109,5 +19900124,1800,54,109,6 +19900124,1800,54,109,7 +19900124,1800,54,109,8 +19900124,1800,54,109,9 +19900124,1800,54,109,10 +19900124,1800,135,109,1 +19900124,1800,135,109,2 +19900124,1800,135,109,3 +19900124,1800,135,109,4 +19900124,1800,135,109,5 +19900124,1800,135,109,6 +19900124,1800,135,109,7 +19900124,1800,135,109,8 +19900124,1800,135,109,9 +19900124,1800,135,109,10 +19900124,1800,134,109,1 +19900124,1800,152,109,1 +19900124,1800,131,100,850 +19900124,1800,132,100,850 +19900124,1800,134,100,1000 +19900124,1800,152,100,1000 +19900124,2100,131,100,850 +19900124,2100,132,100,850 +19900124,2100,134,100,1000 +19900124,2100,152,100,1000 +19900125,0,131,100,1000 +19900125,0,131,100,975 +19900125,0,131,100,950 +19900125,0,131,100,925 +19900125,0,131,100,900 +19900125,0,131,100,875 +19900125,0,131,100,825 +19900125,0,131,100,800 +19900125,0,131,100,775 +19900125,0,131,100,750 +19900125,0,131,100,740 +19900125,0,131,100,700 +19900125,0,131,100,650 +19900125,0,131,100,620 +19900125,0,131,100,600 +19900125,0,131,100,550 +19900125,0,131,100,500 +19900125,0,131,100,450 +19900125,0,131,100,400 +19900125,0,131,100,375 +19900125,0,131,100,350 +19900125,0,131,100,300 +19900125,0,131,100,250 +19900125,0,131,100,245 +19900125,0,131,100,225 +19900125,0,131,100,200 +19900125,0,131,100,175 +19900125,0,131,100,150 +19900125,0,131,100,125 +19900125,0,131,100,100 +19900125,0,131,100,70 +19900125,0,131,100,50 +19900125,0,131,100,30 +19900125,0,131,100,20 +19900125,0,131,100,10 +19900125,0,131,100,9 +19900125,0,131,100,7 +19900125,0,131,100,5 +19900125,0,131,100,3 +19900125,0,131,100,2 +19900125,0,131,100,1 +19900125,0,131,210,40 +19900125,0,132,100,1000 +19900125,0,132,100,975 +19900125,0,132,100,950 +19900125,0,132,100,925 +19900125,0,132,100,900 +19900125,0,132,100,875 +19900125,0,132,100,825 +19900125,0,132,100,800 +19900125,0,132,100,775 +19900125,0,132,100,750 +19900125,0,132,100,740 +19900125,0,132,100,700 +19900125,0,132,100,650 +19900125,0,132,100,620 +19900125,0,132,100,600 +19900125,0,132,100,550 +19900125,0,132,100,500 +19900125,0,132,100,450 +19900125,0,132,100,400 +19900125,0,132,100,375 +19900125,0,132,100,350 +19900125,0,132,100,300 +19900125,0,132,100,250 +19900125,0,132,100,245 +19900125,0,132,100,225 +19900125,0,132,100,200 +19900125,0,132,100,175 +19900125,0,132,100,150 +19900125,0,132,100,125 +19900125,0,132,100,100 +19900125,0,132,100,70 +19900125,0,132,100,50 +19900125,0,132,100,30 +19900125,0,132,100,20 +19900125,0,132,100,10 +19900125,0,132,100,9 +19900125,0,132,100,7 +19900125,0,132,100,5 +19900125,0,132,100,3 +19900125,0,132,100,2 +19900125,0,132,100,1 +19900125,0,132,210,40 +19900125,0,130,100,1000 +19900125,0,130,100,975 +19900125,0,130,100,950 +19900125,0,130,100,925 +19900125,0,130,100,900 +19900125,0,130,100,875 +19900125,0,130,100,850 +19900125,0,130,100,825 +19900125,0,130,100,800 +19900125,0,130,100,775 +19900125,0,130,100,750 +19900125,0,130,100,740 +19900125,0,130,100,700 +19900125,0,130,100,650 +19900125,0,130,100,620 +19900125,0,130,100,600 +19900125,0,130,100,550 +19900125,0,130,100,500 +19900125,0,130,100,450 +19900125,0,130,100,400 +19900125,0,130,100,375 +19900125,0,130,100,350 +19900125,0,130,100,300 +19900125,0,130,100,250 +19900125,0,130,100,245 +19900125,0,130,100,225 +19900125,0,130,100,200 +19900125,0,130,100,175 +19900125,0,130,100,150 +19900125,0,130,100,125 +19900125,0,130,100,100 +19900125,0,130,100,70 +19900125,0,130,100,50 +19900125,0,130,100,30 +19900125,0,130,100,20 +19900125,0,130,100,10 +19900125,0,130,100,9 +19900125,0,130,100,7 +19900125,0,130,100,5 +19900125,0,130,100,3 +19900125,0,130,100,2 +19900125,0,130,100,1 +19900125,0,130,210,40 +19900125,0,129,100,1000 +19900125,0,129,100,975 +19900125,0,129,100,950 +19900125,0,129,100,925 +19900125,0,129,100,900 +19900125,0,129,100,875 +19900125,0,129,100,850 +19900125,0,129,100,825 +19900125,0,129,100,800 +19900125,0,129,100,775 +19900125,0,129,100,750 +19900125,0,129,100,740 +19900125,0,129,100,700 +19900125,0,129,100,650 +19900125,0,129,100,620 +19900125,0,129,100,600 +19900125,0,129,100,550 +19900125,0,129,100,500 +19900125,0,129,100,450 +19900125,0,129,100,400 +19900125,0,129,100,375 +19900125,0,129,100,350 +19900125,0,129,100,300 +19900125,0,129,100,250 +19900125,0,129,100,245 +19900125,0,129,100,225 +19900125,0,129,100,200 +19900125,0,129,100,175 +19900125,0,129,100,150 +19900125,0,129,100,125 +19900125,0,129,100,100 +19900125,0,129,100,70 +19900125,0,129,100,50 +19900125,0,129,100,30 +19900125,0,129,100,20 +19900125,0,129,100,10 +19900125,0,129,100,9 +19900125,0,129,100,7 +19900125,0,129,100,5 +19900125,0,129,100,3 +19900125,0,129,100,2 +19900125,0,129,100,1 +19900125,0,129,210,40 +19900125,0,157,100,1000 +19900125,0,157,100,975 +19900125,0,157,100,950 +19900125,0,157,100,925 +19900125,0,157,100,900 +19900125,0,157,100,875 +19900125,0,157,100,850 +19900125,0,157,100,825 +19900125,0,157,100,800 +19900125,0,157,100,775 +19900125,0,157,100,750 +19900125,0,157,100,740 +19900125,0,157,100,700 +19900125,0,157,100,650 +19900125,0,157,100,620 +19900125,0,157,100,600 +19900125,0,157,100,550 +19900125,0,157,100,500 +19900125,0,157,100,450 +19900125,0,157,100,400 +19900125,0,157,100,375 +19900125,0,157,100,350 +19900125,0,157,100,300 +19900125,0,157,100,250 +19900125,0,157,100,245 +19900125,0,157,100,225 +19900125,0,157,100,200 +19900125,0,157,100,175 +19900125,0,157,100,150 +19900125,0,157,100,125 +19900125,0,157,100,100 +19900125,0,157,100,70 +19900125,0,157,100,50 +19900125,0,157,100,30 +19900125,0,157,100,20 +19900125,0,157,100,10 +19900125,0,157,100,9 +19900125,0,157,100,7 +19900125,0,157,100,5 +19900125,0,157,100,3 +19900125,0,157,100,2 +19900125,0,157,100,1 +19900125,0,157,210,40 +19900125,0,135,100,1000 +19900125,0,135,100,975 +19900125,0,135,100,950 +19900125,0,135,100,925 +19900125,0,135,100,900 +19900125,0,135,100,875 +19900125,0,135,100,850 +19900125,0,135,100,825 +19900125,0,135,100,800 +19900125,0,135,100,775 +19900125,0,135,100,750 +19900125,0,135,100,740 +19900125,0,135,100,700 +19900125,0,135,100,650 +19900125,0,135,100,620 +19900125,0,135,100,600 +19900125,0,135,100,550 +19900125,0,135,100,500 +19900125,0,135,100,450 +19900125,0,135,100,400 +19900125,0,135,100,375 +19900125,0,135,100,350 +19900125,0,135,100,300 +19900125,0,135,100,250 +19900125,0,135,100,245 +19900125,0,135,100,225 +19900125,0,135,100,200 +19900125,0,135,100,175 +19900125,0,135,100,150 +19900125,0,135,100,125 +19900125,0,135,100,100 +19900125,0,135,100,70 +19900125,0,135,100,50 +19900125,0,135,100,30 +19900125,0,135,100,20 +19900125,0,135,100,10 +19900125,0,135,100,9 +19900125,0,135,100,7 +19900125,0,135,100,5 +19900125,0,135,100,3 +19900125,0,135,100,2 +19900125,0,135,100,1 +19900125,0,135,210,40 +19900125,0,138,100,1000 +19900125,0,138,100,975 +19900125,0,138,100,950 +19900125,0,138,100,925 +19900125,0,138,100,900 +19900125,0,138,100,875 +19900125,0,138,100,850 +19900125,0,138,100,825 +19900125,0,138,100,800 +19900125,0,138,100,775 +19900125,0,138,100,750 +19900125,0,138,100,740 +19900125,0,138,100,700 +19900125,0,138,100,650 +19900125,0,138,100,620 +19900125,0,138,100,600 +19900125,0,138,100,550 +19900125,0,138,100,500 +19900125,0,138,100,450 +19900125,0,138,100,400 +19900125,0,138,100,375 +19900125,0,138,100,350 +19900125,0,138,100,300 +19900125,0,138,100,250 +19900125,0,138,100,245 +19900125,0,138,100,225 +19900125,0,138,100,200 +19900125,0,138,100,175 +19900125,0,138,100,150 +19900125,0,138,100,125 +19900125,0,138,100,100 +19900125,0,138,100,70 +19900125,0,138,100,50 +19900125,0,138,100,30 +19900125,0,138,100,20 +19900125,0,138,100,10 +19900125,0,138,100,9 +19900125,0,138,100,7 +19900125,0,138,100,5 +19900125,0,138,100,3 +19900125,0,138,100,2 +19900125,0,138,100,1 +19900125,0,138,210,40 +19900125,0,131,109,1 +19900125,0,131,109,2 +19900125,0,131,109,3 +19900125,0,131,109,4 +19900125,0,131,109,5 +19900125,0,131,109,6 +19900125,0,131,109,7 +19900125,0,131,109,8 +19900125,0,131,109,9 +19900125,0,131,109,10 +19900125,0,132,109,1 +19900125,0,132,109,2 +19900125,0,132,109,3 +19900125,0,132,109,4 +19900125,0,132,109,5 +19900125,0,132,109,6 +19900125,0,132,109,7 +19900125,0,132,109,8 +19900125,0,132,109,9 +19900125,0,132,109,10 +19900125,0,130,109,1 +19900125,0,130,109,2 +19900125,0,130,109,3 +19900125,0,130,109,4 +19900125,0,130,109,5 +19900125,0,130,109,6 +19900125,0,130,109,7 +19900125,0,130,109,8 +19900125,0,130,109,9 +19900125,0,130,109,10 +19900125,0,157,109,1 +19900125,0,157,109,2 +19900125,0,157,109,3 +19900125,0,157,109,4 +19900125,0,157,109,5 +19900125,0,157,109,6 +19900125,0,157,109,7 +19900125,0,157,109,8 +19900125,0,157,109,9 +19900125,0,157,109,10 +19900125,0,54,109,1 +19900125,0,54,109,2 +19900125,0,54,109,3 +19900125,0,54,109,4 +19900125,0,54,109,5 +19900125,0,54,109,6 +19900125,0,54,109,7 +19900125,0,54,109,8 +19900125,0,54,109,9 +19900125,0,54,109,10 +19900125,0,135,109,1 +19900125,0,135,109,2 +19900125,0,135,109,3 +19900125,0,135,109,4 +19900125,0,135,109,5 +19900125,0,135,109,6 +19900125,0,135,109,7 +19900125,0,135,109,8 +19900125,0,135,109,9 +19900125,0,135,109,10 +19900125,0,134,109,1 +19900125,0,152,109,1 +19900125,0,131,100,850 +19900125,0,132,100,850 +19900125,0,134,100,1000 +19900125,0,152,100,1000 +19900125,300,131,100,850 +19900125,300,132,100,850 +19900125,300,134,100,1000 +19900125,300,152,100,1000 +19900125,600,131,100,1000 +19900125,600,131,100,975 +19900125,600,131,100,950 +19900125,600,131,100,925 +19900125,600,131,100,900 +19900125,600,131,100,875 +19900125,600,131,100,825 +19900125,600,131,100,800 +19900125,600,131,100,775 +19900125,600,131,100,750 +19900125,600,131,100,740 +19900125,600,131,100,700 +19900125,600,131,100,650 +19900125,600,131,100,620 +19900125,600,131,100,600 +19900125,600,131,100,550 +19900125,600,131,100,500 +19900125,600,131,100,450 +19900125,600,131,100,400 +19900125,600,131,100,375 +19900125,600,131,100,350 +19900125,600,131,100,300 +19900125,600,131,100,250 +19900125,600,131,100,245 +19900125,600,131,100,225 +19900125,600,131,100,200 +19900125,600,131,100,175 +19900125,600,131,100,150 +19900125,600,131,100,125 +19900125,600,131,100,100 +19900125,600,131,100,70 +19900125,600,131,100,50 +19900125,600,131,100,30 +19900125,600,131,100,20 +19900125,600,131,100,10 +19900125,600,131,100,9 +19900125,600,131,100,7 +19900125,600,131,100,5 +19900125,600,131,100,3 +19900125,600,131,100,2 +19900125,600,131,100,1 +19900125,600,131,210,40 +19900125,600,132,100,1000 +19900125,600,132,100,975 +19900125,600,132,100,950 +19900125,600,132,100,925 +19900125,600,132,100,900 +19900125,600,132,100,875 +19900125,600,132,100,825 +19900125,600,132,100,800 +19900125,600,132,100,775 +19900125,600,132,100,750 +19900125,600,132,100,740 +19900125,600,132,100,700 +19900125,600,132,100,650 +19900125,600,132,100,620 +19900125,600,132,100,600 +19900125,600,132,100,550 +19900125,600,132,100,500 +19900125,600,132,100,450 +19900125,600,132,100,400 +19900125,600,132,100,375 +19900125,600,132,100,350 +19900125,600,132,100,300 +19900125,600,132,100,250 +19900125,600,132,100,245 +19900125,600,132,100,225 +19900125,600,132,100,200 +19900125,600,132,100,175 +19900125,600,132,100,150 +19900125,600,132,100,125 +19900125,600,132,100,100 +19900125,600,132,100,70 +19900125,600,132,100,50 +19900125,600,132,100,30 +19900125,600,132,100,20 +19900125,600,132,100,10 +19900125,600,132,100,9 +19900125,600,132,100,7 +19900125,600,132,100,5 +19900125,600,132,100,3 +19900125,600,132,100,2 +19900125,600,132,100,1 +19900125,600,132,210,40 +19900125,600,130,100,1000 +19900125,600,130,100,975 +19900125,600,130,100,950 +19900125,600,130,100,925 +19900125,600,130,100,900 +19900125,600,130,100,875 +19900125,600,130,100,850 +19900125,600,130,100,825 +19900125,600,130,100,800 +19900125,600,130,100,775 +19900125,600,130,100,750 +19900125,600,130,100,740 +19900125,600,130,100,700 +19900125,600,130,100,650 +19900125,600,130,100,620 +19900125,600,130,100,600 +19900125,600,130,100,550 +19900125,600,130,100,500 +19900125,600,130,100,450 +19900125,600,130,100,400 +19900125,600,130,100,375 +19900125,600,130,100,350 +19900125,600,130,100,300 +19900125,600,130,100,250 +19900125,600,130,100,245 +19900125,600,130,100,225 +19900125,600,130,100,200 +19900125,600,130,100,175 +19900125,600,130,100,150 +19900125,600,130,100,125 +19900125,600,130,100,100 +19900125,600,130,100,70 +19900125,600,130,100,50 +19900125,600,130,100,30 +19900125,600,130,100,20 +19900125,600,130,100,10 +19900125,600,130,100,9 +19900125,600,130,100,7 +19900125,600,130,100,5 +19900125,600,130,100,3 +19900125,600,130,100,2 +19900125,600,130,100,1 +19900125,600,130,210,40 +19900125,600,129,100,1000 +19900125,600,129,100,975 +19900125,600,129,100,950 +19900125,600,129,100,925 +19900125,600,129,100,900 +19900125,600,129,100,875 +19900125,600,129,100,850 +19900125,600,129,100,825 +19900125,600,129,100,800 +19900125,600,129,100,775 +19900125,600,129,100,750 +19900125,600,129,100,740 +19900125,600,129,100,700 +19900125,600,129,100,650 +19900125,600,129,100,620 +19900125,600,129,100,600 +19900125,600,129,100,550 +19900125,600,129,100,500 +19900125,600,129,100,450 +19900125,600,129,100,400 +19900125,600,129,100,375 +19900125,600,129,100,350 +19900125,600,129,100,300 +19900125,600,129,100,250 +19900125,600,129,100,245 +19900125,600,129,100,225 +19900125,600,129,100,200 +19900125,600,129,100,175 +19900125,600,129,100,150 +19900125,600,129,100,125 +19900125,600,129,100,100 +19900125,600,129,100,70 +19900125,600,129,100,50 +19900125,600,129,100,30 +19900125,600,129,100,20 +19900125,600,129,100,10 +19900125,600,129,100,9 +19900125,600,129,100,7 +19900125,600,129,100,5 +19900125,600,129,100,3 +19900125,600,129,100,2 +19900125,600,129,100,1 +19900125,600,129,210,40 +19900125,600,157,100,1000 +19900125,600,157,100,975 +19900125,600,157,100,950 +19900125,600,157,100,925 +19900125,600,157,100,900 +19900125,600,157,100,875 +19900125,600,157,100,850 +19900125,600,157,100,825 +19900125,600,157,100,800 +19900125,600,157,100,775 +19900125,600,157,100,750 +19900125,600,157,100,740 +19900125,600,157,100,700 +19900125,600,157,100,650 +19900125,600,157,100,620 +19900125,600,157,100,600 +19900125,600,157,100,550 +19900125,600,157,100,500 +19900125,600,157,100,450 +19900125,600,157,100,400 +19900125,600,157,100,375 +19900125,600,157,100,350 +19900125,600,157,100,300 +19900125,600,157,100,250 +19900125,600,157,100,245 +19900125,600,157,100,225 +19900125,600,157,100,200 +19900125,600,157,100,175 +19900125,600,157,100,150 +19900125,600,157,100,125 +19900125,600,157,100,100 +19900125,600,157,100,70 +19900125,600,157,100,50 +19900125,600,157,100,30 +19900125,600,157,100,20 +19900125,600,157,100,10 +19900125,600,157,100,9 +19900125,600,157,100,7 +19900125,600,157,100,5 +19900125,600,157,100,3 +19900125,600,157,100,2 +19900125,600,157,100,1 +19900125,600,157,210,40 +19900125,600,135,100,1000 +19900125,600,135,100,975 +19900125,600,135,100,950 +19900125,600,135,100,925 +19900125,600,135,100,900 +19900125,600,135,100,875 +19900125,600,135,100,850 +19900125,600,135,100,825 +19900125,600,135,100,800 +19900125,600,135,100,775 +19900125,600,135,100,750 +19900125,600,135,100,740 +19900125,600,135,100,700 +19900125,600,135,100,650 +19900125,600,135,100,620 +19900125,600,135,100,600 +19900125,600,135,100,550 +19900125,600,135,100,500 +19900125,600,135,100,450 +19900125,600,135,100,400 +19900125,600,135,100,375 +19900125,600,135,100,350 +19900125,600,135,100,300 +19900125,600,135,100,250 +19900125,600,135,100,245 +19900125,600,135,100,225 +19900125,600,135,100,200 +19900125,600,135,100,175 +19900125,600,135,100,150 +19900125,600,135,100,125 +19900125,600,135,100,100 +19900125,600,135,100,70 +19900125,600,135,100,50 +19900125,600,135,100,30 +19900125,600,135,100,20 +19900125,600,135,100,10 +19900125,600,135,100,9 +19900125,600,135,100,7 +19900125,600,135,100,5 +19900125,600,135,100,3 +19900125,600,135,100,2 +19900125,600,135,100,1 +19900125,600,135,210,40 +19900125,600,138,100,1000 +19900125,600,138,100,975 +19900125,600,138,100,950 +19900125,600,138,100,925 +19900125,600,138,100,900 +19900125,600,138,100,875 +19900125,600,138,100,850 +19900125,600,138,100,825 +19900125,600,138,100,800 +19900125,600,138,100,775 +19900125,600,138,100,750 +19900125,600,138,100,740 +19900125,600,138,100,700 +19900125,600,138,100,650 +19900125,600,138,100,620 +19900125,600,138,100,600 +19900125,600,138,100,550 +19900125,600,138,100,500 +19900125,600,138,100,450 +19900125,600,138,100,400 +19900125,600,138,100,375 +19900125,600,138,100,350 +19900125,600,138,100,300 +19900125,600,138,100,250 +19900125,600,138,100,245 +19900125,600,138,100,225 +19900125,600,138,100,200 +19900125,600,138,100,175 +19900125,600,138,100,150 +19900125,600,138,100,125 +19900125,600,138,100,100 +19900125,600,138,100,70 +19900125,600,138,100,50 +19900125,600,138,100,30 +19900125,600,138,100,20 +19900125,600,138,100,10 +19900125,600,138,100,9 +19900125,600,138,100,7 +19900125,600,138,100,5 +19900125,600,138,100,3 +19900125,600,138,100,2 +19900125,600,138,100,1 +19900125,600,138,210,40 +19900125,600,131,109,1 +19900125,600,131,109,2 +19900125,600,131,109,3 +19900125,600,131,109,4 +19900125,600,131,109,5 +19900125,600,131,109,6 +19900125,600,131,109,7 +19900125,600,131,109,8 +19900125,600,131,109,9 +19900125,600,131,109,10 +19900125,600,132,109,1 +19900125,600,132,109,2 +19900125,600,132,109,3 +19900125,600,132,109,4 +19900125,600,132,109,5 +19900125,600,132,109,6 +19900125,600,132,109,7 +19900125,600,132,109,8 +19900125,600,132,109,9 +19900125,600,132,109,10 +19900125,600,130,109,1 +19900125,600,130,109,2 +19900125,600,130,109,3 +19900125,600,130,109,4 +19900125,600,130,109,5 +19900125,600,130,109,6 +19900125,600,130,109,7 +19900125,600,130,109,8 +19900125,600,130,109,9 +19900125,600,130,109,10 +19900125,600,157,109,1 +19900125,600,157,109,2 +19900125,600,157,109,3 +19900125,600,157,109,4 +19900125,600,157,109,5 +19900125,600,157,109,6 +19900125,600,157,109,7 +19900125,600,157,109,8 +19900125,600,157,109,9 +19900125,600,157,109,10 +19900125,600,54,109,1 +19900125,600,54,109,2 +19900125,600,54,109,3 +19900125,600,54,109,4 +19900125,600,54,109,5 +19900125,600,54,109,6 +19900125,600,54,109,7 +19900125,600,54,109,8 +19900125,600,54,109,9 +19900125,600,54,109,10 +19900125,600,135,109,1 +19900125,600,135,109,2 +19900125,600,135,109,3 +19900125,600,135,109,4 +19900125,600,135,109,5 +19900125,600,135,109,6 +19900125,600,135,109,7 +19900125,600,135,109,8 +19900125,600,135,109,9 +19900125,600,135,109,10 +19900125,600,134,109,1 +19900125,600,152,109,1 +19900125,600,131,100,850 +19900125,600,132,100,850 +19900125,600,134,100,1000 +19900125,600,152,100,1000 +19900125,900,131,100,850 +19900125,900,132,100,850 +19900125,900,134,100,1000 +19900125,900,152,100,1000 +19900125,1200,131,100,1000 +19900125,1200,131,100,975 +19900125,1200,131,100,950 +19900125,1200,131,100,925 +19900125,1200,131,100,900 +19900125,1200,131,100,875 +19900125,1200,131,100,825 +19900125,1200,131,100,800 +19900125,1200,131,100,775 +19900125,1200,131,100,750 +19900125,1200,131,100,740 +19900125,1200,131,100,700 +19900125,1200,131,100,650 +19900125,1200,131,100,620 +19900125,1200,131,100,600 +19900125,1200,131,100,550 +19900125,1200,131,100,500 +19900125,1200,131,100,450 +19900125,1200,131,100,400 +19900125,1200,131,100,375 +19900125,1200,131,100,350 +19900125,1200,131,100,300 +19900125,1200,131,100,250 +19900125,1200,131,100,245 +19900125,1200,131,100,225 +19900125,1200,131,100,200 +19900125,1200,131,100,175 +19900125,1200,131,100,150 +19900125,1200,131,100,125 +19900125,1200,131,100,100 +19900125,1200,131,100,70 +19900125,1200,131,100,50 +19900125,1200,131,100,30 +19900125,1200,131,100,20 +19900125,1200,131,100,10 +19900125,1200,131,100,9 +19900125,1200,131,100,7 +19900125,1200,131,100,5 +19900125,1200,131,100,3 +19900125,1200,131,100,2 +19900125,1200,131,100,1 +19900125,1200,131,210,40 +19900125,1200,132,100,1000 +19900125,1200,132,100,975 +19900125,1200,132,100,950 +19900125,1200,132,100,925 +19900125,1200,132,100,900 +19900125,1200,132,100,875 +19900125,1200,132,100,825 +19900125,1200,132,100,800 +19900125,1200,132,100,775 +19900125,1200,132,100,750 +19900125,1200,132,100,740 +19900125,1200,132,100,700 +19900125,1200,132,100,650 +19900125,1200,132,100,620 +19900125,1200,132,100,600 +19900125,1200,132,100,550 +19900125,1200,132,100,500 +19900125,1200,132,100,450 +19900125,1200,132,100,400 +19900125,1200,132,100,375 +19900125,1200,132,100,350 +19900125,1200,132,100,300 +19900125,1200,132,100,250 +19900125,1200,132,100,245 +19900125,1200,132,100,225 +19900125,1200,132,100,200 +19900125,1200,132,100,175 +19900125,1200,132,100,150 +19900125,1200,132,100,125 +19900125,1200,132,100,100 +19900125,1200,132,100,70 +19900125,1200,132,100,50 +19900125,1200,132,100,30 +19900125,1200,132,100,20 +19900125,1200,132,100,10 +19900125,1200,132,100,9 +19900125,1200,132,100,7 +19900125,1200,132,100,5 +19900125,1200,132,100,3 +19900125,1200,132,100,2 +19900125,1200,132,100,1 +19900125,1200,132,210,40 +19900125,1200,130,100,1000 +19900125,1200,130,100,975 +19900125,1200,130,100,950 +19900125,1200,130,100,925 +19900125,1200,130,100,900 +19900125,1200,130,100,875 +19900125,1200,130,100,850 +19900125,1200,130,100,825 +19900125,1200,130,100,800 +19900125,1200,130,100,775 +19900125,1200,130,100,750 +19900125,1200,130,100,740 +19900125,1200,130,100,700 +19900125,1200,130,100,650 +19900125,1200,130,100,620 +19900125,1200,130,100,600 +19900125,1200,130,100,550 +19900125,1200,130,100,500 +19900125,1200,130,100,450 +19900125,1200,130,100,400 +19900125,1200,130,100,375 +19900125,1200,130,100,350 +19900125,1200,130,100,300 +19900125,1200,130,100,250 +19900125,1200,130,100,245 +19900125,1200,130,100,225 +19900125,1200,130,100,200 +19900125,1200,130,100,175 +19900125,1200,130,100,150 +19900125,1200,130,100,125 +19900125,1200,130,100,100 +19900125,1200,130,100,70 +19900125,1200,130,100,50 +19900125,1200,130,100,30 +19900125,1200,130,100,20 +19900125,1200,130,100,10 +19900125,1200,130,100,9 +19900125,1200,130,100,7 +19900125,1200,130,100,5 +19900125,1200,130,100,3 +19900125,1200,130,100,2 +19900125,1200,130,100,1 +19900125,1200,130,210,40 +19900125,1200,129,100,1000 +19900125,1200,129,100,975 +19900125,1200,129,100,950 +19900125,1200,129,100,925 +19900125,1200,129,100,900 +19900125,1200,129,100,875 +19900125,1200,129,100,850 +19900125,1200,129,100,825 +19900125,1200,129,100,800 +19900125,1200,129,100,775 +19900125,1200,129,100,750 +19900125,1200,129,100,740 +19900125,1200,129,100,700 +19900125,1200,129,100,650 +19900125,1200,129,100,620 +19900125,1200,129,100,600 +19900125,1200,129,100,550 +19900125,1200,129,100,500 +19900125,1200,129,100,450 +19900125,1200,129,100,400 +19900125,1200,129,100,375 +19900125,1200,129,100,350 +19900125,1200,129,100,300 +19900125,1200,129,100,250 +19900125,1200,129,100,245 +19900125,1200,129,100,225 +19900125,1200,129,100,200 +19900125,1200,129,100,175 +19900125,1200,129,100,150 +19900125,1200,129,100,125 +19900125,1200,129,100,100 +19900125,1200,129,100,70 +19900125,1200,129,100,50 +19900125,1200,129,100,30 +19900125,1200,129,100,20 +19900125,1200,129,100,10 +19900125,1200,129,100,9 +19900125,1200,129,100,7 +19900125,1200,129,100,5 +19900125,1200,129,100,3 +19900125,1200,129,100,2 +19900125,1200,129,100,1 +19900125,1200,129,210,40 +19900125,1200,157,100,1000 +19900125,1200,157,100,975 +19900125,1200,157,100,950 +19900125,1200,157,100,925 +19900125,1200,157,100,900 +19900125,1200,157,100,875 +19900125,1200,157,100,850 +19900125,1200,157,100,825 +19900125,1200,157,100,800 +19900125,1200,157,100,775 +19900125,1200,157,100,750 +19900125,1200,157,100,740 +19900125,1200,157,100,700 +19900125,1200,157,100,650 +19900125,1200,157,100,620 +19900125,1200,157,100,600 +19900125,1200,157,100,550 +19900125,1200,157,100,500 +19900125,1200,157,100,450 +19900125,1200,157,100,400 +19900125,1200,157,100,375 +19900125,1200,157,100,350 +19900125,1200,157,100,300 +19900125,1200,157,100,250 +19900125,1200,157,100,245 +19900125,1200,157,100,225 +19900125,1200,157,100,200 +19900125,1200,157,100,175 +19900125,1200,157,100,150 +19900125,1200,157,100,125 +19900125,1200,157,100,100 +19900125,1200,157,100,70 +19900125,1200,157,100,50 +19900125,1200,157,100,30 +19900125,1200,157,100,20 +19900125,1200,157,100,10 +19900125,1200,157,100,9 +19900125,1200,157,100,7 +19900125,1200,157,100,5 +19900125,1200,157,100,3 +19900125,1200,157,100,2 +19900125,1200,157,100,1 +19900125,1200,157,210,40 +19900125,1200,135,100,1000 +19900125,1200,135,100,975 +19900125,1200,135,100,950 +19900125,1200,135,100,925 +19900125,1200,135,100,900 +19900125,1200,135,100,875 +19900125,1200,135,100,850 +19900125,1200,135,100,825 +19900125,1200,135,100,800 +19900125,1200,135,100,775 +19900125,1200,135,100,750 +19900125,1200,135,100,740 +19900125,1200,135,100,700 +19900125,1200,135,100,650 +19900125,1200,135,100,620 +19900125,1200,135,100,600 +19900125,1200,135,100,550 +19900125,1200,135,100,500 +19900125,1200,135,100,450 +19900125,1200,135,100,400 +19900125,1200,135,100,375 +19900125,1200,135,100,350 +19900125,1200,135,100,300 +19900125,1200,135,100,250 +19900125,1200,135,100,245 +19900125,1200,135,100,225 +19900125,1200,135,100,200 +19900125,1200,135,100,175 +19900125,1200,135,100,150 +19900125,1200,135,100,125 +19900125,1200,135,100,100 +19900125,1200,135,100,70 +19900125,1200,135,100,50 +19900125,1200,135,100,30 +19900125,1200,135,100,20 +19900125,1200,135,100,10 +19900125,1200,135,100,9 +19900125,1200,135,100,7 +19900125,1200,135,100,5 +19900125,1200,135,100,3 +19900125,1200,135,100,2 +19900125,1200,135,100,1 +19900125,1200,135,210,40 +19900125,1200,138,100,1000 +19900125,1200,138,100,975 +19900125,1200,138,100,950 +19900125,1200,138,100,925 +19900125,1200,138,100,900 +19900125,1200,138,100,875 +19900125,1200,138,100,850 +19900125,1200,138,100,825 +19900125,1200,138,100,800 +19900125,1200,138,100,775 +19900125,1200,138,100,750 +19900125,1200,138,100,740 +19900125,1200,138,100,700 +19900125,1200,138,100,650 +19900125,1200,138,100,620 +19900125,1200,138,100,600 +19900125,1200,138,100,550 +19900125,1200,138,100,500 +19900125,1200,138,100,450 +19900125,1200,138,100,400 +19900125,1200,138,100,375 +19900125,1200,138,100,350 +19900125,1200,138,100,300 +19900125,1200,138,100,250 +19900125,1200,138,100,245 +19900125,1200,138,100,225 +19900125,1200,138,100,200 +19900125,1200,138,100,175 +19900125,1200,138,100,150 +19900125,1200,138,100,125 +19900125,1200,138,100,100 +19900125,1200,138,100,70 +19900125,1200,138,100,50 +19900125,1200,138,100,30 +19900125,1200,138,100,20 +19900125,1200,138,100,10 +19900125,1200,138,100,9 +19900125,1200,138,100,7 +19900125,1200,138,100,5 +19900125,1200,138,100,3 +19900125,1200,138,100,2 +19900125,1200,138,100,1 +19900125,1200,138,210,40 +19900125,1200,131,109,1 +19900125,1200,131,109,2 +19900125,1200,131,109,3 +19900125,1200,131,109,4 +19900125,1200,131,109,5 +19900125,1200,131,109,6 +19900125,1200,131,109,7 +19900125,1200,131,109,8 +19900125,1200,131,109,9 +19900125,1200,131,109,10 +19900125,1200,132,109,1 +19900125,1200,132,109,2 +19900125,1200,132,109,3 +19900125,1200,132,109,4 +19900125,1200,132,109,5 +19900125,1200,132,109,6 +19900125,1200,132,109,7 +19900125,1200,132,109,8 +19900125,1200,132,109,9 +19900125,1200,132,109,10 +19900125,1200,130,109,1 +19900125,1200,130,109,2 +19900125,1200,130,109,3 +19900125,1200,130,109,4 +19900125,1200,130,109,5 +19900125,1200,130,109,6 +19900125,1200,130,109,7 +19900125,1200,130,109,8 +19900125,1200,130,109,9 +19900125,1200,130,109,10 +19900125,1200,157,109,1 +19900125,1200,157,109,2 +19900125,1200,157,109,3 +19900125,1200,157,109,4 +19900125,1200,157,109,5 +19900125,1200,157,109,6 +19900125,1200,157,109,7 +19900125,1200,157,109,8 +19900125,1200,157,109,9 +19900125,1200,157,109,10 +19900125,1200,54,109,1 +19900125,1200,54,109,2 +19900125,1200,54,109,3 +19900125,1200,54,109,4 +19900125,1200,54,109,5 +19900125,1200,54,109,6 +19900125,1200,54,109,7 +19900125,1200,54,109,8 +19900125,1200,54,109,9 +19900125,1200,54,109,10 +19900125,1200,135,109,1 +19900125,1200,135,109,2 +19900125,1200,135,109,3 +19900125,1200,135,109,4 +19900125,1200,135,109,5 +19900125,1200,135,109,6 +19900125,1200,135,109,7 +19900125,1200,135,109,8 +19900125,1200,135,109,9 +19900125,1200,135,109,10 +19900125,1200,134,109,1 +19900125,1200,152,109,1 +19900125,1200,131,100,850 +19900125,1200,132,100,850 +19900125,1200,134,100,1000 +19900125,1200,152,100,1000 +19900125,1500,131,100,850 +19900125,1500,132,100,850 +19900125,1500,134,100,1000 +19900125,1500,152,100,1000 +19900125,1800,131,100,1000 +19900125,1800,131,100,975 +19900125,1800,131,100,950 +19900125,1800,131,100,925 +19900125,1800,131,100,900 +19900125,1800,131,100,875 +19900125,1800,131,100,825 +19900125,1800,131,100,800 +19900125,1800,131,100,775 +19900125,1800,131,100,750 +19900125,1800,131,100,740 +19900125,1800,131,100,700 +19900125,1800,131,100,650 +19900125,1800,131,100,620 +19900125,1800,131,100,600 +19900125,1800,131,100,550 +19900125,1800,131,100,500 +19900125,1800,131,100,450 +19900125,1800,131,100,400 +19900125,1800,131,100,375 +19900125,1800,131,100,350 +19900125,1800,131,100,300 +19900125,1800,131,100,250 +19900125,1800,131,100,245 +19900125,1800,131,100,225 +19900125,1800,131,100,200 +19900125,1800,131,100,175 +19900125,1800,131,100,150 +19900125,1800,131,100,125 +19900125,1800,131,100,100 +19900125,1800,131,100,70 +19900125,1800,131,100,50 +19900125,1800,131,100,30 +19900125,1800,131,100,20 +19900125,1800,131,100,10 +19900125,1800,131,100,9 +19900125,1800,131,100,7 +19900125,1800,131,100,5 +19900125,1800,131,100,3 +19900125,1800,131,100,2 +19900125,1800,131,100,1 +19900125,1800,131,210,40 +19900125,1800,132,100,1000 +19900125,1800,132,100,975 +19900125,1800,132,100,950 +19900125,1800,132,100,925 +19900125,1800,132,100,900 +19900125,1800,132,100,875 +19900125,1800,132,100,825 +19900125,1800,132,100,800 +19900125,1800,132,100,775 +19900125,1800,132,100,750 +19900125,1800,132,100,740 +19900125,1800,132,100,700 +19900125,1800,132,100,650 +19900125,1800,132,100,620 +19900125,1800,132,100,600 +19900125,1800,132,100,550 +19900125,1800,132,100,500 +19900125,1800,132,100,450 +19900125,1800,132,100,400 +19900125,1800,132,100,375 +19900125,1800,132,100,350 +19900125,1800,132,100,300 +19900125,1800,132,100,250 +19900125,1800,132,100,245 +19900125,1800,132,100,225 +19900125,1800,132,100,200 +19900125,1800,132,100,175 +19900125,1800,132,100,150 +19900125,1800,132,100,125 +19900125,1800,132,100,100 +19900125,1800,132,100,70 +19900125,1800,132,100,50 +19900125,1800,132,100,30 +19900125,1800,132,100,20 +19900125,1800,132,100,10 +19900125,1800,132,100,9 +19900125,1800,132,100,7 +19900125,1800,132,100,5 +19900125,1800,132,100,3 +19900125,1800,132,100,2 +19900125,1800,132,100,1 +19900125,1800,132,210,40 +19900125,1800,130,100,1000 +19900125,1800,130,100,975 +19900125,1800,130,100,950 +19900125,1800,130,100,925 +19900125,1800,130,100,900 +19900125,1800,130,100,875 +19900125,1800,130,100,850 +19900125,1800,130,100,825 +19900125,1800,130,100,800 +19900125,1800,130,100,775 +19900125,1800,130,100,750 +19900125,1800,130,100,740 +19900125,1800,130,100,700 +19900125,1800,130,100,650 +19900125,1800,130,100,620 +19900125,1800,130,100,600 +19900125,1800,130,100,550 +19900125,1800,130,100,500 +19900125,1800,130,100,450 +19900125,1800,130,100,400 +19900125,1800,130,100,375 +19900125,1800,130,100,350 +19900125,1800,130,100,300 +19900125,1800,130,100,250 +19900125,1800,130,100,245 +19900125,1800,130,100,225 +19900125,1800,130,100,200 +19900125,1800,130,100,175 +19900125,1800,130,100,150 +19900125,1800,130,100,125 +19900125,1800,130,100,100 +19900125,1800,130,100,70 +19900125,1800,130,100,50 +19900125,1800,130,100,30 +19900125,1800,130,100,20 +19900125,1800,130,100,10 +19900125,1800,130,100,9 +19900125,1800,130,100,7 +19900125,1800,130,100,5 +19900125,1800,130,100,3 +19900125,1800,130,100,2 +19900125,1800,130,100,1 +19900125,1800,130,210,40 +19900125,1800,129,100,1000 +19900125,1800,129,100,975 +19900125,1800,129,100,950 +19900125,1800,129,100,925 +19900125,1800,129,100,900 +19900125,1800,129,100,875 +19900125,1800,129,100,850 +19900125,1800,129,100,825 +19900125,1800,129,100,800 +19900125,1800,129,100,775 +19900125,1800,129,100,750 +19900125,1800,129,100,740 +19900125,1800,129,100,700 +19900125,1800,129,100,650 +19900125,1800,129,100,620 +19900125,1800,129,100,600 +19900125,1800,129,100,550 +19900125,1800,129,100,500 +19900125,1800,129,100,450 +19900125,1800,129,100,400 +19900125,1800,129,100,375 +19900125,1800,129,100,350 +19900125,1800,129,100,300 +19900125,1800,129,100,250 +19900125,1800,129,100,245 +19900125,1800,129,100,225 +19900125,1800,129,100,200 +19900125,1800,129,100,175 +19900125,1800,129,100,150 +19900125,1800,129,100,125 +19900125,1800,129,100,100 +19900125,1800,129,100,70 +19900125,1800,129,100,50 +19900125,1800,129,100,30 +19900125,1800,129,100,20 +19900125,1800,129,100,10 +19900125,1800,129,100,9 +19900125,1800,129,100,7 +19900125,1800,129,100,5 +19900125,1800,129,100,3 +19900125,1800,129,100,2 +19900125,1800,129,100,1 +19900125,1800,129,210,40 +19900125,1800,157,100,1000 +19900125,1800,157,100,975 +19900125,1800,157,100,950 +19900125,1800,157,100,925 +19900125,1800,157,100,900 +19900125,1800,157,100,875 +19900125,1800,157,100,850 +19900125,1800,157,100,825 +19900125,1800,157,100,800 +19900125,1800,157,100,775 +19900125,1800,157,100,750 +19900125,1800,157,100,740 +19900125,1800,157,100,700 +19900125,1800,157,100,650 +19900125,1800,157,100,620 +19900125,1800,157,100,600 +19900125,1800,157,100,550 +19900125,1800,157,100,500 +19900125,1800,157,100,450 +19900125,1800,157,100,400 +19900125,1800,157,100,375 +19900125,1800,157,100,350 +19900125,1800,157,100,300 +19900125,1800,157,100,250 +19900125,1800,157,100,245 +19900125,1800,157,100,225 +19900125,1800,157,100,200 +19900125,1800,157,100,175 +19900125,1800,157,100,150 +19900125,1800,157,100,125 +19900125,1800,157,100,100 +19900125,1800,157,100,70 +19900125,1800,157,100,50 +19900125,1800,157,100,30 +19900125,1800,157,100,20 +19900125,1800,157,100,10 +19900125,1800,157,100,9 +19900125,1800,157,100,7 +19900125,1800,157,100,5 +19900125,1800,157,100,3 +19900125,1800,157,100,2 +19900125,1800,157,100,1 +19900125,1800,157,210,40 +19900125,1800,135,100,1000 +19900125,1800,135,100,975 +19900125,1800,135,100,950 +19900125,1800,135,100,925 +19900125,1800,135,100,900 +19900125,1800,135,100,875 +19900125,1800,135,100,850 +19900125,1800,135,100,825 +19900125,1800,135,100,800 +19900125,1800,135,100,775 +19900125,1800,135,100,750 +19900125,1800,135,100,740 +19900125,1800,135,100,700 +19900125,1800,135,100,650 +19900125,1800,135,100,620 +19900125,1800,135,100,600 +19900125,1800,135,100,550 +19900125,1800,135,100,500 +19900125,1800,135,100,450 +19900125,1800,135,100,400 +19900125,1800,135,100,375 +19900125,1800,135,100,350 +19900125,1800,135,100,300 +19900125,1800,135,100,250 +19900125,1800,135,100,245 +19900125,1800,135,100,225 +19900125,1800,135,100,200 +19900125,1800,135,100,175 +19900125,1800,135,100,150 +19900125,1800,135,100,125 +19900125,1800,135,100,100 +19900125,1800,135,100,70 +19900125,1800,135,100,50 +19900125,1800,135,100,30 +19900125,1800,135,100,20 +19900125,1800,135,100,10 +19900125,1800,135,100,9 +19900125,1800,135,100,7 +19900125,1800,135,100,5 +19900125,1800,135,100,3 +19900125,1800,135,100,2 +19900125,1800,135,100,1 +19900125,1800,135,210,40 +19900125,1800,138,100,1000 +19900125,1800,138,100,975 +19900125,1800,138,100,950 +19900125,1800,138,100,925 +19900125,1800,138,100,900 +19900125,1800,138,100,875 +19900125,1800,138,100,850 +19900125,1800,138,100,825 +19900125,1800,138,100,800 +19900125,1800,138,100,775 +19900125,1800,138,100,750 +19900125,1800,138,100,740 +19900125,1800,138,100,700 +19900125,1800,138,100,650 +19900125,1800,138,100,620 +19900125,1800,138,100,600 +19900125,1800,138,100,550 +19900125,1800,138,100,500 +19900125,1800,138,100,450 +19900125,1800,138,100,400 +19900125,1800,138,100,375 +19900125,1800,138,100,350 +19900125,1800,138,100,300 +19900125,1800,138,100,250 +19900125,1800,138,100,245 +19900125,1800,138,100,225 +19900125,1800,138,100,200 +19900125,1800,138,100,175 +19900125,1800,138,100,150 +19900125,1800,138,100,125 +19900125,1800,138,100,100 +19900125,1800,138,100,70 +19900125,1800,138,100,50 +19900125,1800,138,100,30 +19900125,1800,138,100,20 +19900125,1800,138,100,10 +19900125,1800,138,100,9 +19900125,1800,138,100,7 +19900125,1800,138,100,5 +19900125,1800,138,100,3 +19900125,1800,138,100,2 +19900125,1800,138,100,1 +19900125,1800,138,210,40 +19900125,1800,131,109,1 +19900125,1800,131,109,2 +19900125,1800,131,109,3 +19900125,1800,131,109,4 +19900125,1800,131,109,5 +19900125,1800,131,109,6 +19900125,1800,131,109,7 +19900125,1800,131,109,8 +19900125,1800,131,109,9 +19900125,1800,131,109,10 +19900125,1800,132,109,1 +19900125,1800,132,109,2 +19900125,1800,132,109,3 +19900125,1800,132,109,4 +19900125,1800,132,109,5 +19900125,1800,132,109,6 +19900125,1800,132,109,7 +19900125,1800,132,109,8 +19900125,1800,132,109,9 +19900125,1800,132,109,10 +19900125,1800,130,109,1 +19900125,1800,130,109,2 +19900125,1800,130,109,3 +19900125,1800,130,109,4 +19900125,1800,130,109,5 +19900125,1800,130,109,6 +19900125,1800,130,109,7 +19900125,1800,130,109,8 +19900125,1800,130,109,9 +19900125,1800,130,109,10 +19900125,1800,157,109,1 +19900125,1800,157,109,2 +19900125,1800,157,109,3 +19900125,1800,157,109,4 +19900125,1800,157,109,5 +19900125,1800,157,109,6 +19900125,1800,157,109,7 +19900125,1800,157,109,8 +19900125,1800,157,109,9 +19900125,1800,157,109,10 +19900125,1800,54,109,1 +19900125,1800,54,109,2 +19900125,1800,54,109,3 +19900125,1800,54,109,4 +19900125,1800,54,109,5 +19900125,1800,54,109,6 +19900125,1800,54,109,7 +19900125,1800,54,109,8 +19900125,1800,54,109,9 +19900125,1800,54,109,10 +19900125,1800,135,109,1 +19900125,1800,135,109,2 +19900125,1800,135,109,3 +19900125,1800,135,109,4 +19900125,1800,135,109,5 +19900125,1800,135,109,6 +19900125,1800,135,109,7 +19900125,1800,135,109,8 +19900125,1800,135,109,9 +19900125,1800,135,109,10 +19900125,1800,134,109,1 +19900125,1800,152,109,1 +19900125,1800,131,100,850 +19900125,1800,132,100,850 +19900125,1800,134,100,1000 +19900125,1800,152,100,1000 +19900125,2100,131,100,850 +19900125,2100,132,100,850 +19900125,2100,134,100,1000 +19900125,2100,152,100,1000 +19900126,0,131,100,1000 +19900126,0,131,100,975 +19900126,0,131,100,950 +19900126,0,131,100,925 +19900126,0,131,100,900 +19900126,0,131,100,875 +19900126,0,131,100,825 +19900126,0,131,100,800 +19900126,0,131,100,775 +19900126,0,131,100,750 +19900126,0,131,100,740 +19900126,0,131,100,700 +19900126,0,131,100,650 +19900126,0,131,100,620 +19900126,0,131,100,600 +19900126,0,131,100,550 +19900126,0,131,100,500 +19900126,0,131,100,450 +19900126,0,131,100,400 +19900126,0,131,100,375 +19900126,0,131,100,350 +19900126,0,131,100,300 +19900126,0,131,100,250 +19900126,0,131,100,245 +19900126,0,131,100,225 +19900126,0,131,100,200 +19900126,0,131,100,175 +19900126,0,131,100,150 +19900126,0,131,100,125 +19900126,0,131,100,100 +19900126,0,131,100,70 +19900126,0,131,100,50 +19900126,0,131,100,30 +19900126,0,131,100,20 +19900126,0,131,100,10 +19900126,0,131,100,9 +19900126,0,131,100,7 +19900126,0,131,100,5 +19900126,0,131,100,3 +19900126,0,131,100,2 +19900126,0,131,100,1 +19900126,0,131,210,40 +19900126,0,132,100,1000 +19900126,0,132,100,975 +19900126,0,132,100,950 +19900126,0,132,100,925 +19900126,0,132,100,900 +19900126,0,132,100,875 +19900126,0,132,100,825 +19900126,0,132,100,800 +19900126,0,132,100,775 +19900126,0,132,100,750 +19900126,0,132,100,740 +19900126,0,132,100,700 +19900126,0,132,100,650 +19900126,0,132,100,620 +19900126,0,132,100,600 +19900126,0,132,100,550 +19900126,0,132,100,500 +19900126,0,132,100,450 +19900126,0,132,100,400 +19900126,0,132,100,375 +19900126,0,132,100,350 +19900126,0,132,100,300 +19900126,0,132,100,250 +19900126,0,132,100,245 +19900126,0,132,100,225 +19900126,0,132,100,200 +19900126,0,132,100,175 +19900126,0,132,100,150 +19900126,0,132,100,125 +19900126,0,132,100,100 +19900126,0,132,100,70 +19900126,0,132,100,50 +19900126,0,132,100,30 +19900126,0,132,100,20 +19900126,0,132,100,10 +19900126,0,132,100,9 +19900126,0,132,100,7 +19900126,0,132,100,5 +19900126,0,132,100,3 +19900126,0,132,100,2 +19900126,0,132,100,1 +19900126,0,132,210,40 +19900126,0,130,100,1000 +19900126,0,130,100,975 +19900126,0,130,100,950 +19900126,0,130,100,925 +19900126,0,130,100,900 +19900126,0,130,100,875 +19900126,0,130,100,850 +19900126,0,130,100,825 +19900126,0,130,100,800 +19900126,0,130,100,775 +19900126,0,130,100,750 +19900126,0,130,100,740 +19900126,0,130,100,700 +19900126,0,130,100,650 +19900126,0,130,100,620 +19900126,0,130,100,600 +19900126,0,130,100,550 +19900126,0,130,100,500 +19900126,0,130,100,450 +19900126,0,130,100,400 +19900126,0,130,100,375 +19900126,0,130,100,350 +19900126,0,130,100,300 +19900126,0,130,100,250 +19900126,0,130,100,245 +19900126,0,130,100,225 +19900126,0,130,100,200 +19900126,0,130,100,175 +19900126,0,130,100,150 +19900126,0,130,100,125 +19900126,0,130,100,100 +19900126,0,130,100,70 +19900126,0,130,100,50 +19900126,0,130,100,30 +19900126,0,130,100,20 +19900126,0,130,100,10 +19900126,0,130,100,9 +19900126,0,130,100,7 +19900126,0,130,100,5 +19900126,0,130,100,3 +19900126,0,130,100,2 +19900126,0,130,100,1 +19900126,0,130,210,40 +19900126,0,129,100,1000 +19900126,0,129,100,975 +19900126,0,129,100,950 +19900126,0,129,100,925 +19900126,0,129,100,900 +19900126,0,129,100,875 +19900126,0,129,100,850 +19900126,0,129,100,825 +19900126,0,129,100,800 +19900126,0,129,100,775 +19900126,0,129,100,750 +19900126,0,129,100,740 +19900126,0,129,100,700 +19900126,0,129,100,650 +19900126,0,129,100,620 +19900126,0,129,100,600 +19900126,0,129,100,550 +19900126,0,129,100,500 +19900126,0,129,100,450 +19900126,0,129,100,400 +19900126,0,129,100,375 +19900126,0,129,100,350 +19900126,0,129,100,300 +19900126,0,129,100,250 +19900126,0,129,100,245 +19900126,0,129,100,225 +19900126,0,129,100,200 +19900126,0,129,100,175 +19900126,0,129,100,150 +19900126,0,129,100,125 +19900126,0,129,100,100 +19900126,0,129,100,70 +19900126,0,129,100,50 +19900126,0,129,100,30 +19900126,0,129,100,20 +19900126,0,129,100,10 +19900126,0,129,100,9 +19900126,0,129,100,7 +19900126,0,129,100,5 +19900126,0,129,100,3 +19900126,0,129,100,2 +19900126,0,129,100,1 +19900126,0,129,210,40 +19900126,0,157,100,1000 +19900126,0,157,100,975 +19900126,0,157,100,950 +19900126,0,157,100,925 +19900126,0,157,100,900 +19900126,0,157,100,875 +19900126,0,157,100,850 +19900126,0,157,100,825 +19900126,0,157,100,800 +19900126,0,157,100,775 +19900126,0,157,100,750 +19900126,0,157,100,740 +19900126,0,157,100,700 +19900126,0,157,100,650 +19900126,0,157,100,620 +19900126,0,157,100,600 +19900126,0,157,100,550 +19900126,0,157,100,500 +19900126,0,157,100,450 +19900126,0,157,100,400 +19900126,0,157,100,375 +19900126,0,157,100,350 +19900126,0,157,100,300 +19900126,0,157,100,250 +19900126,0,157,100,245 +19900126,0,157,100,225 +19900126,0,157,100,200 +19900126,0,157,100,175 +19900126,0,157,100,150 +19900126,0,157,100,125 +19900126,0,157,100,100 +19900126,0,157,100,70 +19900126,0,157,100,50 +19900126,0,157,100,30 +19900126,0,157,100,20 +19900126,0,157,100,10 +19900126,0,157,100,9 +19900126,0,157,100,7 +19900126,0,157,100,5 +19900126,0,157,100,3 +19900126,0,157,100,2 +19900126,0,157,100,1 +19900126,0,157,210,40 +19900126,0,135,100,1000 +19900126,0,135,100,975 +19900126,0,135,100,950 +19900126,0,135,100,925 +19900126,0,135,100,900 +19900126,0,135,100,875 +19900126,0,135,100,850 +19900126,0,135,100,825 +19900126,0,135,100,800 +19900126,0,135,100,775 +19900126,0,135,100,750 +19900126,0,135,100,740 +19900126,0,135,100,700 +19900126,0,135,100,650 +19900126,0,135,100,620 +19900126,0,135,100,600 +19900126,0,135,100,550 +19900126,0,135,100,500 +19900126,0,135,100,450 +19900126,0,135,100,400 +19900126,0,135,100,375 +19900126,0,135,100,350 +19900126,0,135,100,300 +19900126,0,135,100,250 +19900126,0,135,100,245 +19900126,0,135,100,225 +19900126,0,135,100,200 +19900126,0,135,100,175 +19900126,0,135,100,150 +19900126,0,135,100,125 +19900126,0,135,100,100 +19900126,0,135,100,70 +19900126,0,135,100,50 +19900126,0,135,100,30 +19900126,0,135,100,20 +19900126,0,135,100,10 +19900126,0,135,100,9 +19900126,0,135,100,7 +19900126,0,135,100,5 +19900126,0,135,100,3 +19900126,0,135,100,2 +19900126,0,135,100,1 +19900126,0,135,210,40 +19900126,0,138,100,1000 +19900126,0,138,100,975 +19900126,0,138,100,950 +19900126,0,138,100,925 +19900126,0,138,100,900 +19900126,0,138,100,875 +19900126,0,138,100,850 +19900126,0,138,100,825 +19900126,0,138,100,800 +19900126,0,138,100,775 +19900126,0,138,100,750 +19900126,0,138,100,740 +19900126,0,138,100,700 +19900126,0,138,100,650 +19900126,0,138,100,620 +19900126,0,138,100,600 +19900126,0,138,100,550 +19900126,0,138,100,500 +19900126,0,138,100,450 +19900126,0,138,100,400 +19900126,0,138,100,375 +19900126,0,138,100,350 +19900126,0,138,100,300 +19900126,0,138,100,250 +19900126,0,138,100,245 +19900126,0,138,100,225 +19900126,0,138,100,200 +19900126,0,138,100,175 +19900126,0,138,100,150 +19900126,0,138,100,125 +19900126,0,138,100,100 +19900126,0,138,100,70 +19900126,0,138,100,50 +19900126,0,138,100,30 +19900126,0,138,100,20 +19900126,0,138,100,10 +19900126,0,138,100,9 +19900126,0,138,100,7 +19900126,0,138,100,5 +19900126,0,138,100,3 +19900126,0,138,100,2 +19900126,0,138,100,1 +19900126,0,138,210,40 +19900126,0,131,109,1 +19900126,0,131,109,2 +19900126,0,131,109,3 +19900126,0,131,109,4 +19900126,0,131,109,5 +19900126,0,131,109,6 +19900126,0,131,109,7 +19900126,0,131,109,8 +19900126,0,131,109,9 +19900126,0,131,109,10 +19900126,0,132,109,1 +19900126,0,132,109,2 +19900126,0,132,109,3 +19900126,0,132,109,4 +19900126,0,132,109,5 +19900126,0,132,109,6 +19900126,0,132,109,7 +19900126,0,132,109,8 +19900126,0,132,109,9 +19900126,0,132,109,10 +19900126,0,130,109,1 +19900126,0,130,109,2 +19900126,0,130,109,3 +19900126,0,130,109,4 +19900126,0,130,109,5 +19900126,0,130,109,6 +19900126,0,130,109,7 +19900126,0,130,109,8 +19900126,0,130,109,9 +19900126,0,130,109,10 +19900126,0,157,109,1 +19900126,0,157,109,2 +19900126,0,157,109,3 +19900126,0,157,109,4 +19900126,0,157,109,5 +19900126,0,157,109,6 +19900126,0,157,109,7 +19900126,0,157,109,8 +19900126,0,157,109,9 +19900126,0,157,109,10 +19900126,0,54,109,1 +19900126,0,54,109,2 +19900126,0,54,109,3 +19900126,0,54,109,4 +19900126,0,54,109,5 +19900126,0,54,109,6 +19900126,0,54,109,7 +19900126,0,54,109,8 +19900126,0,54,109,9 +19900126,0,54,109,10 +19900126,0,135,109,1 +19900126,0,135,109,2 +19900126,0,135,109,3 +19900126,0,135,109,4 +19900126,0,135,109,5 +19900126,0,135,109,6 +19900126,0,135,109,7 +19900126,0,135,109,8 +19900126,0,135,109,9 +19900126,0,135,109,10 +19900126,0,134,109,1 +19900126,0,152,109,1 +19900126,0,131,100,850 +19900126,0,132,100,850 +19900126,0,134,100,1000 +19900126,0,152,100,1000 +19900126,300,131,100,850 +19900126,300,132,100,850 +19900126,300,134,100,1000 +19900126,300,152,100,1000 +19900126,600,131,100,1000 +19900126,600,131,100,975 +19900126,600,131,100,950 +19900126,600,131,100,925 +19900126,600,131,100,900 +19900126,600,131,100,875 +19900126,600,131,100,825 +19900126,600,131,100,800 +19900126,600,131,100,775 +19900126,600,131,100,750 +19900126,600,131,100,740 +19900126,600,131,100,700 +19900126,600,131,100,650 +19900126,600,131,100,620 +19900126,600,131,100,600 +19900126,600,131,100,550 +19900126,600,131,100,500 +19900126,600,131,100,450 +19900126,600,131,100,400 +19900126,600,131,100,375 +19900126,600,131,100,350 +19900126,600,131,100,300 +19900126,600,131,100,250 +19900126,600,131,100,245 +19900126,600,131,100,225 +19900126,600,131,100,200 +19900126,600,131,100,175 +19900126,600,131,100,150 +19900126,600,131,100,125 +19900126,600,131,100,100 +19900126,600,131,100,70 +19900126,600,131,100,50 +19900126,600,131,100,30 +19900126,600,131,100,20 +19900126,600,131,100,10 +19900126,600,131,100,9 +19900126,600,131,100,7 +19900126,600,131,100,5 +19900126,600,131,100,3 +19900126,600,131,100,2 +19900126,600,131,100,1 +19900126,600,131,210,40 +19900126,600,132,100,1000 +19900126,600,132,100,975 +19900126,600,132,100,950 +19900126,600,132,100,925 +19900126,600,132,100,900 +19900126,600,132,100,875 +19900126,600,132,100,825 +19900126,600,132,100,800 +19900126,600,132,100,775 +19900126,600,132,100,750 +19900126,600,132,100,740 +19900126,600,132,100,700 +19900126,600,132,100,650 +19900126,600,132,100,620 +19900126,600,132,100,600 +19900126,600,132,100,550 +19900126,600,132,100,500 +19900126,600,132,100,450 +19900126,600,132,100,400 +19900126,600,132,100,375 +19900126,600,132,100,350 +19900126,600,132,100,300 +19900126,600,132,100,250 +19900126,600,132,100,245 +19900126,600,132,100,225 +19900126,600,132,100,200 +19900126,600,132,100,175 +19900126,600,132,100,150 +19900126,600,132,100,125 +19900126,600,132,100,100 +19900126,600,132,100,70 +19900126,600,132,100,50 +19900126,600,132,100,30 +19900126,600,132,100,20 +19900126,600,132,100,10 +19900126,600,132,100,9 +19900126,600,132,100,7 +19900126,600,132,100,5 +19900126,600,132,100,3 +19900126,600,132,100,2 +19900126,600,132,100,1 +19900126,600,132,210,40 +19900126,600,130,100,1000 +19900126,600,130,100,975 +19900126,600,130,100,950 +19900126,600,130,100,925 +19900126,600,130,100,900 +19900126,600,130,100,875 +19900126,600,130,100,850 +19900126,600,130,100,825 +19900126,600,130,100,800 +19900126,600,130,100,775 +19900126,600,130,100,750 +19900126,600,130,100,740 +19900126,600,130,100,700 +19900126,600,130,100,650 +19900126,600,130,100,620 +19900126,600,130,100,600 +19900126,600,130,100,550 +19900126,600,130,100,500 +19900126,600,130,100,450 +19900126,600,130,100,400 +19900126,600,130,100,375 +19900126,600,130,100,350 +19900126,600,130,100,300 +19900126,600,130,100,250 +19900126,600,130,100,245 +19900126,600,130,100,225 +19900126,600,130,100,200 +19900126,600,130,100,175 +19900126,600,130,100,150 +19900126,600,130,100,125 +19900126,600,130,100,100 +19900126,600,130,100,70 +19900126,600,130,100,50 +19900126,600,130,100,30 +19900126,600,130,100,20 +19900126,600,130,100,10 +19900126,600,130,100,9 +19900126,600,130,100,7 +19900126,600,130,100,5 +19900126,600,130,100,3 +19900126,600,130,100,2 +19900126,600,130,100,1 +19900126,600,130,210,40 +19900126,600,129,100,1000 +19900126,600,129,100,975 +19900126,600,129,100,950 +19900126,600,129,100,925 +19900126,600,129,100,900 +19900126,600,129,100,875 +19900126,600,129,100,850 +19900126,600,129,100,825 +19900126,600,129,100,800 +19900126,600,129,100,775 +19900126,600,129,100,750 +19900126,600,129,100,740 +19900126,600,129,100,700 +19900126,600,129,100,650 +19900126,600,129,100,620 +19900126,600,129,100,600 +19900126,600,129,100,550 +19900126,600,129,100,500 +19900126,600,129,100,450 +19900126,600,129,100,400 +19900126,600,129,100,375 +19900126,600,129,100,350 +19900126,600,129,100,300 +19900126,600,129,100,250 +19900126,600,129,100,245 +19900126,600,129,100,225 +19900126,600,129,100,200 +19900126,600,129,100,175 +19900126,600,129,100,150 +19900126,600,129,100,125 +19900126,600,129,100,100 +19900126,600,129,100,70 +19900126,600,129,100,50 +19900126,600,129,100,30 +19900126,600,129,100,20 +19900126,600,129,100,10 +19900126,600,129,100,9 +19900126,600,129,100,7 +19900126,600,129,100,5 +19900126,600,129,100,3 +19900126,600,129,100,2 +19900126,600,129,100,1 +19900126,600,129,210,40 +19900126,600,157,100,1000 +19900126,600,157,100,975 +19900126,600,157,100,950 +19900126,600,157,100,925 +19900126,600,157,100,900 +19900126,600,157,100,875 +19900126,600,157,100,850 +19900126,600,157,100,825 +19900126,600,157,100,800 +19900126,600,157,100,775 +19900126,600,157,100,750 +19900126,600,157,100,740 +19900126,600,157,100,700 +19900126,600,157,100,650 +19900126,600,157,100,620 +19900126,600,157,100,600 +19900126,600,157,100,550 +19900126,600,157,100,500 +19900126,600,157,100,450 +19900126,600,157,100,400 +19900126,600,157,100,375 +19900126,600,157,100,350 +19900126,600,157,100,300 +19900126,600,157,100,250 +19900126,600,157,100,245 +19900126,600,157,100,225 +19900126,600,157,100,200 +19900126,600,157,100,175 +19900126,600,157,100,150 +19900126,600,157,100,125 +19900126,600,157,100,100 +19900126,600,157,100,70 +19900126,600,157,100,50 +19900126,600,157,100,30 +19900126,600,157,100,20 +19900126,600,157,100,10 +19900126,600,157,100,9 +19900126,600,157,100,7 +19900126,600,157,100,5 +19900126,600,157,100,3 +19900126,600,157,100,2 +19900126,600,157,100,1 +19900126,600,157,210,40 +19900126,600,135,100,1000 +19900126,600,135,100,975 +19900126,600,135,100,950 +19900126,600,135,100,925 +19900126,600,135,100,900 +19900126,600,135,100,875 +19900126,600,135,100,850 +19900126,600,135,100,825 +19900126,600,135,100,800 +19900126,600,135,100,775 +19900126,600,135,100,750 +19900126,600,135,100,740 +19900126,600,135,100,700 +19900126,600,135,100,650 +19900126,600,135,100,620 +19900126,600,135,100,600 +19900126,600,135,100,550 +19900126,600,135,100,500 +19900126,600,135,100,450 +19900126,600,135,100,400 +19900126,600,135,100,375 +19900126,600,135,100,350 +19900126,600,135,100,300 +19900126,600,135,100,250 +19900126,600,135,100,245 +19900126,600,135,100,225 +19900126,600,135,100,200 +19900126,600,135,100,175 +19900126,600,135,100,150 +19900126,600,135,100,125 +19900126,600,135,100,100 +19900126,600,135,100,70 +19900126,600,135,100,50 +19900126,600,135,100,30 +19900126,600,135,100,20 +19900126,600,135,100,10 +19900126,600,135,100,9 +19900126,600,135,100,7 +19900126,600,135,100,5 +19900126,600,135,100,3 +19900126,600,135,100,2 +19900126,600,135,100,1 +19900126,600,135,210,40 +19900126,600,138,100,1000 +19900126,600,138,100,975 +19900126,600,138,100,950 +19900126,600,138,100,925 +19900126,600,138,100,900 +19900126,600,138,100,875 +19900126,600,138,100,850 +19900126,600,138,100,825 +19900126,600,138,100,800 +19900126,600,138,100,775 +19900126,600,138,100,750 +19900126,600,138,100,740 +19900126,600,138,100,700 +19900126,600,138,100,650 +19900126,600,138,100,620 +19900126,600,138,100,600 +19900126,600,138,100,550 +19900126,600,138,100,500 +19900126,600,138,100,450 +19900126,600,138,100,400 +19900126,600,138,100,375 +19900126,600,138,100,350 +19900126,600,138,100,300 +19900126,600,138,100,250 +19900126,600,138,100,245 +19900126,600,138,100,225 +19900126,600,138,100,200 +19900126,600,138,100,175 +19900126,600,138,100,150 +19900126,600,138,100,125 +19900126,600,138,100,100 +19900126,600,138,100,70 +19900126,600,138,100,50 +19900126,600,138,100,30 +19900126,600,138,100,20 +19900126,600,138,100,10 +19900126,600,138,100,9 +19900126,600,138,100,7 +19900126,600,138,100,5 +19900126,600,138,100,3 +19900126,600,138,100,2 +19900126,600,138,100,1 +19900126,600,138,210,40 +19900126,600,131,109,1 +19900126,600,131,109,2 +19900126,600,131,109,3 +19900126,600,131,109,4 +19900126,600,131,109,5 +19900126,600,131,109,6 +19900126,600,131,109,7 +19900126,600,131,109,8 +19900126,600,131,109,9 +19900126,600,131,109,10 +19900126,600,132,109,1 +19900126,600,132,109,2 +19900126,600,132,109,3 +19900126,600,132,109,4 +19900126,600,132,109,5 +19900126,600,132,109,6 +19900126,600,132,109,7 +19900126,600,132,109,8 +19900126,600,132,109,9 +19900126,600,132,109,10 +19900126,600,130,109,1 +19900126,600,130,109,2 +19900126,600,130,109,3 +19900126,600,130,109,4 +19900126,600,130,109,5 +19900126,600,130,109,6 +19900126,600,130,109,7 +19900126,600,130,109,8 +19900126,600,130,109,9 +19900126,600,130,109,10 +19900126,600,157,109,1 +19900126,600,157,109,2 +19900126,600,157,109,3 +19900126,600,157,109,4 +19900126,600,157,109,5 +19900126,600,157,109,6 +19900126,600,157,109,7 +19900126,600,157,109,8 +19900126,600,157,109,9 +19900126,600,157,109,10 +19900126,600,54,109,1 +19900126,600,54,109,2 +19900126,600,54,109,3 +19900126,600,54,109,4 +19900126,600,54,109,5 +19900126,600,54,109,6 +19900126,600,54,109,7 +19900126,600,54,109,8 +19900126,600,54,109,9 +19900126,600,54,109,10 +19900126,600,135,109,1 +19900126,600,135,109,2 +19900126,600,135,109,3 +19900126,600,135,109,4 +19900126,600,135,109,5 +19900126,600,135,109,6 +19900126,600,135,109,7 +19900126,600,135,109,8 +19900126,600,135,109,9 +19900126,600,135,109,10 +19900126,600,134,109,1 +19900126,600,152,109,1 +19900126,600,131,100,850 +19900126,600,132,100,850 +19900126,600,134,100,1000 +19900126,600,152,100,1000 +19900126,900,131,100,850 +19900126,900,132,100,850 +19900126,900,134,100,1000 +19900126,900,152,100,1000 +19900126,1200,131,100,1000 +19900126,1200,131,100,975 +19900126,1200,131,100,950 +19900126,1200,131,100,925 +19900126,1200,131,100,900 +19900126,1200,131,100,875 +19900126,1200,131,100,825 +19900126,1200,131,100,800 +19900126,1200,131,100,775 +19900126,1200,131,100,750 +19900126,1200,131,100,740 +19900126,1200,131,100,700 +19900126,1200,131,100,650 +19900126,1200,131,100,620 +19900126,1200,131,100,600 +19900126,1200,131,100,550 +19900126,1200,131,100,500 +19900126,1200,131,100,450 +19900126,1200,131,100,400 +19900126,1200,131,100,375 +19900126,1200,131,100,350 +19900126,1200,131,100,300 +19900126,1200,131,100,250 +19900126,1200,131,100,245 +19900126,1200,131,100,225 +19900126,1200,131,100,200 +19900126,1200,131,100,175 +19900126,1200,131,100,150 +19900126,1200,131,100,125 +19900126,1200,131,100,100 +19900126,1200,131,100,70 +19900126,1200,131,100,50 +19900126,1200,131,100,30 +19900126,1200,131,100,20 +19900126,1200,131,100,10 +19900126,1200,131,100,9 +19900126,1200,131,100,7 +19900126,1200,131,100,5 +19900126,1200,131,100,3 +19900126,1200,131,100,2 +19900126,1200,131,100,1 +19900126,1200,131,210,40 +19900126,1200,132,100,1000 +19900126,1200,132,100,975 +19900126,1200,132,100,950 +19900126,1200,132,100,925 +19900126,1200,132,100,900 +19900126,1200,132,100,875 +19900126,1200,132,100,825 +19900126,1200,132,100,800 +19900126,1200,132,100,775 +19900126,1200,132,100,750 +19900126,1200,132,100,740 +19900126,1200,132,100,700 +19900126,1200,132,100,650 +19900126,1200,132,100,620 +19900126,1200,132,100,600 +19900126,1200,132,100,550 +19900126,1200,132,100,500 +19900126,1200,132,100,450 +19900126,1200,132,100,400 +19900126,1200,132,100,375 +19900126,1200,132,100,350 +19900126,1200,132,100,300 +19900126,1200,132,100,250 +19900126,1200,132,100,245 +19900126,1200,132,100,225 +19900126,1200,132,100,200 +19900126,1200,132,100,175 +19900126,1200,132,100,150 +19900126,1200,132,100,125 +19900126,1200,132,100,100 +19900126,1200,132,100,70 +19900126,1200,132,100,50 +19900126,1200,132,100,30 +19900126,1200,132,100,20 +19900126,1200,132,100,10 +19900126,1200,132,100,9 +19900126,1200,132,100,7 +19900126,1200,132,100,5 +19900126,1200,132,100,3 +19900126,1200,132,100,2 +19900126,1200,132,100,1 +19900126,1200,132,210,40 +19900126,1200,130,100,1000 +19900126,1200,130,100,975 +19900126,1200,130,100,950 +19900126,1200,130,100,925 +19900126,1200,130,100,900 +19900126,1200,130,100,875 +19900126,1200,130,100,850 +19900126,1200,130,100,825 +19900126,1200,130,100,800 +19900126,1200,130,100,775 +19900126,1200,130,100,750 +19900126,1200,130,100,740 +19900126,1200,130,100,700 +19900126,1200,130,100,650 +19900126,1200,130,100,620 +19900126,1200,130,100,600 +19900126,1200,130,100,550 +19900126,1200,130,100,500 +19900126,1200,130,100,450 +19900126,1200,130,100,400 +19900126,1200,130,100,375 +19900126,1200,130,100,350 +19900126,1200,130,100,300 +19900126,1200,130,100,250 +19900126,1200,130,100,245 +19900126,1200,130,100,225 +19900126,1200,130,100,200 +19900126,1200,130,100,175 +19900126,1200,130,100,150 +19900126,1200,130,100,125 +19900126,1200,130,100,100 +19900126,1200,130,100,70 +19900126,1200,130,100,50 +19900126,1200,130,100,30 +19900126,1200,130,100,20 +19900126,1200,130,100,10 +19900126,1200,130,100,9 +19900126,1200,130,100,7 +19900126,1200,130,100,5 +19900126,1200,130,100,3 +19900126,1200,130,100,2 +19900126,1200,130,100,1 +19900126,1200,130,210,40 +19900126,1200,129,100,1000 +19900126,1200,129,100,975 +19900126,1200,129,100,950 +19900126,1200,129,100,925 +19900126,1200,129,100,900 +19900126,1200,129,100,875 +19900126,1200,129,100,850 +19900126,1200,129,100,825 +19900126,1200,129,100,800 +19900126,1200,129,100,775 +19900126,1200,129,100,750 +19900126,1200,129,100,740 +19900126,1200,129,100,700 +19900126,1200,129,100,650 +19900126,1200,129,100,620 +19900126,1200,129,100,600 +19900126,1200,129,100,550 +19900126,1200,129,100,500 +19900126,1200,129,100,450 +19900126,1200,129,100,400 +19900126,1200,129,100,375 +19900126,1200,129,100,350 +19900126,1200,129,100,300 +19900126,1200,129,100,250 +19900126,1200,129,100,245 +19900126,1200,129,100,225 +19900126,1200,129,100,200 +19900126,1200,129,100,175 +19900126,1200,129,100,150 +19900126,1200,129,100,125 +19900126,1200,129,100,100 +19900126,1200,129,100,70 +19900126,1200,129,100,50 +19900126,1200,129,100,30 +19900126,1200,129,100,20 +19900126,1200,129,100,10 +19900126,1200,129,100,9 +19900126,1200,129,100,7 +19900126,1200,129,100,5 +19900126,1200,129,100,3 +19900126,1200,129,100,2 +19900126,1200,129,100,1 +19900126,1200,129,210,40 +19900126,1200,157,100,1000 +19900126,1200,157,100,975 +19900126,1200,157,100,950 +19900126,1200,157,100,925 +19900126,1200,157,100,900 +19900126,1200,157,100,875 +19900126,1200,157,100,850 +19900126,1200,157,100,825 +19900126,1200,157,100,800 +19900126,1200,157,100,775 +19900126,1200,157,100,750 +19900126,1200,157,100,740 +19900126,1200,157,100,700 +19900126,1200,157,100,650 +19900126,1200,157,100,620 +19900126,1200,157,100,600 +19900126,1200,157,100,550 +19900126,1200,157,100,500 +19900126,1200,157,100,450 +19900126,1200,157,100,400 +19900126,1200,157,100,375 +19900126,1200,157,100,350 +19900126,1200,157,100,300 +19900126,1200,157,100,250 +19900126,1200,157,100,245 +19900126,1200,157,100,225 +19900126,1200,157,100,200 +19900126,1200,157,100,175 +19900126,1200,157,100,150 +19900126,1200,157,100,125 +19900126,1200,157,100,100 +19900126,1200,157,100,70 +19900126,1200,157,100,50 +19900126,1200,157,100,30 +19900126,1200,157,100,20 +19900126,1200,157,100,10 +19900126,1200,157,100,9 +19900126,1200,157,100,7 +19900126,1200,157,100,5 +19900126,1200,157,100,3 +19900126,1200,157,100,2 +19900126,1200,157,100,1 +19900126,1200,157,210,40 +19900126,1200,135,100,1000 +19900126,1200,135,100,975 +19900126,1200,135,100,950 +19900126,1200,135,100,925 +19900126,1200,135,100,900 +19900126,1200,135,100,875 +19900126,1200,135,100,850 +19900126,1200,135,100,825 +19900126,1200,135,100,800 +19900126,1200,135,100,775 +19900126,1200,135,100,750 +19900126,1200,135,100,740 +19900126,1200,135,100,700 +19900126,1200,135,100,650 +19900126,1200,135,100,620 +19900126,1200,135,100,600 +19900126,1200,135,100,550 +19900126,1200,135,100,500 +19900126,1200,135,100,450 +19900126,1200,135,100,400 +19900126,1200,135,100,375 +19900126,1200,135,100,350 +19900126,1200,135,100,300 +19900126,1200,135,100,250 +19900126,1200,135,100,245 +19900126,1200,135,100,225 +19900126,1200,135,100,200 +19900126,1200,135,100,175 +19900126,1200,135,100,150 +19900126,1200,135,100,125 +19900126,1200,135,100,100 +19900126,1200,135,100,70 +19900126,1200,135,100,50 +19900126,1200,135,100,30 +19900126,1200,135,100,20 +19900126,1200,135,100,10 +19900126,1200,135,100,9 +19900126,1200,135,100,7 +19900126,1200,135,100,5 +19900126,1200,135,100,3 +19900126,1200,135,100,2 +19900126,1200,135,100,1 +19900126,1200,135,210,40 +19900126,1200,138,100,1000 +19900126,1200,138,100,975 +19900126,1200,138,100,950 +19900126,1200,138,100,925 +19900126,1200,138,100,900 +19900126,1200,138,100,875 +19900126,1200,138,100,850 +19900126,1200,138,100,825 +19900126,1200,138,100,800 +19900126,1200,138,100,775 +19900126,1200,138,100,750 +19900126,1200,138,100,740 +19900126,1200,138,100,700 +19900126,1200,138,100,650 +19900126,1200,138,100,620 +19900126,1200,138,100,600 +19900126,1200,138,100,550 +19900126,1200,138,100,500 +19900126,1200,138,100,450 +19900126,1200,138,100,400 +19900126,1200,138,100,375 +19900126,1200,138,100,350 +19900126,1200,138,100,300 +19900126,1200,138,100,250 +19900126,1200,138,100,245 +19900126,1200,138,100,225 +19900126,1200,138,100,200 +19900126,1200,138,100,175 +19900126,1200,138,100,150 +19900126,1200,138,100,125 +19900126,1200,138,100,100 +19900126,1200,138,100,70 +19900126,1200,138,100,50 +19900126,1200,138,100,30 +19900126,1200,138,100,20 +19900126,1200,138,100,10 +19900126,1200,138,100,9 +19900126,1200,138,100,7 +19900126,1200,138,100,5 +19900126,1200,138,100,3 +19900126,1200,138,100,2 +19900126,1200,138,100,1 +19900126,1200,138,210,40 +19900126,1200,131,109,1 +19900126,1200,131,109,2 +19900126,1200,131,109,3 +19900126,1200,131,109,4 +19900126,1200,131,109,5 +19900126,1200,131,109,6 +19900126,1200,131,109,7 +19900126,1200,131,109,8 +19900126,1200,131,109,9 +19900126,1200,131,109,10 +19900126,1200,132,109,1 +19900126,1200,132,109,2 +19900126,1200,132,109,3 +19900126,1200,132,109,4 +19900126,1200,132,109,5 +19900126,1200,132,109,6 +19900126,1200,132,109,7 +19900126,1200,132,109,8 +19900126,1200,132,109,9 +19900126,1200,132,109,10 +19900126,1200,130,109,1 +19900126,1200,130,109,2 +19900126,1200,130,109,3 +19900126,1200,130,109,4 +19900126,1200,130,109,5 +19900126,1200,130,109,6 +19900126,1200,130,109,7 +19900126,1200,130,109,8 +19900126,1200,130,109,9 +19900126,1200,130,109,10 +19900126,1200,157,109,1 +19900126,1200,157,109,2 +19900126,1200,157,109,3 +19900126,1200,157,109,4 +19900126,1200,157,109,5 +19900126,1200,157,109,6 +19900126,1200,157,109,7 +19900126,1200,157,109,8 +19900126,1200,157,109,9 +19900126,1200,157,109,10 +19900126,1200,54,109,1 +19900126,1200,54,109,2 +19900126,1200,54,109,3 +19900126,1200,54,109,4 +19900126,1200,54,109,5 +19900126,1200,54,109,6 +19900126,1200,54,109,7 +19900126,1200,54,109,8 +19900126,1200,54,109,9 +19900126,1200,54,109,10 +19900126,1200,135,109,1 +19900126,1200,135,109,2 +19900126,1200,135,109,3 +19900126,1200,135,109,4 +19900126,1200,135,109,5 +19900126,1200,135,109,6 +19900126,1200,135,109,7 +19900126,1200,135,109,8 +19900126,1200,135,109,9 +19900126,1200,135,109,10 +19900126,1200,134,109,1 +19900126,1200,152,109,1 +19900126,1200,131,100,850 +19900126,1200,132,100,850 +19900126,1200,134,100,1000 +19900126,1200,152,100,1000 +19900126,1500,131,100,850 +19900126,1500,132,100,850 +19900126,1500,134,100,1000 +19900126,1500,152,100,1000 +19900126,1800,131,100,1000 +19900126,1800,131,100,975 +19900126,1800,131,100,950 +19900126,1800,131,100,925 +19900126,1800,131,100,900 +19900126,1800,131,100,875 +19900126,1800,131,100,825 +19900126,1800,131,100,800 +19900126,1800,131,100,775 +19900126,1800,131,100,750 +19900126,1800,131,100,740 +19900126,1800,131,100,700 +19900126,1800,131,100,650 +19900126,1800,131,100,620 +19900126,1800,131,100,600 +19900126,1800,131,100,550 +19900126,1800,131,100,500 +19900126,1800,131,100,450 +19900126,1800,131,100,400 +19900126,1800,131,100,375 +19900126,1800,131,100,350 +19900126,1800,131,100,300 +19900126,1800,131,100,250 +19900126,1800,131,100,245 +19900126,1800,131,100,225 +19900126,1800,131,100,200 +19900126,1800,131,100,175 +19900126,1800,131,100,150 +19900126,1800,131,100,125 +19900126,1800,131,100,100 +19900126,1800,131,100,70 +19900126,1800,131,100,50 +19900126,1800,131,100,30 +19900126,1800,131,100,20 +19900126,1800,131,100,10 +19900126,1800,131,100,9 +19900126,1800,131,100,7 +19900126,1800,131,100,5 +19900126,1800,131,100,3 +19900126,1800,131,100,2 +19900126,1800,131,100,1 +19900126,1800,131,210,40 +19900126,1800,132,100,1000 +19900126,1800,132,100,975 +19900126,1800,132,100,950 +19900126,1800,132,100,925 +19900126,1800,132,100,900 +19900126,1800,132,100,875 +19900126,1800,132,100,825 +19900126,1800,132,100,800 +19900126,1800,132,100,775 +19900126,1800,132,100,750 +19900126,1800,132,100,740 +19900126,1800,132,100,700 +19900126,1800,132,100,650 +19900126,1800,132,100,620 +19900126,1800,132,100,600 +19900126,1800,132,100,550 +19900126,1800,132,100,500 +19900126,1800,132,100,450 +19900126,1800,132,100,400 +19900126,1800,132,100,375 +19900126,1800,132,100,350 +19900126,1800,132,100,300 +19900126,1800,132,100,250 +19900126,1800,132,100,245 +19900126,1800,132,100,225 +19900126,1800,132,100,200 +19900126,1800,132,100,175 +19900126,1800,132,100,150 +19900126,1800,132,100,125 +19900126,1800,132,100,100 +19900126,1800,132,100,70 +19900126,1800,132,100,50 +19900126,1800,132,100,30 +19900126,1800,132,100,20 +19900126,1800,132,100,10 +19900126,1800,132,100,9 +19900126,1800,132,100,7 +19900126,1800,132,100,5 +19900126,1800,132,100,3 +19900126,1800,132,100,2 +19900126,1800,132,100,1 +19900126,1800,132,210,40 +19900126,1800,130,100,1000 +19900126,1800,130,100,975 +19900126,1800,130,100,950 +19900126,1800,130,100,925 +19900126,1800,130,100,900 +19900126,1800,130,100,875 +19900126,1800,130,100,850 +19900126,1800,130,100,825 +19900126,1800,130,100,800 +19900126,1800,130,100,775 +19900126,1800,130,100,750 +19900126,1800,130,100,740 +19900126,1800,130,100,700 +19900126,1800,130,100,650 +19900126,1800,130,100,620 +19900126,1800,130,100,600 +19900126,1800,130,100,550 +19900126,1800,130,100,500 +19900126,1800,130,100,450 +19900126,1800,130,100,400 +19900126,1800,130,100,375 +19900126,1800,130,100,350 +19900126,1800,130,100,300 +19900126,1800,130,100,250 +19900126,1800,130,100,245 +19900126,1800,130,100,225 +19900126,1800,130,100,200 +19900126,1800,130,100,175 +19900126,1800,130,100,150 +19900126,1800,130,100,125 +19900126,1800,130,100,100 +19900126,1800,130,100,70 +19900126,1800,130,100,50 +19900126,1800,130,100,30 +19900126,1800,130,100,20 +19900126,1800,130,100,10 +19900126,1800,130,100,9 +19900126,1800,130,100,7 +19900126,1800,130,100,5 +19900126,1800,130,100,3 +19900126,1800,130,100,2 +19900126,1800,130,100,1 +19900126,1800,130,210,40 +19900126,1800,129,100,1000 +19900126,1800,129,100,975 +19900126,1800,129,100,950 +19900126,1800,129,100,925 +19900126,1800,129,100,900 +19900126,1800,129,100,875 +19900126,1800,129,100,850 +19900126,1800,129,100,825 +19900126,1800,129,100,800 +19900126,1800,129,100,775 +19900126,1800,129,100,750 +19900126,1800,129,100,740 +19900126,1800,129,100,700 +19900126,1800,129,100,650 +19900126,1800,129,100,620 +19900126,1800,129,100,600 +19900126,1800,129,100,550 +19900126,1800,129,100,500 +19900126,1800,129,100,450 +19900126,1800,129,100,400 +19900126,1800,129,100,375 +19900126,1800,129,100,350 +19900126,1800,129,100,300 +19900126,1800,129,100,250 +19900126,1800,129,100,245 +19900126,1800,129,100,225 +19900126,1800,129,100,200 +19900126,1800,129,100,175 +19900126,1800,129,100,150 +19900126,1800,129,100,125 +19900126,1800,129,100,100 +19900126,1800,129,100,70 +19900126,1800,129,100,50 +19900126,1800,129,100,30 +19900126,1800,129,100,20 +19900126,1800,129,100,10 +19900126,1800,129,100,9 +19900126,1800,129,100,7 +19900126,1800,129,100,5 +19900126,1800,129,100,3 +19900126,1800,129,100,2 +19900126,1800,129,100,1 +19900126,1800,129,210,40 +19900126,1800,157,100,1000 +19900126,1800,157,100,975 +19900126,1800,157,100,950 +19900126,1800,157,100,925 +19900126,1800,157,100,900 +19900126,1800,157,100,875 +19900126,1800,157,100,850 +19900126,1800,157,100,825 +19900126,1800,157,100,800 +19900126,1800,157,100,775 +19900126,1800,157,100,750 +19900126,1800,157,100,740 +19900126,1800,157,100,700 +19900126,1800,157,100,650 +19900126,1800,157,100,620 +19900126,1800,157,100,600 +19900126,1800,157,100,550 +19900126,1800,157,100,500 +19900126,1800,157,100,450 +19900126,1800,157,100,400 +19900126,1800,157,100,375 +19900126,1800,157,100,350 +19900126,1800,157,100,300 +19900126,1800,157,100,250 +19900126,1800,157,100,245 +19900126,1800,157,100,225 +19900126,1800,157,100,200 +19900126,1800,157,100,175 +19900126,1800,157,100,150 +19900126,1800,157,100,125 +19900126,1800,157,100,100 +19900126,1800,157,100,70 +19900126,1800,157,100,50 +19900126,1800,157,100,30 +19900126,1800,157,100,20 +19900126,1800,157,100,10 +19900126,1800,157,100,9 +19900126,1800,157,100,7 +19900126,1800,157,100,5 +19900126,1800,157,100,3 +19900126,1800,157,100,2 +19900126,1800,157,100,1 +19900126,1800,157,210,40 +19900126,1800,135,100,1000 +19900126,1800,135,100,975 +19900126,1800,135,100,950 +19900126,1800,135,100,925 +19900126,1800,135,100,900 +19900126,1800,135,100,875 +19900126,1800,135,100,850 +19900126,1800,135,100,825 +19900126,1800,135,100,800 +19900126,1800,135,100,775 +19900126,1800,135,100,750 +19900126,1800,135,100,740 +19900126,1800,135,100,700 +19900126,1800,135,100,650 +19900126,1800,135,100,620 +19900126,1800,135,100,600 +19900126,1800,135,100,550 +19900126,1800,135,100,500 +19900126,1800,135,100,450 +19900126,1800,135,100,400 +19900126,1800,135,100,375 +19900126,1800,135,100,350 +19900126,1800,135,100,300 +19900126,1800,135,100,250 +19900126,1800,135,100,245 +19900126,1800,135,100,225 +19900126,1800,135,100,200 +19900126,1800,135,100,175 +19900126,1800,135,100,150 +19900126,1800,135,100,125 +19900126,1800,135,100,100 +19900126,1800,135,100,70 +19900126,1800,135,100,50 +19900126,1800,135,100,30 +19900126,1800,135,100,20 +19900126,1800,135,100,10 +19900126,1800,135,100,9 +19900126,1800,135,100,7 +19900126,1800,135,100,5 +19900126,1800,135,100,3 +19900126,1800,135,100,2 +19900126,1800,135,100,1 +19900126,1800,135,210,40 +19900126,1800,138,100,1000 +19900126,1800,138,100,975 +19900126,1800,138,100,950 +19900126,1800,138,100,925 +19900126,1800,138,100,900 +19900126,1800,138,100,875 +19900126,1800,138,100,850 +19900126,1800,138,100,825 +19900126,1800,138,100,800 +19900126,1800,138,100,775 +19900126,1800,138,100,750 +19900126,1800,138,100,740 +19900126,1800,138,100,700 +19900126,1800,138,100,650 +19900126,1800,138,100,620 +19900126,1800,138,100,600 +19900126,1800,138,100,550 +19900126,1800,138,100,500 +19900126,1800,138,100,450 +19900126,1800,138,100,400 +19900126,1800,138,100,375 +19900126,1800,138,100,350 +19900126,1800,138,100,300 +19900126,1800,138,100,250 +19900126,1800,138,100,245 +19900126,1800,138,100,225 +19900126,1800,138,100,200 +19900126,1800,138,100,175 +19900126,1800,138,100,150 +19900126,1800,138,100,125 +19900126,1800,138,100,100 +19900126,1800,138,100,70 +19900126,1800,138,100,50 +19900126,1800,138,100,30 +19900126,1800,138,100,20 +19900126,1800,138,100,10 +19900126,1800,138,100,9 +19900126,1800,138,100,7 +19900126,1800,138,100,5 +19900126,1800,138,100,3 +19900126,1800,138,100,2 +19900126,1800,138,100,1 +19900126,1800,138,210,40 +19900126,1800,131,109,1 +19900126,1800,131,109,2 +19900126,1800,131,109,3 +19900126,1800,131,109,4 +19900126,1800,131,109,5 +19900126,1800,131,109,6 +19900126,1800,131,109,7 +19900126,1800,131,109,8 +19900126,1800,131,109,9 +19900126,1800,131,109,10 +19900126,1800,132,109,1 +19900126,1800,132,109,2 +19900126,1800,132,109,3 +19900126,1800,132,109,4 +19900126,1800,132,109,5 +19900126,1800,132,109,6 +19900126,1800,132,109,7 +19900126,1800,132,109,8 +19900126,1800,132,109,9 +19900126,1800,132,109,10 +19900126,1800,130,109,1 +19900126,1800,130,109,2 +19900126,1800,130,109,3 +19900126,1800,130,109,4 +19900126,1800,130,109,5 +19900126,1800,130,109,6 +19900126,1800,130,109,7 +19900126,1800,130,109,8 +19900126,1800,130,109,9 +19900126,1800,130,109,10 +19900126,1800,157,109,1 +19900126,1800,157,109,2 +19900126,1800,157,109,3 +19900126,1800,157,109,4 +19900126,1800,157,109,5 +19900126,1800,157,109,6 +19900126,1800,157,109,7 +19900126,1800,157,109,8 +19900126,1800,157,109,9 +19900126,1800,157,109,10 +19900126,1800,54,109,1 +19900126,1800,54,109,2 +19900126,1800,54,109,3 +19900126,1800,54,109,4 +19900126,1800,54,109,5 +19900126,1800,54,109,6 +19900126,1800,54,109,7 +19900126,1800,54,109,8 +19900126,1800,54,109,9 +19900126,1800,54,109,10 +19900126,1800,135,109,1 +19900126,1800,135,109,2 +19900126,1800,135,109,3 +19900126,1800,135,109,4 +19900126,1800,135,109,5 +19900126,1800,135,109,6 +19900126,1800,135,109,7 +19900126,1800,135,109,8 +19900126,1800,135,109,9 +19900126,1800,135,109,10 +19900126,1800,134,109,1 +19900126,1800,152,109,1 +19900126,1800,131,100,850 +19900126,1800,132,100,850 +19900126,1800,134,100,1000 +19900126,1800,152,100,1000 +19900126,2100,131,100,850 +19900126,2100,132,100,850 +19900126,2100,134,100,1000 +19900126,2100,152,100,1000 +19900127,0,131,100,1000 +19900127,0,131,100,975 +19900127,0,131,100,950 +19900127,0,131,100,925 +19900127,0,131,100,900 +19900127,0,131,100,875 +19900127,0,131,100,825 +19900127,0,131,100,800 +19900127,0,131,100,775 +19900127,0,131,100,750 +19900127,0,131,100,740 +19900127,0,131,100,700 +19900127,0,131,100,650 +19900127,0,131,100,620 +19900127,0,131,100,600 +19900127,0,131,100,550 +19900127,0,131,100,500 +19900127,0,131,100,450 +19900127,0,131,100,400 +19900127,0,131,100,375 +19900127,0,131,100,350 +19900127,0,131,100,300 +19900127,0,131,100,250 +19900127,0,131,100,245 +19900127,0,131,100,225 +19900127,0,131,100,200 +19900127,0,131,100,175 +19900127,0,131,100,150 +19900127,0,131,100,125 +19900127,0,131,100,100 +19900127,0,131,100,70 +19900127,0,131,100,50 +19900127,0,131,100,30 +19900127,0,131,100,20 +19900127,0,131,100,10 +19900127,0,131,100,9 +19900127,0,131,100,7 +19900127,0,131,100,5 +19900127,0,131,100,3 +19900127,0,131,100,2 +19900127,0,131,100,1 +19900127,0,131,210,40 +19900127,0,132,100,1000 +19900127,0,132,100,975 +19900127,0,132,100,950 +19900127,0,132,100,925 +19900127,0,132,100,900 +19900127,0,132,100,875 +19900127,0,132,100,825 +19900127,0,132,100,800 +19900127,0,132,100,775 +19900127,0,132,100,750 +19900127,0,132,100,740 +19900127,0,132,100,700 +19900127,0,132,100,650 +19900127,0,132,100,620 +19900127,0,132,100,600 +19900127,0,132,100,550 +19900127,0,132,100,500 +19900127,0,132,100,450 +19900127,0,132,100,400 +19900127,0,132,100,375 +19900127,0,132,100,350 +19900127,0,132,100,300 +19900127,0,132,100,250 +19900127,0,132,100,245 +19900127,0,132,100,225 +19900127,0,132,100,200 +19900127,0,132,100,175 +19900127,0,132,100,150 +19900127,0,132,100,125 +19900127,0,132,100,100 +19900127,0,132,100,70 +19900127,0,132,100,50 +19900127,0,132,100,30 +19900127,0,132,100,20 +19900127,0,132,100,10 +19900127,0,132,100,9 +19900127,0,132,100,7 +19900127,0,132,100,5 +19900127,0,132,100,3 +19900127,0,132,100,2 +19900127,0,132,100,1 +19900127,0,132,210,40 +19900127,0,130,100,1000 +19900127,0,130,100,975 +19900127,0,130,100,950 +19900127,0,130,100,925 +19900127,0,130,100,900 +19900127,0,130,100,875 +19900127,0,130,100,850 +19900127,0,130,100,825 +19900127,0,130,100,800 +19900127,0,130,100,775 +19900127,0,130,100,750 +19900127,0,130,100,740 +19900127,0,130,100,700 +19900127,0,130,100,650 +19900127,0,130,100,620 +19900127,0,130,100,600 +19900127,0,130,100,550 +19900127,0,130,100,500 +19900127,0,130,100,450 +19900127,0,130,100,400 +19900127,0,130,100,375 +19900127,0,130,100,350 +19900127,0,130,100,300 +19900127,0,130,100,250 +19900127,0,130,100,245 +19900127,0,130,100,225 +19900127,0,130,100,200 +19900127,0,130,100,175 +19900127,0,130,100,150 +19900127,0,130,100,125 +19900127,0,130,100,100 +19900127,0,130,100,70 +19900127,0,130,100,50 +19900127,0,130,100,30 +19900127,0,130,100,20 +19900127,0,130,100,10 +19900127,0,130,100,9 +19900127,0,130,100,7 +19900127,0,130,100,5 +19900127,0,130,100,3 +19900127,0,130,100,2 +19900127,0,130,100,1 +19900127,0,130,210,40 +19900127,0,129,100,1000 +19900127,0,129,100,975 +19900127,0,129,100,950 +19900127,0,129,100,925 +19900127,0,129,100,900 +19900127,0,129,100,875 +19900127,0,129,100,850 +19900127,0,129,100,825 +19900127,0,129,100,800 +19900127,0,129,100,775 +19900127,0,129,100,750 +19900127,0,129,100,740 +19900127,0,129,100,700 +19900127,0,129,100,650 +19900127,0,129,100,620 +19900127,0,129,100,600 +19900127,0,129,100,550 +19900127,0,129,100,500 +19900127,0,129,100,450 +19900127,0,129,100,400 +19900127,0,129,100,375 +19900127,0,129,100,350 +19900127,0,129,100,300 +19900127,0,129,100,250 +19900127,0,129,100,245 +19900127,0,129,100,225 +19900127,0,129,100,200 +19900127,0,129,100,175 +19900127,0,129,100,150 +19900127,0,129,100,125 +19900127,0,129,100,100 +19900127,0,129,100,70 +19900127,0,129,100,50 +19900127,0,129,100,30 +19900127,0,129,100,20 +19900127,0,129,100,10 +19900127,0,129,100,9 +19900127,0,129,100,7 +19900127,0,129,100,5 +19900127,0,129,100,3 +19900127,0,129,100,2 +19900127,0,129,100,1 +19900127,0,129,210,40 +19900127,0,157,100,1000 +19900127,0,157,100,975 +19900127,0,157,100,950 +19900127,0,157,100,925 +19900127,0,157,100,900 +19900127,0,157,100,875 +19900127,0,157,100,850 +19900127,0,157,100,825 +19900127,0,157,100,800 +19900127,0,157,100,775 +19900127,0,157,100,750 +19900127,0,157,100,740 +19900127,0,157,100,700 +19900127,0,157,100,650 +19900127,0,157,100,620 +19900127,0,157,100,600 +19900127,0,157,100,550 +19900127,0,157,100,500 +19900127,0,157,100,450 +19900127,0,157,100,400 +19900127,0,157,100,375 +19900127,0,157,100,350 +19900127,0,157,100,300 +19900127,0,157,100,250 +19900127,0,157,100,245 +19900127,0,157,100,225 +19900127,0,157,100,200 +19900127,0,157,100,175 +19900127,0,157,100,150 +19900127,0,157,100,125 +19900127,0,157,100,100 +19900127,0,157,100,70 +19900127,0,157,100,50 +19900127,0,157,100,30 +19900127,0,157,100,20 +19900127,0,157,100,10 +19900127,0,157,100,9 +19900127,0,157,100,7 +19900127,0,157,100,5 +19900127,0,157,100,3 +19900127,0,157,100,2 +19900127,0,157,100,1 +19900127,0,157,210,40 +19900127,0,135,100,1000 +19900127,0,135,100,975 +19900127,0,135,100,950 +19900127,0,135,100,925 +19900127,0,135,100,900 +19900127,0,135,100,875 +19900127,0,135,100,850 +19900127,0,135,100,825 +19900127,0,135,100,800 +19900127,0,135,100,775 +19900127,0,135,100,750 +19900127,0,135,100,740 +19900127,0,135,100,700 +19900127,0,135,100,650 +19900127,0,135,100,620 +19900127,0,135,100,600 +19900127,0,135,100,550 +19900127,0,135,100,500 +19900127,0,135,100,450 +19900127,0,135,100,400 +19900127,0,135,100,375 +19900127,0,135,100,350 +19900127,0,135,100,300 +19900127,0,135,100,250 +19900127,0,135,100,245 +19900127,0,135,100,225 +19900127,0,135,100,200 +19900127,0,135,100,175 +19900127,0,135,100,150 +19900127,0,135,100,125 +19900127,0,135,100,100 +19900127,0,135,100,70 +19900127,0,135,100,50 +19900127,0,135,100,30 +19900127,0,135,100,20 +19900127,0,135,100,10 +19900127,0,135,100,9 +19900127,0,135,100,7 +19900127,0,135,100,5 +19900127,0,135,100,3 +19900127,0,135,100,2 +19900127,0,135,100,1 +19900127,0,135,210,40 +19900127,0,138,100,1000 +19900127,0,138,100,975 +19900127,0,138,100,950 +19900127,0,138,100,925 +19900127,0,138,100,900 +19900127,0,138,100,875 +19900127,0,138,100,850 +19900127,0,138,100,825 +19900127,0,138,100,800 +19900127,0,138,100,775 +19900127,0,138,100,750 +19900127,0,138,100,740 +19900127,0,138,100,700 +19900127,0,138,100,650 +19900127,0,138,100,620 +19900127,0,138,100,600 +19900127,0,138,100,550 +19900127,0,138,100,500 +19900127,0,138,100,450 +19900127,0,138,100,400 +19900127,0,138,100,375 +19900127,0,138,100,350 +19900127,0,138,100,300 +19900127,0,138,100,250 +19900127,0,138,100,245 +19900127,0,138,100,225 +19900127,0,138,100,200 +19900127,0,138,100,175 +19900127,0,138,100,150 +19900127,0,138,100,125 +19900127,0,138,100,100 +19900127,0,138,100,70 +19900127,0,138,100,50 +19900127,0,138,100,30 +19900127,0,138,100,20 +19900127,0,138,100,10 +19900127,0,138,100,9 +19900127,0,138,100,7 +19900127,0,138,100,5 +19900127,0,138,100,3 +19900127,0,138,100,2 +19900127,0,138,100,1 +19900127,0,138,210,40 +19900127,0,131,109,1 +19900127,0,131,109,2 +19900127,0,131,109,3 +19900127,0,131,109,4 +19900127,0,131,109,5 +19900127,0,131,109,6 +19900127,0,131,109,7 +19900127,0,131,109,8 +19900127,0,131,109,9 +19900127,0,131,109,10 +19900127,0,132,109,1 +19900127,0,132,109,2 +19900127,0,132,109,3 +19900127,0,132,109,4 +19900127,0,132,109,5 +19900127,0,132,109,6 +19900127,0,132,109,7 +19900127,0,132,109,8 +19900127,0,132,109,9 +19900127,0,132,109,10 +19900127,0,130,109,1 +19900127,0,130,109,2 +19900127,0,130,109,3 +19900127,0,130,109,4 +19900127,0,130,109,5 +19900127,0,130,109,6 +19900127,0,130,109,7 +19900127,0,130,109,8 +19900127,0,130,109,9 +19900127,0,130,109,10 +19900127,0,157,109,1 +19900127,0,157,109,2 +19900127,0,157,109,3 +19900127,0,157,109,4 +19900127,0,157,109,5 +19900127,0,157,109,6 +19900127,0,157,109,7 +19900127,0,157,109,8 +19900127,0,157,109,9 +19900127,0,157,109,10 +19900127,0,54,109,1 +19900127,0,54,109,2 +19900127,0,54,109,3 +19900127,0,54,109,4 +19900127,0,54,109,5 +19900127,0,54,109,6 +19900127,0,54,109,7 +19900127,0,54,109,8 +19900127,0,54,109,9 +19900127,0,54,109,10 +19900127,0,135,109,1 +19900127,0,135,109,2 +19900127,0,135,109,3 +19900127,0,135,109,4 +19900127,0,135,109,5 +19900127,0,135,109,6 +19900127,0,135,109,7 +19900127,0,135,109,8 +19900127,0,135,109,9 +19900127,0,135,109,10 +19900127,0,134,109,1 +19900127,0,152,109,1 +19900127,0,131,100,850 +19900127,0,132,100,850 +19900127,0,134,100,1000 +19900127,0,152,100,1000 +19900127,300,131,100,850 +19900127,300,132,100,850 +19900127,300,134,100,1000 +19900127,300,152,100,1000 +19900127,600,131,100,1000 +19900127,600,131,100,975 +19900127,600,131,100,950 +19900127,600,131,100,925 +19900127,600,131,100,900 +19900127,600,131,100,875 +19900127,600,131,100,825 +19900127,600,131,100,800 +19900127,600,131,100,775 +19900127,600,131,100,750 +19900127,600,131,100,740 +19900127,600,131,100,700 +19900127,600,131,100,650 +19900127,600,131,100,620 +19900127,600,131,100,600 +19900127,600,131,100,550 +19900127,600,131,100,500 +19900127,600,131,100,450 +19900127,600,131,100,400 +19900127,600,131,100,375 +19900127,600,131,100,350 +19900127,600,131,100,300 +19900127,600,131,100,250 +19900127,600,131,100,245 +19900127,600,131,100,225 +19900127,600,131,100,200 +19900127,600,131,100,175 +19900127,600,131,100,150 +19900127,600,131,100,125 +19900127,600,131,100,100 +19900127,600,131,100,70 +19900127,600,131,100,50 +19900127,600,131,100,30 +19900127,600,131,100,20 +19900127,600,131,100,10 +19900127,600,131,100,9 +19900127,600,131,100,7 +19900127,600,131,100,5 +19900127,600,131,100,3 +19900127,600,131,100,2 +19900127,600,131,100,1 +19900127,600,131,210,40 +19900127,600,132,100,1000 +19900127,600,132,100,975 +19900127,600,132,100,950 +19900127,600,132,100,925 +19900127,600,132,100,900 +19900127,600,132,100,875 +19900127,600,132,100,825 +19900127,600,132,100,800 +19900127,600,132,100,775 +19900127,600,132,100,750 +19900127,600,132,100,740 +19900127,600,132,100,700 +19900127,600,132,100,650 +19900127,600,132,100,620 +19900127,600,132,100,600 +19900127,600,132,100,550 +19900127,600,132,100,500 +19900127,600,132,100,450 +19900127,600,132,100,400 +19900127,600,132,100,375 +19900127,600,132,100,350 +19900127,600,132,100,300 +19900127,600,132,100,250 +19900127,600,132,100,245 +19900127,600,132,100,225 +19900127,600,132,100,200 +19900127,600,132,100,175 +19900127,600,132,100,150 +19900127,600,132,100,125 +19900127,600,132,100,100 +19900127,600,132,100,70 +19900127,600,132,100,50 +19900127,600,132,100,30 +19900127,600,132,100,20 +19900127,600,132,100,10 +19900127,600,132,100,9 +19900127,600,132,100,7 +19900127,600,132,100,5 +19900127,600,132,100,3 +19900127,600,132,100,2 +19900127,600,132,100,1 +19900127,600,132,210,40 +19900127,600,130,100,1000 +19900127,600,130,100,975 +19900127,600,130,100,950 +19900127,600,130,100,925 +19900127,600,130,100,900 +19900127,600,130,100,875 +19900127,600,130,100,850 +19900127,600,130,100,825 +19900127,600,130,100,800 +19900127,600,130,100,775 +19900127,600,130,100,750 +19900127,600,130,100,740 +19900127,600,130,100,700 +19900127,600,130,100,650 +19900127,600,130,100,620 +19900127,600,130,100,600 +19900127,600,130,100,550 +19900127,600,130,100,500 +19900127,600,130,100,450 +19900127,600,130,100,400 +19900127,600,130,100,375 +19900127,600,130,100,350 +19900127,600,130,100,300 +19900127,600,130,100,250 +19900127,600,130,100,245 +19900127,600,130,100,225 +19900127,600,130,100,200 +19900127,600,130,100,175 +19900127,600,130,100,150 +19900127,600,130,100,125 +19900127,600,130,100,100 +19900127,600,130,100,70 +19900127,600,130,100,50 +19900127,600,130,100,30 +19900127,600,130,100,20 +19900127,600,130,100,10 +19900127,600,130,100,9 +19900127,600,130,100,7 +19900127,600,130,100,5 +19900127,600,130,100,3 +19900127,600,130,100,2 +19900127,600,130,100,1 +19900127,600,130,210,40 +19900127,600,129,100,1000 +19900127,600,129,100,975 +19900127,600,129,100,950 +19900127,600,129,100,925 +19900127,600,129,100,900 +19900127,600,129,100,875 +19900127,600,129,100,850 +19900127,600,129,100,825 +19900127,600,129,100,800 +19900127,600,129,100,775 +19900127,600,129,100,750 +19900127,600,129,100,740 +19900127,600,129,100,700 +19900127,600,129,100,650 +19900127,600,129,100,620 +19900127,600,129,100,600 +19900127,600,129,100,550 +19900127,600,129,100,500 +19900127,600,129,100,450 +19900127,600,129,100,400 +19900127,600,129,100,375 +19900127,600,129,100,350 +19900127,600,129,100,300 +19900127,600,129,100,250 +19900127,600,129,100,245 +19900127,600,129,100,225 +19900127,600,129,100,200 +19900127,600,129,100,175 +19900127,600,129,100,150 +19900127,600,129,100,125 +19900127,600,129,100,100 +19900127,600,129,100,70 +19900127,600,129,100,50 +19900127,600,129,100,30 +19900127,600,129,100,20 +19900127,600,129,100,10 +19900127,600,129,100,9 +19900127,600,129,100,7 +19900127,600,129,100,5 +19900127,600,129,100,3 +19900127,600,129,100,2 +19900127,600,129,100,1 +19900127,600,129,210,40 +19900127,600,157,100,1000 +19900127,600,157,100,975 +19900127,600,157,100,950 +19900127,600,157,100,925 +19900127,600,157,100,900 +19900127,600,157,100,875 +19900127,600,157,100,850 +19900127,600,157,100,825 +19900127,600,157,100,800 +19900127,600,157,100,775 +19900127,600,157,100,750 +19900127,600,157,100,740 +19900127,600,157,100,700 +19900127,600,157,100,650 +19900127,600,157,100,620 +19900127,600,157,100,600 +19900127,600,157,100,550 +19900127,600,157,100,500 +19900127,600,157,100,450 +19900127,600,157,100,400 +19900127,600,157,100,375 +19900127,600,157,100,350 +19900127,600,157,100,300 +19900127,600,157,100,250 +19900127,600,157,100,245 +19900127,600,157,100,225 +19900127,600,157,100,200 +19900127,600,157,100,175 +19900127,600,157,100,150 +19900127,600,157,100,125 +19900127,600,157,100,100 +19900127,600,157,100,70 +19900127,600,157,100,50 +19900127,600,157,100,30 +19900127,600,157,100,20 +19900127,600,157,100,10 +19900127,600,157,100,9 +19900127,600,157,100,7 +19900127,600,157,100,5 +19900127,600,157,100,3 +19900127,600,157,100,2 +19900127,600,157,100,1 +19900127,600,157,210,40 +19900127,600,135,100,1000 +19900127,600,135,100,975 +19900127,600,135,100,950 +19900127,600,135,100,925 +19900127,600,135,100,900 +19900127,600,135,100,875 +19900127,600,135,100,850 +19900127,600,135,100,825 +19900127,600,135,100,800 +19900127,600,135,100,775 +19900127,600,135,100,750 +19900127,600,135,100,740 +19900127,600,135,100,700 +19900127,600,135,100,650 +19900127,600,135,100,620 +19900127,600,135,100,600 +19900127,600,135,100,550 +19900127,600,135,100,500 +19900127,600,135,100,450 +19900127,600,135,100,400 +19900127,600,135,100,375 +19900127,600,135,100,350 +19900127,600,135,100,300 +19900127,600,135,100,250 +19900127,600,135,100,245 +19900127,600,135,100,225 +19900127,600,135,100,200 +19900127,600,135,100,175 +19900127,600,135,100,150 +19900127,600,135,100,125 +19900127,600,135,100,100 +19900127,600,135,100,70 +19900127,600,135,100,50 +19900127,600,135,100,30 +19900127,600,135,100,20 +19900127,600,135,100,10 +19900127,600,135,100,9 +19900127,600,135,100,7 +19900127,600,135,100,5 +19900127,600,135,100,3 +19900127,600,135,100,2 +19900127,600,135,100,1 +19900127,600,135,210,40 +19900127,600,138,100,1000 +19900127,600,138,100,975 +19900127,600,138,100,950 +19900127,600,138,100,925 +19900127,600,138,100,900 +19900127,600,138,100,875 +19900127,600,138,100,850 +19900127,600,138,100,825 +19900127,600,138,100,800 +19900127,600,138,100,775 +19900127,600,138,100,750 +19900127,600,138,100,740 +19900127,600,138,100,700 +19900127,600,138,100,650 +19900127,600,138,100,620 +19900127,600,138,100,600 +19900127,600,138,100,550 +19900127,600,138,100,500 +19900127,600,138,100,450 +19900127,600,138,100,400 +19900127,600,138,100,375 +19900127,600,138,100,350 +19900127,600,138,100,300 +19900127,600,138,100,250 +19900127,600,138,100,245 +19900127,600,138,100,225 +19900127,600,138,100,200 +19900127,600,138,100,175 +19900127,600,138,100,150 +19900127,600,138,100,125 +19900127,600,138,100,100 +19900127,600,138,100,70 +19900127,600,138,100,50 +19900127,600,138,100,30 +19900127,600,138,100,20 +19900127,600,138,100,10 +19900127,600,138,100,9 +19900127,600,138,100,7 +19900127,600,138,100,5 +19900127,600,138,100,3 +19900127,600,138,100,2 +19900127,600,138,100,1 +19900127,600,138,210,40 +19900127,600,131,109,1 +19900127,600,131,109,2 +19900127,600,131,109,3 +19900127,600,131,109,4 +19900127,600,131,109,5 +19900127,600,131,109,6 +19900127,600,131,109,7 +19900127,600,131,109,8 +19900127,600,131,109,9 +19900127,600,131,109,10 +19900127,600,132,109,1 +19900127,600,132,109,2 +19900127,600,132,109,3 +19900127,600,132,109,4 +19900127,600,132,109,5 +19900127,600,132,109,6 +19900127,600,132,109,7 +19900127,600,132,109,8 +19900127,600,132,109,9 +19900127,600,132,109,10 +19900127,600,130,109,1 +19900127,600,130,109,2 +19900127,600,130,109,3 +19900127,600,130,109,4 +19900127,600,130,109,5 +19900127,600,130,109,6 +19900127,600,130,109,7 +19900127,600,130,109,8 +19900127,600,130,109,9 +19900127,600,130,109,10 +19900127,600,157,109,1 +19900127,600,157,109,2 +19900127,600,157,109,3 +19900127,600,157,109,4 +19900127,600,157,109,5 +19900127,600,157,109,6 +19900127,600,157,109,7 +19900127,600,157,109,8 +19900127,600,157,109,9 +19900127,600,157,109,10 +19900127,600,54,109,1 +19900127,600,54,109,2 +19900127,600,54,109,3 +19900127,600,54,109,4 +19900127,600,54,109,5 +19900127,600,54,109,6 +19900127,600,54,109,7 +19900127,600,54,109,8 +19900127,600,54,109,9 +19900127,600,54,109,10 +19900127,600,135,109,1 +19900127,600,135,109,2 +19900127,600,135,109,3 +19900127,600,135,109,4 +19900127,600,135,109,5 +19900127,600,135,109,6 +19900127,600,135,109,7 +19900127,600,135,109,8 +19900127,600,135,109,9 +19900127,600,135,109,10 +19900127,600,134,109,1 +19900127,600,152,109,1 +19900127,600,131,100,850 +19900127,600,132,100,850 +19900127,600,134,100,1000 +19900127,600,152,100,1000 +19900127,900,131,100,850 +19900127,900,132,100,850 +19900127,900,134,100,1000 +19900127,900,152,100,1000 +19900127,1200,131,100,1000 +19900127,1200,131,100,975 +19900127,1200,131,100,950 +19900127,1200,131,100,925 +19900127,1200,131,100,900 +19900127,1200,131,100,875 +19900127,1200,131,100,825 +19900127,1200,131,100,800 +19900127,1200,131,100,775 +19900127,1200,131,100,750 +19900127,1200,131,100,740 +19900127,1200,131,100,700 +19900127,1200,131,100,650 +19900127,1200,131,100,620 +19900127,1200,131,100,600 +19900127,1200,131,100,550 +19900127,1200,131,100,500 +19900127,1200,131,100,450 +19900127,1200,131,100,400 +19900127,1200,131,100,375 +19900127,1200,131,100,350 +19900127,1200,131,100,300 +19900127,1200,131,100,250 +19900127,1200,131,100,245 +19900127,1200,131,100,225 +19900127,1200,131,100,200 +19900127,1200,131,100,175 +19900127,1200,131,100,150 +19900127,1200,131,100,125 +19900127,1200,131,100,100 +19900127,1200,131,100,70 +19900127,1200,131,100,50 +19900127,1200,131,100,30 +19900127,1200,131,100,20 +19900127,1200,131,100,10 +19900127,1200,131,100,9 +19900127,1200,131,100,7 +19900127,1200,131,100,5 +19900127,1200,131,100,3 +19900127,1200,131,100,2 +19900127,1200,131,100,1 +19900127,1200,131,210,40 +19900127,1200,132,100,1000 +19900127,1200,132,100,975 +19900127,1200,132,100,950 +19900127,1200,132,100,925 +19900127,1200,132,100,900 +19900127,1200,132,100,875 +19900127,1200,132,100,825 +19900127,1200,132,100,800 +19900127,1200,132,100,775 +19900127,1200,132,100,750 +19900127,1200,132,100,740 +19900127,1200,132,100,700 +19900127,1200,132,100,650 +19900127,1200,132,100,620 +19900127,1200,132,100,600 +19900127,1200,132,100,550 +19900127,1200,132,100,500 +19900127,1200,132,100,450 +19900127,1200,132,100,400 +19900127,1200,132,100,375 +19900127,1200,132,100,350 +19900127,1200,132,100,300 +19900127,1200,132,100,250 +19900127,1200,132,100,245 +19900127,1200,132,100,225 +19900127,1200,132,100,200 +19900127,1200,132,100,175 +19900127,1200,132,100,150 +19900127,1200,132,100,125 +19900127,1200,132,100,100 +19900127,1200,132,100,70 +19900127,1200,132,100,50 +19900127,1200,132,100,30 +19900127,1200,132,100,20 +19900127,1200,132,100,10 +19900127,1200,132,100,9 +19900127,1200,132,100,7 +19900127,1200,132,100,5 +19900127,1200,132,100,3 +19900127,1200,132,100,2 +19900127,1200,132,100,1 +19900127,1200,132,210,40 +19900127,1200,130,100,1000 +19900127,1200,130,100,975 +19900127,1200,130,100,950 +19900127,1200,130,100,925 +19900127,1200,130,100,900 +19900127,1200,130,100,875 +19900127,1200,130,100,850 +19900127,1200,130,100,825 +19900127,1200,130,100,800 +19900127,1200,130,100,775 +19900127,1200,130,100,750 +19900127,1200,130,100,740 +19900127,1200,130,100,700 +19900127,1200,130,100,650 +19900127,1200,130,100,620 +19900127,1200,130,100,600 +19900127,1200,130,100,550 +19900127,1200,130,100,500 +19900127,1200,130,100,450 +19900127,1200,130,100,400 +19900127,1200,130,100,375 +19900127,1200,130,100,350 +19900127,1200,130,100,300 +19900127,1200,130,100,250 +19900127,1200,130,100,245 +19900127,1200,130,100,225 +19900127,1200,130,100,200 +19900127,1200,130,100,175 +19900127,1200,130,100,150 +19900127,1200,130,100,125 +19900127,1200,130,100,100 +19900127,1200,130,100,70 +19900127,1200,130,100,50 +19900127,1200,130,100,30 +19900127,1200,130,100,20 +19900127,1200,130,100,10 +19900127,1200,130,100,9 +19900127,1200,130,100,7 +19900127,1200,130,100,5 +19900127,1200,130,100,3 +19900127,1200,130,100,2 +19900127,1200,130,100,1 +19900127,1200,130,210,40 +19900127,1200,129,100,1000 +19900127,1200,129,100,975 +19900127,1200,129,100,950 +19900127,1200,129,100,925 +19900127,1200,129,100,900 +19900127,1200,129,100,875 +19900127,1200,129,100,850 +19900127,1200,129,100,825 +19900127,1200,129,100,800 +19900127,1200,129,100,775 +19900127,1200,129,100,750 +19900127,1200,129,100,740 +19900127,1200,129,100,700 +19900127,1200,129,100,650 +19900127,1200,129,100,620 +19900127,1200,129,100,600 +19900127,1200,129,100,550 +19900127,1200,129,100,500 +19900127,1200,129,100,450 +19900127,1200,129,100,400 +19900127,1200,129,100,375 +19900127,1200,129,100,350 +19900127,1200,129,100,300 +19900127,1200,129,100,250 +19900127,1200,129,100,245 +19900127,1200,129,100,225 +19900127,1200,129,100,200 +19900127,1200,129,100,175 +19900127,1200,129,100,150 +19900127,1200,129,100,125 +19900127,1200,129,100,100 +19900127,1200,129,100,70 +19900127,1200,129,100,50 +19900127,1200,129,100,30 +19900127,1200,129,100,20 +19900127,1200,129,100,10 +19900127,1200,129,100,9 +19900127,1200,129,100,7 +19900127,1200,129,100,5 +19900127,1200,129,100,3 +19900127,1200,129,100,2 +19900127,1200,129,100,1 +19900127,1200,129,210,40 +19900127,1200,157,100,1000 +19900127,1200,157,100,975 +19900127,1200,157,100,950 +19900127,1200,157,100,925 +19900127,1200,157,100,900 +19900127,1200,157,100,875 +19900127,1200,157,100,850 +19900127,1200,157,100,825 +19900127,1200,157,100,800 +19900127,1200,157,100,775 +19900127,1200,157,100,750 +19900127,1200,157,100,740 +19900127,1200,157,100,700 +19900127,1200,157,100,650 +19900127,1200,157,100,620 +19900127,1200,157,100,600 +19900127,1200,157,100,550 +19900127,1200,157,100,500 +19900127,1200,157,100,450 +19900127,1200,157,100,400 +19900127,1200,157,100,375 +19900127,1200,157,100,350 +19900127,1200,157,100,300 +19900127,1200,157,100,250 +19900127,1200,157,100,245 +19900127,1200,157,100,225 +19900127,1200,157,100,200 +19900127,1200,157,100,175 +19900127,1200,157,100,150 +19900127,1200,157,100,125 +19900127,1200,157,100,100 +19900127,1200,157,100,70 +19900127,1200,157,100,50 +19900127,1200,157,100,30 +19900127,1200,157,100,20 +19900127,1200,157,100,10 +19900127,1200,157,100,9 +19900127,1200,157,100,7 +19900127,1200,157,100,5 +19900127,1200,157,100,3 +19900127,1200,157,100,2 +19900127,1200,157,100,1 +19900127,1200,157,210,40 +19900127,1200,135,100,1000 +19900127,1200,135,100,975 +19900127,1200,135,100,950 +19900127,1200,135,100,925 +19900127,1200,135,100,900 +19900127,1200,135,100,875 +19900127,1200,135,100,850 +19900127,1200,135,100,825 +19900127,1200,135,100,800 +19900127,1200,135,100,775 +19900127,1200,135,100,750 +19900127,1200,135,100,740 +19900127,1200,135,100,700 +19900127,1200,135,100,650 +19900127,1200,135,100,620 +19900127,1200,135,100,600 +19900127,1200,135,100,550 +19900127,1200,135,100,500 +19900127,1200,135,100,450 +19900127,1200,135,100,400 +19900127,1200,135,100,375 +19900127,1200,135,100,350 +19900127,1200,135,100,300 +19900127,1200,135,100,250 +19900127,1200,135,100,245 +19900127,1200,135,100,225 +19900127,1200,135,100,200 +19900127,1200,135,100,175 +19900127,1200,135,100,150 +19900127,1200,135,100,125 +19900127,1200,135,100,100 +19900127,1200,135,100,70 +19900127,1200,135,100,50 +19900127,1200,135,100,30 +19900127,1200,135,100,20 +19900127,1200,135,100,10 +19900127,1200,135,100,9 +19900127,1200,135,100,7 +19900127,1200,135,100,5 +19900127,1200,135,100,3 +19900127,1200,135,100,2 +19900127,1200,135,100,1 +19900127,1200,135,210,40 +19900127,1200,138,100,1000 +19900127,1200,138,100,975 +19900127,1200,138,100,950 +19900127,1200,138,100,925 +19900127,1200,138,100,900 +19900127,1200,138,100,875 +19900127,1200,138,100,850 +19900127,1200,138,100,825 +19900127,1200,138,100,800 +19900127,1200,138,100,775 +19900127,1200,138,100,750 +19900127,1200,138,100,740 +19900127,1200,138,100,700 +19900127,1200,138,100,650 +19900127,1200,138,100,620 +19900127,1200,138,100,600 +19900127,1200,138,100,550 +19900127,1200,138,100,500 +19900127,1200,138,100,450 +19900127,1200,138,100,400 +19900127,1200,138,100,375 +19900127,1200,138,100,350 +19900127,1200,138,100,300 +19900127,1200,138,100,250 +19900127,1200,138,100,245 +19900127,1200,138,100,225 +19900127,1200,138,100,200 +19900127,1200,138,100,175 +19900127,1200,138,100,150 +19900127,1200,138,100,125 +19900127,1200,138,100,100 +19900127,1200,138,100,70 +19900127,1200,138,100,50 +19900127,1200,138,100,30 +19900127,1200,138,100,20 +19900127,1200,138,100,10 +19900127,1200,138,100,9 +19900127,1200,138,100,7 +19900127,1200,138,100,5 +19900127,1200,138,100,3 +19900127,1200,138,100,2 +19900127,1200,138,100,1 +19900127,1200,138,210,40 +19900127,1200,131,109,1 +19900127,1200,131,109,2 +19900127,1200,131,109,3 +19900127,1200,131,109,4 +19900127,1200,131,109,5 +19900127,1200,131,109,6 +19900127,1200,131,109,7 +19900127,1200,131,109,8 +19900127,1200,131,109,9 +19900127,1200,131,109,10 +19900127,1200,132,109,1 +19900127,1200,132,109,2 +19900127,1200,132,109,3 +19900127,1200,132,109,4 +19900127,1200,132,109,5 +19900127,1200,132,109,6 +19900127,1200,132,109,7 +19900127,1200,132,109,8 +19900127,1200,132,109,9 +19900127,1200,132,109,10 +19900127,1200,130,109,1 +19900127,1200,130,109,2 +19900127,1200,130,109,3 +19900127,1200,130,109,4 +19900127,1200,130,109,5 +19900127,1200,130,109,6 +19900127,1200,130,109,7 +19900127,1200,130,109,8 +19900127,1200,130,109,9 +19900127,1200,130,109,10 +19900127,1200,157,109,1 +19900127,1200,157,109,2 +19900127,1200,157,109,3 +19900127,1200,157,109,4 +19900127,1200,157,109,5 +19900127,1200,157,109,6 +19900127,1200,157,109,7 +19900127,1200,157,109,8 +19900127,1200,157,109,9 +19900127,1200,157,109,10 +19900127,1200,54,109,1 +19900127,1200,54,109,2 +19900127,1200,54,109,3 +19900127,1200,54,109,4 +19900127,1200,54,109,5 +19900127,1200,54,109,6 +19900127,1200,54,109,7 +19900127,1200,54,109,8 +19900127,1200,54,109,9 +19900127,1200,54,109,10 +19900127,1200,135,109,1 +19900127,1200,135,109,2 +19900127,1200,135,109,3 +19900127,1200,135,109,4 +19900127,1200,135,109,5 +19900127,1200,135,109,6 +19900127,1200,135,109,7 +19900127,1200,135,109,8 +19900127,1200,135,109,9 +19900127,1200,135,109,10 +19900127,1200,134,109,1 +19900127,1200,152,109,1 +19900127,1200,131,100,850 +19900127,1200,132,100,850 +19900127,1200,134,100,1000 +19900127,1200,152,100,1000 +19900127,1500,131,100,850 +19900127,1500,132,100,850 +19900127,1500,134,100,1000 +19900127,1500,152,100,1000 +19900127,1800,131,100,1000 +19900127,1800,131,100,975 +19900127,1800,131,100,950 +19900127,1800,131,100,925 +19900127,1800,131,100,900 +19900127,1800,131,100,875 +19900127,1800,131,100,825 +19900127,1800,131,100,800 +19900127,1800,131,100,775 +19900127,1800,131,100,750 +19900127,1800,131,100,740 +19900127,1800,131,100,700 +19900127,1800,131,100,650 +19900127,1800,131,100,620 +19900127,1800,131,100,600 +19900127,1800,131,100,550 +19900127,1800,131,100,500 +19900127,1800,131,100,450 +19900127,1800,131,100,400 +19900127,1800,131,100,375 +19900127,1800,131,100,350 +19900127,1800,131,100,300 +19900127,1800,131,100,250 +19900127,1800,131,100,245 +19900127,1800,131,100,225 +19900127,1800,131,100,200 +19900127,1800,131,100,175 +19900127,1800,131,100,150 +19900127,1800,131,100,125 +19900127,1800,131,100,100 +19900127,1800,131,100,70 +19900127,1800,131,100,50 +19900127,1800,131,100,30 +19900127,1800,131,100,20 +19900127,1800,131,100,10 +19900127,1800,131,100,9 +19900127,1800,131,100,7 +19900127,1800,131,100,5 +19900127,1800,131,100,3 +19900127,1800,131,100,2 +19900127,1800,131,100,1 +19900127,1800,131,210,40 +19900127,1800,132,100,1000 +19900127,1800,132,100,975 +19900127,1800,132,100,950 +19900127,1800,132,100,925 +19900127,1800,132,100,900 +19900127,1800,132,100,875 +19900127,1800,132,100,825 +19900127,1800,132,100,800 +19900127,1800,132,100,775 +19900127,1800,132,100,750 +19900127,1800,132,100,740 +19900127,1800,132,100,700 +19900127,1800,132,100,650 +19900127,1800,132,100,620 +19900127,1800,132,100,600 +19900127,1800,132,100,550 +19900127,1800,132,100,500 +19900127,1800,132,100,450 +19900127,1800,132,100,400 +19900127,1800,132,100,375 +19900127,1800,132,100,350 +19900127,1800,132,100,300 +19900127,1800,132,100,250 +19900127,1800,132,100,245 +19900127,1800,132,100,225 +19900127,1800,132,100,200 +19900127,1800,132,100,175 +19900127,1800,132,100,150 +19900127,1800,132,100,125 +19900127,1800,132,100,100 +19900127,1800,132,100,70 +19900127,1800,132,100,50 +19900127,1800,132,100,30 +19900127,1800,132,100,20 +19900127,1800,132,100,10 +19900127,1800,132,100,9 +19900127,1800,132,100,7 +19900127,1800,132,100,5 +19900127,1800,132,100,3 +19900127,1800,132,100,2 +19900127,1800,132,100,1 +19900127,1800,132,210,40 +19900127,1800,130,100,1000 +19900127,1800,130,100,975 +19900127,1800,130,100,950 +19900127,1800,130,100,925 +19900127,1800,130,100,900 +19900127,1800,130,100,875 +19900127,1800,130,100,850 +19900127,1800,130,100,825 +19900127,1800,130,100,800 +19900127,1800,130,100,775 +19900127,1800,130,100,750 +19900127,1800,130,100,740 +19900127,1800,130,100,700 +19900127,1800,130,100,650 +19900127,1800,130,100,620 +19900127,1800,130,100,600 +19900127,1800,130,100,550 +19900127,1800,130,100,500 +19900127,1800,130,100,450 +19900127,1800,130,100,400 +19900127,1800,130,100,375 +19900127,1800,130,100,350 +19900127,1800,130,100,300 +19900127,1800,130,100,250 +19900127,1800,130,100,245 +19900127,1800,130,100,225 +19900127,1800,130,100,200 +19900127,1800,130,100,175 +19900127,1800,130,100,150 +19900127,1800,130,100,125 +19900127,1800,130,100,100 +19900127,1800,130,100,70 +19900127,1800,130,100,50 +19900127,1800,130,100,30 +19900127,1800,130,100,20 +19900127,1800,130,100,10 +19900127,1800,130,100,9 +19900127,1800,130,100,7 +19900127,1800,130,100,5 +19900127,1800,130,100,3 +19900127,1800,130,100,2 +19900127,1800,130,100,1 +19900127,1800,130,210,40 +19900127,1800,129,100,1000 +19900127,1800,129,100,975 +19900127,1800,129,100,950 +19900127,1800,129,100,925 +19900127,1800,129,100,900 +19900127,1800,129,100,875 +19900127,1800,129,100,850 +19900127,1800,129,100,825 +19900127,1800,129,100,800 +19900127,1800,129,100,775 +19900127,1800,129,100,750 +19900127,1800,129,100,740 +19900127,1800,129,100,700 +19900127,1800,129,100,650 +19900127,1800,129,100,620 +19900127,1800,129,100,600 +19900127,1800,129,100,550 +19900127,1800,129,100,500 +19900127,1800,129,100,450 +19900127,1800,129,100,400 +19900127,1800,129,100,375 +19900127,1800,129,100,350 +19900127,1800,129,100,300 +19900127,1800,129,100,250 +19900127,1800,129,100,245 +19900127,1800,129,100,225 +19900127,1800,129,100,200 +19900127,1800,129,100,175 +19900127,1800,129,100,150 +19900127,1800,129,100,125 +19900127,1800,129,100,100 +19900127,1800,129,100,70 +19900127,1800,129,100,50 +19900127,1800,129,100,30 +19900127,1800,129,100,20 +19900127,1800,129,100,10 +19900127,1800,129,100,9 +19900127,1800,129,100,7 +19900127,1800,129,100,5 +19900127,1800,129,100,3 +19900127,1800,129,100,2 +19900127,1800,129,100,1 +19900127,1800,129,210,40 +19900127,1800,157,100,1000 +19900127,1800,157,100,975 +19900127,1800,157,100,950 +19900127,1800,157,100,925 +19900127,1800,157,100,900 +19900127,1800,157,100,875 +19900127,1800,157,100,850 +19900127,1800,157,100,825 +19900127,1800,157,100,800 +19900127,1800,157,100,775 +19900127,1800,157,100,750 +19900127,1800,157,100,740 +19900127,1800,157,100,700 +19900127,1800,157,100,650 +19900127,1800,157,100,620 +19900127,1800,157,100,600 +19900127,1800,157,100,550 +19900127,1800,157,100,500 +19900127,1800,157,100,450 +19900127,1800,157,100,400 +19900127,1800,157,100,375 +19900127,1800,157,100,350 +19900127,1800,157,100,300 +19900127,1800,157,100,250 +19900127,1800,157,100,245 +19900127,1800,157,100,225 +19900127,1800,157,100,200 +19900127,1800,157,100,175 +19900127,1800,157,100,150 +19900127,1800,157,100,125 +19900127,1800,157,100,100 +19900127,1800,157,100,70 +19900127,1800,157,100,50 +19900127,1800,157,100,30 +19900127,1800,157,100,20 +19900127,1800,157,100,10 +19900127,1800,157,100,9 +19900127,1800,157,100,7 +19900127,1800,157,100,5 +19900127,1800,157,100,3 +19900127,1800,157,100,2 +19900127,1800,157,100,1 +19900127,1800,157,210,40 +19900127,1800,135,100,1000 +19900127,1800,135,100,975 +19900127,1800,135,100,950 +19900127,1800,135,100,925 +19900127,1800,135,100,900 +19900127,1800,135,100,875 +19900127,1800,135,100,850 +19900127,1800,135,100,825 +19900127,1800,135,100,800 +19900127,1800,135,100,775 +19900127,1800,135,100,750 +19900127,1800,135,100,740 +19900127,1800,135,100,700 +19900127,1800,135,100,650 +19900127,1800,135,100,620 +19900127,1800,135,100,600 +19900127,1800,135,100,550 +19900127,1800,135,100,500 +19900127,1800,135,100,450 +19900127,1800,135,100,400 +19900127,1800,135,100,375 +19900127,1800,135,100,350 +19900127,1800,135,100,300 +19900127,1800,135,100,250 +19900127,1800,135,100,245 +19900127,1800,135,100,225 +19900127,1800,135,100,200 +19900127,1800,135,100,175 +19900127,1800,135,100,150 +19900127,1800,135,100,125 +19900127,1800,135,100,100 +19900127,1800,135,100,70 +19900127,1800,135,100,50 +19900127,1800,135,100,30 +19900127,1800,135,100,20 +19900127,1800,135,100,10 +19900127,1800,135,100,9 +19900127,1800,135,100,7 +19900127,1800,135,100,5 +19900127,1800,135,100,3 +19900127,1800,135,100,2 +19900127,1800,135,100,1 +19900127,1800,135,210,40 +19900127,1800,138,100,1000 +19900127,1800,138,100,975 +19900127,1800,138,100,950 +19900127,1800,138,100,925 +19900127,1800,138,100,900 +19900127,1800,138,100,875 +19900127,1800,138,100,850 +19900127,1800,138,100,825 +19900127,1800,138,100,800 +19900127,1800,138,100,775 +19900127,1800,138,100,750 +19900127,1800,138,100,740 +19900127,1800,138,100,700 +19900127,1800,138,100,650 +19900127,1800,138,100,620 +19900127,1800,138,100,600 +19900127,1800,138,100,550 +19900127,1800,138,100,500 +19900127,1800,138,100,450 +19900127,1800,138,100,400 +19900127,1800,138,100,375 +19900127,1800,138,100,350 +19900127,1800,138,100,300 +19900127,1800,138,100,250 +19900127,1800,138,100,245 +19900127,1800,138,100,225 +19900127,1800,138,100,200 +19900127,1800,138,100,175 +19900127,1800,138,100,150 +19900127,1800,138,100,125 +19900127,1800,138,100,100 +19900127,1800,138,100,70 +19900127,1800,138,100,50 +19900127,1800,138,100,30 +19900127,1800,138,100,20 +19900127,1800,138,100,10 +19900127,1800,138,100,9 +19900127,1800,138,100,7 +19900127,1800,138,100,5 +19900127,1800,138,100,3 +19900127,1800,138,100,2 +19900127,1800,138,100,1 +19900127,1800,138,210,40 +19900127,1800,131,109,1 +19900127,1800,131,109,2 +19900127,1800,131,109,3 +19900127,1800,131,109,4 +19900127,1800,131,109,5 +19900127,1800,131,109,6 +19900127,1800,131,109,7 +19900127,1800,131,109,8 +19900127,1800,131,109,9 +19900127,1800,131,109,10 +19900127,1800,132,109,1 +19900127,1800,132,109,2 +19900127,1800,132,109,3 +19900127,1800,132,109,4 +19900127,1800,132,109,5 +19900127,1800,132,109,6 +19900127,1800,132,109,7 +19900127,1800,132,109,8 +19900127,1800,132,109,9 +19900127,1800,132,109,10 +19900127,1800,130,109,1 +19900127,1800,130,109,2 +19900127,1800,130,109,3 +19900127,1800,130,109,4 +19900127,1800,130,109,5 +19900127,1800,130,109,6 +19900127,1800,130,109,7 +19900127,1800,130,109,8 +19900127,1800,130,109,9 +19900127,1800,130,109,10 +19900127,1800,157,109,1 +19900127,1800,157,109,2 +19900127,1800,157,109,3 +19900127,1800,157,109,4 +19900127,1800,157,109,5 +19900127,1800,157,109,6 +19900127,1800,157,109,7 +19900127,1800,157,109,8 +19900127,1800,157,109,9 +19900127,1800,157,109,10 +19900127,1800,54,109,1 +19900127,1800,54,109,2 +19900127,1800,54,109,3 +19900127,1800,54,109,4 +19900127,1800,54,109,5 +19900127,1800,54,109,6 +19900127,1800,54,109,7 +19900127,1800,54,109,8 +19900127,1800,54,109,9 +19900127,1800,54,109,10 +19900127,1800,135,109,1 +19900127,1800,135,109,2 +19900127,1800,135,109,3 +19900127,1800,135,109,4 +19900127,1800,135,109,5 +19900127,1800,135,109,6 +19900127,1800,135,109,7 +19900127,1800,135,109,8 +19900127,1800,135,109,9 +19900127,1800,135,109,10 +19900127,1800,134,109,1 +19900127,1800,152,109,1 +19900127,1800,131,100,850 +19900127,1800,132,100,850 +19900127,1800,134,100,1000 +19900127,1800,152,100,1000 +19900127,2100,131,100,850 +19900127,2100,132,100,850 +19900127,2100,134,100,1000 +19900127,2100,152,100,1000 +19900128,0,131,100,1000 +19900128,0,131,100,975 +19900128,0,131,100,950 +19900128,0,131,100,925 +19900128,0,131,100,900 +19900128,0,131,100,875 +19900128,0,131,100,825 +19900128,0,131,100,800 +19900128,0,131,100,775 +19900128,0,131,100,750 +19900128,0,131,100,740 +19900128,0,131,100,700 +19900128,0,131,100,650 +19900128,0,131,100,620 +19900128,0,131,100,600 +19900128,0,131,100,550 +19900128,0,131,100,500 +19900128,0,131,100,450 +19900128,0,131,100,400 +19900128,0,131,100,375 +19900128,0,131,100,350 +19900128,0,131,100,300 +19900128,0,131,100,250 +19900128,0,131,100,245 +19900128,0,131,100,225 +19900128,0,131,100,200 +19900128,0,131,100,175 +19900128,0,131,100,150 +19900128,0,131,100,125 +19900128,0,131,100,100 +19900128,0,131,100,70 +19900128,0,131,100,50 +19900128,0,131,100,30 +19900128,0,131,100,20 +19900128,0,131,100,10 +19900128,0,131,100,9 +19900128,0,131,100,7 +19900128,0,131,100,5 +19900128,0,131,100,3 +19900128,0,131,100,2 +19900128,0,131,100,1 +19900128,0,131,210,40 +19900128,0,132,100,1000 +19900128,0,132,100,975 +19900128,0,132,100,950 +19900128,0,132,100,925 +19900128,0,132,100,900 +19900128,0,132,100,875 +19900128,0,132,100,825 +19900128,0,132,100,800 +19900128,0,132,100,775 +19900128,0,132,100,750 +19900128,0,132,100,740 +19900128,0,132,100,700 +19900128,0,132,100,650 +19900128,0,132,100,620 +19900128,0,132,100,600 +19900128,0,132,100,550 +19900128,0,132,100,500 +19900128,0,132,100,450 +19900128,0,132,100,400 +19900128,0,132,100,375 +19900128,0,132,100,350 +19900128,0,132,100,300 +19900128,0,132,100,250 +19900128,0,132,100,245 +19900128,0,132,100,225 +19900128,0,132,100,200 +19900128,0,132,100,175 +19900128,0,132,100,150 +19900128,0,132,100,125 +19900128,0,132,100,100 +19900128,0,132,100,70 +19900128,0,132,100,50 +19900128,0,132,100,30 +19900128,0,132,100,20 +19900128,0,132,100,10 +19900128,0,132,100,9 +19900128,0,132,100,7 +19900128,0,132,100,5 +19900128,0,132,100,3 +19900128,0,132,100,2 +19900128,0,132,100,1 +19900128,0,132,210,40 +19900128,0,130,100,1000 +19900128,0,130,100,975 +19900128,0,130,100,950 +19900128,0,130,100,925 +19900128,0,130,100,900 +19900128,0,130,100,875 +19900128,0,130,100,850 +19900128,0,130,100,825 +19900128,0,130,100,800 +19900128,0,130,100,775 +19900128,0,130,100,750 +19900128,0,130,100,740 +19900128,0,130,100,700 +19900128,0,130,100,650 +19900128,0,130,100,620 +19900128,0,130,100,600 +19900128,0,130,100,550 +19900128,0,130,100,500 +19900128,0,130,100,450 +19900128,0,130,100,400 +19900128,0,130,100,375 +19900128,0,130,100,350 +19900128,0,130,100,300 +19900128,0,130,100,250 +19900128,0,130,100,245 +19900128,0,130,100,225 +19900128,0,130,100,200 +19900128,0,130,100,175 +19900128,0,130,100,150 +19900128,0,130,100,125 +19900128,0,130,100,100 +19900128,0,130,100,70 +19900128,0,130,100,50 +19900128,0,130,100,30 +19900128,0,130,100,20 +19900128,0,130,100,10 +19900128,0,130,100,9 +19900128,0,130,100,7 +19900128,0,130,100,5 +19900128,0,130,100,3 +19900128,0,130,100,2 +19900128,0,130,100,1 +19900128,0,130,210,40 +19900128,0,129,100,1000 +19900128,0,129,100,975 +19900128,0,129,100,950 +19900128,0,129,100,925 +19900128,0,129,100,900 +19900128,0,129,100,875 +19900128,0,129,100,850 +19900128,0,129,100,825 +19900128,0,129,100,800 +19900128,0,129,100,775 +19900128,0,129,100,750 +19900128,0,129,100,740 +19900128,0,129,100,700 +19900128,0,129,100,650 +19900128,0,129,100,620 +19900128,0,129,100,600 +19900128,0,129,100,550 +19900128,0,129,100,500 +19900128,0,129,100,450 +19900128,0,129,100,400 +19900128,0,129,100,375 +19900128,0,129,100,350 +19900128,0,129,100,300 +19900128,0,129,100,250 +19900128,0,129,100,245 +19900128,0,129,100,225 +19900128,0,129,100,200 +19900128,0,129,100,175 +19900128,0,129,100,150 +19900128,0,129,100,125 +19900128,0,129,100,100 +19900128,0,129,100,70 +19900128,0,129,100,50 +19900128,0,129,100,30 +19900128,0,129,100,20 +19900128,0,129,100,10 +19900128,0,129,100,9 +19900128,0,129,100,7 +19900128,0,129,100,5 +19900128,0,129,100,3 +19900128,0,129,100,2 +19900128,0,129,100,1 +19900128,0,129,210,40 +19900128,0,157,100,1000 +19900128,0,157,100,975 +19900128,0,157,100,950 +19900128,0,157,100,925 +19900128,0,157,100,900 +19900128,0,157,100,875 +19900128,0,157,100,850 +19900128,0,157,100,825 +19900128,0,157,100,800 +19900128,0,157,100,775 +19900128,0,157,100,750 +19900128,0,157,100,740 +19900128,0,157,100,700 +19900128,0,157,100,650 +19900128,0,157,100,620 +19900128,0,157,100,600 +19900128,0,157,100,550 +19900128,0,157,100,500 +19900128,0,157,100,450 +19900128,0,157,100,400 +19900128,0,157,100,375 +19900128,0,157,100,350 +19900128,0,157,100,300 +19900128,0,157,100,250 +19900128,0,157,100,245 +19900128,0,157,100,225 +19900128,0,157,100,200 +19900128,0,157,100,175 +19900128,0,157,100,150 +19900128,0,157,100,125 +19900128,0,157,100,100 +19900128,0,157,100,70 +19900128,0,157,100,50 +19900128,0,157,100,30 +19900128,0,157,100,20 +19900128,0,157,100,10 +19900128,0,157,100,9 +19900128,0,157,100,7 +19900128,0,157,100,5 +19900128,0,157,100,3 +19900128,0,157,100,2 +19900128,0,157,100,1 +19900128,0,157,210,40 +19900128,0,135,100,1000 +19900128,0,135,100,975 +19900128,0,135,100,950 +19900128,0,135,100,925 +19900128,0,135,100,900 +19900128,0,135,100,875 +19900128,0,135,100,850 +19900128,0,135,100,825 +19900128,0,135,100,800 +19900128,0,135,100,775 +19900128,0,135,100,750 +19900128,0,135,100,740 +19900128,0,135,100,700 +19900128,0,135,100,650 +19900128,0,135,100,620 +19900128,0,135,100,600 +19900128,0,135,100,550 +19900128,0,135,100,500 +19900128,0,135,100,450 +19900128,0,135,100,400 +19900128,0,135,100,375 +19900128,0,135,100,350 +19900128,0,135,100,300 +19900128,0,135,100,250 +19900128,0,135,100,245 +19900128,0,135,100,225 +19900128,0,135,100,200 +19900128,0,135,100,175 +19900128,0,135,100,150 +19900128,0,135,100,125 +19900128,0,135,100,100 +19900128,0,135,100,70 +19900128,0,135,100,50 +19900128,0,135,100,30 +19900128,0,135,100,20 +19900128,0,135,100,10 +19900128,0,135,100,9 +19900128,0,135,100,7 +19900128,0,135,100,5 +19900128,0,135,100,3 +19900128,0,135,100,2 +19900128,0,135,100,1 +19900128,0,135,210,40 +19900128,0,138,100,1000 +19900128,0,138,100,975 +19900128,0,138,100,950 +19900128,0,138,100,925 +19900128,0,138,100,900 +19900128,0,138,100,875 +19900128,0,138,100,850 +19900128,0,138,100,825 +19900128,0,138,100,800 +19900128,0,138,100,775 +19900128,0,138,100,750 +19900128,0,138,100,740 +19900128,0,138,100,700 +19900128,0,138,100,650 +19900128,0,138,100,620 +19900128,0,138,100,600 +19900128,0,138,100,550 +19900128,0,138,100,500 +19900128,0,138,100,450 +19900128,0,138,100,400 +19900128,0,138,100,375 +19900128,0,138,100,350 +19900128,0,138,100,300 +19900128,0,138,100,250 +19900128,0,138,100,245 +19900128,0,138,100,225 +19900128,0,138,100,200 +19900128,0,138,100,175 +19900128,0,138,100,150 +19900128,0,138,100,125 +19900128,0,138,100,100 +19900128,0,138,100,70 +19900128,0,138,100,50 +19900128,0,138,100,30 +19900128,0,138,100,20 +19900128,0,138,100,10 +19900128,0,138,100,9 +19900128,0,138,100,7 +19900128,0,138,100,5 +19900128,0,138,100,3 +19900128,0,138,100,2 +19900128,0,138,100,1 +19900128,0,138,210,40 +19900128,0,131,109,1 +19900128,0,131,109,2 +19900128,0,131,109,3 +19900128,0,131,109,4 +19900128,0,131,109,5 +19900128,0,131,109,6 +19900128,0,131,109,7 +19900128,0,131,109,8 +19900128,0,131,109,9 +19900128,0,131,109,10 +19900128,0,132,109,1 +19900128,0,132,109,2 +19900128,0,132,109,3 +19900128,0,132,109,4 +19900128,0,132,109,5 +19900128,0,132,109,6 +19900128,0,132,109,7 +19900128,0,132,109,8 +19900128,0,132,109,9 +19900128,0,132,109,10 +19900128,0,130,109,1 +19900128,0,130,109,2 +19900128,0,130,109,3 +19900128,0,130,109,4 +19900128,0,130,109,5 +19900128,0,130,109,6 +19900128,0,130,109,7 +19900128,0,130,109,8 +19900128,0,130,109,9 +19900128,0,130,109,10 +19900128,0,157,109,1 +19900128,0,157,109,2 +19900128,0,157,109,3 +19900128,0,157,109,4 +19900128,0,157,109,5 +19900128,0,157,109,6 +19900128,0,157,109,7 +19900128,0,157,109,8 +19900128,0,157,109,9 +19900128,0,157,109,10 +19900128,0,54,109,1 +19900128,0,54,109,2 +19900128,0,54,109,3 +19900128,0,54,109,4 +19900128,0,54,109,5 +19900128,0,54,109,6 +19900128,0,54,109,7 +19900128,0,54,109,8 +19900128,0,54,109,9 +19900128,0,54,109,10 +19900128,0,135,109,1 +19900128,0,135,109,2 +19900128,0,135,109,3 +19900128,0,135,109,4 +19900128,0,135,109,5 +19900128,0,135,109,6 +19900128,0,135,109,7 +19900128,0,135,109,8 +19900128,0,135,109,9 +19900128,0,135,109,10 +19900128,0,134,109,1 +19900128,0,152,109,1 +19900128,0,131,100,850 +19900128,0,132,100,850 +19900128,0,134,100,1000 +19900128,0,152,100,1000 +19900128,300,131,100,850 +19900128,300,132,100,850 +19900128,300,134,100,1000 +19900128,300,152,100,1000 +19900128,600,131,100,1000 +19900128,600,131,100,975 +19900128,600,131,100,950 +19900128,600,131,100,925 +19900128,600,131,100,900 +19900128,600,131,100,875 +19900128,600,131,100,825 +19900128,600,131,100,800 +19900128,600,131,100,775 +19900128,600,131,100,750 +19900128,600,131,100,740 +19900128,600,131,100,700 +19900128,600,131,100,650 +19900128,600,131,100,620 +19900128,600,131,100,600 +19900128,600,131,100,550 +19900128,600,131,100,500 +19900128,600,131,100,450 +19900128,600,131,100,400 +19900128,600,131,100,375 +19900128,600,131,100,350 +19900128,600,131,100,300 +19900128,600,131,100,250 +19900128,600,131,100,245 +19900128,600,131,100,225 +19900128,600,131,100,200 +19900128,600,131,100,175 +19900128,600,131,100,150 +19900128,600,131,100,125 +19900128,600,131,100,100 +19900128,600,131,100,70 +19900128,600,131,100,50 +19900128,600,131,100,30 +19900128,600,131,100,20 +19900128,600,131,100,10 +19900128,600,131,100,9 +19900128,600,131,100,7 +19900128,600,131,100,5 +19900128,600,131,100,3 +19900128,600,131,100,2 +19900128,600,131,100,1 +19900128,600,131,210,40 +19900128,600,132,100,1000 +19900128,600,132,100,975 +19900128,600,132,100,950 +19900128,600,132,100,925 +19900128,600,132,100,900 +19900128,600,132,100,875 +19900128,600,132,100,825 +19900128,600,132,100,800 +19900128,600,132,100,775 +19900128,600,132,100,750 +19900128,600,132,100,740 +19900128,600,132,100,700 +19900128,600,132,100,650 +19900128,600,132,100,620 +19900128,600,132,100,600 +19900128,600,132,100,550 +19900128,600,132,100,500 +19900128,600,132,100,450 +19900128,600,132,100,400 +19900128,600,132,100,375 +19900128,600,132,100,350 +19900128,600,132,100,300 +19900128,600,132,100,250 +19900128,600,132,100,245 +19900128,600,132,100,225 +19900128,600,132,100,200 +19900128,600,132,100,175 +19900128,600,132,100,150 +19900128,600,132,100,125 +19900128,600,132,100,100 +19900128,600,132,100,70 +19900128,600,132,100,50 +19900128,600,132,100,30 +19900128,600,132,100,20 +19900128,600,132,100,10 +19900128,600,132,100,9 +19900128,600,132,100,7 +19900128,600,132,100,5 +19900128,600,132,100,3 +19900128,600,132,100,2 +19900128,600,132,100,1 +19900128,600,132,210,40 +19900128,600,130,100,1000 +19900128,600,130,100,975 +19900128,600,130,100,950 +19900128,600,130,100,925 +19900128,600,130,100,900 +19900128,600,130,100,875 +19900128,600,130,100,850 +19900128,600,130,100,825 +19900128,600,130,100,800 +19900128,600,130,100,775 +19900128,600,130,100,750 +19900128,600,130,100,740 +19900128,600,130,100,700 +19900128,600,130,100,650 +19900128,600,130,100,620 +19900128,600,130,100,600 +19900128,600,130,100,550 +19900128,600,130,100,500 +19900128,600,130,100,450 +19900128,600,130,100,400 +19900128,600,130,100,375 +19900128,600,130,100,350 +19900128,600,130,100,300 +19900128,600,130,100,250 +19900128,600,130,100,245 +19900128,600,130,100,225 +19900128,600,130,100,200 +19900128,600,130,100,175 +19900128,600,130,100,150 +19900128,600,130,100,125 +19900128,600,130,100,100 +19900128,600,130,100,70 +19900128,600,130,100,50 +19900128,600,130,100,30 +19900128,600,130,100,20 +19900128,600,130,100,10 +19900128,600,130,100,9 +19900128,600,130,100,7 +19900128,600,130,100,5 +19900128,600,130,100,3 +19900128,600,130,100,2 +19900128,600,130,100,1 +19900128,600,130,210,40 +19900128,600,129,100,1000 +19900128,600,129,100,975 +19900128,600,129,100,950 +19900128,600,129,100,925 +19900128,600,129,100,900 +19900128,600,129,100,875 +19900128,600,129,100,850 +19900128,600,129,100,825 +19900128,600,129,100,800 +19900128,600,129,100,775 +19900128,600,129,100,750 +19900128,600,129,100,740 +19900128,600,129,100,700 +19900128,600,129,100,650 +19900128,600,129,100,620 +19900128,600,129,100,600 +19900128,600,129,100,550 +19900128,600,129,100,500 +19900128,600,129,100,450 +19900128,600,129,100,400 +19900128,600,129,100,375 +19900128,600,129,100,350 +19900128,600,129,100,300 +19900128,600,129,100,250 +19900128,600,129,100,245 +19900128,600,129,100,225 +19900128,600,129,100,200 +19900128,600,129,100,175 +19900128,600,129,100,150 +19900128,600,129,100,125 +19900128,600,129,100,100 +19900128,600,129,100,70 +19900128,600,129,100,50 +19900128,600,129,100,30 +19900128,600,129,100,20 +19900128,600,129,100,10 +19900128,600,129,100,9 +19900128,600,129,100,7 +19900128,600,129,100,5 +19900128,600,129,100,3 +19900128,600,129,100,2 +19900128,600,129,100,1 +19900128,600,129,210,40 +19900128,600,157,100,1000 +19900128,600,157,100,975 +19900128,600,157,100,950 +19900128,600,157,100,925 +19900128,600,157,100,900 +19900128,600,157,100,875 +19900128,600,157,100,850 +19900128,600,157,100,825 +19900128,600,157,100,800 +19900128,600,157,100,775 +19900128,600,157,100,750 +19900128,600,157,100,740 +19900128,600,157,100,700 +19900128,600,157,100,650 +19900128,600,157,100,620 +19900128,600,157,100,600 +19900128,600,157,100,550 +19900128,600,157,100,500 +19900128,600,157,100,450 +19900128,600,157,100,400 +19900128,600,157,100,375 +19900128,600,157,100,350 +19900128,600,157,100,300 +19900128,600,157,100,250 +19900128,600,157,100,245 +19900128,600,157,100,225 +19900128,600,157,100,200 +19900128,600,157,100,175 +19900128,600,157,100,150 +19900128,600,157,100,125 +19900128,600,157,100,100 +19900128,600,157,100,70 +19900128,600,157,100,50 +19900128,600,157,100,30 +19900128,600,157,100,20 +19900128,600,157,100,10 +19900128,600,157,100,9 +19900128,600,157,100,7 +19900128,600,157,100,5 +19900128,600,157,100,3 +19900128,600,157,100,2 +19900128,600,157,100,1 +19900128,600,157,210,40 +19900128,600,135,100,1000 +19900128,600,135,100,975 +19900128,600,135,100,950 +19900128,600,135,100,925 +19900128,600,135,100,900 +19900128,600,135,100,875 +19900128,600,135,100,850 +19900128,600,135,100,825 +19900128,600,135,100,800 +19900128,600,135,100,775 +19900128,600,135,100,750 +19900128,600,135,100,740 +19900128,600,135,100,700 +19900128,600,135,100,650 +19900128,600,135,100,620 +19900128,600,135,100,600 +19900128,600,135,100,550 +19900128,600,135,100,500 +19900128,600,135,100,450 +19900128,600,135,100,400 +19900128,600,135,100,375 +19900128,600,135,100,350 +19900128,600,135,100,300 +19900128,600,135,100,250 +19900128,600,135,100,245 +19900128,600,135,100,225 +19900128,600,135,100,200 +19900128,600,135,100,175 +19900128,600,135,100,150 +19900128,600,135,100,125 +19900128,600,135,100,100 +19900128,600,135,100,70 +19900128,600,135,100,50 +19900128,600,135,100,30 +19900128,600,135,100,20 +19900128,600,135,100,10 +19900128,600,135,100,9 +19900128,600,135,100,7 +19900128,600,135,100,5 +19900128,600,135,100,3 +19900128,600,135,100,2 +19900128,600,135,100,1 +19900128,600,135,210,40 +19900128,600,138,100,1000 +19900128,600,138,100,975 +19900128,600,138,100,950 +19900128,600,138,100,925 +19900128,600,138,100,900 +19900128,600,138,100,875 +19900128,600,138,100,850 +19900128,600,138,100,825 +19900128,600,138,100,800 +19900128,600,138,100,775 +19900128,600,138,100,750 +19900128,600,138,100,740 +19900128,600,138,100,700 +19900128,600,138,100,650 +19900128,600,138,100,620 +19900128,600,138,100,600 +19900128,600,138,100,550 +19900128,600,138,100,500 +19900128,600,138,100,450 +19900128,600,138,100,400 +19900128,600,138,100,375 +19900128,600,138,100,350 +19900128,600,138,100,300 +19900128,600,138,100,250 +19900128,600,138,100,245 +19900128,600,138,100,225 +19900128,600,138,100,200 +19900128,600,138,100,175 +19900128,600,138,100,150 +19900128,600,138,100,125 +19900128,600,138,100,100 +19900128,600,138,100,70 +19900128,600,138,100,50 +19900128,600,138,100,30 +19900128,600,138,100,20 +19900128,600,138,100,10 +19900128,600,138,100,9 +19900128,600,138,100,7 +19900128,600,138,100,5 +19900128,600,138,100,3 +19900128,600,138,100,2 +19900128,600,138,100,1 +19900128,600,138,210,40 +19900128,600,131,109,1 +19900128,600,131,109,2 +19900128,600,131,109,3 +19900128,600,131,109,4 +19900128,600,131,109,5 +19900128,600,131,109,6 +19900128,600,131,109,7 +19900128,600,131,109,8 +19900128,600,131,109,9 +19900128,600,131,109,10 +19900128,600,132,109,1 +19900128,600,132,109,2 +19900128,600,132,109,3 +19900128,600,132,109,4 +19900128,600,132,109,5 +19900128,600,132,109,6 +19900128,600,132,109,7 +19900128,600,132,109,8 +19900128,600,132,109,9 +19900128,600,132,109,10 +19900128,600,130,109,1 +19900128,600,130,109,2 +19900128,600,130,109,3 +19900128,600,130,109,4 +19900128,600,130,109,5 +19900128,600,130,109,6 +19900128,600,130,109,7 +19900128,600,130,109,8 +19900128,600,130,109,9 +19900128,600,130,109,10 +19900128,600,157,109,1 +19900128,600,157,109,2 +19900128,600,157,109,3 +19900128,600,157,109,4 +19900128,600,157,109,5 +19900128,600,157,109,6 +19900128,600,157,109,7 +19900128,600,157,109,8 +19900128,600,157,109,9 +19900128,600,157,109,10 +19900128,600,54,109,1 +19900128,600,54,109,2 +19900128,600,54,109,3 +19900128,600,54,109,4 +19900128,600,54,109,5 +19900128,600,54,109,6 +19900128,600,54,109,7 +19900128,600,54,109,8 +19900128,600,54,109,9 +19900128,600,54,109,10 +19900128,600,135,109,1 +19900128,600,135,109,2 +19900128,600,135,109,3 +19900128,600,135,109,4 +19900128,600,135,109,5 +19900128,600,135,109,6 +19900128,600,135,109,7 +19900128,600,135,109,8 +19900128,600,135,109,9 +19900128,600,135,109,10 +19900128,600,134,109,1 +19900128,600,152,109,1 +19900128,600,131,100,850 +19900128,600,132,100,850 +19900128,600,134,100,1000 +19900128,600,152,100,1000 +19900128,900,131,100,850 +19900128,900,132,100,850 +19900128,900,134,100,1000 +19900128,900,152,100,1000 +19900128,1200,131,100,1000 +19900128,1200,131,100,975 +19900128,1200,131,100,950 +19900128,1200,131,100,925 +19900128,1200,131,100,900 +19900128,1200,131,100,875 +19900128,1200,131,100,825 +19900128,1200,131,100,800 +19900128,1200,131,100,775 +19900128,1200,131,100,750 +19900128,1200,131,100,740 +19900128,1200,131,100,700 +19900128,1200,131,100,650 +19900128,1200,131,100,620 +19900128,1200,131,100,600 +19900128,1200,131,100,550 +19900128,1200,131,100,500 +19900128,1200,131,100,450 +19900128,1200,131,100,400 +19900128,1200,131,100,375 +19900128,1200,131,100,350 +19900128,1200,131,100,300 +19900128,1200,131,100,250 +19900128,1200,131,100,245 +19900128,1200,131,100,225 +19900128,1200,131,100,200 +19900128,1200,131,100,175 +19900128,1200,131,100,150 +19900128,1200,131,100,125 +19900128,1200,131,100,100 +19900128,1200,131,100,70 +19900128,1200,131,100,50 +19900128,1200,131,100,30 +19900128,1200,131,100,20 +19900128,1200,131,100,10 +19900128,1200,131,100,9 +19900128,1200,131,100,7 +19900128,1200,131,100,5 +19900128,1200,131,100,3 +19900128,1200,131,100,2 +19900128,1200,131,100,1 +19900128,1200,131,210,40 +19900128,1200,132,100,1000 +19900128,1200,132,100,975 +19900128,1200,132,100,950 +19900128,1200,132,100,925 +19900128,1200,132,100,900 +19900128,1200,132,100,875 +19900128,1200,132,100,825 +19900128,1200,132,100,800 +19900128,1200,132,100,775 +19900128,1200,132,100,750 +19900128,1200,132,100,740 +19900128,1200,132,100,700 +19900128,1200,132,100,650 +19900128,1200,132,100,620 +19900128,1200,132,100,600 +19900128,1200,132,100,550 +19900128,1200,132,100,500 +19900128,1200,132,100,450 +19900128,1200,132,100,400 +19900128,1200,132,100,375 +19900128,1200,132,100,350 +19900128,1200,132,100,300 +19900128,1200,132,100,250 +19900128,1200,132,100,245 +19900128,1200,132,100,225 +19900128,1200,132,100,200 +19900128,1200,132,100,175 +19900128,1200,132,100,150 +19900128,1200,132,100,125 +19900128,1200,132,100,100 +19900128,1200,132,100,70 +19900128,1200,132,100,50 +19900128,1200,132,100,30 +19900128,1200,132,100,20 +19900128,1200,132,100,10 +19900128,1200,132,100,9 +19900128,1200,132,100,7 +19900128,1200,132,100,5 +19900128,1200,132,100,3 +19900128,1200,132,100,2 +19900128,1200,132,100,1 +19900128,1200,132,210,40 +19900128,1200,130,100,1000 +19900128,1200,130,100,975 +19900128,1200,130,100,950 +19900128,1200,130,100,925 +19900128,1200,130,100,900 +19900128,1200,130,100,875 +19900128,1200,130,100,850 +19900128,1200,130,100,825 +19900128,1200,130,100,800 +19900128,1200,130,100,775 +19900128,1200,130,100,750 +19900128,1200,130,100,740 +19900128,1200,130,100,700 +19900128,1200,130,100,650 +19900128,1200,130,100,620 +19900128,1200,130,100,600 +19900128,1200,130,100,550 +19900128,1200,130,100,500 +19900128,1200,130,100,450 +19900128,1200,130,100,400 +19900128,1200,130,100,375 +19900128,1200,130,100,350 +19900128,1200,130,100,300 +19900128,1200,130,100,250 +19900128,1200,130,100,245 +19900128,1200,130,100,225 +19900128,1200,130,100,200 +19900128,1200,130,100,175 +19900128,1200,130,100,150 +19900128,1200,130,100,125 +19900128,1200,130,100,100 +19900128,1200,130,100,70 +19900128,1200,130,100,50 +19900128,1200,130,100,30 +19900128,1200,130,100,20 +19900128,1200,130,100,10 +19900128,1200,130,100,9 +19900128,1200,130,100,7 +19900128,1200,130,100,5 +19900128,1200,130,100,3 +19900128,1200,130,100,2 +19900128,1200,130,100,1 +19900128,1200,130,210,40 +19900128,1200,129,100,1000 +19900128,1200,129,100,975 +19900128,1200,129,100,950 +19900128,1200,129,100,925 +19900128,1200,129,100,900 +19900128,1200,129,100,875 +19900128,1200,129,100,850 +19900128,1200,129,100,825 +19900128,1200,129,100,800 +19900128,1200,129,100,775 +19900128,1200,129,100,750 +19900128,1200,129,100,740 +19900128,1200,129,100,700 +19900128,1200,129,100,650 +19900128,1200,129,100,620 +19900128,1200,129,100,600 +19900128,1200,129,100,550 +19900128,1200,129,100,500 +19900128,1200,129,100,450 +19900128,1200,129,100,400 +19900128,1200,129,100,375 +19900128,1200,129,100,350 +19900128,1200,129,100,300 +19900128,1200,129,100,250 +19900128,1200,129,100,245 +19900128,1200,129,100,225 +19900128,1200,129,100,200 +19900128,1200,129,100,175 +19900128,1200,129,100,150 +19900128,1200,129,100,125 +19900128,1200,129,100,100 +19900128,1200,129,100,70 +19900128,1200,129,100,50 +19900128,1200,129,100,30 +19900128,1200,129,100,20 +19900128,1200,129,100,10 +19900128,1200,129,100,9 +19900128,1200,129,100,7 +19900128,1200,129,100,5 +19900128,1200,129,100,3 +19900128,1200,129,100,2 +19900128,1200,129,100,1 +19900128,1200,129,210,40 +19900128,1200,157,100,1000 +19900128,1200,157,100,975 +19900128,1200,157,100,950 +19900128,1200,157,100,925 +19900128,1200,157,100,900 +19900128,1200,157,100,875 +19900128,1200,157,100,850 +19900128,1200,157,100,825 +19900128,1200,157,100,800 +19900128,1200,157,100,775 +19900128,1200,157,100,750 +19900128,1200,157,100,740 +19900128,1200,157,100,700 +19900128,1200,157,100,650 +19900128,1200,157,100,620 +19900128,1200,157,100,600 +19900128,1200,157,100,550 +19900128,1200,157,100,500 +19900128,1200,157,100,450 +19900128,1200,157,100,400 +19900128,1200,157,100,375 +19900128,1200,157,100,350 +19900128,1200,157,100,300 +19900128,1200,157,100,250 +19900128,1200,157,100,245 +19900128,1200,157,100,225 +19900128,1200,157,100,200 +19900128,1200,157,100,175 +19900128,1200,157,100,150 +19900128,1200,157,100,125 +19900128,1200,157,100,100 +19900128,1200,157,100,70 +19900128,1200,157,100,50 +19900128,1200,157,100,30 +19900128,1200,157,100,20 +19900128,1200,157,100,10 +19900128,1200,157,100,9 +19900128,1200,157,100,7 +19900128,1200,157,100,5 +19900128,1200,157,100,3 +19900128,1200,157,100,2 +19900128,1200,157,100,1 +19900128,1200,157,210,40 +19900128,1200,135,100,1000 +19900128,1200,135,100,975 +19900128,1200,135,100,950 +19900128,1200,135,100,925 +19900128,1200,135,100,900 +19900128,1200,135,100,875 +19900128,1200,135,100,850 +19900128,1200,135,100,825 +19900128,1200,135,100,800 +19900128,1200,135,100,775 +19900128,1200,135,100,750 +19900128,1200,135,100,740 +19900128,1200,135,100,700 +19900128,1200,135,100,650 +19900128,1200,135,100,620 +19900128,1200,135,100,600 +19900128,1200,135,100,550 +19900128,1200,135,100,500 +19900128,1200,135,100,450 +19900128,1200,135,100,400 +19900128,1200,135,100,375 +19900128,1200,135,100,350 +19900128,1200,135,100,300 +19900128,1200,135,100,250 +19900128,1200,135,100,245 +19900128,1200,135,100,225 +19900128,1200,135,100,200 +19900128,1200,135,100,175 +19900128,1200,135,100,150 +19900128,1200,135,100,125 +19900128,1200,135,100,100 +19900128,1200,135,100,70 +19900128,1200,135,100,50 +19900128,1200,135,100,30 +19900128,1200,135,100,20 +19900128,1200,135,100,10 +19900128,1200,135,100,9 +19900128,1200,135,100,7 +19900128,1200,135,100,5 +19900128,1200,135,100,3 +19900128,1200,135,100,2 +19900128,1200,135,100,1 +19900128,1200,135,210,40 +19900128,1200,138,100,1000 +19900128,1200,138,100,975 +19900128,1200,138,100,950 +19900128,1200,138,100,925 +19900128,1200,138,100,900 +19900128,1200,138,100,875 +19900128,1200,138,100,850 +19900128,1200,138,100,825 +19900128,1200,138,100,800 +19900128,1200,138,100,775 +19900128,1200,138,100,750 +19900128,1200,138,100,740 +19900128,1200,138,100,700 +19900128,1200,138,100,650 +19900128,1200,138,100,620 +19900128,1200,138,100,600 +19900128,1200,138,100,550 +19900128,1200,138,100,500 +19900128,1200,138,100,450 +19900128,1200,138,100,400 +19900128,1200,138,100,375 +19900128,1200,138,100,350 +19900128,1200,138,100,300 +19900128,1200,138,100,250 +19900128,1200,138,100,245 +19900128,1200,138,100,225 +19900128,1200,138,100,200 +19900128,1200,138,100,175 +19900128,1200,138,100,150 +19900128,1200,138,100,125 +19900128,1200,138,100,100 +19900128,1200,138,100,70 +19900128,1200,138,100,50 +19900128,1200,138,100,30 +19900128,1200,138,100,20 +19900128,1200,138,100,10 +19900128,1200,138,100,9 +19900128,1200,138,100,7 +19900128,1200,138,100,5 +19900128,1200,138,100,3 +19900128,1200,138,100,2 +19900128,1200,138,100,1 +19900128,1200,138,210,40 +19900128,1200,131,109,1 +19900128,1200,131,109,2 +19900128,1200,131,109,3 +19900128,1200,131,109,4 +19900128,1200,131,109,5 +19900128,1200,131,109,6 +19900128,1200,131,109,7 +19900128,1200,131,109,8 +19900128,1200,131,109,9 +19900128,1200,131,109,10 +19900128,1200,132,109,1 +19900128,1200,132,109,2 +19900128,1200,132,109,3 +19900128,1200,132,109,4 +19900128,1200,132,109,5 +19900128,1200,132,109,6 +19900128,1200,132,109,7 +19900128,1200,132,109,8 +19900128,1200,132,109,9 +19900128,1200,132,109,10 +19900128,1200,130,109,1 +19900128,1200,130,109,2 +19900128,1200,130,109,3 +19900128,1200,130,109,4 +19900128,1200,130,109,5 +19900128,1200,130,109,6 +19900128,1200,130,109,7 +19900128,1200,130,109,8 +19900128,1200,130,109,9 +19900128,1200,130,109,10 +19900128,1200,157,109,1 +19900128,1200,157,109,2 +19900128,1200,157,109,3 +19900128,1200,157,109,4 +19900128,1200,157,109,5 +19900128,1200,157,109,6 +19900128,1200,157,109,7 +19900128,1200,157,109,8 +19900128,1200,157,109,9 +19900128,1200,157,109,10 +19900128,1200,54,109,1 +19900128,1200,54,109,2 +19900128,1200,54,109,3 +19900128,1200,54,109,4 +19900128,1200,54,109,5 +19900128,1200,54,109,6 +19900128,1200,54,109,7 +19900128,1200,54,109,8 +19900128,1200,54,109,9 +19900128,1200,54,109,10 +19900128,1200,135,109,1 +19900128,1200,135,109,2 +19900128,1200,135,109,3 +19900128,1200,135,109,4 +19900128,1200,135,109,5 +19900128,1200,135,109,6 +19900128,1200,135,109,7 +19900128,1200,135,109,8 +19900128,1200,135,109,9 +19900128,1200,135,109,10 +19900128,1200,134,109,1 +19900128,1200,152,109,1 +19900128,1200,131,100,850 +19900128,1200,132,100,850 +19900128,1200,134,100,1000 +19900128,1200,152,100,1000 +19900128,1500,131,100,850 +19900128,1500,132,100,850 +19900128,1500,134,100,1000 +19900128,1500,152,100,1000 +19900128,1800,131,100,1000 +19900128,1800,131,100,975 +19900128,1800,131,100,950 +19900128,1800,131,100,925 +19900128,1800,131,100,900 +19900128,1800,131,100,875 +19900128,1800,131,100,825 +19900128,1800,131,100,800 +19900128,1800,131,100,775 +19900128,1800,131,100,750 +19900128,1800,131,100,740 +19900128,1800,131,100,700 +19900128,1800,131,100,650 +19900128,1800,131,100,620 +19900128,1800,131,100,600 +19900128,1800,131,100,550 +19900128,1800,131,100,500 +19900128,1800,131,100,450 +19900128,1800,131,100,400 +19900128,1800,131,100,375 +19900128,1800,131,100,350 +19900128,1800,131,100,300 +19900128,1800,131,100,250 +19900128,1800,131,100,245 +19900128,1800,131,100,225 +19900128,1800,131,100,200 +19900128,1800,131,100,175 +19900128,1800,131,100,150 +19900128,1800,131,100,125 +19900128,1800,131,100,100 +19900128,1800,131,100,70 +19900128,1800,131,100,50 +19900128,1800,131,100,30 +19900128,1800,131,100,20 +19900128,1800,131,100,10 +19900128,1800,131,100,9 +19900128,1800,131,100,7 +19900128,1800,131,100,5 +19900128,1800,131,100,3 +19900128,1800,131,100,2 +19900128,1800,131,100,1 +19900128,1800,131,210,40 +19900128,1800,132,100,1000 +19900128,1800,132,100,975 +19900128,1800,132,100,950 +19900128,1800,132,100,925 +19900128,1800,132,100,900 +19900128,1800,132,100,875 +19900128,1800,132,100,825 +19900128,1800,132,100,800 +19900128,1800,132,100,775 +19900128,1800,132,100,750 +19900128,1800,132,100,740 +19900128,1800,132,100,700 +19900128,1800,132,100,650 +19900128,1800,132,100,620 +19900128,1800,132,100,600 +19900128,1800,132,100,550 +19900128,1800,132,100,500 +19900128,1800,132,100,450 +19900128,1800,132,100,400 +19900128,1800,132,100,375 +19900128,1800,132,100,350 +19900128,1800,132,100,300 +19900128,1800,132,100,250 +19900128,1800,132,100,245 +19900128,1800,132,100,225 +19900128,1800,132,100,200 +19900128,1800,132,100,175 +19900128,1800,132,100,150 +19900128,1800,132,100,125 +19900128,1800,132,100,100 +19900128,1800,132,100,70 +19900128,1800,132,100,50 +19900128,1800,132,100,30 +19900128,1800,132,100,20 +19900128,1800,132,100,10 +19900128,1800,132,100,9 +19900128,1800,132,100,7 +19900128,1800,132,100,5 +19900128,1800,132,100,3 +19900128,1800,132,100,2 +19900128,1800,132,100,1 +19900128,1800,132,210,40 +19900128,1800,130,100,1000 +19900128,1800,130,100,975 +19900128,1800,130,100,950 +19900128,1800,130,100,925 +19900128,1800,130,100,900 +19900128,1800,130,100,875 +19900128,1800,130,100,850 +19900128,1800,130,100,825 +19900128,1800,130,100,800 +19900128,1800,130,100,775 +19900128,1800,130,100,750 +19900128,1800,130,100,740 +19900128,1800,130,100,700 +19900128,1800,130,100,650 +19900128,1800,130,100,620 +19900128,1800,130,100,600 +19900128,1800,130,100,550 +19900128,1800,130,100,500 +19900128,1800,130,100,450 +19900128,1800,130,100,400 +19900128,1800,130,100,375 +19900128,1800,130,100,350 +19900128,1800,130,100,300 +19900128,1800,130,100,250 +19900128,1800,130,100,245 +19900128,1800,130,100,225 +19900128,1800,130,100,200 +19900128,1800,130,100,175 +19900128,1800,130,100,150 +19900128,1800,130,100,125 +19900128,1800,130,100,100 +19900128,1800,130,100,70 +19900128,1800,130,100,50 +19900128,1800,130,100,30 +19900128,1800,130,100,20 +19900128,1800,130,100,10 +19900128,1800,130,100,9 +19900128,1800,130,100,7 +19900128,1800,130,100,5 +19900128,1800,130,100,3 +19900128,1800,130,100,2 +19900128,1800,130,100,1 +19900128,1800,130,210,40 +19900128,1800,129,100,1000 +19900128,1800,129,100,975 +19900128,1800,129,100,950 +19900128,1800,129,100,925 +19900128,1800,129,100,900 +19900128,1800,129,100,875 +19900128,1800,129,100,850 +19900128,1800,129,100,825 +19900128,1800,129,100,800 +19900128,1800,129,100,775 +19900128,1800,129,100,750 +19900128,1800,129,100,740 +19900128,1800,129,100,700 +19900128,1800,129,100,650 +19900128,1800,129,100,620 +19900128,1800,129,100,600 +19900128,1800,129,100,550 +19900128,1800,129,100,500 +19900128,1800,129,100,450 +19900128,1800,129,100,400 +19900128,1800,129,100,375 +19900128,1800,129,100,350 +19900128,1800,129,100,300 +19900128,1800,129,100,250 +19900128,1800,129,100,245 +19900128,1800,129,100,225 +19900128,1800,129,100,200 +19900128,1800,129,100,175 +19900128,1800,129,100,150 +19900128,1800,129,100,125 +19900128,1800,129,100,100 +19900128,1800,129,100,70 +19900128,1800,129,100,50 +19900128,1800,129,100,30 +19900128,1800,129,100,20 +19900128,1800,129,100,10 +19900128,1800,129,100,9 +19900128,1800,129,100,7 +19900128,1800,129,100,5 +19900128,1800,129,100,3 +19900128,1800,129,100,2 +19900128,1800,129,100,1 +19900128,1800,129,210,40 +19900128,1800,157,100,1000 +19900128,1800,157,100,975 +19900128,1800,157,100,950 +19900128,1800,157,100,925 +19900128,1800,157,100,900 +19900128,1800,157,100,875 +19900128,1800,157,100,850 +19900128,1800,157,100,825 +19900128,1800,157,100,800 +19900128,1800,157,100,775 +19900128,1800,157,100,750 +19900128,1800,157,100,740 +19900128,1800,157,100,700 +19900128,1800,157,100,650 +19900128,1800,157,100,620 +19900128,1800,157,100,600 +19900128,1800,157,100,550 +19900128,1800,157,100,500 +19900128,1800,157,100,450 +19900128,1800,157,100,400 +19900128,1800,157,100,375 +19900128,1800,157,100,350 +19900128,1800,157,100,300 +19900128,1800,157,100,250 +19900128,1800,157,100,245 +19900128,1800,157,100,225 +19900128,1800,157,100,200 +19900128,1800,157,100,175 +19900128,1800,157,100,150 +19900128,1800,157,100,125 +19900128,1800,157,100,100 +19900128,1800,157,100,70 +19900128,1800,157,100,50 +19900128,1800,157,100,30 +19900128,1800,157,100,20 +19900128,1800,157,100,10 +19900128,1800,157,100,9 +19900128,1800,157,100,7 +19900128,1800,157,100,5 +19900128,1800,157,100,3 +19900128,1800,157,100,2 +19900128,1800,157,100,1 +19900128,1800,157,210,40 +19900128,1800,135,100,1000 +19900128,1800,135,100,975 +19900128,1800,135,100,950 +19900128,1800,135,100,925 +19900128,1800,135,100,900 +19900128,1800,135,100,875 +19900128,1800,135,100,850 +19900128,1800,135,100,825 +19900128,1800,135,100,800 +19900128,1800,135,100,775 +19900128,1800,135,100,750 +19900128,1800,135,100,740 +19900128,1800,135,100,700 +19900128,1800,135,100,650 +19900128,1800,135,100,620 +19900128,1800,135,100,600 +19900128,1800,135,100,550 +19900128,1800,135,100,500 +19900128,1800,135,100,450 +19900128,1800,135,100,400 +19900128,1800,135,100,375 +19900128,1800,135,100,350 +19900128,1800,135,100,300 +19900128,1800,135,100,250 +19900128,1800,135,100,245 +19900128,1800,135,100,225 +19900128,1800,135,100,200 +19900128,1800,135,100,175 +19900128,1800,135,100,150 +19900128,1800,135,100,125 +19900128,1800,135,100,100 +19900128,1800,135,100,70 +19900128,1800,135,100,50 +19900128,1800,135,100,30 +19900128,1800,135,100,20 +19900128,1800,135,100,10 +19900128,1800,135,100,9 +19900128,1800,135,100,7 +19900128,1800,135,100,5 +19900128,1800,135,100,3 +19900128,1800,135,100,2 +19900128,1800,135,100,1 +19900128,1800,135,210,40 +19900128,1800,138,100,1000 +19900128,1800,138,100,975 +19900128,1800,138,100,950 +19900128,1800,138,100,925 +19900128,1800,138,100,900 +19900128,1800,138,100,875 +19900128,1800,138,100,850 +19900128,1800,138,100,825 +19900128,1800,138,100,800 +19900128,1800,138,100,775 +19900128,1800,138,100,750 +19900128,1800,138,100,740 +19900128,1800,138,100,700 +19900128,1800,138,100,650 +19900128,1800,138,100,620 +19900128,1800,138,100,600 +19900128,1800,138,100,550 +19900128,1800,138,100,500 +19900128,1800,138,100,450 +19900128,1800,138,100,400 +19900128,1800,138,100,375 +19900128,1800,138,100,350 +19900128,1800,138,100,300 +19900128,1800,138,100,250 +19900128,1800,138,100,245 +19900128,1800,138,100,225 +19900128,1800,138,100,200 +19900128,1800,138,100,175 +19900128,1800,138,100,150 +19900128,1800,138,100,125 +19900128,1800,138,100,100 +19900128,1800,138,100,70 +19900128,1800,138,100,50 +19900128,1800,138,100,30 +19900128,1800,138,100,20 +19900128,1800,138,100,10 +19900128,1800,138,100,9 +19900128,1800,138,100,7 +19900128,1800,138,100,5 +19900128,1800,138,100,3 +19900128,1800,138,100,2 +19900128,1800,138,100,1 +19900128,1800,138,210,40 +19900128,1800,131,109,1 +19900128,1800,131,109,2 +19900128,1800,131,109,3 +19900128,1800,131,109,4 +19900128,1800,131,109,5 +19900128,1800,131,109,6 +19900128,1800,131,109,7 +19900128,1800,131,109,8 +19900128,1800,131,109,9 +19900128,1800,131,109,10 +19900128,1800,132,109,1 +19900128,1800,132,109,2 +19900128,1800,132,109,3 +19900128,1800,132,109,4 +19900128,1800,132,109,5 +19900128,1800,132,109,6 +19900128,1800,132,109,7 +19900128,1800,132,109,8 +19900128,1800,132,109,9 +19900128,1800,132,109,10 +19900128,1800,130,109,1 +19900128,1800,130,109,2 +19900128,1800,130,109,3 +19900128,1800,130,109,4 +19900128,1800,130,109,5 +19900128,1800,130,109,6 +19900128,1800,130,109,7 +19900128,1800,130,109,8 +19900128,1800,130,109,9 +19900128,1800,130,109,10 +19900128,1800,157,109,1 +19900128,1800,157,109,2 +19900128,1800,157,109,3 +19900128,1800,157,109,4 +19900128,1800,157,109,5 +19900128,1800,157,109,6 +19900128,1800,157,109,7 +19900128,1800,157,109,8 +19900128,1800,157,109,9 +19900128,1800,157,109,10 +19900128,1800,54,109,1 +19900128,1800,54,109,2 +19900128,1800,54,109,3 +19900128,1800,54,109,4 +19900128,1800,54,109,5 +19900128,1800,54,109,6 +19900128,1800,54,109,7 +19900128,1800,54,109,8 +19900128,1800,54,109,9 +19900128,1800,54,109,10 +19900128,1800,135,109,1 +19900128,1800,135,109,2 +19900128,1800,135,109,3 +19900128,1800,135,109,4 +19900128,1800,135,109,5 +19900128,1800,135,109,6 +19900128,1800,135,109,7 +19900128,1800,135,109,8 +19900128,1800,135,109,9 +19900128,1800,135,109,10 +19900128,1800,134,109,1 +19900128,1800,152,109,1 +19900128,1800,131,100,850 +19900128,1800,132,100,850 +19900128,1800,134,100,1000 +19900128,1800,152,100,1000 +19900128,2100,131,100,850 +19900128,2100,132,100,850 +19900128,2100,134,100,1000 +19900128,2100,152,100,1000 +19900129,0,131,100,1000 +19900129,0,131,100,975 +19900129,0,131,100,950 +19900129,0,131,100,925 +19900129,0,131,100,900 +19900129,0,131,100,875 +19900129,0,131,100,825 +19900129,0,131,100,800 +19900129,0,131,100,775 +19900129,0,131,100,750 +19900129,0,131,100,740 +19900129,0,131,100,700 +19900129,0,131,100,650 +19900129,0,131,100,620 +19900129,0,131,100,600 +19900129,0,131,100,550 +19900129,0,131,100,500 +19900129,0,131,100,450 +19900129,0,131,100,400 +19900129,0,131,100,375 +19900129,0,131,100,350 +19900129,0,131,100,300 +19900129,0,131,100,250 +19900129,0,131,100,245 +19900129,0,131,100,225 +19900129,0,131,100,200 +19900129,0,131,100,175 +19900129,0,131,100,150 +19900129,0,131,100,125 +19900129,0,131,100,100 +19900129,0,131,100,70 +19900129,0,131,100,50 +19900129,0,131,100,30 +19900129,0,131,100,20 +19900129,0,131,100,10 +19900129,0,131,100,9 +19900129,0,131,100,7 +19900129,0,131,100,5 +19900129,0,131,100,3 +19900129,0,131,100,2 +19900129,0,131,100,1 +19900129,0,131,210,40 +19900129,0,132,100,1000 +19900129,0,132,100,975 +19900129,0,132,100,950 +19900129,0,132,100,925 +19900129,0,132,100,900 +19900129,0,132,100,875 +19900129,0,132,100,825 +19900129,0,132,100,800 +19900129,0,132,100,775 +19900129,0,132,100,750 +19900129,0,132,100,740 +19900129,0,132,100,700 +19900129,0,132,100,650 +19900129,0,132,100,620 +19900129,0,132,100,600 +19900129,0,132,100,550 +19900129,0,132,100,500 +19900129,0,132,100,450 +19900129,0,132,100,400 +19900129,0,132,100,375 +19900129,0,132,100,350 +19900129,0,132,100,300 +19900129,0,132,100,250 +19900129,0,132,100,245 +19900129,0,132,100,225 +19900129,0,132,100,200 +19900129,0,132,100,175 +19900129,0,132,100,150 +19900129,0,132,100,125 +19900129,0,132,100,100 +19900129,0,132,100,70 +19900129,0,132,100,50 +19900129,0,132,100,30 +19900129,0,132,100,20 +19900129,0,132,100,10 +19900129,0,132,100,9 +19900129,0,132,100,7 +19900129,0,132,100,5 +19900129,0,132,100,3 +19900129,0,132,100,2 +19900129,0,132,100,1 +19900129,0,132,210,40 +19900129,0,130,100,1000 +19900129,0,130,100,975 +19900129,0,130,100,950 +19900129,0,130,100,925 +19900129,0,130,100,900 +19900129,0,130,100,875 +19900129,0,130,100,850 +19900129,0,130,100,825 +19900129,0,130,100,800 +19900129,0,130,100,775 +19900129,0,130,100,750 +19900129,0,130,100,740 +19900129,0,130,100,700 +19900129,0,130,100,650 +19900129,0,130,100,620 +19900129,0,130,100,600 +19900129,0,130,100,550 +19900129,0,130,100,500 +19900129,0,130,100,450 +19900129,0,130,100,400 +19900129,0,130,100,375 +19900129,0,130,100,350 +19900129,0,130,100,300 +19900129,0,130,100,250 +19900129,0,130,100,245 +19900129,0,130,100,225 +19900129,0,130,100,200 +19900129,0,130,100,175 +19900129,0,130,100,150 +19900129,0,130,100,125 +19900129,0,130,100,100 +19900129,0,130,100,70 +19900129,0,130,100,50 +19900129,0,130,100,30 +19900129,0,130,100,20 +19900129,0,130,100,10 +19900129,0,130,100,9 +19900129,0,130,100,7 +19900129,0,130,100,5 +19900129,0,130,100,3 +19900129,0,130,100,2 +19900129,0,130,100,1 +19900129,0,130,210,40 +19900129,0,129,100,1000 +19900129,0,129,100,975 +19900129,0,129,100,950 +19900129,0,129,100,925 +19900129,0,129,100,900 +19900129,0,129,100,875 +19900129,0,129,100,850 +19900129,0,129,100,825 +19900129,0,129,100,800 +19900129,0,129,100,775 +19900129,0,129,100,750 +19900129,0,129,100,740 +19900129,0,129,100,700 +19900129,0,129,100,650 +19900129,0,129,100,620 +19900129,0,129,100,600 +19900129,0,129,100,550 +19900129,0,129,100,500 +19900129,0,129,100,450 +19900129,0,129,100,400 +19900129,0,129,100,375 +19900129,0,129,100,350 +19900129,0,129,100,300 +19900129,0,129,100,250 +19900129,0,129,100,245 +19900129,0,129,100,225 +19900129,0,129,100,200 +19900129,0,129,100,175 +19900129,0,129,100,150 +19900129,0,129,100,125 +19900129,0,129,100,100 +19900129,0,129,100,70 +19900129,0,129,100,50 +19900129,0,129,100,30 +19900129,0,129,100,20 +19900129,0,129,100,10 +19900129,0,129,100,9 +19900129,0,129,100,7 +19900129,0,129,100,5 +19900129,0,129,100,3 +19900129,0,129,100,2 +19900129,0,129,100,1 +19900129,0,129,210,40 +19900129,0,157,100,1000 +19900129,0,157,100,975 +19900129,0,157,100,950 +19900129,0,157,100,925 +19900129,0,157,100,900 +19900129,0,157,100,875 +19900129,0,157,100,850 +19900129,0,157,100,825 +19900129,0,157,100,800 +19900129,0,157,100,775 +19900129,0,157,100,750 +19900129,0,157,100,740 +19900129,0,157,100,700 +19900129,0,157,100,650 +19900129,0,157,100,620 +19900129,0,157,100,600 +19900129,0,157,100,550 +19900129,0,157,100,500 +19900129,0,157,100,450 +19900129,0,157,100,400 +19900129,0,157,100,375 +19900129,0,157,100,350 +19900129,0,157,100,300 +19900129,0,157,100,250 +19900129,0,157,100,245 +19900129,0,157,100,225 +19900129,0,157,100,200 +19900129,0,157,100,175 +19900129,0,157,100,150 +19900129,0,157,100,125 +19900129,0,157,100,100 +19900129,0,157,100,70 +19900129,0,157,100,50 +19900129,0,157,100,30 +19900129,0,157,100,20 +19900129,0,157,100,10 +19900129,0,157,100,9 +19900129,0,157,100,7 +19900129,0,157,100,5 +19900129,0,157,100,3 +19900129,0,157,100,2 +19900129,0,157,100,1 +19900129,0,157,210,40 +19900129,0,135,100,1000 +19900129,0,135,100,975 +19900129,0,135,100,950 +19900129,0,135,100,925 +19900129,0,135,100,900 +19900129,0,135,100,875 +19900129,0,135,100,850 +19900129,0,135,100,825 +19900129,0,135,100,800 +19900129,0,135,100,775 +19900129,0,135,100,750 +19900129,0,135,100,740 +19900129,0,135,100,700 +19900129,0,135,100,650 +19900129,0,135,100,620 +19900129,0,135,100,600 +19900129,0,135,100,550 +19900129,0,135,100,500 +19900129,0,135,100,450 +19900129,0,135,100,400 +19900129,0,135,100,375 +19900129,0,135,100,350 +19900129,0,135,100,300 +19900129,0,135,100,250 +19900129,0,135,100,245 +19900129,0,135,100,225 +19900129,0,135,100,200 +19900129,0,135,100,175 +19900129,0,135,100,150 +19900129,0,135,100,125 +19900129,0,135,100,100 +19900129,0,135,100,70 +19900129,0,135,100,50 +19900129,0,135,100,30 +19900129,0,135,100,20 +19900129,0,135,100,10 +19900129,0,135,100,9 +19900129,0,135,100,7 +19900129,0,135,100,5 +19900129,0,135,100,3 +19900129,0,135,100,2 +19900129,0,135,100,1 +19900129,0,135,210,40 +19900129,0,138,100,1000 +19900129,0,138,100,975 +19900129,0,138,100,950 +19900129,0,138,100,925 +19900129,0,138,100,900 +19900129,0,138,100,875 +19900129,0,138,100,850 +19900129,0,138,100,825 +19900129,0,138,100,800 +19900129,0,138,100,775 +19900129,0,138,100,750 +19900129,0,138,100,740 +19900129,0,138,100,700 +19900129,0,138,100,650 +19900129,0,138,100,620 +19900129,0,138,100,600 +19900129,0,138,100,550 +19900129,0,138,100,500 +19900129,0,138,100,450 +19900129,0,138,100,400 +19900129,0,138,100,375 +19900129,0,138,100,350 +19900129,0,138,100,300 +19900129,0,138,100,250 +19900129,0,138,100,245 +19900129,0,138,100,225 +19900129,0,138,100,200 +19900129,0,138,100,175 +19900129,0,138,100,150 +19900129,0,138,100,125 +19900129,0,138,100,100 +19900129,0,138,100,70 +19900129,0,138,100,50 +19900129,0,138,100,30 +19900129,0,138,100,20 +19900129,0,138,100,10 +19900129,0,138,100,9 +19900129,0,138,100,7 +19900129,0,138,100,5 +19900129,0,138,100,3 +19900129,0,138,100,2 +19900129,0,138,100,1 +19900129,0,138,210,40 +19900129,0,131,109,1 +19900129,0,131,109,2 +19900129,0,131,109,3 +19900129,0,131,109,4 +19900129,0,131,109,5 +19900129,0,131,109,6 +19900129,0,131,109,7 +19900129,0,131,109,8 +19900129,0,131,109,9 +19900129,0,131,109,10 +19900129,0,132,109,1 +19900129,0,132,109,2 +19900129,0,132,109,3 +19900129,0,132,109,4 +19900129,0,132,109,5 +19900129,0,132,109,6 +19900129,0,132,109,7 +19900129,0,132,109,8 +19900129,0,132,109,9 +19900129,0,132,109,10 +19900129,0,130,109,1 +19900129,0,130,109,2 +19900129,0,130,109,3 +19900129,0,130,109,4 +19900129,0,130,109,5 +19900129,0,130,109,6 +19900129,0,130,109,7 +19900129,0,130,109,8 +19900129,0,130,109,9 +19900129,0,130,109,10 +19900129,0,157,109,1 +19900129,0,157,109,2 +19900129,0,157,109,3 +19900129,0,157,109,4 +19900129,0,157,109,5 +19900129,0,157,109,6 +19900129,0,157,109,7 +19900129,0,157,109,8 +19900129,0,157,109,9 +19900129,0,157,109,10 +19900129,0,54,109,1 +19900129,0,54,109,2 +19900129,0,54,109,3 +19900129,0,54,109,4 +19900129,0,54,109,5 +19900129,0,54,109,6 +19900129,0,54,109,7 +19900129,0,54,109,8 +19900129,0,54,109,9 +19900129,0,54,109,10 +19900129,0,135,109,1 +19900129,0,135,109,2 +19900129,0,135,109,3 +19900129,0,135,109,4 +19900129,0,135,109,5 +19900129,0,135,109,6 +19900129,0,135,109,7 +19900129,0,135,109,8 +19900129,0,135,109,9 +19900129,0,135,109,10 +19900129,0,134,109,1 +19900129,0,152,109,1 +19900129,0,131,100,850 +19900129,0,132,100,850 +19900129,0,134,100,1000 +19900129,0,152,100,1000 +19900129,300,131,100,850 +19900129,300,132,100,850 +19900129,300,134,100,1000 +19900129,300,152,100,1000 +19900129,600,131,100,1000 +19900129,600,131,100,975 +19900129,600,131,100,950 +19900129,600,131,100,925 +19900129,600,131,100,900 +19900129,600,131,100,875 +19900129,600,131,100,825 +19900129,600,131,100,800 +19900129,600,131,100,775 +19900129,600,131,100,750 +19900129,600,131,100,740 +19900129,600,131,100,700 +19900129,600,131,100,650 +19900129,600,131,100,620 +19900129,600,131,100,600 +19900129,600,131,100,550 +19900129,600,131,100,500 +19900129,600,131,100,450 +19900129,600,131,100,400 +19900129,600,131,100,375 +19900129,600,131,100,350 +19900129,600,131,100,300 +19900129,600,131,100,250 +19900129,600,131,100,245 +19900129,600,131,100,225 +19900129,600,131,100,200 +19900129,600,131,100,175 +19900129,600,131,100,150 +19900129,600,131,100,125 +19900129,600,131,100,100 +19900129,600,131,100,70 +19900129,600,131,100,50 +19900129,600,131,100,30 +19900129,600,131,100,20 +19900129,600,131,100,10 +19900129,600,131,100,9 +19900129,600,131,100,7 +19900129,600,131,100,5 +19900129,600,131,100,3 +19900129,600,131,100,2 +19900129,600,131,100,1 +19900129,600,131,210,40 +19900129,600,132,100,1000 +19900129,600,132,100,975 +19900129,600,132,100,950 +19900129,600,132,100,925 +19900129,600,132,100,900 +19900129,600,132,100,875 +19900129,600,132,100,825 +19900129,600,132,100,800 +19900129,600,132,100,775 +19900129,600,132,100,750 +19900129,600,132,100,740 +19900129,600,132,100,700 +19900129,600,132,100,650 +19900129,600,132,100,620 +19900129,600,132,100,600 +19900129,600,132,100,550 +19900129,600,132,100,500 +19900129,600,132,100,450 +19900129,600,132,100,400 +19900129,600,132,100,375 +19900129,600,132,100,350 +19900129,600,132,100,300 +19900129,600,132,100,250 +19900129,600,132,100,245 +19900129,600,132,100,225 +19900129,600,132,100,200 +19900129,600,132,100,175 +19900129,600,132,100,150 +19900129,600,132,100,125 +19900129,600,132,100,100 +19900129,600,132,100,70 +19900129,600,132,100,50 +19900129,600,132,100,30 +19900129,600,132,100,20 +19900129,600,132,100,10 +19900129,600,132,100,9 +19900129,600,132,100,7 +19900129,600,132,100,5 +19900129,600,132,100,3 +19900129,600,132,100,2 +19900129,600,132,100,1 +19900129,600,132,210,40 +19900129,600,130,100,1000 +19900129,600,130,100,975 +19900129,600,130,100,950 +19900129,600,130,100,925 +19900129,600,130,100,900 +19900129,600,130,100,875 +19900129,600,130,100,850 +19900129,600,130,100,825 +19900129,600,130,100,800 +19900129,600,130,100,775 +19900129,600,130,100,750 +19900129,600,130,100,740 +19900129,600,130,100,700 +19900129,600,130,100,650 +19900129,600,130,100,620 +19900129,600,130,100,600 +19900129,600,130,100,550 +19900129,600,130,100,500 +19900129,600,130,100,450 +19900129,600,130,100,400 +19900129,600,130,100,375 +19900129,600,130,100,350 +19900129,600,130,100,300 +19900129,600,130,100,250 +19900129,600,130,100,245 +19900129,600,130,100,225 +19900129,600,130,100,200 +19900129,600,130,100,175 +19900129,600,130,100,150 +19900129,600,130,100,125 +19900129,600,130,100,100 +19900129,600,130,100,70 +19900129,600,130,100,50 +19900129,600,130,100,30 +19900129,600,130,100,20 +19900129,600,130,100,10 +19900129,600,130,100,9 +19900129,600,130,100,7 +19900129,600,130,100,5 +19900129,600,130,100,3 +19900129,600,130,100,2 +19900129,600,130,100,1 +19900129,600,130,210,40 +19900129,600,129,100,1000 +19900129,600,129,100,975 +19900129,600,129,100,950 +19900129,600,129,100,925 +19900129,600,129,100,900 +19900129,600,129,100,875 +19900129,600,129,100,850 +19900129,600,129,100,825 +19900129,600,129,100,800 +19900129,600,129,100,775 +19900129,600,129,100,750 +19900129,600,129,100,740 +19900129,600,129,100,700 +19900129,600,129,100,650 +19900129,600,129,100,620 +19900129,600,129,100,600 +19900129,600,129,100,550 +19900129,600,129,100,500 +19900129,600,129,100,450 +19900129,600,129,100,400 +19900129,600,129,100,375 +19900129,600,129,100,350 +19900129,600,129,100,300 +19900129,600,129,100,250 +19900129,600,129,100,245 +19900129,600,129,100,225 +19900129,600,129,100,200 +19900129,600,129,100,175 +19900129,600,129,100,150 +19900129,600,129,100,125 +19900129,600,129,100,100 +19900129,600,129,100,70 +19900129,600,129,100,50 +19900129,600,129,100,30 +19900129,600,129,100,20 +19900129,600,129,100,10 +19900129,600,129,100,9 +19900129,600,129,100,7 +19900129,600,129,100,5 +19900129,600,129,100,3 +19900129,600,129,100,2 +19900129,600,129,100,1 +19900129,600,129,210,40 +19900129,600,157,100,1000 +19900129,600,157,100,975 +19900129,600,157,100,950 +19900129,600,157,100,925 +19900129,600,157,100,900 +19900129,600,157,100,875 +19900129,600,157,100,850 +19900129,600,157,100,825 +19900129,600,157,100,800 +19900129,600,157,100,775 +19900129,600,157,100,750 +19900129,600,157,100,740 +19900129,600,157,100,700 +19900129,600,157,100,650 +19900129,600,157,100,620 +19900129,600,157,100,600 +19900129,600,157,100,550 +19900129,600,157,100,500 +19900129,600,157,100,450 +19900129,600,157,100,400 +19900129,600,157,100,375 +19900129,600,157,100,350 +19900129,600,157,100,300 +19900129,600,157,100,250 +19900129,600,157,100,245 +19900129,600,157,100,225 +19900129,600,157,100,200 +19900129,600,157,100,175 +19900129,600,157,100,150 +19900129,600,157,100,125 +19900129,600,157,100,100 +19900129,600,157,100,70 +19900129,600,157,100,50 +19900129,600,157,100,30 +19900129,600,157,100,20 +19900129,600,157,100,10 +19900129,600,157,100,9 +19900129,600,157,100,7 +19900129,600,157,100,5 +19900129,600,157,100,3 +19900129,600,157,100,2 +19900129,600,157,100,1 +19900129,600,157,210,40 +19900129,600,135,100,1000 +19900129,600,135,100,975 +19900129,600,135,100,950 +19900129,600,135,100,925 +19900129,600,135,100,900 +19900129,600,135,100,875 +19900129,600,135,100,850 +19900129,600,135,100,825 +19900129,600,135,100,800 +19900129,600,135,100,775 +19900129,600,135,100,750 +19900129,600,135,100,740 +19900129,600,135,100,700 +19900129,600,135,100,650 +19900129,600,135,100,620 +19900129,600,135,100,600 +19900129,600,135,100,550 +19900129,600,135,100,500 +19900129,600,135,100,450 +19900129,600,135,100,400 +19900129,600,135,100,375 +19900129,600,135,100,350 +19900129,600,135,100,300 +19900129,600,135,100,250 +19900129,600,135,100,245 +19900129,600,135,100,225 +19900129,600,135,100,200 +19900129,600,135,100,175 +19900129,600,135,100,150 +19900129,600,135,100,125 +19900129,600,135,100,100 +19900129,600,135,100,70 +19900129,600,135,100,50 +19900129,600,135,100,30 +19900129,600,135,100,20 +19900129,600,135,100,10 +19900129,600,135,100,9 +19900129,600,135,100,7 +19900129,600,135,100,5 +19900129,600,135,100,3 +19900129,600,135,100,2 +19900129,600,135,100,1 +19900129,600,135,210,40 +19900129,600,138,100,1000 +19900129,600,138,100,975 +19900129,600,138,100,950 +19900129,600,138,100,925 +19900129,600,138,100,900 +19900129,600,138,100,875 +19900129,600,138,100,850 +19900129,600,138,100,825 +19900129,600,138,100,800 +19900129,600,138,100,775 +19900129,600,138,100,750 +19900129,600,138,100,740 +19900129,600,138,100,700 +19900129,600,138,100,650 +19900129,600,138,100,620 +19900129,600,138,100,600 +19900129,600,138,100,550 +19900129,600,138,100,500 +19900129,600,138,100,450 +19900129,600,138,100,400 +19900129,600,138,100,375 +19900129,600,138,100,350 +19900129,600,138,100,300 +19900129,600,138,100,250 +19900129,600,138,100,245 +19900129,600,138,100,225 +19900129,600,138,100,200 +19900129,600,138,100,175 +19900129,600,138,100,150 +19900129,600,138,100,125 +19900129,600,138,100,100 +19900129,600,138,100,70 +19900129,600,138,100,50 +19900129,600,138,100,30 +19900129,600,138,100,20 +19900129,600,138,100,10 +19900129,600,138,100,9 +19900129,600,138,100,7 +19900129,600,138,100,5 +19900129,600,138,100,3 +19900129,600,138,100,2 +19900129,600,138,100,1 +19900129,600,138,210,40 +19900129,600,131,109,1 +19900129,600,131,109,2 +19900129,600,131,109,3 +19900129,600,131,109,4 +19900129,600,131,109,5 +19900129,600,131,109,6 +19900129,600,131,109,7 +19900129,600,131,109,8 +19900129,600,131,109,9 +19900129,600,131,109,10 +19900129,600,132,109,1 +19900129,600,132,109,2 +19900129,600,132,109,3 +19900129,600,132,109,4 +19900129,600,132,109,5 +19900129,600,132,109,6 +19900129,600,132,109,7 +19900129,600,132,109,8 +19900129,600,132,109,9 +19900129,600,132,109,10 +19900129,600,130,109,1 +19900129,600,130,109,2 +19900129,600,130,109,3 +19900129,600,130,109,4 +19900129,600,130,109,5 +19900129,600,130,109,6 +19900129,600,130,109,7 +19900129,600,130,109,8 +19900129,600,130,109,9 +19900129,600,130,109,10 +19900129,600,157,109,1 +19900129,600,157,109,2 +19900129,600,157,109,3 +19900129,600,157,109,4 +19900129,600,157,109,5 +19900129,600,157,109,6 +19900129,600,157,109,7 +19900129,600,157,109,8 +19900129,600,157,109,9 +19900129,600,157,109,10 +19900129,600,54,109,1 +19900129,600,54,109,2 +19900129,600,54,109,3 +19900129,600,54,109,4 +19900129,600,54,109,5 +19900129,600,54,109,6 +19900129,600,54,109,7 +19900129,600,54,109,8 +19900129,600,54,109,9 +19900129,600,54,109,10 +19900129,600,135,109,1 +19900129,600,135,109,2 +19900129,600,135,109,3 +19900129,600,135,109,4 +19900129,600,135,109,5 +19900129,600,135,109,6 +19900129,600,135,109,7 +19900129,600,135,109,8 +19900129,600,135,109,9 +19900129,600,135,109,10 +19900129,600,134,109,1 +19900129,600,152,109,1 +19900129,600,131,100,850 +19900129,600,132,100,850 +19900129,600,134,100,1000 +19900129,600,152,100,1000 +19900129,900,131,100,850 +19900129,900,132,100,850 +19900129,900,134,100,1000 +19900129,900,152,100,1000 +19900129,1200,131,100,1000 +19900129,1200,131,100,975 +19900129,1200,131,100,950 +19900129,1200,131,100,925 +19900129,1200,131,100,900 +19900129,1200,131,100,875 +19900129,1200,131,100,825 +19900129,1200,131,100,800 +19900129,1200,131,100,775 +19900129,1200,131,100,750 +19900129,1200,131,100,740 +19900129,1200,131,100,700 +19900129,1200,131,100,650 +19900129,1200,131,100,620 +19900129,1200,131,100,600 +19900129,1200,131,100,550 +19900129,1200,131,100,500 +19900129,1200,131,100,450 +19900129,1200,131,100,400 +19900129,1200,131,100,375 +19900129,1200,131,100,350 +19900129,1200,131,100,300 +19900129,1200,131,100,250 +19900129,1200,131,100,245 +19900129,1200,131,100,225 +19900129,1200,131,100,200 +19900129,1200,131,100,175 +19900129,1200,131,100,150 +19900129,1200,131,100,125 +19900129,1200,131,100,100 +19900129,1200,131,100,70 +19900129,1200,131,100,50 +19900129,1200,131,100,30 +19900129,1200,131,100,20 +19900129,1200,131,100,10 +19900129,1200,131,100,9 +19900129,1200,131,100,7 +19900129,1200,131,100,5 +19900129,1200,131,100,3 +19900129,1200,131,100,2 +19900129,1200,131,100,1 +19900129,1200,131,210,40 +19900129,1200,132,100,1000 +19900129,1200,132,100,975 +19900129,1200,132,100,950 +19900129,1200,132,100,925 +19900129,1200,132,100,900 +19900129,1200,132,100,875 +19900129,1200,132,100,825 +19900129,1200,132,100,800 +19900129,1200,132,100,775 +19900129,1200,132,100,750 +19900129,1200,132,100,740 +19900129,1200,132,100,700 +19900129,1200,132,100,650 +19900129,1200,132,100,620 +19900129,1200,132,100,600 +19900129,1200,132,100,550 +19900129,1200,132,100,500 +19900129,1200,132,100,450 +19900129,1200,132,100,400 +19900129,1200,132,100,375 +19900129,1200,132,100,350 +19900129,1200,132,100,300 +19900129,1200,132,100,250 +19900129,1200,132,100,245 +19900129,1200,132,100,225 +19900129,1200,132,100,200 +19900129,1200,132,100,175 +19900129,1200,132,100,150 +19900129,1200,132,100,125 +19900129,1200,132,100,100 +19900129,1200,132,100,70 +19900129,1200,132,100,50 +19900129,1200,132,100,30 +19900129,1200,132,100,20 +19900129,1200,132,100,10 +19900129,1200,132,100,9 +19900129,1200,132,100,7 +19900129,1200,132,100,5 +19900129,1200,132,100,3 +19900129,1200,132,100,2 +19900129,1200,132,100,1 +19900129,1200,132,210,40 +19900129,1200,130,100,1000 +19900129,1200,130,100,975 +19900129,1200,130,100,950 +19900129,1200,130,100,925 +19900129,1200,130,100,900 +19900129,1200,130,100,875 +19900129,1200,130,100,850 +19900129,1200,130,100,825 +19900129,1200,130,100,800 +19900129,1200,130,100,775 +19900129,1200,130,100,750 +19900129,1200,130,100,740 +19900129,1200,130,100,700 +19900129,1200,130,100,650 +19900129,1200,130,100,620 +19900129,1200,130,100,600 +19900129,1200,130,100,550 +19900129,1200,130,100,500 +19900129,1200,130,100,450 +19900129,1200,130,100,400 +19900129,1200,130,100,375 +19900129,1200,130,100,350 +19900129,1200,130,100,300 +19900129,1200,130,100,250 +19900129,1200,130,100,245 +19900129,1200,130,100,225 +19900129,1200,130,100,200 +19900129,1200,130,100,175 +19900129,1200,130,100,150 +19900129,1200,130,100,125 +19900129,1200,130,100,100 +19900129,1200,130,100,70 +19900129,1200,130,100,50 +19900129,1200,130,100,30 +19900129,1200,130,100,20 +19900129,1200,130,100,10 +19900129,1200,130,100,9 +19900129,1200,130,100,7 +19900129,1200,130,100,5 +19900129,1200,130,100,3 +19900129,1200,130,100,2 +19900129,1200,130,100,1 +19900129,1200,130,210,40 +19900129,1200,129,100,1000 +19900129,1200,129,100,975 +19900129,1200,129,100,950 +19900129,1200,129,100,925 +19900129,1200,129,100,900 +19900129,1200,129,100,875 +19900129,1200,129,100,850 +19900129,1200,129,100,825 +19900129,1200,129,100,800 +19900129,1200,129,100,775 +19900129,1200,129,100,750 +19900129,1200,129,100,740 +19900129,1200,129,100,700 +19900129,1200,129,100,650 +19900129,1200,129,100,620 +19900129,1200,129,100,600 +19900129,1200,129,100,550 +19900129,1200,129,100,500 +19900129,1200,129,100,450 +19900129,1200,129,100,400 +19900129,1200,129,100,375 +19900129,1200,129,100,350 +19900129,1200,129,100,300 +19900129,1200,129,100,250 +19900129,1200,129,100,245 +19900129,1200,129,100,225 +19900129,1200,129,100,200 +19900129,1200,129,100,175 +19900129,1200,129,100,150 +19900129,1200,129,100,125 +19900129,1200,129,100,100 +19900129,1200,129,100,70 +19900129,1200,129,100,50 +19900129,1200,129,100,30 +19900129,1200,129,100,20 +19900129,1200,129,100,10 +19900129,1200,129,100,9 +19900129,1200,129,100,7 +19900129,1200,129,100,5 +19900129,1200,129,100,3 +19900129,1200,129,100,2 +19900129,1200,129,100,1 +19900129,1200,129,210,40 +19900129,1200,157,100,1000 +19900129,1200,157,100,975 +19900129,1200,157,100,950 +19900129,1200,157,100,925 +19900129,1200,157,100,900 +19900129,1200,157,100,875 +19900129,1200,157,100,850 +19900129,1200,157,100,825 +19900129,1200,157,100,800 +19900129,1200,157,100,775 +19900129,1200,157,100,750 +19900129,1200,157,100,740 +19900129,1200,157,100,700 +19900129,1200,157,100,650 +19900129,1200,157,100,620 +19900129,1200,157,100,600 +19900129,1200,157,100,550 +19900129,1200,157,100,500 +19900129,1200,157,100,450 +19900129,1200,157,100,400 +19900129,1200,157,100,375 +19900129,1200,157,100,350 +19900129,1200,157,100,300 +19900129,1200,157,100,250 +19900129,1200,157,100,245 +19900129,1200,157,100,225 +19900129,1200,157,100,200 +19900129,1200,157,100,175 +19900129,1200,157,100,150 +19900129,1200,157,100,125 +19900129,1200,157,100,100 +19900129,1200,157,100,70 +19900129,1200,157,100,50 +19900129,1200,157,100,30 +19900129,1200,157,100,20 +19900129,1200,157,100,10 +19900129,1200,157,100,9 +19900129,1200,157,100,7 +19900129,1200,157,100,5 +19900129,1200,157,100,3 +19900129,1200,157,100,2 +19900129,1200,157,100,1 +19900129,1200,157,210,40 +19900129,1200,135,100,1000 +19900129,1200,135,100,975 +19900129,1200,135,100,950 +19900129,1200,135,100,925 +19900129,1200,135,100,900 +19900129,1200,135,100,875 +19900129,1200,135,100,850 +19900129,1200,135,100,825 +19900129,1200,135,100,800 +19900129,1200,135,100,775 +19900129,1200,135,100,750 +19900129,1200,135,100,740 +19900129,1200,135,100,700 +19900129,1200,135,100,650 +19900129,1200,135,100,620 +19900129,1200,135,100,600 +19900129,1200,135,100,550 +19900129,1200,135,100,500 +19900129,1200,135,100,450 +19900129,1200,135,100,400 +19900129,1200,135,100,375 +19900129,1200,135,100,350 +19900129,1200,135,100,300 +19900129,1200,135,100,250 +19900129,1200,135,100,245 +19900129,1200,135,100,225 +19900129,1200,135,100,200 +19900129,1200,135,100,175 +19900129,1200,135,100,150 +19900129,1200,135,100,125 +19900129,1200,135,100,100 +19900129,1200,135,100,70 +19900129,1200,135,100,50 +19900129,1200,135,100,30 +19900129,1200,135,100,20 +19900129,1200,135,100,10 +19900129,1200,135,100,9 +19900129,1200,135,100,7 +19900129,1200,135,100,5 +19900129,1200,135,100,3 +19900129,1200,135,100,2 +19900129,1200,135,100,1 +19900129,1200,135,210,40 +19900129,1200,138,100,1000 +19900129,1200,138,100,975 +19900129,1200,138,100,950 +19900129,1200,138,100,925 +19900129,1200,138,100,900 +19900129,1200,138,100,875 +19900129,1200,138,100,850 +19900129,1200,138,100,825 +19900129,1200,138,100,800 +19900129,1200,138,100,775 +19900129,1200,138,100,750 +19900129,1200,138,100,740 +19900129,1200,138,100,700 +19900129,1200,138,100,650 +19900129,1200,138,100,620 +19900129,1200,138,100,600 +19900129,1200,138,100,550 +19900129,1200,138,100,500 +19900129,1200,138,100,450 +19900129,1200,138,100,400 +19900129,1200,138,100,375 +19900129,1200,138,100,350 +19900129,1200,138,100,300 +19900129,1200,138,100,250 +19900129,1200,138,100,245 +19900129,1200,138,100,225 +19900129,1200,138,100,200 +19900129,1200,138,100,175 +19900129,1200,138,100,150 +19900129,1200,138,100,125 +19900129,1200,138,100,100 +19900129,1200,138,100,70 +19900129,1200,138,100,50 +19900129,1200,138,100,30 +19900129,1200,138,100,20 +19900129,1200,138,100,10 +19900129,1200,138,100,9 +19900129,1200,138,100,7 +19900129,1200,138,100,5 +19900129,1200,138,100,3 +19900129,1200,138,100,2 +19900129,1200,138,100,1 +19900129,1200,138,210,40 +19900129,1200,131,109,1 +19900129,1200,131,109,2 +19900129,1200,131,109,3 +19900129,1200,131,109,4 +19900129,1200,131,109,5 +19900129,1200,131,109,6 +19900129,1200,131,109,7 +19900129,1200,131,109,8 +19900129,1200,131,109,9 +19900129,1200,131,109,10 +19900129,1200,132,109,1 +19900129,1200,132,109,2 +19900129,1200,132,109,3 +19900129,1200,132,109,4 +19900129,1200,132,109,5 +19900129,1200,132,109,6 +19900129,1200,132,109,7 +19900129,1200,132,109,8 +19900129,1200,132,109,9 +19900129,1200,132,109,10 +19900129,1200,130,109,1 +19900129,1200,130,109,2 +19900129,1200,130,109,3 +19900129,1200,130,109,4 +19900129,1200,130,109,5 +19900129,1200,130,109,6 +19900129,1200,130,109,7 +19900129,1200,130,109,8 +19900129,1200,130,109,9 +19900129,1200,130,109,10 +19900129,1200,157,109,1 +19900129,1200,157,109,2 +19900129,1200,157,109,3 +19900129,1200,157,109,4 +19900129,1200,157,109,5 +19900129,1200,157,109,6 +19900129,1200,157,109,7 +19900129,1200,157,109,8 +19900129,1200,157,109,9 +19900129,1200,157,109,10 +19900129,1200,54,109,1 +19900129,1200,54,109,2 +19900129,1200,54,109,3 +19900129,1200,54,109,4 +19900129,1200,54,109,5 +19900129,1200,54,109,6 +19900129,1200,54,109,7 +19900129,1200,54,109,8 +19900129,1200,54,109,9 +19900129,1200,54,109,10 +19900129,1200,135,109,1 +19900129,1200,135,109,2 +19900129,1200,135,109,3 +19900129,1200,135,109,4 +19900129,1200,135,109,5 +19900129,1200,135,109,6 +19900129,1200,135,109,7 +19900129,1200,135,109,8 +19900129,1200,135,109,9 +19900129,1200,135,109,10 +19900129,1200,134,109,1 +19900129,1200,152,109,1 +19900129,1200,131,100,850 +19900129,1200,132,100,850 +19900129,1200,134,100,1000 +19900129,1200,152,100,1000 +19900129,1500,131,100,850 +19900129,1500,132,100,850 +19900129,1500,134,100,1000 +19900129,1500,152,100,1000 +19900129,1800,131,100,1000 +19900129,1800,131,100,975 +19900129,1800,131,100,950 +19900129,1800,131,100,925 +19900129,1800,131,100,900 +19900129,1800,131,100,875 +19900129,1800,131,100,825 +19900129,1800,131,100,800 +19900129,1800,131,100,775 +19900129,1800,131,100,750 +19900129,1800,131,100,740 +19900129,1800,131,100,700 +19900129,1800,131,100,650 +19900129,1800,131,100,620 +19900129,1800,131,100,600 +19900129,1800,131,100,550 +19900129,1800,131,100,500 +19900129,1800,131,100,450 +19900129,1800,131,100,400 +19900129,1800,131,100,375 +19900129,1800,131,100,350 +19900129,1800,131,100,300 +19900129,1800,131,100,250 +19900129,1800,131,100,245 +19900129,1800,131,100,225 +19900129,1800,131,100,200 +19900129,1800,131,100,175 +19900129,1800,131,100,150 +19900129,1800,131,100,125 +19900129,1800,131,100,100 +19900129,1800,131,100,70 +19900129,1800,131,100,50 +19900129,1800,131,100,30 +19900129,1800,131,100,20 +19900129,1800,131,100,10 +19900129,1800,131,100,9 +19900129,1800,131,100,7 +19900129,1800,131,100,5 +19900129,1800,131,100,3 +19900129,1800,131,100,2 +19900129,1800,131,100,1 +19900129,1800,131,210,40 +19900129,1800,132,100,1000 +19900129,1800,132,100,975 +19900129,1800,132,100,950 +19900129,1800,132,100,925 +19900129,1800,132,100,900 +19900129,1800,132,100,875 +19900129,1800,132,100,825 +19900129,1800,132,100,800 +19900129,1800,132,100,775 +19900129,1800,132,100,750 +19900129,1800,132,100,740 +19900129,1800,132,100,700 +19900129,1800,132,100,650 +19900129,1800,132,100,620 +19900129,1800,132,100,600 +19900129,1800,132,100,550 +19900129,1800,132,100,500 +19900129,1800,132,100,450 +19900129,1800,132,100,400 +19900129,1800,132,100,375 +19900129,1800,132,100,350 +19900129,1800,132,100,300 +19900129,1800,132,100,250 +19900129,1800,132,100,245 +19900129,1800,132,100,225 +19900129,1800,132,100,200 +19900129,1800,132,100,175 +19900129,1800,132,100,150 +19900129,1800,132,100,125 +19900129,1800,132,100,100 +19900129,1800,132,100,70 +19900129,1800,132,100,50 +19900129,1800,132,100,30 +19900129,1800,132,100,20 +19900129,1800,132,100,10 +19900129,1800,132,100,9 +19900129,1800,132,100,7 +19900129,1800,132,100,5 +19900129,1800,132,100,3 +19900129,1800,132,100,2 +19900129,1800,132,100,1 +19900129,1800,132,210,40 +19900129,1800,130,100,1000 +19900129,1800,130,100,975 +19900129,1800,130,100,950 +19900129,1800,130,100,925 +19900129,1800,130,100,900 +19900129,1800,130,100,875 +19900129,1800,130,100,850 +19900129,1800,130,100,825 +19900129,1800,130,100,800 +19900129,1800,130,100,775 +19900129,1800,130,100,750 +19900129,1800,130,100,740 +19900129,1800,130,100,700 +19900129,1800,130,100,650 +19900129,1800,130,100,620 +19900129,1800,130,100,600 +19900129,1800,130,100,550 +19900129,1800,130,100,500 +19900129,1800,130,100,450 +19900129,1800,130,100,400 +19900129,1800,130,100,375 +19900129,1800,130,100,350 +19900129,1800,130,100,300 +19900129,1800,130,100,250 +19900129,1800,130,100,245 +19900129,1800,130,100,225 +19900129,1800,130,100,200 +19900129,1800,130,100,175 +19900129,1800,130,100,150 +19900129,1800,130,100,125 +19900129,1800,130,100,100 +19900129,1800,130,100,70 +19900129,1800,130,100,50 +19900129,1800,130,100,30 +19900129,1800,130,100,20 +19900129,1800,130,100,10 +19900129,1800,130,100,9 +19900129,1800,130,100,7 +19900129,1800,130,100,5 +19900129,1800,130,100,3 +19900129,1800,130,100,2 +19900129,1800,130,100,1 +19900129,1800,130,210,40 +19900129,1800,129,100,1000 +19900129,1800,129,100,975 +19900129,1800,129,100,950 +19900129,1800,129,100,925 +19900129,1800,129,100,900 +19900129,1800,129,100,875 +19900129,1800,129,100,850 +19900129,1800,129,100,825 +19900129,1800,129,100,800 +19900129,1800,129,100,775 +19900129,1800,129,100,750 +19900129,1800,129,100,740 +19900129,1800,129,100,700 +19900129,1800,129,100,650 +19900129,1800,129,100,620 +19900129,1800,129,100,600 +19900129,1800,129,100,550 +19900129,1800,129,100,500 +19900129,1800,129,100,450 +19900129,1800,129,100,400 +19900129,1800,129,100,375 +19900129,1800,129,100,350 +19900129,1800,129,100,300 +19900129,1800,129,100,250 +19900129,1800,129,100,245 +19900129,1800,129,100,225 +19900129,1800,129,100,200 +19900129,1800,129,100,175 +19900129,1800,129,100,150 +19900129,1800,129,100,125 +19900129,1800,129,100,100 +19900129,1800,129,100,70 +19900129,1800,129,100,50 +19900129,1800,129,100,30 +19900129,1800,129,100,20 +19900129,1800,129,100,10 +19900129,1800,129,100,9 +19900129,1800,129,100,7 +19900129,1800,129,100,5 +19900129,1800,129,100,3 +19900129,1800,129,100,2 +19900129,1800,129,100,1 +19900129,1800,129,210,40 +19900129,1800,157,100,1000 +19900129,1800,157,100,975 +19900129,1800,157,100,950 +19900129,1800,157,100,925 +19900129,1800,157,100,900 +19900129,1800,157,100,875 +19900129,1800,157,100,850 +19900129,1800,157,100,825 +19900129,1800,157,100,800 +19900129,1800,157,100,775 +19900129,1800,157,100,750 +19900129,1800,157,100,740 +19900129,1800,157,100,700 +19900129,1800,157,100,650 +19900129,1800,157,100,620 +19900129,1800,157,100,600 +19900129,1800,157,100,550 +19900129,1800,157,100,500 +19900129,1800,157,100,450 +19900129,1800,157,100,400 +19900129,1800,157,100,375 +19900129,1800,157,100,350 +19900129,1800,157,100,300 +19900129,1800,157,100,250 +19900129,1800,157,100,245 +19900129,1800,157,100,225 +19900129,1800,157,100,200 +19900129,1800,157,100,175 +19900129,1800,157,100,150 +19900129,1800,157,100,125 +19900129,1800,157,100,100 +19900129,1800,157,100,70 +19900129,1800,157,100,50 +19900129,1800,157,100,30 +19900129,1800,157,100,20 +19900129,1800,157,100,10 +19900129,1800,157,100,9 +19900129,1800,157,100,7 +19900129,1800,157,100,5 +19900129,1800,157,100,3 +19900129,1800,157,100,2 +19900129,1800,157,100,1 +19900129,1800,157,210,40 +19900129,1800,135,100,1000 +19900129,1800,135,100,975 +19900129,1800,135,100,950 +19900129,1800,135,100,925 +19900129,1800,135,100,900 +19900129,1800,135,100,875 +19900129,1800,135,100,850 +19900129,1800,135,100,825 +19900129,1800,135,100,800 +19900129,1800,135,100,775 +19900129,1800,135,100,750 +19900129,1800,135,100,740 +19900129,1800,135,100,700 +19900129,1800,135,100,650 +19900129,1800,135,100,620 +19900129,1800,135,100,600 +19900129,1800,135,100,550 +19900129,1800,135,100,500 +19900129,1800,135,100,450 +19900129,1800,135,100,400 +19900129,1800,135,100,375 +19900129,1800,135,100,350 +19900129,1800,135,100,300 +19900129,1800,135,100,250 +19900129,1800,135,100,245 +19900129,1800,135,100,225 +19900129,1800,135,100,200 +19900129,1800,135,100,175 +19900129,1800,135,100,150 +19900129,1800,135,100,125 +19900129,1800,135,100,100 +19900129,1800,135,100,70 +19900129,1800,135,100,50 +19900129,1800,135,100,30 +19900129,1800,135,100,20 +19900129,1800,135,100,10 +19900129,1800,135,100,9 +19900129,1800,135,100,7 +19900129,1800,135,100,5 +19900129,1800,135,100,3 +19900129,1800,135,100,2 +19900129,1800,135,100,1 +19900129,1800,135,210,40 +19900129,1800,138,100,1000 +19900129,1800,138,100,975 +19900129,1800,138,100,950 +19900129,1800,138,100,925 +19900129,1800,138,100,900 +19900129,1800,138,100,875 +19900129,1800,138,100,850 +19900129,1800,138,100,825 +19900129,1800,138,100,800 +19900129,1800,138,100,775 +19900129,1800,138,100,750 +19900129,1800,138,100,740 +19900129,1800,138,100,700 +19900129,1800,138,100,650 +19900129,1800,138,100,620 +19900129,1800,138,100,600 +19900129,1800,138,100,550 +19900129,1800,138,100,500 +19900129,1800,138,100,450 +19900129,1800,138,100,400 +19900129,1800,138,100,375 +19900129,1800,138,100,350 +19900129,1800,138,100,300 +19900129,1800,138,100,250 +19900129,1800,138,100,245 +19900129,1800,138,100,225 +19900129,1800,138,100,200 +19900129,1800,138,100,175 +19900129,1800,138,100,150 +19900129,1800,138,100,125 +19900129,1800,138,100,100 +19900129,1800,138,100,70 +19900129,1800,138,100,50 +19900129,1800,138,100,30 +19900129,1800,138,100,20 +19900129,1800,138,100,10 +19900129,1800,138,100,9 +19900129,1800,138,100,7 +19900129,1800,138,100,5 +19900129,1800,138,100,3 +19900129,1800,138,100,2 +19900129,1800,138,100,1 +19900129,1800,138,210,40 +19900129,1800,131,109,1 +19900129,1800,131,109,2 +19900129,1800,131,109,3 +19900129,1800,131,109,4 +19900129,1800,131,109,5 +19900129,1800,131,109,6 +19900129,1800,131,109,7 +19900129,1800,131,109,8 +19900129,1800,131,109,9 +19900129,1800,131,109,10 +19900129,1800,132,109,1 +19900129,1800,132,109,2 +19900129,1800,132,109,3 +19900129,1800,132,109,4 +19900129,1800,132,109,5 +19900129,1800,132,109,6 +19900129,1800,132,109,7 +19900129,1800,132,109,8 +19900129,1800,132,109,9 +19900129,1800,132,109,10 +19900129,1800,130,109,1 +19900129,1800,130,109,2 +19900129,1800,130,109,3 +19900129,1800,130,109,4 +19900129,1800,130,109,5 +19900129,1800,130,109,6 +19900129,1800,130,109,7 +19900129,1800,130,109,8 +19900129,1800,130,109,9 +19900129,1800,130,109,10 +19900129,1800,157,109,1 +19900129,1800,157,109,2 +19900129,1800,157,109,3 +19900129,1800,157,109,4 +19900129,1800,157,109,5 +19900129,1800,157,109,6 +19900129,1800,157,109,7 +19900129,1800,157,109,8 +19900129,1800,157,109,9 +19900129,1800,157,109,10 +19900129,1800,54,109,1 +19900129,1800,54,109,2 +19900129,1800,54,109,3 +19900129,1800,54,109,4 +19900129,1800,54,109,5 +19900129,1800,54,109,6 +19900129,1800,54,109,7 +19900129,1800,54,109,8 +19900129,1800,54,109,9 +19900129,1800,54,109,10 +19900129,1800,135,109,1 +19900129,1800,135,109,2 +19900129,1800,135,109,3 +19900129,1800,135,109,4 +19900129,1800,135,109,5 +19900129,1800,135,109,6 +19900129,1800,135,109,7 +19900129,1800,135,109,8 +19900129,1800,135,109,9 +19900129,1800,135,109,10 +19900129,1800,134,109,1 +19900129,1800,152,109,1 +19900129,1800,131,100,850 +19900129,1800,132,100,850 +19900129,1800,134,100,1000 +19900129,1800,152,100,1000 +19900129,2100,131,100,850 +19900129,2100,132,100,850 +19900129,2100,134,100,1000 +19900129,2100,152,100,1000 +19900130,0,131,100,1000 +19900130,0,131,100,975 +19900130,0,131,100,950 +19900130,0,131,100,925 +19900130,0,131,100,900 +19900130,0,131,100,875 +19900130,0,131,100,825 +19900130,0,131,100,800 +19900130,0,131,100,775 +19900130,0,131,100,750 +19900130,0,131,100,740 +19900130,0,131,100,700 +19900130,0,131,100,650 +19900130,0,131,100,620 +19900130,0,131,100,600 +19900130,0,131,100,550 +19900130,0,131,100,500 +19900130,0,131,100,450 +19900130,0,131,100,400 +19900130,0,131,100,375 +19900130,0,131,100,350 +19900130,0,131,100,300 +19900130,0,131,100,250 +19900130,0,131,100,245 +19900130,0,131,100,225 +19900130,0,131,100,200 +19900130,0,131,100,175 +19900130,0,131,100,150 +19900130,0,131,100,125 +19900130,0,131,100,100 +19900130,0,131,100,70 +19900130,0,131,100,50 +19900130,0,131,100,30 +19900130,0,131,100,20 +19900130,0,131,100,10 +19900130,0,131,100,9 +19900130,0,131,100,7 +19900130,0,131,100,5 +19900130,0,131,100,3 +19900130,0,131,100,2 +19900130,0,131,100,1 +19900130,0,131,210,40 +19900130,0,132,100,1000 +19900130,0,132,100,975 +19900130,0,132,100,950 +19900130,0,132,100,925 +19900130,0,132,100,900 +19900130,0,132,100,875 +19900130,0,132,100,825 +19900130,0,132,100,800 +19900130,0,132,100,775 +19900130,0,132,100,750 +19900130,0,132,100,740 +19900130,0,132,100,700 +19900130,0,132,100,650 +19900130,0,132,100,620 +19900130,0,132,100,600 +19900130,0,132,100,550 +19900130,0,132,100,500 +19900130,0,132,100,450 +19900130,0,132,100,400 +19900130,0,132,100,375 +19900130,0,132,100,350 +19900130,0,132,100,300 +19900130,0,132,100,250 +19900130,0,132,100,245 +19900130,0,132,100,225 +19900130,0,132,100,200 +19900130,0,132,100,175 +19900130,0,132,100,150 +19900130,0,132,100,125 +19900130,0,132,100,100 +19900130,0,132,100,70 +19900130,0,132,100,50 +19900130,0,132,100,30 +19900130,0,132,100,20 +19900130,0,132,100,10 +19900130,0,132,100,9 +19900130,0,132,100,7 +19900130,0,132,100,5 +19900130,0,132,100,3 +19900130,0,132,100,2 +19900130,0,132,100,1 +19900130,0,132,210,40 +19900130,0,130,100,1000 +19900130,0,130,100,975 +19900130,0,130,100,950 +19900130,0,130,100,925 +19900130,0,130,100,900 +19900130,0,130,100,875 +19900130,0,130,100,850 +19900130,0,130,100,825 +19900130,0,130,100,800 +19900130,0,130,100,775 +19900130,0,130,100,750 +19900130,0,130,100,740 +19900130,0,130,100,700 +19900130,0,130,100,650 +19900130,0,130,100,620 +19900130,0,130,100,600 +19900130,0,130,100,550 +19900130,0,130,100,500 +19900130,0,130,100,450 +19900130,0,130,100,400 +19900130,0,130,100,375 +19900130,0,130,100,350 +19900130,0,130,100,300 +19900130,0,130,100,250 +19900130,0,130,100,245 +19900130,0,130,100,225 +19900130,0,130,100,200 +19900130,0,130,100,175 +19900130,0,130,100,150 +19900130,0,130,100,125 +19900130,0,130,100,100 +19900130,0,130,100,70 +19900130,0,130,100,50 +19900130,0,130,100,30 +19900130,0,130,100,20 +19900130,0,130,100,10 +19900130,0,130,100,9 +19900130,0,130,100,7 +19900130,0,130,100,5 +19900130,0,130,100,3 +19900130,0,130,100,2 +19900130,0,130,100,1 +19900130,0,130,210,40 +19900130,0,129,100,1000 +19900130,0,129,100,975 +19900130,0,129,100,950 +19900130,0,129,100,925 +19900130,0,129,100,900 +19900130,0,129,100,875 +19900130,0,129,100,850 +19900130,0,129,100,825 +19900130,0,129,100,800 +19900130,0,129,100,775 +19900130,0,129,100,750 +19900130,0,129,100,740 +19900130,0,129,100,700 +19900130,0,129,100,650 +19900130,0,129,100,620 +19900130,0,129,100,600 +19900130,0,129,100,550 +19900130,0,129,100,500 +19900130,0,129,100,450 +19900130,0,129,100,400 +19900130,0,129,100,375 +19900130,0,129,100,350 +19900130,0,129,100,300 +19900130,0,129,100,250 +19900130,0,129,100,245 +19900130,0,129,100,225 +19900130,0,129,100,200 +19900130,0,129,100,175 +19900130,0,129,100,150 +19900130,0,129,100,125 +19900130,0,129,100,100 +19900130,0,129,100,70 +19900130,0,129,100,50 +19900130,0,129,100,30 +19900130,0,129,100,20 +19900130,0,129,100,10 +19900130,0,129,100,9 +19900130,0,129,100,7 +19900130,0,129,100,5 +19900130,0,129,100,3 +19900130,0,129,100,2 +19900130,0,129,100,1 +19900130,0,129,210,40 +19900130,0,157,100,1000 +19900130,0,157,100,975 +19900130,0,157,100,950 +19900130,0,157,100,925 +19900130,0,157,100,900 +19900130,0,157,100,875 +19900130,0,157,100,850 +19900130,0,157,100,825 +19900130,0,157,100,800 +19900130,0,157,100,775 +19900130,0,157,100,750 +19900130,0,157,100,740 +19900130,0,157,100,700 +19900130,0,157,100,650 +19900130,0,157,100,620 +19900130,0,157,100,600 +19900130,0,157,100,550 +19900130,0,157,100,500 +19900130,0,157,100,450 +19900130,0,157,100,400 +19900130,0,157,100,375 +19900130,0,157,100,350 +19900130,0,157,100,300 +19900130,0,157,100,250 +19900130,0,157,100,245 +19900130,0,157,100,225 +19900130,0,157,100,200 +19900130,0,157,100,175 +19900130,0,157,100,150 +19900130,0,157,100,125 +19900130,0,157,100,100 +19900130,0,157,100,70 +19900130,0,157,100,50 +19900130,0,157,100,30 +19900130,0,157,100,20 +19900130,0,157,100,10 +19900130,0,157,100,9 +19900130,0,157,100,7 +19900130,0,157,100,5 +19900130,0,157,100,3 +19900130,0,157,100,2 +19900130,0,157,100,1 +19900130,0,157,210,40 +19900130,0,135,100,1000 +19900130,0,135,100,975 +19900130,0,135,100,950 +19900130,0,135,100,925 +19900130,0,135,100,900 +19900130,0,135,100,875 +19900130,0,135,100,850 +19900130,0,135,100,825 +19900130,0,135,100,800 +19900130,0,135,100,775 +19900130,0,135,100,750 +19900130,0,135,100,740 +19900130,0,135,100,700 +19900130,0,135,100,650 +19900130,0,135,100,620 +19900130,0,135,100,600 +19900130,0,135,100,550 +19900130,0,135,100,500 +19900130,0,135,100,450 +19900130,0,135,100,400 +19900130,0,135,100,375 +19900130,0,135,100,350 +19900130,0,135,100,300 +19900130,0,135,100,250 +19900130,0,135,100,245 +19900130,0,135,100,225 +19900130,0,135,100,200 +19900130,0,135,100,175 +19900130,0,135,100,150 +19900130,0,135,100,125 +19900130,0,135,100,100 +19900130,0,135,100,70 +19900130,0,135,100,50 +19900130,0,135,100,30 +19900130,0,135,100,20 +19900130,0,135,100,10 +19900130,0,135,100,9 +19900130,0,135,100,7 +19900130,0,135,100,5 +19900130,0,135,100,3 +19900130,0,135,100,2 +19900130,0,135,100,1 +19900130,0,135,210,40 +19900130,0,138,100,1000 +19900130,0,138,100,975 +19900130,0,138,100,950 +19900130,0,138,100,925 +19900130,0,138,100,900 +19900130,0,138,100,875 +19900130,0,138,100,850 +19900130,0,138,100,825 +19900130,0,138,100,800 +19900130,0,138,100,775 +19900130,0,138,100,750 +19900130,0,138,100,740 +19900130,0,138,100,700 +19900130,0,138,100,650 +19900130,0,138,100,620 +19900130,0,138,100,600 +19900130,0,138,100,550 +19900130,0,138,100,500 +19900130,0,138,100,450 +19900130,0,138,100,400 +19900130,0,138,100,375 +19900130,0,138,100,350 +19900130,0,138,100,300 +19900130,0,138,100,250 +19900130,0,138,100,245 +19900130,0,138,100,225 +19900130,0,138,100,200 +19900130,0,138,100,175 +19900130,0,138,100,150 +19900130,0,138,100,125 +19900130,0,138,100,100 +19900130,0,138,100,70 +19900130,0,138,100,50 +19900130,0,138,100,30 +19900130,0,138,100,20 +19900130,0,138,100,10 +19900130,0,138,100,9 +19900130,0,138,100,7 +19900130,0,138,100,5 +19900130,0,138,100,3 +19900130,0,138,100,2 +19900130,0,138,100,1 +19900130,0,138,210,40 +19900130,0,131,109,1 +19900130,0,131,109,2 +19900130,0,131,109,3 +19900130,0,131,109,4 +19900130,0,131,109,5 +19900130,0,131,109,6 +19900130,0,131,109,7 +19900130,0,131,109,8 +19900130,0,131,109,9 +19900130,0,131,109,10 +19900130,0,132,109,1 +19900130,0,132,109,2 +19900130,0,132,109,3 +19900130,0,132,109,4 +19900130,0,132,109,5 +19900130,0,132,109,6 +19900130,0,132,109,7 +19900130,0,132,109,8 +19900130,0,132,109,9 +19900130,0,132,109,10 +19900130,0,130,109,1 +19900130,0,130,109,2 +19900130,0,130,109,3 +19900130,0,130,109,4 +19900130,0,130,109,5 +19900130,0,130,109,6 +19900130,0,130,109,7 +19900130,0,130,109,8 +19900130,0,130,109,9 +19900130,0,130,109,10 +19900130,0,157,109,1 +19900130,0,157,109,2 +19900130,0,157,109,3 +19900130,0,157,109,4 +19900130,0,157,109,5 +19900130,0,157,109,6 +19900130,0,157,109,7 +19900130,0,157,109,8 +19900130,0,157,109,9 +19900130,0,157,109,10 +19900130,0,54,109,1 +19900130,0,54,109,2 +19900130,0,54,109,3 +19900130,0,54,109,4 +19900130,0,54,109,5 +19900130,0,54,109,6 +19900130,0,54,109,7 +19900130,0,54,109,8 +19900130,0,54,109,9 +19900130,0,54,109,10 +19900130,0,135,109,1 +19900130,0,135,109,2 +19900130,0,135,109,3 +19900130,0,135,109,4 +19900130,0,135,109,5 +19900130,0,135,109,6 +19900130,0,135,109,7 +19900130,0,135,109,8 +19900130,0,135,109,9 +19900130,0,135,109,10 +19900130,0,134,109,1 +19900130,0,152,109,1 +19900130,0,131,100,850 +19900130,0,132,100,850 +19900130,0,134,100,1000 +19900130,0,152,100,1000 +19900130,300,131,100,850 +19900130,300,132,100,850 +19900130,300,134,100,1000 +19900130,300,152,100,1000 +19900130,600,131,100,1000 +19900130,600,131,100,975 +19900130,600,131,100,950 +19900130,600,131,100,925 +19900130,600,131,100,900 +19900130,600,131,100,875 +19900130,600,131,100,825 +19900130,600,131,100,800 +19900130,600,131,100,775 +19900130,600,131,100,750 +19900130,600,131,100,740 +19900130,600,131,100,700 +19900130,600,131,100,650 +19900130,600,131,100,620 +19900130,600,131,100,600 +19900130,600,131,100,550 +19900130,600,131,100,500 +19900130,600,131,100,450 +19900130,600,131,100,400 +19900130,600,131,100,375 +19900130,600,131,100,350 +19900130,600,131,100,300 +19900130,600,131,100,250 +19900130,600,131,100,245 +19900130,600,131,100,225 +19900130,600,131,100,200 +19900130,600,131,100,175 +19900130,600,131,100,150 +19900130,600,131,100,125 +19900130,600,131,100,100 +19900130,600,131,100,70 +19900130,600,131,100,50 +19900130,600,131,100,30 +19900130,600,131,100,20 +19900130,600,131,100,10 +19900130,600,131,100,9 +19900130,600,131,100,7 +19900130,600,131,100,5 +19900130,600,131,100,3 +19900130,600,131,100,2 +19900130,600,131,100,1 +19900130,600,131,210,40 +19900130,600,132,100,1000 +19900130,600,132,100,975 +19900130,600,132,100,950 +19900130,600,132,100,925 +19900130,600,132,100,900 +19900130,600,132,100,875 +19900130,600,132,100,825 +19900130,600,132,100,800 +19900130,600,132,100,775 +19900130,600,132,100,750 +19900130,600,132,100,740 +19900130,600,132,100,700 +19900130,600,132,100,650 +19900130,600,132,100,620 +19900130,600,132,100,600 +19900130,600,132,100,550 +19900130,600,132,100,500 +19900130,600,132,100,450 +19900130,600,132,100,400 +19900130,600,132,100,375 +19900130,600,132,100,350 +19900130,600,132,100,300 +19900130,600,132,100,250 +19900130,600,132,100,245 +19900130,600,132,100,225 +19900130,600,132,100,200 +19900130,600,132,100,175 +19900130,600,132,100,150 +19900130,600,132,100,125 +19900130,600,132,100,100 +19900130,600,132,100,70 +19900130,600,132,100,50 +19900130,600,132,100,30 +19900130,600,132,100,20 +19900130,600,132,100,10 +19900130,600,132,100,9 +19900130,600,132,100,7 +19900130,600,132,100,5 +19900130,600,132,100,3 +19900130,600,132,100,2 +19900130,600,132,100,1 +19900130,600,132,210,40 +19900130,600,130,100,1000 +19900130,600,130,100,975 +19900130,600,130,100,950 +19900130,600,130,100,925 +19900130,600,130,100,900 +19900130,600,130,100,875 +19900130,600,130,100,850 +19900130,600,130,100,825 +19900130,600,130,100,800 +19900130,600,130,100,775 +19900130,600,130,100,750 +19900130,600,130,100,740 +19900130,600,130,100,700 +19900130,600,130,100,650 +19900130,600,130,100,620 +19900130,600,130,100,600 +19900130,600,130,100,550 +19900130,600,130,100,500 +19900130,600,130,100,450 +19900130,600,130,100,400 +19900130,600,130,100,375 +19900130,600,130,100,350 +19900130,600,130,100,300 +19900130,600,130,100,250 +19900130,600,130,100,245 +19900130,600,130,100,225 +19900130,600,130,100,200 +19900130,600,130,100,175 +19900130,600,130,100,150 +19900130,600,130,100,125 +19900130,600,130,100,100 +19900130,600,130,100,70 +19900130,600,130,100,50 +19900130,600,130,100,30 +19900130,600,130,100,20 +19900130,600,130,100,10 +19900130,600,130,100,9 +19900130,600,130,100,7 +19900130,600,130,100,5 +19900130,600,130,100,3 +19900130,600,130,100,2 +19900130,600,130,100,1 +19900130,600,130,210,40 +19900130,600,129,100,1000 +19900130,600,129,100,975 +19900130,600,129,100,950 +19900130,600,129,100,925 +19900130,600,129,100,900 +19900130,600,129,100,875 +19900130,600,129,100,850 +19900130,600,129,100,825 +19900130,600,129,100,800 +19900130,600,129,100,775 +19900130,600,129,100,750 +19900130,600,129,100,740 +19900130,600,129,100,700 +19900130,600,129,100,650 +19900130,600,129,100,620 +19900130,600,129,100,600 +19900130,600,129,100,550 +19900130,600,129,100,500 +19900130,600,129,100,450 +19900130,600,129,100,400 +19900130,600,129,100,375 +19900130,600,129,100,350 +19900130,600,129,100,300 +19900130,600,129,100,250 +19900130,600,129,100,245 +19900130,600,129,100,225 +19900130,600,129,100,200 +19900130,600,129,100,175 +19900130,600,129,100,150 +19900130,600,129,100,125 +19900130,600,129,100,100 +19900130,600,129,100,70 +19900130,600,129,100,50 +19900130,600,129,100,30 +19900130,600,129,100,20 +19900130,600,129,100,10 +19900130,600,129,100,9 +19900130,600,129,100,7 +19900130,600,129,100,5 +19900130,600,129,100,3 +19900130,600,129,100,2 +19900130,600,129,100,1 +19900130,600,129,210,40 +19900130,600,157,100,1000 +19900130,600,157,100,975 +19900130,600,157,100,950 +19900130,600,157,100,925 +19900130,600,157,100,900 +19900130,600,157,100,875 +19900130,600,157,100,850 +19900130,600,157,100,825 +19900130,600,157,100,800 +19900130,600,157,100,775 +19900130,600,157,100,750 +19900130,600,157,100,740 +19900130,600,157,100,700 +19900130,600,157,100,650 +19900130,600,157,100,620 +19900130,600,157,100,600 +19900130,600,157,100,550 +19900130,600,157,100,500 +19900130,600,157,100,450 +19900130,600,157,100,400 +19900130,600,157,100,375 +19900130,600,157,100,350 +19900130,600,157,100,300 +19900130,600,157,100,250 +19900130,600,157,100,245 +19900130,600,157,100,225 +19900130,600,157,100,200 +19900130,600,157,100,175 +19900130,600,157,100,150 +19900130,600,157,100,125 +19900130,600,157,100,100 +19900130,600,157,100,70 +19900130,600,157,100,50 +19900130,600,157,100,30 +19900130,600,157,100,20 +19900130,600,157,100,10 +19900130,600,157,100,9 +19900130,600,157,100,7 +19900130,600,157,100,5 +19900130,600,157,100,3 +19900130,600,157,100,2 +19900130,600,157,100,1 +19900130,600,157,210,40 +19900130,600,135,100,1000 +19900130,600,135,100,975 +19900130,600,135,100,950 +19900130,600,135,100,925 +19900130,600,135,100,900 +19900130,600,135,100,875 +19900130,600,135,100,850 +19900130,600,135,100,825 +19900130,600,135,100,800 +19900130,600,135,100,775 +19900130,600,135,100,750 +19900130,600,135,100,740 +19900130,600,135,100,700 +19900130,600,135,100,650 +19900130,600,135,100,620 +19900130,600,135,100,600 +19900130,600,135,100,550 +19900130,600,135,100,500 +19900130,600,135,100,450 +19900130,600,135,100,400 +19900130,600,135,100,375 +19900130,600,135,100,350 +19900130,600,135,100,300 +19900130,600,135,100,250 +19900130,600,135,100,245 +19900130,600,135,100,225 +19900130,600,135,100,200 +19900130,600,135,100,175 +19900130,600,135,100,150 +19900130,600,135,100,125 +19900130,600,135,100,100 +19900130,600,135,100,70 +19900130,600,135,100,50 +19900130,600,135,100,30 +19900130,600,135,100,20 +19900130,600,135,100,10 +19900130,600,135,100,9 +19900130,600,135,100,7 +19900130,600,135,100,5 +19900130,600,135,100,3 +19900130,600,135,100,2 +19900130,600,135,100,1 +19900130,600,135,210,40 +19900130,600,138,100,1000 +19900130,600,138,100,975 +19900130,600,138,100,950 +19900130,600,138,100,925 +19900130,600,138,100,900 +19900130,600,138,100,875 +19900130,600,138,100,850 +19900130,600,138,100,825 +19900130,600,138,100,800 +19900130,600,138,100,775 +19900130,600,138,100,750 +19900130,600,138,100,740 +19900130,600,138,100,700 +19900130,600,138,100,650 +19900130,600,138,100,620 +19900130,600,138,100,600 +19900130,600,138,100,550 +19900130,600,138,100,500 +19900130,600,138,100,450 +19900130,600,138,100,400 +19900130,600,138,100,375 +19900130,600,138,100,350 +19900130,600,138,100,300 +19900130,600,138,100,250 +19900130,600,138,100,245 +19900130,600,138,100,225 +19900130,600,138,100,200 +19900130,600,138,100,175 +19900130,600,138,100,150 +19900130,600,138,100,125 +19900130,600,138,100,100 +19900130,600,138,100,70 +19900130,600,138,100,50 +19900130,600,138,100,30 +19900130,600,138,100,20 +19900130,600,138,100,10 +19900130,600,138,100,9 +19900130,600,138,100,7 +19900130,600,138,100,5 +19900130,600,138,100,3 +19900130,600,138,100,2 +19900130,600,138,100,1 +19900130,600,138,210,40 +19900130,600,131,109,1 +19900130,600,131,109,2 +19900130,600,131,109,3 +19900130,600,131,109,4 +19900130,600,131,109,5 +19900130,600,131,109,6 +19900130,600,131,109,7 +19900130,600,131,109,8 +19900130,600,131,109,9 +19900130,600,131,109,10 +19900130,600,132,109,1 +19900130,600,132,109,2 +19900130,600,132,109,3 +19900130,600,132,109,4 +19900130,600,132,109,5 +19900130,600,132,109,6 +19900130,600,132,109,7 +19900130,600,132,109,8 +19900130,600,132,109,9 +19900130,600,132,109,10 +19900130,600,130,109,1 +19900130,600,130,109,2 +19900130,600,130,109,3 +19900130,600,130,109,4 +19900130,600,130,109,5 +19900130,600,130,109,6 +19900130,600,130,109,7 +19900130,600,130,109,8 +19900130,600,130,109,9 +19900130,600,130,109,10 +19900130,600,157,109,1 +19900130,600,157,109,2 +19900130,600,157,109,3 +19900130,600,157,109,4 +19900130,600,157,109,5 +19900130,600,157,109,6 +19900130,600,157,109,7 +19900130,600,157,109,8 +19900130,600,157,109,9 +19900130,600,157,109,10 +19900130,600,54,109,1 +19900130,600,54,109,2 +19900130,600,54,109,3 +19900130,600,54,109,4 +19900130,600,54,109,5 +19900130,600,54,109,6 +19900130,600,54,109,7 +19900130,600,54,109,8 +19900130,600,54,109,9 +19900130,600,54,109,10 +19900130,600,135,109,1 +19900130,600,135,109,2 +19900130,600,135,109,3 +19900130,600,135,109,4 +19900130,600,135,109,5 +19900130,600,135,109,6 +19900130,600,135,109,7 +19900130,600,135,109,8 +19900130,600,135,109,9 +19900130,600,135,109,10 +19900130,600,134,109,1 +19900130,600,152,109,1 +19900130,600,131,100,850 +19900130,600,132,100,850 +19900130,600,134,100,1000 +19900130,600,152,100,1000 +19900130,900,131,100,850 +19900130,900,132,100,850 +19900130,900,134,100,1000 +19900130,900,152,100,1000 +19900130,1200,131,100,1000 +19900130,1200,131,100,975 +19900130,1200,131,100,950 +19900130,1200,131,100,925 +19900130,1200,131,100,900 +19900130,1200,131,100,875 +19900130,1200,131,100,825 +19900130,1200,131,100,800 +19900130,1200,131,100,775 +19900130,1200,131,100,750 +19900130,1200,131,100,740 +19900130,1200,131,100,700 +19900130,1200,131,100,650 +19900130,1200,131,100,620 +19900130,1200,131,100,600 +19900130,1200,131,100,550 +19900130,1200,131,100,500 +19900130,1200,131,100,450 +19900130,1200,131,100,400 +19900130,1200,131,100,375 +19900130,1200,131,100,350 +19900130,1200,131,100,300 +19900130,1200,131,100,250 +19900130,1200,131,100,245 +19900130,1200,131,100,225 +19900130,1200,131,100,200 +19900130,1200,131,100,175 +19900130,1200,131,100,150 +19900130,1200,131,100,125 +19900130,1200,131,100,100 +19900130,1200,131,100,70 +19900130,1200,131,100,50 +19900130,1200,131,100,30 +19900130,1200,131,100,20 +19900130,1200,131,100,10 +19900130,1200,131,100,9 +19900130,1200,131,100,7 +19900130,1200,131,100,5 +19900130,1200,131,100,3 +19900130,1200,131,100,2 +19900130,1200,131,100,1 +19900130,1200,131,210,40 +19900130,1200,132,100,1000 +19900130,1200,132,100,975 +19900130,1200,132,100,950 +19900130,1200,132,100,925 +19900130,1200,132,100,900 +19900130,1200,132,100,875 +19900130,1200,132,100,825 +19900130,1200,132,100,800 +19900130,1200,132,100,775 +19900130,1200,132,100,750 +19900130,1200,132,100,740 +19900130,1200,132,100,700 +19900130,1200,132,100,650 +19900130,1200,132,100,620 +19900130,1200,132,100,600 +19900130,1200,132,100,550 +19900130,1200,132,100,500 +19900130,1200,132,100,450 +19900130,1200,132,100,400 +19900130,1200,132,100,375 +19900130,1200,132,100,350 +19900130,1200,132,100,300 +19900130,1200,132,100,250 +19900130,1200,132,100,245 +19900130,1200,132,100,225 +19900130,1200,132,100,200 +19900130,1200,132,100,175 +19900130,1200,132,100,150 +19900130,1200,132,100,125 +19900130,1200,132,100,100 +19900130,1200,132,100,70 +19900130,1200,132,100,50 +19900130,1200,132,100,30 +19900130,1200,132,100,20 +19900130,1200,132,100,10 +19900130,1200,132,100,9 +19900130,1200,132,100,7 +19900130,1200,132,100,5 +19900130,1200,132,100,3 +19900130,1200,132,100,2 +19900130,1200,132,100,1 +19900130,1200,132,210,40 +19900130,1200,130,100,1000 +19900130,1200,130,100,975 +19900130,1200,130,100,950 +19900130,1200,130,100,925 +19900130,1200,130,100,900 +19900130,1200,130,100,875 +19900130,1200,130,100,850 +19900130,1200,130,100,825 +19900130,1200,130,100,800 +19900130,1200,130,100,775 +19900130,1200,130,100,750 +19900130,1200,130,100,740 +19900130,1200,130,100,700 +19900130,1200,130,100,650 +19900130,1200,130,100,620 +19900130,1200,130,100,600 +19900130,1200,130,100,550 +19900130,1200,130,100,500 +19900130,1200,130,100,450 +19900130,1200,130,100,400 +19900130,1200,130,100,375 +19900130,1200,130,100,350 +19900130,1200,130,100,300 +19900130,1200,130,100,250 +19900130,1200,130,100,245 +19900130,1200,130,100,225 +19900130,1200,130,100,200 +19900130,1200,130,100,175 +19900130,1200,130,100,150 +19900130,1200,130,100,125 +19900130,1200,130,100,100 +19900130,1200,130,100,70 +19900130,1200,130,100,50 +19900130,1200,130,100,30 +19900130,1200,130,100,20 +19900130,1200,130,100,10 +19900130,1200,130,100,9 +19900130,1200,130,100,7 +19900130,1200,130,100,5 +19900130,1200,130,100,3 +19900130,1200,130,100,2 +19900130,1200,130,100,1 +19900130,1200,130,210,40 +19900130,1200,129,100,1000 +19900130,1200,129,100,975 +19900130,1200,129,100,950 +19900130,1200,129,100,925 +19900130,1200,129,100,900 +19900130,1200,129,100,875 +19900130,1200,129,100,850 +19900130,1200,129,100,825 +19900130,1200,129,100,800 +19900130,1200,129,100,775 +19900130,1200,129,100,750 +19900130,1200,129,100,740 +19900130,1200,129,100,700 +19900130,1200,129,100,650 +19900130,1200,129,100,620 +19900130,1200,129,100,600 +19900130,1200,129,100,550 +19900130,1200,129,100,500 +19900130,1200,129,100,450 +19900130,1200,129,100,400 +19900130,1200,129,100,375 +19900130,1200,129,100,350 +19900130,1200,129,100,300 +19900130,1200,129,100,250 +19900130,1200,129,100,245 +19900130,1200,129,100,225 +19900130,1200,129,100,200 +19900130,1200,129,100,175 +19900130,1200,129,100,150 +19900130,1200,129,100,125 +19900130,1200,129,100,100 +19900130,1200,129,100,70 +19900130,1200,129,100,50 +19900130,1200,129,100,30 +19900130,1200,129,100,20 +19900130,1200,129,100,10 +19900130,1200,129,100,9 +19900130,1200,129,100,7 +19900130,1200,129,100,5 +19900130,1200,129,100,3 +19900130,1200,129,100,2 +19900130,1200,129,100,1 +19900130,1200,129,210,40 +19900130,1200,157,100,1000 +19900130,1200,157,100,975 +19900130,1200,157,100,950 +19900130,1200,157,100,925 +19900130,1200,157,100,900 +19900130,1200,157,100,875 +19900130,1200,157,100,850 +19900130,1200,157,100,825 +19900130,1200,157,100,800 +19900130,1200,157,100,775 +19900130,1200,157,100,750 +19900130,1200,157,100,740 +19900130,1200,157,100,700 +19900130,1200,157,100,650 +19900130,1200,157,100,620 +19900130,1200,157,100,600 +19900130,1200,157,100,550 +19900130,1200,157,100,500 +19900130,1200,157,100,450 +19900130,1200,157,100,400 +19900130,1200,157,100,375 +19900130,1200,157,100,350 +19900130,1200,157,100,300 +19900130,1200,157,100,250 +19900130,1200,157,100,245 +19900130,1200,157,100,225 +19900130,1200,157,100,200 +19900130,1200,157,100,175 +19900130,1200,157,100,150 +19900130,1200,157,100,125 +19900130,1200,157,100,100 +19900130,1200,157,100,70 +19900130,1200,157,100,50 +19900130,1200,157,100,30 +19900130,1200,157,100,20 +19900130,1200,157,100,10 +19900130,1200,157,100,9 +19900130,1200,157,100,7 +19900130,1200,157,100,5 +19900130,1200,157,100,3 +19900130,1200,157,100,2 +19900130,1200,157,100,1 +19900130,1200,157,210,40 +19900130,1200,135,100,1000 +19900130,1200,135,100,975 +19900130,1200,135,100,950 +19900130,1200,135,100,925 +19900130,1200,135,100,900 +19900130,1200,135,100,875 +19900130,1200,135,100,850 +19900130,1200,135,100,825 +19900130,1200,135,100,800 +19900130,1200,135,100,775 +19900130,1200,135,100,750 +19900130,1200,135,100,740 +19900130,1200,135,100,700 +19900130,1200,135,100,650 +19900130,1200,135,100,620 +19900130,1200,135,100,600 +19900130,1200,135,100,550 +19900130,1200,135,100,500 +19900130,1200,135,100,450 +19900130,1200,135,100,400 +19900130,1200,135,100,375 +19900130,1200,135,100,350 +19900130,1200,135,100,300 +19900130,1200,135,100,250 +19900130,1200,135,100,245 +19900130,1200,135,100,225 +19900130,1200,135,100,200 +19900130,1200,135,100,175 +19900130,1200,135,100,150 +19900130,1200,135,100,125 +19900130,1200,135,100,100 +19900130,1200,135,100,70 +19900130,1200,135,100,50 +19900130,1200,135,100,30 +19900130,1200,135,100,20 +19900130,1200,135,100,10 +19900130,1200,135,100,9 +19900130,1200,135,100,7 +19900130,1200,135,100,5 +19900130,1200,135,100,3 +19900130,1200,135,100,2 +19900130,1200,135,100,1 +19900130,1200,135,210,40 +19900130,1200,138,100,1000 +19900130,1200,138,100,975 +19900130,1200,138,100,950 +19900130,1200,138,100,925 +19900130,1200,138,100,900 +19900130,1200,138,100,875 +19900130,1200,138,100,850 +19900130,1200,138,100,825 +19900130,1200,138,100,800 +19900130,1200,138,100,775 +19900130,1200,138,100,750 +19900130,1200,138,100,740 +19900130,1200,138,100,700 +19900130,1200,138,100,650 +19900130,1200,138,100,620 +19900130,1200,138,100,600 +19900130,1200,138,100,550 +19900130,1200,138,100,500 +19900130,1200,138,100,450 +19900130,1200,138,100,400 +19900130,1200,138,100,375 +19900130,1200,138,100,350 +19900130,1200,138,100,300 +19900130,1200,138,100,250 +19900130,1200,138,100,245 +19900130,1200,138,100,225 +19900130,1200,138,100,200 +19900130,1200,138,100,175 +19900130,1200,138,100,150 +19900130,1200,138,100,125 +19900130,1200,138,100,100 +19900130,1200,138,100,70 +19900130,1200,138,100,50 +19900130,1200,138,100,30 +19900130,1200,138,100,20 +19900130,1200,138,100,10 +19900130,1200,138,100,9 +19900130,1200,138,100,7 +19900130,1200,138,100,5 +19900130,1200,138,100,3 +19900130,1200,138,100,2 +19900130,1200,138,100,1 +19900130,1200,138,210,40 +19900130,1200,131,109,1 +19900130,1200,131,109,2 +19900130,1200,131,109,3 +19900130,1200,131,109,4 +19900130,1200,131,109,5 +19900130,1200,131,109,6 +19900130,1200,131,109,7 +19900130,1200,131,109,8 +19900130,1200,131,109,9 +19900130,1200,131,109,10 +19900130,1200,132,109,1 +19900130,1200,132,109,2 +19900130,1200,132,109,3 +19900130,1200,132,109,4 +19900130,1200,132,109,5 +19900130,1200,132,109,6 +19900130,1200,132,109,7 +19900130,1200,132,109,8 +19900130,1200,132,109,9 +19900130,1200,132,109,10 +19900130,1200,130,109,1 +19900130,1200,130,109,2 +19900130,1200,130,109,3 +19900130,1200,130,109,4 +19900130,1200,130,109,5 +19900130,1200,130,109,6 +19900130,1200,130,109,7 +19900130,1200,130,109,8 +19900130,1200,130,109,9 +19900130,1200,130,109,10 +19900130,1200,157,109,1 +19900130,1200,157,109,2 +19900130,1200,157,109,3 +19900130,1200,157,109,4 +19900130,1200,157,109,5 +19900130,1200,157,109,6 +19900130,1200,157,109,7 +19900130,1200,157,109,8 +19900130,1200,157,109,9 +19900130,1200,157,109,10 +19900130,1200,54,109,1 +19900130,1200,54,109,2 +19900130,1200,54,109,3 +19900130,1200,54,109,4 +19900130,1200,54,109,5 +19900130,1200,54,109,6 +19900130,1200,54,109,7 +19900130,1200,54,109,8 +19900130,1200,54,109,9 +19900130,1200,54,109,10 +19900130,1200,135,109,1 +19900130,1200,135,109,2 +19900130,1200,135,109,3 +19900130,1200,135,109,4 +19900130,1200,135,109,5 +19900130,1200,135,109,6 +19900130,1200,135,109,7 +19900130,1200,135,109,8 +19900130,1200,135,109,9 +19900130,1200,135,109,10 +19900130,1200,134,109,1 +19900130,1200,152,109,1 +19900130,1200,131,100,850 +19900130,1200,132,100,850 +19900130,1200,134,100,1000 +19900130,1200,152,100,1000 +19900130,1500,131,100,850 +19900130,1500,132,100,850 +19900130,1500,134,100,1000 +19900130,1500,152,100,1000 +19900130,1800,131,100,1000 +19900130,1800,131,100,975 +19900130,1800,131,100,950 +19900130,1800,131,100,925 +19900130,1800,131,100,900 +19900130,1800,131,100,875 +19900130,1800,131,100,825 +19900130,1800,131,100,800 +19900130,1800,131,100,775 +19900130,1800,131,100,750 +19900130,1800,131,100,740 +19900130,1800,131,100,700 +19900130,1800,131,100,650 +19900130,1800,131,100,620 +19900130,1800,131,100,600 +19900130,1800,131,100,550 +19900130,1800,131,100,500 +19900130,1800,131,100,450 +19900130,1800,131,100,400 +19900130,1800,131,100,375 +19900130,1800,131,100,350 +19900130,1800,131,100,300 +19900130,1800,131,100,250 +19900130,1800,131,100,245 +19900130,1800,131,100,225 +19900130,1800,131,100,200 +19900130,1800,131,100,175 +19900130,1800,131,100,150 +19900130,1800,131,100,125 +19900130,1800,131,100,100 +19900130,1800,131,100,70 +19900130,1800,131,100,50 +19900130,1800,131,100,30 +19900130,1800,131,100,20 +19900130,1800,131,100,10 +19900130,1800,131,100,9 +19900130,1800,131,100,7 +19900130,1800,131,100,5 +19900130,1800,131,100,3 +19900130,1800,131,100,2 +19900130,1800,131,100,1 +19900130,1800,131,210,40 +19900130,1800,132,100,1000 +19900130,1800,132,100,975 +19900130,1800,132,100,950 +19900130,1800,132,100,925 +19900130,1800,132,100,900 +19900130,1800,132,100,875 +19900130,1800,132,100,825 +19900130,1800,132,100,800 +19900130,1800,132,100,775 +19900130,1800,132,100,750 +19900130,1800,132,100,740 +19900130,1800,132,100,700 +19900130,1800,132,100,650 +19900130,1800,132,100,620 +19900130,1800,132,100,600 +19900130,1800,132,100,550 +19900130,1800,132,100,500 +19900130,1800,132,100,450 +19900130,1800,132,100,400 +19900130,1800,132,100,375 +19900130,1800,132,100,350 +19900130,1800,132,100,300 +19900130,1800,132,100,250 +19900130,1800,132,100,245 +19900130,1800,132,100,225 +19900130,1800,132,100,200 +19900130,1800,132,100,175 +19900130,1800,132,100,150 +19900130,1800,132,100,125 +19900130,1800,132,100,100 +19900130,1800,132,100,70 +19900130,1800,132,100,50 +19900130,1800,132,100,30 +19900130,1800,132,100,20 +19900130,1800,132,100,10 +19900130,1800,132,100,9 +19900130,1800,132,100,7 +19900130,1800,132,100,5 +19900130,1800,132,100,3 +19900130,1800,132,100,2 +19900130,1800,132,100,1 +19900130,1800,132,210,40 +19900130,1800,130,100,1000 +19900130,1800,130,100,975 +19900130,1800,130,100,950 +19900130,1800,130,100,925 +19900130,1800,130,100,900 +19900130,1800,130,100,875 +19900130,1800,130,100,850 +19900130,1800,130,100,825 +19900130,1800,130,100,800 +19900130,1800,130,100,775 +19900130,1800,130,100,750 +19900130,1800,130,100,740 +19900130,1800,130,100,700 +19900130,1800,130,100,650 +19900130,1800,130,100,620 +19900130,1800,130,100,600 +19900130,1800,130,100,550 +19900130,1800,130,100,500 +19900130,1800,130,100,450 +19900130,1800,130,100,400 +19900130,1800,130,100,375 +19900130,1800,130,100,350 +19900130,1800,130,100,300 +19900130,1800,130,100,250 +19900130,1800,130,100,245 +19900130,1800,130,100,225 +19900130,1800,130,100,200 +19900130,1800,130,100,175 +19900130,1800,130,100,150 +19900130,1800,130,100,125 +19900130,1800,130,100,100 +19900130,1800,130,100,70 +19900130,1800,130,100,50 +19900130,1800,130,100,30 +19900130,1800,130,100,20 +19900130,1800,130,100,10 +19900130,1800,130,100,9 +19900130,1800,130,100,7 +19900130,1800,130,100,5 +19900130,1800,130,100,3 +19900130,1800,130,100,2 +19900130,1800,130,100,1 +19900130,1800,130,210,40 +19900130,1800,129,100,1000 +19900130,1800,129,100,975 +19900130,1800,129,100,950 +19900130,1800,129,100,925 +19900130,1800,129,100,900 +19900130,1800,129,100,875 +19900130,1800,129,100,850 +19900130,1800,129,100,825 +19900130,1800,129,100,800 +19900130,1800,129,100,775 +19900130,1800,129,100,750 +19900130,1800,129,100,740 +19900130,1800,129,100,700 +19900130,1800,129,100,650 +19900130,1800,129,100,620 +19900130,1800,129,100,600 +19900130,1800,129,100,550 +19900130,1800,129,100,500 +19900130,1800,129,100,450 +19900130,1800,129,100,400 +19900130,1800,129,100,375 +19900130,1800,129,100,350 +19900130,1800,129,100,300 +19900130,1800,129,100,250 +19900130,1800,129,100,245 +19900130,1800,129,100,225 +19900130,1800,129,100,200 +19900130,1800,129,100,175 +19900130,1800,129,100,150 +19900130,1800,129,100,125 +19900130,1800,129,100,100 +19900130,1800,129,100,70 +19900130,1800,129,100,50 +19900130,1800,129,100,30 +19900130,1800,129,100,20 +19900130,1800,129,100,10 +19900130,1800,129,100,9 +19900130,1800,129,100,7 +19900130,1800,129,100,5 +19900130,1800,129,100,3 +19900130,1800,129,100,2 +19900130,1800,129,100,1 +19900130,1800,129,210,40 +19900130,1800,157,100,1000 +19900130,1800,157,100,975 +19900130,1800,157,100,950 +19900130,1800,157,100,925 +19900130,1800,157,100,900 +19900130,1800,157,100,875 +19900130,1800,157,100,850 +19900130,1800,157,100,825 +19900130,1800,157,100,800 +19900130,1800,157,100,775 +19900130,1800,157,100,750 +19900130,1800,157,100,740 +19900130,1800,157,100,700 +19900130,1800,157,100,650 +19900130,1800,157,100,620 +19900130,1800,157,100,600 +19900130,1800,157,100,550 +19900130,1800,157,100,500 +19900130,1800,157,100,450 +19900130,1800,157,100,400 +19900130,1800,157,100,375 +19900130,1800,157,100,350 +19900130,1800,157,100,300 +19900130,1800,157,100,250 +19900130,1800,157,100,245 +19900130,1800,157,100,225 +19900130,1800,157,100,200 +19900130,1800,157,100,175 +19900130,1800,157,100,150 +19900130,1800,157,100,125 +19900130,1800,157,100,100 +19900130,1800,157,100,70 +19900130,1800,157,100,50 +19900130,1800,157,100,30 +19900130,1800,157,100,20 +19900130,1800,157,100,10 +19900130,1800,157,100,9 +19900130,1800,157,100,7 +19900130,1800,157,100,5 +19900130,1800,157,100,3 +19900130,1800,157,100,2 +19900130,1800,157,100,1 +19900130,1800,157,210,40 +19900130,1800,135,100,1000 +19900130,1800,135,100,975 +19900130,1800,135,100,950 +19900130,1800,135,100,925 +19900130,1800,135,100,900 +19900130,1800,135,100,875 +19900130,1800,135,100,850 +19900130,1800,135,100,825 +19900130,1800,135,100,800 +19900130,1800,135,100,775 +19900130,1800,135,100,750 +19900130,1800,135,100,740 +19900130,1800,135,100,700 +19900130,1800,135,100,650 +19900130,1800,135,100,620 +19900130,1800,135,100,600 +19900130,1800,135,100,550 +19900130,1800,135,100,500 +19900130,1800,135,100,450 +19900130,1800,135,100,400 +19900130,1800,135,100,375 +19900130,1800,135,100,350 +19900130,1800,135,100,300 +19900130,1800,135,100,250 +19900130,1800,135,100,245 +19900130,1800,135,100,225 +19900130,1800,135,100,200 +19900130,1800,135,100,175 +19900130,1800,135,100,150 +19900130,1800,135,100,125 +19900130,1800,135,100,100 +19900130,1800,135,100,70 +19900130,1800,135,100,50 +19900130,1800,135,100,30 +19900130,1800,135,100,20 +19900130,1800,135,100,10 +19900130,1800,135,100,9 +19900130,1800,135,100,7 +19900130,1800,135,100,5 +19900130,1800,135,100,3 +19900130,1800,135,100,2 +19900130,1800,135,100,1 +19900130,1800,135,210,40 +19900130,1800,138,100,1000 +19900130,1800,138,100,975 +19900130,1800,138,100,950 +19900130,1800,138,100,925 +19900130,1800,138,100,900 +19900130,1800,138,100,875 +19900130,1800,138,100,850 +19900130,1800,138,100,825 +19900130,1800,138,100,800 +19900130,1800,138,100,775 +19900130,1800,138,100,750 +19900130,1800,138,100,740 +19900130,1800,138,100,700 +19900130,1800,138,100,650 +19900130,1800,138,100,620 +19900130,1800,138,100,600 +19900130,1800,138,100,550 +19900130,1800,138,100,500 +19900130,1800,138,100,450 +19900130,1800,138,100,400 +19900130,1800,138,100,375 +19900130,1800,138,100,350 +19900130,1800,138,100,300 +19900130,1800,138,100,250 +19900130,1800,138,100,245 +19900130,1800,138,100,225 +19900130,1800,138,100,200 +19900130,1800,138,100,175 +19900130,1800,138,100,150 +19900130,1800,138,100,125 +19900130,1800,138,100,100 +19900130,1800,138,100,70 +19900130,1800,138,100,50 +19900130,1800,138,100,30 +19900130,1800,138,100,20 +19900130,1800,138,100,10 +19900130,1800,138,100,9 +19900130,1800,138,100,7 +19900130,1800,138,100,5 +19900130,1800,138,100,3 +19900130,1800,138,100,2 +19900130,1800,138,100,1 +19900130,1800,138,210,40 +19900130,1800,131,109,1 +19900130,1800,131,109,2 +19900130,1800,131,109,3 +19900130,1800,131,109,4 +19900130,1800,131,109,5 +19900130,1800,131,109,6 +19900130,1800,131,109,7 +19900130,1800,131,109,8 +19900130,1800,131,109,9 +19900130,1800,131,109,10 +19900130,1800,132,109,1 +19900130,1800,132,109,2 +19900130,1800,132,109,3 +19900130,1800,132,109,4 +19900130,1800,132,109,5 +19900130,1800,132,109,6 +19900130,1800,132,109,7 +19900130,1800,132,109,8 +19900130,1800,132,109,9 +19900130,1800,132,109,10 +19900130,1800,130,109,1 +19900130,1800,130,109,2 +19900130,1800,130,109,3 +19900130,1800,130,109,4 +19900130,1800,130,109,5 +19900130,1800,130,109,6 +19900130,1800,130,109,7 +19900130,1800,130,109,8 +19900130,1800,130,109,9 +19900130,1800,130,109,10 +19900130,1800,157,109,1 +19900130,1800,157,109,2 +19900130,1800,157,109,3 +19900130,1800,157,109,4 +19900130,1800,157,109,5 +19900130,1800,157,109,6 +19900130,1800,157,109,7 +19900130,1800,157,109,8 +19900130,1800,157,109,9 +19900130,1800,157,109,10 +19900130,1800,54,109,1 +19900130,1800,54,109,2 +19900130,1800,54,109,3 +19900130,1800,54,109,4 +19900130,1800,54,109,5 +19900130,1800,54,109,6 +19900130,1800,54,109,7 +19900130,1800,54,109,8 +19900130,1800,54,109,9 +19900130,1800,54,109,10 +19900130,1800,135,109,1 +19900130,1800,135,109,2 +19900130,1800,135,109,3 +19900130,1800,135,109,4 +19900130,1800,135,109,5 +19900130,1800,135,109,6 +19900130,1800,135,109,7 +19900130,1800,135,109,8 +19900130,1800,135,109,9 +19900130,1800,135,109,10 +19900130,1800,134,109,1 +19900130,1800,152,109,1 +19900130,1800,131,100,850 +19900130,1800,132,100,850 +19900130,1800,134,100,1000 +19900130,1800,152,100,1000 +19900130,2100,131,100,850 +19900130,2100,132,100,850 +19900130,2100,134,100,1000 +19900130,2100,152,100,1000 +19900131,0,131,100,1000 +19900131,0,131,100,975 +19900131,0,131,100,950 +19900131,0,131,100,925 +19900131,0,131,100,900 +19900131,0,131,100,875 +19900131,0,131,100,825 +19900131,0,131,100,800 +19900131,0,131,100,775 +19900131,0,131,100,750 +19900131,0,131,100,740 +19900131,0,131,100,700 +19900131,0,131,100,650 +19900131,0,131,100,620 +19900131,0,131,100,600 +19900131,0,131,100,550 +19900131,0,131,100,500 +19900131,0,131,100,450 +19900131,0,131,100,400 +19900131,0,131,100,375 +19900131,0,131,100,350 +19900131,0,131,100,300 +19900131,0,131,100,250 +19900131,0,131,100,245 +19900131,0,131,100,225 +19900131,0,131,100,200 +19900131,0,131,100,175 +19900131,0,131,100,150 +19900131,0,131,100,125 +19900131,0,131,100,100 +19900131,0,131,100,70 +19900131,0,131,100,50 +19900131,0,131,100,30 +19900131,0,131,100,20 +19900131,0,131,100,10 +19900131,0,131,100,9 +19900131,0,131,100,7 +19900131,0,131,100,5 +19900131,0,131,100,3 +19900131,0,131,100,2 +19900131,0,131,100,1 +19900131,0,131,210,40 +19900131,0,132,100,1000 +19900131,0,132,100,975 +19900131,0,132,100,950 +19900131,0,132,100,925 +19900131,0,132,100,900 +19900131,0,132,100,875 +19900131,0,132,100,825 +19900131,0,132,100,800 +19900131,0,132,100,775 +19900131,0,132,100,750 +19900131,0,132,100,740 +19900131,0,132,100,700 +19900131,0,132,100,650 +19900131,0,132,100,620 +19900131,0,132,100,600 +19900131,0,132,100,550 +19900131,0,132,100,500 +19900131,0,132,100,450 +19900131,0,132,100,400 +19900131,0,132,100,375 +19900131,0,132,100,350 +19900131,0,132,100,300 +19900131,0,132,100,250 +19900131,0,132,100,245 +19900131,0,132,100,225 +19900131,0,132,100,200 +19900131,0,132,100,175 +19900131,0,132,100,150 +19900131,0,132,100,125 +19900131,0,132,100,100 +19900131,0,132,100,70 +19900131,0,132,100,50 +19900131,0,132,100,30 +19900131,0,132,100,20 +19900131,0,132,100,10 +19900131,0,132,100,9 +19900131,0,132,100,7 +19900131,0,132,100,5 +19900131,0,132,100,3 +19900131,0,132,100,2 +19900131,0,132,100,1 +19900131,0,132,210,40 +19900131,0,130,100,1000 +19900131,0,130,100,975 +19900131,0,130,100,950 +19900131,0,130,100,925 +19900131,0,130,100,900 +19900131,0,130,100,875 +19900131,0,130,100,850 +19900131,0,130,100,825 +19900131,0,130,100,800 +19900131,0,130,100,775 +19900131,0,130,100,750 +19900131,0,130,100,740 +19900131,0,130,100,700 +19900131,0,130,100,650 +19900131,0,130,100,620 +19900131,0,130,100,600 +19900131,0,130,100,550 +19900131,0,130,100,500 +19900131,0,130,100,450 +19900131,0,130,100,400 +19900131,0,130,100,375 +19900131,0,130,100,350 +19900131,0,130,100,300 +19900131,0,130,100,250 +19900131,0,130,100,245 +19900131,0,130,100,225 +19900131,0,130,100,200 +19900131,0,130,100,175 +19900131,0,130,100,150 +19900131,0,130,100,125 +19900131,0,130,100,100 +19900131,0,130,100,70 +19900131,0,130,100,50 +19900131,0,130,100,30 +19900131,0,130,100,20 +19900131,0,130,100,10 +19900131,0,130,100,9 +19900131,0,130,100,7 +19900131,0,130,100,5 +19900131,0,130,100,3 +19900131,0,130,100,2 +19900131,0,130,100,1 +19900131,0,130,210,40 +19900131,0,129,100,1000 +19900131,0,129,100,975 +19900131,0,129,100,950 +19900131,0,129,100,925 +19900131,0,129,100,900 +19900131,0,129,100,875 +19900131,0,129,100,850 +19900131,0,129,100,825 +19900131,0,129,100,800 +19900131,0,129,100,775 +19900131,0,129,100,750 +19900131,0,129,100,740 +19900131,0,129,100,700 +19900131,0,129,100,650 +19900131,0,129,100,620 +19900131,0,129,100,600 +19900131,0,129,100,550 +19900131,0,129,100,500 +19900131,0,129,100,450 +19900131,0,129,100,400 +19900131,0,129,100,375 +19900131,0,129,100,350 +19900131,0,129,100,300 +19900131,0,129,100,250 +19900131,0,129,100,245 +19900131,0,129,100,225 +19900131,0,129,100,200 +19900131,0,129,100,175 +19900131,0,129,100,150 +19900131,0,129,100,125 +19900131,0,129,100,100 +19900131,0,129,100,70 +19900131,0,129,100,50 +19900131,0,129,100,30 +19900131,0,129,100,20 +19900131,0,129,100,10 +19900131,0,129,100,9 +19900131,0,129,100,7 +19900131,0,129,100,5 +19900131,0,129,100,3 +19900131,0,129,100,2 +19900131,0,129,100,1 +19900131,0,129,210,40 +19900131,0,157,100,1000 +19900131,0,157,100,975 +19900131,0,157,100,950 +19900131,0,157,100,925 +19900131,0,157,100,900 +19900131,0,157,100,875 +19900131,0,157,100,850 +19900131,0,157,100,825 +19900131,0,157,100,800 +19900131,0,157,100,775 +19900131,0,157,100,750 +19900131,0,157,100,740 +19900131,0,157,100,700 +19900131,0,157,100,650 +19900131,0,157,100,620 +19900131,0,157,100,600 +19900131,0,157,100,550 +19900131,0,157,100,500 +19900131,0,157,100,450 +19900131,0,157,100,400 +19900131,0,157,100,375 +19900131,0,157,100,350 +19900131,0,157,100,300 +19900131,0,157,100,250 +19900131,0,157,100,245 +19900131,0,157,100,225 +19900131,0,157,100,200 +19900131,0,157,100,175 +19900131,0,157,100,150 +19900131,0,157,100,125 +19900131,0,157,100,100 +19900131,0,157,100,70 +19900131,0,157,100,50 +19900131,0,157,100,30 +19900131,0,157,100,20 +19900131,0,157,100,10 +19900131,0,157,100,9 +19900131,0,157,100,7 +19900131,0,157,100,5 +19900131,0,157,100,3 +19900131,0,157,100,2 +19900131,0,157,100,1 +19900131,0,157,210,40 +19900131,0,135,100,1000 +19900131,0,135,100,975 +19900131,0,135,100,950 +19900131,0,135,100,925 +19900131,0,135,100,900 +19900131,0,135,100,875 +19900131,0,135,100,850 +19900131,0,135,100,825 +19900131,0,135,100,800 +19900131,0,135,100,775 +19900131,0,135,100,750 +19900131,0,135,100,740 +19900131,0,135,100,700 +19900131,0,135,100,650 +19900131,0,135,100,620 +19900131,0,135,100,600 +19900131,0,135,100,550 +19900131,0,135,100,500 +19900131,0,135,100,450 +19900131,0,135,100,400 +19900131,0,135,100,375 +19900131,0,135,100,350 +19900131,0,135,100,300 +19900131,0,135,100,250 +19900131,0,135,100,245 +19900131,0,135,100,225 +19900131,0,135,100,200 +19900131,0,135,100,175 +19900131,0,135,100,150 +19900131,0,135,100,125 +19900131,0,135,100,100 +19900131,0,135,100,70 +19900131,0,135,100,50 +19900131,0,135,100,30 +19900131,0,135,100,20 +19900131,0,135,100,10 +19900131,0,135,100,9 +19900131,0,135,100,7 +19900131,0,135,100,5 +19900131,0,135,100,3 +19900131,0,135,100,2 +19900131,0,135,100,1 +19900131,0,135,210,40 +19900131,0,138,100,1000 +19900131,0,138,100,975 +19900131,0,138,100,950 +19900131,0,138,100,925 +19900131,0,138,100,900 +19900131,0,138,100,875 +19900131,0,138,100,850 +19900131,0,138,100,825 +19900131,0,138,100,800 +19900131,0,138,100,775 +19900131,0,138,100,750 +19900131,0,138,100,740 +19900131,0,138,100,700 +19900131,0,138,100,650 +19900131,0,138,100,620 +19900131,0,138,100,600 +19900131,0,138,100,550 +19900131,0,138,100,500 +19900131,0,138,100,450 +19900131,0,138,100,400 +19900131,0,138,100,375 +19900131,0,138,100,350 +19900131,0,138,100,300 +19900131,0,138,100,250 +19900131,0,138,100,245 +19900131,0,138,100,225 +19900131,0,138,100,200 +19900131,0,138,100,175 +19900131,0,138,100,150 +19900131,0,138,100,125 +19900131,0,138,100,100 +19900131,0,138,100,70 +19900131,0,138,100,50 +19900131,0,138,100,30 +19900131,0,138,100,20 +19900131,0,138,100,10 +19900131,0,138,100,9 +19900131,0,138,100,7 +19900131,0,138,100,5 +19900131,0,138,100,3 +19900131,0,138,100,2 +19900131,0,138,100,1 +19900131,0,138,210,40 +19900131,0,131,109,1 +19900131,0,131,109,2 +19900131,0,131,109,3 +19900131,0,131,109,4 +19900131,0,131,109,5 +19900131,0,131,109,6 +19900131,0,131,109,7 +19900131,0,131,109,8 +19900131,0,131,109,9 +19900131,0,131,109,10 +19900131,0,132,109,1 +19900131,0,132,109,2 +19900131,0,132,109,3 +19900131,0,132,109,4 +19900131,0,132,109,5 +19900131,0,132,109,6 +19900131,0,132,109,7 +19900131,0,132,109,8 +19900131,0,132,109,9 +19900131,0,132,109,10 +19900131,0,130,109,1 +19900131,0,130,109,2 +19900131,0,130,109,3 +19900131,0,130,109,4 +19900131,0,130,109,5 +19900131,0,130,109,6 +19900131,0,130,109,7 +19900131,0,130,109,8 +19900131,0,130,109,9 +19900131,0,130,109,10 +19900131,0,157,109,1 +19900131,0,157,109,2 +19900131,0,157,109,3 +19900131,0,157,109,4 +19900131,0,157,109,5 +19900131,0,157,109,6 +19900131,0,157,109,7 +19900131,0,157,109,8 +19900131,0,157,109,9 +19900131,0,157,109,10 +19900131,0,54,109,1 +19900131,0,54,109,2 +19900131,0,54,109,3 +19900131,0,54,109,4 +19900131,0,54,109,5 +19900131,0,54,109,6 +19900131,0,54,109,7 +19900131,0,54,109,8 +19900131,0,54,109,9 +19900131,0,54,109,10 +19900131,0,135,109,1 +19900131,0,135,109,2 +19900131,0,135,109,3 +19900131,0,135,109,4 +19900131,0,135,109,5 +19900131,0,135,109,6 +19900131,0,135,109,7 +19900131,0,135,109,8 +19900131,0,135,109,9 +19900131,0,135,109,10 +19900131,0,134,109,1 +19900131,0,152,109,1 +19900131,0,131,100,850 +19900131,0,132,100,850 +19900131,0,134,100,1000 +19900131,0,152,100,1000 +19900131,300,131,100,850 +19900131,300,132,100,850 +19900131,300,134,100,1000 +19900131,300,152,100,1000 +19900131,600,131,100,1000 +19900131,600,131,100,975 +19900131,600,131,100,950 +19900131,600,131,100,925 +19900131,600,131,100,900 +19900131,600,131,100,875 +19900131,600,131,100,825 +19900131,600,131,100,800 +19900131,600,131,100,775 +19900131,600,131,100,750 +19900131,600,131,100,740 +19900131,600,131,100,700 +19900131,600,131,100,650 +19900131,600,131,100,620 +19900131,600,131,100,600 +19900131,600,131,100,550 +19900131,600,131,100,500 +19900131,600,131,100,450 +19900131,600,131,100,400 +19900131,600,131,100,375 +19900131,600,131,100,350 +19900131,600,131,100,300 +19900131,600,131,100,250 +19900131,600,131,100,245 +19900131,600,131,100,225 +19900131,600,131,100,200 +19900131,600,131,100,175 +19900131,600,131,100,150 +19900131,600,131,100,125 +19900131,600,131,100,100 +19900131,600,131,100,70 +19900131,600,131,100,50 +19900131,600,131,100,30 +19900131,600,131,100,20 +19900131,600,131,100,10 +19900131,600,131,100,9 +19900131,600,131,100,7 +19900131,600,131,100,5 +19900131,600,131,100,3 +19900131,600,131,100,2 +19900131,600,131,100,1 +19900131,600,131,210,40 +19900131,600,132,100,1000 +19900131,600,132,100,975 +19900131,600,132,100,950 +19900131,600,132,100,925 +19900131,600,132,100,900 +19900131,600,132,100,875 +19900131,600,132,100,825 +19900131,600,132,100,800 +19900131,600,132,100,775 +19900131,600,132,100,750 +19900131,600,132,100,740 +19900131,600,132,100,700 +19900131,600,132,100,650 +19900131,600,132,100,620 +19900131,600,132,100,600 +19900131,600,132,100,550 +19900131,600,132,100,500 +19900131,600,132,100,450 +19900131,600,132,100,400 +19900131,600,132,100,375 +19900131,600,132,100,350 +19900131,600,132,100,300 +19900131,600,132,100,250 +19900131,600,132,100,245 +19900131,600,132,100,225 +19900131,600,132,100,200 +19900131,600,132,100,175 +19900131,600,132,100,150 +19900131,600,132,100,125 +19900131,600,132,100,100 +19900131,600,132,100,70 +19900131,600,132,100,50 +19900131,600,132,100,30 +19900131,600,132,100,20 +19900131,600,132,100,10 +19900131,600,132,100,9 +19900131,600,132,100,7 +19900131,600,132,100,5 +19900131,600,132,100,3 +19900131,600,132,100,2 +19900131,600,132,100,1 +19900131,600,132,210,40 +19900131,600,130,100,1000 +19900131,600,130,100,975 +19900131,600,130,100,950 +19900131,600,130,100,925 +19900131,600,130,100,900 +19900131,600,130,100,875 +19900131,600,130,100,850 +19900131,600,130,100,825 +19900131,600,130,100,800 +19900131,600,130,100,775 +19900131,600,130,100,750 +19900131,600,130,100,740 +19900131,600,130,100,700 +19900131,600,130,100,650 +19900131,600,130,100,620 +19900131,600,130,100,600 +19900131,600,130,100,550 +19900131,600,130,100,500 +19900131,600,130,100,450 +19900131,600,130,100,400 +19900131,600,130,100,375 +19900131,600,130,100,350 +19900131,600,130,100,300 +19900131,600,130,100,250 +19900131,600,130,100,245 +19900131,600,130,100,225 +19900131,600,130,100,200 +19900131,600,130,100,175 +19900131,600,130,100,150 +19900131,600,130,100,125 +19900131,600,130,100,100 +19900131,600,130,100,70 +19900131,600,130,100,50 +19900131,600,130,100,30 +19900131,600,130,100,20 +19900131,600,130,100,10 +19900131,600,130,100,9 +19900131,600,130,100,7 +19900131,600,130,100,5 +19900131,600,130,100,3 +19900131,600,130,100,2 +19900131,600,130,100,1 +19900131,600,130,210,40 +19900131,600,129,100,1000 +19900131,600,129,100,975 +19900131,600,129,100,950 +19900131,600,129,100,925 +19900131,600,129,100,900 +19900131,600,129,100,875 +19900131,600,129,100,850 +19900131,600,129,100,825 +19900131,600,129,100,800 +19900131,600,129,100,775 +19900131,600,129,100,750 +19900131,600,129,100,740 +19900131,600,129,100,700 +19900131,600,129,100,650 +19900131,600,129,100,620 +19900131,600,129,100,600 +19900131,600,129,100,550 +19900131,600,129,100,500 +19900131,600,129,100,450 +19900131,600,129,100,400 +19900131,600,129,100,375 +19900131,600,129,100,350 +19900131,600,129,100,300 +19900131,600,129,100,250 +19900131,600,129,100,245 +19900131,600,129,100,225 +19900131,600,129,100,200 +19900131,600,129,100,175 +19900131,600,129,100,150 +19900131,600,129,100,125 +19900131,600,129,100,100 +19900131,600,129,100,70 +19900131,600,129,100,50 +19900131,600,129,100,30 +19900131,600,129,100,20 +19900131,600,129,100,10 +19900131,600,129,100,9 +19900131,600,129,100,7 +19900131,600,129,100,5 +19900131,600,129,100,3 +19900131,600,129,100,2 +19900131,600,129,100,1 +19900131,600,129,210,40 +19900131,600,157,100,1000 +19900131,600,157,100,975 +19900131,600,157,100,950 +19900131,600,157,100,925 +19900131,600,157,100,900 +19900131,600,157,100,875 +19900131,600,157,100,850 +19900131,600,157,100,825 +19900131,600,157,100,800 +19900131,600,157,100,775 +19900131,600,157,100,750 +19900131,600,157,100,740 +19900131,600,157,100,700 +19900131,600,157,100,650 +19900131,600,157,100,620 +19900131,600,157,100,600 +19900131,600,157,100,550 +19900131,600,157,100,500 +19900131,600,157,100,450 +19900131,600,157,100,400 +19900131,600,157,100,375 +19900131,600,157,100,350 +19900131,600,157,100,300 +19900131,600,157,100,250 +19900131,600,157,100,245 +19900131,600,157,100,225 +19900131,600,157,100,200 +19900131,600,157,100,175 +19900131,600,157,100,150 +19900131,600,157,100,125 +19900131,600,157,100,100 +19900131,600,157,100,70 +19900131,600,157,100,50 +19900131,600,157,100,30 +19900131,600,157,100,20 +19900131,600,157,100,10 +19900131,600,157,100,9 +19900131,600,157,100,7 +19900131,600,157,100,5 +19900131,600,157,100,3 +19900131,600,157,100,2 +19900131,600,157,100,1 +19900131,600,157,210,40 +19900131,600,135,100,1000 +19900131,600,135,100,975 +19900131,600,135,100,950 +19900131,600,135,100,925 +19900131,600,135,100,900 +19900131,600,135,100,875 +19900131,600,135,100,850 +19900131,600,135,100,825 +19900131,600,135,100,800 +19900131,600,135,100,775 +19900131,600,135,100,750 +19900131,600,135,100,740 +19900131,600,135,100,700 +19900131,600,135,100,650 +19900131,600,135,100,620 +19900131,600,135,100,600 +19900131,600,135,100,550 +19900131,600,135,100,500 +19900131,600,135,100,450 +19900131,600,135,100,400 +19900131,600,135,100,375 +19900131,600,135,100,350 +19900131,600,135,100,300 +19900131,600,135,100,250 +19900131,600,135,100,245 +19900131,600,135,100,225 +19900131,600,135,100,200 +19900131,600,135,100,175 +19900131,600,135,100,150 +19900131,600,135,100,125 +19900131,600,135,100,100 +19900131,600,135,100,70 +19900131,600,135,100,50 +19900131,600,135,100,30 +19900131,600,135,100,20 +19900131,600,135,100,10 +19900131,600,135,100,9 +19900131,600,135,100,7 +19900131,600,135,100,5 +19900131,600,135,100,3 +19900131,600,135,100,2 +19900131,600,135,100,1 +19900131,600,135,210,40 +19900131,600,138,100,1000 +19900131,600,138,100,975 +19900131,600,138,100,950 +19900131,600,138,100,925 +19900131,600,138,100,900 +19900131,600,138,100,875 +19900131,600,138,100,850 +19900131,600,138,100,825 +19900131,600,138,100,800 +19900131,600,138,100,775 +19900131,600,138,100,750 +19900131,600,138,100,740 +19900131,600,138,100,700 +19900131,600,138,100,650 +19900131,600,138,100,620 +19900131,600,138,100,600 +19900131,600,138,100,550 +19900131,600,138,100,500 +19900131,600,138,100,450 +19900131,600,138,100,400 +19900131,600,138,100,375 +19900131,600,138,100,350 +19900131,600,138,100,300 +19900131,600,138,100,250 +19900131,600,138,100,245 +19900131,600,138,100,225 +19900131,600,138,100,200 +19900131,600,138,100,175 +19900131,600,138,100,150 +19900131,600,138,100,125 +19900131,600,138,100,100 +19900131,600,138,100,70 +19900131,600,138,100,50 +19900131,600,138,100,30 +19900131,600,138,100,20 +19900131,600,138,100,10 +19900131,600,138,100,9 +19900131,600,138,100,7 +19900131,600,138,100,5 +19900131,600,138,100,3 +19900131,600,138,100,2 +19900131,600,138,100,1 +19900131,600,138,210,40 +19900131,600,131,109,1 +19900131,600,131,109,2 +19900131,600,131,109,3 +19900131,600,131,109,4 +19900131,600,131,109,5 +19900131,600,131,109,6 +19900131,600,131,109,7 +19900131,600,131,109,8 +19900131,600,131,109,9 +19900131,600,131,109,10 +19900131,600,132,109,1 +19900131,600,132,109,2 +19900131,600,132,109,3 +19900131,600,132,109,4 +19900131,600,132,109,5 +19900131,600,132,109,6 +19900131,600,132,109,7 +19900131,600,132,109,8 +19900131,600,132,109,9 +19900131,600,132,109,10 +19900131,600,130,109,1 +19900131,600,130,109,2 +19900131,600,130,109,3 +19900131,600,130,109,4 +19900131,600,130,109,5 +19900131,600,130,109,6 +19900131,600,130,109,7 +19900131,600,130,109,8 +19900131,600,130,109,9 +19900131,600,130,109,10 +19900131,600,157,109,1 +19900131,600,157,109,2 +19900131,600,157,109,3 +19900131,600,157,109,4 +19900131,600,157,109,5 +19900131,600,157,109,6 +19900131,600,157,109,7 +19900131,600,157,109,8 +19900131,600,157,109,9 +19900131,600,157,109,10 +19900131,600,54,109,1 +19900131,600,54,109,2 +19900131,600,54,109,3 +19900131,600,54,109,4 +19900131,600,54,109,5 +19900131,600,54,109,6 +19900131,600,54,109,7 +19900131,600,54,109,8 +19900131,600,54,109,9 +19900131,600,54,109,10 +19900131,600,135,109,1 +19900131,600,135,109,2 +19900131,600,135,109,3 +19900131,600,135,109,4 +19900131,600,135,109,5 +19900131,600,135,109,6 +19900131,600,135,109,7 +19900131,600,135,109,8 +19900131,600,135,109,9 +19900131,600,135,109,10 +19900131,600,134,109,1 +19900131,600,152,109,1 +19900131,600,131,100,850 +19900131,600,132,100,850 +19900131,600,134,100,1000 +19900131,600,152,100,1000 +19900131,900,131,100,850 +19900131,900,132,100,850 +19900131,900,134,100,1000 +19900131,900,152,100,1000 +19900131,1200,131,100,1000 +19900131,1200,131,100,975 +19900131,1200,131,100,950 +19900131,1200,131,100,925 +19900131,1200,131,100,900 +19900131,1200,131,100,875 +19900131,1200,131,100,825 +19900131,1200,131,100,800 +19900131,1200,131,100,775 +19900131,1200,131,100,750 +19900131,1200,131,100,740 +19900131,1200,131,100,700 +19900131,1200,131,100,650 +19900131,1200,131,100,620 +19900131,1200,131,100,600 +19900131,1200,131,100,550 +19900131,1200,131,100,500 +19900131,1200,131,100,450 +19900131,1200,131,100,400 +19900131,1200,131,100,375 +19900131,1200,131,100,350 +19900131,1200,131,100,300 +19900131,1200,131,100,250 +19900131,1200,131,100,245 +19900131,1200,131,100,225 +19900131,1200,131,100,200 +19900131,1200,131,100,175 +19900131,1200,131,100,150 +19900131,1200,131,100,125 +19900131,1200,131,100,100 +19900131,1200,131,100,70 +19900131,1200,131,100,50 +19900131,1200,131,100,30 +19900131,1200,131,100,20 +19900131,1200,131,100,10 +19900131,1200,131,100,9 +19900131,1200,131,100,7 +19900131,1200,131,100,5 +19900131,1200,131,100,3 +19900131,1200,131,100,2 +19900131,1200,131,100,1 +19900131,1200,131,210,40 +19900131,1200,132,100,1000 +19900131,1200,132,100,975 +19900131,1200,132,100,950 +19900131,1200,132,100,925 +19900131,1200,132,100,900 +19900131,1200,132,100,875 +19900131,1200,132,100,825 +19900131,1200,132,100,800 +19900131,1200,132,100,775 +19900131,1200,132,100,750 +19900131,1200,132,100,740 +19900131,1200,132,100,700 +19900131,1200,132,100,650 +19900131,1200,132,100,620 +19900131,1200,132,100,600 +19900131,1200,132,100,550 +19900131,1200,132,100,500 +19900131,1200,132,100,450 +19900131,1200,132,100,400 +19900131,1200,132,100,375 +19900131,1200,132,100,350 +19900131,1200,132,100,300 +19900131,1200,132,100,250 +19900131,1200,132,100,245 +19900131,1200,132,100,225 +19900131,1200,132,100,200 +19900131,1200,132,100,175 +19900131,1200,132,100,150 +19900131,1200,132,100,125 +19900131,1200,132,100,100 +19900131,1200,132,100,70 +19900131,1200,132,100,50 +19900131,1200,132,100,30 +19900131,1200,132,100,20 +19900131,1200,132,100,10 +19900131,1200,132,100,9 +19900131,1200,132,100,7 +19900131,1200,132,100,5 +19900131,1200,132,100,3 +19900131,1200,132,100,2 +19900131,1200,132,100,1 +19900131,1200,132,210,40 +19900131,1200,130,100,1000 +19900131,1200,130,100,975 +19900131,1200,130,100,950 +19900131,1200,130,100,925 +19900131,1200,130,100,900 +19900131,1200,130,100,875 +19900131,1200,130,100,850 +19900131,1200,130,100,825 +19900131,1200,130,100,800 +19900131,1200,130,100,775 +19900131,1200,130,100,750 +19900131,1200,130,100,740 +19900131,1200,130,100,700 +19900131,1200,130,100,650 +19900131,1200,130,100,620 +19900131,1200,130,100,600 +19900131,1200,130,100,550 +19900131,1200,130,100,500 +19900131,1200,130,100,450 +19900131,1200,130,100,400 +19900131,1200,130,100,375 +19900131,1200,130,100,350 +19900131,1200,130,100,300 +19900131,1200,130,100,250 +19900131,1200,130,100,245 +19900131,1200,130,100,225 +19900131,1200,130,100,200 +19900131,1200,130,100,175 +19900131,1200,130,100,150 +19900131,1200,130,100,125 +19900131,1200,130,100,100 +19900131,1200,130,100,70 +19900131,1200,130,100,50 +19900131,1200,130,100,30 +19900131,1200,130,100,20 +19900131,1200,130,100,10 +19900131,1200,130,100,9 +19900131,1200,130,100,7 +19900131,1200,130,100,5 +19900131,1200,130,100,3 +19900131,1200,130,100,2 +19900131,1200,130,100,1 +19900131,1200,130,210,40 +19900131,1200,129,100,1000 +19900131,1200,129,100,975 +19900131,1200,129,100,950 +19900131,1200,129,100,925 +19900131,1200,129,100,900 +19900131,1200,129,100,875 +19900131,1200,129,100,850 +19900131,1200,129,100,825 +19900131,1200,129,100,800 +19900131,1200,129,100,775 +19900131,1200,129,100,750 +19900131,1200,129,100,740 +19900131,1200,129,100,700 +19900131,1200,129,100,650 +19900131,1200,129,100,620 +19900131,1200,129,100,600 +19900131,1200,129,100,550 +19900131,1200,129,100,500 +19900131,1200,129,100,450 +19900131,1200,129,100,400 +19900131,1200,129,100,375 +19900131,1200,129,100,350 +19900131,1200,129,100,300 +19900131,1200,129,100,250 +19900131,1200,129,100,245 +19900131,1200,129,100,225 +19900131,1200,129,100,200 +19900131,1200,129,100,175 +19900131,1200,129,100,150 +19900131,1200,129,100,125 +19900131,1200,129,100,100 +19900131,1200,129,100,70 +19900131,1200,129,100,50 +19900131,1200,129,100,30 +19900131,1200,129,100,20 +19900131,1200,129,100,10 +19900131,1200,129,100,9 +19900131,1200,129,100,7 +19900131,1200,129,100,5 +19900131,1200,129,100,3 +19900131,1200,129,100,2 +19900131,1200,129,100,1 +19900131,1200,129,210,40 +19900131,1200,157,100,1000 +19900131,1200,157,100,975 +19900131,1200,157,100,950 +19900131,1200,157,100,925 +19900131,1200,157,100,900 +19900131,1200,157,100,875 +19900131,1200,157,100,850 +19900131,1200,157,100,825 +19900131,1200,157,100,800 +19900131,1200,157,100,775 +19900131,1200,157,100,750 +19900131,1200,157,100,740 +19900131,1200,157,100,700 +19900131,1200,157,100,650 +19900131,1200,157,100,620 +19900131,1200,157,100,600 +19900131,1200,157,100,550 +19900131,1200,157,100,500 +19900131,1200,157,100,450 +19900131,1200,157,100,400 +19900131,1200,157,100,375 +19900131,1200,157,100,350 +19900131,1200,157,100,300 +19900131,1200,157,100,250 +19900131,1200,157,100,245 +19900131,1200,157,100,225 +19900131,1200,157,100,200 +19900131,1200,157,100,175 +19900131,1200,157,100,150 +19900131,1200,157,100,125 +19900131,1200,157,100,100 +19900131,1200,157,100,70 +19900131,1200,157,100,50 +19900131,1200,157,100,30 +19900131,1200,157,100,20 +19900131,1200,157,100,10 +19900131,1200,157,100,9 +19900131,1200,157,100,7 +19900131,1200,157,100,5 +19900131,1200,157,100,3 +19900131,1200,157,100,2 +19900131,1200,157,100,1 +19900131,1200,157,210,40 +19900131,1200,135,100,1000 +19900131,1200,135,100,975 +19900131,1200,135,100,950 +19900131,1200,135,100,925 +19900131,1200,135,100,900 +19900131,1200,135,100,875 +19900131,1200,135,100,850 +19900131,1200,135,100,825 +19900131,1200,135,100,800 +19900131,1200,135,100,775 +19900131,1200,135,100,750 +19900131,1200,135,100,740 +19900131,1200,135,100,700 +19900131,1200,135,100,650 +19900131,1200,135,100,620 +19900131,1200,135,100,600 +19900131,1200,135,100,550 +19900131,1200,135,100,500 +19900131,1200,135,100,450 +19900131,1200,135,100,400 +19900131,1200,135,100,375 +19900131,1200,135,100,350 +19900131,1200,135,100,300 +19900131,1200,135,100,250 +19900131,1200,135,100,245 +19900131,1200,135,100,225 +19900131,1200,135,100,200 +19900131,1200,135,100,175 +19900131,1200,135,100,150 +19900131,1200,135,100,125 +19900131,1200,135,100,100 +19900131,1200,135,100,70 +19900131,1200,135,100,50 +19900131,1200,135,100,30 +19900131,1200,135,100,20 +19900131,1200,135,100,10 +19900131,1200,135,100,9 +19900131,1200,135,100,7 +19900131,1200,135,100,5 +19900131,1200,135,100,3 +19900131,1200,135,100,2 +19900131,1200,135,100,1 +19900131,1200,135,210,40 +19900131,1200,138,100,1000 +19900131,1200,138,100,975 +19900131,1200,138,100,950 +19900131,1200,138,100,925 +19900131,1200,138,100,900 +19900131,1200,138,100,875 +19900131,1200,138,100,850 +19900131,1200,138,100,825 +19900131,1200,138,100,800 +19900131,1200,138,100,775 +19900131,1200,138,100,750 +19900131,1200,138,100,740 +19900131,1200,138,100,700 +19900131,1200,138,100,650 +19900131,1200,138,100,620 +19900131,1200,138,100,600 +19900131,1200,138,100,550 +19900131,1200,138,100,500 +19900131,1200,138,100,450 +19900131,1200,138,100,400 +19900131,1200,138,100,375 +19900131,1200,138,100,350 +19900131,1200,138,100,300 +19900131,1200,138,100,250 +19900131,1200,138,100,245 +19900131,1200,138,100,225 +19900131,1200,138,100,200 +19900131,1200,138,100,175 +19900131,1200,138,100,150 +19900131,1200,138,100,125 +19900131,1200,138,100,100 +19900131,1200,138,100,70 +19900131,1200,138,100,50 +19900131,1200,138,100,30 +19900131,1200,138,100,20 +19900131,1200,138,100,10 +19900131,1200,138,100,9 +19900131,1200,138,100,7 +19900131,1200,138,100,5 +19900131,1200,138,100,3 +19900131,1200,138,100,2 +19900131,1200,138,100,1 +19900131,1200,138,210,40 +19900131,1200,131,109,1 +19900131,1200,131,109,2 +19900131,1200,131,109,3 +19900131,1200,131,109,4 +19900131,1200,131,109,5 +19900131,1200,131,109,6 +19900131,1200,131,109,7 +19900131,1200,131,109,8 +19900131,1200,131,109,9 +19900131,1200,131,109,10 +19900131,1200,132,109,1 +19900131,1200,132,109,2 +19900131,1200,132,109,3 +19900131,1200,132,109,4 +19900131,1200,132,109,5 +19900131,1200,132,109,6 +19900131,1200,132,109,7 +19900131,1200,132,109,8 +19900131,1200,132,109,9 +19900131,1200,132,109,10 +19900131,1200,130,109,1 +19900131,1200,130,109,2 +19900131,1200,130,109,3 +19900131,1200,130,109,4 +19900131,1200,130,109,5 +19900131,1200,130,109,6 +19900131,1200,130,109,7 +19900131,1200,130,109,8 +19900131,1200,130,109,9 +19900131,1200,130,109,10 +19900131,1200,157,109,1 +19900131,1200,157,109,2 +19900131,1200,157,109,3 +19900131,1200,157,109,4 +19900131,1200,157,109,5 +19900131,1200,157,109,6 +19900131,1200,157,109,7 +19900131,1200,157,109,8 +19900131,1200,157,109,9 +19900131,1200,157,109,10 +19900131,1200,54,109,1 +19900131,1200,54,109,2 +19900131,1200,54,109,3 +19900131,1200,54,109,4 +19900131,1200,54,109,5 +19900131,1200,54,109,6 +19900131,1200,54,109,7 +19900131,1200,54,109,8 +19900131,1200,54,109,9 +19900131,1200,54,109,10 +19900131,1200,135,109,1 +19900131,1200,135,109,2 +19900131,1200,135,109,3 +19900131,1200,135,109,4 +19900131,1200,135,109,5 +19900131,1200,135,109,6 +19900131,1200,135,109,7 +19900131,1200,135,109,8 +19900131,1200,135,109,9 +19900131,1200,135,109,10 +19900131,1200,134,109,1 +19900131,1200,152,109,1 +19900131,1200,131,100,850 +19900131,1200,132,100,850 +19900131,1200,134,100,1000 +19900131,1200,152,100,1000 +19900131,1500,131,100,850 +19900131,1500,132,100,850 +19900131,1500,134,100,1000 +19900131,1500,152,100,1000 +19900131,1800,131,100,1000 +19900131,1800,131,100,975 +19900131,1800,131,100,950 +19900131,1800,131,100,925 +19900131,1800,131,100,900 +19900131,1800,131,100,875 +19900131,1800,131,100,825 +19900131,1800,131,100,800 +19900131,1800,131,100,775 +19900131,1800,131,100,750 +19900131,1800,131,100,740 +19900131,1800,131,100,700 +19900131,1800,131,100,650 +19900131,1800,131,100,620 +19900131,1800,131,100,600 +19900131,1800,131,100,550 +19900131,1800,131,100,500 +19900131,1800,131,100,450 +19900131,1800,131,100,400 +19900131,1800,131,100,375 +19900131,1800,131,100,350 +19900131,1800,131,100,300 +19900131,1800,131,100,250 +19900131,1800,131,100,245 +19900131,1800,131,100,225 +19900131,1800,131,100,200 +19900131,1800,131,100,175 +19900131,1800,131,100,150 +19900131,1800,131,100,125 +19900131,1800,131,100,100 +19900131,1800,131,100,70 +19900131,1800,131,100,50 +19900131,1800,131,100,30 +19900131,1800,131,100,20 +19900131,1800,131,100,10 +19900131,1800,131,100,9 +19900131,1800,131,100,7 +19900131,1800,131,100,5 +19900131,1800,131,100,3 +19900131,1800,131,100,2 +19900131,1800,131,100,1 +19900131,1800,131,210,40 +19900131,1800,132,100,1000 +19900131,1800,132,100,975 +19900131,1800,132,100,950 +19900131,1800,132,100,925 +19900131,1800,132,100,900 +19900131,1800,132,100,875 +19900131,1800,132,100,825 +19900131,1800,132,100,800 +19900131,1800,132,100,775 +19900131,1800,132,100,750 +19900131,1800,132,100,740 +19900131,1800,132,100,700 +19900131,1800,132,100,650 +19900131,1800,132,100,620 +19900131,1800,132,100,600 +19900131,1800,132,100,550 +19900131,1800,132,100,500 +19900131,1800,132,100,450 +19900131,1800,132,100,400 +19900131,1800,132,100,375 +19900131,1800,132,100,350 +19900131,1800,132,100,300 +19900131,1800,132,100,250 +19900131,1800,132,100,245 +19900131,1800,132,100,225 +19900131,1800,132,100,200 +19900131,1800,132,100,175 +19900131,1800,132,100,150 +19900131,1800,132,100,125 +19900131,1800,132,100,100 +19900131,1800,132,100,70 +19900131,1800,132,100,50 +19900131,1800,132,100,30 +19900131,1800,132,100,20 +19900131,1800,132,100,10 +19900131,1800,132,100,9 +19900131,1800,132,100,7 +19900131,1800,132,100,5 +19900131,1800,132,100,3 +19900131,1800,132,100,2 +19900131,1800,132,100,1 +19900131,1800,132,210,40 +19900131,1800,130,100,1000 +19900131,1800,130,100,975 +19900131,1800,130,100,950 +19900131,1800,130,100,925 +19900131,1800,130,100,900 +19900131,1800,130,100,875 +19900131,1800,130,100,850 +19900131,1800,130,100,825 +19900131,1800,130,100,800 +19900131,1800,130,100,775 +19900131,1800,130,100,750 +19900131,1800,130,100,740 +19900131,1800,130,100,700 +19900131,1800,130,100,650 +19900131,1800,130,100,620 +19900131,1800,130,100,600 +19900131,1800,130,100,550 +19900131,1800,130,100,500 +19900131,1800,130,100,450 +19900131,1800,130,100,400 +19900131,1800,130,100,375 +19900131,1800,130,100,350 +19900131,1800,130,100,300 +19900131,1800,130,100,250 +19900131,1800,130,100,245 +19900131,1800,130,100,225 +19900131,1800,130,100,200 +19900131,1800,130,100,175 +19900131,1800,130,100,150 +19900131,1800,130,100,125 +19900131,1800,130,100,100 +19900131,1800,130,100,70 +19900131,1800,130,100,50 +19900131,1800,130,100,30 +19900131,1800,130,100,20 +19900131,1800,130,100,10 +19900131,1800,130,100,9 +19900131,1800,130,100,7 +19900131,1800,130,100,5 +19900131,1800,130,100,3 +19900131,1800,130,100,2 +19900131,1800,130,100,1 +19900131,1800,130,210,40 +19900131,1800,129,100,1000 +19900131,1800,129,100,975 +19900131,1800,129,100,950 +19900131,1800,129,100,925 +19900131,1800,129,100,900 +19900131,1800,129,100,875 +19900131,1800,129,100,850 +19900131,1800,129,100,825 +19900131,1800,129,100,800 +19900131,1800,129,100,775 +19900131,1800,129,100,750 +19900131,1800,129,100,740 +19900131,1800,129,100,700 +19900131,1800,129,100,650 +19900131,1800,129,100,620 +19900131,1800,129,100,600 +19900131,1800,129,100,550 +19900131,1800,129,100,500 +19900131,1800,129,100,450 +19900131,1800,129,100,400 +19900131,1800,129,100,375 +19900131,1800,129,100,350 +19900131,1800,129,100,300 +19900131,1800,129,100,250 +19900131,1800,129,100,245 +19900131,1800,129,100,225 +19900131,1800,129,100,200 +19900131,1800,129,100,175 +19900131,1800,129,100,150 +19900131,1800,129,100,125 +19900131,1800,129,100,100 +19900131,1800,129,100,70 +19900131,1800,129,100,50 +19900131,1800,129,100,30 +19900131,1800,129,100,20 +19900131,1800,129,100,10 +19900131,1800,129,100,9 +19900131,1800,129,100,7 +19900131,1800,129,100,5 +19900131,1800,129,100,3 +19900131,1800,129,100,2 +19900131,1800,129,100,1 +19900131,1800,129,210,40 +19900131,1800,157,100,1000 +19900131,1800,157,100,975 +19900131,1800,157,100,950 +19900131,1800,157,100,925 +19900131,1800,157,100,900 +19900131,1800,157,100,875 +19900131,1800,157,100,850 +19900131,1800,157,100,825 +19900131,1800,157,100,800 +19900131,1800,157,100,775 +19900131,1800,157,100,750 +19900131,1800,157,100,740 +19900131,1800,157,100,700 +19900131,1800,157,100,650 +19900131,1800,157,100,620 +19900131,1800,157,100,600 +19900131,1800,157,100,550 +19900131,1800,157,100,500 +19900131,1800,157,100,450 +19900131,1800,157,100,400 +19900131,1800,157,100,375 +19900131,1800,157,100,350 +19900131,1800,157,100,300 +19900131,1800,157,100,250 +19900131,1800,157,100,245 +19900131,1800,157,100,225 +19900131,1800,157,100,200 +19900131,1800,157,100,175 +19900131,1800,157,100,150 +19900131,1800,157,100,125 +19900131,1800,157,100,100 +19900131,1800,157,100,70 +19900131,1800,157,100,50 +19900131,1800,157,100,30 +19900131,1800,157,100,20 +19900131,1800,157,100,10 +19900131,1800,157,100,9 +19900131,1800,157,100,7 +19900131,1800,157,100,5 +19900131,1800,157,100,3 +19900131,1800,157,100,2 +19900131,1800,157,100,1 +19900131,1800,157,210,40 +19900131,1800,135,100,1000 +19900131,1800,135,100,975 +19900131,1800,135,100,950 +19900131,1800,135,100,925 +19900131,1800,135,100,900 +19900131,1800,135,100,875 +19900131,1800,135,100,850 +19900131,1800,135,100,825 +19900131,1800,135,100,800 +19900131,1800,135,100,775 +19900131,1800,135,100,750 +19900131,1800,135,100,740 +19900131,1800,135,100,700 +19900131,1800,135,100,650 +19900131,1800,135,100,620 +19900131,1800,135,100,600 +19900131,1800,135,100,550 +19900131,1800,135,100,500 +19900131,1800,135,100,450 +19900131,1800,135,100,400 +19900131,1800,135,100,375 +19900131,1800,135,100,350 +19900131,1800,135,100,300 +19900131,1800,135,100,250 +19900131,1800,135,100,245 +19900131,1800,135,100,225 +19900131,1800,135,100,200 +19900131,1800,135,100,175 +19900131,1800,135,100,150 +19900131,1800,135,100,125 +19900131,1800,135,100,100 +19900131,1800,135,100,70 +19900131,1800,135,100,50 +19900131,1800,135,100,30 +19900131,1800,135,100,20 +19900131,1800,135,100,10 +19900131,1800,135,100,9 +19900131,1800,135,100,7 +19900131,1800,135,100,5 +19900131,1800,135,100,3 +19900131,1800,135,100,2 +19900131,1800,135,100,1 +19900131,1800,135,210,40 +19900131,1800,138,100,1000 +19900131,1800,138,100,975 +19900131,1800,138,100,950 +19900131,1800,138,100,925 +19900131,1800,138,100,900 +19900131,1800,138,100,875 +19900131,1800,138,100,850 +19900131,1800,138,100,825 +19900131,1800,138,100,800 +19900131,1800,138,100,775 +19900131,1800,138,100,750 +19900131,1800,138,100,740 +19900131,1800,138,100,700 +19900131,1800,138,100,650 +19900131,1800,138,100,620 +19900131,1800,138,100,600 +19900131,1800,138,100,550 +19900131,1800,138,100,500 +19900131,1800,138,100,450 +19900131,1800,138,100,400 +19900131,1800,138,100,375 +19900131,1800,138,100,350 +19900131,1800,138,100,300 +19900131,1800,138,100,250 +19900131,1800,138,100,245 +19900131,1800,138,100,225 +19900131,1800,138,100,200 +19900131,1800,138,100,175 +19900131,1800,138,100,150 +19900131,1800,138,100,125 +19900131,1800,138,100,100 +19900131,1800,138,100,70 +19900131,1800,138,100,50 +19900131,1800,138,100,30 +19900131,1800,138,100,20 +19900131,1800,138,100,10 +19900131,1800,138,100,9 +19900131,1800,138,100,7 +19900131,1800,138,100,5 +19900131,1800,138,100,3 +19900131,1800,138,100,2 +19900131,1800,138,100,1 +19900131,1800,138,210,40 +19900131,1800,131,109,1 +19900131,1800,131,109,2 +19900131,1800,131,109,3 +19900131,1800,131,109,4 +19900131,1800,131,109,5 +19900131,1800,131,109,6 +19900131,1800,131,109,7 +19900131,1800,131,109,8 +19900131,1800,131,109,9 +19900131,1800,131,109,10 +19900131,1800,132,109,1 +19900131,1800,132,109,2 +19900131,1800,132,109,3 +19900131,1800,132,109,4 +19900131,1800,132,109,5 +19900131,1800,132,109,6 +19900131,1800,132,109,7 +19900131,1800,132,109,8 +19900131,1800,132,109,9 +19900131,1800,132,109,10 +19900131,1800,130,109,1 +19900131,1800,130,109,2 +19900131,1800,130,109,3 +19900131,1800,130,109,4 +19900131,1800,130,109,5 +19900131,1800,130,109,6 +19900131,1800,130,109,7 +19900131,1800,130,109,8 +19900131,1800,130,109,9 +19900131,1800,130,109,10 +19900131,1800,157,109,1 +19900131,1800,157,109,2 +19900131,1800,157,109,3 +19900131,1800,157,109,4 +19900131,1800,157,109,5 +19900131,1800,157,109,6 +19900131,1800,157,109,7 +19900131,1800,157,109,8 +19900131,1800,157,109,9 +19900131,1800,157,109,10 +19900131,1800,54,109,1 +19900131,1800,54,109,2 +19900131,1800,54,109,3 +19900131,1800,54,109,4 +19900131,1800,54,109,5 +19900131,1800,54,109,6 +19900131,1800,54,109,7 +19900131,1800,54,109,8 +19900131,1800,54,109,9 +19900131,1800,54,109,10 +19900131,1800,135,109,1 +19900131,1800,135,109,2 +19900131,1800,135,109,3 +19900131,1800,135,109,4 +19900131,1800,135,109,5 +19900131,1800,135,109,6 +19900131,1800,135,109,7 +19900131,1800,135,109,8 +19900131,1800,135,109,9 +19900131,1800,135,109,10 +19900131,1800,134,109,1 +19900131,1800,152,109,1 +19900131,1800,131,100,850 +19900131,1800,132,100,850 +19900131,1800,134,100,1000 +19900131,1800,152,100,1000 +19900131,2100,131,100,850 +19900131,2100,132,100,850 +19900131,2100,134,100,1000 +19900131,2100,152,100,1000 +19900201,0,131,100,1000 +19900201,0,131,100,975 +19900201,0,131,100,950 +19900201,0,131,100,925 +19900201,0,131,100,900 +19900201,0,131,100,875 +19900201,0,131,100,825 +19900201,0,131,100,800 +19900201,0,131,100,775 +19900201,0,131,100,750 +19900201,0,131,100,740 +19900201,0,131,100,700 +19900201,0,131,100,650 +19900201,0,131,100,620 +19900201,0,131,100,600 +19900201,0,131,100,550 +19900201,0,131,100,500 +19900201,0,131,100,450 +19900201,0,131,100,400 +19900201,0,131,100,375 +19900201,0,131,100,350 +19900201,0,131,100,300 +19900201,0,131,100,250 +19900201,0,131,100,245 +19900201,0,131,100,225 +19900201,0,131,100,200 +19900201,0,131,100,175 +19900201,0,131,100,150 +19900201,0,131,100,125 +19900201,0,131,100,100 +19900201,0,131,100,70 +19900201,0,131,100,50 +19900201,0,131,100,30 +19900201,0,131,100,20 +19900201,0,131,100,10 +19900201,0,131,100,9 +19900201,0,131,100,7 +19900201,0,131,100,5 +19900201,0,131,100,3 +19900201,0,131,100,2 +19900201,0,131,100,1 +19900201,0,131,210,40 +19900201,0,132,100,1000 +19900201,0,132,100,975 +19900201,0,132,100,950 +19900201,0,132,100,925 +19900201,0,132,100,900 +19900201,0,132,100,875 +19900201,0,132,100,825 +19900201,0,132,100,800 +19900201,0,132,100,775 +19900201,0,132,100,750 +19900201,0,132,100,740 +19900201,0,132,100,700 +19900201,0,132,100,650 +19900201,0,132,100,620 +19900201,0,132,100,600 +19900201,0,132,100,550 +19900201,0,132,100,500 +19900201,0,132,100,450 +19900201,0,132,100,400 +19900201,0,132,100,375 +19900201,0,132,100,350 +19900201,0,132,100,300 +19900201,0,132,100,250 +19900201,0,132,100,245 +19900201,0,132,100,225 +19900201,0,132,100,200 +19900201,0,132,100,175 +19900201,0,132,100,150 +19900201,0,132,100,125 +19900201,0,132,100,100 +19900201,0,132,100,70 +19900201,0,132,100,50 +19900201,0,132,100,30 +19900201,0,132,100,20 +19900201,0,132,100,10 +19900201,0,132,100,9 +19900201,0,132,100,7 +19900201,0,132,100,5 +19900201,0,132,100,3 +19900201,0,132,100,2 +19900201,0,132,100,1 +19900201,0,132,210,40 +19900201,0,130,100,1000 +19900201,0,130,100,975 +19900201,0,130,100,950 +19900201,0,130,100,925 +19900201,0,130,100,900 +19900201,0,130,100,875 +19900201,0,130,100,850 +19900201,0,130,100,825 +19900201,0,130,100,800 +19900201,0,130,100,775 +19900201,0,130,100,750 +19900201,0,130,100,740 +19900201,0,130,100,700 +19900201,0,130,100,650 +19900201,0,130,100,620 +19900201,0,130,100,600 +19900201,0,130,100,550 +19900201,0,130,100,500 +19900201,0,130,100,450 +19900201,0,130,100,400 +19900201,0,130,100,375 +19900201,0,130,100,350 +19900201,0,130,100,300 +19900201,0,130,100,250 +19900201,0,130,100,245 +19900201,0,130,100,225 +19900201,0,130,100,200 +19900201,0,130,100,175 +19900201,0,130,100,150 +19900201,0,130,100,125 +19900201,0,130,100,100 +19900201,0,130,100,70 +19900201,0,130,100,50 +19900201,0,130,100,30 +19900201,0,130,100,20 +19900201,0,130,100,10 +19900201,0,130,100,9 +19900201,0,130,100,7 +19900201,0,130,100,5 +19900201,0,130,100,3 +19900201,0,130,100,2 +19900201,0,130,100,1 +19900201,0,130,210,40 +19900201,0,129,100,1000 +19900201,0,129,100,975 +19900201,0,129,100,950 +19900201,0,129,100,925 +19900201,0,129,100,900 +19900201,0,129,100,875 +19900201,0,129,100,850 +19900201,0,129,100,825 +19900201,0,129,100,800 +19900201,0,129,100,775 +19900201,0,129,100,750 +19900201,0,129,100,740 +19900201,0,129,100,700 +19900201,0,129,100,650 +19900201,0,129,100,620 +19900201,0,129,100,600 +19900201,0,129,100,550 +19900201,0,129,100,500 +19900201,0,129,100,450 +19900201,0,129,100,400 +19900201,0,129,100,375 +19900201,0,129,100,350 +19900201,0,129,100,300 +19900201,0,129,100,250 +19900201,0,129,100,245 +19900201,0,129,100,225 +19900201,0,129,100,200 +19900201,0,129,100,175 +19900201,0,129,100,150 +19900201,0,129,100,125 +19900201,0,129,100,100 +19900201,0,129,100,70 +19900201,0,129,100,50 +19900201,0,129,100,30 +19900201,0,129,100,20 +19900201,0,129,100,10 +19900201,0,129,100,9 +19900201,0,129,100,7 +19900201,0,129,100,5 +19900201,0,129,100,3 +19900201,0,129,100,2 +19900201,0,129,100,1 +19900201,0,129,210,40 +19900201,0,157,100,1000 +19900201,0,157,100,975 +19900201,0,157,100,950 +19900201,0,157,100,925 +19900201,0,157,100,900 +19900201,0,157,100,875 +19900201,0,157,100,850 +19900201,0,157,100,825 +19900201,0,157,100,800 +19900201,0,157,100,775 +19900201,0,157,100,750 +19900201,0,157,100,740 +19900201,0,157,100,700 +19900201,0,157,100,650 +19900201,0,157,100,620 +19900201,0,157,100,600 +19900201,0,157,100,550 +19900201,0,157,100,500 +19900201,0,157,100,450 +19900201,0,157,100,400 +19900201,0,157,100,375 +19900201,0,157,100,350 +19900201,0,157,100,300 +19900201,0,157,100,250 +19900201,0,157,100,245 +19900201,0,157,100,225 +19900201,0,157,100,200 +19900201,0,157,100,175 +19900201,0,157,100,150 +19900201,0,157,100,125 +19900201,0,157,100,100 +19900201,0,157,100,70 +19900201,0,157,100,50 +19900201,0,157,100,30 +19900201,0,157,100,20 +19900201,0,157,100,10 +19900201,0,157,100,9 +19900201,0,157,100,7 +19900201,0,157,100,5 +19900201,0,157,100,3 +19900201,0,157,100,2 +19900201,0,157,100,1 +19900201,0,157,210,40 +19900201,0,135,100,1000 +19900201,0,135,100,975 +19900201,0,135,100,950 +19900201,0,135,100,925 +19900201,0,135,100,900 +19900201,0,135,100,875 +19900201,0,135,100,850 +19900201,0,135,100,825 +19900201,0,135,100,800 +19900201,0,135,100,775 +19900201,0,135,100,750 +19900201,0,135,100,740 +19900201,0,135,100,700 +19900201,0,135,100,650 +19900201,0,135,100,620 +19900201,0,135,100,600 +19900201,0,135,100,550 +19900201,0,135,100,500 +19900201,0,135,100,450 +19900201,0,135,100,400 +19900201,0,135,100,375 +19900201,0,135,100,350 +19900201,0,135,100,300 +19900201,0,135,100,250 +19900201,0,135,100,245 +19900201,0,135,100,225 +19900201,0,135,100,200 +19900201,0,135,100,175 +19900201,0,135,100,150 +19900201,0,135,100,125 +19900201,0,135,100,100 +19900201,0,135,100,70 +19900201,0,135,100,50 +19900201,0,135,100,30 +19900201,0,135,100,20 +19900201,0,135,100,10 +19900201,0,135,100,9 +19900201,0,135,100,7 +19900201,0,135,100,5 +19900201,0,135,100,3 +19900201,0,135,100,2 +19900201,0,135,100,1 +19900201,0,135,210,40 +19900201,0,138,100,1000 +19900201,0,138,100,975 +19900201,0,138,100,950 +19900201,0,138,100,925 +19900201,0,138,100,900 +19900201,0,138,100,875 +19900201,0,138,100,850 +19900201,0,138,100,825 +19900201,0,138,100,800 +19900201,0,138,100,775 +19900201,0,138,100,750 +19900201,0,138,100,740 +19900201,0,138,100,700 +19900201,0,138,100,650 +19900201,0,138,100,620 +19900201,0,138,100,600 +19900201,0,138,100,550 +19900201,0,138,100,500 +19900201,0,138,100,450 +19900201,0,138,100,400 +19900201,0,138,100,375 +19900201,0,138,100,350 +19900201,0,138,100,300 +19900201,0,138,100,250 +19900201,0,138,100,245 +19900201,0,138,100,225 +19900201,0,138,100,200 +19900201,0,138,100,175 +19900201,0,138,100,150 +19900201,0,138,100,125 +19900201,0,138,100,100 +19900201,0,138,100,70 +19900201,0,138,100,50 +19900201,0,138,100,30 +19900201,0,138,100,20 +19900201,0,138,100,10 +19900201,0,138,100,9 +19900201,0,138,100,7 +19900201,0,138,100,5 +19900201,0,138,100,3 +19900201,0,138,100,2 +19900201,0,138,100,1 +19900201,0,138,210,40 +19900201,0,131,109,1 +19900201,0,131,109,2 +19900201,0,131,109,3 +19900201,0,131,109,4 +19900201,0,131,109,5 +19900201,0,131,109,6 +19900201,0,131,109,7 +19900201,0,131,109,8 +19900201,0,131,109,9 +19900201,0,131,109,10 +19900201,0,132,109,1 +19900201,0,132,109,2 +19900201,0,132,109,3 +19900201,0,132,109,4 +19900201,0,132,109,5 +19900201,0,132,109,6 +19900201,0,132,109,7 +19900201,0,132,109,8 +19900201,0,132,109,9 +19900201,0,132,109,10 +19900201,0,130,109,1 +19900201,0,130,109,2 +19900201,0,130,109,3 +19900201,0,130,109,4 +19900201,0,130,109,5 +19900201,0,130,109,6 +19900201,0,130,109,7 +19900201,0,130,109,8 +19900201,0,130,109,9 +19900201,0,130,109,10 +19900201,0,157,109,1 +19900201,0,157,109,2 +19900201,0,157,109,3 +19900201,0,157,109,4 +19900201,0,157,109,5 +19900201,0,157,109,6 +19900201,0,157,109,7 +19900201,0,157,109,8 +19900201,0,157,109,9 +19900201,0,157,109,10 +19900201,0,54,109,1 +19900201,0,54,109,2 +19900201,0,54,109,3 +19900201,0,54,109,4 +19900201,0,54,109,5 +19900201,0,54,109,6 +19900201,0,54,109,7 +19900201,0,54,109,8 +19900201,0,54,109,9 +19900201,0,54,109,10 +19900201,0,135,109,1 +19900201,0,135,109,2 +19900201,0,135,109,3 +19900201,0,135,109,4 +19900201,0,135,109,5 +19900201,0,135,109,6 +19900201,0,135,109,7 +19900201,0,135,109,8 +19900201,0,135,109,9 +19900201,0,135,109,10 +19900201,0,134,109,1 +19900201,0,152,109,1 +19900201,0,131,100,850 +19900201,0,132,100,850 +19900201,0,134,100,1000 +19900201,0,152,100,1000 diff --git a/ece2cmor/test/test_data/ifs_dummy/ICMGGGbla+003456 b/ece2cmor/test/test_data/ifs_dummy/ICMGGGbla+003456 new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/test/test_data/ifs_dummy/ICMGGbad+0034567 b/ece2cmor/test/test_data/ifs_dummy/ICMGGbad+0034567 new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/test/test_data/ifs_dummy/ICMGGbad+123456 b/ece2cmor/test/test_data/ifs_dummy/ICMGGbad+123456 new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/test/test_data/ifs_dummy/ICMSHok+004321 b/ece2cmor/test/test_data/ifs_dummy/ICMSHok+004321 new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/test/test_data/ifsdata/3hr/ICMGGECE3+199001 b/ece2cmor/test/test_data/ifsdata/3hr/ICMGGECE3+199001 new file mode 100644 index 0000000000000000000000000000000000000000..fe25cf9ff9fb00176fd3d1a0a6e6e7cf883e1b97 Binary files /dev/null and b/ece2cmor/test/test_data/ifsdata/3hr/ICMGGECE3+199001 differ diff --git a/ece2cmor/test/test_data/ifsdata/3hr/ICMSHECE3+199001 b/ece2cmor/test/test_data/ifsdata/3hr/ICMSHECE3+199001 new file mode 100644 index 0000000000000000000000000000000000000000..bb8dcb0278f4e968450e39a14df092ddebd0c19e Binary files /dev/null and b/ece2cmor/test/test_data/ifsdata/3hr/ICMSHECE3+199001 differ diff --git a/ece2cmor/test/test_data/ifsdata/6hr/ICMGGECE3+199001 b/ece2cmor/test/test_data/ifsdata/6hr/ICMGGECE3+199001 new file mode 100644 index 0000000000000000000000000000000000000000..d4004e9865a92ca9ee9eb320de0c70025291954b Binary files /dev/null and b/ece2cmor/test/test_data/ifsdata/6hr/ICMGGECE3+199001 differ diff --git a/ece2cmor/test/test_data/ifsdata/6hr/ICMSHECE3+199001 b/ece2cmor/test/test_data/ifsdata/6hr/ICMSHECE3+199001 new file mode 100644 index 0000000000000000000000000000000000000000..b683decccb9d2541da64a9d1f767dd789c6812b1 --- /dev/null +++ b/ece2cmor/test/test_data/ifsdata/6hr/ICMSHECE3+199001 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e0cc9ec212565ca567b853209c29f415d2531377b7c7d08a9f5d600191867e +size 93215264 diff --git a/ece2cmor/test/test_data/lpjg/.keep b/ece2cmor/test/test_data/lpjg/.keep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/test/test_data/lpjg/baresoilFrac_monthly.out b/ece2cmor/test/test_data/lpjg/baresoilFrac_monthly.out new file mode 100644 index 0000000000000000000000000000000000000000..cd26606456ea84fd53382c4d5b487cfe96603368 --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/baresoilFrac_monthly.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb2958164fe463a2ae0524f44dd47f3f9031c9a1d59a5ce7e7b9b33dcb89641 +size 3637800 diff --git a/ece2cmor/test/test_data/lpjg/cLand_monthly.out b/ece2cmor/test/test_data/lpjg/cLand_monthly.out new file mode 100644 index 0000000000000000000000000000000000000000..3a26c255f95d81b2660f01a324bdf02b87450415 --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/cLand_monthly.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fccc35d75b0187e516b91570c35c4510687a1f6212a9d629b7a680e151ff03b8 +size 3947400 diff --git a/ece2cmor/test/test_data/lpjg/cLitter_yearly.out b/ece2cmor/test/test_data/lpjg/cLitter_yearly.out new file mode 100644 index 0000000000000000000000000000000000000000..3b1dd6b1023689e89c6359bd30aa3039b90005b4 --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/cLitter_yearly.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dedfef6aa896a36cb834fccfac054a0052489631a3d4ea4ceebd4836c79a1e35 +size 1109400 diff --git a/ece2cmor/test/test_data/lpjg/fLulccAtmLut_monthly.out b/ece2cmor/test/test_data/lpjg/fLulccAtmLut_monthly.out new file mode 100644 index 0000000000000000000000000000000000000000..8093cf6fd617074048042ce8a9dfb2bf61c6628f --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/fLulccAtmLut_monthly.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e36415f57568421d0d0cdb7b55af82113d7f0048424e3f4af3d117fd192817 +size 36531502 diff --git a/ece2cmor/test/test_data/lpjg/fco2nat_monthly.out b/ece2cmor/test/test_data/lpjg/fco2nat_monthly.out new file mode 100644 index 0000000000000000000000000000000000000000..c9f2a147e37e73717590e7d207247de2896f9c54 --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/fco2nat_monthly.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94ef12cfb334aeb5e0e30a097adf333de3c7be4584316a4da0deba43bbf43eb6 +size 6424200 diff --git a/ece2cmor/test/test_data/lpjg/mrsll_monthly.out b/ece2cmor/test/test_data/lpjg/mrsll_monthly.out new file mode 100644 index 0000000000000000000000000000000000000000..6459c998e242371cb42a5f45407114864d91265c --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/mrsll_monthly.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4704d66a194b3dc225e4d91abbdd8e641d82455fdaab5cfd351d363f3b5483a0 +size 17956162 diff --git a/ece2cmor/test/test_data/lpjg/mrsosLut_monthly.out b/ece2cmor/test/test_data/lpjg/mrsosLut_monthly.out new file mode 100644 index 0000000000000000000000000000000000000000..2dfb16ade5cf9ddf6384c973b2076302ac1b9750 --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/mrsosLut_monthly.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069c82685b97851ff888faf429025d77e276a53bd9a2f8a8eac67395440a970c +size 27863010 diff --git a/ece2cmor/test/test_data/lpjg/mrsos_monthly.out b/ece2cmor/test/test_data/lpjg/mrsos_monthly.out new file mode 100644 index 0000000000000000000000000000000000000000..8611fa0fae5fcd68b5591aa8ddd80634c9e5004a --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/mrsos_monthly.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5cbf0e519e285112e37aa99513c1c0c2cf48e315ef6da9aee47e9054aa3ccb +size 3947400 diff --git a/ece2cmor/test/test_data/lpjg/nwdFracLut_monthly.out b/ece2cmor/test/test_data/lpjg/nwdFracLut_monthly.out new file mode 100644 index 0000000000000000000000000000000000000000..2572b58f27d302460f3561c326331de8717ad76c --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/nwdFracLut_monthly.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ae372eeb212b69f6271359642e7492bdf61f7c14144fbd1b819818ca2641d0a +size 30339722 diff --git a/ece2cmor/test/test_data/lpjg/tsl_daily.out b/ece2cmor/test/test_data/lpjg/tsl_daily.out new file mode 100644 index 0000000000000000000000000000000000000000..c34d5fa2c1ff82c0a06992d305169a2075d9eeb2 --- /dev/null +++ b/ece2cmor/test/test_data/lpjg/tsl_daily.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4edc5f0d60844fadd74608d69dab603f7e44f0ae44233a60f97b3b4435110bd5 +size 546164888 diff --git a/ece2cmor/test/test_data/nemo_dummy/bad_19991231_20000505_gridT.nc b/ece2cmor/test/test_data/nemo_dummy/bad_19991231_20000505_gridT.nc new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/test/test_data/nemo_dummy/bad_19991231_200005_gridU.nc b/ece2cmor/test/test_data/nemo_dummy/bad_19991231_200005_gridU.nc new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/test/test_data/nemo_dummy/exp_1d_19991221_20000101_icemod.nc b/ece2cmor/test/test_data/nemo_dummy/exp_1d_19991221_20000101_icemod.nc new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/test/test_data/nemo_dummy/exp_1m_19991231_20000505_gridT.nc b/ece2cmor/test/test_data/nemo_dummy/exp_1m_19991231_20000505_gridT.nc new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ece2cmor/test/test_data/utils/reduce_ml.py b/ece2cmor/test/test_data/utils/reduce_ml.py new file mode 100755 index 0000000000000000000000000000000000000000..c4c6a58b2d289a49344e213e4930a23393fcfc5c --- /dev/null +++ b/ece2cmor/test/test_data/utils/reduce_ml.py @@ -0,0 +1,58 @@ +#!/usr/bin/env python + +import traceback +import sys +import numpy +import logging +from gribapi import * + +VERBOSE=1 # verbose error reporting +log = logging.getLogger(__name__) + +def example(ifile,ofile,levels): + """ + Encoding of the pv coefficients. + """ + fin = open(ifile) + fout = open(ofile,'w') + i=0 + while True: + gid = grib_new_from_file(fin) + if(not gid): break + if(grib_get(gid,"typeOfLevel") == "hybrid"): + nlevs = int(grib_get(gid,"numberOfVerticalCoordinateValues"))/2 - 1 + frac = nlevs/levels + if(frac > 0): + indices = numpy.arange(nlevs,1,-frac)[::-1] + lev = int(grib_get(gid,"level")) + code = int(grib_get(gid,"indicatorOfParameter")) + if(code not in [134,152]): + if(lev not in indices): continue + newlev = indices.tolist().index(lev) + grib_set(gid,"level",newlev) + pv = grib_get_array(gid,"pv") + newpv = [pv[0]] + for i in indices: + newpv.append(pv[i-1]) + newpv.append(pv[nlevs]) + for i in indices: + newpv.append(pv[nlevs+i-1]) + grib_set_array(gid,"pv",newpv) + grib_set(gid,"numberOfVerticalCoordinateValues",2*(levels + 1)) + grib_write(gid,fout) + grib_release(gid) + fout.close() + fin.close() + +def main(ifile,ofile,levels): + try: + example(ifile,ofile,int(levels)) + except GribInternalError as err: + if VERBOSE: + traceback.print_exc(file=sys.stderr) + else: + log.error(sys.stderr,err.msg) + return 1 + +if __name__ == '__main__': + sys.exit(main(sys.argv[1],sys.argv[2],sys.argv[3])) diff --git a/ece2cmor/test/test_utils.py b/ece2cmor/test/test_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..b4ef7927fa6685495898d6ec41b81eb0358ab612 --- /dev/null +++ b/ece2cmor/test/test_utils.py @@ -0,0 +1,207 @@ +import datetime + +import netCDF4 +import numpy +import os +import re +from dateutil import relativedelta + +from ece2cmor3 import cmor_target, cmor_utils + + +def get_table_path(tab_id=None): + directory = os.path.join(os.path.dirname(cmor_target.__file__), "resources", "tables") + return os.path.join(directory, "CMIP6_" + tab_id + ".json") if tab_id else directory + + +def is_lfs_ref(filename): + f = open(filename, "rb") + bytes35 = str(f.read(35)) + return bytes35 == "version https://git-lfs.github.com/" + + +class nemo_output_factory(object): + + def __init__(self): + self.lons = None + self.lats = None + self.gridtype = None + self.startdate = None + self.enddate = None + self.frequency = None + self.depthaxis = None + self.layers = 0 + + def make_grid(self, nlons_, nlats_, gridtype_, nlayers=0): + self.lons = numpy.fromfunction(lambda i, j: (i * 360 + 0.5) / ((nlons_ + nlats_ - j) + 2), (nlons_, nlats_), + dtype=numpy.float64) + self.lats = numpy.fromfunction(lambda i, j: (j * 180 + 0.5) / ((nlats_ + nlons_ - i) + 2) - 90, + (nlons_, nlats_), dtype=numpy.float64) + self.gridtype = gridtype_ + self.depthaxis = gridtype_.replace("grid", "depth") + self.layers = nlayers + + def set_timeframe(self, startdate_, enddate_, frequency_): + self.startdate = startdate_ + self.enddate = enddate_ + expr = re.compile(r"^[1-9]([hdmy])$") + if re.match(expr, frequency_): + self.frequency = frequency_ + else: + raise Exception("Invalid frequency argument given: ", frequency_) + + def get_path(self, dir_, prefix_): + joinchar = '_' + startstr = cmor_utils.date2str(self.startdate) + stopstr = cmor_utils.date2str(self.enddate) + filename = joinchar.join([prefix_, self.frequency, startstr, stopstr, self.gridtype]) + ".nc" + return os.path.join(dir_, filename) + + def get_times(self): + fnum = int(self.frequency[0]) + funit = self.frequency[1] + period = None + if funit == 'h': + period = relativedelta.relativedelta(hours=+fnum) + elif funit == 'd': + period = relativedelta.relativedelta(days=+fnum) + elif funit == 'm': + period = relativedelta.relativedelta(months=+fnum) + elif funit == 'y': + period = relativedelta.relativedelta(years=+fnum) + else: + raise Exception("Unknown period: ", period) + d = datetime.datetime.combine(self.startdate, datetime.time()) + dstop = datetime.datetime.combine(self.enddate, datetime.time()) + tims = [] + while d < dstop: + tims.append(d) + d = d + period + return tims + + def write_variables(self, path_, prefix_, vars_): + + filepath = self.get_path(path_, prefix_) + root = netCDF4.Dataset(filepath, "w") + + root.createDimension("time_counter") + root.createDimension("y", self.lons.shape[0]) + root.createDimension("x", self.lons.shape[1]) + root.createDimension("axis_nbounds", 2) + tims = self.get_times() + + z = None + if self.depthaxis and self.layers: + z = "depth" + self.depthaxis + root.createDimension(z, self.layers) + + varlat = root.createVariable("nav_lat", "f8", ("y", "x",)) + varlat.standard_name = "latitude" + varlat.long_name = "Latitude" + varlat.units = "degrees north" + varlat.nav_model = self.gridtype + varlat[:, :] = self.lats + + varlon = root.createVariable("nav_lon", "f8", ("y", "x",)) + varlon.standard_name = "longitude" + varlon.long_name = "Longitude" + varlon.units = "degrees east" + varlon.nav_model = self.gridtype + varlon[:, :] = self.lons + + if z: + varz = root.createVariable(z, "f8", (z,)) + varz.long_name = "Vertical " + self.depthaxis.upper() + " levels" + varz.units = "m" + varz.positive = "down" + varz.bounds = z + "_bounds" + maxdepth = 6000. + nz = self.layers + step = maxdepth / nz + zarray = numpy.arange(0.1 * step, maxdepth, step) + varz[:] = zarray + + varzbnd = root.createVariable(z + "_bounds", "f8", (z, "axis_nbounds",)) + toparray = numpy.zeros(nz) + botarray = numpy.zeros(nz) + for i in range(0, nz - 1): + mid = 0.5 * (zarray[i] + zarray[i + 1]) + toparray[i + 1] = mid + botarray[i] = mid + botarray[nz - 1] = zarray[nz - 1] + 0.5 * (zarray[nz - 1] - zarray[nz - 2]) + varzbnd[:, 0] = toparray + varzbnd[:, 1] = botarray + + vartimc = root.createVariable("time_centered", "f8", ("time_counter",)) + vartimc.standard_name = "time" + vartimc.long_name = "Time axis" + vartimc.calendar = "gregorian" + vartimc.origin = "1950-01-01 00:00:00.0" + vartimc.units = "seconds since " + vartimc.origin + vartimc.bounds = "time_centered_bounds" + + vartim = root.createVariable("time_counter", "f8", ("time_counter",)) + vartim.axis = "T" + vartim.standard_name = "time" + vartim.long_name = "Time axis" + vartim.calendar = "gregorian" + vartim.origin = "1950-01-01 00:00:00.0" + vartim.units = "seconds since " + vartim.origin + vartim.bounds = "time_counter_bounds" + + vartimcbnd = root.createVariable("time_centered_bounds", "f8", ("time_counter", "axis_nbounds",)) + vartimbnd = root.createVariable("time_counter_bounds", "f8", ("time_counter", "axis_nbounds",)) + + timarray = netCDF4.date2num(tims, units=vartimc.units, calendar=vartimc.calendar) + vartim[:] = timarray + vartimc[:] = timarray + + n = len(timarray) + bndlarray = numpy.zeros(n) + bndrarray = numpy.zeros(n) + bndlarray[0] = timarray[0] - 0.5 * (timarray[1] - timarray[0]) + for i in range(0, n - 1): + mid = 0.5 * (timarray[i] + timarray[i + 1]) + bndlarray[i + 1] = mid + bndrarray[i] = mid + bndrarray[n - 1] = timarray[n - 1] + 0.5 * (timarray[n - 1] - timarray[n - 2]) + vartimbnd[:, 0] = bndlarray + vartimbnd[:, 1] = bndrarray + vartimcbnd[:, 0] = bndlarray + vartimcbnd[:, 1] = bndrarray + + for v in vars_: + atts = v.copy() + name = atts.pop("name") + dims = atts.pop("dims") + func = atts.pop("function") + if name: + if dims == 2: + var = root.createVariable(name, "f8", ("time_counter", "y", "x",)) + elif dims == 3: + var = root.createVariable(name, "f8", ("time_counter", z, "y", "x",)) + else: + raise Exception("Writing a variable with ", dims, "dimensions is not supported") + else: + raise Exception("Variable must have a name to be included in netcdf file") + for k in atts: + setattr(var, k, atts[k]) + if func: + if dims == 2: + var[:, :, :] = numpy.fromfunction(numpy.vectorize(func), + (len(tims), self.lons.shape[1], self.lons.shape[0]), + dtype=numpy.float64) + elif dims == 3: + var[:, :, :, :] = numpy.fromfunction(numpy.vectorize(func), + (len(tims), self.layers, self.lons.shape[1], + self.lons.shape[0]), dtype=numpy.float64) + else: + raise Exception("Variables with dimensions %d are not supported" % dims) + else: + if dims == 2: + var[:, :, :] = numpy.zeros((len(tims), self.lons.shape[1], self.lons.shape[0])) + elif dims == 3: + var[:, :, :, :] = numpy.zeros((len(tims), self.layers, self.lons.shape[1], self.lons.shape[0])) + else: + raise Exception("Variables with dimensions %d are not supported" % dims) + root.close() diff --git a/ece2cmor3 b/ece2cmor3 deleted file mode 160000 index 55826a064a7e8cd7f303843caef8f95b1a926f74..0000000000000000000000000000000000000000 --- a/ece2cmor3 +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 55826a064a7e8cd7f303843caef8f95b1a926f74 diff --git a/fx_files/ORCA025L75/sftof_Ofx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc b/fx_files/ORCA025L75/sftof_Ofx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc new file mode 100644 index 0000000000000000000000000000000000000000..6232d8d50ee44a6ec18d5eec3bee1b75705ca417 Binary files /dev/null and b/fx_files/ORCA025L75/sftof_Ofx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc differ diff --git a/fx_files/ORCA1L75/sftof_Ofx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc b/fx_files/ORCA1L75/sftof_Ofx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc new file mode 100644 index 0000000000000000000000000000000000000000..e748b02414bdd2c26ba556816ede6c34c624f811 Binary files /dev/null and b/fx_files/ORCA1L75/sftof_Ofx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc differ diff --git a/fx_files/T255L91/areacella_fx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc b/fx_files/T255L91/areacella_fx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc new file mode 100644 index 0000000000000000000000000000000000000000..ac6199352b28d5e7e64598ac92b728a8e7192b1e Binary files /dev/null and b/fx_files/T255L91/areacella_fx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc differ diff --git a/fx_files/T511L91/areacella_fx_EC-Earth3_piControl_r0i0p0f0_gr.nc b/fx_files/T511L91/areacella_fx_EC-Earth3_piControl_r0i0p0f0_gr.nc new file mode 100644 index 0000000000000000000000000000000000000000..baf5bb362827280cb3e292563d978c351726cb6d Binary files /dev/null and b/fx_files/T511L91/areacella_fx_EC-Earth3_piControl_r0i0p0f0_gr.nc differ diff --git a/outclass/CMIP6/ScenarioMIP/EC-EARTH-CC/cmip6-experiment-ScenarioMIP-ssp245/cmip6-data-request-varlist-ScenarioMIP-ssp245-EC-EARTH-CC.json b/outclass/CMIP6/ScenarioMIP/EC-EARTH-CC/cmip6-experiment-ScenarioMIP-ssp245/cmip6-data-request-varlist-ScenarioMIP-ssp245-EC-EARTH-CC.json index 9aac5430b4bafb4eafe7969ec353d1a309ab015e..6cf1edb8690854a075fffa28be130fcb35d5c1fb 100644 --- a/outclass/CMIP6/ScenarioMIP/EC-EARTH-CC/cmip6-experiment-ScenarioMIP-ssp245/cmip6-data-request-varlist-ScenarioMIP-ssp245-EC-EARTH-CC.json +++ b/outclass/CMIP6/ScenarioMIP/EC-EARTH-CC/cmip6-experiment-ScenarioMIP-ssp245/cmip6-data-request-varlist-ScenarioMIP-ssp245-EC-EARTH-CC.json @@ -3,8 +3,6 @@ "Amon": [ "tas", "ts", - "tasmin", - "tasmax", "psl", "ps", "uas", @@ -12,32 +10,16 @@ "sfcWind", "hurs", "huss", - "pr", - "prsn", - "prc", - "evspsbl", - "sbl", - "tauu", "tauv", - "hfls", - "hfss", - "rlds", "rlus", "rsds", - "rsus", - "rsdscs", - "rsuscs", "rldscs", "rsdt", "rsut", - "rlut", - "rlutcs", - "rsutcs", "prw", "clt", "clwvi", "clivi", - "rtmt", "cl", "clw", "cli", @@ -57,27 +39,9 @@ "Emon": [ "mrsol" ], - "LImon": [ - "snc", - "lwsnl", - "snd", - "snw", - "snm", - "sbl", - "hfdsn", - "tsn" - ], "Lmon": [ - "mrsos", - "mrso", - "mrfso", - "mrros", - "mrro", "tsl" ], - "Omon": [ - "prsn" - ], "SIday": [ "siconca" ], @@ -86,10 +50,7 @@ ], "day": [ "huss", - "tasmin", - "tasmax", "tas", - "pr", "psl", "mrso", "hurs", @@ -99,16 +60,11 @@ "clt", "tslsi", "prc", - "prsn", "uas", "vas", "sfcWindmax", "hfls", - "hfss", "rlds", - "rlus", - "rsds", - "rlut", "ta", "hus", "va", diff --git a/platforms/common/common.filesystem.sh b/platforms/common/common.filesystem.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd2f5285927a95027f7338a89aa60d9feb3ec3f7 --- /dev/null +++ b/platforms/common/common.filesystem.sh @@ -0,0 +1,513 @@ +#!/usr/bin/env bash +#shellcheck disable=SC2029,SC2034 +set -ue + +##################################################################################################################### +# Common Functions for handling file system operations on the different host types +# of the supported machines +# Author/Maintainer: J.R.Berlin +##################################################################################################################### + +##################################################################################################################### +# Globals: +# None +# Arguments: +# $1: the directory to be created +# $2: the target group to give access permission to +# Returns: +# None +# Purpose: creates the folder passed as parameter and assign proper group rights +# +##################################################################################################################### + +function create_directory() { + #default group + target_dir=$1 + target_group=${2:-"bsc32"} + + if [[ ! -d "${target_dir}" ]]; then + sg "${target_group}" "(umask 007; mkdir -p ${target_dir})" + fi +} + +##################################################################################################################### +# Globals: +# None, +# Arguments: +# $1: the folder to be removed +# Returns: +# None +# Purpose: removes the intermediate storage folder passed as parameter +# +##################################################################################################################### +function delete_intermediate_storage() { + rm -rf "$1" 2>/dev/null +} + +##################################################################################################################### +# Globals: +# None, +# Arguments: +# $1: the source folder/file to be copied +# $2: the target directory +# Returns: +# None +# Purpose: copies the intermediate storage folder passed as parameter +# +##################################################################################################################### +function copy_intermediate_storage() { + cp -f "$1" "$2" +} + +##################################################################################################################### +# Globals: +# None, +# Arguments: +# $1: the ecm folder whose content we want to enumerate +# Returns: +# None +# Purpose: enumerate the content of the intermediate storage folder passed as parameter +# +##################################################################################################################### +function list_intermediate_storage() { + ls "$1" +} + +##################################################################################################################### +# Globals: +# None, +# Arguments: +# $1: the folder whose permissions we want to change +# Returns: +# None +# Purpose: change the permissions of the intermediate storage folder passed as parameter +# +##################################################################################################################### +function chmod_intermediate_storage() { + chmod 744 "$1" +} + +##################################################################################################################### +# Globals: +# None, +# Arguments: +# $1: the folder we want to test +# Returns: +# None +# Purpose: test the intermediate storage folder passed as parameter +# +##################################################################################################################### +function test_intermediate_storage() { + #shellcheck disable=SC2086 + test $1 +} + +##################################################################################################################### +# Globals: +# RUN_dir, +# Arguments: +# source= source directory where are the files to be synchronized +# destination=path to the directory that will be synchronized with the source dir +# flags=options for the rsync +# Returns: +# None +# Purpose: synchronizes two directories from different file systems +# depending of the context, dt commands will be used by using blocking_rsync, +# and rsync otherwise, attempts will allowed to try to transfer the files in case +# of failure +##################################################################################################################### +function rsync_with_retry() { + + source=$2 + destination=$3 + flags=$1 + group=$4 + retry=0 + how_many_retry_copy_file=5 + use_dt_rsync=FALSE + + #shellcheck disable=SC2005 + exist_dtrsync=$(echo "$(command -v dtrsync)") + if [[ -n "${exist_dtrsync-}" ]]; then + use_dt_rsync=TRUE + fi + + while [[ $retry -le $how_many_retry_copy_file ]]; do + + t1=$(date +%s) + if [[ "${use_dt_rsync-}" == "FALSE" ]]; then + USE_DT_COMMANDS=FALSE + echo "Calling blocking_rsync with DT_COMMANDS=FALSE since they are not available on this machine" + fi + blocking_rsync "${flags}" "${source}" "${destination}" "${group}" + + if [[ $? ]]; then + t2=$(date +%s) + tr=$(date -d "0 -$t1 sec + $t2 sec" +%T) + echo "done." + break + else + ((retry++)) + fi + done + if [[ $retry -eq how_many_retry_copy_file ]]; then + echo "Transfer error in rsync" + exit 1 + fi +} + +##################################################################################################################### +# Globals: +# PROJDIR, target_destination, REMOTE_PATH +# Arguments: +# None +# Returns: +# None +# Purpose: synchronizes the auto-ecearth source folder with changes done in autosubmit auto-ecearth folder of the +# experiment +# +##################################################################################################################### +function transfer_model() { + local folders_that_will_not_be_transferred="" + . "${PROJDIR}/plugins/utils.sh" + source=${PROJDIR} + destination=${target_destination} + if [ "${PRODUCTION_EXP}" == TRUE ]; then + exclusions="--exclude={'templates','utils','test_cases','*.o','*.mod','*.exe','/BLD','ifs-36r4/bin','ifs-36r4/lib/*.a','COMPILE/arch*','COMPILE/cpp*','lpjg/build','tm5mp/build*','lpjg_forcing_ifs_T*','.git'}" + else + exclusions="--exclude={'templates','utils','test_cases','*.o','*.mod','*.exe','/BLD','ifs-36r4/bin','ifs-36r4/lib/*.a','COMPILE/arch*','COMPILE/cpp*','lpjg/build','tm5mp/build*','lpjg_forcing_ifs_T*'}" + fi + options="${exclusions} --no-group --delete --force --recursive --links --perms --times --specials --verbose" + if [[ "$#" -eq 1 ]]; then + folders_that_will_not_be_transferred="$1" + for folder in ${folders_that_will_not_be_transferred-}; do + options+=" --exclude='${source}/${folder}' " + done + fi + group=${GROUP} + rsync_with_retry "${options}" "${source}" "${REMOTE_PATH}${destination}" "${group}" +} + +##################################################################################################################### +# Globals: +# RUN_dir, +# Arguments: +# filenames: the file or list of files to be moved to the target location, +# target_dir: the target directory where the files will be moved +# is_transfer: defines if the target filesystem is the intermediate storage or esarchive ( permanent storage) +# Returns: +# None +# Purpose: move files across different file systems, used mainly in CLEAN and TRANSFER jobs, this is the base function, +# each platform can have its own custom implementation if needed ( for instance ecmwf-sc40 has its own version of this +# function, the moved files are removed from the source location +# +##################################################################################################################### +function move_files() { + local filenames=$1 + local target_dir=$2 + local is_transfer=$3 + + if [[ "${is_transfer-}" == "TRUE" ]]; then + # we are transferring from Scratch to Esarchive directly + blocking_rsync '--perms --links --times --recursive --remove-source-files --no-group --omit-dir-times --chmod=g+rwxs,o-rwx' "${filenames}" "${target_dir}" earth + else + #shellcheck disable=SC2086 + rsync --perms --links --times --recursive --remove-source-files --no-group --omit-dir-times --chmod=g+rwxs,o-rwx ${filenames} "${target_dir}" + fi + # check if there were errors + #shellcheck disable=SC2181 + if [[ $? != 0 ]]; then + echo "Error occurred on move_files....exiting" + exit 1 + fi +} + +##################################################################################################################### +# Globals: +# RUN_dir, ini_data_dir +# Arguments: +# None +# Returns: +# None +# Purpose: copy the initialization files to inidata directory in the scratch directory of the experiment, the command +# creates links to the files instead of copying these physically for optimizing storage +# +##################################################################################################################### +function copy_inidata() { + cp --symbolic-link --recursive --force --update "${ini_data_dir:?}" "${RUN_dir}" +} + +##################################################################################################################### +# Globals: +# +# Arguments: +# src: source folder for the needed restarts +# dst: target location where these will be copied +# Returns: +# None +# Purpose: prepare restarts to be linked in to the inidata folder +##################################################################################################################### +function copy_default_restarts() { + local src=$1 + local dst=$2 + cp --symbolic-link --recursive --force --update "${src}" "${dst}" +} + +##################################################################################################################### +# Globals: +# RUN_dir, SCRATCH_TMP_DIR, MEMBER, ROOTDIR +# Arguments: +# None +# Returns: +# None +# Purpose: clean up the temporary directories used and set run dir, used in almost all platforms +# +##################################################################################################################### +function setup_paths_transfer() { + rm -rf "${SCRATCH_TMP_DIR}" + mkdir -p "${SCRATCH_TMP_DIR}" + #shellcheck disable=SC2154 + RUN_dir=${ROOTDIR}/${START_date}/${MEMBER}/runtime +} + +##################################################################################################################### +# Globals: +# SCRATCH_DIR, HPCPROJ, HPCUSER, EXPID,PROJDEST +# Arguments: +# None +# Returns: +# None +# Purpose: check the existence of the auto-ecearth folder in the experiment folder in the cluster +# +##################################################################################################################### +function check_model_existence() { + SCRATCH_MODEL_PATH=${SCRATCH_DIR}/${HPCPROJ}/${HPCUSER}/${EXPID}/${PROJDEST} + MODEL_EXISTS="FALSE" + if [[ -d ${SCRATCH_MODEL_PATH} ]]; then + MODEL_EXISTS="TRUE" + export MODEL_EXISTS + fi +} + +##################################################################################################################### +# Globals: +# PROJDIR, SCRATCH_DIR, HPCPROJ, HPCUSER, EXPID, HPCARCH +# Arguments: +# None +# Returns: +# None +# Purpose: prepare/load needed libraries in order to execute the synchronize process +# +##################################################################################################################### +function setup_synchronize() { + export target_destination=$SCRATCH_DIR/$HPCPROJ/$HPCUSER/$EXPID/ + export REMOTE_PATH=' ' + # import custom architecture + #shellcheck disable=SC1090 #since these files just import functions + . "${PROJDIR}/platforms/${HPCARCH}/filesystem.sh" +} + +##################################################################################################################### +# Globals: +# RUN_dir, USE_REMOTE_HOST, HPCUSER, HPCHOST +# Arguments: +# source_cmor_dir= source location for the cmorized files , usually the folder that corresponds to the chunk folder +# target_cmor_dir= target destination where the files will be moved +# is_transfer= indicates if the temporary storage will be used or not +# Returns: +# None +# Purpose: upper level function to transfer the cmorized outputs either in CLEAN ( when USE_INTERMEDIATE_STORAGE=FALSE ) +# or the standard TRANSFER, this is the base function and other platforms may have different implementations such as +# ecmwf-xc40 +##################################################################################################################### +function move_cmor_files() { + local source_cmor_dir=$1 + local target_cmor_dir=$2 + local is_transfer=$3 + local remote_host=' ' + + # used in bscearth000 machine, maybe wise to create a function in platforms for this particular case + if [[ "${USE_REMOTE_HOST-}" == "TRUE" ]]; then + cmor_folders=$(ssh "${HPCUSER}@${HPCHOST}" "ls -d ${source_cmor_dir}/cmor_*_${CHUNK}/" 2>/dev/null) && returncode=$? || returncode=$? + if [[ -n "${cmor_folders-}" && ${returncode} -eq 0 ]]; then + for cmor_remote_dir in ${cmor_folders}; do + list_of_cmor_files=$(ssh "${HPCUSER}@${HPCHOST}" "ls ${cmor_remote_dir}" 2>/dev/null) && returncode=$? || returncode=$? + if [[ -n "${list_of_cmor_files-}" && ${returncode} -eq 0 ]]; then + echo "moving cmor files ....." + move_files "${HPCUSER}@${HPCHOST}:${cmor_remote_dir}" "${target_cmor_dir}" "${is_transfer}" + # remove cmor folder after moving the files + # if there where some files left behind, this method will throw an exception making the job to crash + ssh "${HPCUSER}@${HPCHOST}" "find ${cmor_remote_dir} -type d -delete" + fi + done + fi + else + if [[ -d ${source_cmor_dir} ]]; then + echo "moving cmor files ....." + cmor_folders=$(ls -d "${source_cmor_dir}/cmor_"*"_${CHUNK}/" 2>/dev/null) && returncode=$? || returncode=$? + if [[ -n "${cmor_folders-}" && ${returncode} -eq 0 ]]; then + base_storage_cmor_target_dir=${target_cmor_dir} + for cmor_remote_dir in ${cmor_folders}; do + #defaults when we use intermediate storage structure must be the same in the intermediate storage + if [[ "${is_transfer-}" != "TRUE" ]]; then + target_cmor_dir=${base_storage_cmor_target_dir}/$(basename "${cmor_remote_dir}") + fi + move_files "${cmor_remote_dir}" "${target_cmor_dir}" "${is_transfer}" + # delete the folder, if there where some files left behind, this method will throw an exception making the job to crash + find "${cmor_remote_dir}" -type d -delete + done + fi + fi + fi +} + +##################################################################################################################### +# Globals: +# RUN_dir, ROOTDIR, EXPID +# Arguments: +# source_pattern: is the destination path for the output +# destination_path: is the name of the final folder of the destination path / +# list_of_files_to_copy: list of files to copy +# Returns: +# None +# Purpose: Local transfer of model output, the function first retrieve the list of files to be transferred and then +# if such file is not empty proceed to transfer them +##################################################################################################################### +function do_transfer() { + + # to leave the dt command output in log folder + cd "${ROOTDIR}/LOG_${EXPID}" + + source_pattern=$1 + destination_path=$2 + local remote_host=' ' + + get_list_of_files_to_copy && returncode=$? || returncode=$? + #apply mkdir and let the rsync apply the chmod + if [[ -n "${list_of_files_to_copy-}" ]]; then + create_directory "${destination_path}" "Earth" + for source_file_name in $list_of_files_to_copy; do + echo "transferring file ... ${source_file_name} ${destination_path}" + blocking_rsync '--perms --links --times --recursive --remove-source-files --no-group --omit-dir-times --chmod=g+rwxs,o-rwx' "${remote_host}${source_file_name}" "${destination_path}" Earth + done + fi +} + +##################################################################################################################### +# Globals: +# USE_REMOTE_HOST, HPCUSER, HPCHOST, source_pattern +# Arguments: +# None +# Returns: +# None +# Purpose: get the list of files to be copied to the cluster, used by transfer/clean templates +# +##################################################################################################################### +function get_list_of_files_to_copy() { + if [[ "${USE_REMOTE_HOST-}" == "TRUE" ]]; then + list_of_files_to_copy=$(ssh "${HPCUSER}@${HPCHOST}" "ls ${source_pattern}" 2>/dev/null) + remote_host=${HPCUSER}@${HPCHOST}: + else + list_of_files_to_copy=$(ls "${source_pattern}" 2>/dev/null) + fi +} + +##################################################################################################################### +# Globals: +# RUN_dir, +# Arguments: +# None +# Returns: +# None +# Purpose: performs the synchronization by transferring the model files to the cluster for preparation before running +# the experiment, is the common interface for the synchronization template, implementation may be different depending +# on the underlying architecture where the sync needs to be executed +# +##################################################################################################################### +function do_synchronize() { + folders_that_will_not_be_transferred="" + if [[ "$#" -eq 1 ]] ; then + folders_that_will_not_be_transferred="$1" + fi + echo "Calling function transfer_model" + transfer_model "${folders_that_will_not_be_transferred}" + echo "common.synchronize Done" +} + +##################################################################################################################### +# Globals: +# RUN_dir, INTERMEDIATE_EXP_DIR, MODEL, EXPID +# Arguments: +# None +# Returns: +# None +# Purpose: Prepare source and target paths for CLEAN/TRANSFER +##################################################################################################################### +function setup_paths_localtrans() { + src=${INTERMEDIATE_EXP_DIR} + local_INTERMEDIATE_EXP_DIR=/gpfs/archive/bsc32/esarchive/exp/${MODEL} + #shellcheck disable=SC2034 + destination_folder=${local_INTERMEDIATE_EXP_DIR}/${EXPID}/original_files/ +} + +# copy to scratch the platforms files +##################################################################################################################### +# Globals: +# ROOTDIR, PROJDEST, PROJDIR +# Arguments: +# None +# Returns: +# None +# Purpose: send the initial set of libraries used by the synchronize job in order to be able to run +# +##################################################################################################################### +function copy_platform_environment_to_host() { + mkdir -p "${ROOTDIR}/${PROJDEST}/platforms" + rsync --recursive --links --perms --times --owner --devices --specials --verbose --omit-dir-times "${PROJDIR}/platforms/" "${ROOTDIR}/${PROJDEST}/platforms" + rsync --recursive --links --perms --times --owner --devices --specials --verbose --omit-dir-times "${PROJDIR}/plugins/" "${ROOTDIR}/${PROJDEST}/plugins" +} + +##################################################################################################################### +# Globals: +# RUN_dir, LOGDIR, CHUNK, START_date, MEMBER, STAMP, PATHOUT, HPCARCH +# Arguments: +# None +# Returns: +# None +# Purpose: copy logs to the proper storage location before wiping out the experiment folder ( used by CLEAN_EXPERIMENT ) +##################################################################################################################### +function save_logs() { + if [[ "${USE_INTERMEDIATE_STORAGE}" == "TRUE" && "${HPCARCH}" == "meluxina" ]];then + echo "Save_logs disabled for Meluxina with Intermeadiate Storage workflow" + else + echo "We are now storing log files" + cd "${LOGDIR}" + logs_tarfile="logfiles_${EXPID}_${STAMP}.tar" + IS_TRANSFER=TRUE + prepare_logs && returncode=$? || returncode=$? + if [[ ${returncode} -eq 0 ]] || [[ ${returncode} -eq 123 ]]; then + [[ ! -f ../${logs_tarfile}.gz ]] && gzip -9 "../${logs_tarfile}" + local pathout_logfiles="${PATHOUT}/logfiles/" + move_files "../${logs_tarfile}.gz" "${pathout_logfiles}" ${IS_TRANSFER} + rm -f "../${logs_tarfile}.gz" + fi + fi +} + +##################################################################################################################### +# Globals: +# INTERMEDIATE_EXP_DIR, EXPID, ROOTDIR, RM ( alias for deleting files ) +# Arguments: +# None +# Returns: +# None +# Purpose: wipe out the experiment folders (used intermediate storage, scratch) +##################################################################################################################### +function remove_experiment_folders() { + #remove the folder in intermediate storage (if it was used) + delete_intermediate_storage "${INTERMEDIATE_EXP_DIR}/${EXPID}" + #delete scratch folder + rm -rf "${ROOTDIR:?}/"* + # needed for indicating that the job finished successfully by autosubmit + mkdir -p "${ROOTDIR}/LOG_${EXPID}/" +} diff --git a/platforms/common/common.ini.sh b/platforms/common/common.ini.sh new file mode 100644 index 0000000000000000000000000000000000000000..f7b54db5951e1bc02826b0a745f3ea148448cd7c --- /dev/null +++ b/platforms/common/common.ini.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +function gen_oasis_rsts() { + echo "Returning to the default behaviour using the default OASIS restarts" +} + + diff --git a/platforms/common/common.utils.sh b/platforms/common/common.utils.sh new file mode 100644 index 0000000000000000000000000000000000000000..7484245878430904af7711dd56e62285028bf0d0 --- /dev/null +++ b/platforms/common/common.utils.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +########################################################################################## +# Common Functions for miscellaneous system operations on the different host types of the supported +# machines for job handling/management +# Author: J.R.Berlin +########################################################################################## diff --git a/platforms/marenostrum5/configure.sh b/platforms/marenostrum5/configure.sh new file mode 100644 index 0000000000000000000000000000000000000000..66cbc0a607fa8a5502ddb6bcc5868607df06cd58 --- /dev/null +++ b/platforms/marenostrum5/configure.sh @@ -0,0 +1,101 @@ +#!/usr/bin/env bash + +##################################################################################################################### +# Functions for handling modules and environment setup for marenostrum5 platform (inherited and updated from MN4) +# Author: E.Ferrer +##################################################################################################################### + +##################################################################################################################### +# Globals: +# PROJDIR +# Arguments: +# None +# Returns: +# None +# Purpose: main function to prepare execution environment for the underlying platform, that basically consist on +# setting up the modules to be used, common environment variables and the common paths +##################################################################################################################### +function load_platform_environment() { + # load utils/filesystem libraries for common env functions + . "${PROJDIR}/platforms/marenostrum5/filesystem.sh" + . "${PROJDIR}/platforms/marenostrum5/utils.sh" + #load global environment variables + setup_modules + #configure all modules needed for run the job + setup_environment_vars + # define all paths needed + setup_paths +} + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: Prepare the modules needed to execute ece2cmor component for Marenostrum5 platform +##################################################################################################################### +function load_modules_ece2cmor() { + set +xuve + module purge + module load oneapi/2023.2 hdf5/1.14.1-2 pnetcdf/1.12.3 netcdf/2023-06-14 cdo/1.8.2 aec/1.1.2 eccodes/2.34.1 gsl/2.7.1 libexpat/2.6.2 udunits/2.2.28 nco/5.2.2 cdo/1.8.2 + load_python_env + set -xuve +} + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: load and activate the conda environment with python on Marenostrum5 +##################################################################################################################### +function load_python_env() { + module load miniconda/24.1.2 + source /apps/GPP/MINICONDA/24.1.2/etc/profile.d/conda.sh + conda activate /gpfs/projects/bsc32/repository/apps/conda_envs/cmor_env_trunk + export PYTHONPATH=/gpfs/projects/bsc32/repository/apps/conda_envs/cmor_env_trunk/lib/python3.11/site-packages/ece2cmor3:$PYTHONPATH +} + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: Prepare the modules needed to execute the OASIS restart generation script for Marenostrum5 platform +##################################################################################################################### +function load_modules_oas_rsts_gen() { + set +xuve + module load hdf5/1.14.1-2 pnetcdf/1.12.3 #dependencies for netcdf + module load netcdf/2023-06-14 + module load cdo/1.8.2 + module load libexpat/2.6.2 + module load udunits/2.2.28 + module load gsl/2.7.1 + module load nco/5.2.2 + set -xuve +} + +##################################################################################################################### +# Globals: +# PATH, PROJDIR +# Arguments: +# None +# Returns: +# None +# Purpose: define the global vars with the path to the grib modules needed to run the ece2cmor module +##################################################################################################################### +function define_paths_ece2cmor() { + grib_api_path=${ECCODES_ROOT} + PATH=${grib_api_path}/bin:${PATH} + export GRIB_BIN_PATH=${grib_api_path}/bin + export GRIB_DEFINITION_PATH=${PROJDIR}/sources/sources/util/grib_table_126:${grib_api_path}/share/eccodes/definitions + export GRIB_SAMPLES_PATH=${grib_api_path}/share/eccodes/ifs_samples/grib1 + export PYTHONPATH=${PROJDIR}/ece2cmor/:$PYTHONPATH + export PYTHONPATH=${PROJDIR}/ece2cmor/ece2cmor3/scripts:$PYTHONPATH +} diff --git a/platforms/marenostrum5/ecconf.sh b/platforms/marenostrum5/ecconf.sh new file mode 100644 index 0000000000000000000000000000000000000000..25eec9d10f1c3752571c9fa39646b564ecee3082 --- /dev/null +++ b/platforms/marenostrum5/ecconf.sh @@ -0,0 +1,28 @@ +#!/usr/bin/env bash +set -ue + +##################################################################################################################### +# Globals: +# None +# Arguments: +# project_path: location of the experiment folder (/esarchive/autosubmit/) +# outclass: the outclass to be used for the generated outputs +# Returns: +# None +# Purpose: Runs ec-config tool for EC-Earth3 for Marenostrum 5 architecture +##################################################################################################################### +function ecconfig() { + + local project_path=$1 + local outclass=$2 + local COMPILER_OPTION=$( echo "${COMPILERS}" | awk '{print tolower($0)}' ) + + cd "${project_path}/sources/runtime/autosubmit" + ln -sf ../classic/platform . + #shellcheck disable=SC2086 + ../../sources/util/ec-conf/ec-conf --platform bsc-marenostrum5-${COMPILER_OPTION} \ + -o MOD:GENERAL:OUTPUT_CONTROL_FILES_DIR=${outclass} \ + ${ecearth_src_dir-} \ + config-run.xml + +} diff --git a/platforms/marenostrum5/filesystem.sh b/platforms/marenostrum5/filesystem.sh new file mode 100644 index 0000000000000000000000000000000000000000..59792e0ac6889796d13279b08c9129eb6a1f3a4d --- /dev/null +++ b/platforms/marenostrum5/filesystem.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env bash +#shellcheck disable=SC2034 + +##################################################################################################################### +# Functions for handling filesystem operations for marenostrum5 platform (inherited and updated from MN4) +# Author: E.Ferrer +##################################################################################################################### + +. "${PROJDIR}/platforms/common/common.filesystem.sh" + +##################################################################################################################### +# any override from the common libraries defined in filesystem.sh or new function goes here +##################################################################################################################### + +##################################################################################################################### +# Globals: +# EXPID, MODEL, INTERMEDIATE_EXP_DIR, EXPID, USE_INTERMEDIATE_STORAGE +# Arguments: +# None +# Returns: +# None +# Purpose: template function for Marenostrum5 for setting up common paths ( used as setup_paths_transfer_${HPCARCH} ) +# +##################################################################################################################### +function setup_paths_transfer_marenostrum5() { + #base function + setup_paths_transfer + #custom settings + if [[ "${USE_INTERMEDIATE_STORAGE-}" == "TRUE" ]]; then + PATHOUT="${INTERMEDIATE_EXP_DIR}/${EXPID}/original_files" + else + local_INTERMEDIATE_EXP_DIR=/gpfs/archive/bsc32/esarchive/exp/${MODEL} + PATHOUT="${local_INTERMEDIATE_EXP_DIR}/${EXPID}/original_files/" + fi +} diff --git a/platforms/marenostrum5/ini.sh b/platforms/marenostrum5/ini.sh new file mode 100644 index 0000000000000000000000000000000000000000..38a874a903f49f494c112e28bd95ffcebdedc797 --- /dev/null +++ b/platforms/marenostrum5/ini.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +set -ue + +function gen_oasis_rsts() { + echo "Running the script to generate the proper OASIS restart for IFS from the NEMO restart" + ( + cd "${SCRATCH_TMP_DIR}/${oas_sub_dir:?}" + . "${PROJDIR}/plugins/oasis_restarts.sh" + generate_oasis_rsts + ) +} + + diff --git a/platforms/marenostrum5/utils.sh b/platforms/marenostrum5/utils.sh new file mode 100644 index 0000000000000000000000000000000000000000..4a6e30a5af64275fe018f53adedfeebf0fc3744e --- /dev/null +++ b/platforms/marenostrum5/utils.sh @@ -0,0 +1,181 @@ +#!/usr/bin/env bash + +##################################################################################################################### +# Functions for handling filesystem operations for marenostrum5 platform (inherited and updated from MN4) +# Author: E.Ferrer +##################################################################################################################### + +#. ${PROJDIR}/platforms/common/common.utils.sh + +##################################################################################################################### +# any override from the common libraries defined in filesystem.sh or new function goes here +##################################################################################################################### + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: load the common modules required by standard jobs in Marenostrum5 +##################################################################################################################### +function setup_modules() { + set +xuve + module purge + module load oneapi/2023.2 + module load hdf5/1.14.1-2 pnetcdf/1.12.3 #dependencies for netcdf + module load netcdf/2023-06-14 + module load cdo/1.8.2 + module load aec/1.1.2 #dependency for eccodes + module load eccodes/2.34.1 + module list + set -xuve +} + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: load the common modules required by Lucia-lite in Marenostrum5 +##################################################################################################################### +function setup_modules_lucia-lite(){ + set +xuve + module load intel/2023.2.0 + module load mkl/2023.2.0 + load_python_env + set -xuve +} + +##################################################################################################################### +# Globals: +# USER +# Arguments: +# None +# Returns: +# None +# Purpose: Setup common paths as global variables, required by the different jobs running un the underlying platform +# used in nord3, transfer_node and bscearth000 as well +#################################################################################################################### +function setup_common_paths() { + # common globals + MODELS_DIR=/gpfs/projects/bsc32/models + #shellcheck disable=SC2155 + echo "TODO: check if needs update to run with RES accounts" + GROUP=bsc32 + export SCRATCH=/gpfs/scratch/${GROUP}/${USER} + # check if the machine has the environment tmp var defined + #shellcheck disable=SC2154 + export SCRATCH_TMP_DIR=${SCRATCH}/${EXPID}/${START_date}/${MEMBER}/tmp/${JOBNAME} + #initial conditions dirr for the platform, in order to have this working properly we need + #all IC/rst files in place synchronized from bsc32/projects + INTERMEDIATE_EXP_DIR=/gpfs/projects/${GROUP}/repository/exp + export EXTRA_DIR=/gpfs/projects/${GROUP}/repository + export IC_DIR=/gpfs/projects/${GROUP}/repository/ic +} + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: set the global variables and functions to be used by the jobs running in the underlying architecture +# used in nord3, transfer_node and bscearth000 as well +##################################################################################################################### +function setup_common_environment_vars() { + # common globals + export MODELS_DIR=/gpfs/projects/bsc32/models + GROUP=bsc32 +} + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: set the common set of global variables to be used for the jobs running on the underlying archictecture +##################################################################################################################### +function setup_environment_vars() { + # common globals + setup_common_environment_vars + export ECE3_POSTPROC_MACHINE=mn5 +} + +##################################################################################################################### +# Globals: +# CURRENT_ARCH, HPCARCH +# Arguments: +# None +# Returns: +# None +# Purpose: set the global variables refering to common paths to be used by the jobs running in the +# underlying architecture, used in nord3, transfer_node and bscearth000 as well +##################################################################################################################### +function setup_paths() { + setup_common_paths + if [[ "${CURRENT_ARCH}" == "${HPCARCH}" ]]; then + setup_paths_libs + fi +} + +##################################################################################################################### +# Globals: +# USER, PATH +# Arguments: +# None +# Returns: +# None +# Purpose: auxiliary function to load paths to the different modules that will be load when the job +# executes in the cluster +##################################################################################################################### +function setup_paths_libs() { + grib_api_path=/apps/GRIB/1.14.0/INTEL + PATH=${grib_api_path}/bin:${PATH} + #shellcheck disable=SC2155 + export SCRATCH=/gpfs/scratch/$(id -gn)/${USER} + export PATH=/gpfs/projects/bsc32/repository/apps/rebuild_nemo_marenostrum5:${PATH} + export PYTHONPATH=${grib_api_path}/lib/python2.7/site-packages/grib_api:${PYTHONPATH-} + export GRIB_BIN_PATH=${grib_api_path}/bin + export GRIB_DEFINITION_PATH=${grib_api_path}/share/grib_api/definitions + export GRIB_SAMPLES_PATH=${grib_api_path}/share/grib_api/ifs_samples/grib1 +} + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: auxiliary function to load paths to the different modules that will be load when the job +# executes in the cluster, used in transfer machines! +##################################################################################################################### +function setup_environment_vars_local() { + setup_common_environment_vars + export ECE3_POSTPROC_MACHINE=mn5 +} + +#used in transfer machines ! + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: auxiliary function to set the intermediate storage root path, used in transfer machines, this function +# overrides the base function in common.filesystem.sh +##################################################################################################################### +function setup_paths_local() { + echo "MN5 Paths" + GROUP=bsc32 + export INTERMEDIATE_EXP_DIR=/gpfs/projects/${GROUP}/repository/exp +} diff --git a/platforms/mn5_transfer_node/configure.sh b/platforms/mn5_transfer_node/configure.sh new file mode 100644 index 0000000000000000000000000000000000000000..16e63ca138a43499cc4ff3844f53ad2047827e79 --- /dev/null +++ b/platforms/mn5_transfer_node/configure.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env bash + +##################################################################################################################### +# Globals: +# PROJDIR +# Arguments: +# None +# Returns: +# None +# Purpose: main function to prepare execution environment for the underlying platform, that basically consist on +# setting up the modules to be used, common environment variables and the common paths +##################################################################################################################### +function load_platform_environment() { + # load utils/filesystem libraries for common env functions + . "${PROJDIR}/platforms/mn5_transfer_node/filesystem.sh" + . "${PROJDIR}/platforms/mn5_transfer_node/utils.sh" + #configure all modules needed for run the job + setup_environment_vars + # define all paths needed + setup_paths +} + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: Prepare the modules needed to execute the OASIS restart generation script for Marenostrum5 platform +##################################################################################################################### +function load_modules_oas_rsts_gen() { + echo "Function generate_oasis_restarts not available in this platform (transfer_node)" +} + diff --git a/platforms/mn5_transfer_node/ecconf.sh b/platforms/mn5_transfer_node/ecconf.sh new file mode 100644 index 0000000000000000000000000000000000000000..80561dffba5fac317293eb22755d49d16050faa3 --- /dev/null +++ b/platforms/mn5_transfer_node/ecconf.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash +set -ue + +##################################################################################################################### +# Globals: +# None +# Arguments: +# project_path: location of the experiment folder (/esarchive/autosubmit/) +# outclass: the outclass to be used for the generated outputs +# Returns: +# None +# Purpose: Runs ec-config tool for EC-Earth3 for a transfer node +##################################################################################################################### +function ecconfig() { + + echo "ec-conf shouldn't run with the transfer machine as the main one, exiting" + exit 1 + +} diff --git a/platforms/mn5_transfer_node/filesystem.sh b/platforms/mn5_transfer_node/filesystem.sh new file mode 100644 index 0000000000000000000000000000000000000000..ab8557fc477b45eb524170fa5798ada6cd4fdcb2 --- /dev/null +++ b/platforms/mn5_transfer_node/filesystem.sh @@ -0,0 +1,84 @@ +#!/usr/bin/env bash + +##################################################################################################################### +# Functions for handling filesystem operations for DT platform +# Author: J.R.Berlin +##################################################################################################################### + +# load base library to be used in DT machines, for DT machines it needs to be the Architecture choosen for the experiment +#shellcheck disable=SC1090 #as only functions are loaded +. "${PROJDIR}/platforms/${HPCARCH}/filesystem.sh" + +##################################################################################################################### +# any override from the common libraries defined in filesystem.sh or new function goes here +##################################################################################################################### + +##################################################################################################################### +# Globals: +# ROOTDIR, PROJDEST, PROJDIR +# Arguments: +# None +# Returns: +# None +# Purpose: send the initial set of libraries used by the synchronize job in order to be able to run +# +##################################################################################################################### +function copy_platform_environment_to_host() { + echo "DT host doesn´t need to transfer the platforms files" +} + +##################################################################################################################### +# Globals: +# HPCARCH +# Arguments: +# None +# Returns: +# None +# Purpose: Prepare common paths for transfer for the dt machine +# +##################################################################################################################### +function setup_paths_transfer_mn5_transfer_node() { + "setup_paths_transfer_${HPCARCH}" +} + +##################################################################################################################### +# Globals: +# ROOTDIR, EXPID, EXPID, HPCUSER, HPCHOST, HPCPROJ +# Arguments: +# None +# Returns: +# cmor_dataset_version_remote +# Purpose: check if the file CMOR_VERSION_DATASET is present on HPC +##################################################################################################################### +function check_cmor_dataset_version_remote(){ + [[ ! -f ${ROOTDIR}/LOG_${EXPID}/${EXPID}_CMOR_DATASETVERSION ]] && export cmor_dataset_version_remote="FALSE" +} + +##################################################################################################################### +# Globals: +# CMORDIR +# Arguments: +# None +# Returns: +# cmor_dataset_version +# Purpose: read the cmor_dataset_version in esarchive +##################################################################################################################### + +function get_esarchive_cmor_dataset_version(){ + cmor_dataset_version=$(find "${CMORDIR}"/*/*/*/*/*/*/ -mindepth 1 -maxdepth 1 -type d -printf '%f\n' | sort -u) +} + +##################################################################################################################### +# Globals: +# cmor_dataset_version, ROOTDIR, EXPID +# Arguments: +# None +# Returns: +# None +# Purpose: write the file ${EXPID}_CMOR_DATASETVERSION on the HPC's scratch +##################################################################################################################### + +function write_cmor_dataset_version(){ + create_directory "${ROOTDIR}/LOG_${EXPID}" "bsc32" + echo "${cmor_dataset_version}" > "${ROOTDIR}/LOG_${EXPID}/${EXPID}_CMOR_DATASETVERSION" +} diff --git a/platforms/mn5_transfer_node/ini.sh b/platforms/mn5_transfer_node/ini.sh new file mode 100644 index 0000000000000000000000000000000000000000..212c4ba239ecdbd15c70c05b9336c32175dc8c5c --- /dev/null +++ b/platforms/mn5_transfer_node/ini.sh @@ -0,0 +1 @@ +#!/usr/bin/env bash \ No newline at end of file diff --git a/platforms/mn5_transfer_node/utils.sh b/platforms/mn5_transfer_node/utils.sh new file mode 100644 index 0000000000000000000000000000000000000000..0f2accd183b04e19797de4c3da1860090350362b --- /dev/null +++ b/platforms/mn5_transfer_node/utils.sh @@ -0,0 +1,44 @@ +#!/usr/bin/env bash +#shellcheck disable=SC2155 + +##################################################################################################################### +# Functions for handling filesystem operations for data transfer machines part of marenostrum5 platform +# Author: J.R.Berlin +##################################################################################################################### + +. "${PROJDIR}/platforms/marenostrum5/utils.sh" + +##################################################################################################################### +# any override from the common libraries defined in filesystem.sh or new function goes below here +##################################################################################################################### + +##################################################################################################################### +# Globals: +# GROUP, USER, EXPID, START_date, MEMBER, GROUP, PATH +# Arguments: +# None +# Returns: +# None +# Purpose: set the global variables refering to common paths to be used by the jobs running in the +# underlying architecture ( initial conditions, grib modules, intermediate storage,etc ) +##################################################################################################################### +function setup_paths() { + setup_common_paths +} + +##################################################################################################################### +# Globals: +# None +# Arguments: +# None +# Returns: +# None +# Purpose: auxiliary function to common environment vars that will be used when the job +# executes in the transfer node +##################################################################################################################### +function setup_environment_vars() { + setup_common_environment_vars + #Machine for the ece3postproc + export ECE3_POSTPROC_MACHINE=mn5 + export SCRATCH=/gpfs/scratch/${GROUP}/${USER} +} diff --git a/sources/sources/util/define_table_126.sh.tmpl b/sources/sources/util/define_table_126.sh.tmpl new file mode 100644 index 0000000000000000000000000000000000000000..2bb5df3881e3522fadb5406e461deaa2963cd37c --- /dev/null +++ b/sources/sources/util/define_table_126.sh.tmpl @@ -0,0 +1,134 @@ +#!/bin/bash + +# This script defines grib table 126 for EC-Earth usage. +# The new grib definitions are put in the source dir of EC-Earth 3. + +set -e + +# --- Create target + +target_dir=[[[PLT:ACTIVE:ECEARTH_SRC_DIR]]]/util/grib_table_126/grib1/localConcepts/ecmf +mkdir -p ${target_dir} + +# --- Path to "grib_api/definitions" + +if command -v codes_export_resource &> /dev/null +then + for f in cfVarName.def name.def paramId.def shortName.def units.def + do + codes_export_resource -d grib1/localConcepts/ecmf/$f ${target_dir}/$f + done +else + GRIBAPI_BASE_DIR=[[[PLT:ACTIVE:GRIBAPI_BASE_DIR]]] + + errmess="*ERROR*: Could not find the path to grib_info or codes_info + commands. Please set GRIBAPI_BASE_DIR manually, or load the + GRIB_API or ECCODES module if you rely on module to set your + env, and run this script again." + + if [ -z "${GRIBAPI_BASE_DIR}" ] + then + echo Your GRIBAPI_BASE_DIR is empty + echo Trying to retrieve '/share/[grib_api|eccodes]/definitions' + echo from environment instead... + echo Note that if both grib_info and codes_info are found in your path, + echo GRIB_API takes precedence over ECCODES + + info=($(which grib_info codes_info 2>/dev/null || true)) + if [ -x "${info[0]}" ] + then + grib_def_dir=$(${info[0]} | sed -n "s|Default definition files path is used: ||p") + else + echo "$errmess" + exit 1 + fi + if [ -z "${grib_def_dir}" ] + then + echo "$errmess" + exit 1 + else + echo Found it. + fi + elif [ -e ${GRIBAPI_BASE_DIR}/share/grib_api/definitions ] + then + grib_def_dir=${GRIBAPI_BASE_DIR}/share/grib_api/definitions + + elif [ -e ${GRIBAPI_BASE_DIR}/share/eccodes/definitions ] + then + grib_def_dir=${GRIBAPI_BASE_DIR}/share/eccodes/definitions + else + echo "ERROR: Path ${GRIBAPI_BASE_DIR}/share/[grib_api|eccodes]/definitions does not exist" + exit 1 + fi + + # --- Populate target + + cp ${grib_def_dir}/grib1/localConcepts/ecmf/* ${target_dir} +fi +# --- additions to grib definitions for EC-Earth table 126 + +cd $target_dir + +for ((i=1;i<=255;i++)) +do +#cfVarname + cat >> cfVarName.def <> paramId.def <> name.def <> shortName.def <> units.def < $LOGDIR/%EXPID%_CMOR$(echo $component | tr '[:lower:]' '[:upper:]')_%SDATE%_%MEMBER%_%CHUNK%.cmd << "EOF" +# +# Manu: we will use the name of the job, which should +# +number_of_members=$(echo %TASKTYPE% | cut -d "_" -f 2 | sed -e 's/m//') +number_of_chunks=$(echo %TASKTYPE% | cut -d "_" -f 3 | sed -e 's/c//') + +# loop over every member to be executed +for THIS_MEMBER_NUMBER in $(seq $number_of_members); do + + THIS_MEMBER=$(printf "%02d\n" $THIS_MEMBER_NUMBER) + + # loop over every chunk to be executed + for THIS_CHUNK_NUMBER in $(seq $number_of_chunks); do + + THIS_CHUNK=$(printf "%03d\n" $THIS_CHUNK_NUMBER) + + # loop over every component to be cmorized + for component in %CMOR_WRAPPED_COMPONENTS%; do + + # cmorization output path + cmor_outpath=cmor_outputs/cmor_${component}_${THIS_MEMBER}_${THIS_CHUNK} + + script_name=%EXPID%_%SDATE%_${THIS_MEMBER}_${THIS_CHUNK}_CMOR$(echo $component | tr '[:lower:]' '[:upper:]').cmd + + # output the full script as is using HEREDOCS so that autosubmit does the + # variable change but does not evaluate anything else. + # we add quotes to avoid command substitution :) + cat > $script_name << "EOF" #!/usr/bin/env bash #shellcheck disable=SC2034,SC2050 @@ -32,60 +99,56 @@ GROUP=%CURRENT_PROJ% ROOTDIR=%CURRENT_ROOTDIR% PROJDEST=%PROJECT_DESTINATION% PROJDIR=$ROOTDIR/$PROJDEST -BSC_OUTCLASS=%BSC_OUTCLASS% -CMIP6_OUTCLASS=%CMIP6_OUTCLASS% +BSC_OUTCLASS=%ECEARTH_OUTPUT_BSC_OUTCLASS% +CMIP6_OUTCLASS= JOBNAME=%JOBNAME% -CMOR_REALIZATION_INDEX="%CMOR_REALIZATION_INDEX%" -[[ "%LPJG%" == TRUE ]] && LPJG=TRUE || LPJG=FALSE +CMOR_REALIZATION_INDEX="" +[[ "%ECEARTH_OUTPUT_LPJG%" == TRUE ]] && LPJG=TRUE || LPJG=FALSE TABLES_DIR=${PROJDIR}/ece2cmor/ece2cmor3/resources/tables -CMOR_INITIALIZATION_INDEX=%CMOR_INITIALIZATION_INDEX% +CMOR_INITIALIZATION_INDEX="1" -[[ -z $CMOR_INITIALIZATION_INDEX ]] || [[ $CMOR_INITIALIZATION_INDEX == "" ]] && CMOR_INITIALIZATION_INDEX="1" export HPCPROJ # # General Paths and Conf. # -MODEL=%MODEL% -MODEL_RES=%MODEL_RES% -VERSION=%VERSION% -#MODEL_DIR=${MODELS_DIR}/$MODEL/$VERSION -START_date=%SDATE% -MEMBER=%MEMBER% -MEMBERS_LIST="%MEMBERS%" +MODEL=ecearth +MODEL_RES=%ECEARTH_OUTPUT_MODEL_RES% +VERSION=%ECEARTH_OUTPUT_VERSION% +START_date=%ECEARTH_OUTPUT_SDATE% +MEMBER=%ECEARTH_OUTPUT_MEMBER% +MEMBERS_LIST=%ECEARTH_OUTPUT_MEMBERS% SCRATCH_DIR=%SCRATCH_DIR% -CMOR_ACTIVITY_ID=%CMOR_ACTIVITY_ID% -CMOR_EXP=%CMOR_EXP% -CMOR_MODEL_ID=%CMOR_MODEL_ID% -TEMPLATE_NAME=%TEMPLATE_NAME% +CMOR_ACTIVITY_ID=%ECEARTH_OUTPUT_CMOR_ACTIVITY_ID% +CMOR_EXP=%ECEARTH_OUTPUT_CMOR_EXP% +CMOR_MODEL_ID=%ECEARTH_OUTPUT_CMOR_MODEL_ID% +TEMPLATE_NAME=%ECEARTH_OUTPUT_TEMPLATE_NAME% TASKTYPE=%TASKTYPE% # # Chunk Management # -CHUNK=%CHUNK% -Chunk_start_date=%Chunk_START_DATE% -Chunk_end_date=%Chunk_END_DATE% -Chunk_last=%Chunk_LAST% +CHUNK=%ECEARTH_OUTPUT_CHUNK% +Chunk_start_date=%ECEARTH_OUTPUT_CHUNK_START_DATE% +Chunk_end_date=%ECEARTH_OUTPUT_CHUNK_END_DATE% +Chunk_last=%ECEARTH_OUTPUT_CHUNK_LAST% # In months -CHUNKSIZE=%CHUNKSIZE% +CHUNKSIZE=%ECEARTH_OUTPUT_CHUNKSIZE% RUN_dir=${ROOTDIR}/${START_date}/${MEMBER}/runtime -output_dir_atm=${RUN_dir}/output/ifs/$(printf "%03d\n" ${CHUNK}) -output_dir_oce=${RUN_dir}/output/nemo/$(printf "%03d\n" ${CHUNK}) -output_dir_lpjg=${RUN_dir}/output/lpjg/$(printf "%03d\n" ${CHUNK}) -output_dir_tm5=${RUN_dir}/output/tm5/$(printf "%03d\n" ${CHUNK}) +output_dir_atm=${RUN_dir}/output/ifs/$(printf "%03d\n" $CHUNK) +output_dir_oce=${RUN_dir}/output/nemo/$(printf "%03d\n" $CHUNK) # # Cmorization # -NFRP=%NFRP% -NEMO_resolution=%NEMO_resolution% -IFS_resolution=%IFS_resolution% -PROJ_TYPE=%PROJ_TYPE% -CMOR_ADD_STARTDATE=%CMOR_ADD_STARTDATE% -PRODUCTION_EXP=%PRODUCTION_EXP% -CMORIZATION=%CMORIZATION% -CMOR_EXP_CUSTOM=%CMOR_EXP_CUSTOM% +NFRP=%ECEARTH_OUTPUT_NFRP% +NEMO_resolution=%ECEARTH_OUTPUT_NEMO_RESOLUTION% +IFS_resolution=%ECEARTH_OUTPUT_IFS_RESOLUTION% +PROJ_TYPE=%ECEARTH_OUTPUT_PROJ_TYPE% +PRODUCTION_EXP=%ECEARTH_OUTPUT_PRODUCTION_EXP% +CMORIZATION=%ECEARTH_OUTPUT_CMORIZATION% +CMOR_EXP_CUSTOM=%ECEARTH_OUTPUT_CMOR_EXP_CUSTOM% +CMOR_ADD_STARTDATE=%ECEARTH_OUTPUT_CMOR_ADD_STARTDATE% ##################################################################################################################### # Globals: PROJDIR, CURRENT_ARCH, CMIP6_OUTCLASS, BSC_OUTCLASS, MODEL_RES, NEMO_resolution, IFS_resolution, MEMBER, @@ -205,7 +268,12 @@ function cmor_gen_templates() { . ${PROJDIR}/plugins/cmorization.sh create_sub_experiment_id # cd into the metadata dir to avoid clashes with other cmor jobs - metadata_dir=${RUN_dir}/../tmp/cmor/metadata-${CMOR_ACTIVITY_ID}-${component}-${MEMBER}-${startyear}${startmonth} +EOF + # this is horrible, but we need variable substitution here! + cat >> $script_name << EOF + metadata_dir=\${RUN_dir}/../tmp/cmor/metadata-\${CMOR_ACTIVITY_ID}-\${component}-${THIS_MEMBER}-${THIS_CHUNK}-\${startyear}\${startmonth} +EOF + cat >> $script_name << "EOF" mkdir -p "${metadata_dir}" cd "${metadata_dir}" ${PROJDIR}/ece2cmor/ece2cmor3/scripts/modify-metadata-template.sh ${activity_id} ${CMOR_EXP} ${model_id} ${PROJDIR}/ece2cmor/ece2cmor3/resources/metadata-templates/cmip6-CMIP-piControl-metadata-template.json @@ -216,7 +284,11 @@ function cmor_gen_templates() { for f in "${metadata_dir}/"*"${CMOR_EXP}"*-*-template.json; do sed -i 's/"realization_index": "1",/"realization_index": "'"${realization_index:?}"'",/g' "$f" - sed -i '10 a\ "outpath": "'${RUN_dir}'/cmor_outputs/cmor_'"${component}"'_'${CHUNK}'",' "$f" +EOF + cat >> $script_name << EOF + sed -i '10 a\ "outpath": "'"\${RUN_dir}"'/$cmor_outpath",' "\$f" +EOF + cat >> $script_name << "EOF" sed -i '11 a\ "output_path_template": "
<'"$cmordatasetversion"'>",' "$f" sed -i '15 a\ "variant_info": "forcing: Nat.Ant. Member generated from autosubmit member '${MEMBER}'",' "$f" sed -i 's/"initialization_index": "1",/"initialization_index": "'${CMOR_INITIALIZATION_INDEX}'",/g' "$f" @@ -257,12 +329,23 @@ function cmor() { cd "${metadata_dir}" find . -type f \! -name "*${cmor_model}*" -delete - tmpdir=${RUN_dir}/../tmp/cmor/tmp-${component}-${MEMBER}-${startyear}${startmonth} +EOF + # horrible, but we need variable substitution here + cat >> $script_name << EOF + tmpdir=\${RUN_dir}/../tmp/cmor/tmp-\${component}-${THIS_MEMBER}-${THIS_CHUNK}-${THIS_MEMBER}-\${startyear}\${startmonth} +EOF + # horrible, but we need variable substitution here + cat >> $script_name << "EOF" rm -rf "$tmpdir" mkdir -p "$tmpdir" - rm -rf "${RUN_dir}/cmor_outputs/cmor_${component}_${CHUNK}" - mkdir -p "${RUN_dir}/cmor_outputs/cmor_${component}_${CHUNK}" +EOF + # horrible, but we need variable substitution here + cat >> $script_name << EOF + rm -rf \$RUN_dir/$cmor_outpath + mkdir -p \$RUN_dir/$cmor_outpath +EOF + cat >> $script_name << "EOF" cd ${PROJDIR}/ece2cmor/ece2cmor3 #shellcheck disable=SC2086 ./ece2cmor.py --${cmor_model} --exp ${EXPID} --meta ${!metadata_template} --tmpdir "${tmpdir}" --tabledir ${TABLES_DIR} --varlist "${EXCEL_FILE}" "${!output_dir}" $skip_alevel_vars @@ -279,7 +362,11 @@ function cmor() { cmordatasetversion=$(cat $ROOTDIR/LOG_${EXPID}/${EXPID}_CMOR_DATASETVERSION) if [[ $component == "oce" ]]; then SFTOF_CMOR_FILENAME=sftof_Ofx_${dataset}_${CMOR_EXP}_r${realization_index:?}i${CMOR_INITIALIZATION_INDEX}p1f1_gn.nc - CMOR_OFX_DIR=${RUN_dir}/cmor_outputs/cmor_${component}_${CHUNK}/${CMOR_ACTIVITY_ID}/EC-Earth-Consortium/${dataset}/${CMOR_EXP}/r${realization_index:?}i${CMOR_INITIALIZATION_INDEX}p1f1/Ofx/sftof/gn/$cmordatasetversion +EOF + cat >> $script_name << EOF + CMOR_OFX_DIR=\$RUN_dir/$cmor_outpath/\${CMOR_ACTIVITY_ID}/EC-Earth-Consortium/\${dataset}/\${CMOR_EXP}/r\${realization_index:?}i\${CMOR_INITIALIZATION_INDEX}p1f1/Ofx/sftof/gn/\$cmordatasetversion +EOF + cat >> $script_name << "EOF" mkdir -p "$CMOR_OFX_DIR" cp ${PROJDIR}/fx_files/${NEMO_resolution}/sftof_Ofx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc "${CMOR_OFX_DIR}/$SFTOF_CMOR_FILENAME" fi @@ -291,15 +378,23 @@ function cmor() { else AREACELLA_CMOR_FILENAME=areacella_fx_${dataset}_${CMOR_EXP}_r${realization_index:?}i${CMOR_INITIALIZATION_INDEX}p1f1_gr.nc fi - CMOR_FX_DIR=${RUN_dir}/cmor_outputs/cmor_${component}_${CHUNK}/${CMOR_ACTIVITY_ID}/EC-Earth-Consortium/${dataset}/${CMOR_EXP}/r${realization_index:?}i${CMOR_INITIALIZATION_INDEX}p1f1/fx/areacella/gr/$cmordatasetversion +EOF + cat >> $script_name << EOF + CMOR_FX_DIR=\$RUN_dir/$cmor_outpath/\${CMOR_ACTIVITY_ID}/EC-Earth-Consortium/\${dataset}/\${CMOR_EXP}/r\${realization_index:?}i\${CMOR_INITIALIZATION_INDEX}p1f1/fx/areacella/gr/\$cmordatasetversion +EOF + cat >> $script_name << "EOF" mkdir -p "$CMOR_FX_DIR" [[ ! -f ${CMOR_FX_DIR}/$AREACELLA_CMOR_FILENAME ]] && cp ${PROJDIR}/fx_files/${IFS_resolution}/areacella_fx_EC-Earth3-CC_piControl_r0i0p0f0_gr.nc "${CMOR_FX_DIR}/$AREACELLA_CMOR_FILENAME" fi else +EOF + cat >> $script_name << EOF #if not first chunk, remove the files (because already generated at chunk 1 - find "${RUN_dir}/cmor_outputs/cmor_${component}_${CHUNK}" -type d -name "*fx" -exec rm -rf {} + + find "\$RUN_dir/$cmor_outpath" -type d -name "*fx" -exec rm -rf {} + fi - find "${RUN_dir}/cmor_outputs/cmor_${component}_${CHUNK}" -type f -name "*Eyr*nc" -print0 | while IFS= read -r -d '' f; do + find "\$RUN_dir/$cmor_outpath" -type f -name "*Eyr*nc" -print0 | while IFS= read -r -d '' f; do +EOF + cat >> $script_name << "EOF" if ncdump -h "$f" | grep -q "frequency = \"yrPt" ; then year=$(basename "$f" | cut -f7 -d"_" | cut -c1-4) cdo "settaxis,${year}-12-31,23:00" "$f" "${f}2" @@ -324,7 +419,11 @@ function cmor() { # ##################################################################################################################### function clean_cmor() { - cmor_dir=${RUN_dir}/cmor_outputs/cmor_${component}_${CHUNK} +EOF + cat >> $script_name << EOF + cmor_dir=\$RUN_dir/$cmor_outpath +EOF + cat >> $script_name << "EOF" cd "$cmor_dir" if [[ ${component} == "lpjg" ]]; then find "$cmor_dir" -type f -name "*nc" -print0 | while IFS= read -r -d '' f; do @@ -345,7 +444,11 @@ function clean_cmor() { # ##################################################################################################################### function check_cmor_timestep() { - cmor_dir=${RUN_dir}/cmor_outputs/cmor_${component}_${CHUNK} +EOF + cat >> $script_name << EOF + cmor_dir=\$RUN_dir/$cmor_outpath +EOF + cat >> $script_name << "EOF" cd "$cmor_dir" #Check one directory of each frequency for freq in 6hr day mon; do @@ -389,8 +492,8 @@ k the outputs." done } EOF - # we echo the main of the script because we need a subtitution for the component - echo "###################################################### + cat >> $script_name << EOF +###################################################### # # MAIN # @@ -410,15 +513,41 @@ if [[ \${CMORIZATION} == '' ]] || [[ \${CMORIZATION} == 'TRUE' ]]; then else echo \"CMORIZATION is disabled but the job \${TASKTYPE} is still in the job list of the experiment, please remove it if you are not using it\" fi - " >> $LOGDIR/%EXPID%_CMOR$(echo $component | tr '[:lower:]' '[:upper:]')_%SDATE%_%MEMBER%_%CHUNK%.cmd -done +EOF + # component loop + done + # chunk loop + done +# member loop +done + +# create the COMPSs workflow file +launch_greasy_script_name=$LOGDIR/%EXPID%_%SDATE%_%MEMBER%_%CHUNK%_LAUNCH_GREASY.cmd + +# loop over every member to be executed +for THIS_MEMBER_NUMBER in $(seq $number_of_members); do + + THIS_MEMBER=$(printf "%02d\n" $THIS_MEMBER_NUMBER) -# instruct to th run each of the components -for component in %CMOR_WRAPPED_COMPONENTS%; do - echo "[@ $LOGDIR @] /usr/bin/bash %EXPID%_FLUX_LAUNCH_CMOR_%SDATE%_%MEMBER%_%CHUNK%.cmd" >> $LOGDIR/%EXPID%_GREASY_WORKFLOW_%SDATE%_%MEMBER%_%CHUNK%.txt + # loop over every chunk to be executed + for THIS_CHUNK_NUMBER in $(seq $number_of_chunks); do + + THIS_CHUNK=$(printf "%03d\n" $THIS_CHUNK_NUMBER) + + # instruct to run each of the components + for component in %CMOR_WRAPPED_COMPONENTS%; do + cmor_script_name=%EXPID%_%SDATE%_${THIS_MEMBER}_${THIS_CHUNK}_CMOR$(echo $component | tr '[:lower:]' '[:upper:]').cmd + + if [[ "$THIS_CHUNK_NUMBER" != "1" ]]; then + # if this is not the first chunk, we set a dependency with the previous task + # (the minus indicated that). + echo "[# -1 #][@ $LOGDIR @] /usr/bin/bash $cmor_script_name" >> $launch_greasy_script_name + fi + done + done done # finally, set up and launch the in-situ workflow manager module load greasy -greasy $LOGDIR/%EXPID%_GREASY_WORKFLOW_%SDATE%_%MEMBER%_%CHUNK%.txt +greasy $launch_greasy_script_name diff --git a/templates/copy_sim_data.tmpl.sh b/templates/copy_sim_data.tmpl.sh new file mode 100644 index 0000000000000000000000000000000000000000..3a0b174d35f65718c089569b067d1091aa43c0c6 --- /dev/null +++ b/templates/copy_sim_data.tmpl.sh @@ -0,0 +1,53 @@ +#!/usr/bin/env bash + +######################################################################################################################## +# +# This script will copy the data from /gpfs/home (nvmes) to /gpfs/scratch, which are +# disks. +# +# VARIABLE INDEX: +# +# internal autosubmit: +# +# CURRENT_ROOTDIR: remote scratch dir (default Autosubmit) +# MEMBER: this job's member +# EXPID: experiment id of Autosubmit +# SDATE: start date of this workflow +# +# in expdef_cxxx.conf (if you use TODO INSERT HASH) data you should not change this: +# +# ECEARTH_OUTPUT: path to the experiment which we will link its data (/gpfs/scratch/bsc32/bsc032371/cxxx) +# ECEARTH_OUTPUT_SDATE: start date of the original data (i.e. YYYYMMDD) +# ECEARTH_OUTPUT_MEMBER: original data member (fc0, fc1). It shoud match MEMBER +# ECEARTH_OUTPUT_CHUNK: original data chunk +# ECEARTH_OUTPUT_EXPID: original data expid +# +# Manuel G. Marciani +# BSC-CNS - Earth Sciences Department +# 2024 +# +######################################################################################################################## + +CURRENT_ROOTDIR=%CURRENT_ROOTDIR% +CURRENT_MEMBER=%MEMBER% +CURRENT_EXPID=%EXPID% +CURRENT_SDATE=%SDATE% +DATA_MEMBER=%ECEARTH_OUTPUT_MEMBER% +DATA_OUTPUT=%ECEARTH_OUTPUT% +DATA_CHUNK=%ECEARTH_OUTPUT_CHUNK% +DATA_SDATE=%ECEARTH_OUTPUT_SDATE% +DATA_EXPID=%ECEARTH_OUTPUT_EXPID% + +# we copy everything but hidden files and folders +rsync --recursive --links --times --chmod=ugo=rw --devices --specials --verbose --exclude=".*" ${DATA_OUTPUT}/${DATA_SDATE} ${CURRENT_ROOTDIR}/ + +pushd $CURRENT_ROOTDIR/$DATA_SDATE +# looks for all files with the original experiment's expid on their name +# looking from data_output! +files_to_update=$(find . -name *$DATA_EXPID*) + +for file in $files_to_update; do + mv $file $(echo $file | sed -e 's/'$DATA_EXPID'/'$CURRENT_EXPID'/') +done + +popd diff --git a/templates/local_setup.tmpl.sh b/templates/local_setup.tmpl.sh new file mode 100644 index 0000000000000000000000000000000000000000..03a677f19e67f4d8e83f4fda0ec8f8e27d628ec2 --- /dev/null +++ b/templates/local_setup.tmpl.sh @@ -0,0 +1,139 @@ +#!/usr/bin/env bash + +######################################################################################################################## +# +# This script checks the configuration of the workflow. +# +# VARIABLE INDEX: +# +# internal autosubmit: +# +# CURRENT_ROOTDIR: remote scratch dir (default Autosubmit) +# MEMBER: this job's member +# EXPID: experiment id of Autosubmit +# SDATE: start date of this workflow +# +# in expdef_cxxx.conf (if you use TODO INSERT HASH) data you should not change this: +# +# ECEARTH_OUTPUT: path to the experiment which we will link its data (/gpfs/scratch/bsc32/bsc032371/cxxx) +# ECEARTH_OUTPUT_SDATE: original data startdate. It should match SDATE +# ECEARTH_OUTPUT_MEMBER: original data member (fc0, fc1). It shoud match MEMBER +# ECEARTH_OUTPUT_MEMBERS: list of members of the original data. It should match MEMBERS +# ECEARTH_OUTPUT_MODEL_RES: resolution of the original data +# ECEARTH_OUTPUT_VERSION: model version that produced the original data +# ECEARTH_OUTPUT_BSC_OUTCLASS: cmorization configuration from bsc of the original data +# ECEARTH_OUTPUT_CMOR_ACTIVITY_ID: identification of the cmor execise +# ECEARTH_OUTPUT_CMOR_EXP: experiment of the cmor (pre-industrial control, piControl, etc) +# ECEARTH_OUTPUT_CMOR_MODEL_ID: id of the model to produce original data +# ECEARTH_OUTPUT_LPJG: boolean to indicate if lpjg is enabled +# ECEARTH_OUTPUT_CHUNK: original data chunk +# ECEARTH_OUTPUT_CHUNK_START_DATE: original data Chunk Start date +# ECEARTH_OUTPUT_CHUNK_END_DATE: original data chunk's end date +# ECEARTH_OUTPUT_CHUNK_LAST: lst chunk to be cmorized +# ECEARTH_OUTPUT_CHUNKSIZE: lenght in months of the chunk (12 months, 6, etc) +# ECEARTH_OUTPUT_NFRP: IFS configuration +# ECEARTH_OUTPUT_NEMO_RESOLUTION: nemo grid indentifier of the original data +# ECEARTH_OUTPUT_IFS_RESOLUTION: ifs grid identifier of the original data +# ECEARTH_OUTPUT_PROJ_TYPE: original data project type +# ECEARTH_OUTPUT_PRODUCTION_EXP: boolean indicating if the original data is production experiment +# ECEARTH_OUTPUT_CMORIZATION: boolean that enables/disables cmorization +# ECEARTH_OUTPUT_CMOR_EXP_CUSTOM: custom flag for cmorization +# ECEARTH_OUTPUT_CMOR_ADD_STARTDATE: custom startdata for cmorization +# ECEARTH_OUTPUT_TEMPLATE_NAME: original dta template name +# +# Manuel G. Marciani +# BSC-CNS - Earth Sciences Department +# 2024 +# +######################################################################################################################## + +CURRENT_ROOTDIR=%CURRENT_ROOTDIR% +CURRENT_MEMBER=%MEMBER% +CURRENT_EXPID=%EXPID% +CURRENT_SDATE=%SDATE% +DATA_MEMBER=%ECEARTH_OUTPUT_MEMBER% +DATA_OUTPUT=%ECEARTH_OUTPUT% +DATA_CHUNK=%ECEARTH_OUTPUT_CHUNK% +DATA_SDATE=%ECEARTH_OUTPUT_SDATE% +DATA_EXPID=%ECEARTH_OUTPUT_EXPID% + +# Stolen from Okke van Eck (https://earth.bsc.es/gitlab/ovaneck) + +# Display error styled message with given argument and exit. +function fatal { + echo -e "FATAL: $1" 1>&2 + exit 1 +} + +# Display success styled message with given argument. +function success { + echo -e "$1" 1>&2 +} + +# Display info styled message with given argument. +function info { + echo -e "$1" 1>&2 +} + +# Display nonblocking error styled message with given argument. +function error { + echo -e "$1" 1>&2 +} + +# sanitize the configuration +if [ -z "${DATA_MEMBER}" ]; then + fatal "Data's member in expdef_cxxx.cond 'ECEARTH_OUTPUT_MEMBER' is unset." +fi + +if [ -z "${DATA_OUTPUT}" ]; then + fatal "Data's member in expdef_cxxx.cond 'ECEARTH_OUTPUT_MEMBER' is unset." +fi + +if [ -z "${DATA_CHUNK}" ]; then + fatal "Data's chunk in expdef_cxxx.cond 'ECEARTH_OUTPUT_CHUNK' is unset." +fi + +if [ -z "${DATA_SDATE}" ]; then + fatal "Data's start date in expdef_cxxx.cond 'ECEARTH_OUTPUT_SDATE' is unset." +fi + +if [ -z "${DATA_EXPID}" ]; then + fatal "Data's expid in expdef_cxxx.cond 'ECEARTH_OUTPUT_EXPID' is unset." +fi + +# check if the workflow's start date and the data's match +if [[ "$CURRENT_SDATE" != "$DATA_SDATE" ]]; then + # print to stderr + fatal "Data's start date in expdef_cxxx.conf 'ECEARTH_OUTPUT_SDATE' and this workflow's start date in expdef_cxxx.conf 'DATELIST' should be the same." +fi + +pushd ${DATA_OUTPUT}/${DATA_SDATE}/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/ifs/${DATA_CHUNK} + +# check if the workflow's start date and the data's match +if [[ "$CURRENT_MEMBER" != "$DATA_MEMBER" ]]; then + # print to stderr + fatal "Data's member in expdef_cxxx.conf 'ECEARTH_OUTPUT_MEMBER' and this workflow's member in expdef_cxxx.conf 'MEMBERS' should be the same." +fi + +# check if configured expid in in the file name +for ifs_output_file in $(ls -1); do + if [[ $DATA_EXPID == *"$ifs_output_file"* ]]; then + nop + else + fatal "File ${ifs_output_file} expid and configuration 'ECEARTH_OUTPUT_EXPID' in expdef_cxxx.conf do not match." + fi +done + +popd + +# there is no need for adapting ofx-data! +pushd ${DATA_OUTPUT}/${DATA_SDATE}/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK} + +for nemo_output_file in $(ls -1); do + # check if the expid is present in the file name + if [[ $DATA_EXPID != *"$nemo_output_file"* ]]; then + fatal "File ${nemo_output_file} expid and configuration 'ECEARTH_OUTPUT_EXPID' in expdef_cxxx.conf do not match." + fi +done + +success "Configuration is valid" diff --git a/templates/probe_efficiency.tmpl.sh b/templates/probe_efficiency.tmpl.sh index cc7415010992812a8b8308b5b7750b545ce623c8..35e9fdf8f3cc2427d9f2714b450261ebbc06a0a7 100644 --- a/templates/probe_efficiency.tmpl.sh +++ b/templates/probe_efficiency.tmpl.sh @@ -1,15 +1,32 @@ #!/usr/bin/env bash ######################################################################################################################## -# This job probes for Slurm's statistics of the previous job +# +# Record performance metrics from Slurm of the CMORWRAPPER job. +# +# VARIABLE INDEX: +# +# internal autosubmit: +# +# CURRENT_ROOTDIR: remote scratch dir +# EXPID: Autosubmit's experiment identification +# SDATE: Start date of this experiment (not the copied data, but should match it) +# MEMBER: Member of this experiment (not the copied data, but should match it) +# CHUNK: Current chunk of this job +# +# in expdef_cxxx.conf (if you use TODO INSERT HASH) data you should not change this: +# +# ECEARTH_OUTPUT: path to the experiment which we will link its data (/gpfs/scratch/bsc32/bsc032371/cxxx) +# ECEARTH_OUTPUT_SDATE: start date of the original data (i.e. YYYYMMDD) +# +# Manuel G. Marciani +# BSC-CNS - Earth Sciences Department +# 2024 +# ######################################################################################################################## # we should be able to grab by the chunk number -PREVIOUS_CMOR_JOB=%%_%%_%% -LOGDIR=$ROOTDIR/LOG_%EXPID% - -# TODO check if this makes sense -SLURM_JOBID=$(cat $LOGDIR/$PREVIOUS_CMOR_JOB.out | split "=" -f 2) - -sacct -j $SLURM_JOBID -P -o "Submit,Start,End,Wallclock,JobID,JobName,ReqMem,ReqCPUS,TotalCPU,Elapsed,MaxRSS,State" > $LOGDIR/$PREVIOUS_CMOR_JOB.stats +PREVIOUS_CMOR_JOB=%EXPID%_%SDATE%_%MEMBER%_%CHUNK%_CMORWRAPPER +LOGDIR=%CURRENT_ROOTDIR%/LOG_%EXPID% +sacct --name $PREVIOUS_CMOR_JOB -P -o "JobName,JobID,Submit,Start,End,ReqMem,ReqCPUS,TotalCPU,Elapsed,MaxRSS,State" > $LOGDIR/$PREVIOUS_CMOR_JOB.stats diff --git a/templates/symlink_sim_data.tmpl.sh b/templates/symlink_sim_data.tmpl.sh index a023bb8fdea0a459b0bf003c510c1e12530a25e4..c85d8d2f853e65f4522c30e09473a51178e909ba 100644 --- a/templates/symlink_sim_data.tmpl.sh +++ b/templates/symlink_sim_data.tmpl.sh @@ -2,20 +2,89 @@ ######################################################################################################################## # This job creates symlinks between the output of ecEarth and CMOR json tables -# to be executed by the tasks +# to be executed by the tasks. +# +# In this script, I call data the original data to be symlinked and workflow the +# workflow that is executing this script +# +# VARIABLE INDEX: +# +# internal autosubmit: +# +# EXPID: autosubmit (this!) experiment indentifier +# CURRENT_ROOTDIR: path to files of the experiment in remote +# MEMBER: this workflow's member +# +# in expdef_cxxx.conf (if you use TODO INSERT HASH) data you should not change this: +# +# ECEARTH_OUTPUT_MEMBER: original data member (fc0, fc1). It shoud match MEMBER +# ECEARTH_OUTPUT_CHUNK: original data chunk. +# ECEARTH_OUTPUT_SDATE: original data startdate. It should match SDATE. +# ECEARTH_OUTPUT_EXPID: original data Autosubmit experiment identifier. +# +# Manuel G. Marciani +# BSC-CNS - Earth Sciences Department +# 2024 +# ######################################################################################################################## -# where we link from -ECEARTH_OUTPUT=%ECEARTH_OUTPUT% -CMOR_JSON_TABLES=%CMOR_JSON_TABLES% -# where we link to -ROOTDIR=%CURRENT_ROOTDIR% -LOGDIR=$ROOTDIR/LOG_%EXPID% +CURRENT_EXPID=%EXPID% +CURRENT_ROOTDIR=%CURRENT_ROOTDIR% +CURRENT_MEMBER=%MEMBER% +DATA_MEMBER=%ECEARTH_OUTPUT_MEMBER% +DATA_CHUNK=%ECEARTH_OUTPUT_CHUNK% +DATA_SDATE=%ECEARTH_OUTPUT_SDATE% +DATA_EXPID=%ECEARTH_OUTPUT_EXPID% -# check if the folder exists -if [[ ]]; then - pushd $ROOTDIR - # TODO: CHECK IF THIS IS CORRECT - ln -s $ECEARTH_OUTPUT - popd +# check if the start date from the data and the workflow are the same +if [[ "$CURRENT_SDATE" != "$DATA_SDATE" ]]; then + # print to stderr + >&2 echo "Data's start date and this workflow's start date should be the same." + exit $ERRCODE +fi + +# check if the member from the data and the workflow are the same +if [[ "$CURRENT_MEMBER" != "$DATA_MEMBER" ]]; then + # print to stderr + >&2 echo "Data's member and this workflow's member should be the same." + exit $ERRCODE fi + +# check if the folder exists +# TODO this script is broken for a chunksize of 12 months! +mkdir -p ${CURRENT_ROOTDIR}/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/ifs/${DATA_CHUNK} +pushd ${CURRENT_ROOTDIR}/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/ifs/${DATA_CHUNK} +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/ifs/${DATA_CHUNK}/ICMGGa79h+000000 ICMGG%EXPID%+000000 +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/ifs/${DATA_CHUNK}/ICMGGa79h+000000 ICMSH%EXPID%+000000 +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/ifs/${DATA_CHUNK}/ICMGGa79h+000000 ICMGG%EXPID%+199002 +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/ifs/${DATA_CHUNK}/ICMGGa79h+000000 ICMSH%EXPID%+199002 +popd + +mkdir -p ${CURRENT_ROOTDIR}/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/ +pushd ${CURRENT_ROOTDIR}/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/ +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/ofx-data +mkdir 001 +pushd 001 +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1d_19900201_19900228_lim_grid_T_2D.nc ${CURRENT_EXPID}_1d_19900201_19900228_lim_grid_T_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1d_19900201_19900228_lim_grid_U_2D.nc ${CURRENT_EXPID}_1d_19900201_19900228_lim_grid_U_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1d_19900201_19900228_lim_grid_V_2D.nc ${CURRENT_EXPID}_1d_19900201_19900228_lim_grid_V_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1d_19900201_19900228_opa_grid_T_2D.nc ${CURRENT_EXPID}_1d_19900201_19900228_opa_grid_T_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_lim_grid_T_2D.nc ${CURRENT_EXPID}_1m_19900201_19900228_lim_grid_T_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_lim_grid_U_2D.nc ${CURRENT_EXPID}_1m_19900201_19900228_lim_grid_U_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_lim_grid_V_2D.nc ${CURRENT_EXPID}_1m_19900201_19900228_lim_grid_V_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_grid_1point.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_grid_1point.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_grid_ptr_T_3basin_2D.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_grid_ptr_T_3basin_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_grid_T_2D.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_grid_T_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_grid_T_3D.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_grid_T_3D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_grid_U_2D.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_grid_U_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_grid_U_3D.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_grid_U_3D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_grid_V_2D.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_grid_V_2D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_grid_V_3D.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_grid_V_3D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_grid_W_3D.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_grid_W_3D.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_vert_sum.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_vert_sum.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_zoom_2000_sum.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_zoom_2000_sum.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_zoom_300_sum.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_zoom_300_sum.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1m_19900201_19900228_opa_zoom_700_sum.nc ${CURRENT_EXPID}_1m_19900201_19900228_opa_zoom_700_sum.nc +ln -s %ECEARTH_OUTPUT%/${DATA_SDATE}/${DATA_MEMBER}/runtime/output/nemo/${DATA_CHUNK}/a79h_1y_19900201_19900228_opa_grid_T_2D.nc ${CURRENT_EXPID}_1y_19900201_19900228_opa_grid_T_2D.nc +popd +popd diff --git a/templates/synchronize.tmpl.sh b/templates/synchronize.tmpl.sh new file mode 100644 index 0000000000000000000000000000000000000000..0350fddb89f1fcfa4111dd2c423d73c0bb354234 --- /dev/null +++ b/templates/synchronize.tmpl.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash +######################################################################################################################## +# +# This job copied the files to the remote host. +# DISCLAIMER: THIS JOB IS HARDCODED FOR BSC's INFRASTRUCTURE. +# +# DT_USER: user of the data transfer marchine +# DT_HOST: hostname of the data transfer +# DT_ROOTDIR: root directory of the experiment in the transfer machine +# PROJDIR: local project directory (Default Autosubmit) +# EXPID: Autosubmit's experiment id (Default Autosubmit) +# PROJECT_DESTINATION: folder where Autosubmit stores the repository with code (Default Autosubmit) +# PROJDIR: local (where Autosubmit is running) folder where the code is stored +# +# Manuel G. Marciani +# BSC-CNS - Earth Sciences Department +# 2024 +# +######################################################################################################################## + +# we do not copy the git repository +rsync --recursive --links --perms --times --devices --specials --verbose --exclude=".*" %PROJDIR%/ece2cmor %DT_USER%@%DT_HOST%:%DT_ROOTDIR%/%EXPID%/%PROJECT_DESTINATION% +rsync --recursive --links --perms --times --devices --specials --verbose --exclude=".*" %PROJDIR%/fx_files %DT_USER%@%DT_HOST%:%DT_ROOTDIR%/%EXPID%/%PROJECT_DESTINATION% +rsync --recursive --links --perms --times --devices --specials --verbose --exclude=".*" %PROJDIR%/outclass %DT_USER%@%DT_HOST%:%DT_ROOTDIR%/%EXPID%/%PROJECT_DESTINATION% +rsync --recursive --links --perms --times --devices --specials --verbose --exclude=".*" %PROJDIR%/platforms %DT_USER%@%DT_HOST%:%DT_ROOTDIR%/%EXPID%/%PROJECT_DESTINATION% +rsync --recursive --links --perms --times --devices --specials --verbose --exclude=".*" %PROJDIR%/plugins %DT_USER%@%DT_HOST%:%DT_ROOTDIR%/%EXPID%/%PROJECT_DESTINATION% +rsync --recursive --links --perms --times --devices --specials --verbose --exclude=".*" %PROJDIR%/sources %DT_USER%@%DT_HOST%:%DT_ROOTDIR%/%EXPID%/%PROJECT_DESTINATION%